npm init를 입력하면 현재 소프트웨어의 이름(name), 버전(version), 설명(description), 깃 저장소( git repository), 키워드(keywords), 저자명(author), 라이선스(license) 정보를 물어봅니다. 적절한 값을 입력한 후 ‘Is this ok?’라는 물음에 ‘yes’라고 입력하면 package.json 파일이 자동 생성됩니다.
생성된 package.json 파일 내용을 조회하기 위해 type package.json을 입력합니다.
package.json 파일 내용 조회
> type package.json
{
"name": "microservice",
"version": "1.0.0",
"description": "test",
"main": "index.js",
"dependencies": {},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "microservice",
"license": "ISC",
"repository": {
"type": "git",
"url": "git"
},
"keywords": [
"test",
"keyword"
]
}