Manage Engine Specific dependencies with ease.
In package.json add a new engine-deps
section:
{
"engine-deps": {
"0.12.x": {
"backbone": "1.0.x"
},
"0.10.x": {
"backbone": "1.1.x"
},
"^4": {
"backbone": "1.2.x"
}
}
}
Then add a new install hook
{
"scripts": {
"install": "engine-deps"
}
}