engine-deps
v0.1.0
Published
[![Build Status](https://travis-ci.org/samccone/engine-deps.svg?branch=master)](https://travis-ci.org/samccone/engine-deps)
Downloads
4
Maintainers
Readme
Engine deps
Install dependencies depending on the version of node.
Using
In package.json add a new engine-deps
section:
{
"engine-deps": {
"0.12.x": {
"[email protected]"
},
"0.10.x": {
"[email protected]"
},
"^4": {
"[email protected]"
}
}
}
Then add a new postinstall hook
{
"scripts": {
"postinstall": "engine-deps"
}
}