package.json 中脚本部分的用途是什么?

What is the purpose of the scripts section in package.json?

package.json 中的脚本部分是什么?

"scripts": {
   "test": "echo \"Error: no test specified\" && exit 1",
   "start-me" : "node one.js",
   "start-over" : "node two.js"

}

这里的start-mestart-over是什么意思?

'scripts' 部分可由 npmyarn 命令使用,以允许您执行以下操作; npm run start-me 将执行 node one.js