{"maintainers":[{"name":"anonymous","email":"grunin.ya@ya.ru"}],"keywords":["npm","update","outdated","dependencies","cli","interactive","automatic","changelog","ignore"],"dist-tags":{"next":"1.0.0","latest":"3.1.2"},"author":{"name":"Yuriy Grunin","email":"grunin.ya@ya.ru"},"description":"Interactive CLI utility to easily update outdated NPM dependencies","readme":"# npm-upgrade\nInteractive CLI utility to easily update outdated NPM dependencies with changelogs inspection support.\n\n[![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url]\n\n## What is this for?\nIf you are tired of manually upgrading `package.json` every time your package dependencies are getting out of date then this utility is for you.\n\nTake a look at this demo:\n\n![npm-upgrade outdated packages](https://cloud.githubusercontent.com/assets/302213/11168821/08311b90-8bb2-11e5-9a71-5da73682ed44.gif)\n\n## Installation\nFirst, install [Node.js](https://nodejs.org) (at least `v10.19`).\n\nThen install this utility as global npm-module:\n```sh\nnpm i -g npm-upgrade\n```\n\n## Usage\nThis utility is supposed to be run in the root directory of your Node.js project (that contains `package.json`).\nRun `npm-upgrade --help` to see all available top-level commands:\n```\ncheck [filter]          Check for outdated modules\nignore <command>        Manage ignored modules\nchangelog <moduleName>  Show changelog for a module\n```\nRun `npm-upgrade <command> --help` to see usage help for corresponding command.\n`check` is the default command and can be omitted so running `npm-upgrade [filter]` is the same as `npm-upgrade check [filter]`.\n\n### `check` command\nIt will find all your outdated deps and will ask to updated their versions in `package.json`, one by one.\nFor example, here is what you will see if you use outdated version of `@angular/common` module:\n```\nUpdate \"@angular/common\" in package.json from 2.4.8 to 2.4.10? (Use arrow keys)\n❯ Yes\n  No\n  Show changelog\n  Ignore\n  Finish update process\n```\n* `Yes` will update `@angular/common` version in `package.json` to `2.4.10`, but not immediately (see explanation below)\n* `No` will not update this module version.\n* `Show changelog` will try to find changelog url for the current module and open it in default browser.\n* `Ignore` will add this module to the ignored list (see details in [`Ignoring module`](#ignoring-module) section below).\n* `Finish update process` will ...hm... finish update process and save all the changes to `package.json`.\n\nA note on saving changes to `package.json`: when you choose `Yes` to update some module's version, `package.json` won't be immediately updated. It will be updated only after you will process all the outdated modules and confirm update **or** when you choose `Finish update process`. So if in the middle of the update process you've changed your mind just press `Ctrl+C` and `package.json` will remain untouched.\n\nIf you want to check only some deps, you can use `filter` argument:\n```sh\n# Will check only `babel-core` module:\nnpm-upgrade babel-core\n\n# Will check all the deps with `babel` in the name:\nnpm-upgrade '*babel*'\n\n# Note quotes around `filter`. They are necessary because without them bash may interpret `*` as wildcard character.\n\n# Will check all the deps, excluding any with `babel` in the name:\nnpm-upgrade '!*babel*'\n\n# You can combine including and excluding rules:\nnpm-upgrade '*babel* !babel-transform-* !babel-preset-*'\n```\n\nIf you want to check only a group of deps use these options:\n```\n-p, --production   Check only \"dependencies\"\n-d, --development  Check only \"devDependencies\"\n-o, --optional     Check only \"optionalDependencies\"\n```\n\nAlternatively, you can use the `-g` (`--global`) flag to upgrade your global packages. **Note** that this flag is mutually exclusive and `npm-upgrade` will only recognise the global flag if supplied with others. Also **Note** that this option will automatically attempt to upgrade your global packages using `npm install -g <package>@<new-version>`.\n\n#### Ignoring module\nSometimes you just want to ignore newer versions of some dependency for some reason. For example, you use `jquery v2` because of the old IE support and don't want `npm-upgrade` to suggest you updating it to `v3`. Or you use `some-funky-module@6.6.5` and know that the new version `6.6.6` contains a bug that breaks your app.\n\nYou can handle these situations by ignoring such modules. You can do it in two ways: choosing `Ignore` during update process or using `npm ignore add` command.\n\nYou will asked two questions. First is a version range to ignore. It should be a valid [semver](http://semver.org/) version. Here are a few examples:\n* `6.6.6` - will ignore only version `6.6.6`. When the next version after `6.6.6` will be published `npm-upgrade` will suggest to update it. Can be used in `some-funky-module` example above.\n* `>2` - will ignore all versions starting from `3.0.0`. Can be used in `jquery v2` example above.\n* `6.6.x || 6.7.x` - will ignore all `6.6.x` and `6.7.x` versions.\n* `*` - will ignore all new versions.\n\nAnd after that `npm-upgrade` will ask about the ignore reason. The answer is optional but is strongly recommended because it will help to explain your motivation to your сolleagues and to yourself after a few months.\n\nAll the data about ignored modules will be stored in `.npm-upgrade.json` file next to your project's `package.json`.\n\n### `ignore` command\nIt will help you manage ignored modules. See [Ignoring module](#ignoring-module) section for more details.\nIt has the following subcommands:\n```\nnpm-upgrade ignore <command>\n\nCommands:\n  add [module]        Add module to ignored list\n  list                Show the list of ignored modules\n  reset [modules...]  Reset ignored modules\n```\n* `add` - will add a module from your deps to ignored list. You can either provide module name as optional `module` argument or interactively select it from the list of project's deps.\n* `list` - will show the list of currently ignored modules along with their ignored versions and reasons.\n* `reset` - will remove modules from the ignored list. You can either provide module names as `modules` argument (separated by space) or interactively select them from the list of project's deps.\n\n### `changelog` command\n```\nnpm-upgrade changelog <moduleName>\n```\nWill try to find changelog url for provided module and open it in default browser.\n\n## Troubleshooting\n**Wrong changelog shown for _\\<moduleName\\>_ or not shown at all!**\n\nYes, It can happen sometimes. This is because there is no standardized way to specify changelog location for the module, so it tries to guess it, using these rules one by one:\n\n1. Check `db/changelogUrls.json` from `master` branch on GitHub or the local copy if it's unreachable.\n2. Check `changelog` field from module's `package.json`.\n3. Parse module's `repository.url` field and if it's on GitHub or GitLab, try to request some common changelog files (`CHANGELOG.md`, `History.md` etc.) from main branch and if it fails, open `Releases` page.\n\nSo, if it guessed wrong it would be great if you could either [fill an issue](../../issues/new) about this or submit a PR which adds proper changelog URL to `db/changelogUrls.json`. There is a tool in the repository for you to make it as easy as possible:\n```sh\n./tools/addModuleChangelogUrlToDb.js <moduleName> <changelogUrl>\n```\n\n## License\n\n[MIT](LICENSE)\n\n[downloads-image]: https://img.shields.io/npm/dt/npm-upgrade.svg\n[npm-url]: https://www.npmjs.com/package/npm-upgrade\n[npm-image]: https://img.shields.io/npm/v/npm-upgrade.svg\n","repository":{"type":"git","url":"git+https://github.com/th0r/npm-upgrade.git"},"users":{"jayx":true,"enure":true,"atulmy":true,"floric":true,"olonam":true,"pesehr":true,"temasm":true,"ayan4m1":true,"level9i":true,"takonyc":true,"yehudag":true,"cilerler":true,"mhaidarh":true,"webnicola":true,"sayrilamar":true,"rahsaanbasek":true,"simplesthing":true,"yonigoldberg":true},"bugs":{"url":"https://github.com/th0r/npm-upgrade/issues"},"license":"MIT","versions":{"0.1.0":{"name":"npm-upgrade","version":"0.1.0","keywords":["npm","update","outdated","dependencies","cli","interactive","automatic"],"author":{"name":"Yuriy Grunin","email":"grunin.ya@ya.ru"},"license":"MIT","_id":"npm-upgrade@0.1.0","maintainers":[{"name":"anonymous","email":"grunin.ya@ya.ru"}],"homepage":"https://github.com/th0r/npm-upgrade","bugs":{"url":"https://github.com/th0r/npm-upgrade/issues"},"bin":{"npm-upgrade":"./lib/bin/cli.js"},"dist":{"shasum":"da3b51c0e124027f8b790fa0430691965dac4d3f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/npm-upgrade/-/npm-upgrade-0.1.0.tgz","integrity":"sha512-Ms2AVuuTwAl122Gr1ZzVJh7emKuSSTjtAw47v15/S1u9nLeI2kfcH7OHwhY717ThqGVateIifwqwLgDCCe8seg==","signatures":[{"sig":"MEQCIHDb2bDK3OYAbSn67oHH0OzHI2bg3h8MopefY32t1uQ/AiBgLHxmkl9x1k4GewSV7uFARWihRZzcUBX5Yk02E5SQrQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/bin/cli.js","_from":".","files":["lib","src"],"_shasum":"da3b51c0e124027f8b790fa0430691965dac4d3f","engines":{"node":">=0.10"},"gitHead":"92c23405e63d3dec7f1793ceee129097975a990e","scripts":{"prepublish":"gulp build"},"_npmUser":{"name":"anonymous","email":"grunin.ya@ya.ru"},"repository":{"url":"git+https://github.com/th0r/npm-upgrade.git","type":"git"},"_npmVersion":"2.14.10","description":"Interactive CLI utility to easily update outdated NPM dependencies","directories":{"lib":"./lib"},"_nodeVersion":"0.10.40","dependencies":{"npm":"^3.3.8","chalk":"^1.1.1","lodash":"^3.10.1","opener":"^1.4.1","inquirer":"^0.11.0","babel-runtime":"~5.8.29","npm-check-updates":"^2.3.2"},"preferGlobal":true,"devDependencies":{"del":"^2.0.2","gulp":"^3.9.0","babel-core":"~5.8.33","gulp-babel":"^5.3.0"}},"0.2.0":{"name":"npm-upgrade","version":"0.2.0","keywords":["npm","update","outdated","dependencies","cli","interactive","automatic"],"author":{"name":"Yuriy Grunin","email":"grunin.ya@ya.ru"},"license":"MIT","_id":"npm-upgrade@0.2.0","maintainers":[{"name":"anonymous","email":"grunin.ya@ya.ru"}],"homepage":"https://github.com/th0r/npm-upgrade","bugs":{"url":"https://github.com/th0r/npm-upgrade/issues"},"bin":{"npm-upgrade":"./lib/bin/cli.js"},"dist":{"shasum":"2ccf05f02aa8cb4f70040f230201cbdaec1660a0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/npm-upgrade/-/npm-upgrade-0.2.0.tgz","integrity":"sha512-iHCTPe82JBVbNivZZlmqpGhNiLv11h7ZZfXhqJUnS9wUVnPoEVX1Inb1ELLkq73DKhwbCpjGvrHLNBxASmfA4A==","signatures":[{"sig":"MEUCIDe9CHhdWGFawvXO2+kajhtg8kb5ABP0DrisunuGCxvEAiEA1YAGBMpVImHOvnheT1dDaRKX2HFWAHpymsbWE0Eq/hQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/bin/cli.js","_from":".","files":["lib","src"],"_shasum":"2ccf05f02aa8cb4f70040f230201cbdaec1660a0","engines":{"node":">=0.10"},"gitHead":"61b4a737e61032a7e76991964149bc2487e0d56f","scripts":{"prepublish":"gulp build"},"_npmUser":{"name":"anonymous","email":"grunin.ya@ya.ru"},"repository":{"url":"git+https://github.com/th0r/npm-upgrade.git","type":"git"},"_npmVersion":"3.3.12","description":"Interactive CLI utility to easily update outdated NPM dependencies","directories":{"lib":"./lib"},"_nodeVersion":"0.10.40","dependencies":{"chalk":"^1.1.1","lodash":"^3.10.1","inquirer":"^0.11.0","cli-table":"^0.3.1","babel-runtime":"~5.8.29","npm-check-updates":"^2.4.1"},"preferGlobal":true,"devDependencies":{"del":"^2.0.2","gulp":"^3.9.0","babel-core":"~5.8.33","gulp-babel":"^5.3.0"}},"0.3.0":{"name":"npm-upgrade","version":"0.3.0","keywords":["npm","update","outdated","dependencies","cli","interactive","automatic"],"author":{"name":"Yuriy Grunin","email":"grunin.ya@ya.ru"},"license":"MIT","_id":"npm-upgrade@0.3.0","maintainers":[{"name":"anonymous","email":"grunin.ya@ya.ru"}],"homepage":"https://github.com/th0r/npm-upgrade","bugs":{"url":"https://github.com/th0r/npm-upgrade/issues"},"bin":{"npm-upgrade":"./lib/bin/cli.js"},"dist":{"shasum":"aaf1f91321ab1d38a4d37a97fb8b61367c4d826f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/npm-upgrade/-/npm-upgrade-0.3.0.tgz","integrity":"sha512-dJXnqq/xGGZgFe0tHK9gLHcYP6yAZK+Dn5y6/hVWtlyZmEjckYE74JCXgaoJEHTbQXiUukz3yADOPWq49FR/5g==","signatures":[{"sig":"MEQCIFsCYm0kpEgwEkgd68pPo+V5vR3S5aCCJb+xIwKtpKiVAiASC+to+ZjjUh1Mlz3GeD1NdL8on6V+bg6yMnTFJAb6Mg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/bin/cli.js","_from":".","files":["lib","src"],"_shasum":"aaf1f91321ab1d38a4d37a97fb8b61367c4d826f","engines":{"node":">=0.10"},"gitHead":"7ca7bd00f8c773860f83745ed5512da5901c53ad","scripts":{"prepublish":"gulp build"},"_npmUser":{"name":"anonymous","email":"grunin.ya@ya.ru"},"repository":{"url":"git+https://github.com/th0r/npm-upgrade.git","type":"git"},"_npmVersion":"3.3.11","description":"Interactive CLI utility to easily update outdated NPM dependencies","directories":{"lib":"./lib"},"_nodeVersion":"5.0.0","dependencies":{"npm":"^3.3.12","chalk":"^1.1.1","lodash":"^3.10.1","opener":"^1.4.1","inquirer":"^0.11.0","cli-table":"^0.3.1","babel-runtime":"~5.8.29","npm-check-updates":"^2.4.1"},"preferGlobal":true,"devDependencies":{"del":"^2.0.2","gulp":"^3.9.0","babel-core":"~5.8.33","gulp-babel":"^5.3.0"}},"0.4.0":{"name":"npm-upgrade","version":"0.4.0","keywords":["npm","update","outdated","dependencies","cli","interactive","automatic"],"author":{"name":"Yuriy Grunin","email":"grunin.ya@ya.ru"},"license":"MIT","_id":"npm-upgrade@0.4.0","maintainers":[{"name":"anonymous","email":"grunin.ya@ya.ru"}],"homepage":"https://github.com/th0r/npm-upgrade","bugs":{"url":"https://github.com/th0r/npm-upgrade/issues"},"bin":{"npm-upgrade":"./lib/bin/cli.js"},"dist":{"shasum":"b9f37df7ff056b9c862a150fdc24810317a5505c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/npm-upgrade/-/npm-upgrade-0.4.0.tgz","integrity":"sha512-CEO0fJu5hJu7pUg8VeDcpkW36d57mDE4fC/u8/NlWaJiIKguYi+D6wXIpz13WGAfqa1rUfWCSEqw+dQcEngO/w==","signatures":[{"sig":"MEUCIQCzoG92v3r7NPT55n4xDTlnsPBK+0fGv4ymLAm1wD8jmwIgBu3xwFGR+Vigr964P7EZ1xcNz/uq1BqtnFxZFHT3+BQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/bin/cli.js","_from":".","files":["lib","src"],"_shasum":"b9f37df7ff056b9c862a150fdc24810317a5505c","engines":{"node":">=0.10"},"gitHead":"694e89ce5e153f803ce2220ebc7aac3dc3d9e353","scripts":{"prepublish":"gulp build"},"_npmUser":{"name":"anonymous","email":"grunin.ya@ya.ru"},"changelog":"https://github.com/th0r/npm-upgrade/blob/master/CHANGELOG.md","repository":{"url":"git+https://github.com/th0r/npm-upgrade.git","type":"git"},"_npmVersion":"3.3.11","description":"Interactive CLI utility to easily update outdated NPM dependencies","directories":{"lib":"./lib"},"_nodeVersion":"5.0.0","dependencies":{"got":"^4.2.0","npm":"^3.4.0","chalk":"^1.1.1","lodash":"^3.10.1","opener":"^1.4.1","bluebird":"^3.0.5","inquirer":"^0.11.0","cli-table":"^0.3.1","babel-runtime":"~5.8.29","npm-check-updates":"2.4.2"},"preferGlobal":true,"devDependencies":{"del":"^2.0.2","gulp":"^3.9.0","eslint":"~1.9.0","babel-core":"~5.8.33","gulp-babel":"^5.3.0","babel-eslint":"~4.1.5"}},"0.4.1":{"name":"npm-upgrade","version":"0.4.1","keywords":["npm","update","outdated","dependencies","cli","interactive","automatic"],"author":{"name":"Yuriy Grunin","email":"grunin.ya@ya.ru"},"license":"MIT","_id":"npm-upgrade@0.4.1","maintainers":[{"name":"anonymous","email":"grunin.ya@ya.ru"}],"homepage":"https://github.com/th0r/npm-upgrade","bugs":{"url":"https://github.com/th0r/npm-upgrade/issues"},"bin":{"npm-upgrade":"./lib/bin/cli.js"},"dist":{"shasum":"7380b0e15d785edba594c96f4755c89c0272e2f4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/npm-upgrade/-/npm-upgrade-0.4.1.tgz","integrity":"sha512-1r/fv0iYpCkn/MQhbebTcy4XQ+5gfnsOwAP5m1ZYCDleDTNj5D6fPofQtqqPRhUX1AQEvJD0pgnX0p9QspE5SA==","signatures":[{"sig":"MEUCIQD+GiLS2i/gIBTj1SPBI51OMJ/5xOpSgZVpmfD4IwfpawIgG0eOA9nWon/vGEMhwFRsBQxRn6mev/q/KMg91yIbFpE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/bin/cli.js","_from":".","files":["lib","src"],"_shasum":"7380b0e15d785edba594c96f4755c89c0272e2f4","engines":{"node":">=0.10"},"gitHead":"7187de0882125c85c27ec40d7de8cf18d6d436d4","scripts":{"prepublish":"gulp build"},"_npmUser":{"name":"anonymous","email":"grunin.ya@ya.ru"},"changelog":"https://github.com/th0r/npm-upgrade/blob/master/CHANGELOG.md","repository":{"url":"git+https://github.com/th0r/npm-upgrade.git","type":"git"},"_npmVersion":"3.3.11","description":"Interactive CLI utility to easily update outdated NPM dependencies","directories":{"lib":"./lib"},"_nodeVersion":"5.0.0","dependencies":{"got":"^4.2.0","npm":"^3.4.0","chalk":"^1.1.1","lodash":"^3.10.1","opener":"^1.4.1","bluebird":"^3.0.5","inquirer":"^0.11.0","cli-table":"^0.3.1","babel-runtime":"~5.8.29","npm-check-updates":"2.4.2"},"preferGlobal":true,"devDependencies":{"del":"^2.0.2","gulp":"^3.9.0","eslint":"~1.9.0","babel-core":"~5.8.33","gulp-babel":"^5.3.0","babel-eslint":"~4.1.5"}},"0.4.2":{"name":"npm-upgrade","version":"0.4.2","keywords":["npm","update","outdated","dependencies","cli","interactive","automatic"],"author":{"name":"Yuriy Grunin","email":"grunin.ya@ya.ru"},"license":"MIT","_id":"npm-upgrade@0.4.2","maintainers":[{"name":"anonymous","email":"grunin.ya@ya.ru"}],"homepage":"https://github.com/th0r/npm-upgrade","bugs":{"url":"https://github.com/th0r/npm-upgrade/issues"},"bin":{"npm-upgrade":"./lib/bin/cli.js"},"dist":{"shasum":"6d793d58a0c0a82625e88397908ed5ae4206df5c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/npm-upgrade/-/npm-upgrade-0.4.2.tgz","integrity":"sha512-fEjvT49ftOjxSFmcsUDrBfC74AJgZ8dJ29t4y4qr5GIJGyCrBSQqAKWNBtF2plJcLui6OzulXBPtIjc1A7TtEg==","signatures":[{"sig":"MEUCIGh4cjkEare13MxCznOTHhh37k2exosyOiGkN91r0LyDAiEA1wyhSQ88pgkTwRCSj+R9O+mtskBOHQKbpBxV1+EJCvg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/bin/cli.js","_from":".","files":["lib","src","db"],"_shasum":"6d793d58a0c0a82625e88397908ed5ae4206df5c","engines":{"node":">=0.10"},"gitHead":"66d05c6f5b20a69856bd711fbead38f45b62f111","scripts":{"prepublish":"gulp build"},"_npmUser":{"name":"anonymous","email":"grunin.ya@ya.ru"},"changelog":"https://github.com/th0r/npm-upgrade/blob/master/CHANGELOG.md","repository":{"url":"git+https://github.com/th0r/npm-upgrade.git","type":"git"},"_npmVersion":"3.3.11","description":"Interactive CLI utility to easily update outdated NPM dependencies","directories":{"lib":"./lib"},"_nodeVersion":"5.0.0","dependencies":{"got":"^4.2.0","npm":"^3.4.0","chalk":"^1.1.1","lodash":"^3.10.1","opener":"^1.4.1","bluebird":"^3.0.5","inquirer":"^0.11.0","cli-table":"^0.3.1","babel-runtime":"~5.8.29","npm-check-updates":"2.4.2"},"preferGlobal":true,"devDependencies":{"del":"^2.0.2","gulp":"^3.9.0","eslint":"~1.9.0","babel-core":"~5.8.33","gulp-babel":"^5.3.0","babel-eslint":"~4.1.5"}},"0.4.3":{"name":"npm-upgrade","version":"0.4.3","keywords":["npm","update","outdated","dependencies","cli","interactive","automatic"],"author":{"name":"Yuriy Grunin","email":"grunin.ya@ya.ru"},"license":"MIT","_id":"npm-upgrade@0.4.3","maintainers":[{"name":"anonymous","email":"grunin.ya@ya.ru"}],"homepage":"https://github.com/th0r/npm-upgrade","bugs":{"url":"https://github.com/th0r/npm-upgrade/issues"},"bin":{"npm-upgrade":"./lib/bin/cli.js"},"dist":{"shasum":"54b92db9c4ccc70c7e09032cb12fc274b439b189","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/npm-upgrade/-/npm-upgrade-0.4.3.tgz","integrity":"sha512-gPEPP8lijHMgyht66SaxldhJiwyu28myCReFjnW+QSO4+yMKvR/O+HONWPin9nNXBM94rR9FQtbZN7K3hnqfuw==","signatures":[{"sig":"MEQCIC17S1Sf5b0hPioNZ+AgxePD44zdQvEUWcQ1PGPw68M+AiBVDJzjkrNeFOpI2S2toxSEliv9f5qI2DaSwoKc46f+tg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/bin/cli.js","_from":".","files":["lib","src","db"],"_shasum":"54b92db9c4ccc70c7e09032cb12fc274b439b189","engines":{"node":">=0.10"},"gitHead":"837dc565813962061ed396d716c40cf0c3908f8e","scripts":{"prepublish":"gulp build"},"_npmUser":{"name":"anonymous","email":"grunin.ya@ya.ru"},"changelog":"https://github.com/th0r/npm-upgrade/blob/master/CHANGELOG.md","repository":{"url":"git+https://github.com/th0r/npm-upgrade.git","type":"git"},"_npmVersion":"3.4.0","description":"Interactive CLI utility to easily update outdated NPM dependencies","directories":{"lib":"./lib"},"_nodeVersion":"5.0.0","dependencies":{"got":"^4.2.0","npm":"^3.4.0","chalk":"^1.1.1","lodash":"^3.10.1","opener":"^1.4.1","bluebird":"^3.0.5","inquirer":"^0.11.0","cli-table":"^0.3.1","babel-runtime":"~5.8.29","npm-check-updates":"2.4.2"},"preferGlobal":true,"devDependencies":{"del":"^2.0.2","gulp":"^3.9.0","eslint":"~1.9.0","babel-core":"~5.8.33","gulp-babel":"^5.3.0","babel-eslint":"~4.1.5"}},"0.4.4":{"name":"npm-upgrade","version":"0.4.4","keywords":["npm","update","outdated","dependencies","cli","interactive","automatic"],"author":{"name":"Yuriy Grunin","email":"grunin.ya@ya.ru"},"license":"MIT","_id":"npm-upgrade@0.4.4","maintainers":[{"name":"anonymous","email":"grunin.ya@ya.ru"}],"homepage":"https://github.com/th0r/npm-upgrade","bugs":{"url":"https://github.com/th0r/npm-upgrade/issues"},"bin":{"npm-upgrade":"./lib/bin/cli.js"},"dist":{"shasum":"7a4274f5f189189026ab3657072cf538026fd6be","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/npm-upgrade/-/npm-upgrade-0.4.4.tgz","integrity":"sha512-MBJTgqsdXddrPTG/ACvCUOXCUhATJfKkExY8GMTr97omD151U0Ra9nQMbUcA0fyS5esGT13orguEtPaxUcdK+Q==","signatures":[{"sig":"MEQCIArTkQZ1OPHO3Y8lBvqZ0YUmNBAlUWQVg8EW9Mzapu0KAiB4AAqvVscPI5OLEgJxY82E5qdrl/CQZwuos5EYItjDPQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/bin/cli.js","_from":".","files":["lib","src","db"],"_shasum":"7a4274f5f189189026ab3657072cf538026fd6be","engines":{"node":">=0.10"},"gitHead":"cc3528e181f67648985afe070f69ee2847993262","scripts":{"prepublish":"gulp build"},"_npmUser":{"name":"anonymous","email":"grunin.ya@ya.ru"},"changelog":"https://github.com/th0r/npm-upgrade/blob/master/CHANGELOG.md","repository":{"url":"git+https://github.com/th0r/npm-upgrade.git","type":"git"},"_npmVersion":"3.4.0","description":"Interactive CLI utility to easily update outdated NPM dependencies","directories":{"lib":"./lib"},"_nodeVersion":"5.0.0","dependencies":{"got":"^4.2.0","npm":"^3.4.0","chalk":"^1.1.1","lodash":"^3.10.1","opener":"^1.4.1","bluebird":"^3.0.5","inquirer":"^0.11.0","cli-table":"^0.3.1","babel-runtime":"~5.8.29","npm-check-updates":"2.4.2"},"preferGlobal":true,"devDependencies":{"del":"^2.0.2","gulp":"^3.9.0","eslint":"~1.9.0","babel-core":"~5.8.33","gulp-babel":"^5.3.0","babel-eslint":"~4.1.5"}},"0.5.0":{"name":"npm-upgrade","version":"0.5.0","keywords":["npm","update","outdated","dependencies","cli","interactive","automatic"],"author":{"name":"Yuriy Grunin","email":"grunin.ya@ya.ru"},"license":"MIT","_id":"npm-upgrade@0.5.0","maintainers":[{"name":"anonymous","email":"grunin.ya@ya.ru"}],"homepage":"https://github.com/th0r/npm-upgrade","bugs":{"url":"https://github.com/th0r/npm-upgrade/issues"},"bin":{"npm-upgrade":"./lib/bin/cli.js"},"dist":{"shasum":"375644be5aaf0389cdb9eac7d7a706d6435db47a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/npm-upgrade/-/npm-upgrade-0.5.0.tgz","integrity":"sha512-QuHoXfiVmw+wqJe2tKRf85ClzSnVEqP00+41ZiS6Rj//bZ4dLk/YOk82QsmfIlVF+jrZnwJt1LFxr77e5F1Hqg==","signatures":[{"sig":"MEUCIA+ppO+B8B5WorWmKKesqMLc3mrTTy/lhXr120L1/ZP8AiEAq5Jd4KH8i3RRXjVsraszy9RJGEKEkITrupDAuTbcwos=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/bin/cli.js","_from":".","files":["lib","src","db"],"_shasum":"375644be5aaf0389cdb9eac7d7a706d6435db47a","engines":{"node":">=0.10"},"gitHead":"8392aa01a1b91f324552a368ad9e354d5a37e8f7","scripts":{"prepublish":"gulp build"},"_npmUser":{"name":"anonymous","email":"grunin.ya@ya.ru"},"changelog":"https://github.com/th0r/npm-upgrade/blob/master/CHANGELOG.md","repository":{"url":"git+https://github.com/th0r/npm-upgrade.git","type":"git"},"_npmVersion":"3.4.0","description":"Interactive CLI utility to easily update outdated NPM dependencies","directories":{"lib":"./lib"},"_nodeVersion":"5.0.0","dependencies":{"got":"^4.2.0","npm":"^3.4.0","chalk":"^1.1.1","lodash":"^3.10.1","opener":"^1.4.1","bluebird":"^3.0.5","inquirer":"^0.11.0","cli-table":"^0.3.1","commander":"^2.9.0","babel-runtime":"~5.8.29","npm-check-updates":"2.4.2"},"preferGlobal":true,"devDependencies":{"del":"^2.0.2","gulp":"^3.9.0","eslint":"~1.9.0","babel-core":"~5.8.33","gulp-babel":"^5.3.0","babel-eslint":"~4.1.5"}},"0.5.1":{"name":"npm-upgrade","version":"0.5.1","keywords":["npm","update","outdated","dependencies","cli","interactive","automatic"],"author":{"name":"Yuriy Grunin","email":"grunin.ya@ya.ru"},"license":"MIT","_id":"npm-upgrade@0.5.1","maintainers":[{"name":"anonymous","email":"grunin.ya@ya.ru"}],"homepage":"https://github.com/th0r/npm-upgrade","bugs":{"url":"https://github.com/th0r/npm-upgrade/issues"},"bin":{"npm-upgrade":"./lib/bin/cli.js"},"dist":{"shasum":"97380cbc3a4b9d5b01246d4c5d9aea3af53f096a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/npm-upgrade/-/npm-upgrade-0.5.1.tgz","integrity":"sha512-9VA+Gld2SSVH93bcmAePrc62fDBDqwGww/9/SpQaU/bw8xKMAZQJZ1wBNDnrnzahCHKb9eUQdigSLT9pJ79HRw==","signatures":[{"sig":"MEQCIGsqZT0sI4cucrkeW0EbQs97/dct5ydcTeksqjXWZyeCAiBgOd10DddypjRl/vMXxwmmJg+aJwyFgohG6f8oma3J1w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/bin/cli.js","_from":".","files":["lib","src","db"],"_shasum":"97380cbc3a4b9d5b01246d4c5d9aea3af53f096a","engines":{"node":">=0.10"},"gitHead":"0efd6380b26ed920f794e6159ad7ce34eedb832a","scripts":{"prepublish":"gulp build"},"_npmUser":{"name":"anonymous","email":"grunin.ya@ya.ru"},"changelog":"https://github.com/th0r/npm-upgrade/blob/master/CHANGELOG.md","repository":{"url":"git+https://github.com/th0r/npm-upgrade.git","type":"git"},"_npmVersion":"3.4.0","description":"Interactive CLI utility to easily update outdated NPM dependencies","directories":{"lib":"./lib"},"_nodeVersion":"5.0.0","dependencies":{"got":"^4.2.0","npm":"^3.4.0","chalk":"^1.1.1","lodash":"^3.10.1","opener":"^1.4.1","bluebird":"^3.0.5","inquirer":"^0.11.0","cli-table":"^0.3.1","commander":"^2.9.0","babel-runtime":"~5.8.29","npm-check-updates":"2.4.2"},"preferGlobal":true,"devDependencies":{"del":"^2.0.2","gulp":"^3.9.0","eslint":"~1.9.0","babel-core":"~5.8.33","gulp-babel":"^5.3.0","babel-eslint":"~4.1.5"}},"0.6.0":{"name":"npm-upgrade","version":"0.6.0","keywords":["npm","update","outdated","dependencies","cli","interactive","automatic"],"author":{"name":"Yuriy Grunin","email":"grunin.ya@ya.ru"},"license":"MIT","_id":"npm-upgrade@0.6.0","maintainers":[{"name":"anonymous","email":"grunin.ya@ya.ru"}],"homepage":"https://github.com/th0r/npm-upgrade","bugs":{"url":"https://github.com/th0r/npm-upgrade/issues"},"bin":{"npm-upgrade":"./lib/bin/cli.js"},"dist":{"shasum":"3e3823544806f9b090fe7f0bd2de94f07fb1dcd9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/npm-upgrade/-/npm-upgrade-0.6.0.tgz","integrity":"sha512-uOO7wr55Y9D7CWXruEzSrDJi/uIXmCbAUZAVicLxBSB/gpJir0XTaI3mW28AHqLMcz9lcTK1gmhRZXglFHvd1w==","signatures":[{"sig":"MEQCIDB0I7+bw+9WKm2SDC3kYjITP492+fCmOdSVoHiTo4Z7AiA0cvG1Ky6oWQCwsyTESo8qztjNwaiDQjN//FYUqg1xPg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/bin/cli.js","_from":".","files":["lib","src","db"],"_shasum":"3e3823544806f9b090fe7f0bd2de94f07fb1dcd9","engines":{"node":">=0.10"},"gitHead":"1099b90488de8a8e747729c8a8e2b5a4264ffad1","scripts":{"prepublish":"gulp build"},"_npmUser":{"name":"anonymous","email":"grunin.ya@ya.ru"},"changelog":"https://github.com/th0r/npm-upgrade/blob/master/CHANGELOG.md","repository":{"url":"git+https://github.com/th0r/npm-upgrade.git","type":"git"},"_npmVersion":"3.4.1","description":"Interactive CLI utility to easily update outdated NPM dependencies","directories":{"lib":"./lib"},"_nodeVersion":"5.0.0","dependencies":{"got":"~4.2.0","npm":"~3.4.1","chalk":"~1.1.1","lodash":"~3.10.1","opener":"~1.4.1","bluebird":"~3.0.5","inquirer":"~0.11.0","cli-table":"~0.3.1","commander":"~2.9.0","babel-runtime":"~5.8.29","npm-check-updates":"~2.5.1"},"preferGlobal":true,"devDependencies":{"del":"2.1.0","gulp":"3.9.0","eslint":"1.10.1","babel-core":"5.8.33","gulp-babel":"5.3.0","babel-eslint":"4.1.5"}},"0.6.1":{"name":"npm-upgrade","version":"0.6.1","keywords":["npm","update","outdated","dependencies","cli","interactive","automatic"],"author":{"name":"Yuriy Grunin","email":"grunin.ya@ya.ru"},"license":"MIT","_id":"npm-upgrade@0.6.1","maintainers":[{"name":"anonymous","email":"grunin.ya@ya.ru"}],"homepage":"https://github.com/th0r/npm-upgrade","bugs":{"url":"https://github.com/th0r/npm-upgrade/issues"},"bin":{"npm-upgrade":"./lib/bin/cli.js"},"dist":{"shasum":"e1f8ced30430f2db5cb3b9b18034b9d0dd5d07ed","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/npm-upgrade/-/npm-upgrade-0.6.1.tgz","integrity":"sha512-0aJQjnqzCxGOOuEeouSwL6N4Q5zdBSzuw4SPezL2/b8HA6rbQp4AQcdPF+Fcy3rmavzdJqam2rlYjrviHR/WFw==","signatures":[{"sig":"MEUCIHCjXln3DuBgN1D4Bd+NTlD3jLq1kSGeYFLBrWvfMBtwAiEA7k79hsWiI54hD3DQogqyq6hMECnVeQjyFqJfGwBNeu0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/bin/cli.js","_from":".","files":["lib","src","db"],"_shasum":"e1f8ced30430f2db5cb3b9b18034b9d0dd5d07ed","engines":{"node":">=0.10"},"gitHead":"21d689d2ddeb034afb438b6911a05e361ea453b9","scripts":{"prepublish":"gulp build"},"_npmUser":{"name":"anonymous","email":"grunin.ya@ya.ru"},"changelog":"https://github.com/th0r/npm-upgrade/blob/master/CHANGELOG.md","repository":{"url":"git+https://github.com/th0r/npm-upgrade.git","type":"git"},"_npmVersion":"3.5.1","description":"Interactive CLI utility to easily update outdated NPM dependencies","directories":{"lib":"./lib"},"_nodeVersion":"5.1.0","dependencies":{"got":"~4.2.0","npm":"~3.4.1","chalk":"~1.1.1","lodash":"~3.10.1","opener":"~1.4.1","bluebird":"~3.0.5","inquirer":"~0.11.0","cli-table":"~0.3.1","commander":"~2.9.0","babel-runtime":"~5.8.29","npm-check-updates":"~2.5.1"},"preferGlobal":true,"devDependencies":{"del":"2.1.0","gulp":"3.9.0","eslint":"1.10.1","babel-core":"5.8.33","gulp-babel":"5.3.0","babel-eslint":"4.1.5"}},"0.6.2":{"name":"npm-upgrade","version":"0.6.2","keywords":["npm","update","outdated","dependencies","cli","interactive","automatic"],"author":{"name":"Yuriy Grunin","email":"grunin.ya@ya.ru"},"license":"MIT","_id":"npm-upgrade@0.6.2","maintainers":[{"name":"anonymous","email":"grunin.ya@ya.ru"}],"homepage":"https://github.com/th0r/npm-upgrade","bugs":{"url":"https://github.com/th0r/npm-upgrade/issues"},"bin":{"npm-upgrade":"./lib/bin/cli.js"},"dist":{"shasum":"e08fa25a0c9b144885be8a91350d0615f057c335","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/npm-upgrade/-/npm-upgrade-0.6.2.tgz","integrity":"sha512-mWk8WXy//OZOiCVsSJSEuqkrgS534JCuvAzCT4Lwh4bi98ThDeEzrWPe1OH33usIk5b91UFaV2pEn3jnt3uOOA==","signatures":[{"sig":"MEUCIQCnMEKps9V9dbkYVXmAG1rYnlTSks1GbqMdwXEM/urFWgIgSO+aojkj4uokUOZ0v/3Le9ONdeDMcSYea+0+79/A8DM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/bin/cli.js","_from":".","files":["lib","src","db"],"_shasum":"e08fa25a0c9b144885be8a91350d0615f057c335","engines":{"node":">=0.10"},"gitHead":"61e38f4ad0a0c7044a96ec1e60bbcfc143439485","scripts":{"prepublish":"gulp build"},"_npmUser":{"name":"anonymous","email":"grunin.ya@ya.ru"},"changelog":"https://github.com/th0r/npm-upgrade/blob/master/CHANGELOG.md","repository":{"url":"git+https://github.com/th0r/npm-upgrade.git","type":"git"},"_npmVersion":"3.5.1","description":"Interactive CLI utility to easily update outdated NPM dependencies","directories":{"lib":"./lib"},"_nodeVersion":"5.1.0","dependencies":{"got":"4.2.0","npm":"^3.5.1","chalk":"1.1.1","lodash":"3.10.1","opener":"1.4.1","bluebird":"3.1.1","inquirer":"0.11.0","cli-table":"0.3.1","commander":"2.9.0","babel-runtime":"5.8.29","npm-check-updates":"2.5.4"},"preferGlobal":true,"devDependencies":{"del":"2.2.0","gulp":"3.9.0","eslint":"1.10.3","babel-core":"5.8.33","gulp-babel":"5.3.0","babel-eslint":"4.1.5"}},"0.7.0":{"name":"npm-upgrade","version":"0.7.0","keywords":["npm","update","outdated","dependencies","cli","interactive","automatic"],"author":{"name":"Yuriy Grunin","email":"grunin.ya@ya.ru"},"license":"MIT","_id":"npm-upgrade@0.7.0","maintainers":[{"name":"anonymous","email":"grunin.ya@ya.ru"}],"homepage":"https://github.com/th0r/npm-upgrade","bugs":{"url":"https://github.com/th0r/npm-upgrade/issues"},"bin":{"npm-upgrade":"./lib/bin/cli.js"},"dist":{"shasum":"3206c72b0fc70e2484a2017e893c8ba9be7a253a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/npm-upgrade/-/npm-upgrade-0.7.0.tgz","integrity":"sha512-rx++SOq0CgBrUzZcs5EYOi8IJ7ClHNHxUB41CanoXvFakCZto0sagWdYZ5vuwCoD5uFavkcps8hDp6X6coDwWQ==","signatures":[{"sig":"MEUCIBc8GpUsa5AeXNUIrtUioXTPyqMMwkDqOyy5ZoMpyITaAiEAmFj5rS9tECuSdIzIgLyLdfY+WNfwR558yT4ydYm7TyA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/bin/cli.js","_from":".","files":["lib","src","db"],"_shasum":"3206c72b0fc70e2484a2017e893c8ba9be7a253a","engines":{"node":">=0.10"},"gitHead":"dc763dcf651dd8afa56bd9af710cb5057221fd59","scripts":{"prepublish":"gulp build"},"_npmUser":{"name":"anonymous","email":"grunin.ya@ya.ru"},"changelog":"https://github.com/th0r/npm-upgrade/blob/master/CHANGELOG.md","repository":{"url":"git+https://github.com/th0r/npm-upgrade.git","type":"git"},"_npmVersion":"3.10.3","description":"Interactive CLI utility to easily update outdated NPM dependencies","directories":{"lib":"./lib"},"_nodeVersion":"6.3.1","dependencies":{"got":"4.2.0","npm":"^3.5.1","chalk":"1.1.1","lodash":"3.10.1","opener":"1.4.1","bluebird":"3.1.1","inquirer":"0.11.0","cli-table":"0.3.1","commander":"2.9.0","babel-runtime":"5.8.29","npm-check-updates":"2.7.2"},"preferGlobal":true,"devDependencies":{"del":"2.2.0","gulp":"3.9.0","eslint":"1.10.3","babel-core":"5.8.33","gulp-babel":"5.3.0","babel-eslint":"4.1.5"},"_npmOperationalInternal":{"tmp":"tmp/npm-upgrade-0.7.0.tgz_1469396693625_0.27520987344905734","host":"packages-16-east.internal.npmjs.com"}},"1.0.0":{"name":"npm-upgrade","version":"1.0.0","keywords":["npm","update","outdated","dependencies","cli","interactive","automatic","changelog","ignore"],"author":{"name":"Yuriy Grunin","email":"grunin.ya@ya.ru"},"license":"MIT","_id":"npm-upgrade@1.0.0","maintainers":[{"name":"anonymous","email":"grunin.ya@ya.ru"}],"homepage":"https://github.com/th0r/npm-upgrade","bugs":{"url":"https://github.com/th0r/npm-upgrade/issues"},"bin":{"npm-upgrade":"./lib/bin/cli.js"},"dist":{"shasum":"aaba744a6f95e1b81e9064ac76d62c473965a4ac","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/npm-upgrade/-/npm-upgrade-1.0.0.tgz","integrity":"sha512-ZE2ZvGr5Ru1OBB3fGy/4Fv2fpab/hn2qGzLKlzutEKyMXqzYIPJ75bnWr4w3X+lxLgKemr2zqb8a//QPLaKksg==","signatures":[{"sig":"MEUCIB2grrX/Cl1SAEcpTBylJ2KVQQaL6wVFS+OIWFr/UHz9AiEA8GNGRvfCSQBRduddeTQKu6fD4DGyDUOGkMAnGK7sgGY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/bin/cli.js","_from":".","files":["lib","src","db"],"_shasum":"aaba744a6f95e1b81e9064ac76d62c473965a4ac","engines":{"node":">=0.10"},"gitHead":"b788cd43252422c824d4310e2a5b699c42c63235","scripts":{"prepublish":"gulp build"},"_npmUser":{"name":"anonymous","email":"grunin.ya@ya.ru"},"changelog":"https://github.com/th0r/npm-upgrade/blob/master/CHANGELOG.md","repository":{"url":"git+https://github.com/th0r/npm-upgrade.git","type":"git"},"_npmVersion":"3.10.7","description":"Interactive CLI utility to easily update outdated NPM dependencies","directories":{"lib":"./lib"},"_nodeVersion":"6.6.0","dependencies":{"del":"2.2.2","got":"5.6.0","npm":"^3.5.1","chalk":"1.1.3","yargs":"5.0.0","lodash":"4.16.2","opener":"1.4.2","semver":"5.3.0","bluebird":"3.4.6","inquirer":"1.1.3","cli-table":"0.3.1","babel-runtime":"6.11.6","npm-check-updates":"2.8.0"},"preferGlobal":true,"devDependencies":{"bun":"0.0.11","gulp":"3.9.1","eslint":"2.13.1","gulp-util":"3.0.7","babel-core":"6.14.0","gulp-babel":"6.1.2","gulp-watch":"4.3.10","babel-eslint":"6.1.2","gulp-plumber":"1.1.0","babel-preset-es2015":"6.14.0","eslint-plugin-babel":"3.3.0","babel-preset-stage-2":"6.13.0","babel-plugin-transform-runtime":"6.15.0"},"_npmOperationalInternal":{"tmp":"tmp/npm-upgrade-1.0.0.tgz_1475063715997_0.29633688228204846","host":"packages-12-west.internal.npmjs.com"}},"1.0.1":{"name":"npm-upgrade","version":"1.0.1","keywords":["npm","update","outdated","dependencies","cli","interactive","automatic","changelog","ignore"],"author":{"name":"Yuriy Grunin","email":"grunin.ya@ya.ru"},"license":"MIT","_id":"npm-upgrade@1.0.1","maintainers":[{"name":"anonymous","email":"grunin.ya@ya.ru"}],"homepage":"https://github.com/th0r/npm-upgrade","bugs":{"url":"https://github.com/th0r/npm-upgrade/issues"},"bin":{"npm-upgrade":"./lib/bin/cli.js"},"dist":{"shasum":"7a28e602fe000170d279d420fbd2ae3872f4415b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/npm-upgrade/-/npm-upgrade-1.0.1.tgz","integrity":"sha512-l67g51nhbEj+FDHJX8O1PjUmxYUjvh2ik3S9mJXXePwoC+yl96KkXNxVtPCxpONPKQaZkWQ/UTjPwcgkJmEFtA==","signatures":[{"sig":"MEUCIB7GRVbrjl7hqx46GE23wLTfX9uz/4jyh9Fk9+/iqADqAiEArj/cIYBXU3GSl0A9gW8tp3vAnZfJm2ypptJ4hIiPThg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/bin/cli.js","_from":".","files":["lib","src","db"],"_shasum":"7a28e602fe000170d279d420fbd2ae3872f4415b","engines":{"node":">=4"},"gitHead":"6196186c073fcb3f6015d374394ec9ead40c235f","scripts":{"prepublish":"gulp build"},"_npmUser":{"name":"anonymous","email":"grunin.ya@ya.ru"},"changelog":"https://github.com/th0r/npm-upgrade/blob/master/CHANGELOG.md","repository":{"url":"git+https://github.com/th0r/npm-upgrade.git","type":"git"},"_npmVersion":"4.4.1","description":"Interactive CLI utility to easily update outdated NPM dependencies","directories":{"lib":"./lib"},"_nodeVersion":"7.6.0","dependencies":{"del":"2.2.2","got":"6.7.1","npm":"^3.10.6","chalk":"1.1.3","yargs":"7.0.2","lodash":"4.17.4","opener":"1.4.3","semver":"5.3.0","bluebird":"3.5.0","inquirer":"3.0.6","cli-table":"0.3.1","babel-runtime":"6.23.0","npm-check-updates":"2.10.3"},"preferGlobal":true,"devDependencies":{"bun":"0.0.11","gulp":"3.9.1","eslint":"3.17.1","gulp-util":"3.0.8","babel-core":"6.23.1","gulp-babel":"6.1.2","gulp-watch":"4.3.11","babel-eslint":"7.1.1","gulp-plumber":"1.1.0","babel-preset-es2015":"6.22.0","eslint-plugin-babel":"4.1.1","babel-preset-stage-2":"6.22.0","babel-plugin-transform-runtime":"6.23.0"},"_npmOperationalInternal":{"tmp":"tmp/npm-upgrade-1.0.1.tgz_1489262469730_0.707865675445646","host":"packages-12-west.internal.npmjs.com"}},"1.0.2":{"name":"npm-upgrade","version":"1.0.2","keywords":["npm","update","outdated","dependencies","cli","interactive","automatic","changelog","ignore"],"author":{"name":"Yuriy Grunin","email":"grunin.ya@ya.ru"},"license":"MIT","_id":"npm-upgrade@1.0.2","maintainers":[{"name":"anonymous","email":"grunin.ya@ya.ru"}],"homepage":"https://github.com/th0r/npm-upgrade","bugs":{"url":"https://github.com/th0r/npm-upgrade/issues"},"bin":{"npm-upgrade":"./lib/bin/cli.js"},"dist":{"shasum":"762700480845d214ff7f6f4def6976afe17c562d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/npm-upgrade/-/npm-upgrade-1.0.2.tgz","integrity":"sha512-Nnsu3WBXa97h6kxAlt4TqGwu1/bx9VA6sCNyy6C3NXgfrAxA2fMgbcsUTfpZPQtDiY/0O16qJXjgb+BzKX2uuw==","signatures":[{"sig":"MEUCIQCnwuo2q5edsiWxr4ezH5xEWxgqBGJ4NV9qnMgnPp6iSAIgVnk7F6rT+O0maXtwQagEC+YxQY2qwq/rLWlUbsJ7PSs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/bin/cli.js","_from":".","files":["lib","src","db"],"_shasum":"762700480845d214ff7f6f4def6976afe17c562d","engines":{"node":">=4"},"gitHead":"f4f1f598e9e26ccbc514fa3efe6b285b24d788f6","scripts":{"prepublish":"gulp build"},"_npmUser":{"name":"anonymous","email":"grunin.ya@ya.ru"},"changelog":"https://github.com/th0r/npm-upgrade/blob/master/CHANGELOG.md","repository":{"url":"git+https://github.com/th0r/npm-upgrade.git","type":"git"},"_npmVersion":"4.4.1","description":"Interactive CLI utility to easily update outdated NPM dependencies","directories":{"lib":"./lib"},"_nodeVersion":"4.8.0","dependencies":{"del":"2.2.2","got":"6.7.1","npm":"^3.10.6","chalk":"1.1.3","yargs":"7.0.2","lodash":"4.17.4","opener":"1.4.3","semver":"5.3.0","bluebird":"3.5.0","inquirer":"3.0.6","cli-table":"0.3.1","babel-runtime":"6.23.0","npm-check-updates":"2.10.3"},"preferGlobal":true,"devDependencies":{"bun":"0.0.11","gulp":"3.9.1","eslint":"3.18.0","gulp-util":"3.0.8","babel-core":"6.24.0","gulp-babel":"6.1.2","gulp-watch":"4.3.11","babel-eslint":"7.1.1","gulp-plumber":"1.1.0","babel-preset-env":"1.2.2","eslint-plugin-babel":"4.1.1","babel-preset-stage-2":"6.22.0","babel-plugin-transform-runtime":"6.23.0"},"_npmOperationalInternal":{"tmp":"tmp/npm-upgrade-1.0.2.tgz_1489949716699_0.4368639159947634","host":"packages-18-east.internal.npmjs.com"}},"1.0.4":{"name":"npm-upgrade","version":"1.0.4","keywords":["npm","update","outdated","dependencies","cli","interactive","automatic","changelog","ignore"],"author":{"name":"Yuriy Grunin","email":"grunin.ya@ya.ru"},"license":"MIT","_id":"npm-upgrade@1.0.4","maintainers":[{"name":"anonymous","email":"grunin.ya@ya.ru"}],"homepage":"https://github.com/th0r/npm-upgrade","bugs":{"url":"https://github.com/th0r/npm-upgrade/issues"},"bin":{"npm-upgrade":"./lib/bin/cli.js"},"dist":{"shasum":"d739c294675254bf2cdaf335da6c9a90214dbcaa","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/npm-upgrade/-/npm-upgrade-1.0.4.tgz","integrity":"sha512-Bb2eZxCD+jIzYuRuehi/eQEe2USS9Z706pQ4KBQFLYlkcoD4FFOAWI7qmvhxkxT8K3A+IWI2yMJIdQFiT7U/8w==","signatures":[{"sig":"MEQCH3pyQoqxDkMwFIwSAdROBRdve1xwog5hUfovMlV5To4CIQCwnZ9qbF2Rtk3X28HhhXd/f/hrbdl1Mq3bcTP17YIkSg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/bin/cli.js","_from":".","files":["lib","src","db"],"_shasum":"d739c294675254bf2cdaf335da6c9a90214dbcaa","engines":{"node":">=4"},"gitHead":"7a8f44bdee12ff1788a1818971a8045b68d8e83e","scripts":{"prepare":"gulp build"},"_npmUser":{"name":"anonymous","email":"grunin.ya@ya.ru"},"changelog":"https://github.com/th0r/npm-upgrade/blob/master/CHANGELOG.md","repository":{"url":"git+https://github.com/th0r/npm-upgrade.git","type":"git"},"_npmVersion":"4.6.1","description":"Interactive CLI utility to easily update outdated NPM dependencies","directories":{"lib":"./lib"},"_nodeVersion":"6.10.2","dependencies":{"del":"2.2.2","got":"6.7.1","npm":"^3.10.6","chalk":"1.1.3","yargs":"7.0.2","lodash":"4.17.4","opener":"1.4.3","semver":"5.3.0","bluebird":"3.5.0","inquirer":"3.1.0","cli-table":"0.3.1","babel-runtime":"6.23.0","npm-check-updates":"2.11.3"},"preferGlobal":true,"devDependencies":{"bun":"0.0.11","gulp":"3.9.1","eslint":"3.18.0","gulp-util":"3.0.8","babel-core":"6.24.0","gulp-babel":"6.1.2","gulp-watch":"4.3.11","babel-eslint":"7.1.1","gulp-plumber":"1.1.0","babel-preset-env":"1.2.2","eslint-plugin-babel":"4.1.1","babel-preset-stage-2":"6.22.0","babel-plugin-transform-runtime":"6.23.0"},"_npmOperationalInternal":{"tmp":"tmp/npm-upgrade-1.0.4.tgz_1497179364673_0.2934385873377323","host":"s3://npm-registry-packages"}},"1.1.0":{"name":"npm-upgrade","version":"1.1.0","keywords":["npm","update","outdated","dependencies","cli","interactive","automatic","changelog","ignore"],"author":{"name":"Yuriy Grunin","email":"grunin.ya@ya.ru"},"license":"MIT","_id":"npm-upgrade@1.1.0","maintainers":[{"name":"anonymous","email":"grunin.ya@ya.ru"}],"homepage":"https://github.com/th0r/npm-upgrade","bugs":{"url":"https://github.com/th0r/npm-upgrade/issues"},"bin":{"npm-upgrade":"./lib/bin/cli.js"},"dist":{"shasum":"a1c30dfb5112aa54ee5a18eb83caf773105078d0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/npm-upgrade/-/npm-upgrade-1.1.0.tgz","integrity":"sha512-okgLC6AVIJ+V3+KjP6x1HD9wO6KDtuf3JgKZCnx7cUzQBxa01jc1U1eKxuMBaVduX7JA8V3abbXoVecrqiol/Q==","signatures":[{"sig":"MEQCIHWym3bL7+eoFnkqcWrUoouLRRR0dHsgbO5lGGvTEWVRAiBQJIYsoKzfy1tVGVgXSM3neBNk34diL09W5zhx4gz5jA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/bin/cli.js","files":["lib","src","db"],"engines":{"node":">=4"},"gitHead":"f29d2d2a198ede60ec9b189474d54faa4ee54cbf","scripts":{"prepare":"gulp build"},"_npmUser":{"name":"anonymous","email":"grunin.ya@ya.ru"},"changelog":"https://github.com/th0r/npm-upgrade/blob/master/CHANGELOG.md","repository":{"url":"git+https://github.com/th0r/npm-upgrade.git","type":"git"},"_npmVersion":"5.0.3","description":"Interactive CLI utility to easily update outdated NPM dependencies","directories":{"lib":"./lib"},"_nodeVersion":"7.10.0","dependencies":{"del":"3.0.0","got":"7.0.0","npm":"^3.10.6","chalk":"1.1.3","yargs":"8.0.1","lodash":"4.17.4","opener":"1.4.3","semver":"5.3.0","bluebird":"3.5.0","inquirer":"3.1.0","cli-table":"0.3.1","babel-runtime":"6.23.0","npm-check-updates":"2.11.3"},"preferGlobal":true,"devDependencies":{"bun":"0.0.11","gulp":"3.9.1","eslint":"3.19.0","gulp-util":"3.0.8","babel-core":"6.25.0","gulp-babel":"6.1.2","gulp-watch":"4.3.11","babel-eslint":"7.2.3","gulp-plumber":"1.1.0","babel-preset-env":"1.5.2","eslint-plugin-babel":"4.1.1","babel-preset-stage-2":"6.24.1","babel-plugin-transform-runtime":"6.23.0"},"_npmOperationalInternal":{"tmp":"tmp/npm-upgrade-1.1.0.tgz_1497207808162_0.7915399326011539","host":"s3://npm-registry-packages"}},"1.2.0":{"name":"npm-upgrade","version":"1.2.0","keywords":["npm","update","outdated","dependencies","cli","interactive","automatic","changelog","ignore"],"author":{"name":"Yuriy Grunin","email":"grunin.ya@ya.ru"},"license":"MIT","_id":"npm-upgrade@1.2.0","maintainers":[{"name":"anonymous","email":"grunin.ya@ya.ru"}],"homepage":"https://github.com/th0r/npm-upgrade","bugs":{"url":"https://github.com/th0r/npm-upgrade/issues"},"bin":{"npm-upgrade":"./lib/bin/cli.js"},"dist":{"shasum":"368f9af1be321ce097d622d8f4cb7b4d761bd3e4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/npm-upgrade/-/npm-upgrade-1.2.0.tgz","integrity":"sha512-RV229RGtk53+3wNobPSxspdGH8QzP3ji/nMfhfFNk5jQjxUIyOGo2SzmilgNf24kaSdHpvtsns5oRbOzgYUHDw==","signatures":[{"sig":"MEYCIQCjkiaL8XQO4jtmh+VVq7TtaL9Dh3LW+M8X9y9OSGTASQIhAP+GZWon0/o3nUSd/HvcAdIXGDONkWJpW7o+SIgpNCVy","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/bin/cli.js","files":["lib","src","db"],"engines":{"node":">=4"},"gitHead":"3643b288927d4d0dea086031dfa5628a1beceaa8","scripts":{"prepare":"gulp build"},"_npmUser":{"name":"anonymous","email":"grunin.ya@ya.ru"},"changelog":"https://github.com/th0r/npm-upgrade/blob/master/CHANGELOG.md","repository":{"url":"git+https://github.com/th0r/npm-upgrade.git","type":"git"},"_npmVersion":"5.3.0","description":"Interactive CLI utility to easily update outdated NPM dependencies","directories":{"lib":"./lib"},"_nodeVersion":"8.1.4","dependencies":{"del":"3.0.0","got":"7.1.0","npm":"^3.10.6","chalk":"2.1.0","yargs":"8.0.2","lodash":"4.17.4","opener":"1.4.3","semver":"5.4.1","bluebird":"3.5.0","inquirer":"3.2.1","cli-table":"0.3.1","babel-runtime":"6.25.0","npm-check-updates":"2.12.1"},"preferGlobal":true,"devDependencies":{"bun":"0.0.11","gulp":"3.9.1","eslint":"3.19.0","gulp-util":"3.0.8","babel-core":"6.25.0","gulp-babel":"7.0.0","gulp-watch":"4.3.11","babel-eslint":"7.2.3","gulp-plumber":"1.1.0","babel-preset-env":"1.6.0","eslint-plugin-babel":"4.1.2","babel-preset-stage-2":"6.24.1","babel-plugin-transform-runtime":"6.23.0"},"_npmOperationalInternal":{"tmp":"tmp/npm-upgrade-1.2.0.tgz_1502378282603_0.10918697994202375","host":"s3://npm-registry-packages"}},"1.3.0":{"name":"npm-upgrade","version":"1.3.0","keywords":["npm","update","outdated","dependencies","cli","interactive","automatic","changelog","ignore"],"author":{"name":"Yuriy Grunin","email":"grunin.ya@ya.ru"},"license":"MIT","_id":"npm-upgrade@1.3.0","maintainers":[{"name":"anonymous","email":"grunin.ya@ya.ru"}],"homepage":"https://github.com/th0r/npm-upgrade","bugs":{"url":"https://github.com/th0r/npm-upgrade/issues"},"bin":{"npm-upgrade":"./lib/bin/cli.js"},"dist":{"shasum":"154ff3879d3a5d9e397256592d0b785be124b265","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/npm-upgrade/-/npm-upgrade-1.3.0.tgz","integrity":"sha512-BLrV8gQounUvQS/+HzjCtbL8yMwzrOtWHY22gIwaIgs1GAwvHdGOyxOYHIOYeI9Ygjjf94z3VrfRD7D2SynDhQ==","signatures":[{"sig":"MEYCIQDuaehVCJxhXT/kbrIWnO6Yu8XnFgD+vvS7Bf//rMF/VQIhAMH++smOvoXu+WueAHvpB9Qi4IBbEosEPPX6XzVYQ3pY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/bin/cli.js","_from":".","files":["lib","src","db"],"_shasum":"154ff3879d3a5d9e397256592d0b785be124b265","engines":{"node":">= 6"},"gitHead":"7ccf96e76e783363cc5059fe8729f7d2822cb25b","scripts":{"prepare":"gulp build"},"_npmUser":{"name":"anonymous","email":"grunin.ya@ya.ru"},"changelog":"https://github.com/th0r/npm-upgrade/blob/master/CHANGELOG.md","repository":{"url":"git+https://github.com/th0r/npm-upgrade.git","type":"git"},"_npmVersion":"4.6.1","description":"Interactive CLI utility to easily update outdated NPM dependencies","directories":{"lib":"./lib"},"_nodeVersion":"6.12.2","dependencies":{"del":"3.0.0","got":"8.0.1","npm":"^3.10.6","chalk":"2.3.0","yargs":"10.0.3","lodash":"4.17.4","opener":"1.4.3","semver":"5.4.1","bluebird":"3.5.1","inquirer":"4.0.1","cli-table":"0.3.1","babel-runtime":"6.26.0","npm-check-updates":"2.14.0"},"preferGlobal":true,"devDependencies":{"bun":"0.0.12","gulp":"3.9.1","eslint":"3.19.0","gulp-util":"3.0.8","babel-core":"6.26.0","gulp-babel":"7.0.0","gulp-watch":"4.3.11","babel-eslint":"7.2.3","gulp-plumber":"1.1.0","babel-preset-env":"1.6.1","eslint-plugin-babel":"4.1.2","babel-preset-stage-2":"6.24.1","babel-plugin-transform-runtime":"6.23.0"},"_npmOperationalInternal":{"tmp":"tmp/npm-upgrade-1.3.0.tgz_1514300306064_0.2585309538990259","host":"s3://npm-registry-packages"}},"1.4.0":{"name":"npm-upgrade","version":"1.4.0","keywords":["npm","update","outdated","dependencies","cli","interactive","automatic","changelog","ignore"],"author":{"name":"Yuriy Grunin","email":"grunin.ya@ya.ru"},"license":"MIT","_id":"npm-upgrade@1.4.0","maintainers":[{"name":"anonymous","email":"grunin.ya@ya.ru"}],"homepage":"https://github.com/th0r/npm-upgrade","bugs":{"url":"https://github.com/th0r/npm-upgrade/issues"},"bin":{"npm-upgrade":"./lib/bin/cli.js"},"dist":{"shasum":"a62a20035473601e272e7e62bda8782bc829e81c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/npm-upgrade/-/npm-upgrade-1.4.0.tgz","fileCount":39,"integrity":"sha512-PrkVBFnrhWJ3rhPjV1IfJEo0ZES9XGKp77oOwNgz7hiiCrcDWGmjazVaUkHb7H8jVJYe/96v52doXq3eeYhzfg==","signatures":[{"sig":"MEYCIQCd0hzbQBUvjXPEWx9/pVPQrk33L4UQlCNbYeZ+7p5J3AIhAMo5nMlo4U8pVQ1wSWn9cBRoBx81OTpflvxqVOh5ZPJz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":72920,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbVzOaCRA9TVsSAnZWagAAy6QQAJcJ+qwnElLO87cK33aW\nCNWipDgBb+IPnhneW5YiaS2FhRlJU8K0l0RAiknLYgkKbzBTBaVoWolCeaoA\nnDaRpveuy40fnig6/NYGOguEXFvyOhyV/Q+UryB3fXMwsezTHNAyfz8B5BOg\nOL4BgoSAn5Viy242Fgq+03gfbk0xkweqAUYOmZDbcVQikfD4561QlAMGdAsc\nA1BMnvZT2NpIYZ8BxQzRSKdvIGFTytKHFndf5Vi2qnVVHaJR7BzCPA+8NXCw\nUs947BMxR0tldyzu9V9hdn0tMO/yJJw1rV1iifdQIu+U3M7TjLB84aokKcvU\nwkTfUk27Ipwv22bFMKatIR4rhokGAdNo3ECtSu/o0vMYvzryyMSnNsxRrA2u\ndAyuccHoI8AsVvRavmZF/YV5P6QIt8adN7qbr/KHoR7i2hiBizZjyMjvmNTy\ndKOjRScr935LlIgl0fGei1AB8azckFXxyJvr54RehzRHVvTXOqC6cJpf/No9\nd2GPmIzPxtPgR6wCa4pchzeGf8h9A6A5U3w/TZURB9CZ1tCNXf+sL+eVBb8o\nh/YE3akL27D0bIMisCwwK5N4/DpuIpbeg1lEVY/HGf8Cm0VCkpwI33AbO4BX\negXKOsWlFxIyEYe+e8WZj/NauzOEJbLCcP/DWJWXkkLr1fdOUk+ydaoIt8Tp\n4B8J\r\n=jqIJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/bin/cli.js","files":["lib","src","db"],"engines":{"node":">= 6"},"gitHead":"66a022cf289ed36b07858589fb9dd93332088634","scripts":{"lint":"eslint .","prepare":"gulp build"},"_npmUser":{"name":"anonymous","email":"grunin.ya@ya.ru"},"changelog":"https://github.com/th0r/npm-upgrade/blob/master/CHANGELOG.md","repository":{"url":"git+https://github.com/th0r/npm-upgrade.git","type":"git"},"_npmVersion":"6.2.0","description":"Interactive CLI utility to easily update outdated NPM dependencies","directories":{"lib":"./lib"},"_nodeVersion":"10.6.0","dependencies":{"del":"3.0.0","got":"8.3.2","npm":"^3.10.6","chalk":"2.4.1","yargs":"12.0.1","lodash":"4.17.10","opener":"1.4.3","semver":"5.5.0","bluebird":"3.5.1","inquirer":"6.0.0","cli-table":"0.3.1","babel-runtime":"6.26.0","npm-check-updates":"2.14.2"},"preferGlobal":true,"_hasShrinkwrap":false,"devDependencies":{"gulp":"4.0.0","eslint":"4.19.1","babel-core":"6.26.3","gulp-babel":"7.0.1","babel-eslint":"8.2.6","babel-preset-env":"1.7.0","eslint-config-th0r":"1.0.1","babel-preset-stage-2":"6.24.1","babel-plugin-transform-runtime":"6.23.0"},"_npmOperationalInternal":{"tmp":"tmp/npm-upgrade_1.4.0_1532441498020_0.6772014275647638","host":"s3://npm-registry-packages"}},"1.4.1":{"name":"npm-upgrade","version":"1.4.1","keywords":["npm","update","outdated","dependencies","cli","interactive","automatic","changelog","ignore"],"author":{"name":"Yuriy Grunin","email":"grunin.ya@ya.ru"},"license":"MIT","_id":"npm-upgrade@1.4.1","maintainers":[{"name":"anonymous","email":"grunin.ya@ya.ru"}],"homepage":"https://github.com/th0r/npm-upgrade","bugs":{"url":"https://github.com/th0r/npm-upgrade/issues"},"bin":{"npm-upgrade":"./lib/bin/cli.js"},"dist":{"shasum":"2856e7a2db1a5f5ddc0098e3be0a2d7d24a82da4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/npm-upgrade/-/npm-upgrade-1.4.1.tgz","fileCount":39,"integrity":"sha512-CohfpKM2oznby8Ahye3/SS1r3rfZgkQ3RnBeE6aWKjY1KSFFay32o6OI4F1S2Jec1DfxB/F6tgg/Z5Hm9YSvUQ==","signatures":[{"sig":"MEYCIQCx/qgtKCKuz3FENtSOlCDaHlbI6Dn7bj2wYeHSymAZTAIhAIgWbKRhxBscoJFqFgbNKITrIGHLckppjFpf/sg9aKct","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":73727,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbZWFCRA9TVsSAnZWagAAsbAP/jL/ttpJsRidRJ2D0syb\naYxvQNdD7c9orEiU+C1wOveCL5FHRDvOoFGpfKJ5aqGxwOU8N0fDv7XVft4Y\nVwVoV0OcR84msQbR+sYtP7GV2m0Ue8aju5H1Bt8X1tTCe1966SEtbV//D3B0\nUA0MtbDVYutPJTlLn095ej3w0nsbMeoyeaCghD2I/WMRJAATXIzYEP7VPWnU\nBfMA1N1szcdJN5ax6UGUaR9FXCP2VxHJeoqLPujt27gT9gJN8DXXICs7sMn9\neUqCk4NeUveUVg69t0ENc71SLGeG8ObFoY+WQmUt8ZG9IMk38uUE/fXIuE7f\nS9cGUfgQeAIMoiZ92XoBZOOAJp7uJVTMRTiy+3G4MRQGumdoVTTwAxbSlMau\nc4RCn5sPs1UPnfjn14HWzNBCqUJwTRjGuZF22SU9jdK4gvXwXcuOWaDx8ziT\n/PqvEXznOksAXiyon7l5dH8G9eWdPU69Nwnl7Nh+Ttz1k0ITKZkXMha2nORF\nU3S0niH7WF3wGWsAonboWSBlTzlQNmrGwdbBFwDWqiJSEfRJ+2Dp9sJP9S5r\nD59kF5mpDpygeuNLbTtWwERsMSv/DU3EVxYZ9r48Hi3DNAVX+NtgsAcDSR5G\nBbK6Zo8hMBr34TQzt3tWGMbUGf89geGvAGL1D2pVPA5/WyVvfEZdw/0hwkzd\nIrEo\r\n=bAux\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/bin/cli.js","files":["lib","src","db"],"engines":{"node":">= 6"},"gitHead":"3b094fdcdcebce3676e79fd62456a21bc749f992","scripts":{"lint":"eslint .","prepare":"gulp build"},"_npmUser":{"name":"anonymous","email":"grunin.ya@ya.ru"},"changelog":"https://github.com/th0r/npm-upgrade/blob/master/CHANGELOG.md","repository":{"url":"git+https://github.com/th0r/npm-upgrade.git","type":"git"},"_npmVersion":"6.3.0","description":"Interactive CLI utility to easily update outdated NPM dependencies","directories":{"lib":"./lib"},"_nodeVersion":"10.8.0","dependencies":{"del":"3.0.0","got":"8.3.2","npm":"^3.10.6","chalk":"2.4.1","yargs":"12.0.1","lodash":"4.17.10","opener":"1.4.3","semver":"5.5.0","bluebird":"3.5.1","inquirer":"6.0.0","cli-table":"0.3.1","babel-runtime":"6.26.0","detect-indent":"5.0.0","npm-check-updates":"2.14.2"},"preferGlobal":true,"_hasShrinkwrap":false,"devDependencies":{"gulp":"4.0.0","eslint":"4.19.1","babel-core":"6.26.3","gulp-babel":"7.0.1","babel-eslint":"8.2.6","babel-preset-env":"1.7.0","eslint-config-th0r":"1.0.1","babel-preset-stage-2":"6.24.1","babel-plugin-transform-runtime":"6.23.0"},"_npmOperationalInternal":{"tmp":"tmp/npm-upgrade_1.4.1_1533908356932_0.17867289373308504","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"npm-upgrade","version":"2.0.0","keywords":["npm","update","outdated","dependencies","cli","interactive","automatic","changelog","ignore"],"author":{"name":"Yuriy Grunin","email":"grunin.ya@ya.ru"},"license":"MIT","_id":"npm-upgrade@2.0.0","maintainers":[{"name":"anonymous","email":"grunin.ya@ya.ru"}],"homepage":"https://github.com/th0r/npm-upgrade","bugs":{"url":"https://github.com/th0r/npm-upgrade/issues"},"bin":{"npm-upgrade":"./lib/bin/cli.js"},"dist":{"shasum":"675698c9db853a6204a9e7465ff1df7403aa005e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/npm-upgrade/-/npm-upgrade-2.0.0.tgz","fileCount":37,"integrity":"sha512-btnhFEN61CVVM6QoAiJKqZU1x23QjUvQvhc45n+bIkeL4WIEXJHdD3k5ccLPPd2WD0p1Puc7bE3wSc+JQZyyhQ==","signatures":[{"sig":"MEUCIQCkvvYZj2M6X7SJaSHuSguNT65o9WEi0L6eHAQDBVZmIwIgMVlxLdXJYQ1qeI8iQS74n646sWE5zPpy/DordW7qDfo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":71222,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdL0PwCRA9TVsSAnZWagAADTUP/3Md8hNFZP3YF2GqpLWj\nII85s0r94ihxZpHJrRIUm6jWzDvhGz7uhbadtG8nG1As+gCMRjHQbNbURTx5\nSkpTcLusQDtuZY6k51oI29muuBZVpRTcpRtovhfGfqE6t2sNj4PZ95BMI4NF\n/M+tT5GnmYbU9I+2rpJFrJRPVfOUv6qYbZmypW/Hn9UMbrCuQbhFUFwnNTNP\nMZ5kUH+QSXHFXiq0Vw/WVVlcxzjlKW3rmbNB+zsGcBvwvYneIX/6WmT2giV6\nDVuwvnZaQm835cGZNdz7N6scTNykR2imdbvsBy1YnBX9c4ZdR/AYCiKYQUjO\nmHhYxybyXurRI/J96L6BavhY7nUfEKc9tEcBTc03sgAtPjxvBOU8OL2/v/gd\nllONJCiy6v8Qein3VlxB7ZIEUuLio03WLR1oqgZsCfyEf2vH1zT0a4s/reO4\nb21Ehfh15f7SMno6D4MB98Mw/u4BvNbp5I9atra1PZnmHoeJp5aH7PUn+5+Y\nWf7q8Fs6vCQKihCs6xqz2P6vWvElJ3b5mQSoEFh0b59f2XtN/ws/5XFdETXS\njP7usvR7nkGs1daaeAqyOROjgmjf+wEpk5RXHSjYOeqQVmD89x/kNpZ9kydT\ndo0w32jCf3RWM7rSqCy2+hncP9cXqCxH4PJ1p4nLO7rEoGY/PuKReDIYX9PE\nwA4x\r\n=bagM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/bin/cli.js","engines":{"node":">= 8"},"gitHead":"3703979b6f928c6402202c0987e677d530ba2732","scripts":{"dev":"gulp watch","lint":"eslint .","build":"gulp build","prepare":"gulp build"},"_npmUser":{"name":"anonymous","email":"grunin.ya@ya.ru"},"changelog":"https://github.com/th0r/npm-upgrade/blob/master/CHANGELOG.md","repository":{"url":"git+https://github.com/th0r/npm-upgrade.git","type":"git"},"_npmVersion":"6.9.0","description":"Interactive CLI utility to easily update outdated NPM dependencies","directories":{"lib":"./lib"},"_nodeVersion":"8.16.0","dependencies":{"del":"5.0.0","got":"9.6.0","chalk":"2.4.2","yargs":"13.3.0","lodash":"4.17.14","opener":"1.5.1","pacote":"9.5.4","semver":"6.2.0","bluebird":"3.5.5","inquirer":"6.5.0","cli-table":"0.3.1","libnpmconfig":"1.2.1","detect-indent":"6.0.0","@babel/runtime":"7.5.4","npm-check-updates":"3.1.20"},"preferGlobal":true,"_hasShrinkwrap":false,"devDependencies":{"gulp":"4.0.2","eslint":"5.16.0","gulp-babel":"8.0.0","@babel/core":"7.5.4","babel-eslint":"10.0.2","@babel/preset-env":"7.5.4","eslint-config-th0r":"2.0.0","babel-plugin-lodash":"3.3.4","@babel/plugin-transform-runtime":"7.5.0"},"_npmOperationalInternal":{"tmp":"tmp/npm-upgrade_2.0.0_1563378672023_0.646022081292704","host":"s3://npm-registry-packages"}},"2.0.1":{"name":"npm-upgrade","version":"2.0.1","keywords":["npm","update","outdated","dependencies","cli","interactive","automatic","changelog","ignore"],"author":{"name":"Yuriy Grunin","email":"grunin.ya@ya.ru"},"license":"MIT","_id":"npm-upgrade@2.0.1","maintainers":[{"name":"anonymous","email":"grunin.ya@ya.ru"}],"homepage":"https://github.com/th0r/npm-upgrade","bugs":{"url":"https://github.com/th0r/npm-upgrade/issues"},"bin":{"npm-upgrade":"./lib/bin/cli.js"},"dist":{"shasum":"23650d56e9f9987aa68b8867fd4b562139fab15a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/npm-upgrade/-/npm-upgrade-2.0.1.tgz","fileCount":37,"integrity":"sha512-vxxlS2ViFK0z3cbVV649asgJLNt9AvU8CWCf7T7/L1pEckbB418D820XEawyIbSgPFFilYmZS8hWy3WU/AKexA==","signatures":[{"sig":"MEMCH3xIpBOkewOKmYHPZaeJrOeYIgiRbWXYlgyuZhT6TekCIEXEcRuCXyv1tO+scofy9TkxFfiH3dl2qG8VHEqXZEiV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":71946,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdd9YDCRA9TVsSAnZWagAAD6EP/RAPeL3jhE0u2YokUKK3\njELVarRBRpUE16tAydRIrX5m1GWZ+X6gHKHLz6MPKk3MbXNlFn9T0f9Cs8ca\nU44dhejzZ0VoWrVvMRvlHWcOXcjZl+NKlBJ/mzxdGExKkzEnSVukwlDcfYc2\nkifa0OvbLahAOlibd306+ikmBXgfI3cBS1z+pVPNcKqT25xxCIPZXGOb55lq\nUzEpMqKy5Kl7awHXh7oai3aOIZ42J3w5reAoq3ROZYo7YGWKnTqqA4cH1oZM\nTq+j/IsJbSZemTNxHMEJb8dNvTW3PZcP8KW3ZuYUZk3B8Ya098yBVS0++6un\nyfLN+Ar6k7CoByXPbsKxq8FrJ3E3LEsjNEYLH7Ngz0tabRFXiy5YT6wgax4m\nGF1e+FbZe9BsdFBYecfHc6ygdDaA3qG9fkOphpyn/Q1wliUB6BwhYJHrrNnj\nW0Shktig4zIjXNhPp3HhOfPJNHlEPUNjwR9bEFcq912rioq9X087ifeaNUiX\nUfH2mogp8S3ZLRmqSi6D2RBmwbV0klz7ULvt6bGS/cnzxXb8RhBVt+DwSaFZ\nlNlFVqnqkYvoh/z0ri5kf6W7RbaVxi5Pl2RK0rlx5bAw+quixg1jErV4uy3y\nq8VeLZAdxv6OEojSWgJvIZGbY5Os9GwL3tTWXkdO72Y+lrLR3HfZjyyZ2RwB\ng5ej\r\n=VbTV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/bin/cli.js","engines":{"node":">= 8"},"gitHead":"0b14224e1c104f4073fe5ac0f15f7729b4efaa35","scripts":{"dev":"gulp watch","lint":"eslint .","build":"gulp build","prepare":"gulp build"},"_npmUser":{"name":"anonymous","email":"grunin.ya@ya.ru"},"changelog":"https://github.com/th0r/npm-upgrade/blob/master/CHANGELOG.md","repository":{"url":"git+https://github.com/th0r/npm-upgrade.git","type":"git"},"_npmVersion":"6.10.3","description":"Interactive CLI utility to easily update outdated NPM dependencies","directories":{"lib":"./lib"},"_nodeVersion":"12.9.1","dependencies":{"del":"5.0.0","got":"9.6.0","chalk":"2.4.2","yargs":"13.3.0","lodash":"4.17.14","opener":"1.5.1","pacote":"9.5.4","semver":"6.2.0","bluebird":"3.5.5","inquirer":"6.5.0","cli-table":"0.3.1","libnpmconfig":"1.2.1","detect-indent":"6.0.0","@babel/runtime":"7.5.4","npm-check-updates":"3.1.20"},"preferGlobal":true,"_hasShrinkwrap":false,"devDependencies":{"gulp":"4.0.2","eslint":"5.16.0","gulp-babel":"8.0.0","@babel/core":"7.5.4","babel-eslint":"10.0.2","@babel/preset-env":"7.5.4","eslint-config-th0r":"2.0.0","babel-plugin-lodash":"3.3.4","@babel/plugin-transform-runtime":"7.5.0"},"_npmOperationalInternal":{"tmp":"tmp/npm-upgrade_2.0.1_1568134659263_0.7481907012336535","host":"s3://npm-registry-packages"}},"2.0.2":{"name":"npm-upgrade","version":"2.0.2","keywords":["npm","update","outdated","dependencies","cli","interactive","automatic","changelog","ignore"],"author":{"name":"Yuriy Grunin","email":"grunin.ya@ya.ru"},"license":"MIT","_id":"npm-upgrade@2.0.2","maintainers":[{"name":"anonymous","email":"grunin.ya@ya.ru"}],"homepage":"https://github.com/th0r/npm-upgrade","bugs":{"url":"https://github.com/th0r/npm-upgrade/issues"},"bin":{"npm-upgrade":"./lib/bin/cli.js"},"dist":{"shasum":"9c16233bb7252ef60e1c2c4b459c84dde2481f53","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/npm-upgrade/-/npm-upgrade-2.0.2.tgz","fileCount":39,"integrity":"sha512-EaIqXraI2CycpvyyuV+o5Vb8JrbBS3ZNnf4EsGW0ERRr6ELFi/rTORq1hivCGfh9F21gcpGadfS2+EWdghzZ2g==","signatures":[{"sig":"MEUCIQC4/0ujnbrc8apMZnCR42Vzejry9IXtIB8ENRyvqvOItAIgQgbOEqOXRvrwDdBFLkHhwohHEE9fzRQL17sR/khEnno=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":73068,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdflcnCRA9TVsSAnZWagAApDAP/iYN35aCp45sOD19iTFt\nrYwJLL79NByh/BCuHW9071Y3HtIDzpD5MXg75FQxx1feGeLU5dixzpGj3PkZ\nOR80WmGFJragLbnJVC0C8TIEUL8NSw3WxYCn6T462oF4ZkMOKnbySMgRrznb\nB1vAs8KeVPgEj1hyQ+YXmsaW9oO4HSXQqHhm89zmHBMkWoNvYBAMZ42Vux1a\nwY6/MVN+s7ez4qS+K8oVL8Mj3w2LGOP0JIHTvqO5PpuCdLJHbUZUgXRlpHiA\novxkMd+YRF+EJlra2Rqn436oy6EXEzWJenKPCpYWXo7Ys66HsrMcOjQA9PN4\nenLprJTFWSb0gNzo24R6LeA/8sGBQTLnQuQ0/+ipTqYxSAU/iwpOdYAPck9u\nTGVr6a/zwjmVy90Q6B3oD4LaFQWRNpjoV2rzt2Hi069cFBaFkDmW4aRqq4d5\nagozcmPpCe0bpUjgnQ/cGi77kpbsVDm81/YZREEpbnrQ06AiTbIiHb7EbSqz\nUa6nBpYFmd8Chf518YWlduXNdgMKSv5djvQcapmQrSy1RRcIKf8bayLo5Zhl\nCYXpJiyjMTPUs8XuLFd4t3a0HDtWRSopTvCjl6liZKCUgIoq5t3xjGbHR2gW\nMr7r6ZLUDc+pMu0O37i2EJtcwmuHky6VGjOzhyLdTBVLPmScWJiKNHSTNnQa\nyKoU\r\n=WT/l\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/bin/cli.js","engines":{"node":">= 8"},"gitHead":"9f97687d05f5c7007fa5411ec6184f09f4a9fbae","scripts":{"dev":"gulp watch","lint":"eslint .","build":"gulp build","prepare":"gulp build"},"_npmUser":{"name":"anonymous","email":"grunin.ya@ya.ru"},"changelog":"https://github.com/th0r/npm-upgrade/blob/master/CHANGELOG.md","repository":{"url":"git+https://github.com/th0r/npm-upgrade.git","type":"git"},"_npmVersion":"6.10.3","description":"Interactive CLI utility to easily update outdated NPM dependencies","directories":{"lib":"./lib"},"_nodeVersion":"12.9.1","dependencies":{"del":"5.0.0","got":"9.6.0","chalk":"2.4.2","yargs":"13.3.0","lodash":"4.17.14","opener":"1.5.1","pacote":"9.5.4","semver":"6.2.0","bluebird":"3.5.5","inquirer":"6.5.0","cli-table":"0.3.1","libnpmconfig":"1.2.1","detect-indent":"6.0.0","@babel/runtime":"7.5.4","npm-check-updates":"3.1.20"},"preferGlobal":true,"_hasShrinkwrap":false,"devDependencies":{"gulp":"4.0.2","eslint":"5.16.0","gulp-babel":"8.0.0","@babel/core":"7.5.4","babel-eslint":"10.0.2","@babel/preset-env":"7.5.4","eslint-config-th0r":"2.0.0","babel-plugin-lodash":"3.3.4","@babel/plugin-transform-runtime":"7.5.0"},"_npmOperationalInternal":{"tmp":"tmp/npm-upgrade_2.0.2_1568560935080_0.13079361913391918","host":"s3://npm-registry-packages"}},"2.0.3":{"name":"npm-upgrade","version":"2.0.3","keywords":["npm","update","outdated","dependencies","cli","interactive","automatic","changelog","ignore"],"author":{"name":"Yuriy Grunin","email":"grunin.ya@ya.ru"},"license":"MIT","_id":"npm-upgrade@2.0.3","maintainers":[{"name":"anonymous","email":"grunin.ya@ya.ru"}],"homepage":"https://github.com/th0r/npm-upgrade","bugs":{"url":"https://github.com/th0r/npm-upgrade/issues"},"bin":{"npm-upgrade":"lib/bin/cli.js"},"dist":{"shasum":"d0f585ea0ce4fcc9c02f848a215eff145b95a138","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/npm-upgrade/-/npm-upgrade-2.0.3.tgz","fileCount":39,"integrity":"sha512-cEeQ8XuJnjgsYMxEGXqRdNuJ1k8rDk+2q/KckX02v3zf0J2Q33+2ZF5jNw3KioIZc0El5sEgu6L8/LH952aXqA==","signatures":[{"sig":"MEYCIQDVOtGUWHYN2AnVT4id2OMHYE33H9UXlzw/LUtkSD6c7AIhAO1O0+mvFbsn+yU4ZKashvsc3K2H6wLFwu18lENYqrvH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":73027,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeYRLtCRA9TVsSAnZWagAAn8AP/Az/Qo81E/6DgXI4ZXxc\n3pLyI2yEHmZCF15/QXAxgFJJryWEBEyNN3HJFPtczF2IGh9JEsOAbvUcFd4I\nEMBGksxIqrzS2ATaAQtLyxzoYf0u8YbkW2vQ8UNmBh3emjoN4a8lvFXKCg2C\n2A7YRrfJih9CD2n6hFFu5wEq5C4gBXskE4JM9WbdLwqYk/Bl5fn/GHYBU+LW\njO2UFU6qhJSsAG007C7HwRZUipLPPTvSy0cfNJvUORe1GPr3RYy3mhghwHof\nBznDdTEreMsif61gXHiLkOTPOJIxo3C0xaUmkjEuUMbv12Gbb3bOmm+jPxp4\nwDHVyQELZ+OoshV3x0djdQkWo0UGRF+cseyzsL8NknZ6/BWvlSLcUQoiUbYn\ncSEHXZTzZZxBhdIJaqKyfQuSqltWGY8nlNd1FZO5NXqJ/vEG1UoNhAgB8hiF\nSJGjaHnjTnlJrK12AtMgU6aAbE07INKD8AO/VTIU3ydHbv9tR8BwDRBvWAWs\ney38zfz0wRCMYnurKbuKc1VF+aXuCGwlokLGixdSTuA7RBP5NePb1h+ClzCP\n0rVfvqo3JAi2uOxcQ2Tv0FpECqEzXoqpDMwtrDTuMeo59faIPV3QRZo2jXE5\nWEoxBOHUxDKeWjr7d5UERxh7Dygaf0KxeC40oBnkKBSQBrtYwiG98toowhrx\nSt4N\r\n=GLZQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/bin/cli.js","engines":{"node":">= 8"},"gitHead":"25922080e37dd31a8c49ab3e46f151816fd9a5ec","scripts":{"dev":"gulp watch","lint":"eslint .","build":"gulp build","prepare":"gulp build"},"_npmUser":{"name":"anonymous","email":"grunin.ya@ya.ru"},"changelog":"https://github.com/th0r/npm-upgrade/blob/master/CHANGELOG.md","repository":{"url":"git+https://github.com/th0r/npm-upgrade.git","type":"git"},"_npmVersion":"6.13.7","description":"Interactive CLI utility to easily update outdated NPM dependencies","directories":{"lib":"./lib"},"_nodeVersion":"12.16.0","dependencies":{"del":"5.0.0","got":"9.6.0","chalk":"2.4.2","yargs":"13.3.0","lodash":"4.17.14","opener":"1.5.1","pacote":"9.5.4","semver":"6.2.0","bluebird":"3.5.5","inquirer":"6.5.0","cli-table":"0.3.1","libnpmconfig":"1.2.1","detect-indent":"6.0.0","@babel/runtime":"7.5.4","npm-check-updates":"4.0.3"},"preferGlobal":true,"_hasShrinkwrap":false,"devDependencies":{"gulp":"4.0.2","eslint":"5.16.0","gulp-babel":"8.0.0","@babel/core":"7.5.4","babel-eslint":"10.0.2","@babel/preset-env":"7.5.4","eslint-config-th0r":"2.0.0","babel-plugin-lodash":"3.3.4","@babel/plugin-transform-runtime":"7.5.0"},"_npmOperationalInternal":{"tmp":"tmp/npm-upgrade_2.0.3_1583420140747_0.8976013236478517","host":"s3://npm-registry-packages"}},"2.0.4":{"name":"npm-upgrade","version":"2.0.4","keywords":["npm","update","outdated","dependencies","cli","interactive","automatic","changelog","ignore"],"author":{"name":"Yuriy Grunin","email":"grunin.ya@ya.ru"},"license":"MIT","_id":"npm-upgrade@2.0.4","maintainers":[{"name":"anonymous","email":"grunin.ya@ya.ru"}],"homepage":"https://github.com/th0r/npm-upgrade","bugs":{"url":"https://github.com/th0r/npm-upgrade/issues"},"bin":{"npm-upgrade":"lib/bin/cli.js"},"dist":{"shasum":"e812b1af52b4fa8288be0c916f5a17dc59c46313","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/npm-upgrade/-/npm-upgrade-2.0.4.tgz","fileCount":39,"integrity":"sha512-LteSpe/Q1qH1c5tkBMpZnUM/n52cPfv49Y+IoAeim/vf20j+xzQ4uVpAixLdODOScAOMMK5eUjih/9MBYGLZXQ==","signatures":[{"sig":"MEQCIA4i2YGIfSg0afI7SwR5DD1lIKt6V288uLROONnWJqsZAiAG6eVAKiwetSgLGE8K3munsiRYNO4ExBRGpOe/emqUlA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":73209,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfGuoqCRA9TVsSAnZWagAAfzQQAJZwGZ1cNtLcXU9paNAf\nM1YIjpcHEMF9qJD/Eiu4sOyHzrg4/D7CU5Iiyd6KwVCAh7LSdHNxVQ7UNkyj\nP3YtvDnrDCSSRAFuOv5D1qgkl2mgVek9QhaR3FGve1Uzk15YfriBiu2/E2QI\nIZiNXEbOrQm1qfneEUWbihH2Fni4TVk2cL6p8DCbTP33+C6pz5JjiPvpLgST\nnjY28Cw25BBIX40wWRr53ZuRPNWTCV5JRTSihobzR65SbYp9Ju51gU5BVcbc\naNq7ik78QCcT9799m37VSDIYNE/AzGc4TyiT5Ul+5PAYU8YFhlyutT2e0AHk\nbfGZAP8fr9D84FvswiTxF1nFwaQgC8K2mO1smkjfbizU98DB+4O/UEk2Mh8w\nzrge8m+fa4uc0WBO9tS8okVYaqAbIV6n230fv/dSeXyx8jS2bmNWGefWAQEm\ntIETT6tM/b/Cu83vB7Sq3Z4Y7Zvp4ne2lVkfcWUskFCY35z8+A7OyJ+PHLYi\n/QN45uXbwu1zWuPJNsHduoYXJi6+HVN+cYs9A63wJr6d2mVl+JQMChpwFoEO\n3FgItMplusR9QtVruQiQw3948308W2hYzi2K7NOd5waEEIm0wwVml1D8LyPI\nkKn9cZAvjj51BpgdHOjkc81RQH64MZlbfUiGj13IdBvb3qX/rfpv7p1insKU\nSwr0\r\n=xtNK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/bin/cli.js","engines":{"node":">= 8"},"gitHead":"99481ccdc46e36cec255b4226951e80a7cbad64c","scripts":{"dev":"gulp watch","lint":"eslint .","build":"gulp build","prepare":"gulp build"},"_npmUser":{"name":"anonymous","email":"grunin.ya@ya.ru"},"changelog":"https://github.com/th0r/npm-upgrade/blob/master/CHANGELOG.md","repository":{"url":"git+https://github.com/th0r/npm-upgrade.git","type":"git"},"_npmVersion":"6.14.6","description":"Interactive CLI utility to easily update outdated NPM dependencies","directories":{"lib":"./lib"},"_nodeVersion":"12.16.1","dependencies":{"del":"5.0.0","got":"9.6.0","open":"7.0.4","chalk":"2.4.2","yargs":"13.3.0","lodash":"4.17.14","pacote":"9.5.4","semver":"6.2.0","bluebird":"3.5.5","inquirer":"6.5.0","cli-table":"0.3.1","libnpmconfig":"1.2.1","detect-indent":"6.0.0","@babel/runtime":"7.5.4","npm-check-updates":"4.0.3"},"preferGlobal":true,"_hasShrinkwrap":false,"devDependencies":{"gulp":"4.0.2","eslint":"5.16.0","gulp-babel":"8.0.0","@babel/core":"7.5.4","babel-eslint":"10.0.2","@babel/preset-env":"7.5.4","eslint-config-th0r":"2.0.0","babel-plugin-lodash":"3.3.4","@babel/plugin-transform-runtime":"7.5.0"},"_npmOperationalInternal":{"tmp":"tmp/npm-upgrade_2.0.4_1595599402011_0.499196840288034","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"npm-upgrade","version":"3.0.0","keywords":["npm","update","outdated","dependencies","cli","interactive","automatic","changelog","ignore"],"author":{"name":"Yuriy Grunin","email":"grunin.ya@ya.ru"},"license":"MIT","_id":"npm-upgrade@3.0.0","maintainers":[{"name":"anonymous","email":"grunin.ya@ya.ru"}],"homepage":"https://github.com/th0r/npm-upgrade","bugs":{"url":"https://github.com/th0r/npm-upgrade/issues"},"bin":{"npm-upgrade":"lib/bin/cli.js"},"dist":{"shasum":"cfdf20b2ebd4cce92d768c851f25438d76b9fd51","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/npm-upgrade/-/npm-upgrade-3.0.0.tgz","fileCount":39,"integrity":"sha512-mQH9XuY+/OioqATbqaFsYnrD5LvqPxxpUPhr7Fx9+mSE4x0IziSWNVUPh+OebA28kcJXjBDUKJtlZzjNpH5Grw==","signatures":[{"sig":"MEUCIAGx2ehXghQMdLuFaPmYze3O96qqPMj/AZwBRWTyaAiqAiEAw9u+iXHJzyOgzzr6/UJ1wqdmKjlOkPfHA6C0CX7l+rw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":73321,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgN2o+CRA9TVsSAnZWagAAlS8P/2XATqIc6RIYbloPaLMA\ndVlcvU9GwtX6VwTlhI4hXdPKSveU3/XBpWl/E/z+YozcTPFRuJ9EFrBS+uel\nqCmM8Eouq0RpG1gTX6HfuYkRuo5TNDJswtSX1k3J/WlfLBKy7Xy8pf6MKsr5\n/NOSZIA8im29eVidPfL0F+hvpYSkXMli6z4DkbC7WbNx9dOk0rsVwUlfBSL6\nGEDC6/iIRvLq/nPH5seD3AFX/Dx77qT5fYSI9H2C6R8wCB0zK87Zdc3ql2HT\nKd2W4sRZkliJcub6utHNk46+NT4cSyHfESVfrNsdlSuu/FdLhzv22kW2MXYb\nVtuPZGR0NCHQSnRZgQsXSF0cvKbo2nrfyCr6fP2G3g+uIwQAfd2hWFrEnwRg\n2DQ3QTyr9yoANihbsmxDmQfGuqhfWCn4aPRJovP0RPEVzSJNPMJarc5x/pop\nWFLfVGRuRr1PD9JeHbuYx2jQfgYKZ+JRULgV1OjqCYA0HtuaBL3obZXSTnOT\nMXfoKJM0DfgR3LL0h++g9MR5+1rU2yFig5dybs8IX8Ax2bEEMnLFKZRQuBVh\nXYs3hjy6j3Gt2BZQNVENAhAUgM/rarmhgwajGCOx/5jDTwKpoMu5ycI1Ng5p\nDYS4tcdbLpf0POiHIcErO6a9CB+1Ybp1BFsnbJ5/H+RKy0PIYd5OqAih0mh7\nCcM5\r\n=bnjv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/bin/cli.js","engines":{"node":">= 10.19"},"gitHead":"4026460e88c09f120877b1fe22e3d082a4893e98","scripts":{"dev":"gulp watch","lint":"eslint .","build":"gulp build","prepare":"gulp build"},"_npmUser":{"name":"anonymous","email":"grunin.ya@ya.ru"},"changelog":"https://github.com/th0r/npm-upgrade/blob/master/CHANGELOG.md","repository":{"url":"git+https://github.com/th0r/npm-upgrade.git","type":"git"},"_npmVersion":"6.14.11","description":"Interactive CLI utility to easily update outdated NPM dependencies","directories":{"lib":"./lib"},"_nodeVersion":"10.19.0","dependencies":{"del":"6.0.0","got":"11.8.1","open":"7.4.2","chalk":"4.1.0","yargs":"16.2.0","lodash":"4.17.21","pacote":"11.2.7","semver":"7.3.4","bluebird":"3.7.2","inquirer":"7.3.3","cli-table":"0.3.5","libnpmconfig":"1.2.1","detect-indent":"6.0.0","@babel/runtime":"7.13.7","npm-check-updates":"11.1.9"},"preferGlobal":true,"_hasShrinkwrap":false,"devDependencies":{"gulp":"4.0.2","eslint":"5.16.0","gulp-babel":"8.0.0","@babel/core":"7.13.1","babel-eslint":"10.1.0","@babel/preset-env":"7.13.5","eslint-config-th0r":"2.0.0","babel-plugin-lodash":"3.3.4","@babel/plugin-transform-runtime":"7.13.7"},"_npmOperationalInternal":{"tmp":"tmp/npm-upgrade_3.0.0_1614244414351_0.47930187092981713","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"npm-upgrade","version":"3.1.0","keywords":["npm","update","outdated","dependencies","cli","interactive","automatic","changelog","ignore"],"author":{"name":"Yuriy Grunin","email":"grunin.ya@ya.ru"},"license":"MIT","_id":"npm-upgrade@3.1.0","maintainers":[{"name":"anonymous","email":"grunin.ya@ya.ru"}],"homepage":"https://github.com/th0r/npm-upgrade","bugs":{"url":"https://github.com/th0r/npm-upgrade/issues"},"bin":{"npm-upgrade":"lib/bin/cli.js"},"dist":{"shasum":"0456a43a2fd8f36752c5d218467cac9c638b079a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/npm-upgrade/-/npm-upgrade-3.1.0.tgz","fileCount":39,"integrity":"sha512-pz2U+WP2DL9voleOhGWshwxALn3YuRxp14VQR0/Y/vpNXjlUUD49p8w7HHxUlMeQiONGidrVvqalEX+PAXee7g==","signatures":[{"sig":"MEQCIHkgtRDvIfe6aj5ZuyOcIq5D0o+Enxp4HYcmGM3hIQZkAiAKSIInnrAXXqAAp3FRkY0LQpGJkN515KN4SCdmZPCQ3A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":80613,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh6m5ECRA9TVsSAnZWagAAyHQP/23lcTT1n+GhvBJXIQft\nJniZwl+OA5AmqXgUU62ga5mUtM4pBRVFrw+JXNeRoSNEr23HJX7ogAN/JQ0y\ngoE/mNfNV8vi7oWQqE4Md6E414XyEgSkU/1DNgeBQXgry53QGyMNh9aRewi6\nfYLQCnxHbsWhIwDKOqk4g5SLVwKjo7poWfa83GBQz8bLQRQS7IHPK4N4BmDt\nD31HGXA0jHX+8QH/kh6Mg8AaRZIvemamTWv5280ya9YsBRV6xnApjod6C9K+\n3ahiGok9h3KGSIUiBD+wuWgvKodPAivcFssW1hdNYekEMmCrALR0lkOMSh1N\nr3C9HR34BCdv7PJFHp7yIlzkqG+mzdmzUZTawE2h0bPGncdEUe2jgKXHsElD\n000DI54+PokQNVRdYDDfbY7KftcOoQRl6IbJWBbOzB5OlxO6uMGptSkyAMdG\nBnpkD19YPNVcH5qoS6uHGtQASrj4xiVPVe7wp4u/wVXbEK7vf/PQcouTEVL2\natglHc45sPDujVHcpUnHvTRYmVe8Iu+7x7BUXZF/Hb8LCch/PHIl5qegZc92\n4R1YsKKcl9iTu2yiG1K/DzZwFO64oCr4zf490b4rxURCWyVsOBo1EAqsHxUb\nGyA/3WEFO0MlQ6kOhc29JQ0TGA/4cvm48b/iKY3LbILlTO8JPEw+2nZoPaI8\nYAbM\r\n=X3Uh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/bin/cli.js","engines":{"node":">= 10.19"},"gitHead":"60f6792796b2472610853147b66eea8ededd4801","scripts":{"dev":"gulp watch","lint":"eslint .","build":"gulp build","prepare":"gulp build"},"_npmUser":{"name":"anonymous","email":"grunin.ya@ya.ru"},"changelog":"https://github.com/th0r/npm-upgrade/blob/master/CHANGELOG.md","repository":{"url":"git+https://github.com/th0r/npm-upgrade.git","type":"git"},"_npmVersion":"6.14.15","description":"Interactive CLI utility to easily update outdated NPM dependencies","directories":{"lib":"./lib"},"_nodeVersion":"14.18.2","dependencies":{"del":"6.0.0","got":"11.8.1","open":"7.4.2","chalk":"4.1.0","yargs":"16.2.0","lodash":"4.17.21","pacote":"11.2.7","semver":"7.3.4","shelljs":"^0.8.4","bluebird":"3.7.2","inquirer":"7.3.3","cli-table":"0.3.5","libnpmconfig":"1.2.1","detect-indent":"6.0.0","@babel/runtime":"7.13.7","npm-check-updates":"11.1.9"},"preferGlobal":true,"_hasShrinkwrap":false,"devDependencies":{"gulp":"4.0.2","eslint":"5.16.0","gulp-babel":"8.0.0","@babel/core":"7.13.1","babel-eslint":"10.1.0","@babel/preset-env":"7.13.5","eslint-config-th0r":"2.0.0","babel-plugin-lodash":"3.3.4","@babel/plugin-transform-runtime":"7.13.7"},"_npmOperationalInternal":{"tmp":"tmp/npm-upgrade_3.1.0_1642753604060_0.8436182734168867","host":"s3://npm-registry-packages"}},"3.1.1":{"name":"npm-upgrade","version":"3.1.1","keywords":["npm","update","outdated","dependencies","cli","interactive","automatic","changelog","ignore"],"author":{"name":"Yuriy Grunin","email":"grunin.ya@ya.ru"},"license":"MIT","_id":"npm-upgrade@3.1.1","maintainers":[{"name":"anonymous","email":"grunin.ya@ya.ru"}],"homepage":"https://github.com/th0r/npm-upgrade","bugs":{"url":"https://github.com/th0r/npm-upgrade/issues"},"bin":{"npm-upgrade":"lib/bin/cli.js"},"dist":{"shasum":"4df5a7804bea1b4f13f0e9cc287d259255bf592e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/npm-upgrade/-/npm-upgrade-3.1.1.tgz","fileCount":38,"integrity":"sha512-qcITXijcUa3j22TxUPfZ5Nv2GDBVBwkyHpdWB/KFyLNIY2UYwhdEiEOlRMNtxu0rpp38+dF1f7RglfqhfGfr+A==","signatures":[{"sig":"MEUCIQDzw/MKYW0pAVPqUYyGG4CXrFXBflOkHqz5eVwaFsULUgIgTRodEa2kQi0e/wb19ulAF8CpA3bfr3Da1UaYFVILAdw=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":78017},"main":"./lib/bin/cli.js","engines":{"node":">= 10.19"},"gitHead":"5a12be245de33ad380693ac838233e4af9e3d7a5","scripts":{"dev":"gulp watch","lint":"eslint .","build":"gulp build","prepare":"gulp build"},"_npmUser":{"name":"anonymous","email":"grunin.ya@ya.ru"},"changelog":"https://github.com/th0r/npm-upgrade/blob/master/CHANGELOG.md","repository":{"url":"git+https://github.com/th0r/npm-upgrade.git","type":"git"},"_npmVersion":"10.9.2","description":"Interactive CLI utility to easily update outdated NPM dependencies","directories":{"lib":"./lib"},"_nodeVersion":"20.13.1","dependencies":{"del":"6.0.0","got":"11.8.1","open":"7.4.2","chalk":"4.1.0","yargs":"16.2.0","lodash":"4.17.21","pacote":"11.2.7","semver":"7.3.4","shelljs":"^0.8.4","bluebird":"3.7.2","inquirer":"7.3.3","cli-table":"0.3.5","libnpmconfig":"1.2.1","detect-indent":"6.0.0","@babel/runtime":"7.13.7","npm-check-updates":"11.1.9"},"preferGlobal":true,"_hasShrinkwrap":false,"devDependencies":{"gulp":"4.0.2","eslint":"5.16.0","gulp-babel":"8.0.0","@babel/core":"7.13.1","babel-eslint":"10.1.0","@babel/preset-env":"7.13.5","eslint-config-th0r":"2.0.0","babel-plugin-lodash":"3.3.4","@babel/plugin-transform-runtime":"7.13.7"},"_npmOperationalInternal":{"tmp":"tmp/npm-upgrade_3.1.1_1745606750393_0.5352013846710295","host":"s3://npm-registry-packages-npm-production"}},"3.1.2":{"name":"npm-upgrade","version":"3.1.2","description":"Interactive CLI utility to easily update outdated NPM dependencies","author":{"name":"Yuriy Grunin","email":"grunin.ya@ya.ru"},"license":"MIT","homepage":"https://github.com/th0r/npm-upgrade","changelog":"https://github.com/th0r/npm-upgrade/blob/master/CHANGELOG.md","bugs":{"url":"https://github.com/th0r/npm-upgrade/issues"},"repository":{"type":"git","url":"git+https://github.com/th0r/npm-upgrade.git"},"main":"./lib/bin/cli.js","bin":{"npm-upgrade":"lib/bin/cli.js"},"scripts":{"prepare":"gulp build","build":"gulp build","dev":"gulp watch","lint":"eslint ."},"engines":{"node":">= 10.19"},"preferGlobal":true,"dependencies":{"@babel/runtime":"7.13.7","bluebird":"3.7.2","chalk":"4.1.0","cli-table":"0.3.5","del":"6.0.0","detect-indent":"6.0.0","got":"11.8.1","inquirer":"7.3.3","libnpmconfig":"1.2.1","lodash":"4.17.21","npm-check-updates":"11.1.9","open":"7.4.2","pacote":"11.2.7","semver":"7.3.4","shelljs":"^0.8.4","yargs":"16.2.0"},"devDependencies":{"@babel/core":"7.13.1","@babel/plugin-transform-runtime":"7.13.7","@babel/preset-env":"7.13.5","babel-eslint":"10.1.0","babel-plugin-lodash":"3.3.4","eslint":"5.16.0","eslint-config-th0r":"2.0.0","gulp":"4.0.2","gulp-babel":"8.0.0"},"directories":{"lib":"./lib"},"keywords":["npm","update","outdated","dependencies","cli","interactive","automatic","changelog","ignore"],"_id":"npm-upgrade@3.1.2","gitHead":"8a82e032f843f4fa86b51cfc0e03b38d7ad7b49f","_nodeVersion":"20.13.1","_npmVersion":"10.9.2","dist":{"integrity":"sha512-35PopSHBX87jP6ZzHNlNG4KhyQVYUYN2GWH0yGYwohLqbt4x9bTZeMc4UCtjeY56P7r1baORRBxLg8FkZdeocw==","shasum":"796d3c09ff2a008479cbbca9f67560287fdc2cb1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/npm-upgrade/-/npm-upgrade-3.1.2.tgz","fileCount":38,"unpackedSize":78485,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQDs5nSrCFpmRTMD7ld542CaAE760wtlVcKOl+FNwB0qQgIhALAD7lKZssVhntqGrMUPTdEsi1MB3xKmWnrKpeFU63GD"}]},"_npmUser":{"name":"anonymous","email":"grunin.ya@ya.ru"},"maintainers":[{"name":"anonymous","email":"grunin.ya@ya.ru"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/npm-upgrade_3.1.2_1747241286184_0.2598036633181353"},"_hasShrinkwrap":false}},"name":"npm-upgrade","time":{"created":"2015-11-10T18:21:47.141Z","modified":"2025-05-14T16:48:06.535Z","0.1.0":"2015-11-10T18:21:47.141Z","0.2.0":"2015-11-11T15:49:12.676Z","0.3.0":"2015-11-12T15:35:04.125Z","0.4.0":"2015-11-14T12:35:17.074Z","0.4.1":"2015-11-14T13:12:43.882Z","0.4.2":"2015-11-14T13:20:31.531Z","0.4.3":"2015-11-15T14:24:11.475Z","0.4.4":"2015-11-17T13:47:57.019Z","0.5.0":"2015-11-18T16:15:23.973Z","0.5.1":"2015-11-18T16:52:43.108Z","0.6.0":"2015-11-21T10:33:59.510Z","0.6.1":"2015-12-01T11:46:29.839Z","0.6.2":"2015-12-17T08:19:07.867Z","0.7.0":"2016-07-24T21:44:55.878Z","1.0.0":"2016-09-28T11:55:17.855Z","1.0.1":"2017-03-11T20:01:11.698Z","1.0.2":"2017-03-19T18:55:17.437Z","1.0.3":"2017-06-11T10:42:38.581Z","1.0.4":"2017-06-11T11:09:25.799Z","1.1.0":"2017-06-11T19:03:29.251Z","1.2.0":"2017-08-10T15:18:03.680Z","1.3.0":"2017-12-26T14:58:26.562Z","1.4.0":"2018-07-24T14:11:38.878Z","1.4.1":"2018-08-10T13:39:17.073Z","2.0.0":"2019-07-17T15:51:12.210Z","2.0.1":"2019-09-10T16:57:39.377Z","2.0.2":"2019-09-15T15:22:15.181Z","2.0.3":"2020-03-05T14:55:40.952Z","2.0.4":"2020-07-24T14:03:22.140Z","3.0.0":"2021-02-25T09:13:34.528Z","3.1.0":"2022-01-21T08:26:44.411Z","3.1.1":"2025-04-25T18:45:50.622Z","3.1.2":"2025-05-14T16:48:06.365Z"},"readmeFilename":"README.md","homepage":"https://github.com/th0r/npm-upgrade"}