step-node-agent 3.20.2 → 3.21.1
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.
- package/node_modules/aws4/README.md +31 -1
- package/node_modules/aws4/aws4.js +10 -2
- package/node_modules/aws4/package.json +1 -1
- package/node_modules/body-parser/HISTORY.md +8 -0
- package/node_modules/body-parser/README.md +11 -10
- package/node_modules/body-parser/lib/types/json.js +15 -4
- package/node_modules/body-parser/package.json +8 -8
- package/node_modules/content-type/HISTORY.md +5 -0
- package/node_modules/content-type/README.md +21 -19
- package/node_modules/content-type/index.js +12 -9
- package/node_modules/content-type/package.json +13 -11
- package/node_modules/express/node_modules/body-parser/HISTORY.md +657 -0
- package/node_modules/express/node_modules/body-parser/LICENSE +23 -0
- package/node_modules/express/node_modules/body-parser/README.md +464 -0
- package/node_modules/express/node_modules/body-parser/SECURITY.md +25 -0
- package/node_modules/express/node_modules/body-parser/index.js +156 -0
- package/node_modules/express/node_modules/body-parser/lib/read.js +205 -0
- package/node_modules/express/node_modules/body-parser/lib/types/json.js +236 -0
- package/node_modules/express/node_modules/body-parser/lib/types/raw.js +101 -0
- package/node_modules/express/node_modules/body-parser/lib/types/text.js +121 -0
- package/node_modules/express/node_modules/body-parser/lib/types/urlencoded.js +284 -0
- package/node_modules/express/node_modules/body-parser/package.json +56 -0
- package/node_modules/express/node_modules/raw-body/HISTORY.md +303 -0
- package/node_modules/express/node_modules/raw-body/LICENSE +22 -0
- package/node_modules/express/node_modules/raw-body/README.md +223 -0
- package/node_modules/express/node_modules/raw-body/SECURITY.md +24 -0
- package/node_modules/express/node_modules/raw-body/index.d.ts +87 -0
- package/node_modules/express/node_modules/raw-body/index.js +329 -0
- package/node_modules/express/node_modules/raw-body/package.json +49 -0
- package/node_modules/get-intrinsic/.eslintrc +1 -0
- package/node_modules/get-intrinsic/CHANGELOG.md +12 -0
- package/node_modules/get-intrinsic/index.js +10 -0
- package/node_modules/get-intrinsic/package.json +7 -6
- package/node_modules/get-intrinsic/test/GetIntrinsic.js +1 -1
- package/node_modules/minimist/.eslintrc +25 -50
- package/node_modules/minimist/CHANGELOG.md +87 -1
- package/node_modules/minimist/README.md +14 -10
- package/node_modules/minimist/example/parse.js +2 -0
- package/node_modules/minimist/index.js +256 -242
- package/node_modules/minimist/package.json +73 -73
- package/node_modules/minimist/test/all_bool.js +26 -24
- package/node_modules/minimist/test/bool.js +146 -147
- package/node_modules/minimist/test/dash.js +33 -21
- package/node_modules/minimist/test/default_bool.js +26 -24
- package/node_modules/minimist/test/dotted.js +13 -11
- package/node_modules/minimist/test/kv_short.js +26 -10
- package/node_modules/minimist/test/long.js +28 -26
- package/node_modules/minimist/test/num.js +30 -28
- package/node_modules/minimist/test/parse.js +169 -157
- package/node_modules/minimist/test/parse_modified.js +7 -5
- package/node_modules/minimist/test/proto.js +41 -37
- package/node_modules/minimist/test/short.js +57 -55
- package/node_modules/minimist/test/stop_early.js +10 -8
- package/node_modules/minimist/test/unknown.js +83 -81
- package/node_modules/minimist/test/whitespace.js +6 -4
- package/node_modules/npm/AUTHORS +6 -0
- package/node_modules/npm/CHANGELOG.md +57 -0
- package/node_modules/npm/Makefile +6 -8
- package/node_modules/npm/docs/config.json +5 -0
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-access.md +4 -8
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-adduser.md +6 -10
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-audit.md +2 -6
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-bin.md +4 -8
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-bugs.md +5 -9
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-build.md +4 -8
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-bundle.md +2 -6
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-cache.md +5 -9
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-ci.md +3 -7
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-completion.md +2 -6
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-config.md +3 -7
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-dedupe.md +4 -8
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-deprecate.md +2 -5
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-dist-tag.md +6 -11
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-docs.md +4 -8
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-doctor.md +4 -8
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-edit.md +4 -8
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-explore.md +6 -10
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-fund.md +5 -9
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-help-search.md +3 -7
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-help.md +4 -8
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-hook.md +1 -5
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-init.md +2 -6
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-install-ci-test.md +3 -7
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-install-test.md +3 -7
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-install.md +13 -17
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-link.md +5 -9
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-logout.md +5 -9
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-ls.md +7 -11
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-org.md +1 -5
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-outdated.md +3 -7
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-owner.md +3 -7
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-pack.md +4 -8
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-ping.md +2 -6
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-prefix.md +5 -9
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-profile.md +2 -5
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-prune.md +3 -6
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-publish.md +15 -18
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-rebuild.md +3 -7
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-repo.md +3 -7
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-restart.md +6 -10
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-root.md +4 -8
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-run-script.md +6 -10
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-search.md +3 -7
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-shrinkwrap.md +4 -8
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-star.md +4 -8
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-stars.md +5 -9
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-start.md +6 -10
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-stop.md +5 -9
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-team.md +2 -6
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-test.md +5 -9
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-token.md +1 -5
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-uninstall.md +4 -8
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-unpublish.md +5 -9
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-update.md +5 -9
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-version.md +3 -7
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-view.md +5 -9
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm-whoami.md +3 -6
- package/node_modules/npm/docs/content/{cli-commands → commands}/npm.md +6 -10
- package/node_modules/npm/docs/content/configuring-npm/folders.md +8 -12
- package/node_modules/npm/docs/content/configuring-npm/install.md +1 -5
- package/node_modules/npm/docs/content/configuring-npm/npmrc.md +3 -7
- package/node_modules/npm/docs/content/configuring-npm/package-json.md +9 -13
- package/node_modules/npm/docs/content/configuring-npm/package-lock-json.md +3 -7
- package/node_modules/npm/docs/content/configuring-npm/package-locks.md +3 -7
- package/node_modules/npm/docs/content/configuring-npm/shrinkwrap-json.md +4 -8
- package/node_modules/npm/docs/content/using-npm/config.md +8 -12
- package/node_modules/npm/docs/content/using-npm/developers.md +8 -12
- package/node_modules/npm/docs/content/using-npm/orgs.md +5 -9
- package/node_modules/npm/docs/content/using-npm/registry.md +3 -8
- package/node_modules/npm/docs/content/using-npm/removal.md +3 -7
- package/node_modules/npm/docs/content/using-npm/scope.md +7 -9
- package/node_modules/npm/docs/content/using-npm/scripts.md +7 -11
- package/node_modules/npm/docs/content/using-npm/semver.md +1 -4
- package/node_modules/npm/docs/dockhand.js +341 -0
- package/node_modules/npm/docs/nav.yml +236 -0
- package/node_modules/npm/docs/output/commands/npm-access.html +240 -0
- package/node_modules/npm/docs/output/commands/npm-adduser.html +220 -0
- package/node_modules/npm/docs/output/commands/npm-audit.html +253 -0
- package/node_modules/npm/docs/output/commands/npm-bin.html +174 -0
- package/node_modules/npm/docs/output/commands/npm-bugs.html +194 -0
- package/node_modules/npm/docs/output/commands/npm-build.html +181 -0
- package/node_modules/npm/docs/output/commands/npm-bundle.html +170 -0
- package/node_modules/npm/docs/output/commands/npm-cache.html +230 -0
- package/node_modules/npm/docs/output/commands/npm-ci.html +205 -0
- package/node_modules/npm/docs/output/commands/npm-completion.html +185 -0
- package/node_modules/npm/docs/output/commands/npm-config.html +213 -0
- package/node_modules/npm/docs/output/commands/npm-dedupe.html +203 -0
- package/node_modules/npm/docs/output/commands/npm-deprecate.html +181 -0
- package/node_modules/npm/docs/output/commands/npm-dist-tag.html +232 -0
- package/node_modules/npm/docs/output/commands/npm-docs.html +195 -0
- package/node_modules/npm/docs/output/commands/npm-doctor.html +241 -0
- package/node_modules/npm/docs/output/commands/npm-edit.html +190 -0
- package/node_modules/npm/docs/output/commands/npm-explore.html +190 -0
- package/node_modules/npm/docs/output/commands/npm-fund.html +208 -0
- package/node_modules/npm/docs/output/commands/npm-help-search.html +185 -0
- package/node_modules/npm/docs/output/commands/npm-help.html +187 -0
- package/node_modules/npm/docs/output/commands/npm-hook.html +206 -0
- package/node_modules/npm/docs/output/commands/npm-init.html +209 -0
- package/node_modules/npm/docs/output/commands/npm-install-ci-test.html +173 -0
- package/node_modules/npm/docs/output/commands/npm-install-test.html +182 -0
- package/node_modules/npm/docs/output/commands/npm-install.html +582 -0
- package/node_modules/npm/docs/output/commands/npm-link.html +217 -0
- package/node_modules/npm/docs/output/commands/npm-logout.html +190 -0
- package/node_modules/npm/docs/output/commands/npm-ls.html +257 -0
- package/node_modules/npm/docs/output/commands/npm-org.html +193 -0
- package/node_modules/npm/docs/output/commands/npm-outdated.html +260 -0
- package/node_modules/npm/docs/output/commands/npm-owner.html +193 -0
- package/node_modules/npm/docs/output/commands/npm-pack.html +182 -0
- package/node_modules/npm/docs/output/commands/npm-ping.html +177 -0
- package/node_modules/npm/docs/output/commands/npm-prefix.html +178 -0
- package/node_modules/npm/docs/output/commands/npm-profile.html +235 -0
- package/node_modules/npm/docs/output/commands/npm-prune.html +188 -0
- package/node_modules/npm/docs/output/commands/npm-publish.html +232 -0
- package/node_modules/npm/docs/output/commands/npm-rebuild.html +173 -0
- package/node_modules/npm/docs/output/commands/npm-repo.html +181 -0
- package/node_modules/npm/docs/output/commands/npm-restart.html +193 -0
- package/node_modules/npm/docs/output/commands/npm-root.html +174 -0
- package/node_modules/npm/docs/output/commands/npm-run-script.html +226 -0
- package/node_modules/npm/docs/output/commands/npm-search.html +248 -0
- package/node_modules/npm/docs/output/commands/npm-shrinkwrap.html +181 -0
- package/node_modules/npm/docs/output/commands/npm-star.html +176 -0
- package/node_modules/npm/docs/output/commands/npm-stars.html +176 -0
- package/node_modules/npm/docs/output/commands/npm-start.html +178 -0
- package/node_modules/npm/docs/output/commands/npm-stop.html +174 -0
- package/node_modules/npm/docs/output/commands/npm-team.html +213 -0
- package/node_modules/npm/docs/output/commands/npm-test.html +176 -0
- package/node_modules/npm/docs/output/commands/npm-token.html +215 -0
- package/node_modules/npm/docs/output/commands/npm-uninstall.html +208 -0
- package/node_modules/npm/docs/output/commands/npm-unpublish.html +187 -0
- package/node_modules/npm/docs/output/commands/npm-update.html +252 -0
- package/node_modules/npm/docs/output/commands/npm-version.html +263 -0
- package/node_modules/npm/docs/output/commands/npm-view.html +235 -0
- package/node_modules/npm/docs/output/commands/npm-whoami.html +172 -0
- package/node_modules/npm/docs/output/commands/npm.html +290 -0
- package/node_modules/npm/docs/output/configuring-npm/folders.html +321 -0
- package/node_modules/npm/docs/output/configuring-npm/install.html +203 -0
- package/node_modules/npm/docs/output/configuring-npm/npmrc.html +227 -0
- package/node_modules/npm/docs/output/configuring-npm/package-json.html +827 -0
- package/node_modules/npm/docs/output/configuring-npm/package-lock-json.html +273 -0
- package/node_modules/npm/docs/output/configuring-npm/package-locks.html +310 -0
- package/node_modules/npm/docs/output/configuring-npm/shrinkwrap-json.html +181 -0
- package/node_modules/npm/docs/output/using-npm/config.html +1248 -0
- package/node_modules/npm/docs/output/using-npm/developers.html +356 -0
- package/node_modules/npm/docs/output/using-npm/orgs.html +236 -0
- package/node_modules/npm/docs/output/using-npm/registry.html +234 -0
- package/node_modules/npm/docs/output/using-npm/removal.html +200 -0
- package/node_modules/npm/docs/output/using-npm/scope.html +244 -0
- package/node_modules/npm/docs/output/using-npm/scripts.html +410 -0
- package/node_modules/npm/docs/output/using-npm/semver.html +521 -0
- package/node_modules/npm/docs/template.html +161 -0
- package/node_modules/npm/lib/help.js +2 -2
- package/node_modules/npm/man/man1/npm-README.1 +1 -1
- package/node_modules/npm/man/man1/npm-access.1 +1 -1
- package/node_modules/npm/man/man1/npm-adduser.1 +1 -7
- package/node_modules/npm/man/man1/npm-audit.1 +1 -1
- package/node_modules/npm/man/man1/npm-bin.1 +1 -1
- package/node_modules/npm/man/man1/npm-bugs.1 +1 -1
- package/node_modules/npm/man/man1/npm-build.1 +2 -2
- package/node_modules/npm/man/man1/npm-bundle.1 +1 -1
- package/node_modules/npm/man/man1/npm-cache.1 +1 -1
- package/node_modules/npm/man/man1/npm-ci.1 +1 -1
- package/node_modules/npm/man/man1/npm-completion.1 +1 -1
- package/node_modules/npm/man/man1/npm-config.1 +1 -1
- package/node_modules/npm/man/man1/npm-dedupe.1 +1 -1
- package/node_modules/npm/man/man1/npm-deprecate.1 +1 -1
- package/node_modules/npm/man/man1/npm-dist-tag.1 +1 -7
- package/node_modules/npm/man/man1/npm-docs.1 +1 -1
- package/node_modules/npm/man/man1/npm-doctor.1 +1 -1
- package/node_modules/npm/man/man1/npm-edit.1 +1 -1
- package/node_modules/npm/man/man1/npm-explore.1 +1 -7
- package/node_modules/npm/man/man1/npm-fund.1 +1 -1
- package/node_modules/npm/man/man1/npm-help-search.1 +1 -1
- package/node_modules/npm/man/man1/npm-help.1 +1 -1
- package/node_modules/npm/man/man1/npm-hook.1 +1 -1
- package/node_modules/npm/man/man1/npm-init.1 +1 -1
- package/node_modules/npm/man/man1/npm-install-ci-test.1 +2 -2
- package/node_modules/npm/man/man1/npm-install-test.1 +2 -2
- package/node_modules/npm/man/man1/npm-install.1 +1 -1
- package/node_modules/npm/man/man1/npm-link.1 +1 -1
- package/node_modules/npm/man/man1/npm-logout.1 +1 -1
- package/node_modules/npm/man/man1/npm-ls.1 +2 -2
- package/node_modules/npm/man/man1/npm-org.1 +1 -1
- package/node_modules/npm/man/man1/npm-outdated.1 +1 -1
- package/node_modules/npm/man/man1/npm-owner.1 +1 -3
- package/node_modules/npm/man/man1/npm-pack.1 +1 -1
- package/node_modules/npm/man/man1/npm-ping.1 +1 -1
- package/node_modules/npm/man/man1/npm-prefix.1 +1 -1
- package/node_modules/npm/man/man1/npm-profile.1 +1 -1
- package/node_modules/npm/man/man1/npm-prune.1 +1 -1
- package/node_modules/npm/man/man1/npm-publish.1 +5 -5
- package/node_modules/npm/man/man1/npm-rebuild.1 +1 -1
- package/node_modules/npm/man/man1/npm-repo.1 +1 -1
- package/node_modules/npm/man/man1/npm-restart.1 +1 -1
- package/node_modules/npm/man/man1/npm-root.1 +1 -1
- package/node_modules/npm/man/man1/npm-run-script.1 +1 -1
- package/node_modules/npm/man/man1/npm-search.1 +1 -1
- package/node_modules/npm/man/man1/npm-shrinkwrap.1 +1 -1
- package/node_modules/npm/man/man1/npm-star.1 +1 -1
- package/node_modules/npm/man/man1/npm-stars.1 +1 -1
- package/node_modules/npm/man/man1/npm-start.1 +1 -1
- package/node_modules/npm/man/man1/npm-stop.1 +1 -1
- package/node_modules/npm/man/man1/npm-team.1 +1 -1
- package/node_modules/npm/man/man1/npm-test.1 +1 -1
- package/node_modules/npm/man/man1/npm-token.1 +1 -1
- package/node_modules/npm/man/man1/npm-uninstall.1 +1 -1
- package/node_modules/npm/man/man1/npm-unpublish.1 +1 -1
- package/node_modules/npm/man/man1/npm-update.1 +1 -1
- package/node_modules/npm/man/man1/npm-version.1 +1 -1
- package/node_modules/npm/man/man1/npm-view.1 +1 -1
- package/node_modules/npm/man/man1/npm-whoami.1 +1 -1
- package/node_modules/npm/man/man1/npm.1 +2 -2
- package/node_modules/npm/man/man5/folders.5 +1 -1
- package/node_modules/npm/man/man5/install.5 +2 -2
- package/node_modules/npm/man/man5/npmrc.5 +1 -1
- package/node_modules/npm/man/man5/package-json.5 +1 -1
- package/node_modules/npm/man/man5/package-lock-json.5 +1 -1
- package/node_modules/npm/man/man5/package-locks.5 +1 -1
- package/node_modules/npm/man/man5/shrinkwrap-json.5 +2 -2
- package/node_modules/npm/man/man7/config.7 +1 -1
- package/node_modules/npm/man/man7/developers.7 +1 -1
- package/node_modules/npm/man/man7/orgs.7 +1 -1
- package/node_modules/npm/man/man7/registry.7 +1 -3
- package/node_modules/npm/man/man7/removal.7 +1 -1
- package/node_modules/npm/man/man7/scope.7 +3 -2
- package/node_modules/npm/man/man7/scripts.7 +1 -1
- package/node_modules/npm/man/man7/semver.7 +1 -1
- package/node_modules/npm/node_modules/@iarna/cli/LICENSE +14 -0
- package/node_modules/npm/node_modules/@iarna/cli/README.md +152 -0
- package/node_modules/npm/node_modules/@iarna/cli/app.js +109 -0
- package/node_modules/npm/node_modules/@iarna/cli/package.json +35 -0
- package/node_modules/npm/{docs → node_modules/are-we-there-yet/node_modules/readable-stream/node_modules/safe-buffer}/LICENSE +5 -6
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/node_modules/safe-buffer/README.md +584 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/node_modules/safe-buffer/index.d.ts +187 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/node_modules/safe-buffer/index.js +62 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/node_modules/safe-buffer/package.json +37 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/string_decoder/node_modules/safe-buffer/LICENSE +21 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/string_decoder/node_modules/safe-buffer/README.md +584 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/string_decoder/node_modules/safe-buffer/index.d.ts +187 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/string_decoder/node_modules/safe-buffer/index.js +62 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/string_decoder/node_modules/safe-buffer/package.json +37 -0
- package/node_modules/npm/node_modules/asn1/Jenkinsfile +65 -0
- package/node_modules/npm/node_modules/asn1/package.json +2 -2
- package/node_modules/npm/node_modules/aws4/.github/FUNDING.yml +3 -0
- package/node_modules/npm/node_modules/aws4/.travis.yml +5 -1
- package/node_modules/npm/node_modules/aws4/README.md +50 -390
- package/node_modules/npm/node_modules/aws4/aws4.js +63 -22
- package/node_modules/npm/node_modules/aws4/package.json +9 -63
- package/node_modules/npm/node_modules/balanced-match/.github/FUNDING.yml +2 -0
- package/node_modules/npm/node_modules/balanced-match/README.md +6 -0
- package/node_modules/npm/node_modules/balanced-match/index.js +3 -0
- package/node_modules/npm/node_modules/balanced-match/package.json +3 -4
- package/node_modules/npm/node_modules/bluebird/README.md +1 -1
- package/node_modules/npm/node_modules/bluebird/js/browser/bluebird.core.js +210 -120
- package/node_modules/npm/node_modules/bluebird/js/browser/bluebird.core.min.js +3 -3
- package/node_modules/npm/node_modules/bluebird/js/browser/bluebird.js +240 -128
- package/node_modules/npm/node_modules/bluebird/js/browser/bluebird.min.js +4 -4
- package/node_modules/npm/node_modules/bluebird/js/release/async.js +3 -48
- package/node_modules/npm/node_modules/bluebird/js/release/debuggability.js +102 -27
- package/node_modules/npm/node_modules/bluebird/js/release/join.js +4 -7
- package/node_modules/npm/node_modules/bluebird/js/release/map.js +10 -3
- package/node_modules/npm/node_modules/bluebird/js/release/promise.js +58 -28
- package/node_modules/npm/node_modules/bluebird/js/release/promise_array.js +1 -0
- package/node_modules/npm/node_modules/bluebird/js/release/reduce.js +16 -5
- package/node_modules/npm/node_modules/bluebird/js/release/settle.js +4 -0
- package/node_modules/npm/node_modules/bluebird/js/release/util.js +39 -7
- package/node_modules/npm/node_modules/bluebird/package.json +1 -1
- package/node_modules/npm/node_modules/cacache/CHANGELOG.md +4 -0
- package/node_modules/npm/node_modules/cacache/package.json +6 -7
- package/node_modules/npm/node_modules/combined-stream/lib/combined_stream.js +21 -2
- package/node_modules/npm/node_modules/combined-stream/package.json +1 -1
- package/node_modules/npm/node_modules/combined-stream/yarn.lock +17 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/node_modules/safe-buffer/LICENSE +21 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/node_modules/safe-buffer/README.md +584 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/node_modules/safe-buffer/index.d.ts +187 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/node_modules/safe-buffer/index.js +62 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/node_modules/safe-buffer/package.json +37 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/string_decoder/node_modules/safe-buffer/LICENSE +21 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/string_decoder/node_modules/safe-buffer/README.md +584 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/string_decoder/node_modules/safe-buffer/index.d.ts +187 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/string_decoder/node_modules/safe-buffer/index.js +62 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/string_decoder/node_modules/safe-buffer/package.json +37 -0
- package/node_modules/npm/node_modules/config-chain/package.json +5 -7
- package/node_modules/npm/node_modules/decode-uri-component/index.js +4 -4
- package/node_modules/npm/node_modules/decode-uri-component/license +4 -16
- package/node_modules/npm/node_modules/decode-uri-component/package.json +35 -35
- package/node_modules/npm/node_modules/decode-uri-component/readme.md +14 -1
- package/node_modules/npm/node_modules/dezalgo/package.json +12 -8
- package/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/node_modules/safe-buffer/LICENSE +21 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/node_modules/safe-buffer/README.md +584 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/node_modules/safe-buffer/index.d.ts +187 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/node_modules/safe-buffer/index.js +62 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/node_modules/safe-buffer/package.json +37 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/string_decoder/node_modules/safe-buffer/LICENSE +21 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/string_decoder/node_modules/safe-buffer/README.md +584 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/string_decoder/node_modules/safe-buffer/index.d.ts +187 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/string_decoder/node_modules/safe-buffer/index.js +62 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/string_decoder/node_modules/safe-buffer/package.json +37 -0
- package/node_modules/npm/node_modules/env-paths/index.d.ts +32 -0
- package/node_modules/npm/node_modules/env-paths/package.json +1 -1
- package/node_modules/npm/node_modules/env-paths/readme.md +44 -5
- package/node_modules/npm/node_modules/figgy-pudding/CHANGELOG.md +38 -33
- package/node_modules/npm/node_modules/figgy-pudding/README.md +10 -2
- package/node_modules/npm/node_modules/figgy-pudding/package.json +4 -8
- package/node_modules/npm/node_modules/filter-obj/index.js +17 -0
- package/node_modules/npm/node_modules/filter-obj/license +21 -0
- package/node_modules/npm/node_modules/filter-obj/package.json +37 -0
- package/node_modules/npm/node_modules/filter-obj/readme.md +41 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/readable-stream/node_modules/safe-buffer/LICENSE +21 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/readable-stream/node_modules/safe-buffer/README.md +584 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/readable-stream/node_modules/safe-buffer/index.d.ts +187 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/readable-stream/node_modules/safe-buffer/index.js +62 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/readable-stream/node_modules/safe-buffer/package.json +37 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/string_decoder/node_modules/safe-buffer/LICENSE +21 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/string_decoder/node_modules/safe-buffer/README.md +584 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/string_decoder/node_modules/safe-buffer/index.d.ts +187 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/string_decoder/node_modules/safe-buffer/index.js +62 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/string_decoder/node_modules/safe-buffer/package.json +37 -0
- package/node_modules/npm/node_modules/form-data/README.md +4 -4
- package/node_modules/npm/node_modules/form-data/package.json +2 -2
- package/node_modules/npm/node_modules/form-data/yarn.lock +2662 -0
- package/node_modules/npm/node_modules/from2/node_modules/readable-stream/node_modules/safe-buffer/LICENSE +21 -0
- package/node_modules/npm/node_modules/from2/node_modules/readable-stream/node_modules/safe-buffer/README.md +584 -0
- package/node_modules/npm/node_modules/from2/node_modules/readable-stream/node_modules/safe-buffer/index.d.ts +187 -0
- package/node_modules/npm/node_modules/from2/node_modules/readable-stream/node_modules/safe-buffer/index.js +62 -0
- package/node_modules/npm/node_modules/from2/node_modules/readable-stream/node_modules/safe-buffer/package.json +37 -0
- package/node_modules/npm/node_modules/from2/node_modules/string_decoder/node_modules/safe-buffer/LICENSE +21 -0
- package/node_modules/npm/node_modules/from2/node_modules/string_decoder/node_modules/safe-buffer/README.md +584 -0
- package/node_modules/npm/node_modules/from2/node_modules/string_decoder/node_modules/safe-buffer/index.d.ts +187 -0
- package/node_modules/npm/node_modules/from2/node_modules/string_decoder/node_modules/safe-buffer/index.js +62 -0
- package/node_modules/npm/node_modules/from2/node_modules/string_decoder/node_modules/safe-buffer/package.json +37 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/node_modules/safe-buffer/LICENSE +21 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/node_modules/safe-buffer/README.md +584 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/node_modules/safe-buffer/index.d.ts +187 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/node_modules/safe-buffer/index.js +62 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/node_modules/safe-buffer/package.json +37 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/string_decoder/node_modules/safe-buffer/LICENSE +21 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/string_decoder/node_modules/safe-buffer/README.md +584 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/string_decoder/node_modules/safe-buffer/index.d.ts +187 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/string_decoder/node_modules/safe-buffer/index.js +62 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/string_decoder/node_modules/safe-buffer/package.json +37 -0
- package/node_modules/npm/node_modules/glob/README.md +4 -1
- package/node_modules/npm/node_modules/glob/common.js +6 -8
- package/node_modules/npm/node_modules/glob/glob.js +8 -8
- package/node_modules/npm/node_modules/glob/node_modules/minimatch/LICENSE +15 -0
- package/node_modules/npm/node_modules/glob/node_modules/minimatch/README.md +230 -0
- package/node_modules/npm/node_modules/glob/node_modules/minimatch/minimatch.js +947 -0
- package/node_modules/npm/node_modules/glob/node_modules/minimatch/package.json +33 -0
- package/node_modules/npm/node_modules/glob/package.json +13 -4
- package/node_modules/npm/node_modules/glob/sync.js +10 -10
- package/node_modules/npm/node_modules/graceful-fs/LICENSE +1 -1
- package/node_modules/npm/node_modules/graceful-fs/README.md +11 -1
- package/node_modules/npm/node_modules/graceful-fs/clone.js +5 -1
- package/node_modules/npm/node_modules/graceful-fs/graceful-fs.js +132 -38
- package/node_modules/npm/node_modules/graceful-fs/package.json +4 -4
- package/node_modules/npm/node_modules/graceful-fs/polyfills.js +48 -35
- package/node_modules/npm/node_modules/is-cidr/README.md +6 -10
- package/node_modules/npm/node_modules/is-cidr/index.d.ts +31 -0
- package/node_modules/npm/node_modules/is-cidr/index.js +1 -0
- package/node_modules/npm/node_modules/is-cidr/package.json +12 -6
- package/node_modules/npm/node_modules/json-parse-even-better-errors/CHANGELOG.md +50 -0
- package/node_modules/npm/node_modules/json-parse-even-better-errors/LICENSE.md +25 -0
- package/node_modules/npm/node_modules/json-parse-even-better-errors/README.md +96 -0
- package/node_modules/npm/node_modules/json-parse-even-better-errors/index.js +121 -0
- package/node_modules/npm/node_modules/json-parse-even-better-errors/package.json +33 -0
- package/node_modules/npm/node_modules/lock-verify/README.md +8 -0
- package/node_modules/npm/node_modules/lock-verify/cli.js +17 -0
- package/node_modules/npm/node_modules/lock-verify/package.json +8 -12
- package/node_modules/npm/node_modules/meant/CHANGELOG.md +7 -0
- package/node_modules/npm/node_modules/meant/package.json +4 -1
- package/node_modules/npm/node_modules/minimatch/README.md +22 -1
- package/node_modules/npm/node_modules/minimatch/minimatch.js +93 -69
- package/node_modules/npm/node_modules/minimatch/package.json +6 -3
- package/node_modules/npm/node_modules/mkdirp/index.js +5 -2
- package/node_modules/npm/node_modules/mkdirp/package.json +3 -4
- package/node_modules/npm/node_modules/node-gyp/.github/ISSUE_TEMPLATE.md +27 -5
- package/node_modules/npm/node_modules/node-gyp/.github/workflows/Python_tests.yml +1 -1
- package/node_modules/npm/node_modules/node-gyp/CHANGELOG.md +14 -0
- package/node_modules/npm/node_modules/node-gyp/CONTRIBUTING.md +1 -1
- package/node_modules/npm/node_modules/node-gyp/README.md +3 -3
- package/node_modules/npm/node_modules/node-gyp/addon.gypi +22 -1
- package/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js +2 -3
- package/node_modules/npm/node_modules/node-gyp/macOS_Catalina.md +14 -12
- package/node_modules/npm/node_modules/node-gyp/package.json +1 -1
- package/node_modules/npm/node_modules/parallel-transform/node_modules/readable-stream/node_modules/safe-buffer/LICENSE +21 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/readable-stream/node_modules/safe-buffer/README.md +584 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/readable-stream/node_modules/safe-buffer/index.d.ts +187 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/readable-stream/node_modules/safe-buffer/index.js +62 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/readable-stream/node_modules/safe-buffer/package.json +37 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/string_decoder/node_modules/safe-buffer/LICENSE +21 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/string_decoder/node_modules/safe-buffer/README.md +584 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/string_decoder/node_modules/safe-buffer/index.d.ts +187 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/string_decoder/node_modules/safe-buffer/index.js +62 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/string_decoder/node_modules/safe-buffer/package.json +37 -0
- package/node_modules/npm/node_modules/psl/.env +0 -0
- package/node_modules/npm/node_modules/psl/LICENSE +9 -0
- package/node_modules/npm/node_modules/psl/README.md +4 -6
- package/node_modules/npm/node_modules/psl/browserstack-logo.svg +90 -0
- package/node_modules/npm/node_modules/psl/data/rules.json +9376 -1
- package/node_modules/npm/node_modules/psl/dist/psl.js +9378 -3
- package/node_modules/npm/node_modules/psl/dist/psl.min.js +1 -1
- package/node_modules/npm/node_modules/psl/package.json +24 -23
- package/node_modules/npm/node_modules/qs/.editorconfig +14 -1
- package/node_modules/npm/node_modules/qs/.eslintrc +21 -3
- package/node_modules/npm/node_modules/qs/.github/FUNDING.yml +12 -0
- package/node_modules/npm/node_modules/qs/.nycrc +13 -0
- package/node_modules/npm/node_modules/qs/CHANGELOG.md +24 -0
- package/node_modules/npm/node_modules/qs/LICENSE.md +29 -0
- package/node_modules/npm/node_modules/qs/README.md +54 -19
- package/node_modules/npm/node_modules/qs/bower.json +21 -0
- package/node_modules/npm/node_modules/qs/component.json +15 -0
- package/node_modules/npm/node_modules/qs/dist/qs.js +35 -25
- package/node_modules/npm/node_modules/qs/lib/formats.js +1 -1
- package/node_modules/npm/node_modules/qs/lib/parse.js +6 -5
- package/node_modules/npm/node_modules/qs/lib/stringify.js +21 -14
- package/node_modules/npm/node_modules/qs/lib/utils.js +7 -5
- package/node_modules/npm/node_modules/qs/package.json +18 -16
- package/node_modules/npm/node_modules/qs/test/parse.js +79 -4
- package/node_modules/npm/node_modules/qs/test/stringify.js +45 -0
- package/node_modules/npm/node_modules/qs/test/utils.js +31 -0
- package/node_modules/npm/node_modules/query-string/index.d.ts +290 -9
- package/node_modules/npm/node_modules/query-string/index.js +154 -28
- package/node_modules/npm/node_modules/query-string/license +1 -1
- package/node_modules/npm/node_modules/query-string/package.json +9 -4
- package/node_modules/npm/node_modules/query-string/readme.md +275 -26
- package/node_modules/npm/node_modules/qw/LICENSE +0 -0
- package/node_modules/npm/node_modules/qw/README.md +0 -0
- package/node_modules/npm/node_modules/qw/package.json +1 -1
- package/node_modules/npm/node_modules/qw/qw.js +1 -0
- package/node_modules/npm/node_modules/read-package-json/CHANGELOG.md +10 -0
- package/node_modules/npm/node_modules/read-package-json/package.json +3 -6
- package/node_modules/npm/node_modules/read-package-json/read-json.js +2 -7
- package/node_modules/npm/node_modules/request/CHANGELOG.md +8 -0
- package/node_modules/npm/node_modules/request/README.md +81 -45
- package/node_modules/npm/node_modules/request/index.js +1 -1
- package/node_modules/npm/node_modules/request/lib/auth.js +1 -1
- package/node_modules/npm/node_modules/request/lib/getProxyFromURI.js +1 -1
- package/node_modules/npm/node_modules/request/lib/har.js +1 -1
- package/node_modules/npm/node_modules/request/package.json +6 -6
- package/node_modules/npm/node_modules/request/request.js +13 -11
- package/node_modules/npm/node_modules/safe-buffer/index.js +3 -0
- package/node_modules/npm/node_modules/safe-buffer/package.json +18 -4
- package/node_modules/npm/node_modules/sshpk/Jenkinsfile +86 -0
- package/node_modules/npm/node_modules/sshpk/README.md +116 -10
- package/node_modules/npm/node_modules/sshpk/bin/sshpk-conv +73 -32
- package/node_modules/npm/node_modules/sshpk/lib/certificate.js +33 -1
- package/node_modules/npm/node_modules/sshpk/lib/dhe.js +4 -21
- package/node_modules/npm/node_modules/sshpk/lib/ed-compat.js +1 -7
- package/node_modules/npm/node_modules/sshpk/lib/fingerprint.js +69 -11
- package/node_modules/npm/node_modules/sshpk/lib/formats/auto.js +18 -1
- package/node_modules/npm/node_modules/sshpk/lib/formats/openssh-cert.js +37 -8
- package/node_modules/npm/node_modules/sshpk/lib/formats/pem.js +107 -9
- package/node_modules/npm/node_modules/sshpk/lib/formats/pkcs8.js +23 -4
- package/node_modules/npm/node_modules/sshpk/lib/formats/putty.js +194 -0
- package/node_modules/npm/node_modules/sshpk/lib/formats/x509-pem.js +14 -4
- package/node_modules/npm/node_modules/sshpk/lib/formats/x509.js +28 -5
- package/node_modules/npm/node_modules/sshpk/lib/identity.js +87 -3
- package/node_modules/npm/node_modules/sshpk/lib/index.js +1 -0
- package/node_modules/npm/node_modules/sshpk/lib/key.js +30 -11
- package/node_modules/npm/node_modules/sshpk/lib/private-key.js +11 -17
- package/node_modules/npm/node_modules/sshpk/lib/utils.js +48 -33
- package/node_modules/npm/node_modules/sshpk/package.json +5 -5
- package/node_modules/npm/node_modules/stream-iterate/node_modules/readable-stream/node_modules/safe-buffer/LICENSE +21 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/readable-stream/node_modules/safe-buffer/README.md +584 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/readable-stream/node_modules/safe-buffer/index.d.ts +187 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/readable-stream/node_modules/safe-buffer/index.js +62 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/readable-stream/node_modules/safe-buffer/package.json +37 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/string_decoder/node_modules/safe-buffer/LICENSE +21 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/string_decoder/node_modules/safe-buffer/README.md +584 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/string_decoder/node_modules/safe-buffer/index.d.ts +187 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/string_decoder/node_modules/safe-buffer/index.js +62 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/string_decoder/node_modules/safe-buffer/package.json +37 -0
- package/node_modules/npm/node_modules/through2/node_modules/readable-stream/node_modules/safe-buffer/LICENSE +21 -0
- package/node_modules/npm/node_modules/through2/node_modules/readable-stream/node_modules/safe-buffer/README.md +584 -0
- package/node_modules/npm/node_modules/through2/node_modules/readable-stream/node_modules/safe-buffer/index.d.ts +187 -0
- package/node_modules/npm/node_modules/through2/node_modules/readable-stream/node_modules/safe-buffer/index.js +62 -0
- package/node_modules/npm/node_modules/through2/node_modules/readable-stream/node_modules/safe-buffer/package.json +37 -0
- package/node_modules/npm/node_modules/through2/node_modules/string_decoder/node_modules/safe-buffer/LICENSE +21 -0
- package/node_modules/npm/node_modules/through2/node_modules/string_decoder/node_modules/safe-buffer/README.md +584 -0
- package/node_modules/npm/node_modules/through2/node_modules/string_decoder/node_modules/safe-buffer/index.d.ts +187 -0
- package/node_modules/npm/node_modules/through2/node_modules/string_decoder/node_modules/safe-buffer/index.js +62 -0
- package/node_modules/npm/node_modules/through2/node_modules/string_decoder/node_modules/safe-buffer/package.json +37 -0
- package/node_modules/npm/node_modules/tough-cookie/README.md +24 -4
- package/node_modules/npm/node_modules/tough-cookie/lib/cookie.js +54 -3
- package/node_modules/npm/node_modules/tough-cookie/lib/memstore.js +5 -0
- package/node_modules/npm/node_modules/tough-cookie/lib/store.js +4 -0
- package/node_modules/npm/node_modules/tough-cookie/lib/version.js +2 -0
- package/node_modules/npm/node_modules/{punycode → tough-cookie/node_modules/punycode}/README.md +9 -63
- package/node_modules/npm/node_modules/tough-cookie/node_modules/punycode/package.json +58 -0
- package/node_modules/npm/node_modules/tough-cookie/node_modules/punycode/punycode.es6.js +441 -0
- package/node_modules/npm/node_modules/tough-cookie/node_modules/punycode/punycode.js +440 -0
- package/node_modules/npm/node_modules/tough-cookie/package.json +6 -4
- package/node_modules/npm/node_modules/uri-js/README.md +3 -1
- package/node_modules/npm/node_modules/uri-js/dist/es5/uri.all.js +1 -1
- package/node_modules/npm/node_modules/uri-js/dist/es5/uri.all.min.js +1 -1
- package/node_modules/npm/node_modules/uri-js/package.json +2 -2
- package/node_modules/npm/node_modules/uri-js/yarn.lock +1263 -628
- package/node_modules/npm/node_modules/uuid/CHANGELOG.md +25 -18
- package/node_modules/npm/node_modules/uuid/README.md +27 -44
- package/node_modules/npm/node_modules/uuid/lib/bytesToUuid.js +10 -8
- package/node_modules/npm/node_modules/uuid/package.json +13 -8
- package/node_modules/npm/node_modules/uuid/v1.js +1 -1
- package/node_modules/npm/package.json +27 -23
- package/node_modules/npm/scripts/docs-build.js +15 -3
- package/node_modules/object-inspect/CHANGELOG.md +10 -0
- package/node_modules/object-inspect/index.js +10 -6
- package/node_modules/object-inspect/package.json +10 -7
- package/node_modules/punycode/README.md +7 -3
- package/node_modules/punycode/package.json +5 -5
- package/node_modules/punycode/punycode.es6.js +24 -21
- package/node_modules/punycode/punycode.js +24 -21
- package/node_modules/raw-body/HISTORY.md +5 -0
- package/node_modules/raw-body/README.md +1 -1
- package/node_modules/raw-body/index.js +7 -0
- package/node_modules/raw-body/package.json +7 -7
- package/package.json +1 -1
- package/node_modules/npm/.eslintrc +0 -3
- package/node_modules/npm/docs/content/using-npm/disputes.md +0 -137
- package/node_modules/npm/docs/gatsby-browser.js +0 -8
- package/node_modules/npm/docs/gatsby-config.js +0 -88
- package/node_modules/npm/docs/gatsby-node.js +0 -43
- package/node_modules/npm/docs/gatsby-ssr.js +0 -6
- package/node_modules/npm/docs/package-lock.json +0 -18301
- package/node_modules/npm/docs/package.json +0 -45
- package/node_modules/npm/docs/public/cli-commands/npm/index.html +0 -213
- package/node_modules/npm/docs/public/cli-commands/npm-access/index.html +0 -151
- package/node_modules/npm/docs/public/cli-commands/npm-adduser/index.html +0 -146
- package/node_modules/npm/docs/public/cli-commands/npm-audit/index.html +0 -168
- package/node_modules/npm/docs/public/cli-commands/npm-bin/index.html +0 -97
- package/node_modules/npm/docs/public/cli-commands/npm-bugs/index.html +0 -117
- package/node_modules/npm/docs/public/cli-commands/npm-build/index.html +0 -103
- package/node_modules/npm/docs/public/cli-commands/npm-bundle/index.html +0 -94
- package/node_modules/npm/docs/public/cli-commands/npm-cache/index.html +0 -148
- package/node_modules/npm/docs/public/cli-commands/npm-ci/index.html +0 -125
- package/node_modules/npm/docs/public/cli-commands/npm-completion/index.html +0 -107
- package/node_modules/npm/docs/public/cli-commands/npm-config/index.html +0 -131
- package/node_modules/npm/docs/public/cli-commands/npm-dedupe/index.html +0 -124
- package/node_modules/npm/docs/public/cli-commands/npm-deprecate/index.html +0 -103
- package/node_modules/npm/docs/public/cli-commands/npm-dist-tag/index.html +0 -152
- package/node_modules/npm/docs/public/cli-commands/npm-docs/index.html +0 -118
- package/node_modules/npm/docs/public/cli-commands/npm-doctor/index.html +0 -166
- package/node_modules/npm/docs/public/cli-commands/npm-edit/index.html +0 -113
- package/node_modules/npm/docs/public/cli-commands/npm-explore/index.html +0 -117
- package/node_modules/npm/docs/public/cli-commands/npm-fund/index.html +0 -131
- package/node_modules/npm/docs/public/cli-commands/npm-help/index.html +0 -110
- package/node_modules/npm/docs/public/cli-commands/npm-help-search/index.html +0 -108
- package/node_modules/npm/docs/public/cli-commands/npm-hook/index.html +0 -122
- package/node_modules/npm/docs/public/cli-commands/npm-init/index.html +0 -129
- package/node_modules/npm/docs/public/cli-commands/npm-install/index.html +0 -471
- package/node_modules/npm/docs/public/cli-commands/npm-install-ci-test/index.html +0 -96
- package/node_modules/npm/docs/public/cli-commands/npm-install-test/index.html +0 -105
- package/node_modules/npm/docs/public/cli-commands/npm-link/index.html +0 -137
- package/node_modules/npm/docs/public/cli-commands/npm-logout/index.html +0 -112
- package/node_modules/npm/docs/public/cli-commands/npm-ls/index.html +0 -179
- package/node_modules/npm/docs/public/cli-commands/npm-org/index.html +0 -110
- package/node_modules/npm/docs/public/cli-commands/npm-outdated/index.html +0 -181
- package/node_modules/npm/docs/public/cli-commands/npm-owner/index.html +0 -117
- package/node_modules/npm/docs/public/cli-commands/npm-pack/index.html +0 -105
- package/node_modules/npm/docs/public/cli-commands/npm-ping/index.html +0 -98
- package/node_modules/npm/docs/public/cli-commands/npm-prefix/index.html +0 -101
- package/node_modules/npm/docs/public/cli-commands/npm-profile/index.html +0 -151
- package/node_modules/npm/docs/public/cli-commands/npm-prune/index.html +0 -111
- package/node_modules/npm/docs/public/cli-commands/npm-publish/index.html +0 -143
- package/node_modules/npm/docs/public/cli-commands/npm-rebuild/index.html +0 -96
- package/node_modules/npm/docs/public/cli-commands/npm-repo/index.html +0 -104
- package/node_modules/npm/docs/public/cli-commands/npm-restart/index.html +0 -116
- package/node_modules/npm/docs/public/cli-commands/npm-root/index.html +0 -97
- package/node_modules/npm/docs/public/cli-commands/npm-run-script/index.html +0 -146
- package/node_modules/npm/docs/public/cli-commands/npm-search/index.html +0 -171
- package/node_modules/npm/docs/public/cli-commands/npm-shrinkwrap/index.html +0 -104
- package/node_modules/npm/docs/public/cli-commands/npm-star/index.html +0 -99
- package/node_modules/npm/docs/public/cli-commands/npm-stars/index.html +0 -99
- package/node_modules/npm/docs/public/cli-commands/npm-start/index.html +0 -101
- package/node_modules/npm/docs/public/cli-commands/npm-stop/index.html +0 -97
- package/node_modules/npm/docs/public/cli-commands/npm-team/index.html +0 -128
- package/node_modules/npm/docs/public/cli-commands/npm-test/index.html +0 -99
- package/node_modules/npm/docs/public/cli-commands/npm-token/index.html +0 -136
- package/node_modules/npm/docs/public/cli-commands/npm-uninstall/index.html +0 -121
- package/node_modules/npm/docs/public/cli-commands/npm-unpublish/index.html +0 -109
- package/node_modules/npm/docs/public/cli-commands/npm-update/index.html +0 -170
- package/node_modules/npm/docs/public/cli-commands/npm-version/index.html +0 -183
- package/node_modules/npm/docs/public/cli-commands/npm-view/index.html +0 -148
- package/node_modules/npm/docs/public/cli-commands/npm-whoami/index.html +0 -95
- package/node_modules/npm/docs/public/configuring-npm/folders/index.html +0 -243
- package/node_modules/npm/docs/public/configuring-npm/install/index.html +0 -126
- package/node_modules/npm/docs/public/configuring-npm/npmrc/index.html +0 -148
- package/node_modules/npm/docs/public/configuring-npm/package-json/index.html +0 -714
- package/node_modules/npm/docs/public/configuring-npm/package-lock-json/index.html +0 -189
- package/node_modules/npm/docs/public/configuring-npm/package-locks/index.html +0 -217
- package/node_modules/npm/docs/public/configuring-npm/shrinkwrap-json/index.html +0 -105
- package/node_modules/npm/docs/public/icons/icon-144x144.png +0 -0
- package/node_modules/npm/docs/public/icons/icon-192x192.png +0 -0
- package/node_modules/npm/docs/public/icons/icon-256x256.png +0 -0
- package/node_modules/npm/docs/public/icons/icon-384x384.png +0 -0
- package/node_modules/npm/docs/public/icons/icon-48x48.png +0 -0
- package/node_modules/npm/docs/public/icons/icon-512x512.png +0 -0
- package/node_modules/npm/docs/public/icons/icon-72x72.png +0 -0
- package/node_modules/npm/docs/public/icons/icon-96x96.png +0 -0
- package/node_modules/npm/docs/public/index.html +0 -131
- package/node_modules/npm/docs/public/static/d/2215187023.json +0 -1
- package/node_modules/npm/docs/public/static/d/2417117884.json +0 -1
- package/node_modules/npm/docs/public/static/network-icon-f659855f70bb0e12addd96250807c241.svg +0 -1
- package/node_modules/npm/docs/public/styles.e93b5499b63484750fba.css +0 -1
- package/node_modules/npm/docs/public/using-npm/config/index.html +0 -1164
- package/node_modules/npm/docs/public/using-npm/developers/index.html +0 -262
- package/node_modules/npm/docs/public/using-npm/disputes/index.html +0 -195
- package/node_modules/npm/docs/public/using-npm/orgs/index.html +0 -147
- package/node_modules/npm/docs/public/using-npm/registry/index.html +0 -159
- package/node_modules/npm/docs/public/using-npm/removal/index.html +0 -119
- package/node_modules/npm/docs/public/using-npm/scope/index.html +0 -162
- package/node_modules/npm/docs/public/using-npm/scripts/index.html +0 -326
- package/node_modules/npm/docs/public/using-npm/semver/index.html +0 -438
- package/node_modules/npm/docs/src/components/Accordion.js +0 -57
- package/node_modules/npm/docs/src/components/Button.js +0 -22
- package/node_modules/npm/docs/src/components/DocLinks.js +0 -72
- package/node_modules/npm/docs/src/components/FoundTypo.js +0 -23
- package/node_modules/npm/docs/src/components/MobileSidebar.js +0 -33
- package/node_modules/npm/docs/src/components/Sidebar.js +0 -30
- package/node_modules/npm/docs/src/components/home/DarkBlock.js +0 -40
- package/node_modules/npm/docs/src/components/home/FeatureCard.js +0 -39
- package/node_modules/npm/docs/src/components/home/Features.js +0 -83
- package/node_modules/npm/docs/src/components/home/Footer.js +0 -29
- package/node_modules/npm/docs/src/components/home/Terminal.js +0 -120
- package/node_modules/npm/docs/src/components/home/Windows.js +0 -73
- package/node_modules/npm/docs/src/components/home/cubes.js +0 -101
- package/node_modules/npm/docs/src/components/home/hero.js +0 -25
- package/node_modules/npm/docs/src/components/layout.js +0 -24
- package/node_modules/npm/docs/src/components/links.js +0 -50
- package/node_modules/npm/docs/src/components/navbar.js +0 -136
- package/node_modules/npm/docs/src/components/scripts.js +0 -27
- package/node_modules/npm/docs/src/components/seo.js +0 -88
- package/node_modules/npm/docs/src/images/background-boxes.svg +0 -2782
- package/node_modules/npm/docs/src/images/background-cubes.svg +0 -2767
- package/node_modules/npm/docs/src/images/background-rectangles.svg +0 -1
- package/node_modules/npm/docs/src/images/bracket.svg +0 -1
- package/node_modules/npm/docs/src/images/cli-logo.svg +0 -1
- package/node_modules/npm/docs/src/images/down-carrot.svg +0 -1
- package/node_modules/npm/docs/src/images/hamburger-close.svg +0 -1
- package/node_modules/npm/docs/src/images/hamburger.svg +0 -1
- package/node_modules/npm/docs/src/images/manager-icon.svg +0 -1
- package/node_modules/npm/docs/src/images/network-icon.svg +0 -1
- package/node_modules/npm/docs/src/images/npm-icon.png +0 -0
- package/node_modules/npm/docs/src/images/orange-cube.svg +0 -1
- package/node_modules/npm/docs/src/images/pink-gradient-cube.svg +0 -1
- package/node_modules/npm/docs/src/images/purple-cube.svg +0 -1
- package/node_modules/npm/docs/src/images/purple-gradient-cube.svg +0 -1
- package/node_modules/npm/docs/src/images/red-cube.svg +0 -1
- package/node_modules/npm/docs/src/images/right-shadow-box.svg +0 -2809
- package/node_modules/npm/docs/src/images/terminal-icon.svg +0 -1
- package/node_modules/npm/docs/src/images/test-icon.svg +0 -1
- package/node_modules/npm/docs/src/images/up-carrot.svg +0 -1
- package/node_modules/npm/docs/src/images/x.svg +0 -1
- package/node_modules/npm/docs/src/main.css +0 -167
- package/node_modules/npm/docs/src/pages/404.js +0 -12
- package/node_modules/npm/docs/src/pages/index.js +0 -16
- package/node_modules/npm/docs/src/templates/Page.js +0 -40
- package/node_modules/npm/docs/src/theme.js +0 -50
- package/node_modules/npm/man/man7/disputes.7 +0 -149
- package/node_modules/npm/node_modules/balanced-match/.npmignore +0 -5
- package/node_modules/npm/node_modules/combined-stream/lib/defer.js +0 -26
- package/node_modules/npm/node_modules/dezalgo/.travis.yml +0 -7
- package/node_modules/npm/node_modules/dezalgo/test/basic.js +0 -29
- package/node_modules/npm/node_modules/glob/changelog.md +0 -67
- package/node_modules/npm/node_modules/meant/.github/workflows/ci.yml +0 -20
- package/node_modules/npm/node_modules/meant/test.js +0 -11
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/.travis.yml +0 -8
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/LICENSE +0 -18
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/example/parse.js +0 -2
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/index.js +0 -249
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/package.json +0 -45
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/readme.markdown +0 -98
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/all_bool.js +0 -32
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/bool.js +0 -178
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/dash.js +0 -31
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/default_bool.js +0 -35
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/dotted.js +0 -22
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/kv_short.js +0 -16
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/long.js +0 -31
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/num.js +0 -36
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/parse.js +0 -197
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/parse_modified.js +0 -9
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/proto.js +0 -60
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/short.js +0 -67
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/stop_early.js +0 -15
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/unknown.js +0 -102
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/whitespace.js +0 -8
- package/node_modules/npm/node_modules/psl/.eslintignore +0 -1
- package/node_modules/npm/node_modules/psl/.eslintrc +0 -11
- package/node_modules/npm/node_modules/psl/.travis.yml +0 -6
- package/node_modules/npm/node_modules/psl/karma.conf.js +0 -38
- package/node_modules/npm/node_modules/psl/yarn.lock +0 -4532
- package/node_modules/npm/node_modules/punycode/package.json +0 -60
- package/node_modules/npm/node_modules/punycode/punycode.js +0 -533
- package/node_modules/npm/node_modules/qs/.eslintignore +0 -1
- package/node_modules/npm/node_modules/qs/LICENSE +0 -28
- package/node_modules/npm/node_modules/qs/test/.eslintrc +0 -15
- package/node_modules/npm/node_modules/qw/README.md~ +0 -27
- package/node_modules/npm/node_modules/sshpk/.npmignore +0 -9
- /package/node_modules/npm/node_modules/{punycode → tough-cookie/node_modules/punycode}/LICENSE-MIT.txt +0 -0
|
@@ -2,70 +2,77 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## [3.4.0](https://github.com/uuidjs/uuid/compare/v3.3.3...v3.4.0) (2020-01-16)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* rename repository to github:uuidjs/uuid ([#351](https://github.com/uuidjs/uuid/issues/351)) ([e2d7314](https://github.com/uuidjs/uuid/commit/e2d7314)), closes [#338](https://github.com/uuidjs/uuid/issues/338)
|
|
11
|
+
|
|
12
|
+
### [3.3.3](https://github.com/uuidjs/uuid/compare/v3.3.2...v3.3.3) (2019-08-19)
|
|
6
13
|
|
|
7
14
|
<a name="3.3.2"></a>
|
|
8
|
-
## [3.3.2](https://github.com/
|
|
15
|
+
## [3.3.2](https://github.com/uuidjs/uuid/compare/v3.3.1...v3.3.2) (2018-06-28)
|
|
9
16
|
|
|
10
17
|
|
|
11
18
|
### Bug Fixes
|
|
12
19
|
|
|
13
|
-
* typo ([305d877](https://github.com/
|
|
20
|
+
* typo ([305d877](https://github.com/uuidjs/uuid/commit/305d877))
|
|
14
21
|
|
|
15
22
|
|
|
16
23
|
|
|
17
24
|
<a name="3.3.1"></a>
|
|
18
|
-
## [3.3.1](https://github.com/
|
|
25
|
+
## [3.3.1](https://github.com/uuidjs/uuid/compare/v3.3.0...v3.3.1) (2018-06-28)
|
|
19
26
|
|
|
20
27
|
|
|
21
28
|
### Bug Fixes
|
|
22
29
|
|
|
23
|
-
* fix [#284](https://github.com/
|
|
30
|
+
* fix [#284](https://github.com/uuidjs/uuid/issues/284) by setting function name in try-catch ([f2a60f2](https://github.com/uuidjs/uuid/commit/f2a60f2))
|
|
24
31
|
|
|
25
32
|
|
|
26
33
|
|
|
27
34
|
<a name="3.3.0"></a>
|
|
28
|
-
# [3.3.0](https://github.com/
|
|
35
|
+
# [3.3.0](https://github.com/uuidjs/uuid/compare/v3.2.1...v3.3.0) (2018-06-22)
|
|
29
36
|
|
|
30
37
|
|
|
31
38
|
### Bug Fixes
|
|
32
39
|
|
|
33
|
-
* assignment to readonly property to allow running in strict mode ([#270](https://github.com/
|
|
34
|
-
* fix [#229](https://github.com/
|
|
35
|
-
* Get correct version of IE11 crypto ([#274](https://github.com/
|
|
36
|
-
* mem issue when generating uuid ([#267](https://github.com/
|
|
40
|
+
* assignment to readonly property to allow running in strict mode ([#270](https://github.com/uuidjs/uuid/issues/270)) ([d062fdc](https://github.com/uuidjs/uuid/commit/d062fdc))
|
|
41
|
+
* fix [#229](https://github.com/uuidjs/uuid/issues/229) ([c9684d4](https://github.com/uuidjs/uuid/commit/c9684d4))
|
|
42
|
+
* Get correct version of IE11 crypto ([#274](https://github.com/uuidjs/uuid/issues/274)) ([153d331](https://github.com/uuidjs/uuid/commit/153d331))
|
|
43
|
+
* mem issue when generating uuid ([#267](https://github.com/uuidjs/uuid/issues/267)) ([c47702c](https://github.com/uuidjs/uuid/commit/c47702c))
|
|
37
44
|
|
|
38
45
|
### Features
|
|
39
46
|
|
|
40
|
-
* enforce Conventional Commit style commit messages ([#282](https://github.com/
|
|
47
|
+
* enforce Conventional Commit style commit messages ([#282](https://github.com/uuidjs/uuid/issues/282)) ([cc9a182](https://github.com/uuidjs/uuid/commit/cc9a182))
|
|
41
48
|
|
|
42
49
|
|
|
43
50
|
<a name="3.2.1"></a>
|
|
44
|
-
## [3.2.1](https://github.com/
|
|
51
|
+
## [3.2.1](https://github.com/uuidjs/uuid/compare/v3.2.0...v3.2.1) (2018-01-16)
|
|
45
52
|
|
|
46
53
|
|
|
47
54
|
### Bug Fixes
|
|
48
55
|
|
|
49
|
-
* use msCrypto if available. Fixes [#241](https://github.com/
|
|
56
|
+
* use msCrypto if available. Fixes [#241](https://github.com/uuidjs/uuid/issues/241) ([#247](https://github.com/uuidjs/uuid/issues/247)) ([1fef18b](https://github.com/uuidjs/uuid/commit/1fef18b))
|
|
50
57
|
|
|
51
58
|
|
|
52
59
|
|
|
53
60
|
<a name="3.2.0"></a>
|
|
54
|
-
# [3.2.0](https://github.com/
|
|
61
|
+
# [3.2.0](https://github.com/uuidjs/uuid/compare/v3.1.0...v3.2.0) (2018-01-16)
|
|
55
62
|
|
|
56
63
|
|
|
57
64
|
### Bug Fixes
|
|
58
65
|
|
|
59
|
-
* remove mistakenly added typescript dependency, rollback version (standard-version will auto-increment) ([09fa824](https://github.com/
|
|
60
|
-
* use msCrypto if available. Fixes [#241](https://github.com/
|
|
66
|
+
* remove mistakenly added typescript dependency, rollback version (standard-version will auto-increment) ([09fa824](https://github.com/uuidjs/uuid/commit/09fa824))
|
|
67
|
+
* use msCrypto if available. Fixes [#241](https://github.com/uuidjs/uuid/issues/241) ([#247](https://github.com/uuidjs/uuid/issues/247)) ([1fef18b](https://github.com/uuidjs/uuid/commit/1fef18b))
|
|
61
68
|
|
|
62
69
|
|
|
63
70
|
### Features
|
|
64
71
|
|
|
65
|
-
* Add v3 Support ([#217](https://github.com/
|
|
72
|
+
* Add v3 Support ([#217](https://github.com/uuidjs/uuid/issues/217)) ([d94f726](https://github.com/uuidjs/uuid/commit/d94f726))
|
|
66
73
|
|
|
67
74
|
|
|
68
|
-
# [3.1.0](https://github.com/
|
|
75
|
+
# [3.1.0](https://github.com/uuidjs/uuid/compare/v3.1.0...v3.0.1) (2017-06-17)
|
|
69
76
|
|
|
70
77
|
### Bug Fixes
|
|
71
78
|
|
|
@@ -80,46 +80,6 @@ uuidv5('Hello, World!', MY_NAMESPACE); // ⇨ '630eb68f-e0fa-5ecc-887a-7c7a62614
|
|
|
80
80
|
|
|
81
81
|
```
|
|
82
82
|
|
|
83
|
-
## Quickstart - Browser-ready Versions
|
|
84
|
-
|
|
85
|
-
Browser-ready versions of this module are available via [wzrd.in](https://github.com/jfhbrook/wzrd.in).
|
|
86
|
-
|
|
87
|
-
For version 1 uuids:
|
|
88
|
-
|
|
89
|
-
```html
|
|
90
|
-
<script src="http://wzrd.in/standalone/uuid%2Fv1@latest"></script>
|
|
91
|
-
<script>
|
|
92
|
-
uuidv1(); // -> v1 UUID
|
|
93
|
-
</script>
|
|
94
|
-
```
|
|
95
|
-
|
|
96
|
-
For version 3 uuids:
|
|
97
|
-
|
|
98
|
-
```html
|
|
99
|
-
<script src="http://wzrd.in/standalone/uuid%2Fv3@latest"></script>
|
|
100
|
-
<script>
|
|
101
|
-
uuidv3('http://example.com/hello', uuidv3.URL); // -> v3 UUID
|
|
102
|
-
</script>
|
|
103
|
-
```
|
|
104
|
-
|
|
105
|
-
For version 4 uuids:
|
|
106
|
-
|
|
107
|
-
```html
|
|
108
|
-
<script src="http://wzrd.in/standalone/uuid%2Fv4@latest"></script>
|
|
109
|
-
<script>
|
|
110
|
-
uuidv4(); // -> v4 UUID
|
|
111
|
-
</script>
|
|
112
|
-
```
|
|
113
|
-
|
|
114
|
-
For version 5 uuids:
|
|
115
|
-
|
|
116
|
-
```html
|
|
117
|
-
<script src="http://wzrd.in/standalone/uuid%2Fv5@latest"></script>
|
|
118
|
-
<script>
|
|
119
|
-
uuidv5('http://example.com/hello', uuidv5.URL); // -> v5 UUID
|
|
120
|
-
</script>
|
|
121
|
-
```
|
|
122
|
-
|
|
123
83
|
## API
|
|
124
84
|
|
|
125
85
|
### Version 1
|
|
@@ -167,8 +127,19 @@ Example: In-place generation of two binary IDs
|
|
|
167
127
|
```javascript
|
|
168
128
|
// Generate two ids in an array
|
|
169
129
|
const arr = new Array();
|
|
170
|
-
uuidv1(null, arr, 0); // ⇨
|
|
171
|
-
|
|
130
|
+
uuidv1(null, arr, 0); // ⇨
|
|
131
|
+
// [
|
|
132
|
+
// 44, 94, 164, 192, 64, 103,
|
|
133
|
+
// 17, 233, 146, 52, 155, 29,
|
|
134
|
+
// 235, 77, 59, 125
|
|
135
|
+
// ]
|
|
136
|
+
uuidv1(null, arr, 16); // ⇨
|
|
137
|
+
// [
|
|
138
|
+
// 44, 94, 164, 192, 64, 103, 17, 233,
|
|
139
|
+
// 146, 52, 155, 29, 235, 77, 59, 125,
|
|
140
|
+
// 44, 94, 164, 193, 64, 103, 17, 233,
|
|
141
|
+
// 146, 52, 155, 29, 235, 77, 59, 125
|
|
142
|
+
// ]
|
|
172
143
|
|
|
173
144
|
```
|
|
174
145
|
|
|
@@ -237,8 +208,20 @@ Example: Generate two IDs in a single buffer
|
|
|
237
208
|
|
|
238
209
|
```javascript
|
|
239
210
|
const buffer = new Array();
|
|
240
|
-
uuidv4(null, buffer, 0); // ⇨
|
|
241
|
-
|
|
211
|
+
uuidv4(null, buffer, 0); // ⇨
|
|
212
|
+
// [
|
|
213
|
+
// 155, 29, 235, 77, 59,
|
|
214
|
+
// 125, 75, 173, 155, 221,
|
|
215
|
+
// 43, 13, 123, 61, 203,
|
|
216
|
+
// 109
|
|
217
|
+
// ]
|
|
218
|
+
uuidv4(null, buffer, 16); // ⇨
|
|
219
|
+
// [
|
|
220
|
+
// 155, 29, 235, 77, 59, 125, 75, 173,
|
|
221
|
+
// 155, 221, 43, 13, 123, 61, 203, 109,
|
|
222
|
+
// 27, 157, 107, 205, 187, 253, 75, 45,
|
|
223
|
+
// 155, 93, 171, 141, 251, 189, 75, 237
|
|
224
|
+
// ]
|
|
242
225
|
|
|
243
226
|
```
|
|
244
227
|
|
|
@@ -11,14 +11,16 @@ function bytesToUuid(buf, offset) {
|
|
|
11
11
|
var i = offset || 0;
|
|
12
12
|
var bth = byteToHex;
|
|
13
13
|
// join used to fix memory issue caused by concatenation: https://bugs.chromium.org/p/v8/issues/detail?id=3175#c4
|
|
14
|
-
return ([
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
14
|
+
return ([
|
|
15
|
+
bth[buf[i++]], bth[buf[i++]],
|
|
16
|
+
bth[buf[i++]], bth[buf[i++]], '-',
|
|
17
|
+
bth[buf[i++]], bth[buf[i++]], '-',
|
|
18
|
+
bth[buf[i++]], bth[buf[i++]], '-',
|
|
19
|
+
bth[buf[i++]], bth[buf[i++]], '-',
|
|
20
|
+
bth[buf[i++]], bth[buf[i++]],
|
|
21
|
+
bth[buf[i++]], bth[buf[i++]],
|
|
22
|
+
bth[buf[i++]], bth[buf[i++]]
|
|
23
|
+
]).join('');
|
|
22
24
|
}
|
|
23
25
|
|
|
24
26
|
module.exports = bytesToUuid;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uuid",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.4.0",
|
|
4
4
|
"description": "RFC4122 (v1, v4, and v5) UUIDs",
|
|
5
5
|
"commitlint": {
|
|
6
6
|
"extends": [
|
|
@@ -17,17 +17,17 @@
|
|
|
17
17
|
"uuid": "./bin/uuid"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@commitlint/cli": "8.
|
|
21
|
-
"@commitlint/config-conventional": "8.
|
|
22
|
-
"eslint": "6.
|
|
23
|
-
"husky": "3.0.
|
|
20
|
+
"@commitlint/cli": "~8.2.0",
|
|
21
|
+
"@commitlint/config-conventional": "~8.2.0",
|
|
22
|
+
"eslint": "~6.4.0",
|
|
23
|
+
"husky": "~3.0.5",
|
|
24
24
|
"mocha": "6.2.0",
|
|
25
25
|
"runmd": "1.2.1",
|
|
26
26
|
"standard-version": "7.0.0"
|
|
27
27
|
},
|
|
28
28
|
"scripts": {
|
|
29
|
-
"
|
|
30
|
-
"test": "mocha test/test.js",
|
|
29
|
+
"lint": "eslint .",
|
|
30
|
+
"test": "npm run lint && mocha test/test.js",
|
|
31
31
|
"md": "runmd --watch --output=README.md README_js.md",
|
|
32
32
|
"release": "standard-version",
|
|
33
33
|
"prepare": "runmd --output=README.md README_js.md"
|
|
@@ -39,6 +39,11 @@
|
|
|
39
39
|
},
|
|
40
40
|
"repository": {
|
|
41
41
|
"type": "git",
|
|
42
|
-
"url": "https://github.com/
|
|
42
|
+
"url": "https://github.com/uuidjs/uuid.git"
|
|
43
|
+
},
|
|
44
|
+
"husky": {
|
|
45
|
+
"hooks": {
|
|
46
|
+
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
|
47
|
+
}
|
|
43
48
|
}
|
|
44
49
|
}
|
|
@@ -13,7 +13,7 @@ var _clockseq;
|
|
|
13
13
|
var _lastMSecs = 0;
|
|
14
14
|
var _lastNSecs = 0;
|
|
15
15
|
|
|
16
|
-
// See https://github.com/
|
|
16
|
+
// See https://github.com/uuidjs/uuid for API details
|
|
17
17
|
function v1(options, buf, offset) {
|
|
18
18
|
var i = buf && offset || 0;
|
|
19
19
|
var b = buf || [];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "6.14.
|
|
2
|
+
"version": "6.14.18",
|
|
3
3
|
"name": "npm",
|
|
4
4
|
"description": "a package manager for JavaScript",
|
|
5
5
|
"keywords": [
|
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
"aproba": "^2.0.0",
|
|
41
41
|
"archy": "~1.0.0",
|
|
42
42
|
"bin-links": "^1.1.8",
|
|
43
|
-
"bluebird": "^3.
|
|
43
|
+
"bluebird": "^3.7.2",
|
|
44
44
|
"byte-size": "^5.0.1",
|
|
45
|
-
"cacache": "^12.0.
|
|
45
|
+
"cacache": "^12.0.4",
|
|
46
46
|
"call-limit": "^1.1.1",
|
|
47
47
|
"chownr": "^1.1.4",
|
|
48
48
|
"ci-info": "^2.0.0",
|
|
@@ -50,18 +50,18 @@
|
|
|
50
50
|
"cli-table3": "^0.5.1",
|
|
51
51
|
"cmd-shim": "^3.0.3",
|
|
52
52
|
"columnify": "~1.5.4",
|
|
53
|
-
"config-chain": "^1.1.
|
|
53
|
+
"config-chain": "^1.1.13",
|
|
54
54
|
"detect-indent": "~5.0.0",
|
|
55
55
|
"detect-newline": "^2.1.0",
|
|
56
|
-
"dezalgo": "
|
|
56
|
+
"dezalgo": "^1.0.4",
|
|
57
57
|
"editor": "~1.0.0",
|
|
58
|
-
"figgy-pudding": "^3.5.
|
|
58
|
+
"figgy-pudding": "^3.5.2",
|
|
59
59
|
"find-npm-prefix": "^1.0.2",
|
|
60
60
|
"fs-vacuum": "~1.2.10",
|
|
61
61
|
"fs-write-stream-atomic": "~1.0.10",
|
|
62
62
|
"gentle-fs": "^2.3.1",
|
|
63
|
-
"glob": "^7.
|
|
64
|
-
"graceful-fs": "^4.2.
|
|
63
|
+
"glob": "^7.2.3",
|
|
64
|
+
"graceful-fs": "^4.2.10",
|
|
65
65
|
"has-unicode": "~2.0.1",
|
|
66
66
|
"hosted-git-info": "^2.8.9",
|
|
67
67
|
"iferr": "^1.0.2",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"inherits": "^2.0.4",
|
|
71
71
|
"ini": "^1.3.8",
|
|
72
72
|
"init-package-json": "^1.10.3",
|
|
73
|
-
"is-cidr": "^3.
|
|
73
|
+
"is-cidr": "^3.1.1",
|
|
74
74
|
"json-parse-better-errors": "^1.0.2",
|
|
75
75
|
"lazy-property": "~1.0.0",
|
|
76
76
|
"libcipm": "^4.0.8",
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"libnpmsearch": "^2.0.2",
|
|
82
82
|
"libnpmteam": "^1.0.2",
|
|
83
83
|
"libnpx": "^10.2.4",
|
|
84
|
-
"lock-verify": "^2.
|
|
84
|
+
"lock-verify": "^2.2.2",
|
|
85
85
|
"lockfile": "^1.0.4",
|
|
86
86
|
"lodash._baseuniq": "~4.6.0",
|
|
87
87
|
"lodash.clonedeep": "~4.5.0",
|
|
@@ -89,11 +89,11 @@
|
|
|
89
89
|
"lodash.uniq": "~4.5.0",
|
|
90
90
|
"lodash.without": "~4.4.0",
|
|
91
91
|
"lru-cache": "^5.1.1",
|
|
92
|
-
"meant": "^1.0.
|
|
92
|
+
"meant": "^1.0.3",
|
|
93
93
|
"mississippi": "^3.0.0",
|
|
94
|
-
"mkdirp": "^0.5.
|
|
94
|
+
"mkdirp": "^0.5.6",
|
|
95
95
|
"move-concurrently": "^1.0.1",
|
|
96
|
-
"node-gyp": "^5.1.
|
|
96
|
+
"node-gyp": "^5.1.1",
|
|
97
97
|
"nopt": "^4.0.3",
|
|
98
98
|
"normalize-package-data": "^2.5.0",
|
|
99
99
|
"npm-audit-report": "^1.3.3",
|
|
@@ -114,19 +114,19 @@
|
|
|
114
114
|
"path-is-inside": "~1.0.2",
|
|
115
115
|
"promise-inflight": "~1.0.1",
|
|
116
116
|
"qrcode-terminal": "^0.12.0",
|
|
117
|
-
"query-string": "^6.
|
|
118
|
-
"qw": "
|
|
117
|
+
"query-string": "^6.14.1",
|
|
118
|
+
"qw": "^1.0.2",
|
|
119
119
|
"read": "~1.0.7",
|
|
120
120
|
"read-cmd-shim": "^1.0.5",
|
|
121
121
|
"read-installed": "~4.0.3",
|
|
122
|
-
"read-package-json": "^2.1.
|
|
122
|
+
"read-package-json": "^2.1.2",
|
|
123
123
|
"read-package-tree": "^5.3.1",
|
|
124
124
|
"readable-stream": "^3.6.0",
|
|
125
125
|
"readdir-scoped-modules": "^1.1.0",
|
|
126
|
-
"request": "^2.88.
|
|
126
|
+
"request": "^2.88.2",
|
|
127
127
|
"retry": "^0.12.0",
|
|
128
128
|
"rimraf": "^2.7.1",
|
|
129
|
-
"safe-buffer": "^5.1
|
|
129
|
+
"safe-buffer": "^5.2.1",
|
|
130
130
|
"semver": "^5.7.1",
|
|
131
131
|
"sha": "^3.0.0",
|
|
132
132
|
"slide": "~1.1.6",
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
"unique-filename": "^1.1.1",
|
|
143
143
|
"unpipe": "~1.0.0",
|
|
144
144
|
"update-notifier": "^2.5.0",
|
|
145
|
-
"uuid": "^3.
|
|
145
|
+
"uuid": "^3.4.0",
|
|
146
146
|
"validate-npm-package-license": "^3.0.4",
|
|
147
147
|
"validate-npm-package-name": "~3.0.0",
|
|
148
148
|
"which": "^1.3.1",
|
|
@@ -275,19 +275,23 @@
|
|
|
275
275
|
"write-file-atomic"
|
|
276
276
|
],
|
|
277
277
|
"devDependencies": {
|
|
278
|
+
"@mdx-js/mdx": "^1.6.22",
|
|
278
279
|
"bl": "^3.0.1",
|
|
279
|
-
"
|
|
280
|
+
"cmark-gfm": "^0.8.3",
|
|
281
|
+
"deep-equal": "^1.1.1",
|
|
280
282
|
"get-stream": "^4.1.0",
|
|
283
|
+
"jsdom": "^16.7.0",
|
|
281
284
|
"licensee": "^7.0.3",
|
|
282
285
|
"marked": "^0.7.0",
|
|
283
286
|
"marked-man": "^0.7.0",
|
|
284
|
-
"npm-registry-mock": "^1.3.
|
|
287
|
+
"npm-registry-mock": "^1.3.2",
|
|
285
288
|
"require-inject": "^1.4.4",
|
|
286
289
|
"sprintf-js": "^1.1.2",
|
|
287
290
|
"standard": "^11.0.1",
|
|
288
291
|
"tacks": "^1.3.0",
|
|
289
292
|
"tap": "^12.7.0",
|
|
290
|
-
"tar-stream": "^2.
|
|
293
|
+
"tar-stream": "^2.2.0",
|
|
294
|
+
"yaml": "^1.10.2"
|
|
291
295
|
},
|
|
292
296
|
"scripts": {
|
|
293
297
|
"dumpconf": "env | grep npm | sort | uniq",
|
|
@@ -297,7 +301,7 @@
|
|
|
297
301
|
"tap": "tap -J --timeout 300 --no-esm",
|
|
298
302
|
"tap:serial": "tap -j1 --timeout 300 --no-esm",
|
|
299
303
|
"tap-cover": "tap -J --nyc-arg=--cache --coverage --timeout 600 --no-esm",
|
|
300
|
-
"lint": "standard",
|
|
304
|
+
"lint": "standard lib/*.js lib/**/*.js",
|
|
301
305
|
"pretest": "npm run lint",
|
|
302
306
|
"test": "npm run test-tap --",
|
|
303
307
|
"test:nocleanup": "NO_TEST_CLEANUP=1 npm run test --",
|
|
@@ -10,16 +10,28 @@ var dest = args[1] || src
|
|
|
10
10
|
fs.readFile(src, 'utf8', function (err, data) {
|
|
11
11
|
if (err) return console.log(err)
|
|
12
12
|
|
|
13
|
+
function frontmatter (match, p1) {
|
|
14
|
+
const fm = { }
|
|
15
|
+
|
|
16
|
+
p1.split(/\r?\n/).forEach((kv) => {
|
|
17
|
+
let result = kv.match(/^([^\s:]+):\s*(.*)/)
|
|
18
|
+
if (result) {
|
|
19
|
+
fm[result[1]] = result[2]
|
|
20
|
+
}
|
|
21
|
+
})
|
|
22
|
+
|
|
23
|
+
return `# ${fm['title']}(${fm['section']}) - ${fm['description']}`
|
|
24
|
+
}
|
|
25
|
+
|
|
13
26
|
function replacer (match, p1) {
|
|
14
27
|
return 'npm help ' + p1.replace(/npm /, '')
|
|
15
28
|
}
|
|
16
29
|
|
|
17
30
|
var result = data.replace(/@VERSION@/g, npm.version)
|
|
18
|
-
.replace(
|
|
19
|
-
.replace(/\[([^\]]+)\]\(\/
|
|
31
|
+
.replace(/^---\n([\s\S]+\n)---/, frontmatter)
|
|
32
|
+
.replace(/\[([^\]]+)\]\(\/commands\/([^)]+)\)/g, replacer)
|
|
20
33
|
.replace(/\[([^\]]+)\]\(\/configuring-npm\/([^)]+)\)/g, replacer)
|
|
21
34
|
.replace(/\[([^\]]+)\]\(\/using-npm\/([^)]+)\)/g, replacer)
|
|
22
|
-
.replace(/(# .*)\s+(## (.*))/g, '$1 - $3')
|
|
23
35
|
.trim()
|
|
24
36
|
|
|
25
37
|
fs.writeFile(dest, marked(result), 'utf8', function (err) {
|
|
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [v1.12.3](https://github.com/inspect-js/object-inspect/compare/v1.12.2...v1.12.3) - 2023-01-12
|
|
9
|
+
|
|
10
|
+
### Commits
|
|
11
|
+
|
|
12
|
+
- [Fix] in eg FF 24, collections lack forEach [`75fc226`](https://github.com/inspect-js/object-inspect/commit/75fc22673c82d45f28322b1946bb0eb41b672b7f)
|
|
13
|
+
- [actions] update rebase action to use reusable workflow [`250a277`](https://github.com/inspect-js/object-inspect/commit/250a277a095e9dacc029ab8454dcfc15de549dcd)
|
|
14
|
+
- [Dev Deps] update `aud`, `es-value-fixtures`, `tape` [`66a19b3`](https://github.com/inspect-js/object-inspect/commit/66a19b3209ccc3c5ef4b34c3cb0160e65d1ce9d5)
|
|
15
|
+
- [Dev Deps] update `@ljharb/eslint-config`, `aud`, `error-cause` [`c43d332`](https://github.com/inspect-js/object-inspect/commit/c43d3324b48384a16fd3dc444e5fc589d785bef3)
|
|
16
|
+
- [Tests] add `@pkgjs/support` to `postlint` [`e2618d2`](https://github.com/inspect-js/object-inspect/commit/e2618d22a7a3fa361b6629b53c1752fddc9c4d80)
|
|
17
|
+
|
|
8
18
|
## [v1.12.2](https://github.com/inspect-js/object-inspect/compare/v1.12.1...v1.12.2) - 2022-05-26
|
|
9
19
|
|
|
10
20
|
### Commits
|
|
@@ -202,16 +202,20 @@ module.exports = function inspect_(obj, options, depth, seen) {
|
|
|
202
202
|
}
|
|
203
203
|
if (isMap(obj)) {
|
|
204
204
|
var mapParts = [];
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
205
|
+
if (mapForEach) {
|
|
206
|
+
mapForEach.call(obj, function (value, key) {
|
|
207
|
+
mapParts.push(inspect(key, obj, true) + ' => ' + inspect(value, obj));
|
|
208
|
+
});
|
|
209
|
+
}
|
|
208
210
|
return collectionOf('Map', mapSize.call(obj), mapParts, indent);
|
|
209
211
|
}
|
|
210
212
|
if (isSet(obj)) {
|
|
211
213
|
var setParts = [];
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
214
|
+
if (setForEach) {
|
|
215
|
+
setForEach.call(obj, function (value) {
|
|
216
|
+
setParts.push(inspect(value, obj));
|
|
217
|
+
});
|
|
218
|
+
}
|
|
215
219
|
return collectionOf('Set', setSize.call(obj), setParts, indent);
|
|
216
220
|
}
|
|
217
221
|
if (isWeakMap(obj)) {
|
|
@@ -1,34 +1,37 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "object-inspect",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.3",
|
|
4
4
|
"description": "string representations of objects in node and the browser",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"devDependencies": {
|
|
8
|
-
"@ljharb/eslint-config": "^21.0.
|
|
9
|
-
"
|
|
8
|
+
"@ljharb/eslint-config": "^21.0.1",
|
|
9
|
+
"@pkgjs/support": "^0.0.6",
|
|
10
|
+
"aud": "^2.0.2",
|
|
10
11
|
"auto-changelog": "^2.4.0",
|
|
11
12
|
"core-js": "^2.6.12",
|
|
12
|
-
"error-cause": "^1.0.
|
|
13
|
-
"es-value-fixtures": "^1.4.
|
|
13
|
+
"error-cause": "^1.0.5",
|
|
14
|
+
"es-value-fixtures": "^1.4.2",
|
|
14
15
|
"eslint": "=8.8.0",
|
|
15
16
|
"for-each": "^0.3.3",
|
|
16
17
|
"functions-have-names": "^1.2.3",
|
|
17
18
|
"has-tostringtag": "^1.0.0",
|
|
19
|
+
"in-publish": "^2.0.1",
|
|
18
20
|
"make-arrow-function": "^1.2.0",
|
|
19
21
|
"mock-property": "^1.0.0",
|
|
20
22
|
"npmignore": "^0.3.0",
|
|
21
23
|
"nyc": "^10.3.2",
|
|
22
24
|
"safe-publish-latest": "^2.0.0",
|
|
23
25
|
"string.prototype.repeat": "^1.0.0",
|
|
24
|
-
"tape": "^5.
|
|
26
|
+
"tape": "^5.6.1"
|
|
25
27
|
},
|
|
26
28
|
"scripts": {
|
|
27
29
|
"prepack": "npmignore --auto --commentLines=autogenerated",
|
|
28
30
|
"prepublish": "not-in-publish || npm run prepublishOnly",
|
|
29
31
|
"prepublishOnly": "safe-publish-latest",
|
|
30
32
|
"pretest": "npm run lint",
|
|
31
|
-
"lint": "eslint .",
|
|
33
|
+
"lint": "eslint --ext=js,mjs .",
|
|
34
|
+
"postlint": "npx @pkgjs/support validate",
|
|
32
35
|
"test": "npm run tests-only && npm run test:corejs",
|
|
33
36
|
"tests-only": "nyc tape 'test/*.js'",
|
|
34
37
|
"test:corejs": "nyc tape test-core-js.js 'test/*.js'",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Punycode.js [](https://www.npmjs.com/package/emoji-test-regex-pattern) [](https://www.jsdelivr.com/package/npm/punycode)
|
|
2
2
|
|
|
3
3
|
Punycode.js is a robust Punycode converter that fully complies to [RFC 3492](https://tools.ietf.org/html/rfc3492) and [RFC 5891](https://tools.ietf.org/html/rfc5891).
|
|
4
4
|
|
|
@@ -12,7 +12,7 @@ This JavaScript library is the result of comparing, optimizing and documenting d
|
|
|
12
12
|
|
|
13
13
|
This project was [bundled](https://github.com/joyent/node/blob/master/lib/punycode.js) with Node.js from [v0.6.2+](https://github.com/joyent/node/compare/975f1930b1...61e796decc) until [v7](https://github.com/nodejs/node/pull/7941) (soft-deprecated).
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
This project provides a CommonJS module that uses ES2015+ features and JavaScript module, which work in modern Node.js versions and browsers. For the old Punycode.js version that offers the same functionality in a UMD build with support for older pre-ES2015 runtimes, including Rhino, Ringo, and Narwhal, see [v1.4.1](https://github.com/mathiasbynens/punycode.js/releases/tag/v1.4.1).
|
|
16
16
|
|
|
17
17
|
## Installation
|
|
18
18
|
|
|
@@ -24,8 +24,12 @@ npm install punycode --save
|
|
|
24
24
|
|
|
25
25
|
In [Node.js](https://nodejs.org/):
|
|
26
26
|
|
|
27
|
+
> ⚠️ Note that userland modules don't hide core modules.
|
|
28
|
+
> For example, `require('punycode')` still imports the deprecated core module even if you executed `npm install punycode`.
|
|
29
|
+
> Use `require('punycode/')` to import userland modules rather than core modules.
|
|
30
|
+
|
|
27
31
|
```js
|
|
28
|
-
const punycode = require('punycode');
|
|
32
|
+
const punycode = require('punycode/');
|
|
29
33
|
```
|
|
30
34
|
|
|
31
35
|
## API
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "punycode",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0",
|
|
4
4
|
"description": "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.",
|
|
5
5
|
"homepage": "https://mths.be/punycode",
|
|
6
6
|
"main": "punycode.js",
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
],
|
|
32
32
|
"repository": {
|
|
33
33
|
"type": "git",
|
|
34
|
-
"url": "https://github.com/
|
|
34
|
+
"url": "https://github.com/mathiasbynens/punycode.js.git"
|
|
35
35
|
},
|
|
36
|
-
"bugs": "https://github.com/
|
|
36
|
+
"bugs": "https://github.com/mathiasbynens/punycode.js/issues",
|
|
37
37
|
"files": [
|
|
38
38
|
"LICENSE-MIT.txt",
|
|
39
39
|
"punycode.js",
|
|
@@ -41,12 +41,12 @@
|
|
|
41
41
|
],
|
|
42
42
|
"scripts": {
|
|
43
43
|
"test": "mocha tests",
|
|
44
|
-
"
|
|
44
|
+
"build": "node scripts/prepublish.js"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"codecov": "^1.0.1",
|
|
48
48
|
"istanbul": "^0.4.1",
|
|
49
|
-
"mocha": "^2.
|
|
49
|
+
"mocha": "^10.2.0"
|
|
50
50
|
},
|
|
51
51
|
"jspm": {
|
|
52
52
|
"map": {
|