In my node.js project, how could I just run the postinstall script, without running install before ?
This is my package.json :
{
"name": "gestionclientjs",
...,
"dependencies": {
...
},
"repository": {},
"devDependencies": {
...
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "grunt test",
"postinstall" : "bower install && node ./app/server/dbSeed.js",
"start": "node app/server/app.js"
}
}
For now, I run :
npm install
in my project, but I want to run
npm postinstall
when I want (and when I'm sure dependencies are ok).