npm-click
npm-click copied to clipboard
Button to download/view updated package.json
It would be helpful to have a button where I can get a json file with all of the updated dependency numbers in there instead of the old versions. Also with a toggle to see my package.json file with only minor version numbers bumped.
I think it would be easier to keep my package.json file updated by using git to revert unwanted changes instead of my copying things tediously.
If my original package.json is:
{
"dependencies": {
"react": "~0.12.0"
}
}
Then I could have:
- [ ] Bump Major Versions
{
"dependencies": {
"react": "~0.12.2"
}
}
or
- [x] Bump Major Versions
{
"dependencies": {
"react": "~0.13.3"
}
}
That's interesting and would really useful! Will give a go as soon as possible!