我正在使用来自https://github.com/tj/n的节点版本管理
$ node --version
v4.2.4
$ npm --version
1.3.1
我已删除我的 node_modules 并尝试运行$npm install
,但我收到警告消息,例如
npm WARN engine postcss@5.0.13: wanted: {"node":">=0.12"} (current: {"node":"v0.10.25","npm":"1.3.10"})
我已经更新了我的 packages.json 以包括:
"engineStrict" : true,
"engines": {
"node": "4.2.4"
},
非常感谢任何建议
我错过了什么