npm-click icon indicating copy to clipboard operation
npm-click copied to clipboard

Button to download/view updated package.json

Open ryan953 opened this issue 9 years ago • 1 comments

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"
  }
}

ryan953 avatar Jul 28 '15 04:07 ryan953

That's interesting and would really useful! Will give a go as soon as possible!

manosim avatar Jul 30 '15 22:07 manosim