1.3.0 • Published 6 years ago
npm-install-star v1.3.0
npm-install-star
Very simple node.js utility to install the freshest versions of all the dependencies
in your package.json marked as "*" or "latest", without mutating package.js.
If exists, package.lock will be updated to reflect the latest versions installed.
npm i -g npm-install-starThis will create executable npmstar.
So when you run
$ npmstarin a project with package.json like this:
{
"dependencies": {
"a": "*",
"b": "^1.0.0",
"c": "latest"
}
}it will run (more or less):
npm install --latest --no-save a cThat's it, super simple.