devDependencies
:开发过程中所要依赖的包
dependencies
:生产环境所要的依赖
版本号前缀
"grunt-contrib-copy" : "^0.7.3"
"grunt" : "~0.4.1"
尖括号是一个比较宽松的对版本的限制,只限制主版本号,如上面的,只要第一位的 0 不变,那么在 install 时就会更新
波浪号,只能是最小版本号才会更新
"scripts" :{
"test" : "grunt test", //当运行 npm test 时,实际运行 "grunt test"
}