Criei o package.json com o comando npm init, porém ele ficou com a seguinte estrutura:
{
"name": "alurapic",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flaviohenriquealmeida/alurapic.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/flaviohenriquealmeida/alurapic/issues"
},
"homepage": "https://github.com/flaviohenriquealmeida/alurapic#readme"
}
Na transcrição do vídeo a estrutura é a seguinte:
{
"name": "alurapic",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"author": "",
"license": "ISC"
}
Por que no package.json que criei têm informações como as do repositório (repository)? De onde o npm init tirou essas informações para gerar o package.json?