nodejs-wheel-binaries 20.13.0__py2.py3-none-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- nodejs_wheel/__init__.py +12 -0
- nodejs_wheel/__main__.py +4 -0
- nodejs_wheel/executable.py +92 -0
- nodejs_wheel/lib/node_modules/npm/.npmrc +0 -0
- nodejs_wheel/lib/node_modules/npm/LICENSE +235 -0
- nodejs_wheel/lib/node_modules/npm/README.md +63 -0
- nodejs_wheel/lib/node_modules/npm/bin/node-gyp-bin/node-gyp +6 -0
- nodejs_wheel/lib/node_modules/npm/bin/node-gyp-bin/node-gyp.cmd +5 -0
- nodejs_wheel/lib/node_modules/npm/bin/npm +65 -0
- nodejs_wheel/lib/node_modules/npm/bin/npm-cli.js +2 -0
- nodejs_wheel/lib/node_modules/npm/bin/npm-prefix.js +30 -0
- nodejs_wheel/lib/node_modules/npm/bin/npm.cmd +20 -0
- nodejs_wheel/lib/node_modules/npm/bin/npm.ps1 +35 -0
- nodejs_wheel/lib/node_modules/npm/bin/npx +65 -0
- nodejs_wheel/lib/node_modules/npm/bin/npx-cli.js +130 -0
- nodejs_wheel/lib/node_modules/npm/bin/npx.cmd +20 -0
- nodejs_wheel/lib/node_modules/npm/bin/npx.ps1 +35 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-access.md +123 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-adduser.md +86 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-audit.md +478 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-bugs.md +109 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-cache.md +94 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-ci.md +318 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-completion.md +41 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-config.md +182 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-dedupe.md +320 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-deprecate.md +73 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-diff.md +316 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-dist-tag.md +154 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-docs.md +108 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-doctor.md +122 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-edit.md +46 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-exec.md +366 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-explain.md +105 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-explore.md +49 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-find-dupes.md +246 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-fund.md +145 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-help-search.md +40 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-help.md +46 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-hook.md +112 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-init.md +349 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-install-ci-test.md +265 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-install-test.md +372 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-install.md +808 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-link.md +396 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-login.md +93 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-logout.md +75 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-ls.md +294 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-org.md +114 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-outdated.md +178 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-owner.md +106 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-pack.md +126 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-ping.md +46 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-pkg.md +272 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-prefix.md +59 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-profile.md +131 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-prune.md +197 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-publish.md +235 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-query.md +272 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-rebuild.md +169 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-repo.md +102 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-restart.md +70 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-root.md +51 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-run-script.md +254 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-sbom.md +318 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-search.md +169 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-shrinkwrap.md +32 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-star.md +78 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-stars.md +40 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-start.md +80 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-stop.md +73 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-team.md +155 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-test.md +70 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-token.md +130 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-uninstall.md +159 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-unpublish.md +136 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-unstar.md +74 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-update.md +446 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-version.md +235 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-view.md +200 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm-whoami.md +41 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npm.md +175 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/commands/npx.md +168 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/configuring-npm/folders.md +219 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/configuring-npm/install.md +78 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/configuring-npm/npm-shrinkwrap-json.md +34 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/configuring-npm/npmrc.md +137 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/configuring-npm/package-json.md +1189 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/configuring-npm/package-lock-json.md +235 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/using-npm/config.md +2017 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/using-npm/dependency-selectors.md +223 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/using-npm/developers.md +245 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/using-npm/logging.md +96 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/using-npm/orgs.md +93 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/using-npm/package-spec.md +105 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/using-npm/registry.md +86 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/using-npm/removal.md +64 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/using-npm/scope.md +143 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/using-npm/scripts.md +363 -0
- nodejs_wheel/lib/node_modules/npm/docs/content/using-npm/workspaces.md +226 -0
- nodejs_wheel/lib/node_modules/npm/docs/lib/index.js +189 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-access.html +262 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-adduser.html +218 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-audit.html +509 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-bugs.html +243 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-cache.html +236 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-ci.html +398 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-completion.html +186 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-config.html +283 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-dedupe.html +395 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-deprecate.html +206 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-diff.html +398 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-dist-tag.html +281 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-docs.html +242 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-doctor.html +253 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-edit.html +190 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-exec.html +435 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-explain.html +242 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-explore.html +190 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-find-dupes.html +341 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-fund.html +267 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-help-search.html +184 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-help.html +190 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-hook.html +226 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-init.html +422 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-install-ci-test.html +356 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-install-test.html +433 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-install.html +795 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-link.html +450 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-login.html +222 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-logout.html +209 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-ls.html +378 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-org.html +231 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-outdated.html +305 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-owner.html +243 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-pack.html +256 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-ping.html +189 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-pkg.html +364 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-prefix.html +200 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-profile.html +272 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-prune.html +305 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-publish.html +350 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-query.html +386 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-rebuild.html +289 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-repo.html +236 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-restart.html +211 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-root.html +195 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-run-script.html +346 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-sbom.html +439 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-search.html +279 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-shrinkwrap.html +182 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-star.html +209 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-stars.html +185 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-start.html +214 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-stop.html +209 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-team.html +272 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-test.html +207 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-token.html +266 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-uninstall.html +278 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-unpublish.html +267 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-unstar.html +206 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-update.html +486 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-version.html +341 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-view.html +297 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm-whoami.html +185 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npm.html +296 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/commands/npx.html +285 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/configuring-npm/folders.html +322 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/configuring-npm/install.html +217 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/configuring-npm/npm-shrinkwrap-json.html +184 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/configuring-npm/npmrc.html +261 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/configuring-npm/package-json.html +1069 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/configuring-npm/package-lock-json.html +390 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/using-npm/config.html +1609 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/using-npm/dependency-selectors.html +348 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/using-npm/developers.html +352 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/using-npm/logging.html +228 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/using-npm/orgs.html +236 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/using-npm/package-spec.html +255 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/using-npm/registry.html +226 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/using-npm/removal.html +199 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/using-npm/scope.html +257 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/using-npm/scripts.html +477 -0
- nodejs_wheel/lib/node_modules/npm/docs/output/using-npm/workspaces.html +313 -0
- nodejs_wheel/lib/node_modules/npm/index.js +5 -0
- nodejs_wheel/lib/node_modules/npm/lib/arborist-cmd.js +53 -0
- nodejs_wheel/lib/node_modules/npm/lib/base-command.js +184 -0
- nodejs_wheel/lib/node_modules/npm/lib/cli-entry.js +74 -0
- nodejs_wheel/lib/node_modules/npm/lib/cli.js +4 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/access.js +222 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/adduser.js +51 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/audit.js +511 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/bugs.js +34 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/cache.js +213 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/ci.js +121 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/completion.js +283 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/config.js +378 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/dedupe.js +52 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/deprecate.js +73 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/diff.js +291 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/dist-tag.js +208 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/docs.js +19 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/doctor.js +419 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/edit.js +76 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/exec.js +106 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/explain.js +128 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/explore.js +79 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/find-dupes.js +27 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/fund.js +225 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/get.js +22 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/help-search.js +194 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/help.js +113 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/hook.js +125 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/init.js +247 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/install-ci-test.js +15 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/install-test.js +15 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/install.js +179 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/link.js +192 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/ll.js +13 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/login.js +51 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/logout.js +49 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/ls.js +573 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/org.js +155 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/outdated.js +369 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/owner.js +233 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/pack.js +86 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/ping.js +29 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/pkg.js +148 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/prefix.js +13 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/profile.js +407 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/prune.js +33 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/publish.js +233 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/query.js +127 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/rebuild.js +82 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/repo.js +54 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/restart.js +13 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/root.js +11 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/run-script.js +249 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/sbom.js +155 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/search.js +114 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/set.js +25 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/shrinkwrap.js +71 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/star.js +71 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/stars.js +38 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/start.js +13 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/stop.js +13 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/team.js +154 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/test.js +13 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/token.js +229 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/uninstall.js +56 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/unpublish.js +176 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/unstar.js +7 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/update.js +69 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/version.js +156 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/view.js +516 -0
- nodejs_wheel/lib/node_modules/npm/lib/commands/whoami.js +16 -0
- nodejs_wheel/lib/node_modules/npm/lib/es6/validate-engines.js +49 -0
- nodejs_wheel/lib/node_modules/npm/lib/lifecycle-cmd.js +19 -0
- nodejs_wheel/lib/node_modules/npm/lib/npm.js +485 -0
- nodejs_wheel/lib/node_modules/npm/lib/package-url-cmd.js +65 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/audit-error.js +40 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/auth.js +100 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/cmd-list.js +178 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/completion/installed-deep.js +45 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/completion/installed-shallow.js +19 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/completion.fish +40 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/completion.sh +70 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/did-you-mean.js +40 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/display.js +215 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/error-message.js +435 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/exit-handler.js +227 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/explain-dep.js +135 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/explain-eresolve.js +71 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/format-bytes.js +30 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/format-search-stream.js +134 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/get-identity.js +26 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/is-windows.js +6 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/log-file.js +260 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/log-shim.js +59 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/npm-usage.js +74 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/open-url-prompt.js +69 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/open-url.js +50 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/otplease.js +48 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/ping.js +7 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/pulse-till-done.js +26 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/queryable.js +308 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/read-user-info.js +68 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/reify-finish.js +33 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/reify-output.js +224 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/sbom-cyclonedx.js +201 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/sbom-spdx.js +182 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/tar.js +132 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/timers.js +116 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/update-notifier.js +127 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/validate-lockfile.js +29 -0
- nodejs_wheel/lib/node_modules/npm/lib/utils/web-auth.js +20 -0
- nodejs_wheel/lib/node_modules/npm/lib/workspaces/get-workspaces.js +54 -0
- nodejs_wheel/lib/node_modules/npm/lib/workspaces/update-workspaces.js +40 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-access.1 +115 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-adduser.1 +91 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-audit.1 +448 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-bugs.1 +115 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-cache.1 +78 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-ci.1 +289 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-completion.1 +35 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-config.1 +187 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-dedupe.1 +290 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-deprecate.1 +73 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-diff.1 +307 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-dist-tag.1 +144 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-docs.1 +113 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-doctor.1 +82 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-edit.1 +43 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-exec.1 +350 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-explain.1 +118 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-explore.1 +49 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-find-dupes.1 +225 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-fund.1 +142 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-help-search.1 +37 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-help.1 +47 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-hook.1 +115 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-init.1 +366 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-install-ci-test.1 +239 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-install-test.1 +346 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-install.1 +762 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-link.1 +355 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-login.1 +95 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-logout.1 +75 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-ls.1 +283 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-org.1 +125 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-outdated.1 +182 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-owner.1 +110 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-pack.1 +130 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-ping.1 +52 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-pkg.1 +286 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-prefix.1 +63 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-profile.1 +137 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-prune.1 +184 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-publish.1 +221 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-query.1 +281 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-rebuild.1 +178 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-repo.1 +103 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-restart.1 +85 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-root.1 +56 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-run-script.1 +234 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-sbom.1 +314 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-search.1 +166 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-shrinkwrap.1 +32 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-star.1 +76 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-stars.1 +41 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-start.1 +79 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-stop.1 +75 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-team.1 +148 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-test.1 +73 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-token.1 +130 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-uninstall.1 +159 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-unpublish.1 +137 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-unstar.1 +70 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-update.1 +406 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-version.1 +229 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-view.1 +213 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm-whoami.1 +39 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npm.1 +131 -0
- nodejs_wheel/lib/node_modules/npm/man/man1/npx.1 +156 -0
- nodejs_wheel/lib/node_modules/npm/man/man5/folders.5 +152 -0
- nodejs_wheel/lib/node_modules/npm/man/man5/install.5 +57 -0
- nodejs_wheel/lib/node_modules/npm/man/man5/npm-global.5 +152 -0
- nodejs_wheel/lib/node_modules/npm/man/man5/npm-json.5 +1091 -0
- nodejs_wheel/lib/node_modules/npm/man/man5/npm-shrinkwrap-json.5 +23 -0
- nodejs_wheel/lib/node_modules/npm/man/man5/npmrc.5 +129 -0
- nodejs_wheel/lib/node_modules/npm/man/man5/package-json.5 +1091 -0
- nodejs_wheel/lib/node_modules/npm/man/man5/package-lock-json.5 +156 -0
- nodejs_wheel/lib/node_modules/npm/man/man7/config.7 +2038 -0
- nodejs_wheel/lib/node_modules/npm/man/man7/dependency-selectors.7 +331 -0
- nodejs_wheel/lib/node_modules/npm/man/man7/developers.7 +234 -0
- nodejs_wheel/lib/node_modules/npm/man/man7/logging.7 +108 -0
- nodejs_wheel/lib/node_modules/npm/man/man7/orgs.7 +145 -0
- nodejs_wheel/lib/node_modules/npm/man/man7/package-spec.7 +126 -0
- nodejs_wheel/lib/node_modules/npm/man/man7/registry.7 +51 -0
- nodejs_wheel/lib/node_modules/npm/man/man7/removal.7 +60 -0
- nodejs_wheel/lib/node_modules/npm/man/man7/scope.7 +113 -0
- nodejs_wheel/lib/node_modules/npm/man/man7/scripts.7 +406 -0
- nodejs_wheel/lib/node_modules/npm/man/man7/workspaces.7 +214 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/LICENSE +26 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/examples/normal-usage.js +82 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/examples/safe-string.js +78 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/lib/colors.js +211 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/lib/custom/trap.js +46 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/lib/custom/zalgo.js +109 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/lib/extendStringPrototype.js +110 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/lib/index.js +13 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/lib/maps/america.js +10 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/lib/maps/rainbow.js +11 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/lib/maps/random.js +11 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/lib/maps/zebra.js +5 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/lib/styles.js +95 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/lib/system/has-flag.js +35 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/lib/system/supports-colors.js +151 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/package.json +45 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/safe.js +10 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@colors/colors/themes/generic-logging.js +12 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/LICENSE.txt +14 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/build/index.cjs +317 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/build/index.d.cts +43 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/build/lib/index.js +302 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/index.mjs +14 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/node_modules/ansi-regex/index.js +8 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/node_modules/ansi-regex/license +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/node_modules/ansi-regex/package.json +58 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/RGI_Emoji.js +6 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/es2015/RGI_Emoji.js +6 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/es2015/index.js +6 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/es2015/text.js +6 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/index.js +6 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/package.json +52 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/text.js +6 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/node_modules/string-width/index.js +54 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/node_modules/string-width/license +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/node_modules/string-width/package.json +59 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/node_modules/strip-ansi/index.js +14 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/node_modules/strip-ansi/license +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/node_modules/strip-ansi/package.json +57 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/cliui/package.json +86 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/string-locale-compare/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/string-locale-compare/index.js +42 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@isaacs/string-locale-compare/package.json +28 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/agent/lib/agents.js +206 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/agent/lib/dns.js +53 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/agent/lib/errors.js +61 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/agent/lib/index.js +56 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/agent/lib/options.js +86 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/agent/lib/proxy.js +88 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/agent/package.json +60 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/LICENSE.md +20 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/README.md +349 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/bin/actual.js +19 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/bin/audit.js +51 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/bin/funding.js +38 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/bin/ideal.js +14 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/bin/index.js +111 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/bin/lib/logging.js +77 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/bin/lib/options.js +123 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/bin/lib/print-tree.js +4 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/bin/lib/timers.js +33 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/bin/license.js +48 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/bin/prune.js +48 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/bin/reify.js +48 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/bin/shrinkwrap.js +7 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/bin/virtual.js +14 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/add-rm-pkg-deps.js +143 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js +1547 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/index.js +255 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/isolated-reifier.js +453 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/load-actual.js +438 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/load-virtual.js +303 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/rebuild.js +404 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/reify.js +1608 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/audit-report.js +414 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/calc-dep-flags.js +119 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/can-place-dep.js +436 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/case-insensitive-map.js +50 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/consistent-resolve.js +45 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/debug.js +31 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/deepest-nesting-target.js +18 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/dep-valid.js +150 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/diff.js +306 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/edge.js +301 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/from-path.js +30 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/gather-dep-set.js +43 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/index.js +6 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/inventory.js +138 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/link.js +126 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/node.js +1473 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/optional-set.js +38 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/override-resolves.js +11 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/override-set.js +147 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/peer-entry-sets.js +77 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/place-dep.js +569 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/printable.js +198 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/query-selector-all.js +945 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/realpath.js +95 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/relpath.js +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/reset-dep-flags.js +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/retire-path.js +19 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/shrinkwrap.js +1176 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/signal-handling.js +74 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/signals.js +58 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/spec-from-lock.js +34 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/tracker.js +101 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/tree-check.js +155 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/version-from-tgz.js +47 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/vuln.js +214 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/yarn-lock.js +377 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/arborist/package.json +97 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/config/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/config/README.md +257 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/config/lib/definitions/definition.js +253 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/config/lib/definitions/definitions.js +2276 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/config/lib/definitions/index.js +66 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/config/lib/env-replace.js +14 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/config/lib/errors.js +23 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/config/lib/index.js +952 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/config/lib/nerf-dart.js +18 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/config/lib/parse-field.js +86 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/config/lib/set-envs.js +108 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/config/lib/type-defs.js +61 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/config/lib/type-description.js +21 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/config/lib/umask.js +35 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/config/package.json +56 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/disparity-colors/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/disparity-colors/lib/index.js +34 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/disparity-colors/node_modules/ansi-styles/index.js +163 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/disparity-colors/node_modules/ansi-styles/license +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/disparity-colors/node_modules/ansi-styles/package.json +56 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/disparity-colors/package.json +70 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/fs/LICENSE.md +20 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/fs/lib/common/get-options.js +20 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/fs/lib/common/node.js +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/fs/lib/cp/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/fs/lib/cp/errors.js +129 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/fs/lib/cp/index.js +22 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/fs/lib/cp/polyfill.js +428 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/fs/lib/index.js +13 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/fs/lib/move-file.js +78 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/fs/lib/readdir-scoped.js +20 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/fs/lib/with-temp-dir.js +39 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/fs/package.json +52 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/git/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/git/lib/clone.js +172 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/git/lib/errors.js +36 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/git/lib/find.js +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/git/lib/index.js +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/git/lib/is-clean.js +6 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/git/lib/is.js +4 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/git/lib/lines-to-revs.js +147 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/git/lib/make-error.js +33 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/git/lib/opts.js +12 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/git/lib/revs.js +28 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/git/lib/spawn.js +44 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/git/lib/utils.js +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/git/lib/which.js +18 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/git/package.json +57 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/installed-package-contents/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/installed-package-contents/README.md +109 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/installed-package-contents/lib/index.js +242 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/installed-package-contents/package.json +51 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/map-workspaces/LICENSE.md +20 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/map-workspaces/lib/index.js +234 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/map-workspaces/package.json +60 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/metavuln-calculator/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/metavuln-calculator/lib/advisory.js +435 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/metavuln-calculator/lib/get-dep-spec.js +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/metavuln-calculator/lib/hash.js +5 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/metavuln-calculator/lib/index.js +128 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/metavuln-calculator/package.json +61 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/name-from-folder/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/name-from-folder/lib/index.js +7 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/name-from-folder/package.json +43 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/node-gyp/lib/index.js +14 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/node-gyp/package.json +48 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/package-json/LICENSE +18 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/package-json/lib/index.js +277 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/package-json/lib/normalize.js +583 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/package-json/lib/update-dependencies.js +75 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/package-json/lib/update-scripts.js +29 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/package-json/lib/update-workspaces.js +26 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/package-json/package.json +60 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/promise-spawn/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/promise-spawn/lib/escape.js +68 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/promise-spawn/lib/index.js +205 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/promise-spawn/package.json +50 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/query/LICENSE +20 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/query/lib/index.js +255 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/query/package.json +63 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/redact/LICENSE +21 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/redact/lib/index.js +59 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/redact/package.json +45 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/run-script/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/is-server-package.js +11 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/make-spawn-args.js +40 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin/node-gyp +2 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin/node-gyp.cmd +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/package-envs.js +29 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/run-script-pkg.js +114 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/run-script.js +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/set-path.js +45 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/signal-manager.js +50 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/validate-options.js +39 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@npmcli/run-script/package.json +53 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@pkgjs/parseargs/LICENSE +201 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@pkgjs/parseargs/examples/is-default-value.js +25 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@pkgjs/parseargs/examples/limit-long-syntax.js +35 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@pkgjs/parseargs/examples/negate.js +43 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@pkgjs/parseargs/examples/no-repeated-options.js +31 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@pkgjs/parseargs/examples/ordered-options.mjs +41 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@pkgjs/parseargs/examples/simple-hard-coded.js +26 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@pkgjs/parseargs/index.js +396 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@pkgjs/parseargs/internal/errors.js +47 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@pkgjs/parseargs/internal/primordials.js +393 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@pkgjs/parseargs/internal/util.js +14 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@pkgjs/parseargs/internal/validators.js +89 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@pkgjs/parseargs/package.json +36 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@pkgjs/parseargs/utils.js +198 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/bundle/LICENSE +202 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/bundle/dist/build.js +101 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/bundle/dist/bundle.js +24 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/bundle/dist/error.js +25 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/bundle/dist/index.js +43 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/bundle/dist/serialized.js +49 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/bundle/dist/utility.js +2 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/bundle/dist/validate.js +199 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/bundle/package.json +35 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/LICENSE +202 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/asn1/error.js +24 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/asn1/index.js +20 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/asn1/length.js +63 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/asn1/obj.js +152 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/asn1/parse.js +125 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/asn1/tag.js +86 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/crypto.js +71 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/dsse.js +31 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/encoding.js +28 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/index.js +56 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/json.js +61 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/oid.js +14 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/pem.js +44 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/rfc3161/error.js +21 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/rfc3161/index.js +20 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/rfc3161/timestamp.js +201 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/rfc3161/tstinfo.js +61 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/stream.js +115 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/x509/cert.js +226 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/x509/ext.js +145 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/x509/index.js +23 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/dist/x509/sct.js +141 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/core/package.json +31 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/protobuf-specs/LICENSE +202 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/envelope.js +89 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/events.js +185 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/api/field_behavior.js +119 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/protobuf/any.js +65 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/protobuf/descriptor.js +1308 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/protobuf/timestamp.js +24 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_bundle.js +112 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_common.js +588 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_rekor.js +167 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_trustroot.js +155 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_verification.js +324 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/index.js +37 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/protobuf-specs/package.json +31 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/LICENSE +202 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/base.js +50 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/bundle.js +71 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/dsse.js +46 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/index.js +7 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/message.js +30 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/error.js +39 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/external/error.js +38 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/external/fulcio.js +51 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/external/rekor.js +115 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/external/tsa.js +47 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/identity/ci.js +73 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/identity/index.js +20 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/identity/provider.js +2 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/index.js +17 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/signer/fulcio/ca.js +60 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/signer/fulcio/ephemeral.js +45 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/signer/fulcio/index.js +87 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/signer/index.js +22 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/signer/signer.js +17 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/types/fetch.js +2 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/util/index.js +49 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/util/oidc.js +31 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/util/ua.js +33 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/witness/index.js +24 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tlog/client.js +61 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tlog/entry.js +136 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tlog/index.js +82 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tsa/client.js +43 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tsa/index.js +44 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/dist/witness/witness.js +2 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/sign/package.json +43 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/tuf/LICENSE +202 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/tuf/dist/appdata.js +44 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/tuf/dist/client.js +112 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/tuf/dist/error.js +12 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/tuf/dist/index.js +56 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/tuf/dist/target.js +80 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/tuf/package.json +41 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/tuf/seeds.json +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/bundle/dsse.js +43 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/bundle/index.js +58 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/bundle/message.js +36 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/error.js +32 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/index.js +28 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/key/certificate.js +205 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/key/index.js +72 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/key/sct.js +79 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/policy.js +25 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/shared.types.js +2 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/timestamp/checkpoint.js +158 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/timestamp/index.js +47 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/timestamp/merkle.js +105 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/timestamp/set.js +61 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/timestamp/tsa.js +74 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/tlog/dsse.js +58 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/tlog/hashedrekord.js +52 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/tlog/index.js +48 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/tlog/intoto.js +63 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/trust/filter.js +24 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/trust/index.js +84 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/trust/trust.types.js +2 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/dist/verifier.js +141 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@sigstore/verify/package.json +36 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/canonical-json/LICENSE +21 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/canonical-json/lib/index.js +64 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/canonical-json/package.json +35 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/LICENSE +21 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/base.js +83 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/delegations.js +115 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/error.js +27 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/file.js +183 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/index.js +24 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/key.js +85 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/metadata.js +158 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/role.js +299 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/root.js +116 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/signature.js +38 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/snapshot.js +71 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/targets.js +92 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/timestamp.js +58 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/utils/guard.js +33 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/utils/index.js +28 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/utils/key.js +143 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/utils/oid.js +27 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/utils/types.js +2 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/dist/utils/verify.js +13 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/@tufjs/models/package.json +37 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/abbrev/LICENSE +46 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/abbrev/lib/index.js +50 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/abbrev/package.json +43 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/agent-base/LICENSE +22 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/agent-base/dist/helpers.js +66 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/agent-base/dist/index.js +175 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/agent-base/package.json +49 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/aggregate-error/index.js +47 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/aggregate-error/license +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/aggregate-error/package.json +41 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ansi-regex/index.js +10 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ansi-regex/license +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ansi-regex/package.json +55 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ansi-styles/index.js +223 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ansi-styles/license +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ansi-styles/package.json +54 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/aproba/LICENSE +14 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/aproba/index.js +105 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/aproba/package.json +35 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/archy/LICENSE +18 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/archy/examples/beep.js +24 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/archy/examples/multi_line.js +25 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/archy/index.js +35 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/archy/package.json +40 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/archy/test/beep.js +40 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/archy/test/multi_line.js +45 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/archy/test/non_unicode.js +40 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/are-we-there-yet/LICENSE.md +18 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/are-we-there-yet/lib/index.js +4 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/are-we-there-yet/lib/tracker-base.js +13 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/are-we-there-yet/lib/tracker-group.js +112 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/are-we-there-yet/lib/tracker-stream.js +42 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/are-we-there-yet/lib/tracker.js +34 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/are-we-there-yet/package.json +53 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/balanced-match/LICENSE.md +21 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/balanced-match/index.js +62 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/balanced-match/package.json +48 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/bin-links/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/bin-links/lib/bin-target.js +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/bin-links/lib/check-bin.js +74 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/bin-links/lib/check-bins.js +18 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/bin-links/lib/fix-bin.js +42 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/bin-links/lib/get-node-modules.js +19 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/bin-links/lib/get-paths.js +42 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/bin-links/lib/get-prefix.js +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/bin-links/lib/index.js +44 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/bin-links/lib/is-windows.js +2 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/bin-links/lib/link-bin.js +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/bin-links/lib/link-bins.js +23 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/bin-links/lib/link-gently.js +90 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/bin-links/lib/link-mans.js +53 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/bin-links/lib/man-target.js +6 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/bin-links/lib/shim-bin.js +86 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/bin-links/package.json +59 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/binary-extensions/binary-extensions.json +263 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/binary-extensions/index.js +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/binary-extensions/license +10 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/binary-extensions/package.json +40 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/brace-expansion/LICENSE +21 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/brace-expansion/index.js +203 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/brace-expansion/package.json +46 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/builtins/License +20 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/builtins/index.js +80 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/builtins/package.json +19 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cacache/LICENSE.md +16 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cacache/lib/content/path.js +29 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cacache/lib/content/read.js +165 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cacache/lib/content/rm.js +18 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cacache/lib/content/write.js +206 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cacache/lib/entry-index.js +330 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cacache/lib/get.js +170 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cacache/lib/index.js +42 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cacache/lib/memoization.js +72 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cacache/lib/put.js +80 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cacache/lib/rm.js +31 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cacache/lib/util/glob.js +7 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cacache/lib/util/hash-to-segments.js +7 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cacache/lib/util/tmp.js +26 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cacache/lib/verify.js +257 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cacache/package.json +82 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/chalk/license +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/chalk/package.json +83 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/chalk/source/index.js +225 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/chalk/source/utilities.js +33 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/chalk/source/vendor/ansi-styles/index.js +223 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/chalk/source/vendor/supports-color/browser.js +30 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/chalk/source/vendor/supports-color/index.js +182 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/chownr/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/chownr/chownr.js +167 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/chownr/package.json +32 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ci-info/LICENSE +21 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ci-info/index.js +90 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ci-info/package.json +45 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ci-info/vendors.json +336 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cidr-regex/LICENSE +22 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cidr-regex/index.js +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cidr-regex/package.json +33 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/clean-stack/index.js +40 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/clean-stack/license +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/clean-stack/package.json +39 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cli-columns/color.js +16 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cli-columns/index.js +82 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cli-columns/license +20 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cli-columns/package.json +54 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cli-columns/test.js +101 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cli-table3/LICENSE +21 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cli-table3/index.js +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cli-table3/package.json +100 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cli-table3/src/cell.js +409 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cli-table3/src/debug.js +28 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cli-table3/src/layout-manager.js +254 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cli-table3/src/table.js +106 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cli-table3/src/utils.js +336 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/clone/LICENSE +18 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/clone/clone.iml +10 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/clone/clone.js +166 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/clone/package.json +51 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cmd-shim/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cmd-shim/lib/index.js +247 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cmd-shim/lib/to-batch-syntax.js +49 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cmd-shim/package.json +47 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/color-convert/LICENSE +21 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/color-convert/conversions.js +839 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/color-convert/index.js +81 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/color-convert/package.json +48 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/color-convert/route.js +97 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/color-name/LICENSE +8 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/color-name/index.js +152 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/color-name/package.json +28 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/color-support/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/color-support/README.md +129 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/color-support/bin.js +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/color-support/browser.js +14 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/color-support/index.js +134 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/color-support/package.json +36 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/columnify/LICENSE +21 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/columnify/Makefile +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/columnify/columnify.js +306 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/columnify/index.js +297 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/columnify/package.json +53 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/columnify/utils.js +193 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/columnify/width.js +6 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/common-ancestor-path/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/common-ancestor-path/index.js +17 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/common-ancestor-path/package.json +28 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/console-control-strings/LICENSE +13 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/console-control-strings/index.js +125 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/console-control-strings/package.json +27 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cross-spawn/LICENSE +21 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cross-spawn/index.js +39 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cross-spawn/lib/enoent.js +59 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cross-spawn/lib/parse.js +91 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cross-spawn/lib/util/escape.js +45 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cross-spawn/lib/util/readShebang.js +23 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cross-spawn/lib/util/resolveCommand.js +52 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cross-spawn/node_modules/which/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cross-spawn/node_modules/which/README.md +54 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cross-spawn/node_modules/which/bin/node-which +52 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cross-spawn/node_modules/which/package.json +43 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cross-spawn/node_modules/which/which.js +125 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cross-spawn/package.json +73 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cssesc/LICENSE-MIT.txt +20 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cssesc/README.md +201 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cssesc/bin/cssesc +116 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cssesc/cssesc.js +110 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cssesc/man/cssesc.1 +70 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/cssesc/package.json +51 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/debug/LICENSE +20 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/debug/node_modules/ms/index.js +162 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/debug/node_modules/ms/license.md +21 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/debug/node_modules/ms/package.json +37 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/debug/package.json +59 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/debug/src/browser.js +269 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/debug/src/common.js +274 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/debug/src/index.js +10 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/debug/src/node.js +263 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/defaults/LICENSE +22 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/defaults/index.js +13 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/defaults/package.json +33 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/defaults/test.js +34 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/diff/CONTRIBUTING.md +36 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/diff/LICENSE +29 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/diff/dist/diff.js +1730 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/diff/dist/diff.min.js +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/convert/dmp.js +32 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/convert/xml.js +42 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/diff/array.js +45 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/diff/base.js +358 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/diff/character.js +37 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/diff/css.js +41 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/diff/json.js +163 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/diff/line.js +94 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/diff/sentence.js +41 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/diff/word.js +108 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/index.es6.js +1699 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/index.js +234 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/index.mjs +1699 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/patch/apply.js +238 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/patch/create.js +276 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/patch/merge.js +613 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/patch/parse.js +167 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/patch/reverse.js +63 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/util/array.js +32 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/util/distance-iterator.js +57 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/diff/lib/util/params.js +24 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/diff/package.json +89 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/diff/release-notes.md +317 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/diff/runtime.js +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/eastasianwidth/eastasianwidth.js +311 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/eastasianwidth/package.json +18 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/emoji-regex/es2015/index.js +6 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/emoji-regex/es2015/text.js +6 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/emoji-regex/index.js +6 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/emoji-regex/package.json +50 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/emoji-regex/text.js +6 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/encoding/LICENSE +16 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/encoding/lib/encoding.js +83 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/encoding/package.json +18 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/encoding/test/test.js +49 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/env-paths/index.js +74 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/env-paths/license +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/env-paths/package.json +45 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/err-code/bower.json +30 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/err-code/index.js +47 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/err-code/index.umd.js +51 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/err-code/package.json +34 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/err-code/test/test.js +159 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/exponential-backoff/LICENSE +202 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/exponential-backoff/dist/backoff.js +118 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/exponential-backoff/dist/delay/always/always.delay.js +25 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/exponential-backoff/dist/delay/delay.base.js +45 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/exponential-backoff/dist/delay/delay.factory.js +17 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/exponential-backoff/dist/delay/delay.interface.js +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/exponential-backoff/dist/delay/skip-first/skip-first.delay.js +82 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/exponential-backoff/dist/jitter/full/full.jitter.js +8 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/exponential-backoff/dist/jitter/jitter.factory.js +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/exponential-backoff/dist/jitter/no/no.jitter.js +7 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/exponential-backoff/dist/options.js +31 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/exponential-backoff/package.json +61 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/fastest-levenshtein/LICENSE.md +21 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/fastest-levenshtein/bench.js +96 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/fastest-levenshtein/esm/mod.js +138 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/fastest-levenshtein/mod.js +142 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/fastest-levenshtein/package.json +72 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/fastest-levenshtein/test.js +55 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/foreground-child/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/foreground-child/dist/cjs/all-signals.js +58 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/foreground-child/dist/cjs/index.js +154 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/foreground-child/dist/cjs/package.json +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/foreground-child/dist/cjs/watchdog.js +43 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/foreground-child/dist/mjs/all-signals.js +52 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/foreground-child/dist/mjs/index.js +146 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/foreground-child/dist/mjs/package.json +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/foreground-child/dist/mjs/watchdog.js +39 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/foreground-child/package.json +83 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/fs-minipass/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/fs-minipass/lib/index.js +443 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/fs-minipass/package.json +54 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/function-bind/LICENSE +20 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/function-bind/implementation.js +84 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/function-bind/index.js +5 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/function-bind/package.json +87 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/function-bind/test/index.js +252 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/gauge/LICENSE.md +20 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/gauge/lib/base-theme.js +18 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/gauge/lib/error.js +24 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/gauge/lib/has-color.js +4 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/gauge/lib/index.js +289 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/gauge/lib/plumbing.js +50 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/gauge/lib/process.js +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/gauge/lib/progress-bar.js +41 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/gauge/lib/render-template.js +222 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/gauge/lib/set-immediate.js +7 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/gauge/lib/set-interval.js +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/gauge/lib/spin.js +5 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/gauge/lib/template-item.js +87 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/gauge/lib/theme-set.js +122 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/gauge/lib/themes.js +56 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/gauge/lib/wide-truncate.js +31 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/gauge/package.json +68 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/README.md +1220 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/glob.d.ts +344 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/glob.d.ts.map +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/glob.js +243 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/glob.js.map +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/has-magic.d.ts +14 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/has-magic.d.ts.map +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/has-magic.js +27 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/has-magic.js.map +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/ignore.d.ts +20 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/ignore.d.ts.map +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/ignore.js +114 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/ignore.js.map +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/index.d.ts +96 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/index.d.ts.map +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/index.js +68 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/index.js.map +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/package.json +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/pattern.d.ts +77 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/pattern.d.ts.map +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/pattern.js +219 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/pattern.js.map +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/processor.d.ts +59 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/processor.d.ts.map +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/processor.js +302 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/processor.js.map +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/walker.d.ts +96 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/walker.d.ts.map +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/walker.js +378 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/commonjs/walker.js.map +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/bin.d.mts +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/bin.d.mts.map +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/bin.mjs +275 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/bin.mjs.map +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/glob.d.ts +344 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/glob.d.ts.map +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/glob.js +239 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/glob.js.map +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/has-magic.d.ts +14 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/has-magic.d.ts.map +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/has-magic.js +23 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/has-magic.js.map +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/ignore.d.ts +20 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/ignore.d.ts.map +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/ignore.js +110 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/ignore.js.map +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/index.d.ts +96 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/index.d.ts.map +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/index.js +56 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/index.js.map +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/package.json +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/pattern.d.ts +77 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/pattern.d.ts.map +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/pattern.js +215 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/pattern.js.map +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/processor.d.ts +59 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/processor.d.ts.map +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/processor.js +295 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/processor.js.map +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/walker.d.ts +96 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/walker.d.ts.map +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/walker.js +372 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/dist/esm/walker.js.map +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/glob/package.json +98 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/graceful-fs/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/graceful-fs/clone.js +23 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/graceful-fs/graceful-fs.js +448 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/graceful-fs/legacy-streams.js +118 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/graceful-fs/package.json +53 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/graceful-fs/polyfills.js +355 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/has-unicode/LICENSE +14 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/has-unicode/index.js +16 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/has-unicode/package.json +30 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/hasown/LICENSE +21 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/hasown/index.js +8 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/hasown/package.json +92 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/hasown/tsconfig.json +6 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/hosted-git-info/LICENSE +13 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/hosted-git-info/lib/from-url.js +122 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/hosted-git-info/lib/hosts.js +227 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/hosted-git-info/lib/index.js +179 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/hosted-git-info/lib/parse-url.js +78 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/hosted-git-info/package.json +66 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/http-cache-semantics/LICENSE +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/http-cache-semantics/index.js +674 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/http-cache-semantics/package.json +18 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/http-proxy-agent/LICENSE +22 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/http-proxy-agent/dist/index.js +148 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/http-proxy-agent/package.json +47 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/https-proxy-agent/LICENSE +22 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/https-proxy-agent/dist/index.js +175 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/https-proxy-agent/dist/parse-proxy-response.js +101 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/https-proxy-agent/package.json +50 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/LICENSE +21 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/dbcs-codec.js +597 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/dbcs-data.js +188 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/index.js +23 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/internal.js +198 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/sbcs-data.js +179 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/utf16.js +197 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/utf32.js +319 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/encodings/utf7.js +290 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/lib/bom-handling.js +52 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/lib/index.js +180 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/lib/streams.js +109 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/iconv-lite/package.json +44 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ignore-walk/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ignore-walk/lib/index.js +310 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ignore-walk/package.json +63 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/imurmurhash/imurmurhash.js +138 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/imurmurhash/imurmurhash.min.js +12 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/imurmurhash/package.json +40 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/indent-string/index.js +35 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/indent-string/license +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/indent-string/package.json +37 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ini/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ini/lib/ini.js +278 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ini/package.json +45 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/init-package-json/LICENSE.md +18 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/init-package-json/lib/default-input.js +262 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/init-package-json/lib/init-package-json.js +144 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/init-package-json/package.json +65 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/LICENSE +19 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/dist/address-error.js +14 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/dist/common.js +26 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/dist/ip-address.js +35 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/dist/ipv4.js +326 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/dist/ipv6.js +998 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/dist/v4/constants.js +8 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/dist/v6/constants.js +76 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/dist/v6/helpers.js +48 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/dist/v6/regular-expressions.js +96 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/node_modules/sprintf-js/CONTRIBUTORS.md +26 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/node_modules/sprintf-js/LICENSE +24 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/node_modules/sprintf-js/dist/.gitattributes +4 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/node_modules/sprintf-js/dist/angular-sprintf.min.js +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/node_modules/sprintf-js/dist/sprintf.min.js +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/node_modules/sprintf-js/package.json +35 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/node_modules/sprintf-js/src/angular-sprintf.js +24 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/node_modules/sprintf-js/src/sprintf.js +231 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ip-address/package.json +87 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ip-regex/index.js +36 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ip-regex/license +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ip-regex/package.json +47 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/is-cidr/index.js +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/is-cidr/package.json +33 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/is-core-module/LICENSE +20 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/is-core-module/core.json +158 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/is-core-module/index.js +69 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/is-core-module/package.json +73 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/is-core-module/test/index.js +133 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/is-fullwidth-code-point/index.js +50 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/is-fullwidth-code-point/license +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/is-fullwidth-code-point/package.json +42 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/is-lambda/LICENSE +21 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/is-lambda/index.js +6 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/is-lambda/package.json +35 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/is-lambda/test.js +16 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/isexe/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/isexe/index.js +57 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/isexe/mode.js +41 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/isexe/package.json +31 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/isexe/test/basic.js +221 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/isexe/windows.js +42 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/jackspeak/LICENSE.md +55 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/jackspeak/dist/commonjs/index.js +850 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/jackspeak/dist/commonjs/package.json +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/jackspeak/dist/commonjs/parse-args.js +50 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/jackspeak/dist/esm/index.js +840 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/jackspeak/dist/esm/package.json +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/jackspeak/dist/esm/parse-args.js +26 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/jackspeak/package.json +94 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/jsbn/LICENSE +40 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/jsbn/example.html +11 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/jsbn/example.js +5 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/jsbn/index.js +1361 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/jsbn/package.json +21 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/jsbn/test/es6-import.js +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/json-parse-even-better-errors/LICENSE.md +25 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/json-parse-even-better-errors/lib/index.js +135 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/json-parse-even-better-errors/package.json +49 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/json-stringify-nice/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/json-stringify-nice/index.js +38 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/json-stringify-nice/package.json +40 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/jsonparse/LICENSE +24 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/jsonparse/bench.js +26 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/jsonparse/examples/twitterfeed.js +30 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/jsonparse/jsonparse.js +413 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/jsonparse/package.json +22 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/jsonparse/samplejson/basic.json +167 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/jsonparse/samplejson/basic2.json +180 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/jsonparse/test/big-token.js +24 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/jsonparse/test/boundary.js +110 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/jsonparse/test/offset.js +67 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/jsonparse/test/primitives.js +57 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/jsonparse/test/surrogate.js +26 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/jsonparse/test/unvalid.js +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/jsonparse/test/utf8.js +38 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/just-diff/LICENSE +21 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/just-diff/index.cjs +230 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/just-diff/index.mjs +227 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/just-diff/package.json +33 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/just-diff/rollup.config.js +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/just-diff-apply/LICENSE +21 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/just-diff-apply/index.cjs +161 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/just-diff-apply/index.mjs +158 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/just-diff-apply/package.json +34 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/just-diff-apply/rollup.config.js +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmaccess/LICENSE +13 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmaccess/README.md +93 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmaccess/lib/index.js +140 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmaccess/package.json +53 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmdiff/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmdiff/README.md +95 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmdiff/lib/format-diff.js +96 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmdiff/lib/index.js +62 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmdiff/lib/should-print-patch.js +22 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmdiff/lib/tarball.js +38 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmdiff/lib/untar.js +96 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmdiff/package.json +70 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmexec/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmexec/README.md +48 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmexec/lib/file-exists.js +33 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmexec/lib/get-bin-from-manifest.js +22 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmexec/lib/index.js +285 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmexec/lib/is-windows.js +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmexec/lib/no-tty.js +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmexec/lib/run-script.js +71 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmexec/package.json +79 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmfund/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmfund/README.md +131 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmfund/lib/index.js +210 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmfund/package.json +64 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmhook/LICENSE.md +16 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmhook/README.md +271 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmhook/lib/index.js +70 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmhook/package.json +56 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmorg/LICENSE +13 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmorg/README.md +148 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmorg/lib/index.js +64 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmorg/package.json +61 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmpack/LICENSE +13 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmpack/README.md +55 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmpack/lib/index.js +69 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmpack/package.json +58 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmpublish/LICENSE +13 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmpublish/README.md +120 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmpublish/lib/index.js +4 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmpublish/lib/provenance.js +245 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmpublish/lib/publish.js +225 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmpublish/lib/unpublish.js +119 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmpublish/package.json +64 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmsearch/LICENSE +13 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmsearch/README.md +173 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmsearch/lib/index.js +71 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmsearch/package.json +57 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmteam/LICENSE +13 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmteam/README.md +188 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmteam/lib/index.js +92 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmteam/package.json +51 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmversion/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmversion/README.md +164 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmversion/lib/commit.js +17 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmversion/lib/enforce-clean.js +32 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmversion/lib/index.js +40 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmversion/lib/read-json.js +7 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmversion/lib/retrieve-tag.js +13 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmversion/lib/tag.js +30 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmversion/lib/version.js +140 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmversion/lib/write-json.js +16 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/libnpmversion/package.json +54 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/lru-cache/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/lru-cache/dist/commonjs/index.js +1446 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/lru-cache/dist/commonjs/package.json +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/lru-cache/dist/esm/index.js +1442 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/lru-cache/dist/esm/package.json +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/lru-cache/package.json +118 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/make-fetch-happen/LICENSE +16 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/make-fetch-happen/lib/cache/entry.js +469 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/make-fetch-happen/lib/cache/errors.js +11 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/make-fetch-happen/lib/cache/index.js +49 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/make-fetch-happen/lib/cache/key.js +17 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/make-fetch-happen/lib/cache/policy.js +161 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/make-fetch-happen/lib/fetch.js +118 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/make-fetch-happen/lib/index.js +41 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/make-fetch-happen/lib/options.js +54 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/make-fetch-happen/lib/pipeline.js +41 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/make-fetch-happen/lib/remote.js +127 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/make-fetch-happen/package.json +80 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minimatch/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js +14 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minimatch/dist/commonjs/ast.js +592 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minimatch/dist/commonjs/brace-expressions.js +152 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minimatch/dist/commonjs/escape.js +22 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minimatch/dist/commonjs/index.js +1016 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minimatch/dist/commonjs/package.json +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minimatch/dist/commonjs/unescape.js +24 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minimatch/dist/esm/assert-valid-pattern.js +10 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minimatch/dist/esm/ast.js +588 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minimatch/dist/esm/brace-expressions.js +148 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minimatch/dist/esm/escape.js +18 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minimatch/dist/esm/index.js +1000 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minimatch/dist/esm/package.json +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minimatch/dist/esm/unescape.js +20 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minimatch/package.json +82 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass/dist/commonjs/index.js +1028 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass/dist/commonjs/package.json +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass/dist/esm/index.js +1018 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass/dist/esm/package.json +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass/package.json +82 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-collect/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-collect/index.js +71 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-collect/package.json +30 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-fetch/LICENSE +28 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-fetch/lib/abort-error.js +17 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-fetch/lib/blob.js +97 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-fetch/lib/body.js +350 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-fetch/lib/fetch-error.js +32 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-fetch/lib/headers.js +267 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-fetch/lib/index.js +377 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-fetch/lib/request.js +282 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-fetch/lib/response.js +90 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-fetch/package.json +69 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-flush/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-flush/index.js +39 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-flush/node_modules/minipass/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-flush/node_modules/minipass/index.js +649 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-flush/node_modules/minipass/package.json +56 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-flush/package.json +39 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-json-stream/LICENSE +27 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-json-stream/index.js +227 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-json-stream/node_modules/minipass/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-json-stream/node_modules/minipass/index.js +649 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-json-stream/node_modules/minipass/package.json +56 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-json-stream/package.json +39 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-pipeline/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-pipeline/index.js +128 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass/index.js +649 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass/package.json +56 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-pipeline/package.json +29 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-sized/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-sized/index.js +67 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-sized/node_modules/minipass/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-sized/node_modules/minipass/index.js +649 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-sized/node_modules/minipass/package.json +56 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-sized/package.json +39 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minipass-sized/test/basic.js +83 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minizlib/LICENSE +26 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minizlib/constants.js +115 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minizlib/index.js +348 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minizlib/node_modules/minipass/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minizlib/node_modules/minipass/index.js +649 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minizlib/node_modules/minipass/package.json +56 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/minizlib/package.json +42 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/mkdirp/LICENSE +21 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/mkdirp/bin/cmd.js +68 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/mkdirp/index.js +31 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/mkdirp/lib/find-made.js +29 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/mkdirp/lib/mkdirp-manual.js +64 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/mkdirp/lib/mkdirp-native.js +39 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/mkdirp/lib/opts-arg.js +23 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/mkdirp/lib/path-arg.js +29 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/mkdirp/lib/use-native.js +10 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/mkdirp/package.json +44 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/mkdirp/readme.markdown +266 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ms/index.js +162 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ms/license.md +21 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ms/package.json +38 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/mute-stream/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/mute-stream/lib/index.js +142 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/mute-stream/package.json +52 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/negotiator/HISTORY.md +108 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/negotiator/LICENSE +24 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/negotiator/index.js +82 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/negotiator/lib/charset.js +169 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/negotiator/lib/encoding.js +184 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/negotiator/lib/language.js +179 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/negotiator/lib/mediaType.js +294 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/negotiator/package.json +42 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/.release-please-manifest.json +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/CHANGELOG.md +933 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/CONTRIBUTING.md +34 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/LICENSE +24 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/README.md +263 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/SECURITY.md +2 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/addon.gypi +204 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js +138 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/LICENSE +28 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/data/win/large-pdb-shim.cc +12 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp +8 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp.bat +5 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py +45 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSNew.py +365 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSProject.py +206 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings.py +1270 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings_test.py +1547 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSToolFile.py +59 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUserFile.py +153 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUtil.py +271 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSVersion.py +574 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/__init__.py +692 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common.py +654 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common_test.py +78 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml.py +169 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml_test.py +113 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/flock_tool.py +55 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/__init__.py +0 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/analyzer.py +804 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/android.py +1173 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/cmake.py +1318 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/compile_commands_json.py +123 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/dump_dependency_json.py +103 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/eclipse.py +461 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypd.py +89 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypsh.py +57 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py +2711 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs.py +3977 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs_test.py +44 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja.py +2933 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja_test.py +55 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode.py +1391 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode_test.py +25 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input.py +3113 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input_test.py +98 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/mac_tool.py +771 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/msvs_emulation.py +1259 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/ninja_syntax.py +174 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/simple_copy.py +61 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/win_tool.py +373 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py +1933 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_ninja.py +302 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcodeproj_file.py +3198 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xml_fix.py +65 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/LICENSE +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/LICENSE.APACHE +177 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/LICENSE.BSD +23 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/__init__.py +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_elffile.py +108 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_manylinux.py +252 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_musllinux.py +83 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_parser.py +359 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_structures.py +61 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_tokenizer.py +192 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/markers.py +252 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/metadata.py +825 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/py.typed +0 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/requirements.py +90 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/specifiers.py +1030 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/tags.py +553 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/utils.py +172 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/version.py +563 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/pyproject.toml +119 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/gyp/test_gyp.py +261 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/lib/Find-VisualStudio.cs +250 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/lib/build.js +220 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/lib/clean.js +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/lib/configure.js +308 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/lib/create-config-gypi.js +150 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/lib/download.js +39 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/lib/find-node-directory.js +63 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/lib/find-python.js +310 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/lib/find-visualstudio.js +542 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/lib/install.js +415 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/lib/list.js +26 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/lib/log.js +169 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/lib/node-gyp.js +188 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/lib/process-release.js +146 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/lib/rebuild.js +12 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/lib/remove.js +43 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/lib/util.js +81 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/macOS_Catalina_acid_test.sh +21 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/package.json +51 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/release-please-config.json +40 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/node-gyp/src/win_delay_load_hook.cc +39 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/nopt/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/nopt/README.md +213 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/nopt/bin/nopt.js +29 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/nopt/lib/debug.js +4 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/nopt/lib/nopt-lib.js +479 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/nopt/lib/nopt.js +30 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/nopt/lib/type-defs.js +91 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/nopt/package.json +51 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/normalize-package-data/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/normalize-package-data/lib/extract_description.js +24 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/normalize-package-data/lib/fixer.js +475 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/normalize-package-data/lib/make_warning.js +22 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/normalize-package-data/lib/normalize.js +48 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/normalize-package-data/lib/safe_format.js +11 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/normalize-package-data/lib/typos.json +25 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/normalize-package-data/lib/warning_messages.json +30 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/normalize-package-data/package.json +62 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-audit-report/LICENSE +16 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-audit-report/lib/colors.js +22 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-audit-report/lib/exit-code.js +14 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-audit-report/lib/index.js +41 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-audit-report/lib/reporters/detail.js +86 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-audit-report/lib/reporters/install.js +75 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-audit-report/lib/reporters/json.js +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-audit-report/lib/reporters/quiet.js +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-audit-report/package.json +60 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-bundled/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-bundled/lib/index.js +254 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-bundled/package.json +49 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-install-checks/LICENSE +27 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-install-checks/lib/index.js +101 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-install-checks/package.json +51 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-normalize-package-bin/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-normalize-package-bin/lib/index.js +64 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-normalize-package-bin/package.json +44 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-package-arg/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-package-arg/lib/npa.js +411 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-package-arg/package.json +67 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-packlist/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-packlist/lib/index.js +456 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-packlist/package.json +61 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-pick-manifest/LICENSE.md +16 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-pick-manifest/lib/index.js +218 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-pick-manifest/package.json +63 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-profile/LICENSE.md +20 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-profile/lib/index.js +295 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-profile/package.json +57 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-registry-fetch/LICENSE.md +20 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-registry-fetch/lib/auth.js +181 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-registry-fetch/lib/check-response.js +100 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-registry-fetch/lib/default-opts.js +19 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-registry-fetch/lib/errors.js +80 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-registry-fetch/lib/index.js +252 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-registry-fetch/package.json +68 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-user-validate/LICENSE +27 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-user-validate/lib/index.js +61 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npm-user-validate/package.json +48 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npmlog/LICENSE.md +20 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npmlog/lib/log.js +400 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/npmlog/package.json +52 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/p-map/index.js +81 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/p-map/license +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/p-map/package.json +53 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/pacote/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/pacote/README.md +285 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/pacote/lib/bin.js +158 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/pacote/lib/dir.js +108 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/pacote/lib/fetcher.js +505 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/pacote/lib/file.js +96 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/pacote/lib/git.js +327 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/pacote/lib/index.js +23 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/pacote/lib/registry.js +369 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/pacote/lib/remote.js +91 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/pacote/lib/util/add-git-sha.js +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/pacote/lib/util/cache-dir.js +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/pacote/lib/util/is-package-bin.js +25 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/pacote/lib/util/npm.js +14 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/pacote/lib/util/tar-create-options.js +31 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/pacote/lib/util/trailing-slashes.js +10 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/pacote/package.json +79 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/parse-conflict-json/LICENSE.md +20 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/parse-conflict-json/lib/index.js +104 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/parse-conflict-json/package.json +49 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/path-key/index.js +16 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/path-key/license +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/path-key/package.json +39 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/path-scurry/LICENSE.md +55 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/path-scurry/dist/commonjs/index.js +2020 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/path-scurry/dist/commonjs/package.json +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/path-scurry/dist/esm/index.js +1985 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/path-scurry/dist/esm/package.json +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/path-scurry/package.json +85 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/API.md +872 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/LICENSE-MIT +22 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/index.js +17 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/parser.js +1012 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/processor.js +170 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/attribute.js +448 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/className.js +50 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/combinator.js +21 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/comment.js +21 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/constructors.js +65 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/container.js +308 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/guards.js +58 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/id.js +25 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/index.js +21 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/namespace.js +80 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/nesting.js +22 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/node.js +192 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/pseudo.js +26 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/root.js +44 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/selector.js +21 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/string.js +21 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/tag.js +21 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/types.js +28 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/universal.js +22 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/sortAscending.js +11 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/tokenTypes.js +70 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/tokenize.js +239 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/util/ensureObject.js +17 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/util/getProp.js +18 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/util/index.js +13 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/util/stripComments.js +21 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/dist/util/unesc.js +76 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/postcss-selector-parser/package.json +80 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/proc-log/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/proc-log/lib/index.js +23 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/proc-log/package.json +44 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/promise-all-reject-late/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/promise-all-reject-late/index.js +27 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/promise-all-reject-late/package.json +22 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/promise-all-reject-late/test/index.js +88 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/promise-call-limit/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/promise-call-limit/dist/commonjs/index.js +87 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/promise-call-limit/dist/commonjs/package.json +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/promise-call-limit/dist/esm/index.js +60 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/promise-call-limit/dist/esm/package.json +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/promise-call-limit/package.json +66 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/promise-inflight/LICENSE +14 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/promise-inflight/inflight.js +36 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/promise-inflight/package.json +24 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/promise-retry/LICENSE +19 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/promise-retry/index.js +52 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/promise-retry/package.json +37 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/promise-retry/test/test.js +263 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/promzard/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/promzard/lib/index.js +175 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/promzard/package.json +49 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/.travis.yml +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/LICENSE +222 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/README.md +82 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/bin/qrcode-terminal.js +101 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/example/basic.js +2 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/example/basic.png +0 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/example/callback.js +4 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/example/small-qrcode.js +6 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/lib/main.js +100 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/package.json +37 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/test/main.js +63 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QR8bitByte.js +22 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRBitBuffer.js +38 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRErrorCorrectLevel.js +7 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRMaskPattern.js +10 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRMath.js +44 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRMode.js +6 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRPolynomial.js +66 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRRSBlock.js +298 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRUtil.js +272 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/index.js +462 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/read/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/read/dist/commonjs/package.json +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/read/dist/commonjs/read.js +95 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/read/dist/esm/package.json +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/read/dist/esm/read.js +88 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/read/package.json +87 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/read-cmd-shim/LICENSE +14 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/read-cmd-shim/lib/index.js +75 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/read-cmd-shim/package.json +47 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/read-package-json/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/read-package-json/lib/read-json.js +589 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/read-package-json/package.json +65 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/read-package-json-fast/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/read-package-json-fast/lib/index.js +141 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/read-package-json-fast/package.json +47 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/retry/License +21 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/retry/Makefile +18 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/retry/equation.gif +0 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/retry/example/dns.js +31 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/retry/example/stop.js +40 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/retry/index.js +1 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/retry/lib/retry.js +100 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/retry/lib/retry_operation.js +158 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/retry/package.json +32 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/retry/test/common.js +10 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/retry/test/integration/test-forever.js +24 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/retry/test/integration/test-retry-operation.js +258 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/retry/test/integration/test-retry-wrap.js +101 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/retry/test/integration/test-timeouts.js +69 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/safer-buffer/LICENSE +21 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/safer-buffer/Porting-Buffer.md +268 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/safer-buffer/dangerous.js +58 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/safer-buffer/package.json +34 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/safer-buffer/safer.js +77 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/safer-buffer/tests.js +406 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/README.md +640 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/bin/semver.js +197 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/classes/comparator.js +141 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/classes/index.js +5 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/classes/range.js +539 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/classes/semver.js +302 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/clean.js +6 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/cmp.js +52 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/coerce.js +60 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/compare-build.js +7 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/compare-loose.js +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/compare.js +5 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/diff.js +65 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/eq.js +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/gt.js +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/gte.js +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/inc.js +19 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/lt.js +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/lte.js +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/major.js +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/minor.js +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/neq.js +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/parse.js +16 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/patch.js +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/prerelease.js +6 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/rcompare.js +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/rsort.js +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/satisfies.js +10 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/sort.js +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/functions/valid.js +6 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/index.js +89 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/internal/constants.js +35 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/internal/debug.js +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/internal/identifiers.js +23 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/internal/parse-options.js +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/internal/re.js +217 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/node_modules/lru-cache/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/node_modules/lru-cache/index.js +334 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/node_modules/lru-cache/package.json +34 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/package.json +78 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/preload.js +2 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/range.bnf +16 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/ranges/gtr.js +4 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/ranges/intersects.js +7 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/ranges/ltr.js +4 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/ranges/max-satisfying.js +25 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/ranges/min-satisfying.js +24 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/ranges/min-version.js +61 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/ranges/outside.js +80 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/ranges/simplify.js +47 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/ranges/subset.js +247 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/ranges/to-comparators.js +8 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/semver/ranges/valid.js +11 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/set-blocking/LICENSE.txt +14 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/set-blocking/index.js +7 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/set-blocking/package.json +42 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/shebang-command/index.js +19 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/shebang-command/license +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/shebang-command/package.json +34 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/shebang-regex/index.js +2 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/shebang-regex/license +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/shebang-regex/package.json +35 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/signal-exit/LICENSE.txt +16 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/signal-exit/dist/cjs/browser.js +10 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/signal-exit/dist/cjs/index.js +279 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/signal-exit/dist/cjs/package.json +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/signal-exit/dist/cjs/signals.js +42 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/signal-exit/dist/mjs/browser.js +4 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/signal-exit/dist/mjs/index.js +275 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/signal-exit/dist/mjs/package.json +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/signal-exit/dist/mjs/signals.js +39 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/signal-exit/package.json +106 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/sigstore/LICENSE +202 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/sigstore/dist/config.js +116 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/sigstore/dist/index.js +34 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/sigstore/dist/sigstore.js +103 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/sigstore/package.json +47 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/smart-buffer/LICENSE +20 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/smart-buffer/build/smartbuffer.js +1233 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/smart-buffer/build/utils.js +108 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/smart-buffer/docs/ROADMAP.md +0 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/smart-buffer/package.json +79 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/socks/LICENSE +20 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/socks/build/client/socksclient.js +793 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/socks/build/common/constants.js +108 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/socks/build/common/helpers.js +166 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/socks/build/common/receivebuffer.js +43 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/socks/build/common/util.js +25 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/socks/build/index.js +18 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/socks/docs/examples/index.md +17 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/socks/docs/examples/javascript/associateExample.md +90 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/socks/docs/examples/javascript/bindExample.md +83 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/socks/docs/examples/javascript/connectExample.md +258 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/socks/docs/examples/typescript/associateExample.md +93 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/socks/docs/examples/typescript/bindExample.md +86 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/socks/docs/examples/typescript/connectExample.md +265 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/socks/docs/index.md +5 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/socks/docs/migratingFromV1.md +86 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/socks/package.json +58 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/socks-proxy-agent/LICENSE +22 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/socks-proxy-agent/dist/index.js +186 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/socks-proxy-agent/package.json +142 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/spdx-correct/LICENSE +202 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/spdx-correct/index.js +386 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/spdx-correct/node_modules/spdx-expression-parse/AUTHORS +4 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/spdx-correct/node_modules/spdx-expression-parse/LICENSE +22 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/spdx-correct/node_modules/spdx-expression-parse/index.js +8 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/spdx-correct/node_modules/spdx-expression-parse/package.json +39 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/spdx-correct/node_modules/spdx-expression-parse/parse.js +138 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/spdx-correct/node_modules/spdx-expression-parse/scan.js +131 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/spdx-correct/package.json +32 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/spdx-exceptions/deprecated.json +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/spdx-exceptions/index.json +68 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/spdx-exceptions/package.json +19 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/spdx-expression-parse/AUTHORS +4 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/spdx-expression-parse/LICENSE +22 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/spdx-expression-parse/index.js +8 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/spdx-expression-parse/package.json +39 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/spdx-expression-parse/parse.js +138 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/spdx-expression-parse/scan.js +131 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/spdx-license-ids/deprecated.json +33 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/spdx-license-ids/index.json +608 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/spdx-license-ids/package.json +39 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ssri/LICENSE.md +16 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ssri/lib/index.js +580 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/ssri/package.json +65 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/string-width/index.js +47 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/string-width/license +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/string-width/package.json +56 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/string-width-cjs/index.js +47 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/string-width-cjs/license +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/string-width-cjs/package.json +56 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/strip-ansi/index.js +4 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/strip-ansi/license +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/strip-ansi/package.json +54 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/strip-ansi-cjs/index.js +4 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/strip-ansi-cjs/license +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/strip-ansi-cjs/package.json +54 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/supports-color/browser.js +30 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/supports-color/index.js +182 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/supports-color/license +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/supports-color/package.json +60 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/index.js +18 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/create.js +111 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/extract.js +113 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/get-write-flag.js +20 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/header.js +304 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/high-level-opt.js +29 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/large-numbers.js +104 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/list.js +139 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/mkdir.js +229 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/mode-fix.js +27 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/normalize-unicode.js +12 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/normalize-windows-path.js +8 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/pack.js +432 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/parse.js +552 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/path-reservations.js +156 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/pax.js +150 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/read-entry.js +107 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/replace.js +246 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/strip-absolute-path.js +24 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/strip-trailing-slashes.js +13 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/types.js +44 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/unpack.js +923 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/update.js +40 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/warn-mixin.js +24 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/winchars.js +23 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/lib/write-entry.js +546 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/node_modules/fs-minipass/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/node_modules/fs-minipass/index.js +422 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass/index.js +649 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass/package.json +56 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/node_modules/fs-minipass/package.json +39 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/node_modules/minipass/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/node_modules/minipass/index.js +702 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/node_modules/minipass/index.mjs +700 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/node_modules/minipass/package.json +76 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tar/package.json +70 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/text-table/LICENSE +18 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/text-table/example/align.js +8 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/text-table/example/center.js +8 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/text-table/example/dotalign.js +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/text-table/example/doubledot.js +11 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/text-table/example/table.js +6 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/text-table/index.js +86 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/text-table/package.json +44 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/text-table/test/align.js +18 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/text-table/test/ansi-colors.js +32 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/text-table/test/center.js +18 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/text-table/test/dotalign.js +20 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/text-table/test/doubledot.js +24 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/text-table/test/table.js +14 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tiny-relative-date/LICENSE.md +21 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tiny-relative-date/lib/factory.js +100 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tiny-relative-date/lib/index.js +18 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tiny-relative-date/package.json +39 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tiny-relative-date/src/factory.js +89 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tiny-relative-date/src/index.js +4 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tiny-relative-date/translations/da.js +31 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tiny-relative-date/translations/de.js +31 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tiny-relative-date/translations/en-short.js +31 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tiny-relative-date/translations/en.js +31 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tiny-relative-date/translations/es.js +31 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/treeverse/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/treeverse/lib/breadth.js +67 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/treeverse/lib/depth-descent.js +88 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/treeverse/lib/depth.js +76 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/treeverse/lib/index.js +4 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/treeverse/package.json +51 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tuf-js/LICENSE +21 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tuf-js/dist/config.js +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tuf-js/dist/error.js +48 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tuf-js/dist/fetcher.js +84 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tuf-js/dist/index.js +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tuf-js/dist/store.js +208 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tuf-js/dist/updater.js +343 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tuf-js/dist/utils/tmpfile.js +25 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tuf-js/dist/utils/url.js +14 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/tuf-js/package.json +43 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/unique-filename/LICENSE +5 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/unique-filename/lib/index.js +7 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/unique-filename/package.json +51 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/unique-slug/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/unique-slug/lib/index.js +11 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/unique-slug/package.json +47 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/util-deprecate/History.md +16 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/util-deprecate/LICENSE +24 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/util-deprecate/browser.js +67 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/util-deprecate/node.js +6 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/util-deprecate/package.json +27 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/validate-npm-package-license/LICENSE +202 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/validate-npm-package-license/index.js +86 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-expression-parse/AUTHORS +4 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-expression-parse/LICENSE +22 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-expression-parse/index.js +8 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-expression-parse/package.json +39 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-expression-parse/parse.js +138 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-expression-parse/scan.js +131 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/validate-npm-package-license/package.json +28 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/validate-npm-package-name/LICENSE +6 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/validate-npm-package-name/lib/index.js +107 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/validate-npm-package-name/package.json +65 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/walk-up-path/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/walk-up-path/dist/cjs/index.js +18 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/walk-up-path/dist/cjs/package.json +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/walk-up-path/dist/mjs/index.js +14 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/walk-up-path/dist/mjs/package.json +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/walk-up-path/package.json +72 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/wcwidth/LICENSE +30 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/wcwidth/combining.js +50 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/wcwidth/docs/index.md +65 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/wcwidth/index.js +99 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/wcwidth/package.json +42 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/wcwidth/test/index.js +64 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/which/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/which/README.md +51 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/which/bin/which.js +52 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/which/lib/index.js +111 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/which/node_modules/isexe/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/index.js +46 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/options.js +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/package.json +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/posix.js +67 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/win32.js +62 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/index.js +16 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/options.js +2 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/package.json +3 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/posix.js +62 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/win32.js +57 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/which/node_modules/isexe/package.json +96 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/which/package.json +57 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/wide-align/LICENSE +14 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/wide-align/align.js +65 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/wide-align/package.json +33 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/index.js +214 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/license +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/node_modules/ansi-regex/index.js +8 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/node_modules/ansi-regex/license +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/node_modules/ansi-regex/package.json +58 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/RGI_Emoji.js +6 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/es2015/RGI_Emoji.js +6 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/es2015/index.js +6 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/es2015/text.js +6 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/index.js +6 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/package.json +52 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/text.js +6 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/node_modules/string-width/index.js +54 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/node_modules/string-width/license +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/node_modules/string-width/package.json +59 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/node_modules/strip-ansi/index.js +14 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/node_modules/strip-ansi/license +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/node_modules/strip-ansi/package.json +57 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi/package.json +69 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi-cjs/index.js +216 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi-cjs/license +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/index.js +163 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/license +9 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/package.json +56 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/wrap-ansi-cjs/package.json +62 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/write-file-atomic/LICENSE.md +5 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/write-file-atomic/lib/index.js +267 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/write-file-atomic/package.json +57 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/yallist/LICENSE +15 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/yallist/iterator.js +8 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/yallist/package.json +29 -0
- nodejs_wheel/lib/node_modules/npm/node_modules/yallist/yallist.js +426 -0
- nodejs_wheel/lib/node_modules/npm/package.json +268 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/audit.js.test.cjs +437 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/cache.js.test.cjs +63 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/completion.js.test.cjs +232 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/config.js.test.cjs +427 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/diff.js.test.cjs +88 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/dist-tag.js.test.cjs +157 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/doctor.js.test.cjs +1647 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/fund.js.test.cjs +92 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/init.js.test.cjs +24 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/link.js.test.cjs +55 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/ls.js.test.cjs +717 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/outdated.js.test.cjs +239 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/pack.js.test.cjs +150 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/profile.js.test.cjs +116 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/publish.js.test.cjs +701 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/query.js.test.cjs +316 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/sbom.js.test.cjs +1410 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/search.js.test.cjs +146 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/shrinkwrap.js.test.cjs +396 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/stars.js.test.cjs +14 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/team.js.test.cjs +84 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/version.js.test.cjs +78 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/commands/view.js.test.cjs +608 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/docs.js.test.cjs +4503 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/npm.js.test.cjs +450 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/utils/error-message.js.test.cjs +1768 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/utils/exit-handler.js.test.cjs +67 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/utils/explain-dep.js.test.cjs +249 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/utils/explain-eresolve.js.test.cjs +655 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/utils/log-file.js.test.cjs +70 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/utils/open-url-prompt.js.test.cjs +23 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/utils/open-url.js.test.cjs +25 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/utils/reify-output.js.test.cjs +1652 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/utils/sbom-cyclonedx.js.test.cjs +1076 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/utils/sbom-spdx.js.test.cjs +641 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/utils/tar.js.test.cjs +66 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/utils/update-notifier.js.test.cjs +102 -0
- nodejs_wheel/lib/node_modules/npm/tap-snapshots/test/lib/utils/validate-lockfile.js.test.cjs +35 -0
- nodejs_wheel/lib/node_modules/npm/test/bin/npm-cli.js +11 -0
- nodejs_wheel/lib/node_modules/npm/test/bin/npx-cli.js +99 -0
- nodejs_wheel/lib/node_modules/npm/test/bin/windows-shims.js +276 -0
- nodejs_wheel/lib/node_modules/npm/test/fixtures/clean-snapshot.js +53 -0
- nodejs_wheel/lib/node_modules/npm/test/fixtures/eresolve-explanations.js +559 -0
- nodejs_wheel/lib/node_modules/npm/test/fixtures/libnpmsearch-stream-result.js +288 -0
- nodejs_wheel/lib/node_modules/npm/test/fixtures/merge-conflict.json +36 -0
- nodejs_wheel/lib/node_modules/npm/test/fixtures/mock-logs.js +131 -0
- nodejs_wheel/lib/node_modules/npm/test/fixtures/mock-npm.js +319 -0
- nodejs_wheel/lib/node_modules/npm/test/fixtures/sandbox.js +336 -0
- nodejs_wheel/lib/node_modules/npm/test/fixtures/tmock.js +27 -0
- nodejs_wheel/lib/node_modules/npm/test/fixtures/tnock.js +17 -0
- nodejs_wheel/lib/node_modules/npm/test/fixtures/tspawk.js +16 -0
- nodejs_wheel/lib/node_modules/npm/test/index.js +20 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/arborist-cmd.js +218 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/cli-entry.js +163 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/cli.js +10 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/access.js +385 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/adduser.js +183 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/audit.js +2161 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/bugs.js +96 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/cache.js +318 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/ci.js +233 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/completion.js +199 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/config.js +573 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/dedupe.js +96 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/deprecate.js +171 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/diff.js +1044 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/dist-tag.js +376 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/docs.js +163 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/doctor.js +666 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/edit.js +131 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/exec.js +256 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/explain.js +277 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/explore.js +175 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/find-dupes.js +84 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/fund.js +824 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/get.js +16 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/help-search.js +90 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/help.js +227 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/hook.js +630 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/init.js +432 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/install-ci-test.js +65 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/install-test.js +65 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/install.js +290 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/link.js +525 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/ll.js +34 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/login.js +159 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/logout.js +154 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/ls.js +5327 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/org.js +570 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/outdated.js +613 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/owner.js +682 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/pack.js +258 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/ping.js +67 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/pkg.js +718 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/prefix.js +12 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/profile.js +1120 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/prune.js +21 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/publish.js +906 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/query.js +344 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/rebuild.js +207 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/repo.js +320 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/restart.js +33 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/root.js +12 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/run-script.js +915 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/sbom.js +503 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/search.js +209 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/set.js +49 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/shrinkwrap.js +214 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/star.js +61 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/stars.js +127 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/start.js +33 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/stop.js +33 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/team.js +432 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/test.js +33 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/token.js +519 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/uninstall.js +202 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/unpublish.js +648 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/unstar.js +62 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/update.js +83 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/version.js +386 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/view.js +605 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/commands/whoami.js +94 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/docs.js +136 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/es6/validate-engines.js +34 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/fixtures/sigstore/valid-sigstore-attestations.json +94 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/fixtures/sigstore/valid-tuf-js-attestations.json +94 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/lifecycle-cmd.js +32 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/load-all-commands.js +87 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/npm.js +723 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/utils/audit-error.js +121 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/utils/completion/installed-deep.js +205 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/utils/completion/installed-shallow.js +55 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/utils/did-you-mean.js +54 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/utils/display.js +161 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/utils/error-message.js +438 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/utils/exit-handler.js +630 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/utils/explain-dep.js +277 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/utils/explain-eresolve.js +31 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/utils/log-file.js +359 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/utils/log-shim.js +101 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/utils/open-url-prompt.js +156 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/utils/open-url.js +143 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/utils/otplease.js +145 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/utils/pulse-till-done.js +35 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/utils/queryable.js +965 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/utils/read-user-info.js +116 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/utils/reify-finish.js +95 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/utils/reify-output.js +438 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/utils/sbom-cyclonedx.js +261 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/utils/sbom-spdx.js +218 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/utils/tar.js +142 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/utils/timers.js +107 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/utils/update-notifier.js +246 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/utils/validate-lockfile.js +82 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/utils/web-auth.js +33 -0
- nodejs_wheel/lib/node_modules/npm/test/lib/workspaces/get-workspaces.js +222 -0
- nodejs_wheel/lib/node_modules/npm/test/schemas/cyclonedx/bom-1.5.schema.json +3799 -0
- nodejs_wheel/lib/node_modules/npm/test/schemas/cyclonedx/jsf-0.82.schema.json +240 -0
- nodejs_wheel/lib/node_modules/npm/test/schemas/cyclonedx/spdx.schema.json +621 -0
- nodejs_wheel/lib/node_modules/npm/test/schemas/spdx/spdx-2.3.schema.json +740 -0
- nodejs_wheel/node.exe +0 -0
- nodejs_wheel_binaries-20.13.0.dist-info/METADATA +102 -0
- nodejs_wheel_binaries-20.13.0.dist-info/RECORD +2187 -0
- nodejs_wheel_binaries-20.13.0.dist-info/WHEEL +6 -0
- nodejs_wheel_binaries-20.13.0.dist-info/licenses/LICENSE +7 -0
nodejs_wheel/__init__.py
ADDED
nodejs_wheel/__main__.py
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
import os
|
|
3
|
+
import subprocess
|
|
4
|
+
import sys
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
ROOT_DIR = os.path.dirname(__file__)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
def _program(name, args, **kwargs):
|
|
11
|
+
bin_dir = ROOT_DIR if os.name == 'nt' else os.path.join(ROOT_DIR, "bin")
|
|
12
|
+
return subprocess.call([os.path.join(bin_dir, name)] + args, **kwargs)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
def call_node(*args, **kwargs):
|
|
16
|
+
suffix = '.exe' if os.name == 'nt' else ''
|
|
17
|
+
return _program('node' + suffix, list(args), **kwargs)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
def node(args=None, **kwargs):
|
|
21
|
+
"""Call the node executable with the given arguments.
|
|
22
|
+
|
|
23
|
+
Parameters
|
|
24
|
+
----------
|
|
25
|
+
args : Optional[list[str]], default=None
|
|
26
|
+
List of arguments to pass to the node executable.
|
|
27
|
+
If None, the arguments are taken from sys.argv[1:].
|
|
28
|
+
**kwargs : dict[str, Any]
|
|
29
|
+
Other arguments passed to subprocess.call
|
|
30
|
+
|
|
31
|
+
Returns
|
|
32
|
+
-------
|
|
33
|
+
int
|
|
34
|
+
Return code of the node executable.
|
|
35
|
+
"""
|
|
36
|
+
if args is None:
|
|
37
|
+
args = sys.argv[1:]
|
|
38
|
+
return call_node(*args, **kwargs)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
def npm(args=None, **kwargs):
|
|
42
|
+
"""Call the npm executable with the given arguments.
|
|
43
|
+
|
|
44
|
+
Parameters
|
|
45
|
+
----------
|
|
46
|
+
args : Optional[list[str]], default=None
|
|
47
|
+
List of arguments to pass to the npm executable.
|
|
48
|
+
If None, the arguments are taken from sys.argv[1:].
|
|
49
|
+
**kwargs : dict[str, Any]
|
|
50
|
+
Other arguments passed to subprocess.call
|
|
51
|
+
|
|
52
|
+
Returns
|
|
53
|
+
-------
|
|
54
|
+
int
|
|
55
|
+
Return code of the npm executable.
|
|
56
|
+
"""
|
|
57
|
+
if args is None:
|
|
58
|
+
args = sys.argv[1:]
|
|
59
|
+
return call_node(os.path.join(ROOT_DIR, "lib", "node_modules", "npm", "bin", "npm-cli.js"), *args, **kwargs)
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
def npx(args=None, **kwargs):
|
|
63
|
+
"""Call the npx executable with the given arguments.
|
|
64
|
+
|
|
65
|
+
Parameters
|
|
66
|
+
----------
|
|
67
|
+
args : Optional[list[str]], default=None
|
|
68
|
+
List of arguments to pass to the npx executable.
|
|
69
|
+
If None, the arguments are taken from sys.argv[1:].
|
|
70
|
+
**kwargs : dict[str, Any]
|
|
71
|
+
Other arguments passed to subprocess.call
|
|
72
|
+
|
|
73
|
+
Returns
|
|
74
|
+
-------
|
|
75
|
+
int
|
|
76
|
+
Return code of the npx executable.
|
|
77
|
+
"""
|
|
78
|
+
if args is None:
|
|
79
|
+
args = sys.argv[1:]
|
|
80
|
+
return call_node(os.path.join(ROOT_DIR, "lib", "node_modules", "npm", "bin", "npx-cli.js"), *args, **kwargs)
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
def _node_entry_point():
|
|
84
|
+
raise SystemExit(node(close_fds=False))
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
def _npm_entry_point():
|
|
88
|
+
raise SystemExit(npm(close_fds=False))
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
def _npx_entry_point():
|
|
92
|
+
raise SystemExit(npx(close_fds=False))
|
|
File without changes
|
|
@@ -0,0 +1,235 @@
|
|
|
1
|
+
The npm application
|
|
2
|
+
Copyright (c) npm, Inc. and Contributors
|
|
3
|
+
Licensed on the terms of The Artistic License 2.0
|
|
4
|
+
|
|
5
|
+
Node package dependencies of the npm application
|
|
6
|
+
Copyright (c) their respective copyright owners
|
|
7
|
+
Licensed on their respective license terms
|
|
8
|
+
|
|
9
|
+
The npm public registry at https://registry.npmjs.org
|
|
10
|
+
and the npm website at https://www.npmjs.com
|
|
11
|
+
Operated by npm, Inc.
|
|
12
|
+
Use governed by terms published on https://www.npmjs.com
|
|
13
|
+
|
|
14
|
+
"Node.js"
|
|
15
|
+
Trademark Joyent, Inc., https://joyent.com
|
|
16
|
+
Neither npm nor npm, Inc. are affiliated with Joyent, Inc.
|
|
17
|
+
|
|
18
|
+
The Node.js application
|
|
19
|
+
Project of Node Foundation, https://nodejs.org
|
|
20
|
+
|
|
21
|
+
The npm Logo
|
|
22
|
+
Copyright (c) Mathias Pettersson and Brian Hammond
|
|
23
|
+
|
|
24
|
+
"Gubblebum Blocky" typeface
|
|
25
|
+
Copyright (c) Tjarda Koster, https://jelloween.deviantart.com
|
|
26
|
+
Used with permission
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
--------
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
The Artistic License 2.0
|
|
33
|
+
|
|
34
|
+
Copyright (c) 2000-2006, The Perl Foundation.
|
|
35
|
+
|
|
36
|
+
Everyone is permitted to copy and distribute verbatim copies
|
|
37
|
+
of this license document, but changing it is not allowed.
|
|
38
|
+
|
|
39
|
+
Preamble
|
|
40
|
+
|
|
41
|
+
This license establishes the terms under which a given free software
|
|
42
|
+
Package may be copied, modified, distributed, and/or redistributed.
|
|
43
|
+
The intent is that the Copyright Holder maintains some artistic
|
|
44
|
+
control over the development of that Package while still keeping the
|
|
45
|
+
Package available as open source and free software.
|
|
46
|
+
|
|
47
|
+
You are always permitted to make arrangements wholly outside of this
|
|
48
|
+
license directly with the Copyright Holder of a given Package. If the
|
|
49
|
+
terms of this license do not permit the full use that you propose to
|
|
50
|
+
make of the Package, you should contact the Copyright Holder and seek
|
|
51
|
+
a different licensing arrangement.
|
|
52
|
+
|
|
53
|
+
Definitions
|
|
54
|
+
|
|
55
|
+
"Copyright Holder" means the individual(s) or organization(s)
|
|
56
|
+
named in the copyright notice for the entire Package.
|
|
57
|
+
|
|
58
|
+
"Contributor" means any party that has contributed code or other
|
|
59
|
+
material to the Package, in accordance with the Copyright Holder's
|
|
60
|
+
procedures.
|
|
61
|
+
|
|
62
|
+
"You" and "your" means any person who would like to copy,
|
|
63
|
+
distribute, or modify the Package.
|
|
64
|
+
|
|
65
|
+
"Package" means the collection of files distributed by the
|
|
66
|
+
Copyright Holder, and derivatives of that collection and/or of
|
|
67
|
+
those files. A given Package may consist of either the Standard
|
|
68
|
+
Version, or a Modified Version.
|
|
69
|
+
|
|
70
|
+
"Distribute" means providing a copy of the Package or making it
|
|
71
|
+
accessible to anyone else, or in the case of a company or
|
|
72
|
+
organization, to others outside of your company or organization.
|
|
73
|
+
|
|
74
|
+
"Distributor Fee" means any fee that you charge for Distributing
|
|
75
|
+
this Package or providing support for this Package to another
|
|
76
|
+
party. It does not mean licensing fees.
|
|
77
|
+
|
|
78
|
+
"Standard Version" refers to the Package if it has not been
|
|
79
|
+
modified, or has been modified only in ways explicitly requested
|
|
80
|
+
by the Copyright Holder.
|
|
81
|
+
|
|
82
|
+
"Modified Version" means the Package, if it has been changed, and
|
|
83
|
+
such changes were not explicitly requested by the Copyright
|
|
84
|
+
Holder.
|
|
85
|
+
|
|
86
|
+
"Original License" means this Artistic License as Distributed with
|
|
87
|
+
the Standard Version of the Package, in its current version or as
|
|
88
|
+
it may be modified by The Perl Foundation in the future.
|
|
89
|
+
|
|
90
|
+
"Source" form means the source code, documentation source, and
|
|
91
|
+
configuration files for the Package.
|
|
92
|
+
|
|
93
|
+
"Compiled" form means the compiled bytecode, object code, binary,
|
|
94
|
+
or any other form resulting from mechanical transformation or
|
|
95
|
+
translation of the Source form.
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
Permission for Use and Modification Without Distribution
|
|
99
|
+
|
|
100
|
+
(1) You are permitted to use the Standard Version and create and use
|
|
101
|
+
Modified Versions for any purpose without restriction, provided that
|
|
102
|
+
you do not Distribute the Modified Version.
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
Permissions for Redistribution of the Standard Version
|
|
106
|
+
|
|
107
|
+
(2) You may Distribute verbatim copies of the Source form of the
|
|
108
|
+
Standard Version of this Package in any medium without restriction,
|
|
109
|
+
either gratis or for a Distributor Fee, provided that you duplicate
|
|
110
|
+
all of the original copyright notices and associated disclaimers. At
|
|
111
|
+
your discretion, such verbatim copies may or may not include a
|
|
112
|
+
Compiled form of the Package.
|
|
113
|
+
|
|
114
|
+
(3) You may apply any bug fixes, portability changes, and other
|
|
115
|
+
modifications made available from the Copyright Holder. The resulting
|
|
116
|
+
Package will still be considered the Standard Version, and as such
|
|
117
|
+
will be subject to the Original License.
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
Distribution of Modified Versions of the Package as Source
|
|
121
|
+
|
|
122
|
+
(4) You may Distribute your Modified Version as Source (either gratis
|
|
123
|
+
or for a Distributor Fee, and with or without a Compiled form of the
|
|
124
|
+
Modified Version) provided that you clearly document how it differs
|
|
125
|
+
from the Standard Version, including, but not limited to, documenting
|
|
126
|
+
any non-standard features, executables, or modules, and provided that
|
|
127
|
+
you do at least ONE of the following:
|
|
128
|
+
|
|
129
|
+
(a) make the Modified Version available to the Copyright Holder
|
|
130
|
+
of the Standard Version, under the Original License, so that the
|
|
131
|
+
Copyright Holder may include your modifications in the Standard
|
|
132
|
+
Version.
|
|
133
|
+
|
|
134
|
+
(b) ensure that installation of your Modified Version does not
|
|
135
|
+
prevent the user installing or running the Standard Version. In
|
|
136
|
+
addition, the Modified Version must bear a name that is different
|
|
137
|
+
from the name of the Standard Version.
|
|
138
|
+
|
|
139
|
+
(c) allow anyone who receives a copy of the Modified Version to
|
|
140
|
+
make the Source form of the Modified Version available to others
|
|
141
|
+
under
|
|
142
|
+
|
|
143
|
+
(i) the Original License or
|
|
144
|
+
|
|
145
|
+
(ii) a license that permits the licensee to freely copy,
|
|
146
|
+
modify and redistribute the Modified Version using the same
|
|
147
|
+
licensing terms that apply to the copy that the licensee
|
|
148
|
+
received, and requires that the Source form of the Modified
|
|
149
|
+
Version, and of any works derived from it, be made freely
|
|
150
|
+
available in that license fees are prohibited but Distributor
|
|
151
|
+
Fees are allowed.
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
Distribution of Compiled Forms of the Standard Version
|
|
155
|
+
or Modified Versions without the Source
|
|
156
|
+
|
|
157
|
+
(5) You may Distribute Compiled forms of the Standard Version without
|
|
158
|
+
the Source, provided that you include complete instructions on how to
|
|
159
|
+
get the Source of the Standard Version. Such instructions must be
|
|
160
|
+
valid at the time of your distribution. If these instructions, at any
|
|
161
|
+
time while you are carrying out such distribution, become invalid, you
|
|
162
|
+
must provide new instructions on demand or cease further distribution.
|
|
163
|
+
If you provide valid instructions or cease distribution within thirty
|
|
164
|
+
days after you become aware that the instructions are invalid, then
|
|
165
|
+
you do not forfeit any of your rights under this license.
|
|
166
|
+
|
|
167
|
+
(6) You may Distribute a Modified Version in Compiled form without
|
|
168
|
+
the Source, provided that you comply with Section 4 with respect to
|
|
169
|
+
the Source of the Modified Version.
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
Aggregating or Linking the Package
|
|
173
|
+
|
|
174
|
+
(7) You may aggregate the Package (either the Standard Version or
|
|
175
|
+
Modified Version) with other packages and Distribute the resulting
|
|
176
|
+
aggregation provided that you do not charge a licensing fee for the
|
|
177
|
+
Package. Distributor Fees are permitted, and licensing fees for other
|
|
178
|
+
components in the aggregation are permitted. The terms of this license
|
|
179
|
+
apply to the use and Distribution of the Standard or Modified Versions
|
|
180
|
+
as included in the aggregation.
|
|
181
|
+
|
|
182
|
+
(8) You are permitted to link Modified and Standard Versions with
|
|
183
|
+
other works, to embed the Package in a larger work of your own, or to
|
|
184
|
+
build stand-alone binary or bytecode versions of applications that
|
|
185
|
+
include the Package, and Distribute the result without restriction,
|
|
186
|
+
provided the result does not expose a direct interface to the Package.
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
Items That are Not Considered Part of a Modified Version
|
|
190
|
+
|
|
191
|
+
(9) Works (including, but not limited to, modules and scripts) that
|
|
192
|
+
merely extend or make use of the Package, do not, by themselves, cause
|
|
193
|
+
the Package to be a Modified Version. In addition, such works are not
|
|
194
|
+
considered parts of the Package itself, and are not subject to the
|
|
195
|
+
terms of this license.
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
General Provisions
|
|
199
|
+
|
|
200
|
+
(10) Any use, modification, and distribution of the Standard or
|
|
201
|
+
Modified Versions is governed by this Artistic License. By using,
|
|
202
|
+
modifying or distributing the Package, you accept this license. Do not
|
|
203
|
+
use, modify, or distribute the Package, if you do not accept this
|
|
204
|
+
license.
|
|
205
|
+
|
|
206
|
+
(11) If your Modified Version has been derived from a Modified
|
|
207
|
+
Version made by someone other than you, you are nevertheless required
|
|
208
|
+
to ensure that your Modified Version complies with the requirements of
|
|
209
|
+
this license.
|
|
210
|
+
|
|
211
|
+
(12) This license does not grant you the right to use any trademark,
|
|
212
|
+
service mark, tradename, or logo of the Copyright Holder.
|
|
213
|
+
|
|
214
|
+
(13) This license includes the non-exclusive, worldwide,
|
|
215
|
+
free-of-charge patent license to make, have made, use, offer to sell,
|
|
216
|
+
sell, import and otherwise transfer the Package with respect to any
|
|
217
|
+
patent claims licensable by the Copyright Holder that are necessarily
|
|
218
|
+
infringed by the Package. If you institute patent litigation
|
|
219
|
+
(including a cross-claim or counterclaim) against any party alleging
|
|
220
|
+
that the Package constitutes direct or contributory patent
|
|
221
|
+
infringement, then this Artistic License to you shall terminate on the
|
|
222
|
+
date that such litigation is filed.
|
|
223
|
+
|
|
224
|
+
(14) Disclaimer of Warranty:
|
|
225
|
+
THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS
|
|
226
|
+
IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED
|
|
227
|
+
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
|
|
228
|
+
NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL
|
|
229
|
+
LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL
|
|
230
|
+
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
|
231
|
+
DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF
|
|
232
|
+
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
--------
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# npm - a JavaScript package manager
|
|
2
|
+
|
|
3
|
+
[](https://npm.im/npm)
|
|
4
|
+
[](https://npm.im/npm)
|
|
5
|
+
[](https://github.com/npm/cli/actions/workflows/ci.yml)
|
|
6
|
+
[](https://github.com/npm/cli/actions/workflows/benchmark.yml)
|
|
7
|
+
|
|
8
|
+
### Requirements
|
|
9
|
+
|
|
10
|
+
One of the following versions of [Node.js](https://nodejs.org/en/download/) must be installed to run **`npm`**:
|
|
11
|
+
|
|
12
|
+
* `18.x.x` >= `18.17.0`
|
|
13
|
+
* `20.5.0` or higher
|
|
14
|
+
|
|
15
|
+
### Installation
|
|
16
|
+
|
|
17
|
+
**`npm`** comes bundled with [**`node`**](https://nodejs.org/), & most third-party distributions, by default. Officially supported downloads/distributions can be found at: [nodejs.org/en/download](https://nodejs.org/en/download)
|
|
18
|
+
|
|
19
|
+
#### Direct Download
|
|
20
|
+
|
|
21
|
+
You can download & install **`npm`** directly from [**npmjs**.com](https://npmjs.com/) using our custom `install.sh` script:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
curl -qL https://www.npmjs.com/install.sh | sh
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
#### Node Version Managers
|
|
28
|
+
|
|
29
|
+
If you're looking to manage multiple versions of **`Node.js`** &/or **`npm`**, consider using a [node version manager](https://github.com/search?q=node+version+manager+archived%3Afalse&type=repositories&ref=advsearch)
|
|
30
|
+
|
|
31
|
+
### Usage
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
npm <command>
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
### Links & Resources
|
|
38
|
+
|
|
39
|
+
* [**Documentation**](https://docs.npmjs.com/) - Official docs & how-tos for all things **npm**
|
|
40
|
+
* Note: you can also search docs locally with `npm help-search <query>`
|
|
41
|
+
* [**Bug Tracker**](https://github.com/npm/cli/issues) - Search or submit bugs against the CLI
|
|
42
|
+
* [**Roadmap**](https://github.com/orgs/github/projects/4247/views/1?filterQuery=npm) - Track & follow along with our public roadmap
|
|
43
|
+
* [**Feedback**](https://github.com/npm/feedback) - Contribute ideas & discussion around the npm registry, website & CLI
|
|
44
|
+
* [**RFCs**](https://github.com/npm/rfcs) - Contribute ideas & specifications for the API/design of the npm CLI
|
|
45
|
+
* [**Service Status**](https://status.npmjs.org/) - Monitor the current status & see incident reports for the website & registry
|
|
46
|
+
* [**Project Status**](https://npm.github.io/statusboard/) - See the health of all our maintained OSS projects in one view
|
|
47
|
+
* [**Events Calendar**](https://calendar.google.com/calendar/u/0/embed?src=npmjs.com_oonluqt8oftrt0vmgrfbg6q6go@group.calendar.google.com) - Keep track of our Open RFC calls, releases, meetups, conferences & more
|
|
48
|
+
* [**Support**](https://www.npmjs.com/support) - Experiencing problems with the **npm** [website](https://npmjs.com) or [registry](https://registry.npmjs.org)? File a ticket [here](https://www.npmjs.com/support)
|
|
49
|
+
|
|
50
|
+
### Acknowledgments
|
|
51
|
+
|
|
52
|
+
* `npm` is configured to use the **npm Public Registry** at [https://registry.npmjs.org](https://registry.npmjs.org) by default; Usage of this registry is subject to **Terms of Use** available at [https://npmjs.com/policies/terms](https://npmjs.com/policies/terms)
|
|
53
|
+
* You can configure `npm` to use any other compatible registry you prefer. You can read more about configuring third-party registries [here](https://docs.npmjs.com/cli/v7/using-npm/registry)
|
|
54
|
+
|
|
55
|
+
### FAQ on Branding
|
|
56
|
+
|
|
57
|
+
#### Is it "npm" or "NPM" or "Npm"?
|
|
58
|
+
|
|
59
|
+
**`npm`** should never be capitalized unless it is being displayed in a location that is customarily all-capitals (ex. titles on `man` pages).
|
|
60
|
+
|
|
61
|
+
#### Is "npm" an acronym for "Node Package Manager"?
|
|
62
|
+
|
|
63
|
+
Contrary to popular belief, **`npm`** **is not** in fact an acronym for "Node Package Manager"; It is a recursive bacronymic abbreviation for **"npm is not an acronym"** (if the project was named "ninaa", then it would be an acronym). The precursor to **`npm`** was actually a bash utility named **"pm"**, which was the shortform name of **"pkgmakeinst"** - a bash function that installed various things on various platforms. If **`npm`** were to ever have been considered an acronym, it would be as "node pm" or, potentially "new pm".
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
#!/usr/bin/env bash
|
|
2
|
+
|
|
3
|
+
# This is used by the Node.js installer, which expects the cygwin/mingw
|
|
4
|
+
# shell script to already be present in the npm dependency folder.
|
|
5
|
+
|
|
6
|
+
(set -o igncr) 2>/dev/null && set -o igncr; # cygwin encoding fix
|
|
7
|
+
|
|
8
|
+
basedir=`dirname "$0"`
|
|
9
|
+
|
|
10
|
+
case `uname` in
|
|
11
|
+
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
12
|
+
esac
|
|
13
|
+
|
|
14
|
+
if [ `uname` = 'Linux' ] && type wslpath &>/dev/null ; then
|
|
15
|
+
IS_WSL="true"
|
|
16
|
+
fi
|
|
17
|
+
|
|
18
|
+
function no_node_dir {
|
|
19
|
+
# if this didn't work, then everything else below will fail
|
|
20
|
+
echo "Could not determine Node.js install directory" >&2
|
|
21
|
+
exit 1
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
NODE_EXE="$basedir/node.exe"
|
|
25
|
+
if ! [ -x "$NODE_EXE" ]; then
|
|
26
|
+
NODE_EXE="$basedir/node"
|
|
27
|
+
fi
|
|
28
|
+
if ! [ -x "$NODE_EXE" ]; then
|
|
29
|
+
NODE_EXE=node
|
|
30
|
+
fi
|
|
31
|
+
|
|
32
|
+
# this path is passed to node.exe, so it needs to match whatever
|
|
33
|
+
# kind of paths Node.js thinks it's using, typically win32 paths.
|
|
34
|
+
CLI_BASEDIR="$("$NODE_EXE" -p 'require("path").dirname(process.execPath)' 2> /dev/null)"
|
|
35
|
+
if [ $? -ne 0 ]; then
|
|
36
|
+
# this fails under WSL 1 so add an additional message. we also suppress stderr above
|
|
37
|
+
# because the actual error raised is not helpful. in WSL 1 node.exe cannot handle
|
|
38
|
+
# output redirection properly. See https://github.com/microsoft/WSL/issues/2370
|
|
39
|
+
if [ "$IS_WSL" == "true" ]; then
|
|
40
|
+
echo "WSL 1 is not supported. Please upgrade to WSL 2 or above." >&2
|
|
41
|
+
fi
|
|
42
|
+
no_node_dir
|
|
43
|
+
fi
|
|
44
|
+
NPM_PREFIX_JS="$CLI_BASEDIR/node_modules/npm/bin/npm-prefix.js"
|
|
45
|
+
NPM_CLI_JS="$CLI_BASEDIR/node_modules/npm/bin/npm-cli.js"
|
|
46
|
+
NPM_PREFIX=`"$NODE_EXE" "$NPM_PREFIX_JS"`
|
|
47
|
+
if [ $? -ne 0 ]; then
|
|
48
|
+
no_node_dir
|
|
49
|
+
fi
|
|
50
|
+
NPM_PREFIX_NPM_CLI_JS="$NPM_PREFIX/node_modules/npm/bin/npm-cli.js"
|
|
51
|
+
|
|
52
|
+
# a path that will fail -f test on any posix bash
|
|
53
|
+
NPM_WSL_PATH="/.."
|
|
54
|
+
|
|
55
|
+
# WSL can run Windows binaries, so we have to give it the win32 path
|
|
56
|
+
# however, WSL bash tests against posix paths, so we need to construct that
|
|
57
|
+
# to know if npm is installed globally.
|
|
58
|
+
if [ "$IS_WSL" == "true" ]; then
|
|
59
|
+
NPM_WSL_PATH=`wslpath "$NPM_PREFIX_NPM_CLI_JS"`
|
|
60
|
+
fi
|
|
61
|
+
if [ -f "$NPM_PREFIX_NPM_CLI_JS" ] || [ -f "$NPM_WSL_PATH" ]; then
|
|
62
|
+
NPM_CLI_JS="$NPM_PREFIX_NPM_CLI_JS"
|
|
63
|
+
fi
|
|
64
|
+
|
|
65
|
+
"$NODE_EXE" "$NPM_CLI_JS" "$@"
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
// This is a single-use bin to help windows discover the proper prefix for npm
|
|
3
|
+
// without having to load all of npm first
|
|
4
|
+
// It does not accept argv params
|
|
5
|
+
|
|
6
|
+
const path = require('path')
|
|
7
|
+
const Config = require('@npmcli/config')
|
|
8
|
+
const { definitions, flatten, shorthands } = require('@npmcli/config/lib/definitions')
|
|
9
|
+
const config = new Config({
|
|
10
|
+
npmPath: path.dirname(__dirname),
|
|
11
|
+
// argv is explicitly not looked at since prefix is not something that can be changed via argv
|
|
12
|
+
argv: [],
|
|
13
|
+
definitions,
|
|
14
|
+
flatten,
|
|
15
|
+
shorthands,
|
|
16
|
+
excludeNpmCwd: false,
|
|
17
|
+
})
|
|
18
|
+
|
|
19
|
+
async function main () {
|
|
20
|
+
try {
|
|
21
|
+
await config.load()
|
|
22
|
+
// eslint-disable-next-line no-console
|
|
23
|
+
console.log(config.globalPrefix)
|
|
24
|
+
} catch (err) {
|
|
25
|
+
// eslint-disable-next-line no-console
|
|
26
|
+
console.error(err)
|
|
27
|
+
process.exit(1)
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
main()
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
:: Created by npm, please don't edit manually.
|
|
2
|
+
@ECHO OFF
|
|
3
|
+
|
|
4
|
+
SETLOCAL
|
|
5
|
+
|
|
6
|
+
SET "NODE_EXE=%~dp0\node.exe"
|
|
7
|
+
IF NOT EXIST "%NODE_EXE%" (
|
|
8
|
+
SET "NODE_EXE=node"
|
|
9
|
+
)
|
|
10
|
+
|
|
11
|
+
SET "NPM_PREFIX_JS=%~dp0\node_modules\npm\bin\npm-prefix.js"
|
|
12
|
+
SET "NPM_CLI_JS=%~dp0\node_modules\npm\bin\npm-cli.js"
|
|
13
|
+
FOR /F "delims=" %%F IN ('CALL "%NODE_EXE%" "%NPM_PREFIX_JS%"') DO (
|
|
14
|
+
SET "NPM_PREFIX_NPM_CLI_JS=%%F\node_modules\npm\bin\npm-cli.js"
|
|
15
|
+
)
|
|
16
|
+
IF EXIST "%NPM_PREFIX_NPM_CLI_JS%" (
|
|
17
|
+
SET "NPM_CLI_JS=%NPM_PREFIX_NPM_CLI_JS%"
|
|
18
|
+
)
|
|
19
|
+
|
|
20
|
+
"%NODE_EXE%" "%NPM_CLI_JS%" %*
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
#!/usr/bin/env pwsh
|
|
2
|
+
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
|
3
|
+
|
|
4
|
+
$exe=""
|
|
5
|
+
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
|
6
|
+
# Fix case when both the Windows and Linux builds of Node
|
|
7
|
+
# are installed in the same directory
|
|
8
|
+
$exe=".exe"
|
|
9
|
+
}
|
|
10
|
+
$ret=0
|
|
11
|
+
|
|
12
|
+
$nodeexe = "node$exe"
|
|
13
|
+
$nodebin = $(Get-Command $nodeexe -ErrorAction SilentlyContinue -ErrorVariable F).Source
|
|
14
|
+
if ($nodebin -eq $null) {
|
|
15
|
+
Write-Host "$nodeexe not found."
|
|
16
|
+
exit 1
|
|
17
|
+
}
|
|
18
|
+
$nodedir = $(New-Object -ComObject Scripting.FileSystemObject).GetFile("$nodebin").ParentFolder.Path
|
|
19
|
+
|
|
20
|
+
$npmprefixjs="$nodedir/node_modules/npm/bin/npm-prefix.js"
|
|
21
|
+
$npmprefix=(& $nodeexe $npmprefixjs)
|
|
22
|
+
if ($LASTEXITCODE -ne 0) {
|
|
23
|
+
Write-Host "Could not determine Node.js install directory"
|
|
24
|
+
exit 1
|
|
25
|
+
}
|
|
26
|
+
$npmprefixclijs="$npmprefix/node_modules/npm/bin/npm-cli.js"
|
|
27
|
+
|
|
28
|
+
# Support pipeline input
|
|
29
|
+
if ($MyInvocation.ExpectingInput) {
|
|
30
|
+
$input | & $nodeexe $npmprefixclijs $args
|
|
31
|
+
} else {
|
|
32
|
+
& $nodeexe $npmprefixclijs $args
|
|
33
|
+
}
|
|
34
|
+
$ret=$LASTEXITCODE
|
|
35
|
+
exit $ret
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
#!/usr/bin/env bash
|
|
2
|
+
|
|
3
|
+
# This is used by the Node.js installer, which expects the cygwin/mingw
|
|
4
|
+
# shell script to already be present in the npm dependency folder.
|
|
5
|
+
|
|
6
|
+
(set -o igncr) 2>/dev/null && set -o igncr; # cygwin encoding fix
|
|
7
|
+
|
|
8
|
+
basedir=`dirname "$0"`
|
|
9
|
+
|
|
10
|
+
case `uname` in
|
|
11
|
+
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
12
|
+
esac
|
|
13
|
+
|
|
14
|
+
if [ `uname` = 'Linux' ] && type wslpath &>/dev/null ; then
|
|
15
|
+
IS_WSL="true"
|
|
16
|
+
fi
|
|
17
|
+
|
|
18
|
+
function no_node_dir {
|
|
19
|
+
# if this didn't work, then everything else below will fail
|
|
20
|
+
echo "Could not determine Node.js install directory" >&2
|
|
21
|
+
exit 1
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
NODE_EXE="$basedir/node.exe"
|
|
25
|
+
if ! [ -x "$NODE_EXE" ]; then
|
|
26
|
+
NODE_EXE="$basedir/node"
|
|
27
|
+
fi
|
|
28
|
+
if ! [ -x "$NODE_EXE" ]; then
|
|
29
|
+
NODE_EXE=node
|
|
30
|
+
fi
|
|
31
|
+
|
|
32
|
+
# this path is passed to node.exe, so it needs to match whatever
|
|
33
|
+
# kind of paths Node.js thinks it's using, typically win32 paths.
|
|
34
|
+
CLI_BASEDIR="$("$NODE_EXE" -p 'require("path").dirname(process.execPath)' 2> /dev/null)"
|
|
35
|
+
if [ $? -ne 0 ]; then
|
|
36
|
+
# this fails under WSL 1 so add an additional message. we also suppress stderr above
|
|
37
|
+
# because the actual error raised is not helpful. in WSL 1 node.exe cannot handle
|
|
38
|
+
# output redirection properly. See https://github.com/microsoft/WSL/issues/2370
|
|
39
|
+
if [ "$IS_WSL" == "true" ]; then
|
|
40
|
+
echo "WSL 1 is not supported. Please upgrade to WSL 2 or above." >&2
|
|
41
|
+
fi
|
|
42
|
+
no_node_dir
|
|
43
|
+
fi
|
|
44
|
+
NPM_PREFIX_JS="$CLI_BASEDIR/node_modules/npm/bin/npm-prefix.js"
|
|
45
|
+
NPX_CLI_JS="$CLI_BASEDIR/node_modules/npm/bin/npx-cli.js"
|
|
46
|
+
NPM_PREFIX=`"$NODE_EXE" "$NPM_PREFIX_JS"`
|
|
47
|
+
if [ $? -ne 0 ]; then
|
|
48
|
+
no_node_dir
|
|
49
|
+
fi
|
|
50
|
+
NPM_PREFIX_NPX_CLI_JS="$NPM_PREFIX/node_modules/npm/bin/npx-cli.js"
|
|
51
|
+
|
|
52
|
+
# a path that will fail -f test on any posix bash
|
|
53
|
+
NPX_WSL_PATH="/.."
|
|
54
|
+
|
|
55
|
+
# WSL can run Windows binaries, so we have to give it the win32 path
|
|
56
|
+
# however, WSL bash tests against posix paths, so we need to construct that
|
|
57
|
+
# to know if npm is installed globally.
|
|
58
|
+
if [ "$IS_WSL" == "true" ]; then
|
|
59
|
+
NPX_WSL_PATH=`wslpath "$NPM_PREFIX_NPX_CLI_JS"`
|
|
60
|
+
fi
|
|
61
|
+
if [ -f "$NPM_PREFIX_NPX_CLI_JS" ] || [ -f "$NPX_WSL_PATH" ]; then
|
|
62
|
+
NPX_CLI_JS="$NPM_PREFIX_NPX_CLI_JS"
|
|
63
|
+
fi
|
|
64
|
+
|
|
65
|
+
"$NODE_EXE" "$NPX_CLI_JS" "$@"
|