{
"name": "my-library",
"devDependencies": {
"3d-party": "^4.0.0"
}
}
Imagine that my-library
should support 3.x
and 4.x
version of 3d-party
package. my-library
is well tested.
Is there something that I can run locally, like Travis CI, that:
- Run
npm install
, requiring a specific version at time (3.x
and4.x
) - Run my test to ensure that
my-library
works with both version