{"maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"itaisteinherz@gmail.com"}],"keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"dist-tags":{"latest":"11.0.2"},"description":"A better `npm publish`","readme":"# np [![XO code style](https://shields.io/badge/code_style-5ed9c7?logo=xo&labelColor=gray&logoSize=auto&logoWidth=20)](https://github.com/xojs/xo)\n\n> A better `npm publish`\n\n<img src=\"media/screenshot.gif\" width=\"688\">\n\n## Why\n\n- [Interactive UI](#interactive-ui)\n- Ensures you are publishing from your release branch (`main` and `master` by default)\n- Ensures the working directory is clean and that there are no unpulled changes\n- Reinstalls dependencies to ensure your project works with the latest dependency tree\n- Ensures your Node.js and npm versions are supported by the project and its dependencies\n- Runs the tests\n- Bumps the version in package.json and npm-shrinkwrap.json (if present) and creates a git tag\n- Prevents [accidental publishing](https://github.com/npm/npm/issues/13248) of pre-release versions under the `latest` [dist-tag](https://docs.npmjs.com/cli/dist-tag)\n- Publishes the new version to npm, optionally under a dist-tag\n- Rolls back the project to its previous state in case publishing fails\n- Pushes commits and tags (newly & previously created) to GitHub/GitLab\n- Supports [two-factor authentication](https://docs.npmjs.com/getting-started/using-two-factor-authentication)\n- Enables two-factor authentication on new repositories\n  <br>\n  <sub>(does not apply to external registries)</sub>\n- Opens a prefilled GitHub Releases draft after publish\n- Warns about the possibility of extraneous files being published\n- See exactly what will be executed with [preview mode](https://github.com/sindresorhus/np/issues/391), without pushing or publishing anything remotely\n- Supports [GitHub Packages](https://github.com/features/packages)\n- Supports npm 9+, Yarn (Classic and Berry), pnpm 8+, and Bun\n\n### Why not\n\n- Monorepos are not supported.\n- CI is [not an ideal environment](https://github.com/sindresorhus/np/issues/619#issuecomment-994493179) for `np`. It's meant to be used locally as an interactive tool.\n\n## Prerequisite\n\n- Node.js 20 or later\n- npm 9 or later\n- Git 2.11 or later\n\n## Install\n\n```sh\nnpm install --global np\n```\n\n## Usage\n\n```\n$ np --help\n\n  Usage\n    $ np <version>\n\n    Version can be:\n      patch | minor | major | prepatch | preminor | premajor | prerelease | 1.2.3\n\n  Options\n    --any-branch            Allow publishing from any branch\n    --branch                Name of the release branch (default: main | master)\n    --no-cleanup            Skips cleanup of node_modules\n    --no-tests              Skips tests\n    --yolo                  Skips cleanup and testing\n    --no-publish            Skips publishing\n    --preview               Show tasks without actually executing them\n    --tag                   Publish under a given dist-tag\n    --contents              Subdirectory to publish\n    --no-release-draft      Skips opening a GitHub release draft\n    --release-draft-only    Only opens a GitHub release draft for the latest published version\n    --no-release-notes      Skips generating release notes when opening a GitHub release draft\n    --test-script           Name of npm run script to run tests before publishing (default: test)\n    --no-2fa                Don't enable 2FA on new packages (not recommended)\n    --message               Version bump commit message, '%s' will be replaced with version (default: '%s' with npm and 'v%s' with yarn)\n    --package-manager       Use a specific package manager (default: 'packageManager' field in package.json)\n    --provenance            Publish with npm provenance statements (CI-only)\n    --remote                Git remote to push to (default: origin)\n\n  Examples\n    $ np\n    $ np patch\n    $ np 1.0.2\n    $ np 1.0.2-beta.3 --tag=beta\n    $ np 1.0.2-beta.3 --tag=beta --contents=dist\n```\n\n## Interactive UI\n\nRun `np` without arguments to launch the interactive UI that guides you through publishing a new version.\n\n<img src=\"media/screenshot-ui.png\" width=\"1290\">\n\n## Config\n\n`np` can be configured both globally and locally. When using the global `np` binary, you can configure any of the CLI flags in either a `.np-config.js` (as CJS), `.np-config.cjs`, `.np-config.mjs`, or `.np-config.json` file in the home directory. When using the local `np` binary, for example, in a `npm run` script, you can configure `np` by setting the flags in either a top-level `np` field in `package.json` or in one of the aforementioned file types in the project directory. If it exists, the local installation will always take precedence. This ensures any local config matches the version of `np` it was designed for.\n\nCurrently, these are the flags you can configure:\n\n- `anyBranch` - Allow publishing from any branch (`false` by default).\n- `branch` - Name of the release branch (`main` or `master` by default).\n- `cleanup` - Cleanup `node_modules` (`true` by default).\n- `tests` - Run `npm test` (`true` by default).\n- `yolo` - Skip cleanup and testing (`false` by default).\n- `publish` - Publish (`true` by default).\n- `preview` - Show tasks without actually executing them (`false` by default).\n- `tag` - Publish under a given dist-tag (`latest` by default).\n- `contents` - Subdirectory to publish (`.` by default).\n- `releaseDraft` - Open a GitHub release draft after releasing (`true` by default).\n- `releaseNotes` - Auto-generate release notes when opening a GitHub release draft (`true` by default).\n- `testScript` - Name of npm run script to run tests before publishing (`test` by default).\n- `2fa` - Enable 2FA on new packages (`true` by default) (setting this to `false` is not recommended).\n- `message` - The commit message used for the version bump. Any `%s` in the string will be replaced with the new version. By default, npm uses `%s` and Yarn uses `v%s`.\n- `packageManager` - Set the package manager to be used. Defaults to the [packageManager field in package.json](https://nodejs.org/dist/latest-v16.x/docs/api/all.html#all_packages_packagemanager), so only use if you can't update package.json for some reason.\n- `provenance` - Publish with [npm provenance statements](https://docs.npmjs.com/generating-provenance-statements) (`false` by default). Requires npm 9.5.0+ and a supported CI environment (GitHub Actions or GitLab CI/CD).\n- `remote` - Git remote to push tags and commits to. Useful when publishing from a fork where `origin` is your fork and `upstream` is the main repository.\n\nFor example, this configures `np` to use `unit-test` as a test script, and to use `dist` as the subdirectory to publish:\n\n`package.json`\n```json\n{\n\t\"name\": \"superb-package\",\n\t\"np\": {\n\t\t\"testScript\": \"unit-test\",\n\t\t\"contents\": \"dist\"\n\t}\n}\n```\n\n`.np-config.json`\n```json\n{\n\t\"testScript\": \"unit-test\",\n\t\"contents\": \"dist\"\n}\n```\n\n`.np-config.js` or `.np-config.cjs`\n```js\nmodule.exports = {\n\ttestScript: 'unit-test',\n\tcontents: 'dist'\n};\n```\n\n`.np-config.mjs`\n```js\nexport default {\n\ttestScript: 'unit-test',\n\tcontents: 'dist'\n};\n```\n\n_**Note:** The global config only applies when using the global `np` binary, and is never inherited when using a local binary._\n\n## Tips\n\n### npm hooks\n\nYou can use any of the test/version/publish related [npm lifecycle hooks](https://docs.npmjs.com/misc/scripts) in your package.json to add extra behavior.\n\nFor example, here we build the documentation before tagging the release:\n\n```json\n{\n\t\"name\": \"my-awesome-package\",\n\t\"scripts\": {\n\t\t\"version\": \"./build-docs && git add docs\"\n\t}\n}\n```\n\n### Release script\n\nYou can also add `np` to a custom script in `package.json`. This can be useful if you want all maintainers of a package to release the same way (Not forgetting to push Git tags, for example). However, you can't use `publish` as name of your script because it's an [npm defined lifecycle hook](https://docs.npmjs.com/misc/scripts).\n\n```json\n{\n\t\"name\": \"my-awesome-package\",\n\t\"scripts\": {\n\t\t\"release\": \"np\"\n\t},\n\t\"devDependencies\": {\n\t\t\"np\": \"*\"\n\t}\n}\n```\n\n### User-defined tests\n\nIf you want to run a user-defined test script before publishing instead of the normal `npm test` or `yarn test`, you can use `--test-script` flag or the `testScript` config. This can be useful when your normal test script is running with a `--watch` flag or in case you want to run some specific tests (maybe on the packaged files) before publishing.\n\nFor example, `np --test-script=publish-test` would run the `publish-test` script instead of the default `test`.\n\n```json\n{\n\t\"name\": \"my-awesome-package\",\n\t\"scripts\": {\n\t\t\"test\": \"ava --watch\",\n\t\t\"publish-test\": \"ava\"\n\t},\n\t\"devDependencies\": {\n\t\t\"np\": \"*\"\n\t}\n}\n```\n\n### Signed Git tag\n\nSet the [`sign-git-tag`](https://docs.npmjs.com/misc/config#sign-git-tag) npm config to have the Git tag signed:\n\n```\n$ npm config set sign-git-tag true\n```\n\nOr set the [`version-sign-git-tag`](https://yarnpkg.com/lang/en/docs/cli/version/#toc-git-tags) Yarn config:\n\n```\n$ yarn config set version-sign-git-tag true\n```\n\n### Private packages\n\n<img src=\"media/private-packages.png\" width=\"260\" align=\"right\">\n\nYou can use `np` for packages that aren't publicly published to npm (perhaps installed from a private git repo).\n\nSet `\"private\": true` in your `package.json` and the publishing step will be skipped. All other steps\nincluding versioning and pushing tags will still be completed.\n\n### Public scoped packages\n\nTo publish [scoped packages](https://docs.npmjs.com/misc/scope#publishing-public-scoped-packages-to-the-public-npm-registry) to the public registry, you need to set the access level to `public`. You can do that by adding the following to your `package.json`:\n\n```json\n\"publishConfig\": {\n\t\"access\": \"public\"\n}\n```\n\nIf publishing a scoped package for the first time, `np` will prompt you to ask if you want to publish it publicly.\n\n**Note:** When publishing a scoped package, the first ever version you publish has to be done interactively using `np`. If not, you cannot use `np` to publish future versions of the package.\n\n### Private Org-scoped packages\n\nTo publish a [private Org-scoped package](https://docs.npmjs.com/creating-and-publishing-an-org-scoped-package#publishing-a-private-org-scoped-package), you need to set the access level to `restricted`. You can do that by adding the following to your `package.json`:\n\n```json\n\"publishConfig\": {\n\t\"access\": \"restricted\"\n}\n```\n\n### Publish to a custom registry\n\nSet the [`registry` option](https://docs.npmjs.com/misc/config#registry) in package.json to the URL of your registry:\n\n```json\n\"publishConfig\": {\n\t\"registry\": \"https://my-internal-registry.local\"\n}\n```\n\n### Package managers\n\nIf a package manager is not set in package.json, via configuration (`packageManager`), or via the CLI (`--package-manager`), `np` will attempt to infer the best package manager to use by looking for lockfiles. But it's recommended to set the [`packageManager` field](https://nodejs.org/api/packages.html#packagemanager) in your package.json to be consistent with other tools. See also the [corepack docs](https://nodejs.org/api/corepack.html).\n\n### Publish with a CI\n\nIf you use a Continuous Integration server to publish your tagged commits, use the `--no-publish` flag to skip the publishing step of `np`.\n\n### Publish to gh-pages\n\nTo publish to `gh-pages` (or any other branch that serves your static assets), install [`branchsite`](https://github.com/enriquecaballero/branchsite), an `np`-like CLI tool aimed to complement `np`, and create an [npm \"post\" hook](https://docs.npmjs.com/misc/scripts) that runs after `np`.\n\n```sh\nnpm install --save-dev branchsite\n```\n\n```json\n\"scripts\": {\n\t\"deploy\": \"np\",\n\t\"postdeploy\": \"bs\"\n}\n```\n\n### Initial version\n\nFor new packages, start the `version` field in package.json at `0.0.0` and let `np` bump it to `1.0.0` or `0.1.0` when publishing.\n\n### Release an update to an old major version\n\nTo release a minor/patch version for an old major version, create a branch from the major version's git tag and run `np`:\n\n```console\n$ git checkout -b fix-old-bug v1.0.0 # Where 1.0.0 is the previous major version\n# Create some commits…\n$ git push --set-upstream origin HEAD\n$ np patch --any-branch --tag=v1\n```\n\n### The prerequisite step runs forever on macOS\n\nIf you're using macOS Sierra 10.12.2 or later, your SSH key passphrase is no longer stored into the keychain by default. This may cause the `prerequisite` step to run forever because it prompts for your passphrase in the background. To fix this, add the following lines to your `~/.ssh/config` and run a simple Git command like `git fetch`.\n\n```\nHost *\n AddKeysToAgent yes\n UseKeychain yes\n```\n\nIf you're running into other issues when using SSH, please consult [GitHub's support article](https://help.github.com/articles/connecting-to-github-with-ssh/).\n\n### Ignore strategy\n\nThe [ignore strategy](https://docs.npmjs.com/files/package.json#files), either maintained in the `files`-property in `package.json` or in `.npmignore`, is meant to help reduce the package size. To avoid broken packages caused by essential files being accidentally ignored, `np` prints out all the new and unpublished files added to Git. Test files and other [common files](https://docs.npmjs.com/files/package.json#files) that are never published are not considered. `np` assumes either a standard directory layout or a customized layout represented in the `directories` property in `package.json`.\n\n## FAQ\n\n### I get an error when publishing my package through Yarn\n\nIf you get an error like this…\n\n```shell\n❯ Prerequisite check\n✔ Ping npm registry\n✔ Check npm version\n✔ Check yarn version\n✖ Verify user is authenticated\n\nnpm ERR! code E403\nnpm ERR! 403 Forbidden - GET https://registry.yarnpkg.com/-/package/my-awesome-package/collaborators?format=cli - Forbidden\n```\n\n…please check whether the command `npm access list collaborators my-awesome-package` succeeds. If it doesn't, Yarn has overwritten your registry URL. To fix this, add the correct registry URL to `package.json`:\n\n```json\n\"publishConfig\": {\n\t\"registry\": \"https://registry.npmjs.org\"\n}\n```\n\n### np hangs during the \"Publishing package\" step\n\nIf `np` hangs indefinitely during publishing, common causes include:\n\n**Lifecycle scripts that don't exit**\n\nnpm automatically runs lifecycle hooks like `prepublish`, `publish`, and `postpublish` during publishing. If these scripts don't exit (e.g., running in watch mode), `np` will hang.\n\n```json\n{\n\t\"scripts\": {\n\t\t\"test\": \"vitest\",\n\t\t\"publish\": \"npm run test && np\"\n\t}\n}\n```\n\n**Solution**: Don't name your scripts `publish`, `prepublish`, or `postpublish` (these are reserved npm lifecycle hooks). Use names like `release` instead:\n\n```json\n{\n\t\"scripts\": {\n\t\t\"test\": \"vitest run\",\n\t\t\"release\": \"np\"\n\t}\n}\n```\n\n**Tests running in watch mode**\n\nIf your test script runs in watch mode, it won't exit after running tests.\n\n**Solution**: Ensure your test command exits after running:\n\n```json\n{\n\t\"scripts\": {\n\t\t\"test\": \"vitest run\",\n\t\t\"test:dev\": \"vitest\"\n\t}\n}\n```\n\n**Registry configuration issues**\n\nA missing trailing slash in `.npmrc` registry configuration can cause hangs.\n\n**Solution**: Ensure registry URLs have a trailing slash:\n\n```npmrc\n@ORG:registry=https://npm.pkg.github.com/\n```\n\n## Maintainers\n\n- [Sindre Sorhus](https://github.com/sindresorhus)\n- [Tommy Mitchell](https://github.com/tommy-mitchell)\n","repository":{"type":"git","url":"git+https://github.com/sindresorhus/np.git"},"users":{"vaju":true,"timdp":true,"afschr":true,"arttse":true,"duluca":true,"shriek":true,"bracken":true,"edm00se":true,"invntrm":true,"lemulot":true,"newswim":true,"nikolay":true,"restuta":true,"simonja":true,"dada1134":true,"danday74":true,"losymear":true,"poenneby":true,"tdmalone":true,"zalithka":true,"bigslycat":true,"max_devjs":true,"shakakira":true,"ericyang89":true,"psyrendust":true,"r37r0m0d3l":true,"davidrapson":true,"flumpus-dev":true,"ahmedelgabri":true,"edgarkmarita":true,"justinmchase":true,"wangrongding":true,"mart-in-a-jar":true,"program247365":true,"robinblomberg":true,"robmcguinness":true},"bugs":{"url":"https://github.com/sindresorhus/np/issues"},"license":"MIT","versions":{"1.0.0":{"name":"np","version":"1.0.0","keywords":["cli-app","cli","npm","publish","git","push"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"np@1.0.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np-sh","bugs":{"url":"https://github.com/sindresorhus/np-sh/issues"},"bin":{"np":"np.sh"},"dist":{"shasum":"f8b07f634ef9b009afb6e8b67e7e74f0f3dbf591","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-1.0.0.tgz","integrity":"sha512-m4rYq+j+0Et/9riC3i0kMeVopGqw8mjd/+MWSLuYptxSra4CwtqNGeULTaQLv+fdt4mgS/LIqeQuxtHuMJzTgA==","signatures":[{"sig":"MEUCIH2YQrcomUw19TY+P3TYlJatXKDufz/Q7bVeHdeOdNNEAiEAqNv1rQr6y3+/aPjrZYzD24nvpb7scdvj3fbrsXSbIMo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["np.sh"],"_shasum":"f8b07f634ef9b009afb6e8b67e7e74f0f3dbf591","engines":{"node":">=0.10.0"},"gitHead":"528744cbf1166447131551f8a3b3df5e730f5d11","scripts":{},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"https://github.com/sindresorhus/np-sh","type":"git"},"_npmVersion":"2.11.2","description":"A better `npm publish`","directories":{},"_nodeVersion":"0.12.5","dependencies":{"trash":"^2.0.0"}},"1.0.1":{"name":"np","version":"1.0.1","keywords":["cli-app","cli","npm","publish","git","push"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"np@1.0.1","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"np.sh"},"dist":{"shasum":"e82e421e6f058a8fd506a9016e9cc09d502ea607","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-1.0.1.tgz","integrity":"sha512-7D9kbVWn5+QTpYaBVeNtXjjb4atlcZlvUP3O0zNZ7w1H0t1wzmDnynQVnBZIZPfXZaCNoG0RQDenLi6VuBb+YQ==","signatures":[{"sig":"MEMCHzOtZrrkQnE+AAOM2wsqMhbAEgA3Isxiz9vRpiUOUOECIFZo5DJuMYtR3DvaAUfC4h5QAjLBcNDG6snH6pzEahwL","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["np.sh"],"_shasum":"e82e421e6f058a8fd506a9016e9cc09d502ea607","engines":{"node":">=0.10.0"},"gitHead":"aa23a90312dd038183873ff9ced718f81f91f924","scripts":{},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"2.14.5","description":"A better `npm publish`","directories":{},"_nodeVersion":"4.1.1","dependencies":{"trash":"^2.0.0"}},"1.0.2":{"name":"np","version":"1.0.2","keywords":["cli-app","cli","npm","publish","git","push"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"np@1.0.2","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"np.sh"},"dist":{"shasum":"0267ec1248497ebe515b21b4747c064148277ac2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-1.0.2.tgz","integrity":"sha512-/Io5DrBTOl3KeeJ0IjJC8AXslDMeKPcVxOEGgTn23jy7nMDT8iSaHpcGj4hCB3oUNgyeFRHC9paZ2oPBtHVqTw==","signatures":[{"sig":"MEUCIFpD1VSpNmU/lokt+k+Jln1Q9qnmf8M9fh5n56pqiSUyAiEAowd8UuNx6MqQ4pc/ik6Ah5wwjpmEzDC332x9Fn4abPM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["np.sh"],"_shasum":"0267ec1248497ebe515b21b4747c064148277ac2","engines":{"node":">=0.10.0"},"gitHead":"4d43a4288ac0122602885e5cc1d687748d7b85bb","scripts":{},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"https://github.com/sindresorhus/np","type":"git"},"_npmVersion":"2.14.4","description":"A better `npm publish`","directories":{},"_nodeVersion":"4.1.1","dependencies":{"trash":"^2.0.0"}},"1.0.3":{"name":"np","version":"1.0.3","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"np@1.0.3","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"np.sh"},"dist":{"shasum":"66f6e342e5ab62dfe16d109ef8af3073d032922f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-1.0.3.tgz","integrity":"sha512-EfKqRvJkAKLvLUmQ+ouGjdG6BRoABDSlwZZ3xfF3tZNyPLZUsdG378LckIYM6xYUAxeETbbRe4YESjA8wrMO/w==","signatures":[{"sig":"MEUCIQDFGqi+MEbh83MXldTPMKhEg1MrSVpfEjSP2yc4D20gIwIgJRsbbQpziRQj/ao4HyHz9xlPcONtT80ffWytnS/JGzQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["np.sh"],"_shasum":"66f6e342e5ab62dfe16d109ef8af3073d032922f","engines":{"node":">=0.10.0"},"gitHead":"496c51d721c33f04ebeb3df5a6d4bf666f841ac6","scripts":{},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"https://github.com/sindresorhus/np","type":"git"},"_npmVersion":"2.14.4","description":"A better `npm publish`","directories":{},"_nodeVersion":"4.1.1","dependencies":{"trash-cli":"^1.0.0"}},"1.1.0":{"name":"np","version":"1.1.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"np@1.1.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"np.sh"},"dist":{"shasum":"6fb2c654c923fec53a9632f56038237df13cb754","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-1.1.0.tgz","integrity":"sha512-ld2ltq280DljvzTABuPn7PZ6exjnHfjYizGP3i+s9SIGzZ/Off5tAkeyLMjTBSD3ubC2dqe7NqH5K/6unMnnCA==","signatures":[{"sig":"MEUCIH/0roODlvrsLs8Pr/ME4EuJZCzeEXLFnU8E22Fy1lMmAiEAtlYTATmCQt0fRe+CiCF+8Qqg1Ua8NOhvVdoPUU0886A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["np.sh"],"_shasum":"6fb2c654c923fec53a9632f56038237df13cb754","engines":{"node":">=0.10.0"},"gitHead":"34daa09b83f2bfaa164b9f29c890d24bc18c347f","scripts":{},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"https://github.com/sindresorhus/np","type":"git"},"_npmVersion":"2.14.7","description":"A better `npm publish`","directories":{},"_nodeVersion":"4.2.1","dependencies":{"trash-cli":"^1.0.0"}},"1.2.0":{"name":"np","version":"1.2.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"np@1.2.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"np.sh"},"dist":{"shasum":"abcfa4d916a42eef8979029a798f2b942aa4acd1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-1.2.0.tgz","integrity":"sha512-qSNZ5DyZDj2RfsMPsBZh3M80T3Pw8q9leOwNut7TzK27whkOy8CtTlK8fcngWXn8V/WaGPxEq17iCAt2xfWQRQ==","signatures":[{"sig":"MEUCIAiXO4wgng0L/iDzofxIt8Xh3gCPvWZ4XAR0appaGwsmAiEA6oqRZNBDr8fTVvV+TXruh97vk6p7EOcxJ6AIePX8As8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["np.sh"],"_shasum":"abcfa4d916a42eef8979029a798f2b942aa4acd1","engines":{"node":">=0.10.0"},"gitHead":"783b582a1c716a80c1a74a211846da1c08d509b6","scripts":{},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"https://github.com/sindresorhus/np","type":"git"},"_npmVersion":"2.14.7","description":"A better `npm publish`","directories":{},"_nodeVersion":"4.2.1","dependencies":{"trash-cli":"^1.0.0"}},"1.2.1":{"name":"np","version":"1.2.1","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"np@1.2.1","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"np.sh"},"dist":{"shasum":"fee4d25a5bfcd83b802affe92d0260616f426a29","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-1.2.1.tgz","integrity":"sha512-fIJhsUH0Mepg9qUi326/n2rRTxsbtzS4Zn205wXU6jAw0P7UIKEfZP7Z4MxJSSyHPUAHE+9hw9xh9WEf8hxj4A==","signatures":[{"sig":"MEYCIQCE6fWbHKu7t0RDTgPkh8LnDSIk/LtYnUHfrFW9xWYEnQIhAJNFK4Mn2eDBdlTPJy+YOtABaaZbD5p7jdhtdG0/G5SB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["np.sh"],"_shasum":"fee4d25a5bfcd83b802affe92d0260616f426a29","engines":{"node":">=0.10.0"},"gitHead":"d6a221c7e41fc77a9d1bc24d7425c8b85058a888","scripts":{},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"3.5.2","description":"A better `npm publish`","directories":{},"_nodeVersion":"4.2.1","dependencies":{"trash-cli":"^1.0.0"}},"2.0.0":{"name":"np","version":"2.0.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"np@2.0.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"xo":{"esnext":true},"bin":{"np":"cli.js"},"dist":{"shasum":"740980550f48d221297f08eaf5ee8124b53d6665","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-2.0.0.tgz","integrity":"sha512-1dK07iTqn2MbU+JoVBGeo4YRALB0idTJxf0TG4ZRfiCT5GHTQtu/eM+FW7x7dzV+yH9lVGG3IzXMzwUgLU6YOQ==","signatures":[{"sig":"MEUCIAhhdb4RQ4fVhtOU+O5udzN80uDPVud1EynWHuoT247KAiEAxxWbtFfjW9xmY9gUHlv7j0UNeJlUjGa6S9V0krOrP+I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js"],"_shasum":"740980550f48d221297f08eaf5ee8124b53d6665","engines":{"node":">=4"},"gitHead":"8f5a7d377d8a956ea9ac3a8b915e5a591857c7ed","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"3.9.3","description":"A better `npm publish`","directories":{},"_nodeVersion":"4.4.2","dependencies":{"del":"^2.2.0","meow":"^3.7.0","execa":"^0.4.0","semver":"^5.1.0","log-symbols":"^1.0.2"},"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np-2.0.0.tgz_1464616194769_0.10406079120002687","host":"packages-12-west.internal.npmjs.com"}},"2.1.0":{"name":"np","version":"2.1.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"np@2.1.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"xo":{"esnext":true},"bin":{"np":"cli.js"},"dist":{"shasum":"a2fc34e5f04837ae23195149e49303ff364c190c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-2.1.0.tgz","integrity":"sha512-Ikv/KUXF1jaX89EIrRVkmt4MFsgXuTfm4eWN5mkU5A4xIpy9/R7FTLCdGGO9lzNVjRTlXRkNNy4qY4mKODT7Bw==","signatures":[{"sig":"MEQCICOGbrnkjIMU7R+F6UvnpzW0odwKMRNhqA/KI605u4B6AiB7WnoqgjX4FUukmLCznQYTIf5Q8tiQ/g8EwG1hUZuOyA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js"],"_shasum":"a2fc34e5f04837ae23195149e49303ff364c190c","engines":{"node":">=4"},"gitHead":"94b1235ab7ed4336c905ff2be0e24bdcce7570dc","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"3.9.3","description":"A better `npm publish`","directories":{},"_nodeVersion":"4.4.2","dependencies":{"del":"^2.2.0","meow":"^3.7.0","execa":"^0.4.0","semver":"^5.1.0","log-symbols":"^1.0.2"},"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np-2.1.0.tgz_1464940783252_0.44462428195402026","host":"packages-12-west.internal.npmjs.com"}},"2.2.0":{"name":"np","version":"2.2.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"np@2.2.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"xo":{"esnext":true},"bin":{"np":"cli.js"},"dist":{"shasum":"565c04249de3ace0596018c6a4b7119f56b6ecb9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-2.2.0.tgz","integrity":"sha512-wOvsgr0hidEbPjvuA4neZ57LSbF7G1g8YFzce5agmSWusI8fFiwcAydTYwg37jQXR28liEvfDZhki/CCwm6Jew==","signatures":[{"sig":"MEUCIA0Sg2icFJTw0jEE9vAc1COAW1zCCMZ/nRxSYHiSvBGsAiEA/Ce4fKweRzTPdnYcHDr8ZRt7I1CSZyBp4QfHxk8OFfo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js"],"_shasum":"565c04249de3ace0596018c6a4b7119f56b6ecb9","engines":{"node":">=4"},"gitHead":"021ebb17b92900825e9ebb9b1bdbbca1385fcb45","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"3.9.5","description":"A better `npm publish`","directories":{},"_nodeVersion":"4.4.2","dependencies":{"del":"^2.2.0","meow":"^3.7.0","chalk":"^1.1.3","execa":"^0.4.0","semver":"^5.1.0","log-symbols":"^1.0.2","update-notifier":"^1.0.1"},"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np-2.2.0.tgz_1466347356911_0.7397923870012164","host":"packages-12-west.internal.npmjs.com"}},"2.3.0":{"name":"np","version":"2.3.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"np@2.3.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"xo":{"esnext":true},"bin":{"np":"cli.js"},"dist":{"shasum":"b3aa6887d13e99975c7add7f3028dea0c0f964e6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-2.3.0.tgz","integrity":"sha512-3uW63JiHNrAIsKnp2tJuWzcA743o0CdO4i2iXMRTQHwMTkPQ+p+StrjpC3qoXfSxQIV6KxQmMa0pwr+JZZs+Dg==","signatures":[{"sig":"MEQCICHkAe/pzqUGHCzcGrrw+TyZWwclxlwmNluiUsiUj50qAiAI7BO2Ypi/3o1CNyMLajVnFrkVLNcCApLjqdeB3BsmeQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js"],"_shasum":"b3aa6887d13e99975c7add7f3028dea0c0f964e6","engines":{"node":">=4"},"gitHead":"71ba1641b9a80b532023bf4c400723c61b0f7f28","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"2.15.5","description":"A better `npm publish`","directories":{},"_nodeVersion":"4.4.5","dependencies":{"del":"^2.2.0","meow":"^3.7.0","pify":"^2.3.0","rxjs":"^5.0.0-beta.9","execa":"^0.4.0","listr":"^0.4.3","split":"^1.0.0","semver":"^5.1.0","any-observable":"^0.2.0","update-notifier":"^1.0.1","stream-to-observable":"^0.2.0"},"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np-2.3.0.tgz_1467834134112_0.5764122831169516","host":"packages-16-east.internal.npmjs.com"}},"2.4.0":{"name":"np","version":"2.4.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"np@2.4.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"xo":{"esnext":true},"bin":{"np":"cli.js"},"dist":{"shasum":"ebed3e3092e7ec27d51c23c75e6ec0e4d1e9bb83","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-2.4.0.tgz","integrity":"sha512-MjaUnfIqKUa7TvKZ5AOftDYoIs6rMbikZxTWcmJp+HXrrW+CLAVReIsY5vKJ3/GyUndttSDquBQnOmaVtxVrMQ==","signatures":[{"sig":"MEQCIAOfrn7T7BI6fPIvbxAjqSJ2EvhkhzH5RnLsE2inRdaqAiA9V7ymOD+tLlNOI49Eq3rUaew5yFCWgGkc3MxY2jqixA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js"],"_shasum":"ebed3e3092e7ec27d51c23c75e6ec0e4d1e9bb83","engines":{"node":">=4"},"gitHead":"c88bf1d4b8a1bc0b23dcdca75ca6e6e4336c84bb","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"2.15.5","description":"A better `npm publish`","directories":{},"_nodeVersion":"4.4.5","dependencies":{"del":"^2.2.0","meow":"^3.7.0","pify":"^2.3.0","rxjs":"^5.0.0-beta.9","execa":"^0.4.0","listr":"^0.4.3","split":"^1.0.0","semver":"^5.1.0","any-observable":"^0.2.0","update-notifier":"^1.0.1","stream-to-observable":"^0.2.0"},"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np-2.4.0.tgz_1467920561133_0.9779158600140363","host":"packages-12-west.internal.npmjs.com"}},"2.5.0":{"name":"np","version":"2.5.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"np@2.5.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"xo":{"esnext":true},"bin":{"np":"cli.js"},"dist":{"shasum":"77a4dbfb6feca3eb0fddeff12d57d495107d04cb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-2.5.0.tgz","integrity":"sha512-6E7irKBso2hGuZIDSdKC0Zm5+01EcVPyHQGvJFLiay4gv/BWfngXBAR9RJrAYyhHbX4JfxD9QakAtwlSYcn7YA==","signatures":[{"sig":"MEYCIQCxCsKbINj+4WzPzDIoco+1DgZrbjYIX/t3IsXOzfm/FQIhAJ9AzHjyC4NRxDU3x0nn2/vopOvbSH2tsDa18W5w5Z4Z","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js"],"_shasum":"77a4dbfb6feca3eb0fddeff12d57d495107d04cb","engines":{"node":">=4"},"gitHead":"7b31a3ef91f38f4b354949491c7d90b81852a6f2","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"2.15.5","description":"A better `npm publish`","directories":{},"_nodeVersion":"4.4.5","dependencies":{"del":"^2.2.0","meow":"^3.7.0","pify":"^2.3.0","rxjs":"^5.0.0-beta.9","execa":"^0.4.0","listr":"^0.4.3","split":"^1.0.0","semver":"^5.1.0","any-observable":"^0.2.0","update-notifier":"^1.0.1","stream-to-observable":"^0.2.0"},"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np-2.5.0.tgz_1467971694697_0.9763245056383312","host":"packages-16-east.internal.npmjs.com"}},"2.6.0":{"name":"np","version":"2.6.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"np@2.6.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"xo":{"esnext":true},"bin":{"np":"cli.js"},"dist":{"shasum":"72dbc619fe77f9f98dfef8fa689ea19dfd0fc2d1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-2.6.0.tgz","integrity":"sha512-fhPCoArYN9RdZkFZnCe4Y8HA58BlKsOtW1Ou4QCA85gZ4LFBkXWn1/G5JakNQ758NQwmmfrpYItdlBwTxCODrw==","signatures":[{"sig":"MEQCIGwPw6fisRYEhN5LaU8uf03InZkvQ6V8tUZka6bIMzM1AiBW4/tV+EGi2FmVJV7TXq5quBLmlRM3FJQF++QIuha0Xw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js"],"_shasum":"72dbc619fe77f9f98dfef8fa689ea19dfd0fc2d1","engines":{"node":">=4"},"gitHead":"6b1c2cf7e0ac1afb8eaa783141651e7993cabd03","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"2.15.5","description":"A better `npm publish`","directories":{},"_nodeVersion":"4.4.5","dependencies":{"del":"^2.2.0","meow":"^3.7.0","pify":"^2.3.0","rxjs":"^5.0.0-beta.9","execa":"^0.4.0","listr":"^0.4.3","split":"^1.0.0","semver":"^5.1.0","any-observable":"^0.2.0","update-notifier":"^1.0.1","stream-to-observable":"^0.2.0"},"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np-2.6.0.tgz_1468075099546_0.635086294496432","host":"packages-12-west.internal.npmjs.com"}},"2.7.0":{"name":"np","version":"2.7.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"np@2.7.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"xo":{"esnext":true},"bin":{"np":"cli.js"},"dist":{"shasum":"e5ef50ec6753d69216a1895e658db4d8fc5b841c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-2.7.0.tgz","integrity":"sha512-Zkk0LjM8WnnEeZnHqvP40PYBpnUPqRMbHatZ6+Ld/nzkXqwCBw5AwlspvrXTLzrQYgqaRBQcUNttpzwGkvf0bA==","signatures":[{"sig":"MEQCIBOTrTrMRDQXMidYbGP3OSwc0vH7/QDWdffYlklSXZ1nAiASwW//B2MvHQ6wWyHDmhIVuFup0pTp0P0Yimu/cqcx4g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js"],"_shasum":"e5ef50ec6753d69216a1895e658db4d8fc5b841c","engines":{"node":">=4"},"gitHead":"9ae44c7dbd8f2cf52069f8e616cd2deefaf9dcf9","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"2.15.5","description":"A better `npm publish`","directories":{},"_nodeVersion":"4.4.5","dependencies":{"del":"^2.2.0","meow":"^3.7.0","rxjs":"^5.0.0-beta.9","execa":"^0.4.0","listr":"^0.5.0","split":"^1.0.0","semver":"^5.1.0","read-pkg-up":"^1.0.1","any-observable":"^0.2.0","update-notifier":"^1.0.1","stream-to-observable":"^0.2.0"},"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np-2.7.0.tgz_1469534642148_0.6148468621540815","host":"packages-12-west.internal.npmjs.com"}},"2.8.0":{"name":"np","version":"2.8.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"np@2.8.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"xo":{"esnext":true},"bin":{"np":"cli.js"},"dist":{"shasum":"dbe0ee21ff51c8b20dd57b3b0b8e2a430adab78e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-2.8.0.tgz","integrity":"sha512-jkQu678/Vts+jIdGyrSqR2xsIFt1Zgbd5BmmDf+P5HKBfOadbyiuxDGHSbyAFmrKOqzzb25hmDNvAqBmqUf34g==","signatures":[{"sig":"MEQCIDlIf3+3dK4ZaWZ87ymSAvxMNr6GesNTpk7K92bDhaHEAiA/TSzEyPJQYxG8A8VzhvcG3ckCprdCfcPuTHdoxO08ug==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js"],"_shasum":"dbe0ee21ff51c8b20dd57b3b0b8e2a430adab78e","engines":{"node":">=4"},"gitHead":"b128550421158b7576d13f9cc07c50f4bead1bd1","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"3.10.5","description":"A better `npm publish`","directories":{},"_nodeVersion":"4.4.5","dependencies":{"del":"^2.2.0","meow":"^3.7.0","rxjs":"^5.0.0-beta.9","execa":"^0.4.0","listr":"^0.5.0","split":"^1.0.0","semver":"^5.1.0","read-pkg-up":"^1.0.1","any-observable":"^0.2.0","update-notifier":"^1.0.1","stream-to-observable":"^0.2.0"},"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np-2.8.0.tgz_1470580311396_0.35631222021766007","host":"packages-16-east.internal.npmjs.com"}},"2.9.0":{"name":"np","version":"2.9.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"np@2.9.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"xo":{"esnext":true},"bin":{"np":"cli.js"},"dist":{"shasum":"1a0988239e1f177e58cddf77120ccd0bff74098c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-2.9.0.tgz","integrity":"sha512-oEtVk5KnwzME+MeV6aXWdULf6nw1LNmlKK+3QN/9vyZUjOHfRgn2iR9TFnhHtS9KdNvfwQ0Dj6BOsQfrVhNkFA==","signatures":[{"sig":"MEUCIFBJMQ3PdYTpdDgC7oMCg/ehG0ibnG/uMQIKB+E2HX8MAiEAtHeQO1og0QWpWpwdRAVl4kKc4M0+1JeoZ/F4qdZapyU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js"],"_shasum":"1a0988239e1f177e58cddf77120ccd0bff74098c","engines":{"node":">=4"},"gitHead":"5d9a8facb3750ca52caf67534aa295b325d00ad0","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"2.15.5","description":"A better `npm publish`","directories":{},"_nodeVersion":"4.4.5","dependencies":{"del":"^2.2.0","meow":"^3.7.0","rxjs":"^5.0.0-beta.9","execa":"^0.4.0","listr":"^0.5.0","split":"^1.0.0","semver":"^5.1.0","read-pkg-up":"^1.0.1","any-observable":"^0.2.0","update-notifier":"^1.0.1","stream-to-observable":"^0.2.0"},"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np-2.9.0.tgz_1471089286487_0.15908129909075797","host":"packages-12-west.internal.npmjs.com"}},"2.10.0":{"name":"np","version":"2.10.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"np@2.10.0","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"xo":{"esnext":true},"bin":{"np":"cli.js"},"dist":{"shasum":"892da4671f4037ca2739d2922bcf091f148f57d4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-2.10.0.tgz","integrity":"sha512-BYdxiRAp3rpQ99bVMPmDGgY/Tw2qwI0z1OPs0WCYBDzHAr6fIARWnRtESs72D1vGxfj75DuywIkq2+AXLzgUGg==","signatures":[{"sig":"MEYCIQDHyO7nkEEtsDOCuV2a8vzKMsf+YcWdR7u7kZKSjcqk+gIhAOxjvP1Bx9xkLGai8DT6pT+Y2g2zyAldXpQt2EZkbQF5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js","lib"],"_shasum":"892da4671f4037ca2739d2922bcf091f148f57d4","engines":{"node":">=4"},"gitHead":"bc6c9290b87f0a5289752bdbb000c7154de0cf9f","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"2.15.9","description":"A better `npm publish`","directories":{},"_nodeVersion":"4.6.1","dependencies":{"del":"^2.2.0","meow":"^3.7.0","rxjs":"^5.0.0-beta.9","chalk":"^1.1.3","execa":"^0.4.0","listr":"^0.6.1","split":"^1.0.0","semver":"^5.1.0","inquirer":"^1.2.1","read-pkg-up":"^1.0.1","any-observable":"^0.2.0","update-notifier":"^1.0.1","stream-to-observable":"^0.2.0"},"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np-2.10.0.tgz_1478249754937_0.45884218998253345","host":"packages-12-west.internal.npmjs.com"}},"2.10.1":{"name":"np","version":"2.10.1","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"np@2.10.1","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"xo":{"esnext":true},"bin":{"np":"cli.js"},"dist":{"shasum":"a808e62c1949826ff695f0c83489fabcf882422c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-2.10.1.tgz","integrity":"sha512-H6+HEDAyyn9q6ipO2RZnGtWRtRdHOxUHXGChazGi1WuB5gZuN7iA2qwtfLHqQIZvEswZNVGlwQm7GjGqcTB+6Q==","signatures":[{"sig":"MEQCIHluY8GivfrH93Np6/huRSU2GJHeCxDeORAIrdPFqa4PAiB9U6Y8PPfKYsqc1tDC6SCf6U0/7UNoTZRstYIe3aZb8w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js","lib"],"_shasum":"a808e62c1949826ff695f0c83489fabcf882422c","engines":{"node":">=4"},"gitHead":"d9320da92e48d33d71b149b8abad7fde5798453b","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"2.15.9","description":"A better `npm publish`","directories":{},"_nodeVersion":"4.6.1","dependencies":{"del":"^2.2.0","meow":"^3.7.0","rxjs":"^5.0.0-beta.9","chalk":"^1.1.3","execa":"^0.4.0","listr":"^0.6.1","split":"^1.0.0","semver":"^5.1.0","inquirer":"^1.2.1","read-pkg-up":"^1.0.1","any-observable":"^0.2.0","update-notifier":"^1.0.1","stream-to-observable":"^0.2.0"},"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np-2.10.1.tgz_1479132712144_0.5945936874486506","host":"packages-12-west.internal.npmjs.com"}},"2.11.0":{"name":"np","version":"2.11.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"np@2.11.0","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"xo":{"esnext":true},"bin":{"np":"cli.js"},"dist":{"shasum":"13f1b645680413fda417202eaf5c9e947a0f5312","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-2.11.0.tgz","integrity":"sha512-QUq3CJf+4qHfTdnygGbMFuT1B8tfpXBA20lM2wl1cLgL8qeqK0yGkdiPqKWJOAfdzh7g+sgRXnHz6HHI37F48Q==","signatures":[{"sig":"MEUCIBwjVBkZq/6GH6gT5l84HqM+waddtG3hhD0hOV0DH/vQAiEAjt6tdIuVAqqyJMWjUKySoYUpeBo+Y9cIGUZyL4+QhOY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js","lib"],"_shasum":"13f1b645680413fda417202eaf5c9e947a0f5312","engines":{"node":">=4"},"gitHead":"82e33a538ec482a01ac17fe9c0d7c0392f3104a9","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"4.0.3","description":"A better `npm publish`","directories":{},"_nodeVersion":"4.6.2","dependencies":{"del":"^2.2.0","meow":"^3.7.0","rxjs":"^5.0.0-beta.9","chalk":"^1.1.3","execa":"^0.4.0","listr":"^0.6.1","split":"^1.0.0","semver":"^5.1.0","inquirer":"^1.2.1","log-symbols":"^1.0.2","read-pkg-up":"^1.0.1","any-observable":"^0.2.0","update-notifier":"^1.0.1","stream-to-observable":"^0.2.0"},"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np-2.11.0.tgz_1481323823201_0.7732966544572264","host":"packages-18-east.internal.npmjs.com"}},"2.12.0":{"name":"np","version":"2.12.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"np@2.12.0","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"xo":{"esnext":true},"bin":{"np":"cli.js"},"dist":{"shasum":"350876b37ca3131f01a9ab6bd647ad69233b4af6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-2.12.0.tgz","integrity":"sha512-X+XapEr0qpS19KQCtAz3M9pv5WhxSgjs8k8dgTxS+s5QOIlpIgeV48SO/4WCPMt84Gf0U8ktIx+cbD3LCKxW9g==","signatures":[{"sig":"MEUCID5Xru6oRxZrGJTBRqGhMPBVQJGo6asO/LYyJV/Xej+7AiEAoyBE82slWfAX/zQHXGQ0oLki2q0+hVianewXeGqTNLk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js","lib"],"_shasum":"350876b37ca3131f01a9ab6bd647ad69233b4af6","engines":{"node":">=4"},"gitHead":"4eba9fa51a10985adf206fef9cb807b66d41086b","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"2.15.11","description":"A better `npm publish`","directories":{},"_nodeVersion":"4.6.2","dependencies":{"del":"^2.2.0","meow":"^3.7.0","rxjs":"^5.0.0-beta.9","chalk":"^1.1.3","execa":"^0.4.0","listr":"^0.6.1","split":"^1.0.0","semver":"^5.1.0","inquirer":"^1.2.1","log-symbols":"^1.0.2","read-pkg-up":"^1.0.1","any-observable":"^0.2.0","update-notifier":"^1.0.1","stream-to-observable":"^0.2.0"},"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np-2.12.0.tgz_1482429493557_0.18086766940541565","host":"packages-18-east.internal.npmjs.com"}},"2.13.0":{"name":"np","version":"2.13.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"np@2.13.0","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"xo":{"esnext":true},"bin":{"np":"cli.js"},"dist":{"shasum":"dcd7bffa9b1d4ead4ee7479e95cee0cc91ed512d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-2.13.0.tgz","integrity":"sha512-B3Jjm3ht6ZCSROlsDPKpuN1UjXYtwMcju6g+visVxWv4gPY5vbeeLh7g6upfp7XyzUimbyOjIyRfydkbSRJxhw==","signatures":[{"sig":"MEYCIQCOrfjPlOpLmmKuidv8yUhdeocW/ZSkqN8bavkOq5QiGgIhALnVMa6KxQHLYbzunzHM4qfXlWnyhg5PtgZFTey+X5Xx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js","lib"],"_shasum":"dcd7bffa9b1d4ead4ee7479e95cee0cc91ed512d","engines":{"node":">=4"},"gitHead":"383c524aa3295b99a98b88eddfa93f121645f3fc","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"2.15.11","description":"A better `npm publish`","directories":{},"_nodeVersion":"4.7.3","dependencies":{"del":"^2.2.0","meow":"^3.7.0","rxjs":"^5.0.0-beta.9","chalk":"^1.1.3","execa":"^0.6.0","listr":"^0.11.0","split":"^1.0.0","semver":"^5.1.0","has-yarn":"^1.0.0","inquirer":"^3.0.6","log-symbols":"^1.0.2","read-pkg-up":"^2.0.0","any-observable":"^0.2.0","update-notifier":"^2.1.0","stream-to-observable":"^0.2.0"},"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np-2.13.0.tgz_1489571502215_0.3178278007544577","host":"packages-12-west.internal.npmjs.com"}},"2.13.1":{"name":"np","version":"2.13.1","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"np@2.13.1","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"xo":{"esnext":true},"bin":{"np":"cli.js"},"dist":{"shasum":"1da79a7b37743dfca76d787c9cea4331b94cf03c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-2.13.1.tgz","integrity":"sha512-udy0//teBi40I5u1qnAIt8adxV1qUVmRaBU7tP5iNhFvvzXp4+OQkdz8RT4nW9hEtzVZpE9+OnKFZPHCFXsXQg==","signatures":[{"sig":"MEQCICQAlrj5oBhG69G/9r/LdFY3hCZSFwUlZIzqyqUei0cjAiB99giRiKXVTo6y0xWyRwO1QnxF1IUZkMjKvxyei4fkUQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js","lib"],"_shasum":"1da79a7b37743dfca76d787c9cea4331b94cf03c","engines":{"node":">=4"},"gitHead":"27239a817211878c0d141e96426ed1c01d98c31c","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"2.15.11","description":"A better `npm publish`","directories":{},"_nodeVersion":"4.7.3","dependencies":{"del":"^2.2.0","meow":"^3.7.0","rxjs":"^5.0.0-beta.9","chalk":"^1.1.3","execa":"^0.6.3","listr":"^0.11.0","split":"^1.0.0","semver":"^5.1.0","has-yarn":"^1.0.0","inquirer":"^3.0.6","log-symbols":"^1.0.2","read-pkg-up":"^2.0.0","any-observable":"^0.2.0","update-notifier":"^2.1.0","stream-to-observable":"^0.2.0"},"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np-2.13.1.tgz_1490429558758_0.2230206122621894","host":"packages-18-east.internal.npmjs.com"}},"2.13.2":{"name":"np","version":"2.13.2","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"np@2.13.2","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"xo":{"esnext":true},"bin":{"np":"cli.js"},"dist":{"shasum":"73464a0b858a5d31645dcf0e9a2d9491df51a842","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-2.13.2.tgz","integrity":"sha512-/JgMrCGofDnwwWyB4kcXivzD77V0FWAyK1lhleihIQ5ek2YsU1jLmeRekT1+mDF+qMvOA8Hx2dcniTF9X4Dqvg==","signatures":[{"sig":"MEUCIBJqKG9mRykfSAWhQa5MX7pLXVdbynzcGmbR1kp9JV6BAiEAtC8YlKZN51DDWQUaV1wlKussFk1BoU0g3sxuix9TVb8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js","lib"],"_shasum":"73464a0b858a5d31645dcf0e9a2d9491df51a842","engines":{"node":">=4"},"gitHead":"5e39571f2dbcb853e1cef317a909bdbd440ef471","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"2.15.11","description":"A better `npm publish`","directories":{},"_nodeVersion":"4.7.3","dependencies":{"del":"^2.2.0","meow":"^3.7.0","rxjs":"^5.0.0-beta.9","chalk":"^1.1.3","execa":"^0.6.3","listr":"^0.11.0","split":"^1.0.0","semver":"^5.1.0","has-yarn":"^1.0.0","inquirer":"^3.0.6","log-symbols":"^1.0.2","read-pkg-up":"^2.0.0","any-observable":"^0.2.0","update-notifier":"^2.1.0","stream-to-observable":"^0.2.0"},"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np-2.13.2.tgz_1492408973849_0.026977323926985264","host":"packages-12-west.internal.npmjs.com"}},"2.13.3":{"name":"np","version":"2.13.3","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"np@2.13.3","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"xo":{"esnext":true},"bin":{"np":"cli.js"},"dist":{"shasum":"56f0350cac6fbcfcbf8cc879ba9428a7c8d69346","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-2.13.3.tgz","integrity":"sha512-hcndgCWNLH5Ls0LGDgvxT23iB5UDgEa+m+IjDjNa5/kTEmEB2zLgnb9fgKfnxtkG0KBSCyVM2X3JRK2naXJmnA==","signatures":[{"sig":"MEUCIQCdXGGnzhdkaIhkBiMNaZ46xqlDoNZZ7s+Kbvs8iSMBrAIgSBW1Cjtezpyq3cDd+un2BVdqCecoGg9nUL8XS6DcP7k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js","lib"],"_shasum":"56f0350cac6fbcfcbf8cc879ba9428a7c8d69346","engines":{"node":">=4"},"gitHead":"a158ed80e6ede1c25d8d474c49af05697a99339c","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"2.15.11","description":"A better `npm publish`","directories":{},"_nodeVersion":"4.7.3","dependencies":{"del":"^2.2.0","meow":"^3.7.0","rxjs":"^5.0.0-beta.9","chalk":"^1.1.3","execa":"^0.6.3","listr":"^0.11.0","split":"^1.0.0","semver":"^5.2.0","has-yarn":"^1.0.0","inquirer":"^3.0.6","log-symbols":"^1.0.2","read-pkg-up":"^2.0.0","any-observable":"^0.2.0","update-notifier":"^2.1.0","stream-to-observable":"^0.2.0"},"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np-2.13.3.tgz_1493037383043_0.9177289975341409","host":"packages-18-east.internal.npmjs.com"}},"2.14.0":{"name":"np","version":"2.14.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"np@2.14.0","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"xo":{"esnext":true},"bin":{"np":"cli.js"},"dist":{"shasum":"68bbac755c84705442d399e71c005de0551c1ed9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-2.14.0.tgz","integrity":"sha512-1xxFiv3HPubU0mkqRsHgLTcJNgNjDj/5fTBhBu8+u/a6BddW+mucvM8kbNVYLMxoTPXbHHnVF9KsKvy9O94fUg==","signatures":[{"sig":"MEUCIQCeUtE+jmNl0SRXIfFMGvlraGacbu3ehMkN0oPWEu1jcQIgEG5hg3aXbNXb/vkH+NbwP5u02dGvlgw5xP2mSY0vngU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js","lib"],"_shasum":"68bbac755c84705442d399e71c005de0551c1ed9","engines":{"node":">=4"},"gitHead":"fb06f079a883881f7387bac0b6082423f75d59bf","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"3.10.8","description":"A better `npm publish`","directories":{},"_nodeVersion":"6.9.1","dependencies":{"del":"^2.2.0","meow":"^3.7.0","rxjs":"^5.0.0-beta.9","chalk":"^1.1.3","execa":"^0.6.3","listr":"^0.11.0","split":"^1.0.0","semver":"^5.2.0","has-yarn":"^1.0.0","inquirer":"^3.0.6","log-symbols":"^1.0.2","read-pkg-up":"^2.0.0","any-observable":"^0.2.0","update-notifier":"^2.1.0","stream-to-observable":"^0.2.0"},"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np-2.14.0.tgz_1493643174168_0.7809840030968189","host":"packages-12-west.internal.npmjs.com"}},"2.14.1":{"name":"np","version":"2.14.1","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"np@2.14.1","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"xo":{"esnext":true},"bin":{"np":"cli.js"},"dist":{"shasum":"5ccb94a84cba12a5d198e73494ba65ef7f6356e8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-2.14.1.tgz","integrity":"sha512-+lPNlvIJbF53OE6hpE+WpDyJt1P2U2NNj2QKojMYYylbEUVpU5bVS0KXzODlG6QyiAuHwHqR+KXq28JUCJ2M7A==","signatures":[{"sig":"MEUCICbhZEcIQvtTJHO7tlHrdTK6FmEv5gGcciGDynWSb3xOAiEAwtMfG3NArEaYGzgIlZiKBMwEHDNUELbpo7YLLGjelmg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js","lib"],"_shasum":"5ccb94a84cba12a5d198e73494ba65ef7f6356e8","engines":{"node":">=4"},"gitHead":"7aa5b9b348e907371c754593ccdd48c2845bf173","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"4.2.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"7.9.0","dependencies":{"del":"^2.2.0","meow":"^3.7.0","rxjs":"^5.0.0-beta.9","chalk":"^1.1.3","execa":"^0.6.3","listr":"^0.11.0","split":"^1.0.0","semver":"^5.2.0","has-yarn":"^1.0.0","inquirer":"^3.0.6","log-symbols":"^1.0.2","read-pkg-up":"^2.0.0","any-observable":"^0.2.0","update-notifier":"^2.1.0","stream-to-observable":"^0.2.0"},"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np-2.14.1.tgz_1493698518525_0.31914950883947313","host":"packages-12-west.internal.npmjs.com"}},"2.15.0":{"name":"np","version":"2.15.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"np@2.15.0","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"xo":{"esnext":true},"bin":{"np":"cli.js"},"dist":{"shasum":"6591811523f9a92f7ab1c47b3a9e57955a1c751c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-2.15.0.tgz","integrity":"sha512-qoiWfRM2C0bOF9f2rraeGXcaQHhEiWL6mDcrB1FwMyx9D6TRQKoBXtbi5sA3t9VVHAQ5vp2Ge+SRMbIH5Gnigw==","signatures":[{"sig":"MEUCIDe1xHEk9yxmFd92guPUI+UAC8nDnRri2fab+UAnQdiqAiEA/tfrRM6xs94FVgE4rxfebE/QKmLg07AQOZbNFhM568Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js","lib"],"_shasum":"6591811523f9a92f7ab1c47b3a9e57955a1c751c","engines":{"node":">=4"},"gitHead":"df8bb7153ecb05cd4674846f488d012f3cd252e1","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"4.2.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"7.10.0","dependencies":{"del":"^2.2.0","meow":"^3.7.0","rxjs":"^5.0.0-beta.9","chalk":"^1.1.3","execa":"^0.6.3","listr":"^0.11.0","split":"^1.0.0","semver":"^5.2.0","has-yarn":"^1.0.0","inquirer":"^3.0.6","log-symbols":"^1.0.2","read-pkg-up":"^2.0.0","any-observable":"^0.2.0","update-notifier":"^2.1.0","stream-to-observable":"^0.2.0"},"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np-2.15.0.tgz_1495184582288_0.6733900064136833","host":"packages-18-east.internal.npmjs.com"}},"2.16.0":{"name":"np","version":"2.16.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"np@2.16.0","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"xo":{"esnext":true},"bin":{"np":"cli.js"},"dist":{"shasum":"0cb8d0b98beb998b7ba8e8ce3ad12b07a46aee3c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-2.16.0.tgz","integrity":"sha512-eLkiVDfkzXl4qDp/ozLhz/9ySK0Kd02So1FqspZqS3Ix/LtuuZjhhHGS6+3a32tn4+mSxXxSir1/anr5oWgU4Q==","signatures":[{"sig":"MEUCIQCW5l2jDYq+A8ndwRrIk45g+JzcydN2gKEZSo8pWhnfAAIgUYydCejl3R2RHrrtiA/GK8DhIYm2axyhoNwIJ5StprI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"files":["index.js","cli.js","lib"],"engines":{"node":">=4"},"gitHead":"0a813eb485ff201efa4291a812b017f2d84bafe1","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"5.0.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"8.0.0","dependencies":{"del":"^2.2.0","meow":"^3.7.0","rxjs":"^5.0.0-beta.9","chalk":"^1.1.3","execa":"^0.6.3","listr":"^0.11.0","split":"^1.0.0","semver":"^5.2.0","has-yarn":"^1.0.0","inquirer":"^3.0.6","log-symbols":"^1.0.2","read-pkg-up":"^2.0.0","any-observable":"^0.2.0","update-notifier":"^2.1.0","stream-to-observable":"^0.2.0"},"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np-2.16.0.tgz_1496846887833_0.233439456904307","host":"s3://npm-registry-packages"}},"2.16.1":{"name":"np","version":"2.16.1","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"np@2.16.1","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"xo":{"esnext":true},"bin":{"np":"cli.js"},"dist":{"shasum":"36cc62542c3bf4adf52fe6cda80c449722857bbd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-2.16.1.tgz","integrity":"sha512-UKOSN81mlC8HL1QxIeWS34a6jxM67ec7GehK7vCJePmkcBuvQvtJtQv9mUnYFzL5LfQ6DIa/X2e2veIjU/TmsQ==","signatures":[{"sig":"MEYCIQD3GUvoIGx5ChBxHwxyKcP/igTiAmZI8wSvaHCeueTdagIhAJ2PZRaibXL5Y49ZE+jMxnZ9EsxidKHLW6xsTx9hxy8R","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"files":["index.js","cli.js","lib"],"engines":{"node":">=4"},"gitHead":"b6c7a91a829c38d496e0414f69b41c1cded652a7","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"5.4.2","description":"A better `npm publish`","directories":{},"_nodeVersion":"8.7.0","dependencies":{"del":"^2.2.0","meow":"^3.7.0","rxjs":"5.4.3","chalk":"^1.1.3","execa":"^0.6.3","listr":"^0.11.0","split":"^1.0.0","semver":"^5.2.0","has-yarn":"^1.0.0","inquirer":"^3.0.6","log-symbols":"^1.0.2","read-pkg-up":"^2.0.0","any-observable":"^0.2.0","update-notifier":"^2.1.0","stream-to-observable":"^0.2.0"},"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np-2.16.1.tgz_1509359048342_0.22435855981893837","host":"s3://npm-registry-packages"}},"2.17.0":{"name":"np","version":"2.17.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"np@2.17.0","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"xo":{"esnext":true},"bin":{"np":"cli.js"},"dist":{"shasum":"64065d254854cc87789c6e591865de568e5e9f7f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-2.17.0.tgz","integrity":"sha512-60q9qIyeAsBgMshQ/93vglkIdrlSanG3EysQj3Q3n0X7BWfkz2LMkoaBo9eIuSQHDx/vBlG8t6ZXTlg8Wz2ViA==","signatures":[{"sig":"MEQCIDc5Zr9zkiwejT3g3S2SIuYkpKr3Ci529nFWt+f/cAWRAiA5wiDsP9LS7VLihKrx4bpWGwFz3AQZzsewOcDXZBjNLw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"files":["index.js","cli.js","lib"],"engines":{"node":">=4"},"gitHead":"ab5c44a988afdcd63d00bbea5c49b090d4fd882d","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"5.5.1","description":"A better `npm publish`","directories":{},"_nodeVersion":"9.2.0","dependencies":{"del":"^2.2.0","meow":"^3.7.0","rxjs":"5.4.3","chalk":"^1.1.3","execa":"^0.6.3","listr":"^0.11.0","split":"^1.0.0","semver":"^5.2.0","has-yarn":"^1.0.0","inquirer":"^3.0.6","listr-input":"^0.1.1","log-symbols":"^1.0.2","read-pkg-up":"^2.0.0","any-observable":"^0.2.0","update-notifier":"^2.1.0","stream-to-observable":"^0.2.0"},"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np-2.17.0.tgz_1510721067029_0.08556321961805224","host":"s3://npm-registry-packages"}},"2.18.0":{"name":"np","version":"2.18.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@2.18.0","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"cli.js"},"dist":{"shasum":"3fa7f2a3f891c80d416d926ebe13005901959ba1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-2.18.0.tgz","integrity":"sha512-JSLiYmlX/1ypAYaWyaKqwAJZrE7VK6fyTQZ+8fs0hmyko+Cw8IkZUEktdF93k5RDTwsgeQt2DHa0amRV2V213g==","signatures":[{"sig":"MEUCIF2/J8ea1jsjoprdR4uAfz2AuKOgvQwoK2Wx/F6JpSjLAiEA3WRxArgRftq8mDoMSp1nhND3MZ7MQ9lM9Kg0qSAvWwg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"files":["index.js","cli.js","lib"],"engines":{"node":">=4"},"gitHead":"9a8de380881fa54b3a4421e83b2b2982710056d0","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"5.5.1","description":"A better `npm publish`","directories":{},"_nodeVersion":"6.11.0","dependencies":{"del":"^3.0.0","meow":"^4.0.0","rxjs":"5.4.3","chalk":"^2.3.0","execa":"^0.8.0","listr":"^0.12.0","p-tap":"^1.0.0","split":"^1.0.0","semver":"^5.2.0","has-yarn":"^1.0.0","inquirer":"^3.0.6","p-timeout":"^2.0.1","listr-input":"^0.1.1","log-symbols":"^2.1.0","read-pkg-up":"^3.0.0","any-observable":"^0.2.0","update-notifier":"^2.1.0","stream-to-observable":"^0.2.0"},"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np-2.18.0.tgz_1512390966129_0.810539172263816","host":"s3://npm-registry-packages"}},"2.18.1":{"name":"np","version":"2.18.1","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@2.18.1","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"cli.js"},"dist":{"shasum":"55e192c86749db2af4c5860b501fc16474c1afdc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-2.18.1.tgz","integrity":"sha512-jZXNZybpaHhMQqT7qkTFj5pAK8t+8w5dsoJ7VYcofc7yQnAXu/Upo8b6SeBb8LfH7CozLTy4vDpbDiyf8j/6OA==","signatures":[{"sig":"MEUCIFeb1Zviyi1OHa0//VXe8EFtZNUQ85wV0XtPiqO7iRZYAiEAo1XiS4ZwjgYycLQSRlINaGlT0rhXFCe+cT19qTnunFE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js","lib"],"_shasum":"55e192c86749db2af4c5860b501fc16474c1afdc","engines":{"node":">=4"},"gitHead":"ed35206d825fbdabe017bb1401c096fcf2c16a70","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"3.10.10","description":"A better `npm publish`","directories":{},"_nodeVersion":"6.11.0","dependencies":{"del":"^3.0.0","meow":"^4.0.0","rxjs":"5.4.3","chalk":"^2.3.0","execa":"^0.8.0","listr":"^0.12.0","p-tap":"^1.0.0","split":"^1.0.0","semver":"^5.2.0","has-yarn":"^1.0.0","inquirer":"^3.0.6","p-timeout":"^2.0.1","listr-input":"^0.1.1","log-symbols":"^2.1.0","read-pkg-up":"^3.0.0","any-observable":"^0.2.0","update-notifier":"^2.1.0","stream-to-observable":"^0.2.0"},"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np-2.18.1.tgz_1512424116726_0.7554460698738694","host":"s3://npm-registry-packages"}},"2.18.2":{"name":"np","version":"2.18.2","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@2.18.2","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"cli.js"},"dist":{"shasum":"4571c8c8faa44a52cfd25d26b7d73af1f0fb1407","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-2.18.2.tgz","integrity":"sha512-y0icu6AEgA7ZFfG0OI2KUzDx2DO67RIKlfYEyPxCHldR+GOUaFBo63bHpe5K3W/5nuXivRl8FBD+tyX4E4+chA==","signatures":[{"sig":"MEUCIQCq+oMfGc624HDIzfG+aLJ7kQx9rQ6sYILekBdzRx5iIgIgBY7hURCM5OsDtZepBHmLSLBM9Bz3uer8qgghIUU1QtE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js","lib"],"_shasum":"4571c8c8faa44a52cfd25d26b7d73af1f0fb1407","engines":{"node":">=4"},"gitHead":"512a48fae74a73d4b3d0851a528b77a7aab51e8b","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"3.10.10","description":"A better `npm publish`","directories":{},"_nodeVersion":"6.11.0","dependencies":{"del":"^3.0.0","meow":"^4.0.0","rxjs":"5.4.3","chalk":"^2.3.0","execa":"^0.8.0","listr":"^0.12.0","p-tap":"^1.0.0","split":"^1.0.0","semver":"^5.2.0","has-yarn":"^1.0.0","inquirer":"^3.0.6","p-timeout":"^2.0.1","listr-input":"^0.1.1","log-symbols":"^2.1.0","read-pkg-up":"^3.0.0","any-observable":"^0.2.0","update-notifier":"^2.1.0","stream-to-observable":"^0.2.0"},"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np-2.18.2.tgz_1512514569045_0.23860552161931992","host":"s3://npm-registry-packages"}},"2.18.3":{"name":"np","version":"2.18.3","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@2.18.3","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"cli.js"},"dist":{"shasum":"00dfa459edd29ec8ea65e7e99ad973870a61b0cc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-2.18.3.tgz","integrity":"sha512-o5jaG54VTkHZiScRpGz/PaqWsJNpH/wVYsIpXT51xGKjLjNIMCTxO20cp2jHsg3dlmi7QxMHeDVokFdD2HPK9w==","signatures":[{"sig":"MEUCIQDhV7/P4e7tEfx2uwibfelKTe7+32qTbRxHMw9nU9f9tgIgEvM/wdWKEUKy7sl4EOw7ReLzJ0hBNVD5U43eKgqZUbk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"files":["index.js","cli.js","lib"],"engines":{"node":">=4"},"gitHead":"fc3597faa24e3ec1ed02fc3a63b4b8d2d2c82122","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"5.5.1","description":"A better `npm publish`","directories":{},"_nodeVersion":"8.9.0","dependencies":{"del":"^3.0.0","meow":"^4.0.0","rxjs":"5.4.3","chalk":"^2.3.0","execa":"^0.8.0","listr":"^0.12.0","p-tap":"^1.0.0","split":"^1.0.0","semver":"^5.2.0","has-yarn":"^1.0.0","inquirer":"^3.0.6","p-timeout":"^2.0.1","listr-input":"^0.1.1","log-symbols":"^2.1.0","read-pkg-up":"^3.0.0","any-observable":"^0.2.0","update-notifier":"^2.1.0","stream-to-observable":"^0.2.0"},"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np-2.18.3.tgz_1513281453147_0.23415906005539","host":"s3://npm-registry-packages"}},"2.19.0":{"name":"np","version":"2.19.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@2.19.0","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"cli.js"},"dist":{"shasum":"974cb619008f7ef23667e8b11ca886e86dbc3777","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-2.19.0.tgz","integrity":"sha512-sKbIAeoYkHvtiMdMba4sQ8C17WuYtuEgtePvnro/VkGXRn2oev/OzwqF/7VkBVcuy/nKOjzHFtAiS/drO+sWnw==","signatures":[{"sig":"MEUCIQCfCDlWvRXDg+Bp6ITiaUM8/UEHFjY6LcpxgFSBSX+pDAIgDkIdToZk742ose6Fxkb/ZRzHWjcPK/qgvxfyCd6+Tas=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"files":["index.js","cli.js","lib"],"engines":{"node":">=4"},"gitHead":"b108857bea1422326b5aee4eabbcfa6181502d43","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"5.6.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"8.9.4","dependencies":{"del":"^3.0.0","meow":"^4.0.0","rxjs":"5.4.3","chalk":"^2.3.0","execa":"^0.8.0","listr":"^0.12.0","p-tap":"^1.0.0","split":"^1.0.0","semver":"^5.2.0","has-yarn":"^1.0.0","inquirer":"^3.0.6","p-timeout":"^2.0.1","listr-input":"^0.1.1","log-symbols":"^2.1.0","read-pkg-up":"^3.0.0","any-observable":"^0.2.0","update-notifier":"^2.1.0","stream-to-observable":"^0.2.0"},"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np-2.19.0.tgz_1517714105529_0.1413882423657924","host":"s3://npm-registry-packages"}},"2.20.0":{"name":"np","version":"2.20.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@2.20.0","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"cli.js"},"dist":{"shasum":"b66e7214deb7a9914d6786f0efd4fa835d58bd58","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-2.20.0.tgz","fileCount":11,"integrity":"sha512-sx9KJZFtZvxFn6FoaYKlcWj3moT1lLOXgkQU7FrYLS1roK4CQSrkyNAyLeVHqPCJedOrKhxoZJtUYgTCXRjd0g==","signatures":[{"sig":"MEUCIBiUyjukEMNplNjTQP+c+I+Ry1O00D6Rp/H5cmqXoCg7AiEAy9J0MNXFsvqxSMNO1RN4huNqvXeZpxBtE6QwV9l36jw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25962},"files":["index.js","cli.js","lib"],"engines":{"node":">=4"},"gitHead":"8f2537fd251f9e935ad52401edefd8341a59ddae","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"5.6.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"8.9.4","dependencies":{"del":"^3.0.0","meow":"^4.0.0","rxjs":"5.4.3","chalk":"^2.3.0","execa":"^0.8.0","listr":"^0.12.0","p-tap":"^1.0.0","split":"^1.0.0","semver":"^5.2.0","has-yarn":"^1.0.0","inquirer":"^3.0.6","p-timeout":"^2.0.1","hyperlinker":"^1.0.0","issue-regex":"^1.0.0","listr-input":"^0.1.1","log-symbols":"^2.1.0","read-pkg-up":"^3.0.0","any-observable":"^0.2.0","update-notifier":"^2.1.0","github-url-from-git":"^1.5.0","supports-hyperlinks":"^1.0.1","stream-to-observable":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np_2.20.0_1518499473768_0.3524745820106767","host":"s3://npm-registry-packages"}},"2.20.1":{"name":"np","version":"2.20.1","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@2.20.1","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"cli.js"},"dist":{"shasum":"6369add67598d0de8cfeecf308249b6bb55a4bfb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-2.20.1.tgz","fileCount":11,"integrity":"sha512-IiCxi6SpqsVaGiQG5/XbkZ2uqfAe2G7lwS7BuaWC117MCgPs57SI+1F0chKN/abBmYZqxjqbEId6AUA+1aNblQ==","signatures":[{"sig":"MEYCIQD1ywkr5FLt8kI/JxpyRHK5GbZalySv7pHzkv0UA+eC+gIhAJ96z0mZUBOxgLfkayOhxR0Z1ElmEmfVBhP+OuGBdwxU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25896},"files":["index.js","cli.js","lib"],"engines":{"node":">=4"},"gitHead":"af46524b0b4a3cdda3b85e1eec0f44eda425b8dc","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"5.6.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"8.9.4","dependencies":{"del":"^3.0.0","meow":"^4.0.0","rxjs":"5.4.3","chalk":"^2.3.0","execa":"^0.8.0","listr":"^0.12.0","p-tap":"^1.0.0","split":"^1.0.0","semver":"^5.2.0","has-yarn":"^1.0.0","inquirer":"^3.0.6","p-timeout":"^2.0.1","hyperlinker":"^1.0.0","issue-regex":"^1.0.0","listr-input":"^0.1.1","log-symbols":"^2.1.0","read-pkg-up":"^3.0.0","any-observable":"^0.2.0","update-notifier":"^2.1.0","github-url-from-git":"^1.5.0","supports-hyperlinks":"^1.0.1","stream-to-observable":"^0.2.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np_2.20.1_1519054663724_0.2095775577098664","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"np","version":"3.0.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@3.0.0","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"cli.js"},"dist":{"shasum":"dda94188294e36d481be729fc6db1aceb9427249","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-3.0.0.tgz","fileCount":11,"integrity":"sha512-kho67Nuq/snIiBOfcX+btkWlwT78ChIbKmQ+Urdyr/vKmk28vu0vHEv3TrWp79pt29Pmyjrt5YzJz0QIYkzTrA==","signatures":[{"sig":"MEUCIQCa0meN3irEiqQ9yUJZwpWP5IjXH1nKaOrC46pNKBNFmwIgKhF1mBkHc5ZPOrEt/jsGxxIidGae9FSn/WJ9zUWfBEM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26996,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbClpuCRA9TVsSAnZWagAAd14QAJgiZSGq88KCJ62+srE1\njoRdF5IQBXQ4sASI695KO4ZyHjbObnZIKV0PpVfs99bdhdZhf4RbPNIUeyZi\nfqCUBTfqBiErffggLxLWxTMmxIDZOc26Yqhc5vmezHWAYrGEGnQHRDx5a0kA\nJ3rIwBgGcgJC9opvrOuzF1aUTgiFzUHT+4reZsjGzaL6oFfuNDltrWeRtFfS\nSnUOIrdDMv+sgDwTlg+R4quFI744rpqXUoUlbWEAL05ObGQ/Homu+Sd1woFf\nRF54oq8rF3VALvRORQEfxrnjkGB/wm2/JxiODoT9L/riJ6wZ2RVccU1pyfRT\n4snpuSzDv4u20TFbQ1IoVNzC6M6U0faaQPCxC/8vWu9gryN7tWGvckReBt4w\nuKtoEOx2lUwpQod3iZd4LcsgmULlP5EdZ3fVxuVt1tKxqlTqQY1SIEo9mkcK\n/o3Q+43PQE+u/KUjsddGIHFY93Nx9wAoM9ZaIR8XzaSv9aFvdnp8ATmUqL0S\n5+d9X7N0qABNOMnclY4ZHRWKmo1GqcIWGLbDxn0VmVdweR/M5G7/6S7VnX9/\njxYV3r2eVSgq/rRBd5xAM6Yd3vdayFlCkmtlrjoKn7HIWwdZNeTD4/geyu/Z\n97w5+1wkCQmziCGDrnYpEcGSie586MhCHwLWxwk0va9b8iX4wXjJllXSeRfD\nYd8v\r\n=RhQl\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js","cli.js","lib"],"engines":{"node":">=6"},"gitHead":"fba0ddf0c25f0c2b5242fefab7df6ef8d06e85eb","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"5.6.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"8.11.2","dependencies":{"del":"^3.0.0","meow":"^5.0.0","rxjs":"^6.2.0","chalk":"^2.3.0","execa":"^0.10.0","listr":"^0.14.1","split":"^1.0.0","semver":"^5.2.0","has-yarn":"^1.0.0","inquirer":"^5.2.0","p-timeout":"^2.0.1","issue-regex":"^2.0.0","listr-input":"^0.1.1","log-symbols":"^2.1.0","read-pkg-up":"^3.0.0","terminal-link":"^1.1.0","any-observable":"^0.3.0","update-notifier":"^2.1.0","github-url-from-git":"^1.5.0","@samverschueren/stream-to-observable":"^0.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np_3.0.0_1527405165059_0.7347489749333562","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"np","version":"3.0.1","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@3.0.1","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"cli.js"},"dist":{"shasum":"01c53773dd537f2896db8c2f6a0328a950171f93","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-3.0.1.tgz","fileCount":11,"integrity":"sha512-G2dyMpzyzSu1BtLZn6/9aM7NMMllFjRWqs52X9XSP0jCHpawMyhn6g+QQ5C7qrDMIKzcwtj7q5PLJD/KSVmMEQ==","signatures":[{"sig":"MEQCICumXs+5eOFBKOsTdrT+Ov3eWaA/DKm9i4znp3xDZgIpAiBQbnFDvJYs/kFRsIRhXSpPQVnDhSs0yU8WcVJEh88KHg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27059,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbC2E2CRA9TVsSAnZWagAAkQMP/3p3YnG+42jSh0xmyLhw\nec5pb9Ed9QNkYK/m8PKzjbj+lubiHALVEH7Iha9jEeYkOtG49o02fEHysmF2\nMHikyDBgiOCB+Tikx6wo5/9v7hlFpYo5QoKaQ5L9CsBcS4eDNF3DXZwPTLt/\n6s6ojkBMlCIamZ95Yh7AoHs++FUQaS+cIR8bZ5U3/oyKuEOWEvZqbtNpWbpT\nZxfNlckyUfKEHUXf1s+p+cXN+7P59Tt2s5Ku1rzmhz+5vcsxyAtayUh/n7VB\nMRBg+j3KsSPnUY7dCn9+ZkvFRAEOVQ17IB+LBH9PJpMLX2Y3KPcAJO1HwN/0\n4MRECfdw5wpmU9d1ug+Jw6xH44e/HV7kJxNK6ALVTLDaBqGX8h8SWBhIqBIu\n1B08/ignvpQN/5pv37TbTuBTJ3cXogVO727+F/GVx5O3M+w6zM/LBzwj2NBX\ncVcDgCJgvXXV3VUzUZ5MNVk5l0M6T6Z2ooab8QvypRWE9YVFmsRfx3/6nFcJ\nO2VGjNWApApF31aw0stgH0pTZ+Jcq82+Suo6P3RALtrHwcBn/MXlNXjHLJWi\ncgTGbLf8iqa2Bq2uE/1ZxCjFmyo+eBPinn6G0OKRWf6xJJ/R8f5Ju6j+c+BO\niK2GgSVai3ErMSUjwSQKyoO8Vn1EPyQuDkxWpavD86V+Sh2GQBIys6PrNC8N\ngz4z\r\n=Ri+T\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js","cli.js","lib"],"engines":{"node":">=6"},"gitHead":"e9ccead030957203869f6fbfceeb81ef31e01996","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"5.6.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"10.2.1","dependencies":{"del":"^3.0.0","meow":"^5.0.0","rxjs":"^6.2.0","chalk":"^2.3.0","execa":"^0.10.0","listr":"^0.14.1","split":"^1.0.0","semver":"^5.2.0","has-yarn":"^1.0.0","inquirer":"^5.2.0","p-timeout":"^2.0.1","issue-regex":"^2.0.0","listr-input":"^0.1.1","log-symbols":"^2.1.0","read-pkg-up":"^3.0.0","terminal-link":"^1.1.0","any-observable":"^0.3.0","update-notifier":"^2.1.0","github-url-from-git":"^1.5.0","@samverschueren/stream-to-observable":"^0.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np_3.0.1_1527472437974_0.2545377317887241","host":"s3://npm-registry-packages"}},"3.0.2":{"name":"np","version":"3.0.2","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@3.0.2","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"cli.js"},"dist":{"shasum":"a54bb97ee9b264432cd2d7637b19d266b95fcd4c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-3.0.2.tgz","fileCount":11,"integrity":"sha512-7Y+bIY+dYNiBhTKTZI7Egsbcgd5/dnmdRpBeidOB9/x70eM4AMuTnr/az6+vC+E7OZHygkXF8cZ9QzI2tTknhw==","signatures":[{"sig":"MEQCICWZ3j9OCO9u3Aq2DggtsKXFIQZIagHF3Ifsu1lS10m5AiBsLduYVaZTm7gH8AeNDSIUZ/IKlSG5Df9n0UeRHBDjHw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27080,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbEhUjCRA9TVsSAnZWagAARLwP/3mnNs5TYDtsXTyiYK+f\nA4kmf8R9ohnwbsR/bn3jqPHdQS2qsgwikWyuWnOPmzJopCqJVtbo+v1jOcpX\nep0cjlisB3Cc3suSdWFm7eYnI9JV88m8kXKrCaY9au0zVcN4RqACG07zttKb\n6eRXVzC2KuA6XUnxsLWh5XIEx/r4DKXCIOw0fvFIMGKqprA94LHCI4EqTNXF\nEEV8ygAwjtu4NuOB1tj9HfGyb313LVw7333VyVcnULqe3fkFcDe2k81HIvPI\ncsTj33uHi+Um8Y7Q/CsU4ydwmx+dwZxPqNEDwaQ0RBzslLHtri/aed7Htfwg\no5JntA173fHkWTmGIiTDu/H+APDGXIvdiE43hU/csGvmM23HDpt3vaHUAgFB\nRs+SHyBNKCw8eI/pNRj7FDL3WY+RhF18MTupep+ZOA51ILvQMFFiSARzsvkA\nAbit43pgpcOQFSa+ZkB4glByQf7CVo9o4ctqruOakN3YtxprQEkMhQX8Nd41\n12yl0+Ib9ndp64RDQDlHZo3XMMSZOzA67HvY9M3W3qU76xuvX9oWfsvY3a/j\nAWRKvN1S9Luyogt8eggycYzhbregDiFt3Zg3n83voPFXZMOcJzVOBv7GlvH/\nq/zOETTRSJUJT5mtHLgh1TkEzXbghAkJzcC9JKyEb8l1ubY2iWQDp25wQzlh\nl6Wb\r\n=MFzb\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js","cli.js","lib"],"engines":{"node":">=6"},"gitHead":"3dc7069d8161363de1491ecbc9208f09bfa4f3de","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.1.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"8.11.2","dependencies":{"del":"^3.0.0","meow":"^5.0.0","rxjs":"^6.2.0","chalk":"^2.3.0","execa":"^0.10.0","listr":"^0.14.1","split":"^1.0.0","semver":"^5.2.0","has-yarn":"^1.0.0","inquirer":"^5.2.0","p-timeout":"^2.0.1","issue-regex":"^2.0.0","listr-input":"^0.1.1","log-symbols":"^2.1.0","read-pkg-up":"^3.0.0","terminal-link":"^1.1.0","any-observable":"^0.3.0","update-notifier":"^2.1.0","github-url-from-git":"^1.5.0","@samverschueren/stream-to-observable":"^0.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np_3.0.2_1527911714582_0.903426564870385","host":"s3://npm-registry-packages"}},"3.0.3":{"name":"np","version":"3.0.3","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@3.0.3","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"cli.js"},"dist":{"shasum":"42c25724ee87cc0a4f27e9b684b769321fb328d1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-3.0.3.tgz","fileCount":11,"integrity":"sha512-/0keI4Mxaqrpie5OGG22/3/jVspKA3D1s2YCeUzCWPyZpZsdJsS6KQ4uBxdfNf7fZKRWXTGUwd7mCXhB7Cq+2A==","signatures":[{"sig":"MEUCIFqzCAaS6Piwrw8RkGB9lFv7g1V3yZf75fCMEJVI0FagAiEAgyVHXs4vIqJ//GhKZaFvWbWAVzyWD+OZEWBhDavnof8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27201,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbFNJbCRA9TVsSAnZWagAAO4MP/AhJg3pAeD5A8Yb4NeQ1\noqbAScOuh8yeYpYOQGSdd+6A0A8c4tr5XoZA+VGNJ5UdF8LCgD+C0HUriSh4\nbNG9IjcTKIqX9FohMoUC8zu6cde35YEBivcXFK66IRENYtMQWNacsKzUMUbc\nJ62y9g+BgYpMd1W0ewzOJfhPtUITzHORWuM5i/pJaV77QiJyh8RbKSxCL7aT\noD+B85NZHWuMWZFHRrbgCVY6B9gErQc4u8mSZRvcHV+wD36RIb9SJY4/FiZ2\nZxhwFV2UEgVP4CHWJs7UQrjcyNnGyf6dBzK+gQfhqIYUkQsjvF6yy1WEVWCJ\nT3CblT6i3vQMZhznu1V4nzGt+NPyl1qVzf2jYsGKmq1H7aR6Yt+/cY5N3uz2\nko7N5TOeNd6Xa08H1cA9w40oh9Jp0y8kj8678H5hd54szgJjNh2st4lud28G\nghirkNP/O5QK+CoQ7TlzE8kVkkgKnjWfiHt5BLMZJsUCbCrGlRuFi/fgjMpn\nc4wY5Qd8wl1YcA0hbVIQd1PKHMj8mUTzHila1T0EGvM3Zc2zWehzMJuodB5h\nPb8M+DWAWAWfQl4eC8N053F59AYoNl7noT+sJ4GiC7Y6K7lFWXsTL8zmP1AV\ndPIizsriVrcvexYknAjVsKsdsFo/qI8J8CIRnMgxG9pgmeU3CA62STums+Sr\nFEdf\r\n=QTFH\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js","cli.js","lib"],"engines":{"node":">=6"},"gitHead":"5773d1cdcd86098b89d5882840453b57e7903be0","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.1.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"8.11.2","dependencies":{"del":"^3.0.0","meow":"^5.0.0","rxjs":"^6.2.0","chalk":"^2.3.0","execa":"^0.10.0","listr":"^0.14.1","split":"^1.0.0","semver":"^5.2.0","has-yarn":"^1.0.0","inquirer":"^5.2.0","p-timeout":"^2.0.1","issue-regex":"^2.0.0","listr-input":"^0.1.1","log-symbols":"^2.1.0","read-pkg-up":"^3.0.0","terminal-link":"^1.1.0","any-observable":"^0.3.0","update-notifier":"^2.1.0","github-url-from-git":"^1.5.0","@samverschueren/stream-to-observable":"^0.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np_3.0.3_1528091225830_0.10935829705002154","host":"s3://npm-registry-packages"}},"3.0.4":{"name":"np","version":"3.0.4","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@3.0.4","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"cli.js"},"dist":{"shasum":"cccd1fd55bc1aea5b22b2ab5ee96e8273b9bbdd5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-3.0.4.tgz","fileCount":11,"integrity":"sha512-w8g6tgyI4zGzHML5f+UFGFzV1CbZVHlvNN6qXp7zoO4Wen8hho1GmQzPqngxYtPxFTZGuITQnyt4ACV4F0FSHQ==","signatures":[{"sig":"MEQCIH8n9IWaWx+1jwQrTGWcyjRdT6bGAV5sqdNyDMu8AcSJAiA22pOQ9HfxBsbLmtshatns93HLxhmaqTmq5i352/3Mkg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27237,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbFNWYCRA9TVsSAnZWagAAKwEP/15ZpFroq2hFpauxCxva\nd6bukIe1baIkyklcZl79fIw6R93nX0kGJHO+8i1xbPBqjky7aMZGFk3IPheZ\nofdTskmDlXQxPpM2eeMPWUawMJ2DNbr8whNSYSk8BfyCOh3BY97TGSWpAL4b\nGfW7QEljtH7NbDLjLmAJ381Roda8h2B/BF/lCemFORA5Ym35X8YfDHH4gXvE\n1srpTCySY++1qtu/9A3toEwcljVIAIEInyiPRgP1UAkvzQNsf5gIWQl8wiNo\nPORhOwVeocU87ObOH2bhLi/763yEndPxfiiPRtSp28wzd77kGIKG3KqTAGh2\nPBbgvAXgGJWLcL3KJ8GbWT1tjJlh73NF7mHUTas4u5v9b6oNxX1dgL7+UNRI\nJN3mt4HzNiOkw2th5BPEMP+fhvVweZQEb4JwD+lV0I2d1w7u+iOIdkomKtyi\nUKHPhb6LcUFoGeU6/9fZo8OpEdmQkpESpZKVze5U9SL7Mwcgj/Q2SWz/Wg3c\nrF7Lx2qN14MQgaTWOSdR2b6xMiQ1OBEJ6HKFEJHSj2OI/a/eyTYq6STcAFDY\ntc+P4Q+LWG91AvqgQJnQdXdXJnrzVbKqjajSVWp73yKOyHH/2lsavuhr3nCK\niUlze/Se2EtHHRrQ95+bQdylcoOANKLy2PA7yPIB9LBZWOcIq9hHyvt3Y8dF\nIxXl\r\n=B4vR\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js","cli.js","lib"],"engines":{"node":">=6"},"gitHead":"846017b22e34a4fe4146119a11901ab9abffd540","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.1.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"8.11.2","dependencies":{"del":"^3.0.0","meow":"^5.0.0","rxjs":"^6.2.0","chalk":"^2.3.0","execa":"^0.10.0","listr":"^0.14.1","split":"^1.0.0","semver":"^5.2.0","has-yarn":"^1.0.0","inquirer":"^5.2.0","p-timeout":"^2.0.1","issue-regex":"^2.0.0","listr-input":"^0.1.1","log-symbols":"^2.1.0","read-pkg-up":"^3.0.0","terminal-link":"^1.1.0","any-observable":"^0.3.0","update-notifier":"^2.1.0","github-url-from-git":"^1.5.0","@samverschueren/stream-to-observable":"^0.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/np_3.0.4_1528092055604_0.6903469522722725","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"np","version":"3.1.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@3.1.0","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"cli.js"},"dist":{"shasum":"f83437459164c529fad801937c201488e319931d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-3.1.0.tgz","fileCount":11,"integrity":"sha512-3HTje97SzbsvK9g61C72PpDk9AloaaTn0K7xHbx7jMrs9vJtCZqu7TWUGxrcYGiKRO/uFRn5SiRZfYB/gpL9Iw==","signatures":[{"sig":"MEQCIE2xHOKl9az607KcOBuQHoXK8d1kKT+7w1hf6r3zkJJZAiA722pkhK9KOPCE56HlWXKR7cQ7EXqEb1X1bVfHBqGTRw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27971,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcFDaMCRA9TVsSAnZWagAArsAP/3FLtIO/BX2Q8A0A3bn5\n9GcvHhvIsuoobkmyQ0P32K8wmJbJwhEPpjpOCesY3BbEZwFs1wriRhzq2Zbq\nw0SmbjmVaGhbETnGC+bhjXIo0FkhDSvY7TBSUR+3MeIjarqRlpeBcy2FaDLy\nO9XDfBo9cTFAQL3L8kXB6h16EgBGCh0xVhjwpOLAGxDqCJi17LdMu6uh/uVF\n+homzIWP9QjkNaQ9vHp3Al7X5wmi8y7jRY+MbA5cKvOSbxBTpznw0RPiCbbM\nAlJtqclVbXwBdXXPXdbmNzwxGEKQJ7+1sGbX1O2gONr+VfNRxheij52Ep02f\n/WNGfylJYmOhmZ652spEk9qxDmRam8KwCH1+Ej0zxQeMM9C8PPjFI18ESEqF\noip8GgCIz83JS2eeLvaQpKvZ/3+4OspKMQsVVVtwmKIcHqU0obfBBslCA1+J\nX5QhzTidXCq6HVVuFaOVri+yHFJSa3TnHwTS7ZKkQKAA4Hkna/F1sdesVrs4\nnQhKllgE829sd0LRfkmg3QOC4fbHpV9LQoUa9WhNYWW/TfAJY2JyTYsmfS3P\nLF0rGTdr3/Prbr2PDVXNpOeJ+iuqk9eNQzkiEMmLyC1J/01lYE0ByrByCtE0\nQ7qeFP4D4BnjkdDEh+H8EXKdI621FnqAmC2DE54cGu6Gjsmc/yfxArssQHJX\nr8rL\r\n=PJ2+\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6"},"gitHead":"eafd3a0cda405c9471a1c41e5aa67132524c2570","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.5.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"10.13.0","dependencies":{"del":"^3.0.0","meow":"^5.0.0","rxjs":"^6.2.0","chalk":"^2.3.0","execa":"^0.10.0","listr":"^0.14.1","split":"^1.0.0","semver":"^5.2.0","has-yarn":"^1.0.0","inquirer":"^5.2.0","npm-name":"^5.0.0","is-scoped":"^1.0.0","p-timeout":"^2.0.1","issue-regex":"^2.0.0","listr-input":"^0.1.1","log-symbols":"^2.1.0","read-pkg-up":"^3.0.0","terminal-link":"^1.1.0","any-observable":"^0.3.0","update-notifier":"^2.1.0","github-url-from-git":"^1.5.0","@samverschueren/stream-to-observable":"^0.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.23.0","ava":"^0.25.0"},"_npmOperationalInternal":{"tmp":"tmp/np_3.1.0_1544828555727_0.779667663707857","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"np","version":"4.0.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@4.0.0","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"source/cli.js"},"dist":{"shasum":"fc18583f06a7083c686005cebcd046ebaa247549","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-4.0.0.tgz","fileCount":16,"integrity":"sha512-GD2alF+icD5h8I0pc37ZZonopz6eMApE0TqABizu6WDuUQQdSXDCJ0fLvEcmHQbIXx/hQiHroEvcB/U4SzL++w==","signatures":[{"sig":"MEUCIQD1qyY+2ufz5AZp4bBlCt2F1qz8EgHYNBl3ILUxfohZ/wIgDRTLh2+uqCmH3EXMXV75E+3TuAOACugCQX6EbIXTDi0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40348,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcRsJNCRA9TVsSAnZWagAAcs4P/0vYIEeTT4GvOpQ2mvpG\nTPdbVITQhBkMoOdbq5G5SD21DfsmeCscLlP1GYmEqD3at75oR1poAgfuoyPh\nJ8ayx/8B4w/vcTWAr+onjwr7Pa2GtTD0ztsE2Lutufuo9viaGHnblv0D1ilk\nalZzzVrjYcWGG6P6olJKYjGXusBhVaETfAkpFItyHp3354r9q5vsgZkjILkJ\nkQCINMFAjGwV+s/c642Z3AUXCgY+c8D+Zq620/IlPWfpDCvdAEaNEQV2lo4R\nLFRVScx+gQDSnUbNCQp0plULlECzUe3dVBteC7ozl8wjfCku2Nxn8npRLwbk\nkCLOj4HcU/VuyWmarPEhL514L+lopvNgdN6gwjKQfbmupaQpYkvy0ZBRUZmh\nMhg4ssoIdvXhGh1hv0AWucJwvQV/jRzDUseIeMhzHOKz5rdzTu6lFfrb0afG\nw0ipeL+cSpx5c/i9XmqS2AmCLfYGYhxuG3ufo78QOfyQZeQUBsie5cmirWag\n52DNwX8LBNtb6O0CJqLmL6QHGLXfD+dB1RtsX0knuEer9R7wyTAHPsGzkDuZ\nMKf0ApBB7lb1d7U9mjWDy8JpRquaQl1qqcuE2BoRPuun8z2jHwzLPl/6IXlM\nuxcdNYdOpefj2ersuaV7vfnYSPO3PFryhBZz2nvbE22bGJuOZM6vFLYlq/Q4\nV7GC\r\n=tgCC\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=8"},"gitHead":"7f98bef9a601e30215f8ebdb49c702ceb84c9726","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.4.1","description":"A better `npm publish`","directories":{},"_nodeVersion":"10.15.0","dependencies":{"ow":"^0.10.0","del":"^3.0.0","opn":"^5.4.0","meow":"^5.0.0","rxjs":"^6.3.3","chalk":"^2.3.0","execa":"^1.0.0","listr":"^0.14.3","split":"^1.0.0","semver":"^5.2.0","pkg-dir":"^3.0.0","has-yarn":"^1.0.0","inquirer":"^6.2.1","npm-name":"^5.0.1","is-scoped":"^1.0.0","p-memoize":"^2.1.0","p-timeout":"^2.0.1","issue-regex":"^2.0.0","listr-input":"^0.1.3","log-symbols":"^2.1.0","read-pkg-up":"^4.0.0","terminal-link":"^1.2.0","any-observable":"^0.3.0","hosted-git-info":"^2.7.1","update-notifier":"^2.1.0","symbol-observable":"^1.2.0","github-url-from-git":"^1.5.0","new-github-release-url":"^0.1.0","@samverschueren/stream-to-observable":"^0.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/np_4.0.0_1548141133133_0.04127303565048601","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"np","version":"4.0.1","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@4.0.1","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"source/cli.js"},"dist":{"shasum":"f49289fde6cad831cc1def94e4f2d550424ff07a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-4.0.1.tgz","fileCount":16,"integrity":"sha512-lpdi3rRuw+tBk0Nm1iARgT/Nd810oIHAzdonxcSAy4+etWml1o0wdUUEn7li2RQUi2yOTIO+B1XO9of7CALwlw==","signatures":[{"sig":"MEUCIQCBbmBZ3K1iQwCRwLzbalG0PGkDznFlFSyANkYph7CkWAIgaAHG8XskIlK4/0TmrXzKFVU14wp/m41TIZ/SRXt1aUM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40465,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcRuUZCRA9TVsSAnZWagAA19QQAJkfcC4gzgIEIaP4blDs\nNheREGbY03+5msrMj8aKjEqsJpTua53K7+PLY9DNbjeYRwzVC/J78AX4vCCH\n4yS5Amuh4STbeIkY/E5AY63B+7VB0uz+yXaZ6+VyxxM8C4QnLh4pQ4mAvGkG\n/5nYMG56S4MES+pmV5mdAAn70h4SXjS2bPk3pqalkRtNHXuLs/o/MqUOmDNU\n6Cp8VCGcU/v+LXf7TJn6oSZ+IzjUZYJZkDZl2IWWpgEsYmhdIXfxmFtCBK2/\nhGa7/BU7IriR7cGHe4qTMJoTbxDR+LvnPw0IpcDdfM2neCDqefgxj8AOHprg\nVQbSOwj619R7ySgKnR65egxLced4GW5a1kad05j90zAZ0isuuYfJey/BPKdH\n9yB+1kWRI0Qtl4tKcWJ6UnElyFhht01EAu+HmDLTUgmMYTwhFS62l9/Vs5jH\nyD9fTwcc9oAo6pYEtYlEAl2NEfhXr2Zm1K1jpJNA26mTv4b5xHnilOKFXykU\nm8HMvp+YBRg5NFIa/txF99ylEuYhX9POwPDpXjpMDwfc7D2smewyeIHeCNkl\nJl2/s/YBD34YSmNYuIGP7z0whuOFhYZujZZzxGChdqQDH0NnNgUUe5F4G59i\nI0ToKKjrnazaDfQO/iOeSrmNJOm4kYiI27PG9O3IN/UCu7KOYQNM+f9RGN36\nKuUw\r\n=XW11\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=8"},"gitHead":"97f017a20b7f15464bea075be12ce233ca7d92b4","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.4.1","description":"A better `npm publish`","directories":{},"_nodeVersion":"10.15.0","dependencies":{"ow":"^0.10.0","del":"^3.0.0","opn":"^5.4.0","meow":"^5.0.0","rxjs":"^6.3.3","chalk":"^2.3.0","execa":"^1.0.0","listr":"^0.14.3","split":"^1.0.0","semver":"^5.2.0","pkg-dir":"^3.0.0","has-yarn":"^1.0.0","inquirer":"^6.2.1","npm-name":"^5.0.1","is-scoped":"^1.0.0","p-memoize":"^2.1.0","p-timeout":"^2.0.1","issue-regex":"^2.0.0","listr-input":"^0.1.3","log-symbols":"^2.1.0","read-pkg-up":"^4.0.0","terminal-link":"^1.2.0","any-observable":"^0.3.0","hosted-git-info":"^2.7.1","update-notifier":"^2.1.0","symbol-observable":"^1.2.0","github-url-from-git":"^1.5.0","new-github-release-url":"^0.1.0","@samverschueren/stream-to-observable":"^0.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/np_4.0.1_1548150041033_0.5712087229453484","host":"s3://npm-registry-packages"}},"4.0.2":{"name":"np","version":"4.0.2","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@4.0.2","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"source/cli.js"},"dist":{"shasum":"be164eab2159d6a45ce5fdaee276af71aaa27873","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-4.0.2.tgz","fileCount":17,"integrity":"sha512-TN9rLMeGeGKcpFKOMGVd/CvMSEFmifRSBi8iaM8iZwBS5IcdyBQLTNq2KclwN68k9VE5zgp5auK7NbFzXyYElw==","signatures":[{"sig":"MEQCIBhDA+AJ/+gwhy5jq4sKARY8XPo4t9PdDWBF+vI86HEGAiBsutfBjMhRoZDzDMiz5MCgvGZFqyM5frvgG7jZ1+eGBA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41267,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcSXrlCRA9TVsSAnZWagAAoBsP/jAimhHdYDL43yNsLwsi\nf40y+NN/rXODIBKuvrPoseJpMP3O6GdjxC55hmBRK6KfxHGEBF8bmgtPWKff\ngUpbMc9y6kc4QsBgbp1b5NviKMzsaou19C6XihNaixBxs+sOCGOhwpJZdNnt\nVA4aeqUvAwhQQCZPOUtZNZATWpiQogXD5JWazNmM2+PLZoQjDDShJi/uqxPr\n2J2cFFBUtHZSTCXy2mUADiGXiYXtbGNVRXkd/mLC9/xDh6pwHr2CNX92OV//\nGvQe8g3W0CtCzs3NuToKFKtObCm7TdJTfJPOYXECjkmg/BkOMHgbPD6iakSb\nOtHxHLZfVYwwDrBW4FhN71s/N04JWIDz6KFWyyrIDasHFyOBtWPZFQmScrb4\nzr4cm3r/STuaG5SpHpmHiZxjy9TPJ4AhlJ7XgSuAShYEaMwKVBq3CQo8xRsC\nlZSAv6+d8/lwxAg/wAa2LYvldM+LXJB/StTiOnm+XZRjqEDRZg4LafD9a1Ea\nvcwWPplZEz/TKv/s2ok63/For0bLts4qoiH92aT9xNkl9Kl2ew/mXGV1sWLV\n49FVma5xiUQBLfG3gtBmlQmtquxnU4I2XRonjAnStuCagTa60jM/6DXLnt6I\n7BKcsGNaJ945iE3vkqMbQxDMcoQmto319KDRRWiM5pGLuD/2ybXia0rMvG4k\nX8NB\r\n=18Ed\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=8"},"gitHead":"acb2ea4b1698f10a658937f8dec85b5041c13779","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.4.1","description":"A better `npm publish`","directories":{},"_nodeVersion":"8.15.0","dependencies":{"ow":"^0.10.0","del":"^3.0.0","opn":"^5.4.0","meow":"^5.0.0","rxjs":"^6.3.3","chalk":"^2.3.0","execa":"^1.0.0","listr":"^0.14.3","split":"^1.0.0","semver":"^5.2.0","pkg-dir":"^3.0.0","has-yarn":"^1.0.0","inquirer":"^6.2.1","npm-name":"^5.0.1","is-scoped":"^1.0.0","p-memoize":"^2.1.0","p-timeout":"^2.0.1","issue-regex":"^2.0.0","listr-input":"^0.1.3","log-symbols":"^2.1.0","read-pkg-up":"^4.0.0","terminal-link":"^1.2.0","any-observable":"^0.3.0","hosted-git-info":"^2.7.1","update-notifier":"^2.1.0","symbol-observable":"^1.2.0","github-url-from-git":"^1.5.0","@samverschueren/stream-to-observable":"^0.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/np_4.0.2_1548319460204_0.28259486827618163","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"np","version":"5.0.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@5.0.0","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"source/cli.js"},"dist":{"shasum":"06997dd0547f21c2cd1f4349a1af2f87a182a627","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-5.0.0.tgz","fileCount":20,"integrity":"sha512-LBGhCy6kKsuJqdECsUKCDGAywDDWUe7OHczWxHsjZgzukXlYqgFV0plCSzr8zZrt8cWS6K76k4l7Yeyge7NcvA==","signatures":[{"sig":"MEUCIQDluNpBdw6/v7oRc6crXKDTlO6o5NyxAIzjgtBgV7smuwIgC8mqRaBBOtGl93DDHlexDSUfBhJw/qDL5xnswZvxtyA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49346,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcuIWKCRA9TVsSAnZWagAAmbsP/RJ5M/N3f4zq+z0TewGg\nBAUmz56iIsmNdtSZ1dfwWHTAjRi7Z7xXzRA0UICyGUQTQlS48ijajFC9DhHL\nr/mlcxXGNVaj0hEx06FNvviOJVMaE1YFL0xVeHoyQqWOmBwSLj3cknUT0Xcy\nbu3iECf5k5zp4RVCWykFyPz47f8g0ThEzm+7CJxYSi3+DfD+mR3wuqSgY1xf\nvAPtAuacaJ7I0WNpQf9CYO+Xl1zW3bMKEb/tcxgG+ZJNKDy/aE2kmdIKt3up\nKScya7BCWgEl82XXN+6NQGjycxVPKOG64ELsltm/wrbuZBR4MSDljaBkP7z2\n3xUfBcBGjlXAn/1yurAfyxYvQcCXztRzf5FEv3Fs6NhTV+SLNqxJPAPeLE72\njfgA0dMmyKMXO+WN3nBqnz9V61niuelpKBwbP1ymKgaVeE4tmAT3VD0Eo4O/\nWJh2YTYoQZmUkxcYD/VZO847wPJP9wkd8cn5Epmy41TSocNoatrLzQvoCunJ\nNTMHENqk5hIos+WiUv4/WDWHxC8j2N5Kwwx9JsPUKIEmlA1E4rHmONglPVgX\nMmb94xTztYsQ+oIiz8X8WwExLxa9l/CVyEuvOTnBPSa/DT81EDSPno32dLZf\nw8asKfjgG2ZgiScRl2h8yB8kd36I0pXfn7a6QkRjm86rd8WaWVjjKpF6sz7n\nXUjA\r\n=+2j/\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"npm":">=6.8.0","node":">=8"},"gitHead":"3727b22f042164e4ee2b3f73ff612fa0c18dc3f2","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.9.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"8.15.0","dependencies":{"ow":"^0.12.0","del":"^4.1.0","opn":"^6.0.0","meow":"^5.0.0","open":"^6.1.0","rxjs":"^6.3.3","chalk":"^2.3.0","execa":"^1.0.0","listr":"^0.14.3","split":"^1.0.0","semver":"^6.0.0","onetime":"^5.1.0","pkg-dir":"^4.1.0","has-yarn":"^2.1.0","inquirer":"^6.2.1","npm-name":"^5.0.1","is-scoped":"^2.1.0","p-memoize":"^3.1.0","p-timeout":"^3.1.0","cosmiconfig":"^5.1.0","issue-regex":"^2.0.0","listr-input":"^0.1.3","log-symbols":"^3.0.0","read-pkg-up":"^5.0.0","terminal-link":"^1.2.0","any-observable":"^0.3.0","async-exit-hook":"^2.0.1","hosted-git-info":"^2.7.1","update-notifier":"^2.1.0","symbol-observable":"^1.2.0","github-url-from-git":"^1.5.0","is-installed-globally":"^0.1.0","@samverschueren/stream-to-observable":"^0.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/np_5.0.0_1555596681414_0.9938828289970372","host":"s3://npm-registry-packages"}},"5.0.1":{"name":"np","version":"5.0.1","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@5.0.1","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"source/cli.js"},"dist":{"shasum":"54ac5347691d3dfc3ee0f0780d5a425ee2a692c1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-5.0.1.tgz","fileCount":20,"integrity":"sha512-2TiY5X0hbQEevPV0WjJ4Os0hjt+Ja3P7cDtiAqBU3jSgyT33Uv6P0g8lIkwLzeTaA8KJe9ykpszjB8DOo27m5Q==","signatures":[{"sig":"MEUCIElFNO5Pd7Z+xp1VRTebjWapLPpZMiEx9cmpfWCd6huwAiEAmzS0/jum8waaEumxW5S/+gtkUMbjr7Mcm2BarGUIEMs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49246,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcxCwFCRA9TVsSAnZWagAAJGEP/1+2ntSPWtWvL9vNomnq\neouqyj7CuxvoAVLUAqpLOGjRe2lvHzSCA2YnxpDy9PrAEvys2DterU9ceevy\nfszIzBeaaf8N8p8y2vEjoPXnon0FAeYq9fMOmfN64UOAvwxt+KL0wsx/Eyck\nlcW9xO8OaHZ2sNbYTrmRXQu0CXX9W8oUF7t6Esvdg3qcHbicFL1qfXsK0rLY\nTlwYIHgEdexPgksGwh3zIZg3pP4rp50GoKvxCIJGuiiJE0qJC1f/4d1tH68B\nwVFNFCIit7SawBTWFdQ0xzO/flnrfksxN2WR5fzUz3kFJdV8JByZxQRL/ugD\nxAPyu4NN3JD/SkYS6eXCaL9zsqMGu4PKRdV2KEJFOE1tdlv13q9RaaYiqKw6\nblWc44UEXL//YvccVwNyvzCvlcSsJn7mR9Uv/sx7NnncUG/TH1l+wxLFQxRv\nnCRvGeqyAOSLrLZf3rH2qMJ4wtnmzYEVO6S4FXaJplyYmPoCuMGFvQJaXTlg\nQ6JkPDG7/uWVRpZFXiStA3nfdFnB+9iOa6labhLaQO3u0tOey3RN/fB0ttMP\nKznOPORFV+ho60W5c1iv9T63ni3gyBbSHTKkzRLcN9mZiKZtHGVDVxIeeguF\nS8PaYqWeLU+tsmVjHnDD+NE0no1IjGzrpXGz7hCs+njBJDsJXflNwIeAvlHv\nEiWS\r\n=pSch\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"npm":">=6.8.0","node":">=8"},"gitHead":"d4bf8838562260d2a3e901e2d8a1650ea396a6a3","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.9.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"10.15.3","dependencies":{"ow":"^0.12.0","del":"^4.1.0","meow":"^5.0.0","open":"^6.1.0","rxjs":"^6.3.3","chalk":"^2.3.0","execa":"^1.0.0","listr":"^0.14.3","split":"^1.0.0","semver":"^6.0.0","onetime":"^5.1.0","pkg-dir":"^4.1.0","has-yarn":"^2.1.0","inquirer":"^6.2.1","npm-name":"^5.0.1","is-scoped":"^2.1.0","p-memoize":"^3.1.0","p-timeout":"^3.1.0","cosmiconfig":"^5.1.0","issue-regex":"^2.0.0","listr-input":"^0.1.3","log-symbols":"^3.0.0","read-pkg-up":"^5.0.0","terminal-link":"^1.2.0","any-observable":"^0.3.0","async-exit-hook":"^2.0.1","hosted-git-info":"^2.7.1","update-notifier":"^2.1.0","symbol-observable":"^1.2.0","github-url-from-git":"^1.5.0","is-installed-globally":"^0.1.0","@samverschueren/stream-to-observable":"^0.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/np_5.0.1_1556360196588_0.32526136640106307","host":"s3://npm-registry-packages"}},"5.0.2":{"name":"np","version":"5.0.2","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@5.0.2","maintainers":[{"name":"anonymous","email":"itaisteinherz@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"source/cli.js"},"dist":{"shasum":"3a01ba5dca317ba2435e11bf4496b9bab6ef8d1f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-5.0.2.tgz","fileCount":20,"integrity":"sha512-LH+cjmoenSP8d8SB15RXcNQHNDihh9o6YLP3I/bmnetgxG18RmWPdFdOxzTyHcOfFPpFB9aylypwUx5PfoMxwA==","signatures":[{"sig":"MEYCIQDN0z5oD7uefLH16G0V727Ht2ocDwOYewX7CMtyYqzszwIhALpqhotWhitjU5tYeVZ1LiZUlBMBmjVw9/9CQdLHRWjB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49474,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc3/NqCRA9TVsSAnZWagAA5+AQAIu9g16L9GTHY5MHqwvx\nkWTNTRMnHQZq34PCEE5yjqwmksTxlLyJ791XuvIzgxGKg63lanaDdI5+pura\nSJ/tTGxfycblf3O5y8NYYi2boHnqzvTO+Nz7pIEElBf36wmOmIXOz11jSPbP\nra460rpPcEldn86c4LeXeINwV1gK+8Q1n3pUm84FgyHJq023DFRLc7MgjWBN\nrzyFnVB+vTFe0nkIg5d6JDeOIABT2w1NJCFKbinTW3QIlWMy3+1kuyP1v7TE\ndCS0VoW2MJOzuKaQJMLalcqczviShHKEPKcm+p6qYxbuIxCb9H1WPKMSA/iA\nwyPDvPFqpFTJsFVVvMeFcXMFC6PWiZo1chIwlotXR9pxG42pbxnlg4tpcSmI\nquHxYd5pWj9fKqTPAcCD0MkGAWUrIk4nzePjYcsXaYNrGVsUA/UL1Qx5qX+0\n651LL6qrxW7hGDCs33XWUqBhWDafAMPYCfVdnEg5eAO/MekH0Ae9+Ixdey88\nhmnWBxxmEXRJgQ7Prl4SwS/i71d7oWELdouwlPKs7/KMemAwW/KgPSXzE3Bf\nC1yP1biKzcMoZmgTz24GOrLuW1JXiA0ECcOHG7Byo+fqX/5e1QDqeph1l1Ap\nL8CKtG4SKt7NUIoYQ1JIy/TiHqQV2BatESZl5J92JtMnyo5S8uZ1eIVp98gp\n9/CW\r\n=rl3a\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"npm":">=6.8.0","node":">=8"},"gitHead":"71880f97c5527737dbff5c3f9c0b01ac9cade8cb","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.9.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"8.16.0","dependencies":{"ow":"^0.12.0","del":"^4.1.0","meow":"^5.0.0","open":"^6.1.0","rxjs":"^6.3.3","chalk":"^2.3.0","execa":"^1.0.0","listr":"^0.14.3","split":"^1.0.0","semver":"^6.0.0","onetime":"^5.1.0","pkg-dir":"^4.1.0","has-yarn":"^2.1.0","inquirer":"^6.2.1","npm-name":"^5.0.1","is-scoped":"^2.1.0","p-memoize":"^3.1.0","p-timeout":"^3.1.0","cosmiconfig":"^5.2.1","issue-regex":"^2.0.0","listr-input":"^0.1.3","log-symbols":"^3.0.0","read-pkg-up":"^5.0.0","terminal-link":"^1.2.0","any-observable":"^0.3.0","async-exit-hook":"^2.0.1","hosted-git-info":"^2.7.1","update-notifier":"^2.1.0","symbol-observable":"^1.2.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^2.0.0","is-installed-globally":"^0.1.0","@samverschueren/stream-to-observable":"^0.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/np_5.0.2_1558180713991_0.2895789611494135","host":"s3://npm-registry-packages"}},"5.0.3":{"name":"np","version":"5.0.3","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@5.0.3","maintainers":[{"name":"anonymous","email":"itaisteinherz@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"source/cli.js"},"dist":{"shasum":"69e160850d7c89a644b3917e2728eee50de88609","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-5.0.3.tgz","fileCount":20,"integrity":"sha512-j8tK6bqKANlZry+chd4LotCBSOuQpCnmSUVk5KOA1AfGu/GmIFE6lPwrkhEX3VkOFsZLW2C3+UmWZYVnMyyCbw==","signatures":[{"sig":"MEUCIQDNb/iexlvM6raOa2Lfhi293J+0Z6UwwdjnRpa0jp39KAIgKM4HEu64dBkco+GVZ6qO9HViP4SF1g4mWiIx6R0nfZs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49585,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc+MHlCRA9TVsSAnZWagAAissP/12NEMm8LQlDigoBxmed\npVzQEj1UjOgpS21zYHDfiolxPSouKhjPHDzi1UWPfhCVj1rYoMPh9k0let0D\nofRKmWOGd3Ufc27HNQOX19yg7oJni1MQfW3x2T0Qsq1SJFUAx7FS++zNmjwY\nl6/XQikkXCpzf4rK3rRyZ80X9k59n7tLnFMab6jdcCHG+/9wVQKAtBMIXdRK\nC1bf0ok9bbb4XtQLhfu6wRCOqY+oT/OzZ4YWpZHnLbTtUki3XRSFONcsFKSN\nEw4BNzDojBImWm3WiOmMxY45AuqTf8KlS1Rjhr53I07YGX8GWJEhXCJeePSx\nvhN9JtKK/J7smNfiqXYs/s5jiBWpEsOXrNcbQu7BLt/pAu671kqWWZEINpLx\nRt9PpGFYhRNz3TSeb/8l47IqTKGZIsCqJANHST4fIwatIJdbaVyjAmL90Hm9\nRf8oU1p/3yb5xnrKSahrqnJECJwMmaMPSF8f58dmd19YvZYPUml6XTmYfty6\nSCCyyrqND5R0Pe8BU+V7jEUtdaoqcwdrL1OcIRyuODUu8nzYqZDBi/0N15kw\niroHPJGj2q0psFaG5HrpQavcPtVbIPsfGCAeLt1BOWXpTlQFtHQH07I6rL94\nhLhs7Spd+5GJQGAkr3e8cmOB+PaTAn2vib43Qeu2J4KzNitWE4KRHWSeonQ7\nRCaW\r\n=EUqh\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"git":">=2.11.0","npm":">=6.8.0","node":">=8","yarn":">=1.7.0"},"gitHead":"4264c832676316ed6bfae1b72eb4a49b7c0286f5","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.9.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"10.16.0","dependencies":{"ow":"^0.12.0","del":"^4.1.0","meow":"^5.0.0","open":"^6.1.0","rxjs":"^6.3.3","chalk":"^2.3.0","execa":"^1.0.0","listr":"^0.14.3","split":"^1.0.0","semver":"^6.0.0","onetime":"^5.1.0","pkg-dir":"^4.1.0","has-yarn":"^2.1.0","inquirer":"^6.2.1","npm-name":"^5.0.1","is-scoped":"^2.1.0","p-memoize":"^3.1.0","p-timeout":"^3.1.0","cosmiconfig":"^5.2.1","issue-regex":"^2.0.0","listr-input":"^0.1.3","log-symbols":"^3.0.0","read-pkg-up":"^5.0.0","terminal-link":"^1.2.0","any-observable":"^0.3.0","async-exit-hook":"^2.0.1","hosted-git-info":"^2.7.1","update-notifier":"^2.1.0","symbol-observable":"^1.2.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^2.0.0","is-installed-globally":"^0.1.0","@samverschueren/stream-to-observable":"^0.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/np_5.0.3_1559806436473_0.07144462255870687","host":"s3://npm-registry-packages"}},"5.1.0":{"name":"np","version":"5.1.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@5.1.0","maintainers":[{"name":"anonymous","email":"itaisteinherz@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"source/cli.js"},"dist":{"shasum":"e625c2c7dae159c41d2a6ed0451c930bee0bd8eb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-5.1.0.tgz","fileCount":20,"integrity":"sha512-eI0n3t/8coDEsfy/Cn9DOA8+/GG23Afkt0CPbqrpjFZCMQObXJjMfkn7+l4yHR0htWevyYeXdJeFqUrqITWfkQ==","signatures":[{"sig":"MEUCIFKBBPyzX58v+XzoZdmUTlh2WqpUQpfzt981td8X8WXbAiEA1x4/AFHisX65yzTE0c4u5cNVTYIgxyAfh7oWfnCQ4EM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51471,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJde28WCRA9TVsSAnZWagAANOAP/0zmy4Fvo512haom4vOF\nGQkObhF68pap9I3X518y1EEG4AgrSov9rhX/ZEa6SMqLyC1epr8nY9td0Dja\nE47+UsU2udbfYuEvqc8hFyIPlPUHAyDQ6r9k/wTd+M7dLM0LexBa3pfqN/DB\n79eDOUNDGpNe7GqTs8UetflR+QrSyW5H3gYvecDV5gumH4Wo0UBiMGJeVl5D\nURBtTG9ueYkWeyaJFLUelLONHraVxPZ4IswxJKnGW50wjDNvrH/cPqFew7H9\nz87xCnsPcb7yNJNGUv0r7KFoerOM5JQIHPUcZupvtrXXgkzwuIOngHcdxBI8\nrTCvUGgRdSLp5W+8ZzrtEv7CIZ8+7jwlvTQ6EBep42mNG6pTSDzRyt9iNtea\nd/Y0YlWoduywgks0D0xh/F9FRVsP+HlAKFA6Fz28kgAGUUzMgRtBQGDgelCJ\nVdX7hGA0tlZmx25e8gEXsXS2akaVVCYrhw/hlxlh17IzbogSlAPfcKtlRmjy\nCjm013Rsz+Ih3NgH8EGfl2uxOs7B3icaGQ+X+EgnwaVjbf5fVmmib/nloQvu\nMhpbEK5CbG67fpTZD8jwEe75OyLg6uQVak2TJZID2U+YefMIngIoxIxANt30\neLqyKBiqPUN1UKAHbRIOkVnJ2SvwOj5lsFzBcTXYmRQp/1YI/PWrAQ+ghsmE\n6hP9\r\n=2cec\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"git":">=2.11.0","npm":">=6.8.0","node":">=8","yarn":">=1.7.0"},"gitHead":"1834e960f3256a34fe7b897e2ee1682745981545","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.11.3","description":"A better `npm publish`","directories":{},"_nodeVersion":"10.16.0","dependencies":{"ow":"^0.13.2","del":"^4.1.0","meow":"^5.0.0","open":"^6.1.0","rxjs":"^6.3.3","chalk":"^2.3.0","execa":"^2.0.1","listr":"^0.14.3","split":"^1.0.0","semver":"^6.1.2","onetime":"^5.1.0","pkg-dir":"^4.1.0","has-yarn":"^2.1.0","inquirer":"^7.0.0","npm-name":"^5.4.0","is-scoped":"^2.1.0","p-memoize":"^3.1.0","p-timeout":"^3.1.0","cosmiconfig":"^5.2.1","issue-regex":"^2.0.0","listr-input":"^0.1.3","log-symbols":"^3.0.0","read-pkg-up":"^6.0.0","terminal-link":"^2.0.0","any-observable":"^0.4.0","async-exit-hook":"^2.0.1","hosted-git-info":"^3.0.0","update-notifier":"^3.0.0","symbol-observable":"^1.2.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^2.0.0","is-installed-globally":"^0.2.0","@samverschueren/stream-to-observable":"^0.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^2.3.0","sinon":"^7.3.2","proxyquire":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/np_5.1.0_1568370454134_0.16676065202658785","host":"s3://npm-registry-packages"}},"5.1.1":{"name":"np","version":"5.1.1","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@5.1.1","maintainers":[{"name":"anonymous","email":"itaisteinherz@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"source/cli.js"},"dist":{"shasum":"85c999b6a2b969768b4fa062e2ceda9f1fbae2d1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-5.1.1.tgz","fileCount":20,"integrity":"sha512-P0lZvAhcbLkSczR8YewU5uasyZSemVR6mRbxHH+vkLXvG3BNBm5bQFH7fA0KD0apUKEMRoH5Cy0B7d0LpwOPKg==","signatures":[{"sig":"MEYCIQDDMoZgXSnMBP+EFtKOQSraII9d90MKnVu63vomAfI4GwIhALuoJRozTlQCXgdvS0FtuHNC083l1W0dnJt4sWpdU+/Z","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51563,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdnuRMCRA9TVsSAnZWagAAG80QAKHUiKknWvljPRtYOXQ/\nL6K6EimrslizQLmwUVTR8Vt0OLzr3gVk1Qg3wUxQyl3eAxTGFA9pZ1ZX9PKJ\nI1mgIjELgzjqjXaUPmOzaqoFr4RApVVS04EwC0Jse5QgGkhPuJSIDFKxIIYn\n+DTv7jhmcFodvPtzUAaXHUovcIW2AeeTmjib0sD+10i3fcgAwrhng3a7hMTp\nCoPsZG/fxE0tShjpC+YORKGxii++LcxYs7k2M+CU5WaPciU9kOUo1iqw9Dxj\nlGJH0fpfxuGFaXF8QyxZI79/u5jdZsN3ENFK4QYfJZrDcz9Zy91JJD5dippC\nr87EkKNpllytR7T5zAmobgM4XJW3ERMqtBy1d28XY3gw+HjDkYWZSJXAUmLQ\nxS/oIxjUe9HVaCtkbEPdfuKA9QrnLIxvR7zWsi6mhZ6slXG+Pn22hhWSwkqd\nEIB+tV3FEa9q5i9mbTeqjpHs5GNnxV+oIYqFmbCoFEf33jyolOptRavHgeFH\nQZSwNFSmiZtukNSzgrXKRmpXuEvaUKJ+QqkaaUtwUwiM1qqJ6L9g+N59ivlw\nobnjHCXGtHsPN94Li42I+gcRBoOztcywTmoidWk2WAXXZymTMXyStOw1Ax+q\n/l31RCyLPFc7Ey3vK0PIrguhw4k6MHrqadpZC6jwtqfxbYuuoqnp4aHjf/Yr\n+JaC\r\n=Kt75\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"git":">=2.11.0","npm":">=6.8.0","node":">=8","yarn":">=1.7.0"},"gitHead":"55eec55c0cbd2263d38172a72b8089e1cb932bf8","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.11.3","description":"A better `npm publish`","directories":{},"_nodeVersion":"10.16.3","dependencies":{"ow":"^0.13.2","del":"^4.1.0","meow":"^5.0.0","open":"^6.1.0","rxjs":"^6.3.3","chalk":"^2.3.0","execa":"^2.0.1","listr":"^0.14.3","split":"^1.0.0","semver":"^6.1.2","onetime":"^5.1.0","pkg-dir":"^4.1.0","has-yarn":"^2.1.0","inquirer":"^7.0.0","npm-name":"^5.4.0","is-scoped":"^2.1.0","p-memoize":"^3.1.0","p-timeout":"^3.1.0","cosmiconfig":"^5.2.1","issue-regex":"^2.0.0","listr-input":"^0.1.3","log-symbols":"^3.0.0","read-pkg-up":"^6.0.0","terminal-link":"^2.0.0","any-observable":"^0.4.0","async-exit-hook":"^2.0.1","hosted-git-info":"^3.0.0","update-notifier":"^3.0.0","symbol-observable":"^1.2.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^2.0.0","is-installed-globally":"^0.2.0","@samverschueren/stream-to-observable":"^0.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^2.3.0","sinon":"^7.3.2","proxyquire":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/np_5.1.1_1570694219713_0.43908497590564877","host":"s3://npm-registry-packages"}},"5.1.2":{"name":"np","version":"5.1.2","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@5.1.2","maintainers":[{"name":"anonymous","email":"itaisteinherz@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"source/cli.js"},"dist":{"shasum":"0339e9a28c6996f8dbc1fbf971b3f9aa9eb7bfea","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-5.1.2.tgz","fileCount":20,"integrity":"sha512-r+Gh5MRzkw38ulD8+VhpfAjJUiFJTKJv9a2NVPFelXm1jQcugSHs+IntqlAA/ydwgxwNe+EDnyvGjtZuFyeVFg==","signatures":[{"sig":"MEQCIGMWjwm7FAyMbYCg3k8KRSNHxR/jBO0wzK9tX/amyyyOAiBd1Dph/xYNA5BoHomzqCnO3G4fSLGVmEHmpfQ7scIdFw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51638,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdto9UCRA9TVsSAnZWagAAcYUP/0beFCRJ8tN1sO3LvmO1\nPpva1zk2ZCZVpAx3D9RIDGrG+pJ9HaBQXlGn10wUWE1fxwY+SEI3+vaCWqlB\nFHMiFbYddAXyYjt+KbPqX8kVn2fDWp6z+OKm5F4++ZnoGNIm4u9bq45aNifP\nUa3rcxncmA5dwCmqFB3K5X/96ouftnrLmYrc9ks4HM3wrrpNlcuU76lqZI2T\n1AQMqqFjj1OSfI9MtOqc3h3qDuUibfUyclnusGBxBKyvsy06HAuwlVWeCC1c\nKGC78k9EQthYCJL0uS8fPzqm3c65Hfw0TFGBd6odp997zLJ3Z9sSrKw+oPej\nwMh/UMBA49SiRBhuWUS0/ruQNI3Gtupp6H/2mSjnmQtb26B7fEjnwfRK+nXB\n073AC6bvn1czctyFFxA8DC58SaNmfSrn7nJc2WZLIXpU06L/jYMyAbQWtql7\n3bUrMzCYTo2ZisOqZpRUaklWR8y5oCPWhN+Kbk0A91wUm34Sx+8r4wx/zqJm\nqIjM3uMUvn+JhkKzIpSRmnktZHbvv6Lmk+Lfb3J6pGsNi2uNLD0gCt3oo5VV\n1IAs0GdrIViDUXSzpngWA/NSzxTU2Lp+0KCkcqXSuKPXaYGlRjyQ3iJF5MLs\ncSl0jLT8wQEioY5FREH3isrUXKXYI3KqoUMRqA82ge6zHgO+NkDrmkKzF+hN\ni34+\r\n=i+jN\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"git":">=2.11.0","npm":">=6.8.0","node":">=8","yarn":">=1.7.0"},"gitHead":"83ecc79a47fd95328ec92595ee80523116c112c2","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.12.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"10.16.3","dependencies":{"ow":"^0.13.2","del":"^4.1.0","meow":"^5.0.0","open":"^6.1.0","rxjs":"^6.3.3","chalk":"^2.3.0","execa":"^2.0.1","listr":"^0.14.3","split":"^1.0.0","semver":"^6.1.2","onetime":"^5.1.0","pkg-dir":"^4.1.0","has-yarn":"^2.1.0","inquirer":"^7.0.0","npm-name":"^5.4.0","is-scoped":"^2.1.0","p-memoize":"^3.1.0","p-timeout":"^3.1.0","cosmiconfig":"^5.2.1","issue-regex":"^2.0.0","listr-input":"^0.1.3","log-symbols":"^3.0.0","read-pkg-up":"^6.0.0","terminal-link":"^2.0.0","any-observable":"^0.4.0","async-exit-hook":"^2.0.1","hosted-git-info":"^3.0.0","update-notifier":"^3.0.0","symbol-observable":"^1.2.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^2.0.0","is-installed-globally":"^0.2.0","@samverschueren/stream-to-observable":"^0.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^2.3.0","sinon":"^7.3.2","proxyquire":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/np_5.1.2_1572245332014_0.9400174701031039","host":"s3://npm-registry-packages"}},"5.1.3":{"name":"np","version":"5.1.3","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@5.1.3","maintainers":[{"name":"anonymous","email":"itaisteinherz@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"source/cli.js"},"dist":{"shasum":"b4d999709d88ebf51586c0bd7c932f5cd85c0454","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-5.1.3.tgz","fileCount":20,"integrity":"sha512-np8ZranFku8KSKYZzjpyb45P2HMAAoWufwB957mTjZSYg/8ZvU83qT0rYHGXgmwxM2jbsVMtRj9cEgUbPJfV5A==","signatures":[{"sig":"MEYCIQDZ6Yn2vcpQB7LxS1vKrT0fUEIGVfqPK6Aa0s0Ja4idwAIhAMvhygmSvjy31llj00rBPd1sxJJo+x3flOotc3tjyzN0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51638,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdxaSBCRA9TVsSAnZWagAAe9UQAKDQ+8QwS/onFKAd3ecj\n3Exa/p1Rq242hfSy8/hWk4BzgHpa6yFishn7X9Rwyh6iOgAr6Sfje43TAJxU\ncjHG8n59aQ0etwLFvZs5a+E+pKtfQwyUindIiIx6/EK7esJOmRPwyKturbc5\nt92xaHXpPaxluz7ALpUotNGCkWhDDAm8gRIIRc1/ACd5J55EEWJeKYo0Dibh\nNE1VsLMXwZGdupHFobGhF330cZ9LCcVsyf/lY+IEJR+k0XaA6qmJ04E94gbZ\nAUW9oDsKOYJqatTHXARWIyNAKyyktDpvUTFpctOO8bzamC8b9hK7pw2esoCF\naoQbbmKVL9XMbl65JTnctbWnMqnqpiTO8fcRb7GJGXUcs2111eICRwh+joST\nRGt3ZLz0FZxMYP3kDcnOvH88Q6DuRFc1fgO7+oqi4gf+KJneUDpp6rzpNYNq\nz1JocpiFn/myKdIedGTeGHsWMAxcpiM7rfxPNuAUhBAZErEmwp4x+zoi4nZn\nv8A5eBz2fXxwaiKIg3DDLlTc3Phn+GYO73P1IUBzgUzc1hscq8q/eKxxEJCX\nCWCR72sWYsw++MGwVgdDNDRGt1OBhtriM0NkDyWFLD9xWeQVfLkuWnDhz+jU\n30SyqdlejwV9kOYaJ5AqFMSqhRRSCtBjJ18XAVzNOKUddxBbfG8R56DX1w4d\nGTZM\r\n=wTNh\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"git":">=2.11.0","npm":">=6.8.0","node":">=8","yarn":">=1.7.0"},"gitHead":"817a03018862ee4b692f9ee66d2720431325bb37","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.13.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"10.17.0","dependencies":{"ow":"^0.13.2","del":"^4.1.0","meow":"^5.0.0","open":"^6.1.0","rxjs":"^6.3.3","chalk":"^2.3.0","execa":"^2.0.1","listr":"^0.14.3","split":"^1.0.0","semver":"^6.1.2","onetime":"^5.1.0","pkg-dir":"^4.1.0","has-yarn":"^2.1.0","inquirer":"^7.0.0","npm-name":"^5.4.0","is-scoped":"^2.1.0","p-memoize":"^3.1.0","p-timeout":"^3.1.0","cosmiconfig":"^5.2.1","issue-regex":"^2.0.0","listr-input":"^0.1.3","log-symbols":"^3.0.0","read-pkg-up":"^6.0.0","terminal-link":"^2.0.0","any-observable":"^0.4.0","async-exit-hook":"^2.0.1","hosted-git-info":"^3.0.0","update-notifier":"^3.0.0","symbol-observable":"^1.2.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^2.0.0","is-installed-globally":"^0.3.1","@samverschueren/stream-to-observable":"^0.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^2.3.0","sinon":"^7.3.2","proxyquire":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/np_5.1.3_1573233793043_0.9323025114137291","host":"s3://npm-registry-packages"}},"5.2.1":{"name":"np","version":"5.2.1","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@5.2.1","maintainers":[{"name":"anonymous","email":"itaisteinherz@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"source/cli.js"},"dist":{"shasum":"037bc41a6702fa20ec002fc24f36ebeaa2b318a2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-5.2.1.tgz","fileCount":20,"integrity":"sha512-KGSFQGHob6FMOWCrBgaqJNu/G9ghA5Rfbt3NXOz2alKzEwC1Xvk/vIem6dbKm3HjyII1WpfI+Xymx51i2gJMhA==","signatures":[{"sig":"MEUCIH36jkf08jDz5/hrpRLKkcaV2/UZ75pp4b1ph3cchiK6AiEA8P90kJxiiQtKUn9nK+anP4Hl5jlmQMZoQH2mLgHpPl0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51827,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd4kVHCRA9TVsSAnZWagAAyeoP/3iI8mHiizJFkzd6XQdu\n7//dHq0w5LV0nJCD9tdkAikqXu1tyIgllblT/DIBlJCPUBamUoSU8IW8RVwf\noSpqb/Pw1UfG/jvKFdm/r4WhUnQdUHoxWAX5colWKBftjwfc3TmgYxvRktmu\nzEdu2cJBTfNkgZxfqqoSUHU1CesuXyEke343Uwwg9CinAQKcb4KvZpQONrOT\n6wUjab53CobIsEuZ9xVBzFG9vuHmT/m2hHidEDQC6zDdnKBVDGc1CW6n1H2V\nJQOMh1Yz8Rchz36dDPEHbqznle5w62BQQXUYOGfp2Kdfd6iUOvkLvQVab9uE\nkbkius2pxFKGa0J7HAR8ImSIaTWbDH12fZL8vJjk4XBHIHzLi7bC5tpKURNg\nOMkUB6feOTPLwfWlFdVXdWHykPeYhX4CybKNuW+mQxTpDteE939wwDVh9VwT\nqd3BkfzORSJiUezdC4YJT2txycG92spQFU+zALMiG7G4kgqwAnUQ0mWnO3aU\nwFdrhImv9OUFARdl8AqoLplYnkEG3uFczyAV6pkj01GALkFDetFPIOubQSsM\n2IVFy2EOMIO0IUJnAzzQEAHeJnEwNutvHEiqBQX8lCgxZAg394Ep3oT1QhZE\nYxn68xA3B+plqXeypqW0JEArX8thNSWw2QLWpvVEqp2rAEgbRFUhb8tddrCW\nrO0+\r\n=3bfF\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"git":">=2.11.0","npm":">=6.8.0","node":">=8","yarn":">=1.7.0"},"gitHead":"abe21ab35bd3ff2eed18862e522b6fbd2f63240a","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.11.3","description":"A better `npm publish`","directories":{},"_nodeVersion":"10.17.0","dependencies":{"ow":"^0.15.0","del":"^4.1.0","meow":"^5.0.0","open":"^7.0.0","rxjs":"^6.3.3","chalk":"^3.0.0","execa":"^3.4.0","listr":"^0.14.3","split":"^1.0.0","semver":"^6.1.2","onetime":"^5.1.0","pkg-dir":"^4.1.0","has-yarn":"^2.1.0","inquirer":"^7.0.0","npm-name":"^5.4.0","is-scoped":"^2.1.0","p-memoize":"^3.1.0","p-timeout":"^3.1.0","cosmiconfig":"^5.2.1","issue-regex":"^2.0.0","listr-input":"^0.2.0","log-symbols":"^3.0.0","read-pkg-up":"^7.0.0","terminal-link":"^2.0.0","any-observable":"^0.5.0","async-exit-hook":"^2.0.1","hosted-git-info":"^3.0.0","update-notifier":"^3.0.0","symbol-observable":"^1.2.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^2.0.0","is-installed-globally":"^0.3.1","@samverschueren/stream-to-observable":"^0.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.25.3","ava":"^2.3.0","sinon":"^7.3.2","proxyquire":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/np_5.2.1_1575109958899_0.2346317222711216","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"np","version":"6.0.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@6.0.0","maintainers":[{"name":"anonymous","email":"itaisteinherz@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"source/cli.js"},"dist":{"shasum":"f0867231ee102e67a590d36f260bf5515640a220","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-6.0.0.tgz","fileCount":19,"integrity":"sha512-hjgJjp2++zb7ibBvzm0is9J3ny0bGbFeLzznwvYdmaj7kpKg12rQDTyyY1qBdjGQShMDYwtOJN+n02bHw/SnnA==","signatures":[{"sig":"MEYCIQDDsFWKTmvbLO3gnphxCtt2YNG2P8NnPYA1axLbZQbC2wIhAMvwMoV6RWJJbprRVNE85gdkdbC3rj9oAce8zknSgAyk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52681,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJePQ58CRA9TVsSAnZWagAAqNcP/A9uCj3fbJ8T5iGf5LML\n+2M7O5lYAPMmIaIEftPC9IUoizeMPZ8+CmbKPDfw+cjySexvQZbJvFq9fFT1\nJJNmoq6gS57lLKc2+2HrgZXd05rSyi6sqYSKKcTHBqD9EQe0VcC+pKaFzMVD\nQv0IkHLDJIavfsWzbu2i2A754aDRMupwYboRPfZLi+u8rtTDeVbeb1xXmajk\n3Yme6mppWd7yWuWXfPHQ557uIoTR56RxiO2ZbiSMXJbTA1Zl20OM9C2RiEXw\ncBWgG5E+7q/rxAdzTa9RA+1F7wAaMHE4jwnLFd8Ybr9vBi2OkVdtl3+rsViP\neUZmaZQKAuyuUUrqYmK8E+tER6LSbOgNblnIHvOAd2C/qWdY2HsMRVG/YW4A\n0CZsDH5Wz463nWr2dze42A58mhjYLLldaudPo7DuweRmy9tnjMuF4GoHbe33\nl7O5c9uIuWhZcXUaNFl5MzCskj9mKZt/766js0fYnVj+qoNMvzSR1LkjNH1F\nGYQ/d+v9gmf46JKGL86yIZz9BeLorV9AAyb/FxiMo5yWXhZ6MLO5N5GdAuqQ\nCzMzV5Y22vrZLQwKj9rt1EqFjXqZQwwrxqKx0kt8VrsZaqPERSy59ra7dpnP\noRVg0yjKPKTwZLnwR8Wd4zD25/vfcqSwsIfpu1O2Ru09hVm+aSzktWpcKJta\njjaQ\r\n=ciQk\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"git":">=2.11.0","npm":">=6.8.0","node":">=10","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"a44f05df56bb192dc5511d6503cee8739f46915d","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.13.4","description":"A better `npm publish`","directories":{},"_nodeVersion":"10.18.1","dependencies":{"ow":"^0.15.0","del":"^4.1.0","meow":"^6.0.0","open":"^7.0.0","rxjs":"^6.5.4","chalk":"^3.0.0","execa":"^4.0.0","listr":"^0.14.3","split":"^1.0.0","semver":"^7.1.1","onetime":"^5.1.0","pkg-dir":"^4.1.0","has-yarn":"^2.1.0","inquirer":"^7.0.0","npm-name":"^5.4.0","is-scoped":"^2.1.0","p-memoize":"^3.1.0","p-timeout":"^3.1.0","cosmiconfig":"^6.0.0","issue-regex":"^3.1.0","listr-input":"^0.2.0","log-symbols":"^3.0.0","read-pkg-up":"^7.0.0","terminal-link":"^2.0.0","any-observable":"^0.5.0","async-exit-hook":"^2.0.1","hosted-git-info":"^3.0.0","update-notifier":"^4.0.0","symbol-observable":"^1.2.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^2.0.0","is-installed-globally":"^0.3.1","new-github-release-url":"^1.0.0","@samverschueren/stream-to-observable":"^0.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.25.3","ava":"^2.3.0","sinon":"^8.0.1","proxyquire":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/np_6.0.0_1581059707715_0.40315080872119946","host":"s3://npm-registry-packages"}},"6.1.0":{"name":"np","version":"6.1.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@6.1.0","maintainers":[{"name":"anonymous","email":"itaisteinherz@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"source/cli.js"},"dist":{"shasum":"e220c460341fad9cdff21f414fdbe15368a1c678","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-6.1.0.tgz","fileCount":19,"integrity":"sha512-6L34Clfm3TdFKeaITLtpNuQc/huMnPOXP4pRWSBgqtsxLJGknjgtHSxRq556AzexIODFpT+d7K/X9IW7XNfQfQ==","signatures":[{"sig":"MEYCIQDAtvuqk4Kn+XqELh7bXuMBiqY7JZWFlU8zH6wddgcNVwIhALVKac8RHqYVY2YMa3Cyzrf3AK0u7KLi1FVGFeCH628+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53471,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeSk+6CRA9TVsSAnZWagAAEgAP/2DFyVFiz/kvaSn2kNVi\nq5vnw2dO4BfhF0/5zJSq2oP0jhLIgO/6/6NMWEAxSgKheXPl411V3wkILmSa\n45AvAA3G45BDyDCaBfrdVGebqlM8TaIJqcxtJOgJVw74fs8yIpAzGRCP0kzG\n82MNfR/YPGvuThMvgIf9LgqJxiI6jSocdQ+c/mIjKF0ZmSuOGyY9vQmgHjbc\n9RPMU+m2Gz0sCNakcD2R2mHC5dNSSM7QhWWoEWv+CqsBUFbx9TEh0OPkyFX2\nPz3I5aGhCaky90vAnkqV+IMRtlnf3rc2w5RDId6cA4knmpN63c+RUWEoLZtf\nRphYUw4f51QIzcaKbIEhiF/2O217zcvhJJnjkKwaVJAdELM6pRzz4D0JN6TC\njUBBHZ7Cr2/Yb5PcipMF8YbdTOtmbE20M40oevBdoQYacIPUtKlW/Bg2JEfB\n2fthd17fCwyJkEmNCn8cReUNPbmOrW+3x/vTGdD5qCyDAVrWvuVirwp5+Lbx\ntJD9D952VNWLu3zvAC3MHMqOZ3QYZEIuGXMee5ZxHlfUuEXE9DQKZ5xtbtsu\nq18IUtooX6GwvkiVsNbBt5BKhB7SV9+HTFNodipLEOOjpE6+Ytj64z/H9Db4\nhOR5x+uwZnRCV8gp1c9tuYZ64H6Gh4KPofaXqPIfsGv/JDMaaj6NkPjDq9Dv\n5VIW\r\n=4Xmm\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"git":">=2.11.0","npm":">=6.8.0","node":">=10","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"cd046cac71d5380166f9224260c5760e310dffaf","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.13.4","description":"A better `npm publish`","directories":{},"_nodeVersion":"10.18.1","dependencies":{"ow":"^0.15.0","del":"^4.1.0","meow":"^6.0.0","open":"^7.0.0","rxjs":"^6.5.4","chalk":"^3.0.0","execa":"^4.0.0","listr":"^0.14.3","split":"^1.0.0","semver":"^7.1.1","onetime":"^5.1.0","pkg-dir":"^4.1.0","has-yarn":"^2.1.0","inquirer":"^7.0.0","npm-name":"^5.4.0","is-scoped":"^2.1.0","p-memoize":"^3.1.0","p-timeout":"^3.1.0","cosmiconfig":"^6.0.0","escape-goat":"^3.0.0","issue-regex":"^3.1.0","listr-input":"^0.2.1","log-symbols":"^3.0.0","read-pkg-up":"^7.0.0","terminal-link":"^2.0.0","any-observable":"^0.5.0","async-exit-hook":"^2.0.1","hosted-git-info":"^3.0.0","update-notifier":"^4.0.0","symbol-observable":"^1.2.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^2.0.0","is-installed-globally":"^0.3.1","new-github-release-url":"^1.0.0","@samverschueren/stream-to-observable":"^0.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.25.3","ava":"^2.3.0","sinon":"^8.0.1","proxyquire":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/np_6.1.0_1581928377660_0.41497002434875707","host":"s3://npm-registry-packages"}},"6.2.0":{"name":"np","version":"6.2.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@6.2.0","maintainers":[{"name":"anonymous","email":"itaisteinherz@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"source/cli.js"},"dist":{"shasum":"56f2106ddce19fd7b2683aae18cada2d74777027","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-6.2.0.tgz","fileCount":19,"integrity":"sha512-4VKkGlCvl/iZCxWmS2VU8+s/Lh0TqLwdpuwOofspxEme1Hf7yF3cADG2TzSweuJXNsRDBQPjldZwTh6CxmZEKg==","signatures":[{"sig":"MEUCIEyWcvT7TK4VfXHARM8kVzaMEIgzRRZdFZ5vFIfLDXrGAiEAjxBWYHQB/qmkeO5OE647TCUi0v9WD+ahzkkRMJggPnc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":55462,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeVuHvCRA9TVsSAnZWagAAtD8P/iBgVOZKUP9tIjdLQCC4\nVE2giqxCeH5HeheBYWDQuqrP4uXzb1UguVMowjx6k0p0kSFFJ631klynBSXu\nK64pwfJxHBmkeRCC3/XzGSvuvC2oW3oM1ePpcrNNTAb2jRtRh60LQBvFoglX\nSD8BHE57QNK7uoenV15OXoi720bDwUQhoCQcGmGM8/2T1J+acQZjryKDrlS9\noqjoxhhi2Y15HSDsrXw+Nnl8G1YozwkOSmBH+NBKQ9AdNq+8zXnHybkPEr17\nzlgP0l7MyTpkab1r03GBTs2LssMcZrJnpWtp8FJNI1LLxo4U5JbZl+ZiK6R4\nyY97Wi5DP5VbYcHl+/Ac2PEDKzmFoFcmGJUNBxk1zgHaSLj1OVdlOTt+cZTU\nHvxr2VOtaFD8ptMez9ciPo47ua1TRSjZKKSV8yuPOI2cXPXIvCc12Pwziru5\nrI3Kd/JOaoyStRHS7IHMnMouAqY56ujo+QB4oSO2HWctpu9ToT8jgIvOpPsz\nakK34NVpmRpKwoKBNNSf8hYIUEmiE4fyyUyBnf0j61Mf5vMgjmF0+dJpXhw2\nzotGbGNn+09JJ8EdiLhQNdOskx9Mqqk8x1DR/yPKzN6hD427y4/hDVrByUhl\nbF+CaxTKA5UjYxJENxRVYgAE7WdiGmPwMKVi4Oh5cWFQcC88MrdsBEIiTSjs\nIhMJ\r\n=3xBq\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"git":">=2.11.0","npm":">=6.8.0","node":">=10","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"5d1a00bb5c40c30f6adb30b6ad4719d841de5e6b","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.14.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"10.18.1","dependencies":{"ow":"^0.15.0","del":"^4.1.0","meow":"^6.0.0","open":"^7.0.0","rxjs":"^6.5.4","chalk":"^3.0.0","execa":"^4.0.0","listr":"^0.14.3","split":"^1.0.0","semver":"^7.1.1","onetime":"^5.1.0","pkg-dir":"^4.1.0","has-yarn":"^2.1.0","inquirer":"^7.0.0","npm-name":"^5.4.0","is-scoped":"^2.1.0","p-memoize":"^3.1.0","p-timeout":"^3.1.0","cosmiconfig":"^6.0.0","escape-goat":"^3.0.0","issue-regex":"^3.1.0","listr-input":"^0.2.1","log-symbols":"^3.0.0","read-pkg-up":"^7.0.0","terminal-link":"^2.0.0","any-observable":"^0.5.0","async-exit-hook":"^2.0.1","hosted-git-info":"^3.0.0","update-notifier":"^4.0.0","symbol-observable":"^1.2.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^2.0.0","is-installed-globally":"^0.3.1","new-github-release-url":"^1.0.0","@samverschueren/stream-to-observable":"^0.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.25.3","ava":"^2.3.0","sinon":"^8.0.1","proxyquire":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/np_6.2.0_1582752238653_0.46577086133563306","host":"s3://npm-registry-packages"}},"6.2.1":{"name":"np","version":"6.2.1","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@6.2.1","maintainers":[{"name":"anonymous","email":"itaisteinherz@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"source/cli.js"},"dist":{"shasum":"b22fcb53708b213056465a86c48197395d84d836","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-6.2.1.tgz","fileCount":19,"integrity":"sha512-CPItYaucRGV+29d+AXoZVg9oMWzCND7xlPVhxpMcbk7KJZCGnDAaTbf/6E/0c5L4zXw1oS2ccrbEDpTSUPGlyQ==","signatures":[{"sig":"MEUCICcjkqWfQ33DfCI2WXfiD0BIX82DRoKnTdT4Sz3iaEh5AiEArWO0uTPYB4igOoRRi8q542LzpuyYGNV3IffVm6cATSw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":55528,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJekypjCRA9TVsSAnZWagAA26AP/ijvygmfJ5oFV7VraI8v\niyngwJjCcp2i0uaksGwMjQi81REJT0NYcgydJnjTTJUAW5ELcASFPl6ByJpQ\n9gtKZIMpieob5uZl0b9IcoSzFLTmXteg9NuDBLnNy4PG0zI5fo/QsCjpVqhz\ntPKqhlbMXF0Dhq7OkiwJYwiycECQxdXtuG9J3aupmLPv0e+QHkxbMU0atqNp\nCE/NYkKeUoyx6vvKpiZHs+Bx9MjsmZCwEn3prRliI64MskaIADEuTYio2opY\nqX/ag/fMp+l2wS4G1Vkm/vv3aKpwrQuQSsD3mMjVQhEaizUYQ4c8NalqyB6u\nbdO67EHAPsxbdrGtkjFkI0ayTRwMGlRSKXenVFbwUZPfpbqJvpFhG/ejjZqH\nVUVIH13UlG7JtqgswnqkI1FVmVNXkK1Qsug3M9mtw4HbhODSEUNTeGocqJC0\nHgR3U3gjDel4sT6q4aui3dOyWgYW2PiKxXJl44H42d1mn+FCPKPTmswQbUT+\nDQi+kqrcZV+e779ZnjTQXHTcE+/cnjoRXWh7Xgddh+s38xfFnoAErPfv0Ddh\np5rTFgk1kUWG+/fL5n1c0U1KaBFv2LoYEfqoTsM0T1ZgcfuNFowRdWtaYqpT\noJXbz8Eqt8Sbec5iuS0xNZHUuon2V/N48wfz3ypljhPn4OtdH2ywVYgmpiLd\n2bz+\r\n=ibFg\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"git":">=2.11.0","npm":">=6.8.0","node":">=10","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"5415f7728359d3c9a65480d54bc22cc0b7762f2f","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.13.4","description":"A better `npm publish`","directories":{},"_nodeVersion":"10.19.0","dependencies":{"ow":"^0.15.0","del":"^4.1.0","meow":"^6.0.0","open":"^7.0.0","rxjs":"^6.5.4","chalk":"^3.0.0","execa":"^4.0.0","listr":"^0.14.3","split":"^1.0.0","semver":"^7.1.1","onetime":"^5.1.0","pkg-dir":"^4.1.0","has-yarn":"^2.1.0","inquirer":"^7.0.0","npm-name":"^5.4.0","is-scoped":"^2.1.0","p-memoize":"^3.1.0","p-timeout":"^3.1.0","cosmiconfig":"^6.0.0","escape-goat":"^3.0.0","issue-regex":"^3.1.0","listr-input":"^0.2.1","log-symbols":"^3.0.0","read-pkg-up":"^7.0.0","terminal-link":"^2.0.0","any-observable":"^0.5.0","async-exit-hook":"^2.0.1","hosted-git-info":"^3.0.0","update-notifier":"^4.0.0","symbol-observable":"^1.2.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^2.0.0","is-installed-globally":"^0.3.1","new-github-release-url":"^1.0.0","@samverschueren/stream-to-observable":"^0.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.25.3","ava":"^2.3.0","sinon":"^8.0.1","proxyquire":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/np_6.2.1_1586702946890_0.681423570558741","host":"s3://npm-registry-packages"}},"6.2.2":{"name":"np","version":"6.2.2","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@6.2.2","maintainers":[{"name":"anonymous","email":"itaisteinherz@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"source/cli.js"},"dist":{"shasum":"a63b19d00f444361d4c0103cc4c89263c3538fc5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-6.2.2.tgz","fileCount":19,"integrity":"sha512-C+5nIA9wnXlSK63TcoI5ajszCvjLVdXM9zC/4i80ewdxvGGeSiDlzo8bNbZ2LYBLNoezT487bE5J3qIzthIhGQ==","signatures":[{"sig":"MEYCIQCgtfo+/s6JgrJVvO9A7278CKRo82ci5zw0nUx1H3RAngIhAP9SnodbtIHOeJL9tPdXYfRlAuWODRtLb+mbo3cIPlzu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":55581,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeoTLBCRA9TVsSAnZWagAAcYgQAJOvr6zSCRIEiOagNQUL\n3CqleVP88jRMmtRzMSAAqlj9rdrZCwsjxg26xV57/7ltP7Q0FNphRkLf5H8N\nWDcyW/9YGe7mfqls6He1ggW7W8g+zUaBBxoioqA0jsyTACDkBB4rOYS5aK1+\n+3fZOdagiqGwKUpfVnCwweV5hlfBFuriHr0peuIUvDncAZO3QoSlqR1Dk/+k\nNUdPrEvqHL3n+hHOE7cLjPSxnFhqil0BtQzHR4PsJjVChHy4WxfE3oT0jsA/\nIX/tMWCG/hlU33BYPE3jYJeVONrFU5r36f6iIMVho/H7Vm6wz/YLFuCO2FUN\n+IqmcJeTcDlZvXV4n2vNyQZvn4N1icJgsf0K/nsE65JqGQk1PRC2vmTvEJUU\n8QMvSRJrAD5e9pTSvyjfAGx9aASc9gLKxLcV3RYdOb9XBbJH7EaMXrkFQBqH\nVkDhPmqh44+VpqQBenImvCQOw5a9MOiTb3uccEUnZvDpgJZhNRghrOw+1dHM\ns6IsPnm/0YZwgrPJImUWwtgeuF3Q3z63kRhpqMxyn6gh7Cz8DQu80ena/Mi9\niDnJvn7oOv2Hc4FAhudNyha3Y11ngciqQMRPhPH/Y6bPB68rV7NQBtgKN/av\n+bIzhed3G6qWCVUY3KoFj3dB+uxLYLWwH7PmSJXIkb7atIcLZ/EDqmQThoGo\nx+J+\r\n=jVft\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"git":">=2.11.0","npm":">=6.8.0","node":">=10","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"703fd1e9eb884c1330c4ea760708bc38ce602dcc","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.14.4","description":"A better `npm publish`","directories":{},"_nodeVersion":"10.20.1","dependencies":{"ow":"^0.15.0","del":"^4.1.0","meow":"^6.0.0","open":"^7.0.0","rxjs":"^6.5.4","chalk":"^3.0.0","execa":"^4.0.0","listr":"^0.14.3","split":"^1.0.0","semver":"^7.1.1","onetime":"^5.1.0","pkg-dir":"^4.1.0","has-yarn":"^2.1.0","inquirer":"^7.0.0","npm-name":"^5.4.0","is-scoped":"^2.1.0","p-memoize":"^3.1.0","p-timeout":"^3.1.0","cosmiconfig":"^6.0.0","escape-goat":"^3.0.0","issue-regex":"^3.1.0","listr-input":"^0.2.1","log-symbols":"^3.0.0","read-pkg-up":"^7.0.0","terminal-link":"^2.0.0","any-observable":"^0.5.0","async-exit-hook":"^2.0.1","hosted-git-info":"^3.0.0","update-notifier":"^4.0.0","symbol-observable":"^1.2.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^2.0.0","is-installed-globally":"^0.3.1","new-github-release-url":"^1.0.0","@samverschueren/stream-to-observable":"^0.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.25.3","ava":"^2.3.0","sinon":"^8.0.1","proxyquire":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/np_6.2.2_1587622593404_0.32059915508607784","host":"s3://npm-registry-packages"}},"6.2.3":{"name":"np","version":"6.2.3","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@6.2.3","maintainers":[{"name":"anonymous","email":"itaisteinherz@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"source/cli.js"},"dist":{"shasum":"6161314e94f5ca38ae939d68f2c14fe95f43aa68","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-6.2.3.tgz","fileCount":19,"integrity":"sha512-EuRlncnTPL6e/p1lqa1lbrTPPddT3KWpTvztTmOCrB2/ZvHp73xqljoUh7xSm+NTipbrcSacTDSlDZt8N6MeWg==","signatures":[{"sig":"MEUCIQCGhFMn5IXRxbq56KBCkddBhOr6fC3LfkePgUsjGZkR2wIgMrbzdPsLryOFwgDV7CzEwyj9E9SZIR7e93cUTEeufdw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":55697,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJepwZ/CRA9TVsSAnZWagAAQOAQAJsRyBrUj+gKklhrON4Z\nyN6zN5XFnjxEpMNVMbiO/eQdHwqNRyvQu4biF0Ov/ZAVBX5PQkyUi8D4YUIr\nyJsSXga+X3FtB+oFCu5PsP0A+DuNQCOqIlqK2Q1IOS4wLqDKlDQ5IfJ63rlT\n+Tw1b/S/nNBlk5nwgduM9cvkvXI76OZmo7ZSLCNgmud/4fbX6MBTHqqFWJiZ\nDouGB/3ovEqqbbMI9deeGyFSOYPxdzAv8ARSJz5cKtdEtsq6XdrjttWY1Q44\nz87Kqnn2hTZC14itSFSDSQK6JqsdsmeZWbbzgCnhVoWUEB0fkNnrhimmx/7Q\nZeF9Xh8X5LgoFQRZtJp8ruKjGdnZytzvpuvx/i1FswGNaiV7ZMmqtocoXfVr\n8oH2PjxPwBFWnqLJucJKILxy4hAb7J1Tam9GMdUV6aZNFVAJ8rd/x/YeLLvU\niRWp6+qC4b8juC7yD0D7A2QEiPZXw5KrEYQQaX/aVr2RuV+JpVPo5Xhzmqpa\nxHP414x9IijxmsZr4l89Oi82KUQ8mAHqdjiOaL0O3NncSZNRBRxtcNxWyqiL\n2KKSoY3UDdGncxPNYb9NQvAIFusbTr0H6807hB5NWsduB/zB3jK8ZVPAKCYv\nMhOD8LSHz0Un22zLuTP3QnWyMYQAMJOiOs/2d1Dl4/Ji/pYRhQ6XUk2gEU+k\nqjFE\r\n=QJ5p\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"git":">=2.11.0","npm":">=6.8.0","node":">=10","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"f72c30e65fb40822ee1b1191c227816b3334a374","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.14.4","description":"A better `npm publish`","directories":{},"_nodeVersion":"10.20.1","dependencies":{"ow":"^0.15.0","del":"^4.1.0","meow":"^6.0.0","open":"^7.0.0","rxjs":"^6.5.4","chalk":"^3.0.0","execa":"^4.0.0","listr":"^0.14.3","split":"^1.0.0","semver":"^7.1.1","onetime":"^5.1.0","pkg-dir":"^4.1.0","has-yarn":"^2.1.0","inquirer":"^7.0.0","npm-name":"^5.4.0","is-scoped":"^2.1.0","p-memoize":"^3.1.0","p-timeout":"^3.1.0","cosmiconfig":"^6.0.0","escape-goat":"^3.0.0","issue-regex":"^3.1.0","listr-input":"^0.2.1","log-symbols":"^3.0.0","read-pkg-up":"^7.0.0","terminal-link":"^2.0.0","any-observable":"^0.5.0","async-exit-hook":"^2.0.1","hosted-git-info":"^3.0.0","update-notifier":"^4.0.0","symbol-observable":"^1.2.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^2.0.0","is-installed-globally":"^0.3.1","new-github-release-url":"^1.0.0","@samverschueren/stream-to-observable":"^0.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.25.3","ava":"^2.3.0","sinon":"^8.0.1","proxyquire":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/np_6.2.3_1588004479157_0.4430303668440716","host":"s3://npm-registry-packages"}},"6.2.4":{"name":"np","version":"6.2.4","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@6.2.4","maintainers":[{"name":"anonymous","email":"itaisteinherz@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"source/cli.js"},"dist":{"shasum":"1cab1188b9764ae7794ec740a6881c52910337d9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-6.2.4.tgz","fileCount":19,"integrity":"sha512-3ChpSEnrQQGSH5kU8qei/vfmQRI8mggPjDvrIvGUBkAjCO0u3b3xTuraefJADZps0dGsblzcSXc5ZrAWcQAbaQ==","signatures":[{"sig":"MEQCIDJq0jbuNXzae0huL07Hs9Mq4v9Z0SRMYDA8ZrTGqwLTAiBS+fMoM3UGIj3pjOV2wChamiXsadYJ9PDv403ZoWJqtA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":55701,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe3ISfCRA9TVsSAnZWagAACwsP/3BmZx+0avWa165liJ7t\nZ1nugJr87Ssej5bOzra3G5SzEZPFj/DK8TN8EPOwwjI7EhkPJvjgIySEbaeV\nID8rM7NeX0sTv5VwMprvhgxt6MkH+RnsVPfJwEFoKIi7+FltdA71311MIeRT\nc36yOO7aj9ETENIyATKRrwlcaKtTJ/GpyHKmdx27bwn8V0MrsP77unI7UIY3\nQOZ5e+2DETbYvc1u9pz7MvR5tgQVAtF7r892IlhULBpKsHe7EgQYdZdRBCby\nMt8Yrf7kRZ4CjhPqZlIhvBjBrbqRxRqhNo1r5CbKjY6Rs4dogmD2zDAV0l8m\nbhMjpWP/zaDmTtYCwsW5Lf5c98TbdeIPzdWl3yKgNhH/7P3dhEOuNYHTcix5\n3HqoeaGSB6yOA8u0W+s2FYxMC3MYHb+hEGzlzyWd/txbwvixZo4RIfW7SwfA\noYJxvo5eD7hIktoD4WEaJnAYBxmxG21GqEOWpJIxk6NQjKwFfz5omNwSc5s+\nZxGltJmyMsL4aS1gDoHQpHDW8tX6Qd+IPsUL8RbGvvmMtxD0gTnxcjSx+M0s\n2ZRc6UqkVYYnxU/SkWZc12ZS+sN9y92+09qhyCQbUk208KvW/tKif3ZyTXtx\n5Hjn8g+ucLiwNH/g4uvFXo/sDI1Z29MArLya8IDVNokYPaKf71xx4pfFc7/n\n+Qna\r\n=PVHP\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"git":">=2.11.0","npm":">=6.8.0","node":">=10","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"e137cdddb8f5e738215695235c2e2e134a34ee7d","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.14.5","description":"A better `npm publish`","directories":{},"_nodeVersion":"14.4.0","dependencies":{"ow":"^0.15.0","del":"^4.1.0","meow":"^6.0.0","open":"^7.0.0","rxjs":"^6.5.4","chalk":"^3.0.0","execa":"^4.0.0","listr":"^0.14.3","split":"^1.0.0","semver":"^7.1.1","onetime":"^5.1.0","pkg-dir":"^4.1.0","has-yarn":"^2.1.0","inquirer":"^7.0.0","npm-name":"^5.4.0","is-scoped":"^2.1.0","p-memoize":"^3.1.0","p-timeout":"^3.1.0","cosmiconfig":"^6.0.0","escape-goat":"^3.0.0","issue-regex":"^3.1.0","listr-input":"^0.2.1","log-symbols":"^3.0.0","read-pkg-up":"^7.0.0","terminal-link":"^2.0.0","any-observable":"^0.5.0","async-exit-hook":"^2.0.1","hosted-git-info":"^3.0.0","update-notifier":"^4.0.0","symbol-observable":"^1.2.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^2.0.0","is-installed-globally":"^0.3.1","new-github-release-url":"^1.0.0","@samverschueren/stream-to-observable":"^0.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.25.3","ava":"^2.3.0","sinon":"^8.0.1","proxyquire":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/np_6.2.4_1591510174726_0.12913003676018242","host":"s3://npm-registry-packages"}},"6.2.5":{"name":"np","version":"6.2.5","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@6.2.5","maintainers":[{"name":"anonymous","email":"itaisteinherz@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"source/cli.js"},"dist":{"shasum":"63eb54905415f04114bfd883cb1f99ee7012cfab","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-6.2.5.tgz","fileCount":19,"integrity":"sha512-oDGzbDFPae7O2fxitPAIHFFu7nfyhp//NZ4fs41IYq/k24IzRWSOFhnVjEBKjZSI3MsaH7gcW3dNy868S8KgyQ==","signatures":[{"sig":"MEUCIQChsiQOLH6TavM5B6mc5DP453l7+KihUyv4eJV9GDV8YwIgRUZA++j6ZjwWHDgxTTFrZgBZOgL7Psps8BMoECO6iIk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":55701,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe96BZCRA9TVsSAnZWagAAm3oP/0iZCJ15w/CyiLjIlY/G\nu0uNGN839Mn+FQPI2MyQP096IW+mD5NjgAP8LmK/FoookNjTfMaIiCq3MaMH\no5GuepUaTFkOVDNcPXMuYj+13sc3fDccuOYJNFLyTVP1h4KQuKNt01l7cpvf\nMoOqAoKQ0Mm0x/Y47E7zs0LVDOQKb41Xe+/fSIFvHGaouwIDisJvXHjL2Krc\nu19VJxRTqImpLgwuakX2rzz1z3zD/L0JmB6KnYBb6wEw4VW5ClzayZ7e3WJx\n8vfqbOXUb6aHwsIqXi0EQvWYNmLLcgdHM3WI59JwSjLKmi8v016MOtgniVEt\nLbxiMWfi7mBgAxEH4W6USlLqZSjtJhMXKniyeXqKUqr73EIlpi2TrlGkYADi\nxCmp0LfkBa0HEhLkh5xGmqBKFj3uAOhaaToOdsyI1ubmYCQ8Qzmlt7Vq3XcU\nJWoz/RPaSocgP3jGqzaD7j626fuCKeK2ufqZ3pQCiSn77hbekohz9t6PmHjK\n1+dPUELz0NzcpXWHD/97Ck19Hk7N2SaSPIYXu7CRLExH0tXXotqCKT6ohotL\nOKzdZYDugPL9B6CMgeSGedzg4JSxLi68azl0L0m6nxQSTEs656hLld63+Jct\nRmi4MS36GXkNcW0ItniHVJytKR/+J4EW8y9cMhiMHCSNQL+EiWq/zwp3q0he\n7hNy\r\n=UmBF\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"git":">=2.11.0","npm":">=6.8.0","node":">=10","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"1f701cdea14febb9f28a9791d395db85e51b6222","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.14.5","description":"A better `npm publish`","directories":{},"_nodeVersion":"14.4.0","dependencies":{"ow":"^0.15.0","del":"^4.1.0","meow":"^6.0.0","open":"^7.0.0","rxjs":"^6.5.4","chalk":"^3.0.0","execa":"^4.0.0","listr":"^0.14.3","split":"^1.0.0","semver":"^7.1.1","onetime":"^5.1.0","pkg-dir":"^4.1.0","has-yarn":"^2.1.0","inquirer":"^7.0.0","npm-name":"^6.0.0","is-scoped":"^2.1.0","p-memoize":"^3.1.0","p-timeout":"^3.1.0","cosmiconfig":"^6.0.0","escape-goat":"^3.0.0","issue-regex":"^3.1.0","listr-input":"^0.2.1","log-symbols":"^3.0.0","read-pkg-up":"^7.0.0","terminal-link":"^2.0.0","any-observable":"^0.5.0","async-exit-hook":"^2.0.1","hosted-git-info":"^3.0.0","update-notifier":"^4.0.0","symbol-observable":"^1.2.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^2.0.0","is-installed-globally":"^0.3.1","new-github-release-url":"^1.0.0","@samverschueren/stream-to-observable":"^0.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.25.3","ava":"^2.3.0","sinon":"^8.0.1","proxyquire":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/np_6.2.5_1593286745292_0.5914288165878707","host":"s3://npm-registry-packages"}},"6.3.0":{"name":"np","version":"6.3.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@6.3.0","maintainers":[{"name":"anonymous","email":"itaisteinherz@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"bin":{"np":"source/cli.js"},"dist":{"shasum":"061d1f3c2b7e2307b14c49547879b358b31acc07","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-6.3.0.tgz","fileCount":19,"integrity":"sha512-UwXhgmuzgkJHqflf2sCVdeCn2P9auKlcjQ/L37o9ORQe0O+mbrNhU04PBoLcdW+sMu3gCSx/uGBx79iL1sp9qg==","signatures":[{"sig":"MEUCIBJFSBzUdJQT1T/lPbE2YGwnQ/r+H3nO29NxDiIATB5aAiEAz9tdXH6QzPLqllsm2RGTilA95IHsjuS10K81fB6pQb4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56268,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfAf9sCRA9TVsSAnZWagAAkN8P/3m9LELJnaAICjHQWW6N\nODA/xcAIcJHRPRhiheRB49bOlAlNCaTTsTdO7tCM2J3N4+cDMQ0yfCefumVy\nVrAB48YQxsaXynwbIm6Mwq7aXYSoHFKt/LGeBNWR7S6qsSNZ3A64rEdqX1+P\nGFqW/3cJtKQDdDz9YgVv3EazsTqQkJqEqkc8DVWlMlwgQ2z3N+pDWFyq8MIB\nlOfGR1M8qGSXi2tB1XBqt1JOUu5YGoD2qX/GPHU3O1fF4Ux4zgOX2UYXzN2B\nAZ/sL6Dl1Xp8BioJje8kTfZdi77Cwv88k8n8HeWsAeZ4D8mHQ4kShyiubSU1\ny7/vsR9TuRicxHyF92yQJDpbOyuUzdUrWizNT3axrGLif0c/+4iEJ8ih8L7z\nnsx/0R8MDnepWEw/99BzhfwBkmdYmBeUeCguYWskHCnH0M/Lhr7aerO2UzRG\ne1ZlAhJV2D7OU6k3ueDodIccV0AUmSKLYdHkFweCofOzFxVZJ+xRA5nXied4\n40Y62ZZyXbmkQ01EwCU/vI1HmvbkrFCk8zLZKeSlBBKnSkJ/dV4XVvhRdL+z\nXyIdfGwd58qU7rLI/izDyxH/t/tm8bvU2gFIIvcEDxDQ2Yt/xY3nx7hYXgcC\nNnddC+ztUhjZViM5rhtbJkx05a6JYe7Z7Up6jw2kKJFVKq007Ak16yzL+Tm6\nbCdl\r\n=Dag+\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"git":">=2.11.0","npm":">=6.8.0","node":">=10","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"5b0940c7306beae99020a5e8f062ca75bc595268","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.14.5","description":"A better `npm publish`","directories":{},"_nodeVersion":"14.5.0","dependencies":{"ow":"^0.15.0","del":"^4.1.0","meow":"^6.0.0","open":"^7.0.0","rxjs":"^6.5.4","chalk":"^3.0.0","execa":"^4.0.0","listr":"^0.14.3","split":"^1.0.0","semver":"^7.1.1","onetime":"^5.1.0","pkg-dir":"^4.1.0","has-yarn":"^2.1.0","inquirer":"^7.0.0","npm-name":"^6.0.0","is-scoped":"^2.1.0","p-memoize":"^3.1.0","p-timeout":"^3.1.0","cosmiconfig":"^6.0.0","escape-goat":"^3.0.0","issue-regex":"^3.1.0","listr-input":"^0.2.1","log-symbols":"^3.0.0","read-pkg-up":"^7.0.0","terminal-link":"^2.0.0","any-observable":"^0.5.0","async-exit-hook":"^2.0.1","hosted-git-info":"^3.0.0","update-notifier":"^4.0.0","symbol-observable":"^1.2.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^2.0.0","is-installed-globally":"^0.3.1","new-github-release-url":"^1.0.0","@samverschueren/stream-to-observable":"^0.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.25.3","ava":"^2.3.0","sinon":"^8.0.1","proxyquire":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/np_6.3.0_1593966443694_0.48422262174140385","host":"s3://npm-registry-packages"}},"6.3.1":{"name":"np","version":"6.3.1","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@6.3.1","maintainers":[{"name":"anonymous","email":"itaisteinherz@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"ava":{"files":["!test/fixtures"]},"bin":{"np":"source/cli.js"},"dist":{"shasum":"e859b6d2a0ccf016390655627cb02f8e67f0170b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-6.3.1.tgz","fileCount":19,"integrity":"sha512-vLCqfM/r/GeJLhdiodeOPzY3ZKuaLb+qLA5M9XXSRuyu513punk2DWtswMha1qCa56CvTQPmxgwEyP93XQlgQg==","signatures":[{"sig":"MEUCIDOok409U1u6DuLYnpaW5q6pjdiUN0AwgDa0lux1R+3MAiEAmZKYltUJMcS1RtM1bqHwV/ymQgJmu0DMGAhk4tKeR14=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56382,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfBNU0CRA9TVsSAnZWagAAZxYP/jTmxIw/us7Y9mJF1kQA\nbQLpbzqMeLYugJwEZRlW2GbeD63A+1KEdkdbQqBTItpEZ+7zuetbJcnb4NiS\n5l6MjXqL4zacZ+oDE/oYD8tQS9uVyU0ORUKs0OHFXeWDUg7x9suXXU7mG2SR\nilK9dsjE+3LY01dyuS1b19DUSX45YP63NT8qBFLaQY+rpxQgfNTZa12uVFVt\nx1AlZuZH29KJr5jiJZPKqqfaV+24YVSXVgN4xCZUHinXzmlOcXD0fzeoDYnK\nA/XtbvDAGV//+IGFX0zYv5yLrdhHqoYGxLYhX525SCtE2Y5ApGsBOh4gkj6t\nmGYfs3HiXEPdIBSKt7HzhF5nV83puL8+48UqgCPnr+ZXnLRoDkIZox10Ee8G\nf4+CJ/tnF1fz9gqLgRG3jBd79VtVxDLWIK8NoIosMSpD3iGoxTz5J+9wMxxR\nsN7UfJ6NqbHrv2H4ozEXZYUAADaysiyNv+ZgTRcUnB9S/uG3IN5tJiGcsWEG\nDjwNn8egfaNCOtiWPQRO8EgUXLD4D9/UUfdBKY13KUkjzMbtCI1XJ3nTw9og\n2IUdv7PztUlG7ZxWI9UmdLABYctsASV1RkE2erJ+hSs7puCt8NZ9X0/lBl0E\njLBAuJSK1bzeGd8zyC1rH8/I25C3Q9OPmsRRPvPdNNRfy6eW3ucuKL2XbNhq\nW0Gq\r\n=BAk/\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"git":">=2.11.0","npm":">=6.8.0","node":">=10","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"f0fe08518234d7fa47443938917f1dd9c402f7c6","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.14.5","description":"A better `npm publish`","directories":{},"_nodeVersion":"14.5.0","dependencies":{"ow":"^0.15.0","del":"^4.1.0","meow":"^6.0.0","open":"^7.0.0","rxjs":"^6.5.4","chalk":"^3.0.0","execa":"^4.0.0","listr":"^0.14.3","split":"^1.0.0","semver":"^7.1.1","onetime":"^5.1.0","pkg-dir":"^4.1.0","has-yarn":"^2.1.0","inquirer":"^7.0.0","npm-name":"^6.0.0","is-scoped":"^2.1.0","p-memoize":"^3.1.0","p-timeout":"^3.1.0","cosmiconfig":"^6.0.0","escape-goat":"^3.0.0","issue-regex":"^3.1.0","listr-input":"^0.2.1","log-symbols":"^3.0.0","read-pkg-up":"^7.0.0","terminal-link":"^2.0.0","any-observable":"^0.5.0","async-exit-hook":"^2.0.1","hosted-git-info":"^3.0.0","update-notifier":"^4.0.0","symbol-observable":"^1.2.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^2.0.0","is-installed-globally":"^0.3.1","new-github-release-url":"^1.0.0","@samverschueren/stream-to-observable":"^0.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.25.3","ava":"^2.3.0","sinon":"^8.0.1","mockery":"^2.1.0","proxyquire":"^2.1.0","execa_test_double":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/np_6.3.1_1594152243758_0.4439682060840633","host":"s3://npm-registry-packages"}},"6.3.2":{"name":"np","version":"6.3.2","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@6.3.2","maintainers":[{"name":"anonymous","email":"itaisteinherz@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"ava":{"files":["!test/fixtures"]},"bin":{"np":"source/cli.js"},"dist":{"shasum":"1d7793274ee4cd466af376331a1f3154bf02f6f1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-6.3.2.tgz","fileCount":19,"integrity":"sha512-8+w+cHLGHM01BfTvIqw2Q61geLPA7HEOeN54jJPQrH/cXHaUWdugKSNV6JiXhpbFKg+fj3JWNKq0d7a/gU0WeQ==","signatures":[{"sig":"MEUCIQCuAIa+PwMNPPYT09xuUfsj0pDL3F0lUbWSBC4mXuOOaQIgANULPblDVxcjEWxBOHHdxldZ+kN8jD/NoJhEBH2Stus=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56416,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfCZu0CRA9TVsSAnZWagAAoTMP/0Bxpt6NzVSWhvJlQ9+K\nK6mJWq8zGRPbhrfUE3NnQCAqvmZVVUACYgDdFrOj937xmZQs1T7qccigYs5c\nMFblgGZrsXBV7Egd2Okb13i2Y/Ib9VtBBO84xzbHn4kSPa0C8lPI+7bqFHXq\ngGxzg0xmAGkKSiOilkwJmgZIErIMQ3cNeUUZVRVKWa7OgqGlQpWa4OzXmxWG\n/R2lzwVu/zqhRoDMoFhFfo05ZTIB6cOVEf+lWAWZPGfP70w7bLw+QeNrzDUF\nuXaccDiT+w3Z/G9dCuzjH1TqdktDbqlw/FmUNQbVQoiLpJ6ChS5Bsb0tybPZ\nedcVFiySvtL0ZeeVUB8sZcQMBNoG78YpfqJzSbVrHMN+oKnhCSBAjqDnI9DJ\nCjgm8CShtCqYyp4cP4Fgk6Siu1Xi3DpEu5QJ1715TATteiVSgiase0DmGs9A\niUsVyspD4aoy4ahtPOIG7+qJNUa5DS/CbkvHKsn34Oq2iS//FQgbRec2WCg3\nUQd3juHEQER+yfiS1mldV4ZxnNkq/s/Y6mk7z0SJuSRoKl+HV4wabPyCRLpv\nmCBhSysBMo4YQ2xj91ggTOp7AIVk9idYebDyzcVJd2Sq5gD0AJyxjHfSMYWx\nBvENObm9tCnkXRLXu+P3qCgr8ACMCEWIhV1wfq84iJkdQZcRq/cygqIwB6Fl\nvgw1\r\n=bJlf\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"git":">=2.11.0","npm":">=6.8.0","node":">=10","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"6be4223543ae8a63e1b0e8a5b6eaa7ec4b60d0fe","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.14.5","description":"A better `npm publish`","directories":{},"_nodeVersion":"14.5.0","dependencies":{"ow":"^0.15.0","del":"^4.1.0","meow":"^6.0.0","open":"^7.0.0","rxjs":"^6.5.4","chalk":"^3.0.0","execa":"^4.0.0","listr":"^0.14.3","split":"^1.0.0","semver":"^7.1.1","onetime":"^5.1.0","pkg-dir":"^4.1.0","has-yarn":"^2.1.0","inquirer":"^7.0.0","npm-name":"^6.0.0","is-scoped":"^2.1.0","p-memoize":"^3.1.0","p-timeout":"^3.1.0","cosmiconfig":"^6.0.0","escape-goat":"^3.0.0","issue-regex":"^3.1.0","listr-input":"^0.2.1","log-symbols":"^3.0.0","read-pkg-up":"^7.0.0","terminal-link":"^2.0.0","any-observable":"^0.5.0","async-exit-hook":"^2.0.1","hosted-git-info":"^3.0.0","update-notifier":"^4.0.0","symbol-observable":"^1.2.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^2.0.0","is-installed-globally":"^0.3.1","new-github-release-url":"^1.0.0","@samverschueren/stream-to-observable":"^0.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.25.3","ava":"^2.3.0","sinon":"^8.0.1","mockery":"^2.1.0","proxyquire":"^2.1.0","execa_test_double":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/np_6.3.2_1594465204327_0.7321735636533391","host":"s3://npm-registry-packages"}},"6.4.0":{"name":"np","version":"6.4.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@6.4.0","maintainers":[{"name":"anonymous","email":"itaisteinherz@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"ava":{"files":["!test/fixtures"]},"bin":{"np":"source/cli.js"},"dist":{"shasum":"f0923605d0decf16d314c7ae0019c9de86b828d8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-6.4.0.tgz","fileCount":19,"integrity":"sha512-SfE5UKF77E4Ydjt4RHBpD0Lbrxnud9pVZijD51gb0pPV2CtWKTzbNYugrqxkPNWx0j2ptVacN9255/wBhCWTHg==","signatures":[{"sig":"MEUCIGSKy3gqrwbE4ny8SZCJ1qYKamFQ5BTGyoL7LzFrSYZ/AiEA9alEvx67YLmzo1+uBKHceAZi/I7+U+HG9nmSgiKX3Xw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58507,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfMFvhCRA9TVsSAnZWagAAUv4QAKB9ZuU0NeBzZSZ1jP7o\nfEkZrtZcnS5aHcYRg8PAksefTBeBTJXYTpTEEYVGnGxpv4R8BnuJR1h4ubtf\nUd4AGfzULoTxhuFWO7VWSbiGXEFq3rRTWsz06wX2q33QOQhO0O2SoA2Y7dy6\nQFdFD2qCTrbId0bOAKoWwDB9cqrcz396Qt0oG8gZ4fue7l25ZxeBnaDHXJsf\n3zxi6+tLPNKLZJjKxa11OdtwHyYTehyX8hBbpNSUVHhyy76PIVTCr6voSe0e\nJUMYR1oKqxWslwje3lWri2Kb0ftCdBe2cCda+eREH5ZmSrTPdZPdRys0yW7y\nG+CUcYeVpFedkdZXJQKKpHw1zqq9NXW5uIjnqX/D+52yCIElTzuSNOixZoxK\n1SvO2Yf78HRXoN8ixW7YqxcJmK/A0V/7TEzGaEHCBd38HDqPwH1oT2XZvtbj\nUijDiv81jQ8nnHTe5kpR3juaujgfQf7CSpOrb1emPlfSX6PkTgXbdnsUKjH0\nNDj0wnGo50DZzLb+mZXPumj07pa/fjYn3d+hlrU10yw8ETor/CMRVrTIKcRa\nDf/Fkj6592N6HyL+Za2nGBdFBGewM4xxyrX9x1tNf3yT/1+VkybpBR7r3q8Q\nEAXvXAEIzdFTI2S4rMs/fC22qihTt+Kl6wt3nKkVkwMyiTcV1HFC5UQRoYPz\nxe9E\r\n=jtJE\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"git":">=2.11.0","npm":">=6.8.0","node":">=10","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"7e64cc62278c1ab00284b8eeed813fb6092f1d10","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.14.7","description":"A better `npm publish`","directories":{},"_nodeVersion":"14.5.0","dependencies":{"ow":"^0.15.0","del":"^4.1.0","meow":"^6.0.0","open":"^7.0.0","rxjs":"^6.5.4","chalk":"^3.0.0","execa":"^4.0.0","listr":"^0.14.3","split":"^1.0.0","semver":"^7.1.1","onetime":"^5.1.0","pkg-dir":"^4.1.0","has-yarn":"^2.1.0","inquirer":"^7.0.0","npm-name":"^6.0.0","is-scoped":"^2.1.0","p-memoize":"^3.1.0","p-timeout":"^3.1.0","cosmiconfig":"^6.0.0","escape-goat":"^3.0.0","issue-regex":"^3.1.0","listr-input":"^0.2.1","log-symbols":"^3.0.0","read-pkg-up":"^7.0.0","terminal-link":"^2.0.0","any-observable":"^0.5.0","async-exit-hook":"^2.0.1","hosted-git-info":"^3.0.0","update-notifier":"^4.0.0","symbol-observable":"^1.2.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^2.0.0","is-installed-globally":"^0.3.1","new-github-release-url":"^1.0.0","@samverschueren/stream-to-observable":"^0.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.25.3","ava":"^2.3.0","sinon":"^8.0.1","mockery":"^2.1.0","proxyquire":"^2.1.0","execa_test_double":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/np_6.4.0_1597004768519_0.944746298153929","host":"s3://npm-registry-packages"}},"6.5.0":{"name":"np","version":"6.5.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@6.5.0","maintainers":[{"name":"anonymous","email":"itaisteinherz@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"ava":{"files":["!test/fixtures"]},"bin":{"np":"source/cli.js"},"dist":{"shasum":"1092e001a7dd22412bb459d9bcb86a43806660f2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-6.5.0.tgz","fileCount":19,"integrity":"sha512-Xm1kUUlEqOZsu0qBA3A9wB44EBDRXubrLvfdCodG1TOllW0aymVI0qeFWKGN+kH74/XjO1B5how07fm3g+c72w==","signatures":[{"sig":"MEYCIQCW6/c2hOC5FH+y8cLPD0g16aP2jYt23WAvJDGqIxyxwwIhAOCvbivJoqv06Wb3CbPC4wMX6Zdpidm/B2jgeX0zX4xj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59153,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfSjQICRA9TVsSAnZWagAA5LsP/iS0cAAApcjH3I4meumy\nBaMrcMVq4BtnF1OxZEQcfe+KLvvhCrc7gQgdjSSN59NCkB3W5N3CqeKsopib\nZ6doXgpG0ZPHlyJ0EeGGBYVAZdozWVA113AmvouRnxTMc6MtO+d53ZjQmeon\ntc7ls/IInIVIq860OxHkvPqfHLcCVKGs/dRjaOGm9mMO5f30no1wOb+hIJzm\nrX9x37IX/4uo7NAShAj7u7sSUM7DZRQbzzPNAF8i1Cc4pNDY0aGuB+lGGdi+\n8TZ1tjF/KdH1eEp2+dc0WQMjFKFUV4YI212stU2cqu1rIx8Buxh6ubyr+7m7\nJsEbvhHf6lEv0yVs1un78TUod57qx+gy/wEEmHDVqqI/ThmLDfGqiCBUp86w\nlAqZ6m01jbwVoR8d/IHNVEBxSk0CYa1yTAYBypYzUWLoM1cxrlfhIzaGyuSX\nHh12olRaquqSmRKLj4ftKsqgriO2rLobQQlsUi0TexVlmSald/My4s0rYVlY\nR/APhAWdBiYoBA2ANfQpClY8djOwJDIy56ceuOMtB8IWIwxkxuSF51kn3cI/\n7hFzb5yn0aqHVU/XiqK83V9D5NWFr7PANVWcYZmmFZhl6LU/s3w+FRFzaMVi\nUTiuo/d3eY4dNoB1qiuhK9OCWMbtQTQcupEZa6avVq0oJMAdXebRd0uq6NGU\nub+I\r\n=Yw6F\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"git":">=2.11.0","npm":">=6.8.0","node":">=10","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"556b52c787b20e66a2051c14ce30b388dabba150","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.14.7","description":"A better `npm publish`","directories":{},"_nodeVersion":"10.22.0","dependencies":{"ow":"^0.15.0","del":"^4.1.0","meow":"^6.0.0","open":"^7.0.0","rxjs":"^6.5.4","chalk":"^3.0.0","execa":"^4.0.0","listr":"^0.14.3","split":"^1.0.0","semver":"^7.1.1","onetime":"^5.1.0","pkg-dir":"^4.1.0","has-yarn":"^2.1.0","inquirer":"^7.0.0","npm-name":"^6.0.0","is-scoped":"^2.1.0","p-memoize":"^3.1.0","p-timeout":"^3.1.0","cosmiconfig":"^6.0.0","escape-goat":"^3.0.0","issue-regex":"^3.1.0","listr-input":"^0.2.1","log-symbols":"^3.0.0","read-pkg-up":"^7.0.0","terminal-link":"^2.0.0","any-observable":"^0.5.0","async-exit-hook":"^2.0.1","hosted-git-info":"^3.0.0","update-notifier":"^4.0.0","symbol-observable":"^1.2.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^2.0.0","is-installed-globally":"^0.3.1","new-github-release-url":"^1.0.0","@samverschueren/stream-to-observable":"^0.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.25.3","ava":"^2.3.0","sinon":"^8.0.1","mockery":"^2.1.0","proxyquire":"^2.1.0","execa_test_double":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/np_6.5.0_1598698503515_0.8013696101917012","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"np","version":"7.0.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@7.0.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"itaisteinherz@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"ava":{"files":["!test/fixtures","!integration-test"]},"bin":{"np":"source/cli.js"},"dist":{"shasum":"ecdd4b4439e326a535f23fcfb1c53b7ae95bc3be","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-7.0.0.tgz","fileCount":20,"integrity":"sha512-McoiH/tyg9oWn1LZ74z3rz0QzGremx1ONWUntl28Brr3l9xsrBDPTi+3IyVtVUXsHm7sw6GAfXAHdnOR22PiGw==","signatures":[{"sig":"MEUCICBYxXpkoxPitMo7nwbjeli5Sp774UMnnCxJAj/c+qjyAiEA7fCTHo44l2KPw6IQkqmXBjaD5/sWJYXWvQpl0cTkyso=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64673,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfmuU1CRA9TVsSAnZWagAASFQP/2bi/J0LCeYW/ID/XnEs\nGpdh0Cwcne3twAk4sml4qcBmt2hRgsWMIKbxWq5StqoP+wP6UoqMj2OOYePG\ndJgQ/jPDJJqIVkcCzqGa9sSscmhbCIdUV/ZSqMcqrToKgVP3t0DM2P5pW2As\nBhO2teMlQnGy5xJWyVS5bhWdkTy8mJYH8xiOq0F5TzKY2z/3AQ9ZeTH8pv+i\nvE0hiECobv8KOeT1KFcaMoUJa6TczqAmc3ddcJDsfI8g9rwdC2Vbc6ZeYkcx\nqqOkokIlRRvFhu18TCOzLpXcsdSjbpZNzQJwV8sVNoQ4wDfzAfUA+WTmIHFy\nNTl0uRNhbKJ+hOep8d4RpgaxQdHpHqIG5gdFcMfi1QKTK6mnBw2L9DvRomNK\nGgm4jZ7wZ+K2lQ7Go0RLNG/7YaD8fYda3Q9TPtSrLWSI19pJcB42RMecmzE/\n6z4JVummRAryLBGOkDHnmVT8XJs5oC8E0QOfiRkktDgP1yYCl86WqIfHl9zy\nd/1MLNBKiuX3XEDlLMRcGBieAYPbXbrTQfU5MHIphVzG4KnH25kczpq6FIQ+\nUD+SZ8fmYyIJOQY2yxY8ifeZ6JNCjMj/Vkg7Ja7qNCTxmcuDLDtBGUNoPyZC\n1zkJJFzEseMDc93Ypb338hJmcyBPWCkwEq9u6rWvlYyNziIx0EgAm4eFRH5k\nJHzY\r\n=5fsc\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"git":">=2.11.0","npm":">=6.8.0","node":">=10","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"fee5ab8cf8c7c1afe6e96fa68021cf7611ce52ed","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.14.8","description":"A better `npm publish`","directories":{},"_nodeVersion":"14.11.0","dependencies":{"ow":"^0.18.0","del":"^6.0.0","meow":"^8.0.0","open":"^7.3.0","rxjs":"^6.6.3","chalk":"^4.1.0","execa":"^4.1.0","listr":"^0.14.3","split":"^1.0.1","semver":"^7.3.2","onetime":"^5.1.2","pkg-dir":"^5.0.0","has-yarn":"^2.1.0","inquirer":"^7.3.3","npm-name":"^6.0.1","is-scoped":"^2.1.0","minimatch":"^3.0.4","p-memoize":"^4.0.1","p-timeout":"^3.2.0","cosmiconfig":"^7.0.0","escape-goat":"^3.0.0","ignore-walk":"^3.0.3","issue-regex":"^3.1.0","listr-input":"^0.2.1","log-symbols":"^4.0.0","read-pkg-up":"^7.0.1","import-local":"^3.0.2","terminal-link":"^2.1.1","any-observable":"^0.5.1","async-exit-hook":"^2.0.1","hosted-git-info":"^3.0.7","update-notifier":"^5.0.0","symbol-observable":"^2.0.3","github-url-from-git":"^1.5.0","escape-string-regexp":"^4.0.0","is-installed-globally":"^0.3.2","new-github-release-url":"^1.0.0","@samverschueren/stream-to-observable":"^0.3.1"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.34.1","ava":"^2.3.0","sinon":"^9.2.1","mockery":"^2.1.0","proxyquire":"^2.1.3","execa_test_double":"^4.0.1"},"_npmOperationalInternal":{"tmp":"tmp/np_7.0.0_1603986740757_0.6221565356727135","host":"s3://npm-registry-packages"}},"7.1.0":{"name":"np","version":"7.1.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@7.1.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"itaisteinherz@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"ava":{"files":["!test/fixtures","!integration-test"]},"bin":{"np":"source/cli.js"},"dist":{"shasum":"02c5c29ba462c9a6f4c4269f127264aa688653e6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-7.1.0.tgz","fileCount":20,"integrity":"sha512-l4ewwYnOU7zh2w2Uu5M657AtTRtOMiIfDDKAbllCRV4fHQDmTYgHAfJrzFzAkdezsShFZ/xDPK/yJuM3BfDcfQ==","signatures":[{"sig":"MEUCICqHRImdGLCdUZHa9ndHlW2K7I/79jxE0NHvM8v6p7quAiEA9fOAIswIUe0V/mi8tvFJjbhNgyuIIcO/Va3zFT47/ZQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66953,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf6EaxCRA9TVsSAnZWagAARF4P/R83WVgNFLQoYlUIUDNF\nStSEJsXb4KsyN7PdQYexQIfwzW1D5D5ARyaMbY3m3jIN4IME8oKBfIzUdVl7\n351UDS9bgO+rypoLAqC0hkqbxFqiU3iq109Y9cnmBgrNTJCRhrDSEDy1uoe2\nUDH3J8VWowm0Mq4vMSH6Uy5R7KCk8UD+RgrDhC5c+v81F+hu73g4C1Uxxslz\ndfoEf2FGAEztmuII6SSK7IiZ7CCRvt+t+TyP17NE9mvYIPpyJFooiBaYMTum\nV9LTftj/aV5cCk6sqmuzXiikTigJJYRTBRGM4xbhagCROQ6esjT3GNSl6bZm\n/v44Ovzt2RV4RKcFMuTCANCWSWMbxd4eDA8XazeBlS99W0HR2e5qeRnUk6RT\nKgkF5oU9ptyvCVkp9iVag0W6JDZK22ui2r7hdhFI3lBr0kCcMJ9nXkmhNAVI\nujhhhHq64BC7uqKyIDg/IseKWr5bpGMBIMK7rcBW89+XQkGt9eVHxFW6+Lc+\nh5Tg5HaVdm9H+p2bi3mi1Qioy935x/tKDe4dkeXL+T4EzQhpV3UrGw8qUBEi\nCaeuW1TREtleHfUcxaOfrsKrduK1WZstmkyNylUqxL5oMjLibZsl9gqm+HpN\nHVR/arTQtrDahzx4jamIfi0FooS7/IJJr6yKikT4DbyG0gDCO+qiR/qLAl1+\nzlNE\r\n=qSRM\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"git":">=2.11.0","npm":">=6.8.0","node":">=10","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"8445136688de80ad4e5b8fc53cf87fb8c1ed5bb8","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.14.9","description":"A better `npm publish`","directories":{},"_nodeVersion":"10.22.0","dependencies":{"ow":"^0.21.0","del":"^6.0.0","meow":"^8.1.0","open":"^7.3.0","rxjs":"^6.6.3","chalk":"^4.1.0","execa":"^5.0.0","listr":"^0.14.3","split":"^1.0.1","semver":"^7.3.4","onetime":"^5.1.2","pkg-dir":"^5.0.0","has-yarn":"^2.1.0","inquirer":"^7.3.3","npm-name":"^6.0.1","is-scoped":"^2.1.0","minimatch":"^3.0.4","p-memoize":"^4.0.1","p-timeout":"^4.1.0","cosmiconfig":"^7.0.0","escape-goat":"^3.0.0","ignore-walk":"^3.0.3","issue-regex":"^3.1.0","listr-input":"^0.2.1","log-symbols":"^4.0.0","read-pkg-up":"^7.0.1","import-local":"^3.0.2","terminal-link":"^2.1.1","any-observable":"^0.5.1","is-interactive":"^1.0.0","async-exit-hook":"^2.0.1","hosted-git-info":"^3.0.7","update-notifier":"^5.0.1","symbol-observable":"^3.0.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^4.0.0","is-installed-globally":"^0.3.2","new-github-release-url":"^1.0.0","@samverschueren/stream-to-observable":"^0.3.1"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.36.1","ava":"^2.3.0","sinon":"^9.2.2","mockery":"^2.1.0","proxyquire":"^2.1.3","execa_test_double":"^4.0.1"},"_npmOperationalInternal":{"tmp":"tmp/np_7.1.0_1609057968631_0.7647679038444251","host":"s3://npm-registry-packages"}},"7.2.0":{"name":"np","version":"7.2.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@7.2.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"itaisteinherz@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"ava":{"files":["!test/fixtures","!integration-test"]},"bin":{"np":"source/cli.js"},"dist":{"shasum":"03f6dcc90b810357311f750608c9e86e2b85cdaa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-7.2.0.tgz","fileCount":20,"integrity":"sha512-jfMFJXAJlGkCowMPGzA8Ywbmywk7I9hT96DsOcWjDsjq/zP5h6m3VZDcZ1AWYoCBPg4E/lFrJxROmiQH3OWnzA==","signatures":[{"sig":"MEYCIQDpfkfoY93DhDOzIcsQsSQZj2uoZmVkN3BslROKRtZurQIhANah1H/SO6bPGDFa+J0sa/BvfXUGfEHW0gowGM7Or1vh","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":68109,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf7X5sCRA9TVsSAnZWagAAJRwP/2fuly+sl65e3+cNIhJ2\n7igRpBfqXNuEDvvMuEotAbAzcv39ciwouchARXtPzt3DR6nF/szm/rZ6uBcD\no5jzVpvB6IWJY6hRoZOhZ0GXO+GH78EPysXT4inRQc8bPd/HxHDaHzYNcx9n\nB9ZtP+U03NkmFm+Hk9YUbWYPNmVfn5kwje9tcdQHYn1VOqarBNbv9d53+kun\nksHA8UM0cluzgBoGNx5x2VuXEmVhUp+nBygQ6Xr6dusVeiEuLvO6HguglvTR\nlDZ30/QaV1s1R0XCZXGtptqXv7g6qE0RK0DqcMPjzHwruhKz16MneSQMHcl+\nfesj5ejjo9ZUhOmykeJrDsaAK7nC2jpkaJQHj4kZxHib4qu3aWJsq+Ks1u88\njebhVGMD1i/NIcMax9F2jWTXinWCTEZfFjHLrmTyxjGKMRFsvmse+l2RZz0u\ncDw8CGPkq/O/jdCNEsMWPsVfe+/XsqSgKzLoTOt7a6RWHu/SmMOJqL1cbtHA\nLQalux70WpK9EKmUQ9nDqxAF6sOWtdCh+E+biRNN9soKcHPgGnDmwo97FS1y\n8BxgQyDfc6Avq6VHGzuvGJ1Ji2oswtvEsa6LeqS1MYy+JPzbYelhYlMMdul3\nTuBfzdPfcXi7cYxldy1/fiI6TbcsIXD2ZwmVrmJUOpV+ER3IPhPob+A2aDI7\nxhEF\r\n=O0m/\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"git":">=2.11.0","npm":">=6.8.0","node":">=10","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"be9686dbdbe40811b6d965373a6fc7a2e7760b49","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.14.10","description":"A better `npm publish`","directories":{},"_nodeVersion":"15.5.0","dependencies":{"ow":"^0.21.0","del":"^6.0.0","meow":"^8.1.0","open":"^7.3.0","rxjs":"^6.6.3","chalk":"^4.1.0","execa":"^5.0.0","listr":"^0.14.3","split":"^1.0.1","semver":"^7.3.4","onetime":"^5.1.2","pkg-dir":"^5.0.0","has-yarn":"^2.1.0","inquirer":"^7.3.3","npm-name":"^6.0.1","is-scoped":"^2.1.0","minimatch":"^3.0.4","p-memoize":"^4.0.1","p-timeout":"^4.1.0","cosmiconfig":"^7.0.0","escape-goat":"^3.0.0","ignore-walk":"^3.0.3","issue-regex":"^3.1.0","listr-input":"^0.2.1","log-symbols":"^4.0.0","read-pkg-up":"^7.0.1","import-local":"^3.0.2","terminal-link":"^2.1.1","any-observable":"^0.5.1","is-interactive":"^1.0.0","async-exit-hook":"^2.0.1","hosted-git-info":"^3.0.7","update-notifier":"^5.0.1","symbol-observable":"^3.0.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^4.0.0","is-installed-globally":"^0.3.2","new-github-release-url":"^1.0.0","@samverschueren/stream-to-observable":"^0.3.1"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.36.1","ava":"^2.3.0","sinon":"^9.2.2","mockery":"^2.1.0","proxyquire":"^2.1.3","execa_test_double":"^4.0.1"},"_npmOperationalInternal":{"tmp":"tmp/np_7.2.0_1609399915634_0.8064916348378655","host":"s3://npm-registry-packages"}},"7.3.0":{"name":"np","version":"7.3.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@7.3.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"itaisteinherz@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"ava":{"files":["!test/fixtures","!integration-test"]},"bin":{"np":"source/cli.js"},"dist":{"shasum":"2536312801f4d4b578e8852e68475c9bb270f328","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-7.3.0.tgz","fileCount":20,"integrity":"sha512-rbKZ7YMtdyv7k2ViAfhkcmDUimQxTMDyGs8qH3Ex2tzoxei9ZSrQUm2LkTzZ7Uwtde9pIAyud/rwsyxS4w9lDg==","signatures":[{"sig":"MEYCIQC5tp7kK1WYt3KNSTL1p8sr2i2TrM7GIwjszweBAHqdfgIhAMStL6qHYcqxUtJWttMzQYHeoGWfJEBVp4GdzEKLPu0C","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":68197,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgHsDxCRA9TVsSAnZWagAA85cP/jW0PBKRNA5yhlWYAI+V\nuu95D7fIOU8IDp0g/5pZNzdYQJL0vgYWLgIdB9OaMoZP6GfNllMWfg/1jB2w\nzmtKFPMJvB8vQBt6+I3UD2UfL87aQSw6ZAE52/OFFNPrttwke839lx/f97X0\nr+S/Jx8oeXzPFvE0tZ6CRh6SrAtgGT7oSDw/hhPRujeThvyQomD3oEUqcym6\ndhvjyc4vsYmd1eZ5r0iOgn7N6eLj3INTEE4xBI4taQUwQ5qt74crBQHMdPTP\nGifH70SNZK/1oi8RUtLu5dgPGuQdBNsZFS7mDgcAdiGmwQGG24Ttk7+fu9FJ\niUbsUXsJmEhENQAT1TiZ8BAEfZuRGqNr+5F6l4itFSGl5Hvchy78h5Caycra\nG5he8uwGMxZyANqER2xRQ9bivv09FjsMboYNgHYFv5UflKYIbzVGMOlaVrBw\nvvzAg6gNaAk8JSnahQYFQ2o4pk7in/QOcUmgcVj/E0H/bP9T3N2+/A//pi+W\nSarxSLvQB2GY9iAAjjdhLffTNovhnnsLpvNbTF/dj7oGOzxxMwjnY8pNWgL3\nfn++V1x8Dx02czC5qJPbnNUEuludeb/FkE+APATPhhm/jRqXqY7wXINS8eJ+\nC5JL7z/lcLR5rKQi7N3gXWtEp0vyHltQrzBnnhQ3P3mPfS2zD4iNzFNtBBPT\nV8kk\r\n=16GB\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"git":">=2.11.0","npm":">=6.8.0","node":">=10","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"2b9a02bb9cf8e7a42f2283f98982b42229dfece3","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.14.10","description":"A better `npm publish`","directories":{},"_nodeVersion":"14.15.1","dependencies":{"ow":"^0.21.0","del":"^6.0.0","meow":"^8.1.0","open":"^7.3.0","rxjs":"^6.6.3","chalk":"^4.1.0","execa":"^5.0.0","listr":"^0.14.3","split":"^1.0.1","semver":"^7.3.4","onetime":"^5.1.2","pkg-dir":"^5.0.0","has-yarn":"^2.1.0","inquirer":"^7.3.3","npm-name":"^6.0.1","is-scoped":"^2.1.0","minimatch":"^3.0.4","p-memoize":"^4.0.1","p-timeout":"^4.1.0","cosmiconfig":"^7.0.0","escape-goat":"^3.0.0","ignore-walk":"^3.0.3","issue-regex":"^3.1.0","listr-input":"^0.2.1","log-symbols":"^4.0.0","read-pkg-up":"^7.0.1","import-local":"^3.0.2","terminal-link":"^2.1.1","any-observable":"^0.5.1","is-interactive":"^1.0.0","async-exit-hook":"^2.0.1","hosted-git-info":"^3.0.7","update-notifier":"^5.0.1","symbol-observable":"^3.0.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^4.0.0","is-installed-globally":"^0.3.2","new-github-release-url":"^1.0.0","@samverschueren/stream-to-observable":"^0.3.1"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.36.1","ava":"^2.3.0","sinon":"^9.2.2","mockery":"^2.1.0","proxyquire":"^2.1.3","execa_test_double":"^4.0.1"},"_npmOperationalInternal":{"tmp":"tmp/np_7.3.0_1612628209166_0.3508867043754631","host":"s3://npm-registry-packages"}},"7.4.0":{"name":"np","version":"7.4.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@7.4.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"itaisteinherz@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"ava":{"files":["!test/fixtures","!integration-test"]},"bin":{"np":"source/cli.js"},"dist":{"shasum":"de33e07159c8d4065f42c280a7605deb88fcaf6a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-7.4.0.tgz","fileCount":20,"integrity":"sha512-woJn5Bodg0/VDyUWx5EHIsi+8QlKSows0AVRBt47PG++cJAVE6jQFXcXDFDBMqY5PueFc4w0SA3gxqPklk6oGg==","signatures":[{"sig":"MEYCIQDBoZzCbrV0+lOqpwcZ4I+v6stxJ2BS3LRjMWsUynAJAgIhAL7oUZkNRBNiNMvfdlg7wE0VtrvwV4C25xw7ZpV3Zu/1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":70027,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgJllrCRA9TVsSAnZWagAAEGsP/jM2GLsWMIimEhwd+wQF\nRs9Jj+KdhhiZksTZbz//8IVAJT2TN+0Yqsra5RqLyST/h5WjgPxcXGJsGGC/\nxtcstI9Y9C/zWSyUvbz5hlFxXUQ1vIx3Uaxp39J2txbmkJ/ZAyD8ScI1qtOM\nUua6v4CUlDXq0laAqvknVBKVUN2fNLg3v+ULbcPSDh+lwZQ6cO+oSs+oQTmy\nDf2bjGioK3ZM52B5EpMwpiWHTQlz2U0wrCIB/VP80fIrPr9kt4UDUx0zXS+0\nBMk6mBoaXAfe3lMLTpanQ2w/+KYT9X4XhKkkFiwXdDlyeP+2f/7QxvN5loZD\n2G6XJeJh/KAOJdhNvFpKILtgGhw2lnjdYTSQoMeHl9PTnVbqPN6+5E4O2FHc\njZuW7YD9gEYtOqnTZxooUpCHpPjbT51h3lKS30egbw28nFJkH9dUgDTCGSL1\noxaGExFcHu8hK92HZ6x7pqtMPq8Y75rd81Bmn6xrNVQqZHB9xGnIjI0h0yV+\nF5ah6CrRgDac2EvjPeq4+7QSEdcd6LkjFUmdOVhuzRHGcbKpVxm400eOvz+k\nNIJ5WQnC62wVqNSkCGSIBjdeP1pcw4l9vKmxIJKMCxQBCVz10kgZHKh20vt0\nyy6q445oSR8CLjuoZV6qkfacQkz2UwOz1JcxcNe0AnNNk8LYEgiM4ueOO+Ys\nTmte\r\n=LdH3\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"git":">=2.11.0","npm":">=6.8.0","node":">=10","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"6ad9d1ed11dc2a784d1abbd89ae2b7055581f651","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.14.10","description":"A better `npm publish`","directories":{},"_nodeVersion":"10.22.1","dependencies":{"ow":"^0.21.0","del":"^6.0.0","meow":"^8.1.0","open":"^7.3.0","rxjs":"^6.6.3","chalk":"^4.1.0","execa":"^5.0.0","listr":"^0.14.3","split":"^1.0.1","semver":"^7.3.4","onetime":"^5.1.2","pkg-dir":"^5.0.0","has-yarn":"^2.1.0","inquirer":"^7.3.3","npm-name":"^6.0.1","is-scoped":"^2.1.0","minimatch":"^3.0.4","p-memoize":"^4.0.1","p-timeout":"^4.1.0","cosmiconfig":"^7.0.0","escape-goat":"^3.0.0","ignore-walk":"^3.0.3","issue-regex":"^3.1.0","listr-input":"^0.2.1","log-symbols":"^4.0.0","read-pkg-up":"^7.0.1","import-local":"^3.0.2","terminal-link":"^2.1.1","any-observable":"^0.5.1","is-interactive":"^1.0.0","async-exit-hook":"^2.0.1","hosted-git-info":"^3.0.7","update-notifier":"^5.0.1","symbol-observable":"^3.0.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^4.0.0","is-installed-globally":"^0.3.2","new-github-release-url":"^1.0.0","@samverschueren/stream-to-observable":"^0.3.1"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.36.1","ava":"^2.3.0","sinon":"^9.2.2","mockery":"^2.1.0","proxyquire":"^2.1.3","execa_test_double":"^4.0.1"},"_npmOperationalInternal":{"tmp":"tmp/np_7.4.0_1613125994221_0.46038187076999093","host":"s3://npm-registry-packages"}},"7.5.0":{"name":"np","version":"7.5.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@7.5.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"itaisteinherz@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"ava":{"files":["!test/fixtures","!integration-test"]},"bin":{"np":"source/cli.js"},"dist":{"shasum":"03e3f8fb77ff0b8718dfd54b76cbd3c0f383a221","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-7.5.0.tgz","fileCount":20,"integrity":"sha512-CdpgqtO6JpDKJjQ2gueY0jnbz6APWA9wFXSwPv5bXg4seSBibHqQ8JyWxYlS8YRfVbpeDtj582wcAWTlfy5qNA==","signatures":[{"sig":"MEUCIQCmadpbAjsl7pOAlJQSqqg8xtZuhpMHNXYRm+XLNhzURgIgMuW4T/I+mHYemDdzCx+4bzKEznUD8qEQRVJ1kNNCWFQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":71814,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJghQ4xCRA9TVsSAnZWagAAZbEP/1v/Dg4Ebkw/MkJ1MW/4\nKbxcZmHPm80pszqIoY4N4NNwIX87lhQXzqv+kiLC+B6f5OgVkyLoqv5oNNqo\nh8actr3mcOa2imiDLZ/J7ii3U0Q8HnLe8ZJcfDhn949U/N/2N8wlKG2vsaxn\nFC4mnoq8zlIB72z8SNQZEfsedPASa1L1omIJkbcciyW05S+LzSPa4kBwjthe\nooH8V5oY/sAvwm48ffuTdeunSjXR5imIcKdCImjZ1tjbWmIRPTwezlrPv3wr\nqu/p9dSQKyVeO3cEjiIsCWneKJ89E1mNzznCvZk2/JpUU2M2yns0vj7rWK6j\na2l9q5fwSkJTP+bm6GzO3HfHHQIouUG8as4Yz+OLOBWmOdk5pxsfNSppv4nJ\nEjrSFf9weoiJ8eGvbzE8pejjfhSIaMbhwI6CgyN0VPy/V63866062kr3oIWV\n2Q/NDz0DZ4bzi45fX5NrCeFWbgkbzp67zcmr4syJMAY5aiOu9IBTF0s1wmnv\nrVcpBFhGL6oIvAKEd1lWfweJHH9BCEJTDC2Gab1nYlMy2PdN4y834DUjvnB1\nwaO3PcPUKjtCGQuq/HP2O6Yw7nzpYD3vE3Lyb9npq4JVeNel8S4vU1EEJKE3\n62mfNlisVcfXRyXjOgsf0F1FVuDi6BIGeeQuDqm2L/7LqZl9YdMaWcMt/N0c\nJxS8\r\n=FuHB\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"git":">=2.11.0","npm":">=6.8.0","node":">=10","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"c97b1df5875767ae0676bd7e15de987724ca7f3b","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.14.10","description":"A better `npm publish`","directories":{},"_nodeVersion":"16.0.0","dependencies":{"ow":"^0.21.0","del":"^6.0.0","meow":"^8.1.0","open":"^7.3.0","rxjs":"^6.6.3","chalk":"^4.1.0","execa":"^5.0.0","listr":"^0.14.3","split":"^1.0.1","semver":"^7.3.4","onetime":"^5.1.2","pkg-dir":"^5.0.0","has-yarn":"^2.1.0","inquirer":"^7.3.3","npm-name":"^6.0.1","is-scoped":"^2.1.0","minimatch":"^3.0.4","p-memoize":"^4.0.1","p-timeout":"^4.1.0","cosmiconfig":"^7.0.0","escape-goat":"^3.0.0","ignore-walk":"^3.0.3","issue-regex":"^3.1.0","listr-input":"^0.2.1","log-symbols":"^4.0.0","read-pkg-up":"^7.0.1","import-local":"^3.0.2","terminal-link":"^2.1.1","any-observable":"^0.5.1","is-interactive":"^1.0.0","async-exit-hook":"^2.0.1","hosted-git-info":"^3.0.7","update-notifier":"^5.0.1","symbol-observable":"^3.0.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^4.0.0","is-installed-globally":"^0.3.2","new-github-release-url":"^1.0.0","@samverschueren/stream-to-observable":"^0.3.1"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.36.1","ava":"^2.3.0","sinon":"^9.2.2","mockery":"^2.1.0","proxyquire":"^2.1.3","execa_test_double":"^4.0.1"},"_npmOperationalInternal":{"tmp":"tmp/np_7.5.0_1619332656973_0.7245495025318973","host":"s3://npm-registry-packages"}},"7.6.0":{"name":"np","version":"7.6.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@7.6.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"itaisteinherz@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"xo":{"ignores":["integration-test"]},"ava":{"files":["!test/fixtures","!integration-test"]},"bin":{"np":"source/cli.js"},"dist":{"shasum":"779e885a9a98246a1d7bbf6e4c1469d348929ac1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-7.6.0.tgz","fileCount":19,"integrity":"sha512-WWGZtfNkE6MEkI7LE8NtG7poTqzTHj/tssBzcPnBAdMVPXkXDtX2wk0ptrj8YZ3u4TFmGSqioSohdud86aJxSg==","signatures":[{"sig":"MEUCIQCV+94GySBABOcPjR91Zt5zRpTidwueokzfoUhV6L6qjAIgc64EJNj7CZra+y0ZkLLeOABqpGIej4FkFdPMwKmM03c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63676,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhl6SuCRA9TVsSAnZWagAALcgP+wWdOEoRhoGaYyBSEXU7\nFGdkOHqNnRbp9ShBdlGsUzduw9zCY5giPWEttG+zzLWnVlS+VSYl+9weU0HO\nZ3gVWHbhHBfweYFtKPEs0z5kAR3ZjPr+QUim8iTuJ1Rd+ECZir+1L3osnfsU\nNxTtJpUPmHLCDNFTBtr3Z8315XcRPtB7XPHWlHSDEtTcq6xryWo3yt8r+g/5\nwkIV1qF3JbMHzzP0BYTi6faSwBpwgCExe5CxspBbQJ6Za4/6SvXjedV3KzLV\n3vrSITDuBPtVRapphhufGxT3JzPPulFdDhh5Qq+AB8VGJ2yOjJnHy4p1mYWE\nOXMsbli+0vZH2EcJD0Ak6Mg8JnnFjXoZBD3SloGLkTCXTzxLUHpvAlOp+oOt\nKmpdXhWZPZ04aVjyQFYg8fRtBKr7WbuuG2JuSCDZIxKTU+P+Es7qJ8Vyx9RP\nDi5FeBbCrRJmUsmrA/gRgEunBO4iL14MCGtmWTSuCdPm4BE3qDYTnZ54ROzQ\n0DsRs0OY76KX57J6gCjfYq0Q3hLltGdQFyhooguJzvCUVBgBz3Ic2QPsYdiL\n6//5udqFmY87MlnlO+2bkkIx8PpoHLBrqD0wibtcQCh9hEVMSfi7KfGv7ECL\n7AcKPvp6lEdKN80Uy4Skc5JNsr8lhEZWjKKIs35pkUIl6OX8xLny6PHMO/Qw\nqMDf\r\n=Yew0\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"git":">=2.11.0","npm":">=6.8.0","node":">=10","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"b1939c7549784c1a085e83dee8c945a2e2ef0920","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"itaisteinherz@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"6.14.10","description":"A better `npm publish`","directories":{},"_nodeVersion":"14.15.4","dependencies":{"ow":"^0.21.0","del":"^6.0.0","meow":"^8.1.0","open":"^7.3.0","rxjs":"^6.6.3","chalk":"^4.1.0","execa":"^5.0.0","listr":"^0.14.3","split":"^1.0.1","semver":"^7.3.4","onetime":"^5.1.2","pkg-dir":"^5.0.0","has-yarn":"^2.1.0","inquirer":"^7.3.3","npm-name":"^6.0.1","is-scoped":"^2.1.0","minimatch":"^3.0.4","p-memoize":"^4.0.1","p-timeout":"^4.1.0","cosmiconfig":"^7.0.0","escape-goat":"^3.0.0","ignore-walk":"^3.0.3","issue-regex":"^3.1.0","listr-input":"^0.2.1","log-symbols":"^4.0.0","read-pkg-up":"^7.0.1","import-local":"^3.0.2","terminal-link":"^2.1.1","any-observable":"^0.5.1","is-interactive":"^1.0.0","async-exit-hook":"^2.0.1","hosted-git-info":"^3.0.7","update-notifier":"^5.0.1","symbol-observable":"^3.0.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^4.0.0","is-installed-globally":"^0.3.2","new-github-release-url":"^1.0.0","@samverschueren/stream-to-observable":"^0.3.1"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.36.1","ava":"^2.3.0","sinon":"^9.2.2","mockery":"^2.1.0","proxyquire":"^2.1.3","execa_test_double":"^4.0.1"},"_npmOperationalInternal":{"tmp":"tmp/np_7.6.0_1637328046255_0.16145284075145017","host":"s3://npm-registry-packages"}},"7.6.1":{"name":"np","version":"7.6.1","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@7.6.1","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"itaisteinherz@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"xo":{"ignores":["integration-test"]},"ava":{"files":["!test/fixtures","!integration-test"]},"bin":{"np":"source/cli.js"},"dist":{"shasum":"b1cd70a0941d03779f4c7e9036ec67b227aee604","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-7.6.1.tgz","fileCount":19,"integrity":"sha512-EHr5PtMPzNmkM/trnWQWTKAogJnVP1RzTFfIyvPK2COvLN6Vqut4gFXuWNng15xuqnTgmUPzKYbpQAZsYR+Dkw==","signatures":[{"sig":"MEQCIDSKu4+Vo2rYwMZPOH82uk/tfrR565gpzjDXklRAFL0vAiBcNKzz/9UCfAj8Y/OApIjdyq9LiETR90PVKMw87ECwHA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63994,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiNhmjACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrJ6A/+Mk/bwX6Je1cvjMhJHXO0vyrOWVt3aBlS0FYHFJzeB69g8cDt\r\nZvfiR0FdQjNflKjx3JoyBB0faIPau/aQV1zWYMQdcPolTAC8T9aKk+Ns2c9h\r\nXmooEyGhm1tqKP95mn4JLwWl7/jgPLK/Nuhwev9/pwrkDomNKx58EA3yJXtb\r\npXmiwW2kvUj3HJovyQAtRtX5OYqG/RXvY3y+e+gHFyPbtfjK0UrzqdDlc11w\r\nXJur0YI5WjYRvBePXG8/f4sIfkWeKqpGiicYgLRa3ht2xZz2dQuo+FLINV7F\r\nOltGpelBhk0R+o7cpJBQd/mxHoFPO3C9OTasLZchjYJp7/eK4FqCQWWzCtKq\r\np8t+wdqJ9wTxC/QTOvoGDlN9Vaz6z9YZ1e2N9HEUpB2vmi/xO+A3yRPL2wlJ\r\nHTpff7ubSgmkxFyndLPDyOisdzUWmgqK9RQLnobPkusRavEwlXFe396Htdnu\r\nunTEOhPEBJoPM5Bkcrt2WjBc37gbfmMZ2vtsglQ7JXY4Be1+HGQLl8Q8Uznq\r\nHF2fsgIBWiucFmIlKguqwYRcDnQ5xVXGJDuTnUrXyaooCnOshTvzNqdN3ruT\r\nHJ4VbdR4L4SnvOrrhdixGgW1oSbMuzxSr6gCbxBh7iV9xV9OMnmlm0uSkEt9\r\nBLCTJ+jb8+NANUWyAQ8wCDatywUf1D61ebI=\r\n=bfDj\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"git":">=2.11.0","npm":">=6.8.0","node":">=10","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"9b7df306c80a6b60c87b1444f875bdb4568dbe8a","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"8.3.2","description":"A better `npm publish`","directories":{},"_nodeVersion":"12.22.1","dependencies":{"ow":"^0.21.0","del":"^6.0.0","meow":"^8.1.0","open":"^7.3.0","rxjs":"^6.6.3","chalk":"^4.1.0","execa":"^5.0.0","listr":"^0.14.3","split":"^1.0.1","semver":"^7.3.4","onetime":"^5.1.2","pkg-dir":"^5.0.0","has-yarn":"^2.1.0","inquirer":"^7.3.3","npm-name":"^6.0.1","is-scoped":"^2.1.0","minimatch":"^3.0.4","p-memoize":"^4.0.1","p-timeout":"^4.1.0","cosmiconfig":"^7.0.0","escape-goat":"^3.0.0","ignore-walk":"^3.0.3","issue-regex":"^3.1.0","listr-input":"^0.2.1","log-symbols":"^4.0.0","read-pkg-up":"^7.0.1","import-local":"^3.0.2","terminal-link":"^2.1.1","any-observable":"^0.5.1","is-interactive":"^1.0.0","async-exit-hook":"^2.0.1","hosted-git-info":"^3.0.7","update-notifier":"^5.0.1","symbol-observable":"^3.0.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^4.0.0","is-installed-globally":"^0.3.2","new-github-release-url":"^1.0.0","@samverschueren/stream-to-observable":"^0.3.1"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.36.1","ava":"^2.3.0","sinon":"^9.2.2","mockery":"^2.1.0","proxyquire":"^2.1.3","execa_test_double":"^4.0.1"},"_npmOperationalInternal":{"tmp":"tmp/np_7.6.1_1647712675706_0.49310031339112803","host":"s3://npm-registry-packages"}},"7.6.2":{"name":"np","version":"7.6.2","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@7.6.2","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"itaisteinherz@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"xo":{"ignores":["integration-test"]},"ava":{"files":["!test/fixtures","!integration-test"]},"bin":{"np":"source/cli.js"},"dist":{"shasum":"02650c024b232cb8c958846c44f672c2f8951b7c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-7.6.2.tgz","fileCount":19,"integrity":"sha512-gExmKGKixh7ITc4Q+Lv7nfCby0CVKvzri9zN8970oKD8976T4L5dw8QWUtMcXcIjhFF6h5lbvztao/NurDbmxQ==","signatures":[{"sig":"MEQCID4XbCcIOF/OqQ31HBlSMcP+g1JwqteXp63HubhKkPezAiBsUcCm0qGIbRjJFHnt7JcYTgPfXtTdXp+aCm2pm6iPfQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64420,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJis1oNACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo12Q/+I1Q7AebK02H3sXKjRBUtXlwL8OXpedQ9W9MmRkSQwufoa7N+\r\nCq+LpUIqyOe2uA6Dv9H7leaUYwzjepZE+FvQoyLfc6S4Lr/As3TW/H8ofx5s\r\ns0KAIvseixMxG68wjCTsj64qyTecVPL9m2atxLjU36gMCckJcxJIOT9A+SOJ\r\n+8NqDoPgfvLgkFjzBaeQA1MEDya/v3DZc15PLzy9MW7egDKzl2S8sQZimmUr\r\n3EaCbIvPFsmTQcI4SJx3XygfYAwba1sFkrdqcjMARAeviwkAt2VEj3OYUr/r\r\nbApBWLKXmrYO03+3IpF/1+4xnpkYRwYrpbasSTMJgSoI34XOb46q+CgmYw7S\r\nG92TXbYgEEBth7W3gQEfx3TOvqRGyz6b6CVy0/+GSTSSwOyezvZRMZUiY3Y+\r\ndJHkLYojRZFnHnJgPsmVKhyA/OzEjMfH7XCbIrxDnupizcO2qmoHQqhax7R5\r\nP1RLXgm+zvY9nxfNEzKOIlBCv2xE4HhivO9/yvUJ5S5+hWp8TXe/tsfkAsem\r\ntFIx6d4+x2ic856r5iU99CYD3WqzpyRvCEnZftenqaGJWlmJD3qriG1y8DYX\r\nkL7bqtmlwVw8Euiupx9rGFTbr95EPtlWEQFvIbsNfqDPXeTndyRhgutbxAe0\r\nsUhM+y9Uf+OnYgpQn+4QT1GjHUuSqeCFk3g=\r\n=kWCA\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"git":">=2.11.0","npm":">=6.8.0","node":">=10","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"95622c0adbd64920b3d86576784460dd41b81d0e","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"8.3.2","description":"A better `npm publish`","directories":{},"_nodeVersion":"14.19.2","dependencies":{"ow":"^0.21.0","del":"^6.0.0","meow":"^8.1.0","open":"^7.3.0","rxjs":"^6.6.3","chalk":"^4.1.0","execa":"^5.0.0","listr":"^0.14.3","split":"^1.0.1","semver":"^7.3.4","onetime":"^5.1.2","pkg-dir":"^5.0.0","has-yarn":"^2.1.0","inquirer":"^7.3.3","npm-name":"^6.0.1","is-scoped":"^2.1.0","minimatch":"^3.0.4","p-memoize":"^4.0.1","p-timeout":"^4.1.0","cosmiconfig":"^7.0.0","escape-goat":"^3.0.0","ignore-walk":"^3.0.3","issue-regex":"^3.1.0","listr-input":"^0.2.1","log-symbols":"^4.0.0","read-pkg-up":"^7.0.1","import-local":"^3.0.2","terminal-link":"^2.1.1","any-observable":"^0.5.1","is-interactive":"^1.0.0","async-exit-hook":"^2.0.1","hosted-git-info":"^3.0.7","update-notifier":"^5.0.1","symbol-observable":"^3.0.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^4.0.0","is-installed-globally":"^0.3.2","new-github-release-url":"^1.0.0","@samverschueren/stream-to-observable":"^0.3.1"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.36.1","ava":"^2.3.0","sinon":"^9.2.2","mockery":"^2.1.0","proxyquire":"^2.1.3","execa_test_double":"^4.0.1"},"_npmOperationalInternal":{"tmp":"tmp/np_7.6.2_1655921165158_0.053724447408307174","host":"s3://npm-registry-packages"}},"7.6.3":{"name":"np","version":"7.6.3","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@7.6.3","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"itaisteinherz@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"xo":{"ignores":["integration-test"]},"ava":{"files":["!test/fixtures","!integration-test"]},"bin":{"np":"source/cli.js"},"dist":{"shasum":"da3eeb750fa8d583f658b02a16f1199a11c9e10f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-7.6.3.tgz","fileCount":19,"integrity":"sha512-GTFNvIhu/cZqzUhil/AlISCiipYeAUVx0JtyjtmumFJvWogSewUSAshFi5MSMc6BOj9C98s8NAFZiqlHb2wQPQ==","signatures":[{"sig":"MEYCIQCL1UsnMLCceHZN8WIilwYPZFzB+jCJzcs9RmBlsI+PKAIhAJee3uI/XeNED8zgWpmIJljyJVP5Wc2kDonGbbcaTsVt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64602,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjqvg3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr7vQ//e0Ty0pI7IMHfjm5r4ZFVUVpTbDTWBF41dOYzIG+BdY4XTRdr\r\nlJgyl2P8cAdV+tvAKhfGc+lv/3eLQokk7iZz7eQjlWoKjfHB/wBXElY0qAE6\r\nxde1kfRwBNbaxqy43JorJByu+V7obB0zyk+f+1aHU3QN3lEw8Ih7mdHyXsPK\r\n5D7GkWIL5LDXji9G57M9zzbCJ7QveoBqVyq6owpR/bF9R3aS7dLflaN4526D\r\nKU3MtKIL8NW8HVmkR2Ze8NvGBrCubfic2dSVDvigBpHUN9AxJq9uoiO5LBPo\r\nz8m5zcpaBRIzP/cUkIXKmfwd5uXSdMY3GpAPUV273hl29CBoG5dgAuifQlBG\r\n6rNiZ5FZG7bCTZGhtvWThUGM29SckuuZDG30Fjjr+fh+LKzfZoA0tDluRO2r\r\nkgP6FgiR5HiRvry0qp89wETXNWzxXUOERqh65U3CndN/6fnFXTyqOkBW8QeQ\r\nLh22KzjdXB+rNfooyN3pOCbu0GhnDK6R6VvkKsNxWSlS6p/GlHE6CayI0KoB\r\nzth/Ivqu+1fRJ5L+eIQ7IkG9gwq6G6FZagWs8ZBym/YHYPvQTueZAeuqdpcA\r\nJXCjJO+uDcfU0kcZQpk7p6py/ilgmiMT+lHYiEFc+Ypm7S8e7o5lZmj/nStw\r\nAFxsw8SdwJEjlqE93GqI3YJJfjkd8FCBNTs=\r\n=U//G\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"git":">=2.11.0","npm":">=6.8.0","node":">=10","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"9fb0128a64b5975d4913c439ccae3a27a32fa61a","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"8.19.2","description":"A better `npm publish`","directories":{},"_nodeVersion":"14.21.1","dependencies":{"ow":"^0.21.0","del":"^6.0.0","meow":"^8.1.0","open":"^7.3.0","rxjs":"^6.6.3","chalk":"^4.1.0","execa":"^5.0.0","listr":"^0.14.3","split":"^1.0.1","semver":"^7.3.4","onetime":"^5.1.2","pkg-dir":"^5.0.0","has-yarn":"^2.1.0","inquirer":"^7.3.3","npm-name":"^6.0.1","is-scoped":"^2.1.0","minimatch":"^3.0.4","p-memoize":"^4.0.1","p-timeout":"^4.1.0","cosmiconfig":"^7.0.0","escape-goat":"^3.0.0","ignore-walk":"^3.0.3","issue-regex":"^3.1.0","listr-input":"^0.2.1","log-symbols":"^4.0.0","read-pkg-up":"^7.0.1","import-local":"^3.0.2","terminal-link":"^2.1.1","any-observable":"^0.5.1","is-interactive":"^1.0.0","async-exit-hook":"^2.0.1","hosted-git-info":"^3.0.7","update-notifier":"^5.0.1","symbol-observable":"^3.0.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^4.0.0","is-installed-globally":"^0.3.2","new-github-release-url":"^1.0.0","@samverschueren/stream-to-observable":"^0.3.1"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.36.1","ava":"^2.3.0","sinon":"^9.2.2","mockery":"^2.1.0","proxyquire":"^2.1.3","execa_test_double":"^4.0.1"},"_npmOperationalInternal":{"tmp":"tmp/np_7.6.3_1672149046822_0.25591897345835535","host":"s3://npm-registry-packages"}},"7.6.4":{"name":"np","version":"7.6.4","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@7.6.4","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"itaisteinherz@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"xo":{"ignores":["integration-test"]},"ava":{"files":["!test/fixtures","!integration-test"]},"bin":{"np":"source/cli.js"},"dist":{"shasum":"5b901be85cb498e9feada52b2945c8a0ae68d2f7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-7.6.4.tgz","fileCount":19,"integrity":"sha512-w1bwfhN2OCY8VgVdtkSn2vHN+c0KtPnCCWKWvPjuB6WCxMc1bmU797xCc1NZJdRAW2F79zrMMKOIh0N/A1xdXg==","signatures":[{"sig":"MEUCIQCHQww5r13uQ74V2ZQyV2YbWaxxpl9mDET6+hxDmN9bMAIgCAIrQPGxPKKG6QJcYur+qW+V+skORCUBSOaxj6Id5Qg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65805,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkGAddACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrysw//bHq/pvfXOjZq639GRvcsOACzhK8RszeBjuc9DyepthyEkp5h\r\nyRkhq5uzXV5k9LtlegseshSmq/XmY7bXHp8OeVRDj4kpbp6LCxBAi6afBQpZ\r\nxUWGyvaUOIsdXc1/JxsDyandCmuXy78yteOclvVFJjMAhOrng2siFIegecgE\r\nJms3n2lWkCfM8+n1jKEicmOMc7GfoCXeZPVbAGqQnqbtvbHfBi9joNDo1oq6\r\nDFJ8DZkBgH8psCfWeLw6ptUas7PaQM/BfSBXNArqsWv8gRqplBEw9YteXTmV\r\nsP3zCc33jK6kscwmhhP2JqC0+N/CYf3S0GEqDJUOC8bBm3hCIiW2zWCy23p1\r\nUBT5EDodj17g6EFRaupDqz9ObhkvWNigwX+1Qc9Gd/+YyPqp2wq/xiGTo2+j\r\nayVbvNAwgvh0oH5XDHHoCXDpJvlvB++LNoG329b14DMjQv+u2f4Z+RUDgRjQ\r\nLC8tAH52E+yVpBNl7AxeAk5F2hRgFlhx/KGtj0lZVHcUNFp26ibD/qCawpAX\r\n9BxVf9vLZxomtwUMTrP6PkDlXjH7t40jHRugs6AI86vpnLzbqZXBmbgLy4N3\r\nhUzXym9Y3Y1+WpwX19Nt1dw0YIC17LVXQn7GkRnj3ebZWzlBxFZ1xHIA8YUx\r\nwpUsfj/sCXoJMDdaLTRWrZqtFdGrD1Zo9PA=\r\n=6iR3\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"git":">=2.11.0","npm":">=6.8.0","node":">=10","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"aa23a92bcaf710068f01ed5fe50d3039b510e223","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"9.2.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"18.14.2","dependencies":{"ow":"^0.21.0","del":"^6.0.0","meow":"^8.1.0","open":"^7.3.0","rxjs":"^6.6.3","chalk":"^4.1.0","execa":"^5.0.0","listr":"^0.14.3","split":"^1.0.1","semver":"^7.3.4","onetime":"^5.1.2","pkg-dir":"^5.0.0","has-yarn":"^2.1.0","inquirer":"^7.3.3","npm-name":"^6.0.1","is-scoped":"^2.1.0","minimatch":"^3.0.4","p-memoize":"^4.0.1","p-timeout":"^4.1.0","cosmiconfig":"^7.0.0","escape-goat":"^3.0.0","ignore-walk":"^3.0.3","issue-regex":"^3.1.0","listr-input":"^0.2.1","log-symbols":"^4.0.0","read-pkg-up":"^7.0.1","import-local":"^3.0.2","terminal-link":"^2.1.1","any-observable":"^0.5.1","is-interactive":"^1.0.0","async-exit-hook":"^2.0.1","hosted-git-info":"^3.0.7","update-notifier":"^5.0.1","symbol-observable":"^3.0.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^4.0.0","is-installed-globally":"^0.3.2","new-github-release-url":"^1.0.0","@samverschueren/stream-to-observable":"^0.3.1"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.36.1","ava":"^2.3.0","sinon":"^9.2.2","mockery":"^2.1.0","proxyquire":"^2.1.3","execa_test_double":"^4.0.1"},"_npmOperationalInternal":{"tmp":"tmp/np_7.6.4_1679296349425_0.6044827478328496","host":"s3://npm-registry-packages"}},"7.7.0":{"name":"np","version":"7.7.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@7.7.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"itaisteinherz@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"xo":{"ignores":["integration-test"]},"ava":{"files":["!test/fixtures","!integration-test"]},"bin":{"np":"source/cli.js"},"dist":{"shasum":"7fbf2495f6395bcc702b84ca38c4a125363fd5a5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-7.7.0.tgz","fileCount":19,"integrity":"sha512-G4HfO6JUl7iKOX1qfYHM/kG5ApqqZ4ma8YjtVAJoyS5VdKkGE/OdSG3cOE9Lwr71klNz9n6KIZmPRnh0L7qM1Q==","signatures":[{"sig":"MEUCIQDiEu6mJvsuNbCpmudQYS115nN20fFzvwU49zUV8Le5DQIgAT/AAP7tpBZ7LSh4KINWQb8ROsHSzeOcu2dJ2Yf9Nkw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66054,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkJPpMACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrHBBAAiWvi+03Uqye6LH9G4kNpxyjqRfEWfoxg1gviQ8qTTNtzXWy3\r\nZscndktBMH/4/ZtVA1q7smwzduuU/T19wEwnJ2mj6D5ZWIGkLhplMcFMHKHI\r\n/+uQKjTYTJO99L3X1/YQkHjFb+Q1zRLQ7G5pBdDHZwAGrsD97Yj5UOfMsqkr\r\n60DVCQyJ2KB2K+DRmjvzw8xNkdi8eM49KN0++VP5m6VgWBl3W7WZP2lVlxfd\r\nGmrrs69G8/a6AQ/WY8Eq62S15bPox7df+M2rtpoAcVEzlPMgD+bssraXrSFK\r\n+Ir94t9SaMmlhMSfnr3XKe4Kz8Bf5opr0aHtFbX+2mdH41FXK2VyLC/tseAR\r\nSHaDuP3oErx/l8t8JpOgXfsud7pkf27e/J47sjCfMl+6P9nsF3Z7XLCVcnHy\r\njt7oYiDSDEKjraEhATkVi9qfG2EC+E2XYemii+RAC/RUmCcWYJrXFOd2UBEa\r\nf8x4raRcv3dVEtWuf6VLxCGE6vP5XBrgiSpDLK08gsaHUBSwSfiEfdmy2dtQ\r\n+gx+XPtxwVcJjkfcG7IS/d4PYEgy7fVBjsZ5f8Kw7HgIgWJ6DbYQ95o3PYf5\r\npR4yf3JalQ+jVP6l14jYvhD37GZLP09K4kJMIFg6sVA3tfNLpYPlPHNmoDmt\r\nFqDx39rya4E3fHAKxt7grNJBDzld8DkBZbU=\r\n=TYEq\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"git":">=2.11.0","npm":">=6.8.0","node":">=10","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"8fcca96d4f14a256a576c0a32dd8f9faaef3674b","scripts":{"test":"xo && FORCE_HYPERLINK=1 ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"9.2.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"16.16.0","dependencies":{"ow":"^0.21.0","del":"^6.0.0","meow":"^8.1.0","open":"^7.3.0","rxjs":"^6.6.3","chalk":"^4.1.0","execa":"^5.0.0","listr":"^0.14.3","split":"^1.0.1","semver":"^7.3.4","onetime":"^5.1.2","pkg-dir":"^5.0.0","has-yarn":"^2.1.0","inquirer":"^7.3.3","npm-name":"^6.0.1","is-scoped":"^2.1.0","minimatch":"^3.0.4","p-memoize":"^4.0.1","p-timeout":"^4.1.0","cosmiconfig":"^7.0.0","escape-goat":"^3.0.0","ignore-walk":"^3.0.3","issue-regex":"^3.1.0","listr-input":"^0.2.1","log-symbols":"^4.0.0","read-pkg-up":"^7.0.1","import-local":"^3.0.2","terminal-link":"^2.1.1","any-observable":"^0.5.1","is-interactive":"^1.0.0","async-exit-hook":"^2.0.1","hosted-git-info":"^3.0.7","update-notifier":"^5.0.1","symbol-observable":"^3.0.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^4.0.0","is-installed-globally":"^0.3.2","new-github-release-url":"^1.0.0","@samverschueren/stream-to-observable":"^0.3.1"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.36.1","ava":"^2.3.0","sinon":"^9.2.2","mockery":"^2.1.0","proxyquire":"^2.1.3","execa_test_double":"^4.0.1"},"_npmOperationalInternal":{"tmp":"tmp/np_7.7.0_1680144972542_0.20097835629955485","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"np","version":"8.0.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@8.0.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"itaisteinherz@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"ava":{"nodeArguments":["--loader=esmock"],"environmentVariables":{"FORCE_HYPERLINK":"1"}},"bin":{"np":"source/cli.js"},"dist":{"shasum":"7b61dabce8963aaa36ba11faed7ffb0988293fa7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-8.0.0.tgz","fileCount":19,"integrity":"sha512-mVebUNW3MwaYC9PcUzTOHT3fxtEKecOuwXFHnjtfJgVl0OQXwT4VKP3E4VFFaGQu66xfXR/Z8JBOD7ZKh/eAfw==","signatures":[{"sig":"MEYCIQDh3lv8pZrJyawUx9v1Zv19LgCBCkqCxZpQtQclxZIGVAIhAJlV8rDxH27UwGA9QU/baKbFV/6JiOfbirWA3AIvMr1G","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63451},"type":"module","engines":{"git":">=2.11.0","npm":">=7.19.0","node":">=16.6.0","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"c1135391b64c64d91056bb947fb4eeca7d4f68e9","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"9.2.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"16.20.0","dependencies":{"ow":"^1.1.1","del":"^7.0.0","meow":"^12.0.1","open":"^9.1.0","rxjs":"^7.8.1","chalk":"^5.2.0","execa":"^7.1.1","listr":"^0.14.3","semver":"^7.5.1","onetime":"^6.0.0","pkg-dir":"^7.0.0","has-yarn":"^3.0.0","inquirer":"^9.2.6","npm-name":"^7.1.0","exit-hook":"^3.2.0","is-scoped":"^3.0.0","p-memoize":"^7.1.1","p-timeout":"^6.1.1","cosmiconfig":"^8.1.3","escape-goat":"^4.0.0","ignore-walk":"^6.0.3","issue-regex":"^4.1.0","listr-input":"^0.2.1","log-symbols":"^5.1.0","path-exists":"^5.0.0","read-pkg-up":"^9.1.0","import-local":"^3.1.0","terminal-link":"^3.0.0","is-interactive":"^2.0.0","hosted-git-info":"^6.1.1","update-notifier":"^6.0.2","symbol-observable":"^4.0.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^5.0.0","is-installed-globally":"^0.4.0","new-github-release-url":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.54.2","ava":"^5.3.0","sinon":"^15.1.0","tempy":"^3.0.0","esmock":"^2.2.3","fs-extra":"^11.1.1","move-file":"^3.1.0","write-pkg":"^5.1.0","common-tags":"^1.8.2"},"_npmOperationalInternal":{"tmp":"tmp/np_8.0.0_1685192866714_0.41413640037627375","host":"s3://npm-registry-packages"}},"8.0.1":{"name":"np","version":"8.0.1","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@8.0.1","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"itaisteinherz@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"ava":{"nodeArguments":["--loader=esmock"],"environmentVariables":{"FORCE_HYPERLINK":"1"}},"bin":{"np":"source/cli.js"},"dist":{"shasum":"e022b061598be29b371efc93aed628d210ca0728","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-8.0.1.tgz","fileCount":19,"integrity":"sha512-5Vd3p5LlymIUhQjKIVhcf/Zh1/Mpeuo4agQ53LWXokPnGlWH3SAjZx5jmy56B904uwnKXyM/220GJae5p7/NhA==","signatures":[{"sig":"MEUCIQCqZU3SNMKvxcKfpPDas5LLemBGhRQ1TWypNLUKCdn5MwIgJ5dsfOGv0+qXz6py4tl4jJNrQFQY1nBEU/w8xK7hOG8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63627},"type":"module","engines":{"git":">=2.11.0","npm":">=7.19.0","node":">=16.6.0","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"d55316b6a992d5382e9ab22618255b75ce4c2313","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"9.2.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"16.20.0","dependencies":{"ow":"^1.1.1","del":"^7.0.0","meow":"^12.0.1","open":"^9.1.0","rxjs":"^7.8.1","chalk":"^5.2.0","execa":"^7.1.1","listr":"^0.14.3","semver":"^7.5.1","onetime":"^6.0.0","pkg-dir":"^7.0.0","has-yarn":"^3.0.0","inquirer":"^9.2.6","npm-name":"^7.1.0","exit-hook":"^3.2.0","is-scoped":"^3.0.0","p-memoize":"^7.1.1","p-timeout":"^6.1.1","cosmiconfig":"^8.1.3","escape-goat":"^4.0.0","ignore-walk":"^6.0.3","issue-regex":"^4.1.0","listr-input":"^0.2.1","log-symbols":"^5.1.0","path-exists":"^5.0.0","read-pkg-up":"^9.1.0","import-local":"^3.1.0","terminal-link":"^3.0.0","is-interactive":"^2.0.0","hosted-git-info":"^6.1.1","update-notifier":"^6.0.2","symbol-observable":"^4.0.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^5.0.0","is-installed-globally":"^0.4.0","new-github-release-url":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.54.2","ava":"^5.3.0","sinon":"^15.1.0","tempy":"^3.0.0","esmock":"^2.2.3","fs-extra":"^11.1.1","move-file":"^3.1.0","write-pkg":"^5.1.0","common-tags":"^1.8.2"},"_npmOperationalInternal":{"tmp":"tmp/np_8.0.1_1685267233101_0.5351583723965732","host":"s3://npm-registry-packages"}},"8.0.2":{"name":"np","version":"8.0.2","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@8.0.2","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"itaisteinherz@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"ava":{"nodeArguments":["--loader=esmock"],"environmentVariables":{"FORCE_HYPERLINK":"1"}},"bin":{"np":"source/cli.js"},"dist":{"shasum":"617f5621885c67f6c0660cbda409478d995d77a1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-8.0.2.tgz","fileCount":19,"integrity":"sha512-mkQB4rEx736mbOd8gq4DfTW/Oh11CplO44AalimMehT7EKJB1vht50DdzpsXL78qPbzjPnnP7JddS179dbsAJg==","signatures":[{"sig":"MEUCIQDV6ItEW3o2RxSrxr/T52rH7+v0quzXLp8eVkqEDrfDawIgA6aCmF9pAvQgJgaYfjZT9nHjf1XNnz1Rs296Zt1QNcU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63630},"type":"module","engines":{"git":">=2.11.0","npm":">=7.19.0","node":">=16.6.0","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"9f9ee6ef9ff00375203fe8575a5844e0a0144386","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"9.2.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"16.20.0","dependencies":{"ow":"^1.1.1","del":"^7.0.0","meow":"^12.0.1","open":"^9.1.0","rxjs":"^7.8.1","chalk":"^5.2.0","execa":"^7.1.1","listr":"^0.14.3","semver":"^7.5.1","onetime":"^6.0.0","pkg-dir":"^7.0.0","has-yarn":"^3.0.0","inquirer":"^9.2.6","npm-name":"^7.1.0","exit-hook":"^3.2.0","is-scoped":"^3.0.0","p-memoize":"^7.1.1","p-timeout":"^6.1.1","cosmiconfig":"^8.1.3","escape-goat":"^4.0.0","ignore-walk":"^6.0.3","issue-regex":"^4.1.0","listr-input":"^0.2.1","log-symbols":"^5.1.0","path-exists":"^5.0.0","read-pkg-up":"^9.1.0","import-local":"^3.1.0","terminal-link":"^3.0.0","is-interactive":"^2.0.0","hosted-git-info":"^6.1.1","update-notifier":"^6.0.2","symbol-observable":"^4.0.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^5.0.0","is-installed-globally":"^0.4.0","new-github-release-url":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.54.2","ava":"^5.3.0","sinon":"^15.1.0","tempy":"^3.0.0","esmock":"^2.2.3","fs-extra":"^11.1.1","move-file":"^3.1.0","write-pkg":"^5.1.0","common-tags":"^1.8.2"},"_npmOperationalInternal":{"tmp":"tmp/np_8.0.2_1685437913709_0.591108062783827","host":"s3://npm-registry-packages"}},"8.0.3":{"name":"np","version":"8.0.3","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@8.0.3","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"itaisteinherz@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"ava":{"nodeArguments":["--loader=esmock"],"environmentVariables":{"FORCE_HYPERLINK":"1"}},"bin":{"np":"source/cli.js"},"dist":{"shasum":"9b0ffa9c400d2c2dbd2480a854a51f87ed0ef770","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-8.0.3.tgz","fileCount":19,"integrity":"sha512-uFp4OJ1LRdq3pwTpPvOj6+zjyFu/+YDkynDxICph+zh9I6h8YPsjg0ZoXKVTTMMV6kTPjwTraDb7fm2uL4/uDg==","signatures":[{"sig":"MEUCIQCU7mrYA0wyQJvo13bmkVF+hHFPQisM6G6v4Av0+j5YfgIgAiDGgVn6WHnERnZwisW1Mjuzk8SZaqXXZbjHP0MehQI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63652},"type":"module","engines":{"git":">=2.11.0","npm":">=7.19.0","node":">=16.6.0","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"065193375f17f40f412e0e5cedda098396c8391d","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"9.2.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"16.20.0","dependencies":{"ow":"^1.1.1","del":"^7.0.0","meow":"^12.0.1","open":"^9.1.0","rxjs":"^7.8.1","chalk":"^5.2.0","execa":"^7.1.1","listr":"^0.14.3","semver":"^7.5.1","onetime":"^6.0.0","pkg-dir":"^7.0.0","has-yarn":"^3.0.0","inquirer":"^9.2.6","npm-name":"^7.1.0","exit-hook":"^3.2.0","is-scoped":"^3.0.0","p-memoize":"^7.1.1","p-timeout":"^6.1.1","cosmiconfig":"^8.1.3","escape-goat":"^4.0.0","ignore-walk":"^6.0.3","issue-regex":"^4.1.0","listr-input":"^0.2.1","log-symbols":"^5.1.0","path-exists":"^5.0.0","read-pkg-up":"^9.1.0","import-local":"^3.1.0","terminal-link":"^3.0.0","is-interactive":"^2.0.0","hosted-git-info":"^6.1.1","update-notifier":"^6.0.2","symbol-observable":"^4.0.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^5.0.0","is-installed-globally":"^0.4.0","new-github-release-url":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.54.2","ava":"^5.3.0","sinon":"^15.1.0","tempy":"^3.0.0","esmock":"^2.2.3","fs-extra":"^11.1.1","move-file":"^3.1.0","write-pkg":"^5.1.0","common-tags":"^1.8.2"},"_npmOperationalInternal":{"tmp":"tmp/np_8.0.3_1686472514315_0.49099975887451164","host":"s3://npm-registry-packages"}},"8.0.4":{"name":"np","version":"8.0.4","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@8.0.4","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"itaisteinherz@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"ava":{"nodeArguments":["--loader=esmock"],"environmentVariables":{"FORCE_HYPERLINK":"1"}},"bin":{"np":"source/cli.js"},"dist":{"shasum":"67d68e95cf443ddff5b3aed3ceb0c2a03375be38","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-8.0.4.tgz","fileCount":19,"integrity":"sha512-a4s1yESHcIwsrk/oaTekfbhb1R/2z2yyfVLX6Atl54w/9+QR01qeYyK3vMWgJ0UY+kYsGzQXausgvUX0pkmIMg==","signatures":[{"sig":"MEUCIQD/1vkaKqFoqvwXferz4G4lhsmVHdYD4ylZZ67MJ8yllwIgW5JYNA4K6hzu8QyrB+9jbU6nvfEGHlaW5+zpvKjW8Mc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63765},"type":"module","engines":{"git":">=2.11.0","npm":">=7.19.0","node":">=16.6.0","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"0a7abf4b2d170c8215d3767b8dc12806d6e71b66","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"9.2.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"16.20.0","dependencies":{"ow":"^1.1.1","del":"^7.0.0","meow":"^12.0.1","open":"^9.1.0","rxjs":"^7.8.1","chalk":"^5.2.0","execa":"^7.1.1","listr":"^0.14.3","semver":"^7.5.1","onetime":"^6.0.0","pkg-dir":"^7.0.0","has-yarn":"^3.0.0","inquirer":"^9.2.6","npm-name":"^7.1.0","exit-hook":"^3.2.0","is-scoped":"^3.0.0","p-memoize":"^7.1.1","p-timeout":"^6.1.1","cosmiconfig":"^8.1.3","escape-goat":"^4.0.0","ignore-walk":"^6.0.3","issue-regex":"^4.1.0","listr-input":"^0.2.1","log-symbols":"^5.1.0","path-exists":"^5.0.0","read-pkg-up":"^9.1.0","import-local":"^3.1.0","terminal-link":"^3.0.0","is-interactive":"^2.0.0","hosted-git-info":"^6.1.1","update-notifier":"^6.0.2","symbol-observable":"^4.0.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^5.0.0","is-installed-globally":"^0.4.0","new-github-release-url":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.54.2","ava":"^5.3.0","sinon":"^15.1.0","tempy":"^3.0.0","esmock":"^2.2.3","fs-extra":"^11.1.1","move-file":"^3.1.0","write-pkg":"^5.1.0","common-tags":"^1.8.2"},"_npmOperationalInternal":{"tmp":"tmp/np_8.0.4_1686592327632_0.1756648996144432","host":"s3://npm-registry-packages"}},"9.0.0":{"name":"np","version":"9.0.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@9.0.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"itaisteinherz@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"ava":{"files":["!test/fixtures","!test/_helpers"],"nodeArguments":["--loader=esmock","--no-warnings=ExperimentalWarning"],"environmentVariables":{"HOME":"/tmp","FORCE_HYPERLINK":"1","GIT_AUTHOR_NAME":"test","GIT_AUTHOR_EMAIL":"test@example.com","GIT_COMMITTER_NAME":"test","GIT_COMMITTER_EMAIL":"test@example.com"}},"bin":{"np":"source/cli.js"},"dist":{"shasum":"f93e27951069cf3cb715cb9e7f1b6665cc91be1c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-9.0.0.tgz","fileCount":18,"integrity":"sha512-i6s+p2+Ur2QxfN7fWp3j2/mW8DiIvseYKMH8mXUjHCfTmJTosx+G5bgFlws6P/H4XYyt9NFGCbspWe3W/MUIpA==","signatures":[{"sig":"MEYCIQDdOHz2dCDcAU6jNNKyJynymh3g4mYXpFFAnhFhCdaRhwIhAKJMo+oNaID2VHdSjqmnPpWSp2MQplRwQooiRNBk2wNn","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":69226},"type":"module","engines":{"git":">=2.11.0","npm":">=9","node":">=18","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"88883072a9f39376944bb4a0fbcc81abd5cf1c3f","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"9.2.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"18.18.2","dependencies":{"ow":"^1.1.1","del":"^7.1.0","meow":"^12.1.1","open":"^9.1.0","rxjs":"^7.8.1","chalk":"^5.3.0","execa":"^8.0.1","listr":"^0.14.3","semver":"^7.5.4","onetime":"^7.0.0","pkg-dir":"^8.0.0","has-yarn":"^3.0.0","inquirer":"^9.2.12","npm-name":"^7.1.1","read-pkg":"^9.0.1","exit-hook":"^4.0.0","is-scoped":"^3.0.0","p-memoize":"^7.1.1","p-timeout":"^6.1.2","cosmiconfig":"^8.3.6","escape-goat":"^4.0.0","ignore-walk":"^6.0.3","issue-regex":"^4.1.0","listr-input":"^0.2.1","log-symbols":"^6.0.0","path-exists":"^5.0.0","import-local":"^3.1.0","terminal-link":"^3.0.0","chalk-template":"^1.1.0","is-interactive":"^2.0.0","hosted-git-info":"^7.0.1","read-package-up":"^11.0.0","update-notifier":"^7.0.0","symbol-observable":"^4.0.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^5.0.0","is-installed-globally":"^1.0.0","new-github-release-url":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.56.0","ava":"^5.3.1","sinon":"^17.0.1","tempy":"^3.1.0","esmock":"^2.6.0","map-obj":"^5.0.2","fs-extra":"^11.1.1","strip-ansi":"^7.1.0","common-tags":"^1.8.2","@types/semver":"^7.5.6","write-package":"^7.0.0","@sindresorhus/is":"^6.1.0"},"_npmOperationalInternal":{"tmp":"tmp/np_9.0.0_1701084437404_0.7080371927272711","host":"s3://npm-registry-packages"}},"9.1.0":{"name":"np","version":"9.1.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@9.1.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"itaisteinherz@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"ava":{"files":["!test/fixtures","!test/_helpers"],"nodeArguments":["--loader=esmock","--no-warnings=ExperimentalWarning"],"environmentVariables":{"HOME":"/tmp","FORCE_HYPERLINK":"1","GIT_AUTHOR_NAME":"test","GIT_AUTHOR_EMAIL":"test@example.com","GIT_COMMITTER_NAME":"test","GIT_COMMITTER_EMAIL":"test@example.com"}},"bin":{"np":"source/cli.js"},"dist":{"shasum":"549dd9ae3599fac2d504dd1a5f315e42f70f536b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-9.1.0.tgz","fileCount":19,"integrity":"sha512-c1QCU/+qN2N6epFyW4HpfIG5/wLIBOzmvjb2isjbecRK5qhHNjS67WnZ93jPScL1N3Iss7LfS9RFhpdj/VD7qQ==","signatures":[{"sig":"MEUCIQCyVoNf6AmEOwBPo3qoM2+u67svtM1PUW5H08RaYcPiFwIgai5B8wL5gVGCsQREKD/huXKPChAcTafN56q2hT8aGxY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":70990},"type":"module","engines":{"git":">=2.11.0","npm":">=9","node":">=18","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"d49dd4fee6521c37f14e4d23c9bcb91df9293a24","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"9.2.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"18.18.2","dependencies":{"ow":"^1.1.1","del":"^7.1.0","meow":"^12.1.1","open":"^9.1.0","rxjs":"^7.8.1","chalk":"^5.3.0","execa":"^8.0.1","listr":"^0.14.3","semver":"^7.5.4","onetime":"^7.0.0","pkg-dir":"^8.0.0","has-yarn":"^3.0.0","inquirer":"^9.2.12","npm-name":"^7.1.1","read-pkg":"^9.0.1","exit-hook":"^4.0.0","is-scoped":"^3.0.0","p-memoize":"^7.1.1","p-timeout":"^6.1.2","cosmiconfig":"^8.3.6","escape-goat":"^4.0.0","ignore-walk":"^6.0.3","issue-regex":"^4.1.0","listr-input":"^0.2.1","log-symbols":"^6.0.0","path-exists":"^5.0.0","import-local":"^3.1.0","terminal-link":"^3.0.0","chalk-template":"^1.1.0","is-interactive":"^2.0.0","hosted-git-info":"^7.0.1","read-package-up":"^11.0.0","update-notifier":"^7.0.0","symbol-observable":"^4.0.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^5.0.0","is-installed-globally":"^1.0.0","new-github-release-url":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.56.0","ava":"^5.3.1","sinon":"^17.0.1","tempy":"^3.1.0","esmock":"^2.6.0","map-obj":"^5.0.2","fs-extra":"^11.1.1","strip-ansi":"^7.1.0","common-tags":"^1.8.2","@types/semver":"^7.5.6","write-package":"^7.0.0","@sindresorhus/is":"^6.1.0"},"_npmOperationalInternal":{"tmp":"tmp/np_9.1.0_1701785798060_0.5626840546505298","host":"s3://npm-registry-packages"}},"9.2.0":{"name":"np","version":"9.2.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@9.2.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"itaisteinherz@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"ava":{"files":["!test/fixtures","!test/_helpers"],"nodeArguments":["--loader=esmock","--no-warnings=ExperimentalWarning"],"environmentVariables":{"HOME":"/tmp","FORCE_HYPERLINK":"1","GIT_AUTHOR_NAME":"test","GIT_AUTHOR_EMAIL":"test@example.com","GIT_COMMITTER_NAME":"test","GIT_COMMITTER_EMAIL":"test@example.com"}},"bin":{"np":"source/cli.js"},"dist":{"shasum":"93323e1535b47317f02885e726f2aa0f41c14ac8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-9.2.0.tgz","fileCount":19,"integrity":"sha512-VYA8IKyx5XJqROr2vu8NAstfgBznrnOu3PUByFl3TBwzQVkeGC+gzOPzGbvYKM1QwlX6Gt7kVSPMzDP4qkSs1g==","signatures":[{"sig":"MEUCIQC00qJhmLqE2gzbQqtF2yLTDsKgAQalYQ3cn/H0zRShNAIgQECgMJO74y1EKcSXCPZzhJTU7SnRSYBMM4FQgpfH7Hs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":71903},"type":"module","engines":{"git":">=2.11.0","npm":">=9","node":">=18","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"37d4bc9a71b04019df22f6263cc03e23283a558f","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"9.2.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"21.2.0","dependencies":{"ow":"^1.1.1","del":"^7.1.0","meow":"^12.1.1","open":"^9.1.0","rxjs":"^7.8.1","chalk":"^5.3.0","execa":"^8.0.1","listr":"^0.14.3","semver":"^7.5.4","onetime":"^7.0.0","pkg-dir":"^8.0.0","has-yarn":"^3.0.0","inquirer":"^9.2.12","npm-name":"^7.1.1","read-pkg":"^9.0.1","exit-hook":"^4.0.0","is-scoped":"^3.0.0","p-memoize":"^7.1.1","p-timeout":"^6.1.2","cosmiconfig":"^8.3.6","escape-goat":"^4.0.0","ignore-walk":"^6.0.3","issue-regex":"^4.1.0","listr-input":"^0.2.1","log-symbols":"^6.0.0","path-exists":"^5.0.0","import-local":"^3.1.0","terminal-link":"^3.0.0","chalk-template":"^1.1.0","is-interactive":"^2.0.0","hosted-git-info":"^7.0.1","read-package-up":"^11.0.0","update-notifier":"^7.0.0","symbol-observable":"^4.0.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^5.0.0","is-installed-globally":"^1.0.0","new-github-release-url":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.56.0","ava":"^5.3.1","sinon":"^17.0.1","tempy":"^3.1.0","esmock":"^2.6.0","map-obj":"^5.0.2","fs-extra":"^11.1.1","strip-ansi":"^7.1.0","common-tags":"^1.8.2","@types/semver":"^7.5.6","write-package":"^7.0.0","@sindresorhus/is":"^6.1.0"},"_npmOperationalInternal":{"tmp":"tmp/np_9.2.0_1702129491858_0.9247011274523333","host":"s3://npm-registry-packages"}},"10.0.0":{"name":"np","version":"10.0.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@10.0.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"itaisteinherz@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"ava":{"files":["!test/fixtures","!test/_helpers"],"nodeArguments":["--loader=esmock","--no-warnings=ExperimentalWarning"],"environmentVariables":{"HOME":"/tmp","FORCE_HYPERLINK":"1","GIT_AUTHOR_NAME":"test","GIT_AUTHOR_EMAIL":"test@example.com","GIT_COMMITTER_NAME":"test","GIT_COMMITTER_EMAIL":"test@example.com"}},"bin":{"np":"source/cli.js"},"dist":{"shasum":"d6f7bd9a8e8e49f8418652a8a3a0cfdfbe1cd979","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-10.0.0.tgz","fileCount":20,"integrity":"sha512-goe1G6f2pkx6dJaeMGi4WV6z/0eKI2dh+O9fzQVOwgYbP6fYi6lJvPF5yhcROqh50pg+94nZ2ZFo42Ogakz5FQ==","signatures":[{"sig":"MEYCIQDeMuvlcqKgb9fjQeqmKshwJkoNhauM66hntr+o6v9RQQIhANm8truLDckZtHu5+csXq1lcKd+x+W7ixpZFkxBHmtsZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":74860},"type":"module","engines":{"git":">=2.11.0","npm":">=9","node":">=18","pnpm":">=8","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"4bc37b04ef304c9eb06065541f252a0f4e6fd63e","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"9.2.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"21.6.2","dependencies":{"ow":"^1.1.1","del":"^7.1.0","meow":"^13.1.0","open":"^10.0.4","rxjs":"^7.8.1","chalk":"^5.3.0","execa":"^8.0.1","listr":"^0.14.3","semver":"^7.6.0","onetime":"^7.0.0","pkg-dir":"^8.0.0","inquirer":"^9.2.15","npm-name":"^8.0.0","read-pkg":"^9.0.1","exit-hook":"^4.0.0","is-scoped":"^3.0.0","p-memoize":"^7.1.1","p-timeout":"^6.1.2","cosmiconfig":"^8.3.6","escape-goat":"^4.0.0","ignore-walk":"^6.0.3","issue-regex":"^4.1.0","listr-input":"^0.2.1","log-symbols":"^6.0.0","path-exists":"^5.0.0","import-local":"^3.1.0","terminal-link":"^3.0.0","chalk-template":"^1.1.0","is-interactive":"^2.0.0","hosted-git-info":"^7.0.1","read-package-up":"^11.0.0","update-notifier":"^7.0.0","symbol-observable":"^4.0.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^5.0.0","is-installed-globally":"^1.0.0","new-github-release-url":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.57.0","ava":"^5.3.1","sinon":"^17.0.1","tempy":"^3.1.0","esmock":"^2.6.3","map-obj":"^5.0.2","fs-extra":"^11.1.1","strip-ansi":"^7.1.0","common-tags":"^1.8.2","@types/semver":"^7.5.8","write-package":"^7.0.1","@sindresorhus/is":"^6.1.0"},"_npmOperationalInternal":{"tmp":"tmp/np_10.0.0_1708956681637_0.2881147999152276","host":"s3://npm-registry-packages"}},"10.0.1":{"name":"np","version":"10.0.1","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@10.0.1","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"itaisteinherz@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"ava":{"files":["!test/fixtures","!test/_helpers"],"nodeArguments":["--loader=esmock","--no-warnings=ExperimentalWarning"],"environmentVariables":{"HOME":"/tmp","FORCE_HYPERLINK":"1","GIT_AUTHOR_NAME":"test","GIT_AUTHOR_EMAIL":"test@example.com","GIT_COMMITTER_NAME":"test","GIT_COMMITTER_EMAIL":"test@example.com"}},"bin":{"np":"source/cli.js"},"dist":{"shasum":"550658afd94b6531562ca942ef762e411c03f41e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-10.0.1.tgz","fileCount":20,"integrity":"sha512-3yP6WBrbyEvjTBpOxVYtinFf+vGfX+XNZXC1+Jjj/TWJjbt/GIpUz1BNvuCi7sqHtpVBJnnOIkH7yg3d1aK9lg==","signatures":[{"sig":"MEYCIQCtQEMD44YU4XYNbzyMIZwZDm73VxGopChEMTCCuYknoAIhAJHKorh9liLnhpmc5QEIUnfggL87fAaDuLb8CymfFIxZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":74799},"type":"module","engines":{"git":">=2.11.0","npm":">=9","node":">=18","pnpm":">=8","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"da18f86875f187463ed7e8c4f80297e435790595","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"9.2.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"20.11.1","dependencies":{"del":"^7.1.0","meow":"^13.2.0","open":"^10.0.4","rxjs":"^7.8.1","chalk":"^5.3.0","execa":"^8.0.1","listr":"^0.14.3","semver":"^7.6.0","onetime":"^7.0.0","pkg-dir":"^8.0.0","inquirer":"^9.2.15","npm-name":"^8.0.0","read-pkg":"^9.0.1","exit-hook":"^4.0.0","is-scoped":"^3.0.0","p-memoize":"^7.1.1","p-timeout":"^6.1.2","cosmiconfig":"^8.3.6","escape-goat":"^4.0.0","ignore-walk":"^6.0.4","issue-regex":"^4.1.0","listr-input":"^0.2.1","log-symbols":"^6.0.0","path-exists":"^5.0.0","import-local":"^3.1.0","terminal-link":"^3.0.0","chalk-template":"^1.1.0","is-interactive":"^2.0.0","hosted-git-info":"^7.0.1","read-package-up":"^11.0.0","update-notifier":"^7.0.0","symbol-observable":"^4.0.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^5.0.0","is-installed-globally":"^1.0.0","new-github-release-url":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.57.0","ava":"^6.1.2","sinon":"^17.0.1","tempy":"^3.1.0","esmock":"^2.6.4","map-obj":"^5.0.2","fs-extra":"^11.2.0","strip-ansi":"^7.1.0","common-tags":"^1.8.2","@types/semver":"^7.5.8","write-package":"^7.0.1","@sindresorhus/is":"^6.2.0"},"_npmOperationalInternal":{"tmp":"tmp/np_10.0.1_1710310181862_0.9057146786568939","host":"s3://npm-registry-packages"}},"10.0.2":{"name":"np","version":"10.0.2","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@10.0.2","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"itaisteinherz@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"ava":{"files":["!test/fixtures","!test/_helpers"],"nodeArguments":["--loader=esmock","--no-warnings=ExperimentalWarning"],"environmentVariables":{"HOME":"/tmp","FORCE_HYPERLINK":"1","GIT_AUTHOR_NAME":"test","GIT_AUTHOR_EMAIL":"test@example.com","GIT_COMMITTER_NAME":"test","GIT_COMMITTER_EMAIL":"test@example.com"}},"bin":{"np":"source/cli.js"},"dist":{"shasum":"4be34f0ac7fc2bdc32c1d0f6064d705622d784e2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-10.0.2.tgz","fileCount":20,"integrity":"sha512-GVneZPeBZ/KSoVQyW9NjagM1KWFIheGcV2HtrCwYfe4L+z02lQq8lQXVw8eb8vM+weSdhqtzZ57ymaRwubvoTg==","signatures":[{"sig":"MEUCIQCooAt6uR6jtKY9HZTCJP6Vg3VT7RCxjkDfz98lbSBoKgIgM3yMUNVQKTlvQhnScyLeDVGNfJbOrplM8/iWowhXuQU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":74912},"type":"module","engines":{"git":">=2.11.0","npm":">=9","node":">=18","pnpm":">=8","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"af1a048c0cd22974eb0bc81a4118b2b832c9396a","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"9.2.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"18.19.1","dependencies":{"del":"^7.1.0","meow":"^13.2.0","open":"^10.0.4","rxjs":"^7.8.1","chalk":"^5.3.0","execa":"^8.0.1","listr":"^0.14.3","semver":"^7.6.0","onetime":"^7.0.0","pkg-dir":"^8.0.0","inquirer":"^9.2.15","npm-name":"^8.0.0","read-pkg":"^9.0.1","exit-hook":"^4.0.0","is-scoped":"^3.0.0","p-memoize":"^7.1.1","p-timeout":"^6.1.2","cosmiconfig":"^8.3.6","escape-goat":"^4.0.0","ignore-walk":"^6.0.4","issue-regex":"^4.1.0","listr-input":"^0.2.1","log-symbols":"^6.0.0","path-exists":"^5.0.0","import-local":"^3.1.0","terminal-link":"^3.0.0","chalk-template":"^1.1.0","is-interactive":"^2.0.0","hosted-git-info":"^7.0.1","read-package-up":"^11.0.0","update-notifier":"^7.0.0","symbol-observable":"^4.0.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^5.0.0","is-installed-globally":"^1.0.0","new-github-release-url":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.57.0","ava":"^6.1.2","sinon":"^17.0.1","tempy":"^3.1.0","esmock":"^2.6.4","map-obj":"^5.0.2","fs-extra":"^11.2.0","strip-ansi":"^7.1.0","common-tags":"^1.8.2","@types/semver":"^7.5.8","write-package":"^7.0.1","@sindresorhus/is":"^6.2.0"},"_npmOperationalInternal":{"tmp":"tmp/np_10.0.2_1711262743595_0.27225922139012293","host":"s3://npm-registry-packages"}},"10.0.3":{"name":"np","version":"10.0.3","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@10.0.3","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"itaisteinherz@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"ava":{"files":["!test/fixtures","!test/_helpers"],"nodeArguments":["--loader=esmock","--no-warnings=ExperimentalWarning"],"environmentVariables":{"HOME":"/tmp","FORCE_HYPERLINK":"1","GIT_AUTHOR_NAME":"test","GIT_AUTHOR_EMAIL":"test@example.com","GIT_COMMITTER_NAME":"test","GIT_COMMITTER_EMAIL":"test@example.com"}},"bin":{"np":"source/cli.js"},"dist":{"shasum":"777e0e52fcc874949d28fff3cbdb54b9fffd4066","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-10.0.3.tgz","fileCount":20,"integrity":"sha512-JioZkOd7DtT1nkGnVOUrPfD7P3SlNbjsT2dHxMDsxpZcpd44iP4J4Nn9OTjCAhf9LK4EezTcIfU7QadyupEvxg==","signatures":[{"sig":"MEQCIG03o7Z0ZahtS6LJSs2A9y/hz1ML7+vdRIt+jvaOszK7AiApcs4fcQDuTjH9v8hm+Zx6IAZghaWojFaGHKifp8lC2Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":75390},"type":"module","engines":{"git":">=2.11.0","npm":">=9","node":">=18","pnpm":">=8","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"ad1a980f8fdb39c0d73403c973fd97b44c0bf23e","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"9.2.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"20.11.1","dependencies":{"del":"^7.1.0","meow":"^13.2.0","open":"^10.0.4","rxjs":"^7.8.1","chalk":"^5.3.0","execa":"^8.0.1","listr":"^0.14.3","semver":"^7.6.0","onetime":"^7.0.0","pkg-dir":"^8.0.0","inquirer":"^9.2.15","npm-name":"^8.0.0","read-pkg":"^9.0.1","exit-hook":"^4.0.0","is-scoped":"^3.0.0","p-memoize":"^7.1.1","p-timeout":"^6.1.2","cosmiconfig":"^8.3.6","escape-goat":"^4.0.0","ignore-walk":"^6.0.4","issue-regex":"^4.1.0","listr-input":"^0.2.1","log-symbols":"^6.0.0","path-exists":"^5.0.0","import-local":"^3.1.0","terminal-link":"^3.0.0","chalk-template":"^1.1.0","is-interactive":"^2.0.0","hosted-git-info":"^7.0.1","read-package-up":"^11.0.0","update-notifier":"^7.0.0","symbol-observable":"^4.0.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^5.0.0","is-installed-globally":"^1.0.0","new-github-release-url":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.57.0","ava":"^6.1.2","sinon":"^17.0.1","tempy":"^3.1.0","esmock":"^2.6.4","map-obj":"^5.0.2","fs-extra":"^11.2.0","strip-ansi":"^7.1.0","common-tags":"^1.8.2","@types/semver":"^7.5.8","write-package":"^7.0.1","@sindresorhus/is":"^6.2.0"},"_npmOperationalInternal":{"tmp":"tmp/np_10.0.3_1712465262678_0.4169217775145653","host":"s3://npm-registry-packages"}},"10.0.4":{"name":"np","version":"10.0.4","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@10.0.4","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"itaisteinherz@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"ava":{"files":["!test/fixtures","!test/_helpers"],"nodeArguments":["--loader=esmock","--no-warnings=ExperimentalWarning"],"environmentVariables":{"HOME":"/tmp","FORCE_HYPERLINK":"1","GIT_AUTHOR_NAME":"test","GIT_AUTHOR_EMAIL":"test@example.com","GIT_COMMITTER_NAME":"test","GIT_COMMITTER_EMAIL":"test@example.com"}},"bin":{"np":"source/cli.js"},"dist":{"shasum":"a652a6318efe3f48d9fa2553041c46521420d6b4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-10.0.4.tgz","fileCount":20,"integrity":"sha512-+oGAzU9lJJRcjKylJH8rp3ewWvAjkgxaQZ+IS1hHylOx3P+46xiZmfBpK5fRpLRQMIuMzXxlgen1UW5XsG+wwQ==","signatures":[{"sig":"MEQCIEr5/h9aYOX6H6ysI0MqoTQYz6mWIDw6Vqzxk3B1+R8eAiAqlGHdrutTmbmEFUnOnXzh70c/IdRqCFOuQeZv0XvErA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":75553},"type":"module","engines":{"git":">=2.11.0","npm":">=9","node":">=18","pnpm":">=8","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"5a83ad957f374cdafea9ef8abe52a6076f3f03bb","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"9.2.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"20.11.1","dependencies":{"del":"^7.1.0","meow":"^13.2.0","open":"^10.0.4","rxjs":"^7.8.1","chalk":"^5.3.0","execa":"^8.0.1","listr":"^0.14.3","semver":"^7.6.0","onetime":"^7.0.0","pkg-dir":"^8.0.0","inquirer":"^9.2.15","npm-name":"^8.0.0","read-pkg":"^9.0.1","exit-hook":"^4.0.0","is-scoped":"^3.0.0","p-memoize":"^7.1.1","p-timeout":"^6.1.2","cosmiconfig":"^8.3.6","escape-goat":"^4.0.0","ignore-walk":"^6.0.4","issue-regex":"^4.1.0","listr-input":"^0.2.1","log-symbols":"^6.0.0","path-exists":"^5.0.0","import-local":"^3.1.0","terminal-link":"^3.0.0","chalk-template":"^1.1.0","is-interactive":"^2.0.0","hosted-git-info":"^7.0.1","read-package-up":"^11.0.0","update-notifier":"^7.0.0","symbol-observable":"^4.0.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^5.0.0","is-installed-globally":"^1.0.0","new-github-release-url":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.57.0","ava":"^6.1.2","sinon":"^17.0.1","tempy":"^3.1.0","esmock":"^2.6.4","map-obj":"^5.0.2","fs-extra":"^11.2.0","strip-ansi":"^7.1.0","common-tags":"^1.8.2","@types/semver":"^7.5.8","write-package":"^7.0.1","@sindresorhus/is":"^6.2.0"},"_npmOperationalInternal":{"tmp":"tmp/np_10.0.4_1713366641173_0.6826906032336661","host":"s3://npm-registry-packages"}},"10.0.5":{"name":"np","version":"10.0.5","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@10.0.5","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"itaisteinherz@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"ava":{"files":["!test/fixtures","!test/_helpers"],"nodeArguments":["--loader=esmock","--no-warnings=ExperimentalWarning"],"environmentVariables":{"HOME":"/tmp","FORCE_HYPERLINK":"1","GIT_AUTHOR_NAME":"test","GIT_AUTHOR_EMAIL":"test@example.com","GIT_COMMITTER_NAME":"test","GIT_COMMITTER_EMAIL":"test@example.com"}},"bin":{"np":"source/cli.js"},"dist":{"shasum":"575c056b54534534ccbc978e6699d8bfcd4740c4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-10.0.5.tgz","fileCount":20,"integrity":"sha512-Tu270vVvsh92uh6XDXrGS6D94PhzxQYqM8uUxftYVp0B8qXl78dJRYwQ9wfYMOBB9ynlF79eWlUtPUxPzKGddQ==","signatures":[{"sig":"MEQCIHm6wjc/T3NR3yBKqTsDdpk7OUk5EiWaDNAO6yYqdbjYAiB284MeodQXnaDMkkOXO8fXgmRMeJ9DpLTsqtBfHUnimA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":75530},"type":"module","engines":{"git":">=2.11.0","npm":">=9","node":">=18","pnpm":">=8","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"d2c66a8316c4c3c8b0eaafd83073feb53cc2b491","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"9.2.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"20.11.1","dependencies":{"del":"^7.1.0","meow":"^13.2.0","open":"^10.0.4","rxjs":"^7.8.1","chalk":"^5.3.0","execa":"^8.0.1","listr":"^0.14.3","semver":"^7.6.0","onetime":"^7.0.0","pkg-dir":"^8.0.0","inquirer":"^9.2.15","npm-name":"^8.0.0","read-pkg":"^9.0.1","exit-hook":"^4.0.0","is-scoped":"^3.0.0","p-memoize":"^7.1.1","p-timeout":"^6.1.2","cosmiconfig":"^8.3.6","escape-goat":"^4.0.0","ignore-walk":"^6.0.4","issue-regex":"^4.1.0","listr-input":"^0.2.1","log-symbols":"^6.0.0","path-exists":"^5.0.0","import-local":"^3.1.0","terminal-link":"^3.0.0","chalk-template":"^1.1.0","is-interactive":"^2.0.0","hosted-git-info":"^7.0.1","read-package-up":"^11.0.0","update-notifier":"^7.0.0","symbol-observable":"^4.0.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^5.0.0","is-installed-globally":"^1.0.0","new-github-release-url":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.57.0","ava":"^6.1.2","sinon":"^17.0.1","tempy":"^3.1.0","esmock":"^2.6.4","map-obj":"^5.0.2","fs-extra":"^11.2.0","strip-ansi":"^7.1.0","common-tags":"^1.8.2","@types/semver":"^7.5.8","write-package":"^7.0.1","@sindresorhus/is":"^6.2.0"},"_npmOperationalInternal":{"tmp":"tmp/np_10.0.5_1713497719017_0.8857905969478823","host":"s3://npm-registry-packages"}},"10.0.6":{"name":"np","version":"10.0.6","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@10.0.6","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"itaisteinherz@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"ava":{"files":["!test/fixtures","!test/_helpers"],"nodeArguments":["--loader=esmock","--no-warnings=ExperimentalWarning"],"environmentVariables":{"HOME":"/tmp","FORCE_HYPERLINK":"1","GIT_AUTHOR_NAME":"test","GIT_AUTHOR_EMAIL":"test@example.com","GIT_COMMITTER_NAME":"test","GIT_COMMITTER_EMAIL":"test@example.com"}},"bin":{"np":"source/cli.js"},"dist":{"shasum":"054d1ac283c995fb29cfa38bfabeaf483406317e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-10.0.6.tgz","fileCount":20,"integrity":"sha512-173uUvFDmHtme1ra3JDMjYzqa94XHJAHoNae6lCA4mJWMIz073x9FE2O8SHMMjKXlHetRdOXufLUjdimRxXR3A==","signatures":[{"sig":"MEYCIQDS4aLD/BiYbpphy7WoEn+qmY5PtpDALWVWwgucZlLr7AIhAIzI9qSKR5F5EiAMfhidVoOi6q5M3bo+f9hCcO/H9lB1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":75664},"type":"module","engines":{"git":">=2.11.0","npm":">=9","node":">=18","pnpm":">=8","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"a9e8fc78f06f5d429f5040d4ad24c696b27e30f4","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"10.6.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"22.2.0","dependencies":{"del":"^7.1.0","meow":"^13.2.0","open":"^10.0.4","rxjs":"^7.8.1","chalk":"^5.3.0","execa":"^8.0.1","listr":"^0.14.3","semver":"^7.6.0","onetime":"^7.0.0","pkg-dir":"^8.0.0","inquirer":"^9.2.15","npm-name":"^8.0.0","read-pkg":"^9.0.1","exit-hook":"^4.0.0","is-scoped":"^3.0.0","p-memoize":"^7.1.1","p-timeout":"^6.1.2","cosmiconfig":"^8.3.6","escape-goat":"^4.0.0","ignore-walk":"^6.0.4","issue-regex":"^4.1.0","listr-input":"^0.2.1","log-symbols":"^6.0.0","path-exists":"^5.0.0","import-local":"^3.1.0","terminal-link":"^3.0.0","chalk-template":"^1.1.0","is-interactive":"^2.0.0","hosted-git-info":"^7.0.1","read-package-up":"^11.0.0","update-notifier":"^7.0.0","symbol-observable":"^4.0.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^5.0.0","is-installed-globally":"^1.0.0","new-github-release-url":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.57.0","ava":"^6.1.2","sinon":"^17.0.1","tempy":"^3.1.0","esmock":"^2.6.4","map-obj":"^5.0.2","fs-extra":"^11.2.0","strip-ansi":"^7.1.0","common-tags":"^1.8.2","@types/semver":"^7.5.8","write-package":"^7.0.1","@sindresorhus/is":"^6.2.0"},"_npmOperationalInternal":{"tmp":"tmp/np_10.0.6_1718757468865_0.7978794793860127","host":"s3://npm-registry-packages"}},"10.0.7":{"name":"np","version":"10.0.7","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@10.0.7","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"itaisteinherz@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"ava":{"files":["!test/fixtures","!test/_helpers"],"nodeArguments":["--loader=esmock","--no-warnings=ExperimentalWarning"],"environmentVariables":{"HOME":"/tmp","FORCE_HYPERLINK":"1","GIT_AUTHOR_NAME":"test","GIT_AUTHOR_EMAIL":"test@example.com","GIT_COMMITTER_NAME":"test","GIT_COMMITTER_EMAIL":"test@example.com"}},"bin":{"np":"source/cli.js"},"dist":{"shasum":"6f0dc3c7440c8ac95d55a2fa5d488c3d0848b7a5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-10.0.7.tgz","fileCount":20,"integrity":"sha512-vIPKQwOYKpQU40PU5x/vLfN2haj8ObxMvR1QGt7EZnBPWdm4WEbHdumYAnMV7AeR9kACsMqcqAP37sAo5cW5jA==","signatures":[{"sig":"MEUCIQCnAuWyXIUbBy9KWGxzS7rq65fCEvBl0+HqLw3i4VyQGAIgeNPweMEoFJPhI9rfr6VuNnYhPEmrVM6WJkmMsRYTflE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":75973},"type":"module","engines":{"git":">=2.11.0","npm":">=9","node":">=18","pnpm":">=8","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"1965a6b3dfe8ea78806b70c5ebe23a95a77b4156","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"10.6.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"18.20.2","dependencies":{"del":"^7.1.0","meow":"^13.2.0","open":"^10.0.4","rxjs":"^7.8.1","chalk":"^5.3.0","execa":"^8.0.1","listr":"^0.14.3","semver":"^7.6.0","onetime":"^7.0.0","pkg-dir":"^8.0.0","inquirer":"^9.2.15","npm-name":"^8.0.0","read-pkg":"^9.0.1","exit-hook":"^4.0.0","is-scoped":"^3.0.0","p-memoize":"^7.1.1","p-timeout":"^6.1.2","cosmiconfig":"^8.3.6","escape-goat":"^4.0.0","ignore-walk":"^6.0.4","issue-regex":"^4.1.0","listr-input":"^0.2.1","log-symbols":"^6.0.0","path-exists":"^5.0.0","import-local":"^3.1.0","terminal-link":"^3.0.0","chalk-template":"^1.1.0","is-interactive":"^2.0.0","hosted-git-info":"^7.0.1","read-package-up":"^11.0.0","update-notifier":"^7.0.0","symbol-observable":"^4.0.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^5.0.0","is-installed-globally":"^1.0.0","new-github-release-url":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.57.0","ava":"^6.1.2","sinon":"^17.0.1","tempy":"^3.1.0","esmock":"^2.6.4","map-obj":"^5.0.2","fs-extra":"^11.2.0","strip-ansi":"^7.1.0","common-tags":"^1.8.2","@types/semver":"^7.5.8","write-package":"^7.0.1","@sindresorhus/is":"^6.2.0"},"_npmOperationalInternal":{"tmp":"tmp/np_10.0.7_1721170713923_0.47452567118555744","host":"s3://npm-registry-packages"}},"10.1.0":{"name":"np","version":"10.1.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@10.1.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"itaisteinherz@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"ava":{"files":["!test/fixtures","!test/_helpers"],"nodeArguments":["--loader=esmock","--no-warnings=ExperimentalWarning"],"environmentVariables":{"HOME":"/tmp","FORCE_HYPERLINK":"1","GIT_AUTHOR_NAME":"test","GIT_AUTHOR_EMAIL":"test@example.com","GIT_COMMITTER_NAME":"test","GIT_COMMITTER_EMAIL":"test@example.com"}},"bin":{"np":"source/cli.js"},"dist":{"shasum":"bf094036c80a59b73947a3819f8f576fe28ee110","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-10.1.0.tgz","fileCount":20,"integrity":"sha512-/TvpO0hSJ2rAg1JnJ8Hxr4FoLihe4VCEOOBxMcejhtMvMdofghaO0Qz/5AOBKLtog83vjVFkTgLOxu1z+FJHOg==","signatures":[{"sig":"MEQCIH+Y0K8XO2XBAZtKioT3FhSb9hDJJ8yYCN5rZjKflt9mAiAumnB6KTAH3e6C21koyF8Z1uXo6rsM6pgR9lciitMWWA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":76815},"type":"module","engines":{"bun":">=1","git":">=2.11.0","npm":">=9","node":">=18","pnpm":">=8","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"37fc2e9dcb7d83af8981521ece4daf8b3ff9bef0","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"10.6.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"18.20.4","dependencies":{"del":"^8.0.0","meow":"^13.2.0","open":"^10.0.4","rxjs":"^7.8.1","chalk":"^5.3.0","execa":"^8.0.1","listr":"^0.14.3","semver":"^7.6.0","onetime":"^7.0.0","pkg-dir":"^8.0.0","inquirer":"^9.2.15","npm-name":"^8.0.0","read-pkg":"^9.0.1","exit-hook":"^4.0.0","is-scoped":"^3.0.0","p-memoize":"^7.1.1","p-timeout":"^6.1.3","cosmiconfig":"^8.3.6","escape-goat":"^4.0.0","ignore-walk":"^7.0.0","issue-regex":"^4.3.0","listr-input":"^0.2.1","log-symbols":"^7.0.0","path-exists":"^5.0.0","import-local":"^3.2.0","terminal-link":"^3.0.0","chalk-template":"^1.1.0","is-interactive":"^2.0.0","hosted-git-info":"^8.0.2","read-package-up":"^11.0.0","update-notifier":"^7.3.1","symbol-observable":"^4.0.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^5.0.0","is-installed-globally":"^1.0.0","new-github-release-url":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.59.3","ava":"^6.2.0","sinon":"^19.0.2","tempy":"^3.1.0","esmock":"^2.6.9","map-obj":"^5.0.2","fs-extra":"^11.2.0","strip-ansi":"^7.1.0","common-tags":"^1.8.2","@types/semver":"^7.5.8","write-package":"^7.1.0","@sindresorhus/is":"^7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/np_10.1.0_1732376298852_0.8841061118193139","host":"s3://npm-registry-packages"}},"10.2.0":{"name":"np","version":"10.2.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@10.2.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"itaisteinherz@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"ava":{"files":["!test/fixtures","!test/_helpers"],"nodeArguments":["--loader=esmock","--no-warnings=ExperimentalWarning"],"environmentVariables":{"HOME":"/tmp","FORCE_HYPERLINK":"1","GIT_AUTHOR_NAME":"test","GIT_AUTHOR_EMAIL":"test@example.com","GIT_COMMITTER_NAME":"test","GIT_COMMITTER_EMAIL":"test@example.com"}},"bin":{"np":"source/cli.js"},"dist":{"shasum":"45542802c78aae23c63a54e18883807ec53dc4b4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-10.2.0.tgz","fileCount":20,"integrity":"sha512-7Pwk8qcsks2c9ETS35aeJSON6uJAbOsx7TwTFzZNUGgH4djT+Yt/p9S7PZuqH5pkcpNUhasne3cDRBzaUtvetg==","signatures":[{"sig":"MEUCIQDHY+h9lom1Ajte7npJTs7+aCizjwOuaZ/BgvdDDjzqtQIgDNfQ5DTzRdL06lQ7KN+MNnlnENJzpTTYb+1f4C4cpBw=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":76843},"type":"module","engines":{"bun":">=1","git":">=2.11.0","npm":">=9","node":">=18","pnpm":">=8","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"e2a2e36f7fac5ca9165bab9f84e578ef17f0c276","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"10.9.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"23.3.0","dependencies":{"del":"^8.0.0","meow":"^13.2.0","open":"^10.0.4","rxjs":"^7.8.1","chalk":"^5.4.1","execa":"^8.0.1","listr":"^0.14.3","semver":"^7.6.0","onetime":"^7.0.0","pkg-dir":"^8.0.0","inquirer":"^12.3.2","npm-name":"^8.0.0","read-pkg":"^9.0.1","exit-hook":"^4.0.0","is-scoped":"^3.0.0","p-memoize":"^7.1.1","p-timeout":"^6.1.4","cosmiconfig":"^8.3.6","escape-goat":"^4.0.0","ignore-walk":"^7.0.0","issue-regex":"^4.3.0","listr-input":"^0.2.1","log-symbols":"^7.0.0","path-exists":"^5.0.0","import-local":"^3.2.0","terminal-link":"^3.0.0","chalk-template":"^1.1.0","is-interactive":"^2.0.0","hosted-git-info":"^8.0.2","read-package-up":"^11.0.0","update-notifier":"^7.3.1","symbol-observable":"^4.0.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^5.0.0","is-installed-globally":"^1.0.0","new-github-release-url":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.60.0","ava":"^6.2.0","sinon":"^19.0.2","tempy":"^3.1.0","esmock":"^2.7.0","map-obj":"^5.0.2","fs-extra":"^11.3.0","strip-ansi":"^7.1.0","common-tags":"^1.8.2","@types/semver":"^7.5.8","write-package":"^7.1.0","@sindresorhus/is":"^7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/np_10.2.0_1737892833836_0.6622719913146053","host":"s3://npm-registry-packages-npm-production"}},"10.3.0":{"name":"np","version":"10.3.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@10.3.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"itaisteinherz@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"ava":{"files":["!test/fixtures","!test/_helpers"],"nodeArguments":["--loader=esmock","--no-warnings=ExperimentalWarning"],"environmentVariables":{"HOME":"/tmp","FORCE_HYPERLINK":"1","GIT_AUTHOR_NAME":"test","GIT_AUTHOR_EMAIL":"test@example.com","GIT_COMMITTER_NAME":"test","GIT_COMMITTER_EMAIL":"test@example.com"}},"bin":{"np":"source/cli.js"},"dist":{"shasum":"8c93d00a9e355efe3361b538480730e035eb4361","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-10.3.0.tgz","fileCount":20,"integrity":"sha512-ERkEM70wpiWxRNwlN3YkpqyE3QGrgKZEiyVvv+Z4Im2mRE9nqCjnS1YFAXVdhGqVP5wpqG8cVc/A2bOJhEYFYQ==","signatures":[{"sig":"MEUCIQD2JDZxHiBw0umi8FJdV453iiUkO8wYPwgzTkTmz1ECRwIgCPdYyZh8hoSrP3jXzVkbtVAhdZ1/vcbBFOy5zgdtQ1s=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":78359},"type":"module","engines":{"bun":">=1","git":">=2.11.0","npm":">=9","node":">=18","pnpm":">=8","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"de75827940bf79b2f49fbf4722b8de3011b72982","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"11.7.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"25.3.0","dependencies":{"del":"^8.0.0","meow":"^13.2.0","open":"^10.0.4","rxjs":"^7.8.1","chalk":"^5.4.1","execa":"^8.0.1","listr":"^0.14.3","semver":"^7.6.0","onetime":"^7.0.0","inquirer":"^12.3.2","npm-name":"^8.0.0","read-pkg":"^9.0.1","exit-hook":"^4.0.0","is-scoped":"^3.0.0","p-memoize":"^7.1.1","p-timeout":"^6.1.4","cosmiconfig":"^8.3.6","escape-goat":"^4.0.0","ignore-walk":"^7.0.0","issue-regex":"^4.3.0","listr-input":"^0.2.1","log-symbols":"^7.0.0","path-exists":"^5.0.0","import-local":"^3.2.0","terminal-link":"^3.0.0","chalk-template":"^1.1.0","is-interactive":"^2.0.0","hosted-git-info":"^8.0.2","read-package-up":"^11.0.0","update-notifier":"^7.3.1","package-directory":"^8.0.0","symbol-observable":"^4.0.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^5.0.0","is-installed-globally":"^1.0.0","new-github-release-url":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.60.0","ava":"^6.2.0","sinon":"^19.0.2","tempy":"^3.1.0","esmock":"^2.7.0","map-obj":"^5.0.2","fs-extra":"^11.3.0","strip-ansi":"^7.1.0","common-tags":"^1.8.2","@types/semver":"^7.5.8","write-package":"^7.1.0","@sindresorhus/is":"^7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/np_10.3.0_1768745078821_0.3583080757396748","host":"s3://npm-registry-packages-npm-production"}},"11.0.0":{"name":"np","version":"11.0.0","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@11.0.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"itaisteinherz@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"xo":{"ignores":["test/fixtures"]},"ava":{"files":["!test/fixtures","!test/_helpers"],"nodeArguments":["--loader=esmock","--no-warnings=ExperimentalWarning"],"environmentVariables":{"HOME":"/tmp","NODE_ENV":"test","FORCE_HYPERLINK":"1","GIT_AUTHOR_NAME":"test","GIT_AUTHOR_EMAIL":"test@example.com","GIT_COMMITTER_NAME":"test","GIT_COMMITTER_EMAIL":"test@example.com"}},"bin":{"np":"source/cli.js"},"dist":{"shasum":"8afba0f00d1b832a5d18863036fbf852ea59604f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-11.0.0.tgz","fileCount":21,"integrity":"sha512-a2a4Dfq0myz178jviPjFVHyqYnNfVy6iBiTkWnQhs1Bs1NPAP5D80LuvnE5CI4qLK5YRc6oiZj0Vsxj9oN/YuQ==","signatures":[{"sig":"MEYCIQD/FDG1y2rnKyGXGF2/gFlIVaSbB5I9N9UdRJfAmM9iowIhAK2kOVZPwI1G98iKkzMf+8r4prP1yE1ZScyUBHBCpcX/","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":101746},"type":"module","engines":{"bun":">=1","git":">=2.11.0","npm":">=9","node":">=20","pnpm":">=8","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"45404ba30a1ddf7bc9d6130b4b7b8fe0ca0a76a7","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"11.7.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"25.3.0","dependencies":{"del":"^8.0.1","meow":"^14.0.0","open":"^11.0.0","rxjs":"^7.8.2","chalk":"^5.6.2","execa":"^9.6.1","listr":"^0.14.3","semver":"^7.7.3","onetime":"^7.0.0","inquirer":"^13.2.0","npm-name":"^8.0.0","read-pkg":"^10.0.0","exit-hook":"^5.0.1","is-scoped":"^3.0.0","p-memoize":"^8.0.0","clipboardy":"^5.0.2","cosmiconfig":"^9.0.0","escape-goat":"^4.0.0","ignore-walk":"^8.0.0","issue-regex":"^4.3.0","listr-input":"^0.2.1","log-symbols":"^7.0.1","path-exists":"^5.0.0","import-local":"^3.2.0","terminal-link":"^5.0.0","chalk-template":"^1.1.2","is-interactive":"^2.0.0","hosted-git-info":"^9.0.2","read-package-up":"^12.0.0","update-notifier":"^7.3.1","package-directory":"^8.0.0","symbol-observable":"^4.0.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^5.0.0","is-installed-globally":"^1.0.0","new-github-release-url":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^1.2.3","ava":"^6.4.1","sinon":"^21.0.1","tempy":"^3.1.0","esmock":"^2.7.3","map-obj":"^6.0.0","fs-extra":"^11.3.3","strip-ansi":"^7.1.2","common-tags":"^1.8.2","@types/semver":"^7.7.1","write-package":"^7.2.0","@sindresorhus/is":"^7.2.0"},"_npmOperationalInternal":{"tmp":"tmp/np_11.0.0_1769048555417_0.7979323686889694","host":"s3://npm-registry-packages-npm-production"}},"11.0.1":{"name":"np","version":"11.0.1","keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"license":"MIT","_id":"np@11.0.1","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"itaisteinherz@gmail.com"}],"homepage":"https://github.com/sindresorhus/np#readme","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"xo":{"ignores":["test/fixtures"]},"ava":{"files":["!test/fixtures","!test/_helpers"],"nodeArguments":["--loader=esmock","--no-warnings=ExperimentalWarning"],"environmentVariables":{"HOME":"/tmp","NODE_ENV":"test","FORCE_HYPERLINK":"1","GIT_AUTHOR_NAME":"test","GIT_AUTHOR_EMAIL":"test@example.com","GIT_COMMITTER_NAME":"test","GIT_COMMITTER_EMAIL":"test@example.com"}},"bin":{"np":"source/cli.js"},"dist":{"shasum":"a1eed6070b763618fc1926c1104be8356b19984f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-11.0.1.tgz","fileCount":21,"integrity":"sha512-1akYJndLbTNwGQTKSiadsA1xRneVo0DigPLhzlpa1VamPreZJH6UtzjahjiDuadypefA+NA+/codG2wK8+Lp0A==","signatures":[{"sig":"MEYCIQDb9ic/rnwF3nJdrp48HuEj97DU8xPaRZKY8ua/FFPSqQIhALwppjL5xvyK3+/zlyrSlaMJUISoscrpZ+DoXOL+3BTO","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":102432},"type":"module","engines":{"bun":">=1","git":">=2.11.0","npm":">=9","node":">=20","pnpm":">=8","yarn":">=1.7.0"},"funding":"https://github.com/sindresorhus/np?sponsor=1","gitHead":"bd60acb32d6da7c79af81b5f630bfbd97b0aaaf8","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/np.git","type":"git"},"_npmVersion":"11.7.0","description":"A better `npm publish`","directories":{},"_nodeVersion":"25.3.0","dependencies":{"del":"^8.0.1","meow":"^14.0.0","open":"^11.0.0","rxjs":"^7.8.2","chalk":"^5.6.2","execa":"^9.6.1","listr":"^0.14.3","semver":"^7.7.3","onetime":"^7.0.0","inquirer":"^13.2.0","npm-name":"^8.0.0","read-pkg":"^10.0.0","exit-hook":"^5.0.1","is-scoped":"^3.0.0","p-memoize":"^8.0.0","clipboardy":"^5.0.2","cosmiconfig":"^9.0.0","escape-goat":"^4.0.0","ignore-walk":"^8.0.0","issue-regex":"^4.3.0","listr-input":"^0.2.1","log-symbols":"^7.0.1","path-exists":"^5.0.0","import-local":"^3.2.0","terminal-link":"^5.0.0","chalk-template":"^1.1.2","is-interactive":"^2.0.0","hosted-git-info":"^9.0.2","read-package-up":"^12.0.0","update-notifier":"^7.3.1","package-directory":"^8.0.0","symbol-observable":"^4.0.0","github-url-from-git":"^1.5.0","escape-string-regexp":"^5.0.0","is-installed-globally":"^1.0.0","new-github-release-url":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^1.2.3","ava":"^6.4.1","sinon":"^21.0.1","tempy":"^3.1.0","esmock":"^2.7.3","map-obj":"^6.0.0","fs-extra":"^11.3.3","strip-ansi":"^7.1.2","common-tags":"^1.8.2","@types/semver":"^7.7.1","write-package":"^7.2.0","@sindresorhus/is":"^7.2.0"},"_npmOperationalInternal":{"tmp":"tmp/np_11.0.1_1769140614479_0.435185069932573","host":"s3://npm-registry-packages-npm-production"}},"11.0.2":{"name":"np","version":"11.0.2","description":"A better `npm publish`","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/np.git"},"funding":"https://github.com/sindresorhus/np?sponsor=1","type":"module","bin":{"np":"source/cli.js"},"engines":{"node":">=20","npm":">=9","git":">=2.11.0","yarn":">=1.7.0","pnpm":">=8","bun":">=1"},"scripts":{"test":"xo && ava"},"keywords":["cli-app","cli","npm","publish","git","push","version","bump","commit"],"dependencies":{"chalk":"^5.6.2","chalk-template":"^1.1.2","clipboardy":"^5.0.2","cosmiconfig":"^9.0.0","del":"^8.0.1","escape-goat":"^4.0.0","escape-string-regexp":"^5.0.0","execa":"^9.6.1","exit-hook":"^5.0.1","github-url-from-git":"^1.5.0","hosted-git-info":"^9.0.2","ignore-walk":"^8.0.0","import-local":"^3.2.0","inquirer":"^13.2.0","is-installed-globally":"^1.0.0","is-interactive":"^2.0.0","is-scoped":"^3.0.0","issue-regex":"^4.3.0","listr":"^0.14.3","listr-input":"^0.2.1","log-symbols":"^7.0.1","meow":"^14.0.0","new-github-release-url":"^2.0.0","npm-name":"^8.0.0","onetime":"^7.0.0","open":"^11.0.0","p-memoize":"^8.0.0","package-directory":"^8.0.0","path-exists":"^5.0.0","read-package-up":"^12.0.0","read-pkg":"^10.0.0","rxjs":"^7.8.2","semver":"^7.7.3","symbol-observable":"^4.0.0","terminal-link":"^5.0.0","update-notifier":"^7.3.1"},"devDependencies":{"@sindresorhus/is":"^7.2.0","@types/semver":"^7.7.1","ava":"^6.4.1","common-tags":"^1.8.2","esmock":"^2.7.3","fs-extra":"^11.3.3","map-obj":"^6.0.0","sinon":"^21.0.1","strip-ansi":"^7.1.2","tempy":"^3.1.0","write-package":"^7.2.0","xo":"^1.2.3"},"ava":{"files":["!test/fixtures","!test/_helpers"],"environmentVariables":{"FORCE_HYPERLINK":"1","HOME":"/tmp","NODE_ENV":"test","GIT_AUTHOR_NAME":"test","GIT_COMMITTER_NAME":"test","GIT_AUTHOR_EMAIL":"test@example.com","GIT_COMMITTER_EMAIL":"test@example.com"},"nodeArguments":["--loader=esmock","--no-warnings=ExperimentalWarning"]},"xo":{"ignores":["test/fixtures"]},"gitHead":"7aac522a97b52bbe68bd3462c9ed9c52dd7dd5a7","_id":"np@11.0.2","bugs":{"url":"https://github.com/sindresorhus/np/issues"},"homepage":"https://github.com/sindresorhus/np#readme","_nodeVersion":"25.3.0","_npmVersion":"11.7.0","dist":{"integrity":"sha512-3dmJJUmJ81DijpXCow9+RmGM/Eb/I9pggql9O2vuATI3Y2xRhVkOBkxLfTHikoyIGqsQ4FiK00IBhnlh7cJdhg==","shasum":"fbf3e78c701300ba949cd48f4ee40b08e99335bf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/np/-/np-11.0.2.tgz","fileCount":21,"unpackedSize":102440,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQDlEJePYvi06Y8sowZ71IieAjpbfcjCuT43CuSX0Q5+6wIhAKJ3vv3P/UVzXxguAUtqCagsCgD/lMkTAVzugOqJImjg"}]},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"itaisteinherz@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/np_11.0.2_1769658715947_0.4891885266518632"},"_hasShrinkwrap":false}},"name":"np","time":{"created":"2012-09-08T09:02:02.876Z","modified":"2026-01-29T03:51:56.225Z","0.0.0":"2012-09-08T09:02:22.618Z","1.0.0":"2015-08-16T09:08:00.603Z","1.0.1":"2015-09-23T10:23:09.788Z","1.0.2":"2015-09-28T08:57:03.789Z","1.0.3":"2015-10-13T07:33:23.594Z","1.1.0":"2015-11-18T13:19:27.561Z","1.2.0":"2015-11-23T10:06:27.269Z","1.2.1":"2015-12-09T16:26:27.215Z","2.0.0":"2016-05-30T13:49:55.351Z","2.1.0":"2016-06-03T07:59:45.451Z","2.2.0":"2016-06-19T14:42:39.469Z","2.3.0":"2016-07-06T19:42:15.303Z","2.4.0":"2016-07-07T19:42:43.597Z","2.5.0":"2016-07-08T09:54:55.902Z","2.6.0":"2016-07-09T14:38:21.927Z","2.7.0":"2016-07-26T12:04:03.931Z","2.8.0":"2016-08-07T14:31:53.379Z","2.9.0":"2016-08-13T11:54:48.300Z","2.10.0":"2016-11-04T08:55:55.166Z","2.10.1":"2016-11-14T14:11:52.390Z","2.11.0":"2016-12-09T22:50:23.795Z","2.12.0":"2016-12-22T17:58:14.371Z","2.13.0":"2017-03-15T09:51:42.472Z","2.13.1":"2017-03-25T08:12:40.530Z","2.13.2":"2017-04-17T06:02:54.097Z","2.13.3":"2017-04-24T12:36:24.812Z","2.14.0":"2017-05-01T12:52:54.617Z","2.14.1":"2017-05-02T04:15:18.765Z","2.15.0":"2017-05-19T09:03:04.436Z","2.16.0":"2017-06-07T14:48:07.977Z","2.16.1":"2017-10-30T10:24:08.411Z","2.17.0":"2017-11-15T04:44:27.123Z","2.18.0":"2017-12-04T12:36:07.225Z","2.18.1":"2017-12-04T21:48:37.794Z","2.18.2":"2017-12-05T22:56:09.917Z","2.18.3":"2017-12-14T19:57:34.075Z","2.19.0":"2018-02-04T03:15:05.677Z","2.20.0":"2018-02-13T05:24:33.878Z","2.20.1":"2018-02-19T15:37:43.797Z","3.0.0":"2018-05-27T07:12:45.315Z","3.0.1":"2018-05-28T01:53:58.165Z","3.0.2":"2018-06-02T03:55:14.690Z","3.0.3":"2018-06-04T05:47:05.930Z","3.0.4":"2018-06-04T06:00:55.801Z","3.1.0":"2018-12-14T23:02:35.906Z","4.0.0":"2019-01-22T07:12:13.357Z","4.0.1":"2019-01-22T09:40:41.135Z","4.0.2":"2019-01-24T08:44:20.424Z","5.0.0":"2019-04-18T14:11:21.559Z","5.0.1":"2019-04-27T10:16:36.762Z","5.0.2":"2019-05-18T11:58:34.115Z","5.0.3":"2019-06-06T07:33:56.802Z","5.1.0":"2019-09-13T10:27:34.322Z","5.1.1":"2019-10-10T07:56:59.874Z","5.1.2":"2019-10-28T06:48:52.165Z","5.1.3":"2019-11-08T17:23:13.223Z","5.2.0":"2019-11-30T10:25:51.315Z","5.2.1":"2019-11-30T10:32:39.058Z","6.0.0":"2020-02-07T07:15:07.824Z","6.1.0":"2020-02-17T08:32:57.811Z","6.2.0":"2020-02-26T21:23:58.767Z","6.2.1":"2020-04-12T14:49:06.981Z","6.2.2":"2020-04-23T06:16:33.486Z","6.2.3":"2020-04-27T16:21:19.254Z","6.2.4":"2020-06-07T06:09:34.880Z","6.2.5":"2020-06-27T19:39:05.404Z","6.3.0":"2020-07-05T16:27:23.872Z","6.3.1":"2020-07-07T20:04:03.920Z","6.3.2":"2020-07-11T11:00:04.451Z","6.4.0":"2020-08-09T20:26:08.710Z","6.5.0":"2020-08-29T10:55:03.670Z","7.0.0":"2020-10-29T15:52:20.986Z","7.1.0":"2020-12-27T08:32:48.753Z","7.2.0":"2020-12-31T07:31:55.728Z","7.3.0":"2021-02-06T16:16:49.305Z","7.4.0":"2021-02-12T10:33:14.490Z","7.5.0":"2021-04-25T06:37:37.155Z","7.6.0":"2021-11-19T13:20:46.420Z","7.6.1":"2022-03-19T17:57:55.862Z","7.6.2":"2022-06-22T18:06:05.364Z","7.6.3":"2022-12-27T13:50:46.996Z","7.6.4":"2023-03-20T07:12:29.561Z","7.7.0":"2023-03-30T02:56:12.745Z","8.0.0":"2023-05-27T13:07:46.908Z","8.0.1":"2023-05-28T09:47:13.319Z","8.0.2":"2023-05-30T09:11:53.899Z","8.0.3":"2023-06-11T08:35:14.459Z","8.0.4":"2023-06-12T17:52:07.743Z","9.0.0":"2023-11-27T11:27:17.615Z","9.1.0":"2023-12-05T14:16:38.255Z","9.2.0":"2023-12-09T13:44:52.059Z","10.0.0":"2024-02-26T14:11:21.831Z","10.0.1":"2024-03-13T06:09:42.105Z","10.0.2":"2024-03-24T06:45:43.727Z","10.0.3":"2024-04-07T04:47:42.842Z","10.0.4":"2024-04-17T15:10:41.310Z","10.0.5":"2024-04-19T03:35:19.158Z","10.0.6":"2024-06-19T00:37:49.051Z","10.0.7":"2024-07-16T22:58:34.157Z","10.1.0":"2024-11-23T15:38:19.032Z","10.2.0":"2025-01-26T12:00:34.046Z","10.3.0":"2026-01-18T14:04:38.984Z","11.0.0":"2026-01-22T02:22:35.615Z","11.0.1":"2026-01-23T03:56:54.635Z","11.0.2":"2026-01-29T03:51:56.113Z"},"readmeFilename":"readme.md","homepage":"https://github.com/sindresorhus/np#readme"}