Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0. package.json에 대한 조사 #21

Open
1013115 opened this issue Sep 4, 2022 · 0 comments
Open

0. package.json에 대한 조사 #21

1013115 opened this issue Sep 4, 2022 · 0 comments
Labels
조사 Improvements or additions to documentation

Comments

@1013115
Copy link
Collaborator

1013115 commented Sep 4, 2022

package.json

개발자가 배포한 패키지에 대해, 사람들이 관리하고 설치하기 쉽게 하기 위한 문서

  • 자신의 프로젝트가 의존하는 패키지의 리스트
  • 자신의 프로젝트의 버전 명시
  • 다른 환경에서도 빌드를 재생 가능하게 만들어, 다른 개발자가 쉽게 사용할 수 있도록 함.

기본 구성 요소

처음 기본 설정 값으로 package.json을 생성하면

{ "name" : "PROJECT_DIRECTORY" , 
 "version" : "1.0.0" , 
 "description" : "" ,
 "main" : "index.js" ,
 "scripts" : { "test" : "echo \"오류 : 지정된 테스트 없음\" && exit 1"   },
 "keywords" : [], "author" : "" ,
 "license" : "ISC" }
  • “name”과 “version”은 반드시 있어야하는 field
  • “name” : 패키지의 이름을 나타냄 +규칙
  • 문서 참고
@gomjellie gomjellie added the 조사 Improvements or additions to documentation label Sep 4, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
조사 Improvements or additions to documentation
Projects
None yet
Development

No branches or pull requests

2 participants