私はpackage.json両方を持っています
"dependencies": {
"d3": "~3.5.5",
"forever": "^0.14.1"
},
"scripts": {
"install": "make -f install.makefile"
"data": "make -f data.makefile core",
"serve": "node ./node_modules/.bin/forever ./node_modules/.bin/http-server"
}
を実行してスクリプトを確認するとnpm run、次のようになります。
「install」は他のスクリプトとグループ化されていないため、予約済みのキーワードなのだろうか。
installpackages.json のスクリプト オブジェクトで特別な動作をする予約語はありますか?
