step-node-agent 0.0.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/.eslintrc.js +3 -0
- package/.vscode/launch.json +21 -0
- package/AgentConf.json +19 -0
- package/README +1 -0
- package/api/controllers/controller.js +164 -0
- package/api/controllers/output.js +61 -0
- package/api/filemanager/filemanager.js +128 -0
- package/api/routes/routes.js +10 -0
- package/api/runner/runner.js +27 -0
- package/bin/step-node-agent +2 -0
- package/index.js +2 -0
- package/keywords/keywords.js +50 -0
- package/node_modules/abbrev/LICENSE +46 -0
- package/node_modules/abbrev/README.md +23 -0
- package/node_modules/abbrev/abbrev.js +61 -0
- package/node_modules/abbrev/package.json +21 -0
- package/node_modules/accepts/HISTORY.md +243 -0
- package/node_modules/accepts/LICENSE +23 -0
- package/node_modules/accepts/README.md +140 -0
- package/node_modules/accepts/index.js +238 -0
- package/node_modules/accepts/package.json +47 -0
- package/node_modules/ansi-align/CHANGELOG.md +36 -0
- package/node_modules/ansi-align/LICENSE +13 -0
- package/node_modules/ansi-align/README.md +79 -0
- package/node_modules/ansi-align/index.js +61 -0
- package/node_modules/ansi-align/package.json +43 -0
- package/node_modules/ansi-regex/index.js +10 -0
- package/node_modules/ansi-regex/license +9 -0
- package/node_modules/ansi-regex/package.json +53 -0
- package/node_modules/ansi-regex/readme.md +46 -0
- package/node_modules/ansi-styles/index.js +165 -0
- package/node_modules/ansi-styles/license +9 -0
- package/node_modules/ansi-styles/package.json +56 -0
- package/node_modules/ansi-styles/readme.md +147 -0
- package/node_modules/array-flatten/LICENSE +21 -0
- package/node_modules/array-flatten/README.md +43 -0
- package/node_modules/array-flatten/array-flatten.js +64 -0
- package/node_modules/array-flatten/package.json +39 -0
- package/node_modules/asn1/Jenkinsfile +65 -0
- package/node_modules/asn1/LICENSE +19 -0
- package/node_modules/asn1/README.md +50 -0
- package/node_modules/asn1/lib/ber/errors.js +13 -0
- package/node_modules/asn1/lib/ber/index.js +27 -0
- package/node_modules/asn1/lib/ber/reader.js +262 -0
- package/node_modules/asn1/lib/ber/types.js +36 -0
- package/node_modules/asn1/lib/ber/writer.js +317 -0
- package/node_modules/asn1/lib/index.js +20 -0
- package/node_modules/asn1/package.json +31 -0
- package/node_modules/assert-plus/AUTHORS +6 -0
- package/node_modules/assert-plus/CHANGES.md +14 -0
- package/node_modules/assert-plus/README.md +162 -0
- package/node_modules/assert-plus/assert.js +211 -0
- package/node_modules/assert-plus/package.json +23 -0
- package/node_modules/asynckit/LICENSE +21 -0
- package/node_modules/asynckit/README.md +233 -0
- package/node_modules/asynckit/bench.js +76 -0
- package/node_modules/asynckit/index.js +6 -0
- package/node_modules/asynckit/lib/abort.js +29 -0
- package/node_modules/asynckit/lib/async.js +34 -0
- package/node_modules/asynckit/lib/defer.js +26 -0
- package/node_modules/asynckit/lib/iterate.js +75 -0
- package/node_modules/asynckit/lib/readable_asynckit.js +91 -0
- package/node_modules/asynckit/lib/readable_parallel.js +25 -0
- package/node_modules/asynckit/lib/readable_serial.js +25 -0
- package/node_modules/asynckit/lib/readable_serial_ordered.js +29 -0
- package/node_modules/asynckit/lib/state.js +37 -0
- package/node_modules/asynckit/lib/streamify.js +141 -0
- package/node_modules/asynckit/lib/terminator.js +29 -0
- package/node_modules/asynckit/package.json +63 -0
- package/node_modules/asynckit/parallel.js +43 -0
- package/node_modules/asynckit/serial.js +17 -0
- package/node_modules/asynckit/serialOrdered.js +75 -0
- package/node_modules/asynckit/stream.js +21 -0
- package/node_modules/aws-sign2/LICENSE +55 -0
- package/node_modules/aws-sign2/README.md +4 -0
- package/node_modules/aws-sign2/index.js +212 -0
- package/node_modules/aws-sign2/package.json +17 -0
- package/node_modules/aws4/.github/FUNDING.yml +3 -0
- package/node_modules/aws4/.travis.yml +9 -0
- package/node_modules/aws4/LICENSE +19 -0
- package/node_modules/aws4/README.md +183 -0
- package/node_modules/aws4/aws4.js +373 -0
- package/node_modules/aws4/lru.js +96 -0
- package/node_modules/aws4/package.json +17 -0
- package/node_modules/balanced-match/.github/FUNDING.yml +2 -0
- package/node_modules/balanced-match/LICENSE.md +21 -0
- package/node_modules/balanced-match/README.md +97 -0
- package/node_modules/balanced-match/index.js +62 -0
- package/node_modules/balanced-match/package.json +48 -0
- package/node_modules/bcrypt-pbkdf/CONTRIBUTING.md +13 -0
- package/node_modules/bcrypt-pbkdf/LICENSE +66 -0
- package/node_modules/bcrypt-pbkdf/README.md +45 -0
- package/node_modules/bcrypt-pbkdf/index.js +556 -0
- package/node_modules/bcrypt-pbkdf/package.json +15 -0
- package/node_modules/binary/.npmignore +1 -0
- package/node_modules/binary/.travis.yml +4 -0
- package/node_modules/binary/README.markdown +177 -0
- package/node_modules/binary/example/buf.js +11 -0
- package/node_modules/binary/example/parse.js +10 -0
- package/node_modules/binary/example/stream.js +12 -0
- package/node_modules/binary/index.js +397 -0
- package/node_modules/binary/lib/vars.js +28 -0
- package/node_modules/binary/package.json +38 -0
- package/node_modules/binary/perf/loop.js +92 -0
- package/node_modules/binary/perf/small.js +80 -0
- package/node_modules/binary/test/bu.js +46 -0
- package/node_modules/binary/test/deferred.js +20 -0
- package/node_modules/binary/test/dots.js +23 -0
- package/node_modules/binary/test/eof.js +41 -0
- package/node_modules/binary/test/flush.js +17 -0
- package/node_modules/binary/test/from_buffer.js +14 -0
- package/node_modules/binary/test/get_buffer.js +28 -0
- package/node_modules/binary/test/immediate.js +18 -0
- package/node_modules/binary/test/interval.js +38 -0
- package/node_modules/binary/test/into_buffer.js +35 -0
- package/node_modules/binary/test/into_stream.js +43 -0
- package/node_modules/binary/test/loop.js +44 -0
- package/node_modules/binary/test/loop_scan.js +54 -0
- package/node_modules/binary/test/lu.js +46 -0
- package/node_modules/binary/test/negbs.js +29 -0
- package/node_modules/binary/test/negls.js +29 -0
- package/node_modules/binary/test/nested.js +35 -0
- package/node_modules/binary/test/not_enough_buf.js +17 -0
- package/node_modules/binary/test/not_enough_parse.js +19 -0
- package/node_modules/binary/test/parse.js +54 -0
- package/node_modules/binary/test/peek.js +40 -0
- package/node_modules/binary/test/pipe.js +49 -0
- package/node_modules/binary/test/posbs.js +29 -0
- package/node_modules/binary/test/posls.js +29 -0
- package/node_modules/binary/test/scan.js +33 -0
- package/node_modules/binary/test/scan_buf.js +18 -0
- package/node_modules/binary/test/scan_buf_null.js +16 -0
- package/node_modules/binary/test/skip.js +58 -0
- package/node_modules/binary/test/split.js +34 -0
- package/node_modules/body-parser/HISTORY.md +651 -0
- package/node_modules/body-parser/LICENSE +23 -0
- package/node_modules/body-parser/README.md +464 -0
- package/node_modules/body-parser/SECURITY.md +25 -0
- package/node_modules/body-parser/index.js +157 -0
- package/node_modules/body-parser/lib/read.js +205 -0
- package/node_modules/body-parser/lib/types/json.js +236 -0
- package/node_modules/body-parser/lib/types/raw.js +101 -0
- package/node_modules/body-parser/lib/types/text.js +121 -0
- package/node_modules/body-parser/lib/types/urlencoded.js +284 -0
- package/node_modules/body-parser/package.json +56 -0
- package/node_modules/boxen/index.js +138 -0
- package/node_modules/boxen/license +9 -0
- package/node_modules/boxen/package.json +47 -0
- package/node_modules/boxen/readme.md +175 -0
- package/node_modules/brace-expansion/LICENSE +21 -0
- package/node_modules/brace-expansion/README.md +129 -0
- package/node_modules/brace-expansion/index.js +201 -0
- package/node_modules/brace-expansion/package.json +47 -0
- package/node_modules/buffers/README.markdown +122 -0
- package/node_modules/buffers/examples/slice.js +9 -0
- package/node_modules/buffers/examples/splice.js +17 -0
- package/node_modules/buffers/index.js +269 -0
- package/node_modules/buffers/package.json +14 -0
- package/node_modules/buffers/test/buffers.js +209 -0
- package/node_modules/bytes/History.md +97 -0
- package/node_modules/bytes/LICENSE +23 -0
- package/node_modules/bytes/Readme.md +152 -0
- package/node_modules/bytes/index.js +170 -0
- package/node_modules/bytes/package.json +42 -0
- package/node_modules/call-bind/.eslintignore +1 -0
- package/node_modules/call-bind/.eslintrc +17 -0
- package/node_modules/call-bind/.github/FUNDING.yml +12 -0
- package/node_modules/call-bind/.nycrc +13 -0
- package/node_modules/call-bind/CHANGELOG.md +42 -0
- package/node_modules/call-bind/LICENSE +21 -0
- package/node_modules/call-bind/README.md +2 -0
- package/node_modules/call-bind/callBound.js +15 -0
- package/node_modules/call-bind/index.js +47 -0
- package/node_modules/call-bind/package.json +80 -0
- package/node_modules/call-bind/test/callBound.js +55 -0
- package/node_modules/call-bind/test/index.js +66 -0
- package/node_modules/camelcase/index.js +64 -0
- package/node_modules/camelcase/license +21 -0
- package/node_modules/camelcase/package.json +42 -0
- package/node_modules/camelcase/readme.md +57 -0
- package/node_modules/capture-stack-trace/index.js +18 -0
- package/node_modules/capture-stack-trace/license +21 -0
- package/node_modules/capture-stack-trace/package.json +29 -0
- package/node_modules/capture-stack-trace/readme.md +36 -0
- package/node_modules/caseless/LICENSE +28 -0
- package/node_modules/caseless/README.md +45 -0
- package/node_modules/caseless/index.js +67 -0
- package/node_modules/caseless/package.json +27 -0
- package/node_modules/caseless/test.js +67 -0
- package/node_modules/chainsaw/.npmignore +1 -0
- package/node_modules/chainsaw/README.markdown +157 -0
- package/node_modules/chainsaw/examples/add_do.js +25 -0
- package/node_modules/chainsaw/examples/prompt.js +67 -0
- package/node_modules/chainsaw/index.js +145 -0
- package/node_modules/chainsaw/package.json +23 -0
- package/node_modules/chainsaw/test/chainsaw.js +418 -0
- package/node_modules/chalk/index.js +228 -0
- package/node_modules/chalk/index.js.flow +93 -0
- package/node_modules/chalk/license +9 -0
- package/node_modules/chalk/package.json +71 -0
- package/node_modules/chalk/readme.md +314 -0
- package/node_modules/chalk/templates.js +128 -0
- package/node_modules/chalk/types/index.d.ts +97 -0
- package/node_modules/ci-info/CHANGELOG.md +62 -0
- package/node_modules/ci-info/LICENSE +21 -0
- package/node_modules/ci-info/README.md +107 -0
- package/node_modules/ci-info/index.js +66 -0
- package/node_modules/ci-info/package.json +36 -0
- package/node_modules/ci-info/vendors.json +152 -0
- package/node_modules/cli-boxes/boxes.json +50 -0
- package/node_modules/cli-boxes/index.js +2 -0
- package/node_modules/cli-boxes/license +21 -0
- package/node_modules/cli-boxes/package.json +39 -0
- package/node_modules/cli-boxes/readme.md +94 -0
- package/node_modules/color-convert/CHANGELOG.md +54 -0
- package/node_modules/color-convert/LICENSE +21 -0
- package/node_modules/color-convert/README.md +68 -0
- package/node_modules/color-convert/conversions.js +868 -0
- package/node_modules/color-convert/index.js +78 -0
- package/node_modules/color-convert/package.json +46 -0
- package/node_modules/color-convert/route.js +97 -0
- package/node_modules/color-name/.eslintrc.json +43 -0
- package/node_modules/color-name/.npmignore +107 -0
- package/node_modules/color-name/LICENSE +8 -0
- package/node_modules/color-name/README.md +11 -0
- package/node_modules/color-name/index.js +152 -0
- package/node_modules/color-name/package.json +25 -0
- package/node_modules/color-name/test.js +7 -0
- package/node_modules/combined-stream/License +19 -0
- package/node_modules/combined-stream/Readme.md +138 -0
- package/node_modules/combined-stream/lib/combined_stream.js +208 -0
- package/node_modules/combined-stream/package.json +25 -0
- package/node_modules/combined-stream/yarn.lock +17 -0
- package/node_modules/concat-map/.travis.yml +4 -0
- package/node_modules/concat-map/LICENSE +18 -0
- package/node_modules/concat-map/README.markdown +62 -0
- package/node_modules/concat-map/example/map.js +6 -0
- package/node_modules/concat-map/index.js +13 -0
- package/node_modules/concat-map/package.json +43 -0
- package/node_modules/concat-map/test/map.js +39 -0
- package/node_modules/configstore/index.js +106 -0
- package/node_modules/configstore/license +9 -0
- package/node_modules/configstore/package.json +47 -0
- package/node_modules/configstore/readme.md +116 -0
- package/node_modules/content-disposition/HISTORY.md +60 -0
- package/node_modules/content-disposition/LICENSE +22 -0
- package/node_modules/content-disposition/README.md +142 -0
- package/node_modules/content-disposition/index.js +458 -0
- package/node_modules/content-disposition/package.json +44 -0
- package/node_modules/content-type/HISTORY.md +24 -0
- package/node_modules/content-type/LICENSE +22 -0
- package/node_modules/content-type/README.md +92 -0
- package/node_modules/content-type/index.js +222 -0
- package/node_modules/content-type/package.json +40 -0
- package/node_modules/cookie/HISTORY.md +142 -0
- package/node_modules/cookie/LICENSE +24 -0
- package/node_modules/cookie/README.md +302 -0
- package/node_modules/cookie/SECURITY.md +25 -0
- package/node_modules/cookie/index.js +270 -0
- package/node_modules/cookie/package.json +44 -0
- package/node_modules/cookie-signature/.npmignore +4 -0
- package/node_modules/cookie-signature/History.md +38 -0
- package/node_modules/cookie-signature/Readme.md +42 -0
- package/node_modules/cookie-signature/index.js +51 -0
- package/node_modules/cookie-signature/package.json +18 -0
- package/node_modules/core-util-is/LICENSE +19 -0
- package/node_modules/core-util-is/README.md +3 -0
- package/node_modules/core-util-is/lib/util.js +107 -0
- package/node_modules/core-util-is/package.json +38 -0
- package/node_modules/create-error-class/index.js +44 -0
- package/node_modules/create-error-class/license +21 -0
- package/node_modules/create-error-class/package.json +30 -0
- package/node_modules/create-error-class/readme.md +54 -0
- package/node_modules/cross-spawn/CHANGELOG.md +6 -0
- package/node_modules/cross-spawn/LICENSE +19 -0
- package/node_modules/cross-spawn/README.md +85 -0
- package/node_modules/cross-spawn/index.js +59 -0
- package/node_modules/cross-spawn/lib/enoent.js +73 -0
- package/node_modules/cross-spawn/lib/parse.js +113 -0
- package/node_modules/cross-spawn/lib/util/escapeArgument.js +30 -0
- package/node_modules/cross-spawn/lib/util/escapeCommand.js +12 -0
- package/node_modules/cross-spawn/lib/util/hasEmptyArgumentBug.js +18 -0
- package/node_modules/cross-spawn/lib/util/readShebang.js +37 -0
- package/node_modules/cross-spawn/lib/util/resolveCommand.js +31 -0
- package/node_modules/cross-spawn/package.json +53 -0
- package/node_modules/crypto-random-string/index.js +10 -0
- package/node_modules/crypto-random-string/license +21 -0
- package/node_modules/crypto-random-string/package.json +43 -0
- package/node_modules/crypto-random-string/readme.md +49 -0
- package/node_modules/dashdash/CHANGES.md +364 -0
- package/node_modules/dashdash/LICENSE.txt +24 -0
- package/node_modules/dashdash/README.md +574 -0
- package/node_modules/dashdash/etc/dashdash.bash_completion.in +389 -0
- package/node_modules/dashdash/lib/dashdash.js +1055 -0
- package/node_modules/dashdash/package.json +26 -0
- package/node_modules/debug/.coveralls.yml +1 -0
- package/node_modules/debug/.eslintrc +11 -0
- package/node_modules/debug/.npmignore +9 -0
- package/node_modules/debug/.travis.yml +14 -0
- package/node_modules/debug/CHANGELOG.md +362 -0
- package/node_modules/debug/LICENSE +19 -0
- package/node_modules/debug/Makefile +50 -0
- package/node_modules/debug/README.md +312 -0
- package/node_modules/debug/component.json +19 -0
- package/node_modules/debug/karma.conf.js +70 -0
- package/node_modules/debug/node.js +1 -0
- package/node_modules/debug/package.json +49 -0
- package/node_modules/debug/src/browser.js +185 -0
- package/node_modules/debug/src/debug.js +202 -0
- package/node_modules/debug/src/index.js +10 -0
- package/node_modules/debug/src/inspector-log.js +15 -0
- package/node_modules/debug/src/node.js +248 -0
- package/node_modules/deep-extend/CHANGELOG.md +46 -0
- package/node_modules/deep-extend/LICENSE +20 -0
- package/node_modules/deep-extend/README.md +91 -0
- package/node_modules/deep-extend/index.js +1 -0
- package/node_modules/deep-extend/lib/deep-extend.js +150 -0
- package/node_modules/deep-extend/package.json +62 -0
- package/node_modules/delayed-stream/.npmignore +1 -0
- package/node_modules/delayed-stream/License +19 -0
- package/node_modules/delayed-stream/Makefile +7 -0
- package/node_modules/delayed-stream/Readme.md +141 -0
- package/node_modules/delayed-stream/lib/delayed_stream.js +107 -0
- package/node_modules/delayed-stream/package.json +27 -0
- package/node_modules/depd/History.md +103 -0
- package/node_modules/depd/LICENSE +22 -0
- package/node_modules/depd/Readme.md +280 -0
- package/node_modules/depd/index.js +538 -0
- package/node_modules/depd/lib/browser/index.js +77 -0
- package/node_modules/depd/package.json +45 -0
- package/node_modules/destroy/LICENSE +23 -0
- package/node_modules/destroy/README.md +63 -0
- package/node_modules/destroy/index.js +209 -0
- package/node_modules/destroy/package.json +48 -0
- package/node_modules/dot-prop/index.js +141 -0
- package/node_modules/dot-prop/license +21 -0
- package/node_modules/dot-prop/package.json +48 -0
- package/node_modules/dot-prop/readme.md +105 -0
- package/node_modules/duplexer3/LICENSE.md +26 -0
- package/node_modules/duplexer3/README.md +115 -0
- package/node_modules/duplexer3/index.js +76 -0
- package/node_modules/duplexer3/package.json +28 -0
- package/node_modules/ecc-jsbn/LICENSE +21 -0
- package/node_modules/ecc-jsbn/README.md +8 -0
- package/node_modules/ecc-jsbn/index.js +58 -0
- package/node_modules/ecc-jsbn/lib/LICENSE-jsbn +40 -0
- package/node_modules/ecc-jsbn/lib/ec.js +561 -0
- package/node_modules/ecc-jsbn/lib/sec.js +170 -0
- package/node_modules/ecc-jsbn/package.json +40 -0
- package/node_modules/ecc-jsbn/test.js +14 -0
- package/node_modules/ee-first/LICENSE +22 -0
- package/node_modules/ee-first/README.md +80 -0
- package/node_modules/ee-first/index.js +95 -0
- package/node_modules/ee-first/package.json +29 -0
- package/node_modules/encodeurl/HISTORY.md +14 -0
- package/node_modules/encodeurl/LICENSE +22 -0
- package/node_modules/encodeurl/README.md +128 -0
- package/node_modules/encodeurl/index.js +60 -0
- package/node_modules/encodeurl/package.json +40 -0
- package/node_modules/escape-html/LICENSE +24 -0
- package/node_modules/escape-html/Readme.md +43 -0
- package/node_modules/escape-html/index.js +78 -0
- package/node_modules/escape-html/package.json +24 -0
- package/node_modules/escape-string-regexp/index.js +11 -0
- package/node_modules/escape-string-regexp/license +21 -0
- package/node_modules/escape-string-regexp/package.json +41 -0
- package/node_modules/escape-string-regexp/readme.md +27 -0
- package/node_modules/etag/HISTORY.md +83 -0
- package/node_modules/etag/LICENSE +22 -0
- package/node_modules/etag/README.md +159 -0
- package/node_modules/etag/index.js +131 -0
- package/node_modules/etag/package.json +47 -0
- package/node_modules/execa/index.js +309 -0
- package/node_modules/execa/lib/errname.js +37 -0
- package/node_modules/execa/lib/stdio.js +41 -0
- package/node_modules/execa/license +9 -0
- package/node_modules/execa/package.json +76 -0
- package/node_modules/execa/readme.md +279 -0
- package/node_modules/express/History.md +3579 -0
- package/node_modules/express/LICENSE +24 -0
- package/node_modules/express/Readme.md +166 -0
- package/node_modules/express/index.js +11 -0
- package/node_modules/express/lib/application.js +661 -0
- package/node_modules/express/lib/express.js +116 -0
- package/node_modules/express/lib/middleware/init.js +43 -0
- package/node_modules/express/lib/middleware/query.js +47 -0
- package/node_modules/express/lib/request.js +525 -0
- package/node_modules/express/lib/response.js +1169 -0
- package/node_modules/express/lib/router/index.js +673 -0
- package/node_modules/express/lib/router/layer.js +181 -0
- package/node_modules/express/lib/router/route.js +225 -0
- package/node_modules/express/lib/utils.js +304 -0
- package/node_modules/express/lib/view.js +182 -0
- package/node_modules/express/package.json +99 -0
- package/node_modules/extend/.editorconfig +20 -0
- package/node_modules/extend/.eslintrc +17 -0
- package/node_modules/extend/.jscs.json +175 -0
- package/node_modules/extend/.travis.yml +230 -0
- package/node_modules/extend/CHANGELOG.md +83 -0
- package/node_modules/extend/LICENSE +23 -0
- package/node_modules/extend/README.md +81 -0
- package/node_modules/extend/component.json +32 -0
- package/node_modules/extend/index.js +117 -0
- package/node_modules/extend/package.json +42 -0
- package/node_modules/extsprintf/.gitmodules +0 -0
- package/node_modules/extsprintf/.npmignore +2 -0
- package/node_modules/extsprintf/LICENSE +19 -0
- package/node_modules/extsprintf/Makefile +24 -0
- package/node_modules/extsprintf/Makefile.targ +285 -0
- package/node_modules/extsprintf/README.md +46 -0
- package/node_modules/extsprintf/jsl.node.conf +137 -0
- package/node_modules/extsprintf/lib/extsprintf.js +183 -0
- package/node_modules/extsprintf/package.json +14 -0
- package/node_modules/fast-json-stable-stringify/.eslintrc.yml +26 -0
- package/node_modules/fast-json-stable-stringify/.github/FUNDING.yml +1 -0
- package/node_modules/fast-json-stable-stringify/.travis.yml +8 -0
- package/node_modules/fast-json-stable-stringify/LICENSE +21 -0
- package/node_modules/fast-json-stable-stringify/README.md +131 -0
- package/node_modules/fast-json-stable-stringify/benchmark/index.js +31 -0
- package/node_modules/fast-json-stable-stringify/benchmark/test.json +137 -0
- package/node_modules/fast-json-stable-stringify/example/key_cmp.js +7 -0
- package/node_modules/fast-json-stable-stringify/example/nested.js +3 -0
- package/node_modules/fast-json-stable-stringify/example/str.js +3 -0
- package/node_modules/fast-json-stable-stringify/example/value_cmp.js +7 -0
- package/node_modules/fast-json-stable-stringify/index.d.ts +4 -0
- package/node_modules/fast-json-stable-stringify/index.js +59 -0
- package/node_modules/fast-json-stable-stringify/package.json +52 -0
- package/node_modules/fast-json-stable-stringify/test/cmp.js +13 -0
- package/node_modules/fast-json-stable-stringify/test/nested.js +44 -0
- package/node_modules/fast-json-stable-stringify/test/str.js +46 -0
- package/node_modules/fast-json-stable-stringify/test/to-json.js +22 -0
- package/node_modules/finalhandler/HISTORY.md +195 -0
- package/node_modules/finalhandler/LICENSE +22 -0
- package/node_modules/finalhandler/README.md +147 -0
- package/node_modules/finalhandler/SECURITY.md +25 -0
- package/node_modules/finalhandler/index.js +336 -0
- package/node_modules/finalhandler/package.json +46 -0
- package/node_modules/forever-agent/LICENSE +55 -0
- package/node_modules/forever-agent/README.md +4 -0
- package/node_modules/forever-agent/index.js +138 -0
- package/node_modules/forever-agent/package.json +17 -0
- package/node_modules/form-data/License +19 -0
- package/node_modules/form-data/README.md +234 -0
- package/node_modules/form-data/README.md.bak +234 -0
- package/node_modules/form-data/lib/browser.js +2 -0
- package/node_modules/form-data/lib/form_data.js +457 -0
- package/node_modules/form-data/lib/populate.js +10 -0
- package/node_modules/form-data/package.json +65 -0
- package/node_modules/form-data/yarn.lock +2662 -0
- package/node_modules/forwarded/HISTORY.md +21 -0
- package/node_modules/forwarded/LICENSE +22 -0
- package/node_modules/forwarded/README.md +57 -0
- package/node_modules/forwarded/index.js +90 -0
- package/node_modules/forwarded/package.json +45 -0
- package/node_modules/fresh/HISTORY.md +70 -0
- package/node_modules/fresh/LICENSE +23 -0
- package/node_modules/fresh/README.md +119 -0
- package/node_modules/fresh/index.js +137 -0
- package/node_modules/fresh/package.json +46 -0
- package/node_modules/fs.realpath/LICENSE +43 -0
- package/node_modules/fs.realpath/README.md +33 -0
- package/node_modules/fs.realpath/index.js +66 -0
- package/node_modules/fs.realpath/old.js +303 -0
- package/node_modules/fs.realpath/package.json +26 -0
- package/node_modules/function-bind/.editorconfig +20 -0
- package/node_modules/function-bind/.eslintrc +15 -0
- package/node_modules/function-bind/.jscs.json +176 -0
- package/node_modules/function-bind/.npmignore +22 -0
- package/node_modules/function-bind/.travis.yml +168 -0
- package/node_modules/function-bind/LICENSE +20 -0
- package/node_modules/function-bind/README.md +48 -0
- package/node_modules/function-bind/implementation.js +52 -0
- package/node_modules/function-bind/index.js +5 -0
- package/node_modules/function-bind/package.json +63 -0
- package/node_modules/function-bind/test/.eslintrc +9 -0
- package/node_modules/function-bind/test/index.js +252 -0
- package/node_modules/get-intrinsic/.eslintignore +1 -0
- package/node_modules/get-intrinsic/.eslintrc +43 -0
- package/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
- package/node_modules/get-intrinsic/.nycrc +13 -0
- package/node_modules/get-intrinsic/CHANGELOG.md +64 -0
- package/node_modules/get-intrinsic/LICENSE +21 -0
- package/node_modules/get-intrinsic/README.md +65 -0
- package/node_modules/get-intrinsic/index.js +330 -0
- package/node_modules/get-intrinsic/package.json +78 -0
- package/node_modules/get-intrinsic/test/GetIntrinsic.js +260 -0
- package/node_modules/get-stream/buffer-stream.js +51 -0
- package/node_modules/get-stream/index.js +51 -0
- package/node_modules/get-stream/license +21 -0
- package/node_modules/get-stream/package.json +48 -0
- package/node_modules/get-stream/readme.md +117 -0
- package/node_modules/getpass/.npmignore +8 -0
- package/node_modules/getpass/.travis.yml +9 -0
- package/node_modules/getpass/LICENSE +18 -0
- package/node_modules/getpass/README.md +32 -0
- package/node_modules/getpass/lib/index.js +123 -0
- package/node_modules/getpass/package.json +18 -0
- package/node_modules/glob/LICENSE +21 -0
- package/node_modules/glob/README.md +378 -0
- package/node_modules/glob/common.js +238 -0
- package/node_modules/glob/glob.js +790 -0
- package/node_modules/glob/package.json +55 -0
- package/node_modules/glob/sync.js +486 -0
- package/node_modules/global-dirs/index.js +90 -0
- package/node_modules/global-dirs/license +9 -0
- package/node_modules/global-dirs/package.json +52 -0
- package/node_modules/global-dirs/readme.md +69 -0
- package/node_modules/got/index.js +364 -0
- package/node_modules/got/license +21 -0
- package/node_modules/got/package.json +78 -0
- package/node_modules/got/readme.md +335 -0
- package/node_modules/graceful-fs/LICENSE +15 -0
- package/node_modules/graceful-fs/README.md +143 -0
- package/node_modules/graceful-fs/clone.js +23 -0
- package/node_modules/graceful-fs/graceful-fs.js +448 -0
- package/node_modules/graceful-fs/legacy-streams.js +118 -0
- package/node_modules/graceful-fs/package.json +50 -0
- package/node_modules/graceful-fs/polyfills.js +355 -0
- package/node_modules/har-schema/LICENSE +13 -0
- package/node_modules/har-schema/README.md +49 -0
- package/node_modules/har-schema/lib/afterRequest.json +30 -0
- package/node_modules/har-schema/lib/beforeRequest.json +30 -0
- package/node_modules/har-schema/lib/browser.json +20 -0
- package/node_modules/har-schema/lib/cache.json +21 -0
- package/node_modules/har-schema/lib/content.json +29 -0
- package/node_modules/har-schema/lib/cookie.json +36 -0
- package/node_modules/har-schema/lib/creator.json +20 -0
- package/node_modules/har-schema/lib/entry.json +53 -0
- package/node_modules/har-schema/lib/har.json +13 -0
- package/node_modules/har-schema/lib/header.json +20 -0
- package/node_modules/har-schema/lib/index.js +22 -0
- package/node_modules/har-schema/lib/log.json +36 -0
- package/node_modules/har-schema/lib/page.json +32 -0
- package/node_modules/har-schema/lib/pageTimings.json +18 -0
- package/node_modules/har-schema/lib/postData.json +43 -0
- package/node_modules/har-schema/lib/query.json +20 -0
- package/node_modules/har-schema/lib/request.json +57 -0
- package/node_modules/har-schema/lib/response.json +54 -0
- package/node_modules/har-schema/lib/timings.json +42 -0
- package/node_modules/har-schema/package.json +54 -0
- package/node_modules/har-validator/LICENSE +9 -0
- package/node_modules/har-validator/README.md +43 -0
- package/node_modules/har-validator/lib/async.js +105 -0
- package/node_modules/har-validator/lib/error.js +17 -0
- package/node_modules/har-validator/lib/promise.js +102 -0
- package/node_modules/har-validator/node_modules/ajv/.tonic_example.js +20 -0
- package/node_modules/har-validator/node_modules/ajv/LICENSE +22 -0
- package/node_modules/har-validator/node_modules/ajv/README.md +1497 -0
- package/node_modules/har-validator/node_modules/ajv/dist/ajv.bundle.js +7189 -0
- package/node_modules/har-validator/node_modules/ajv/dist/ajv.min.js +3 -0
- package/node_modules/har-validator/node_modules/ajv/dist/ajv.min.js.map +1 -0
- package/node_modules/har-validator/node_modules/ajv/lib/ajv.d.ts +397 -0
- package/node_modules/har-validator/node_modules/ajv/lib/ajv.js +506 -0
- package/node_modules/har-validator/node_modules/ajv/lib/cache.js +26 -0
- package/node_modules/har-validator/node_modules/ajv/lib/compile/async.js +90 -0
- package/node_modules/har-validator/node_modules/ajv/lib/compile/equal.js +5 -0
- package/node_modules/har-validator/node_modules/ajv/lib/compile/error_classes.js +34 -0
- package/node_modules/har-validator/node_modules/ajv/lib/compile/formats.js +142 -0
- package/node_modules/har-validator/node_modules/ajv/lib/compile/index.js +387 -0
- package/node_modules/har-validator/node_modules/ajv/lib/compile/resolve.js +270 -0
- package/node_modules/har-validator/node_modules/ajv/lib/compile/rules.js +66 -0
- package/node_modules/har-validator/node_modules/ajv/lib/compile/schema_obj.js +9 -0
- package/node_modules/har-validator/node_modules/ajv/lib/compile/ucs2length.js +20 -0
- package/node_modules/har-validator/node_modules/ajv/lib/compile/util.js +239 -0
- package/node_modules/har-validator/node_modules/ajv/lib/data.js +49 -0
- package/node_modules/har-validator/node_modules/ajv/lib/definition_schema.js +37 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dot/_limit.jst +113 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dot/_limitItems.jst +12 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dot/_limitLength.jst +12 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dot/_limitProperties.jst +12 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dot/allOf.jst +32 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dot/anyOf.jst +46 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dot/coerce.def +51 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dot/comment.jst +9 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dot/const.jst +11 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dot/contains.jst +55 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dot/custom.jst +191 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dot/defaults.def +47 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dot/definitions.def +203 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dot/dependencies.jst +79 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dot/enum.jst +30 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dot/errors.def +194 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dot/format.jst +106 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dot/if.jst +73 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dot/items.jst +98 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dot/missing.def +39 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dot/multipleOf.jst +22 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dot/not.jst +43 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dot/oneOf.jst +54 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dot/pattern.jst +14 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dot/properties.jst +245 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dot/propertyNames.jst +52 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dot/ref.jst +85 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dot/required.jst +108 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dot/uniqueItems.jst +62 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dot/validate.jst +276 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dotjs/README.md +3 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dotjs/_limit.js +163 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dotjs/_limitItems.js +80 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dotjs/_limitLength.js +85 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dotjs/_limitProperties.js +80 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dotjs/allOf.js +42 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dotjs/anyOf.js +73 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dotjs/comment.js +14 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dotjs/const.js +56 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dotjs/contains.js +81 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dotjs/custom.js +228 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dotjs/dependencies.js +168 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dotjs/enum.js +66 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dotjs/format.js +150 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dotjs/if.js +103 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dotjs/index.js +33 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dotjs/items.js +140 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dotjs/multipleOf.js +80 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dotjs/not.js +84 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dotjs/oneOf.js +73 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dotjs/pattern.js +75 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dotjs/properties.js +335 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dotjs/propertyNames.js +81 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dotjs/ref.js +124 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dotjs/required.js +270 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dotjs/uniqueItems.js +86 -0
- package/node_modules/har-validator/node_modules/ajv/lib/dotjs/validate.js +482 -0
- package/node_modules/har-validator/node_modules/ajv/lib/keyword.js +146 -0
- package/node_modules/har-validator/node_modules/ajv/lib/refs/data.json +17 -0
- package/node_modules/har-validator/node_modules/ajv/lib/refs/json-schema-draft-04.json +149 -0
- package/node_modules/har-validator/node_modules/ajv/lib/refs/json-schema-draft-06.json +154 -0
- package/node_modules/har-validator/node_modules/ajv/lib/refs/json-schema-draft-07.json +168 -0
- package/node_modules/har-validator/node_modules/ajv/lib/refs/json-schema-secure.json +94 -0
- package/node_modules/har-validator/node_modules/ajv/package.json +106 -0
- package/node_modules/har-validator/node_modules/ajv/scripts/.eslintrc.yml +3 -0
- package/node_modules/har-validator/node_modules/ajv/scripts/bundle.js +61 -0
- package/node_modules/har-validator/node_modules/ajv/scripts/compile-dots.js +73 -0
- package/node_modules/har-validator/node_modules/ajv/scripts/info +10 -0
- package/node_modules/har-validator/node_modules/ajv/scripts/prepare-tests +12 -0
- package/node_modules/har-validator/node_modules/ajv/scripts/publish-built-version +32 -0
- package/node_modules/har-validator/node_modules/ajv/scripts/travis-gh-pages +23 -0
- package/node_modules/har-validator/node_modules/fast-deep-equal/LICENSE +21 -0
- package/node_modules/har-validator/node_modules/fast-deep-equal/README.md +96 -0
- package/node_modules/har-validator/node_modules/fast-deep-equal/es6/index.d.ts +2 -0
- package/node_modules/har-validator/node_modules/fast-deep-equal/es6/index.js +72 -0
- package/node_modules/har-validator/node_modules/fast-deep-equal/es6/react.d.ts +2 -0
- package/node_modules/har-validator/node_modules/fast-deep-equal/es6/react.js +79 -0
- package/node_modules/har-validator/node_modules/fast-deep-equal/index.d.ts +4 -0
- package/node_modules/har-validator/node_modules/fast-deep-equal/index.js +46 -0
- package/node_modules/har-validator/node_modules/fast-deep-equal/package.json +61 -0
- package/node_modules/har-validator/node_modules/fast-deep-equal/react.d.ts +2 -0
- package/node_modules/har-validator/node_modules/fast-deep-equal/react.js +53 -0
- package/node_modules/har-validator/node_modules/json-schema-traverse/.eslintrc.yml +27 -0
- package/node_modules/har-validator/node_modules/json-schema-traverse/.travis.yml +8 -0
- package/node_modules/har-validator/node_modules/json-schema-traverse/LICENSE +21 -0
- package/node_modules/har-validator/node_modules/json-schema-traverse/README.md +83 -0
- package/node_modules/har-validator/node_modules/json-schema-traverse/index.js +89 -0
- package/node_modules/har-validator/node_modules/json-schema-traverse/package.json +43 -0
- package/node_modules/har-validator/node_modules/json-schema-traverse/spec/.eslintrc.yml +6 -0
- package/node_modules/har-validator/node_modules/json-schema-traverse/spec/fixtures/schema.js +125 -0
- package/node_modules/har-validator/node_modules/json-schema-traverse/spec/index.spec.js +171 -0
- package/node_modules/har-validator/package.json +43 -0
- package/node_modules/has/LICENSE-MIT +22 -0
- package/node_modules/has/README.md +18 -0
- package/node_modules/has/package.json +48 -0
- package/node_modules/has/src/index.js +5 -0
- package/node_modules/has/test/index.js +10 -0
- package/node_modules/has-flag/index.js +8 -0
- package/node_modules/has-flag/license +9 -0
- package/node_modules/has-flag/package.json +44 -0
- package/node_modules/has-flag/readme.md +70 -0
- package/node_modules/has-symbols/.eslintrc +11 -0
- package/node_modules/has-symbols/.github/FUNDING.yml +12 -0
- package/node_modules/has-symbols/.nycrc +9 -0
- package/node_modules/has-symbols/CHANGELOG.md +75 -0
- package/node_modules/has-symbols/LICENSE +21 -0
- package/node_modules/has-symbols/README.md +46 -0
- package/node_modules/has-symbols/index.js +13 -0
- package/node_modules/has-symbols/package.json +101 -0
- package/node_modules/has-symbols/shams.js +42 -0
- package/node_modules/has-symbols/test/index.js +22 -0
- package/node_modules/has-symbols/test/shams/core-js.js +28 -0
- package/node_modules/has-symbols/test/shams/get-own-property-symbols.js +28 -0
- package/node_modules/has-symbols/test/tests.js +56 -0
- package/node_modules/http/package.json +11 -0
- package/node_modules/http-errors/HISTORY.md +180 -0
- package/node_modules/http-errors/LICENSE +23 -0
- package/node_modules/http-errors/README.md +169 -0
- package/node_modules/http-errors/index.js +289 -0
- package/node_modules/http-errors/package.json +50 -0
- package/node_modules/http-signature/.dir-locals.el +6 -0
- package/node_modules/http-signature/.npmignore +7 -0
- package/node_modules/http-signature/CHANGES.md +46 -0
- package/node_modules/http-signature/LICENSE +18 -0
- package/node_modules/http-signature/README.md +79 -0
- package/node_modules/http-signature/http_signing.md +363 -0
- package/node_modules/http-signature/lib/index.js +29 -0
- package/node_modules/http-signature/lib/parser.js +315 -0
- package/node_modules/http-signature/lib/signer.js +401 -0
- package/node_modules/http-signature/lib/utils.js +112 -0
- package/node_modules/http-signature/lib/verify.js +88 -0
- package/node_modules/http-signature/package.json +39 -0
- package/node_modules/iconv-lite/Changelog.md +162 -0
- package/node_modules/iconv-lite/LICENSE +21 -0
- package/node_modules/iconv-lite/README.md +156 -0
- package/node_modules/iconv-lite/encodings/dbcs-codec.js +555 -0
- package/node_modules/iconv-lite/encodings/dbcs-data.js +176 -0
- package/node_modules/iconv-lite/encodings/index.js +22 -0
- package/node_modules/iconv-lite/encodings/internal.js +188 -0
- package/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
- package/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
- package/node_modules/iconv-lite/encodings/sbcs-data.js +174 -0
- package/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
- package/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
- package/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
- package/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
- package/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
- package/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
- package/node_modules/iconv-lite/encodings/tables/gbk-added.json +55 -0
- package/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
- package/node_modules/iconv-lite/encodings/utf16.js +177 -0
- package/node_modules/iconv-lite/encodings/utf7.js +290 -0
- package/node_modules/iconv-lite/lib/bom-handling.js +52 -0
- package/node_modules/iconv-lite/lib/extend-node.js +217 -0
- package/node_modules/iconv-lite/lib/index.d.ts +24 -0
- package/node_modules/iconv-lite/lib/index.js +153 -0
- package/node_modules/iconv-lite/lib/streams.js +121 -0
- package/node_modules/iconv-lite/package.json +46 -0
- package/node_modules/import-lazy/index.js +53 -0
- package/node_modules/import-lazy/license +21 -0
- package/node_modules/import-lazy/package.json +44 -0
- package/node_modules/import-lazy/readme.md +64 -0
- package/node_modules/imurmurhash/README.md +122 -0
- package/node_modules/imurmurhash/imurmurhash.js +138 -0
- package/node_modules/imurmurhash/imurmurhash.min.js +12 -0
- package/node_modules/imurmurhash/package.json +40 -0
- package/node_modules/inflight/LICENSE +15 -0
- package/node_modules/inflight/README.md +37 -0
- package/node_modules/inflight/inflight.js +54 -0
- package/node_modules/inflight/package.json +29 -0
- package/node_modules/inherits/LICENSE +16 -0
- package/node_modules/inherits/README.md +42 -0
- package/node_modules/inherits/inherits.js +9 -0
- package/node_modules/inherits/inherits_browser.js +27 -0
- package/node_modules/inherits/package.json +29 -0
- package/node_modules/ini/LICENSE +15 -0
- package/node_modules/ini/README.md +102 -0
- package/node_modules/ini/ini.js +206 -0
- package/node_modules/ini/package.json +33 -0
- package/node_modules/interpret/CHANGELOG +115 -0
- package/node_modules/interpret/LICENSE +22 -0
- package/node_modules/interpret/README.md +187 -0
- package/node_modules/interpret/index.js +168 -0
- package/node_modules/interpret/mjs-stub.js +1 -0
- package/node_modules/interpret/package.json +75 -0
- package/node_modules/ipaddr.js/LICENSE +19 -0
- package/node_modules/ipaddr.js/README.md +233 -0
- package/node_modules/ipaddr.js/ipaddr.min.js +1 -0
- package/node_modules/ipaddr.js/lib/ipaddr.js +673 -0
- package/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +68 -0
- package/node_modules/ipaddr.js/package.json +35 -0
- package/node_modules/is-callable/.editorconfig +26 -0
- package/node_modules/is-callable/.eslintignore +1 -0
- package/node_modules/is-callable/.eslintrc +21 -0
- package/node_modules/is-callable/.github/FUNDING.yml +12 -0
- package/node_modules/is-callable/.istanbul.yml +47 -0
- package/node_modules/is-callable/.nycrc +9 -0
- package/node_modules/is-callable/CHANGELOG.md +108 -0
- package/node_modules/is-callable/LICENSE +22 -0
- package/node_modules/is-callable/README.md +67 -0
- package/node_modules/is-callable/index.js +74 -0
- package/node_modules/is-callable/package.json +92 -0
- package/node_modules/is-callable/test/index.js +170 -0
- package/node_modules/is-ci/LICENSE +21 -0
- package/node_modules/is-ci/README.md +50 -0
- package/node_modules/is-ci/bin.js +4 -0
- package/node_modules/is-ci/index.js +3 -0
- package/node_modules/is-ci/package.json +38 -0
- package/node_modules/is-core-module/.eslintrc +18 -0
- package/node_modules/is-core-module/.nycrc +9 -0
- package/node_modules/is-core-module/CHANGELOG.md +136 -0
- package/node_modules/is-core-module/LICENSE +20 -0
- package/node_modules/is-core-module/README.md +40 -0
- package/node_modules/is-core-module/core.json +153 -0
- package/node_modules/is-core-module/index.js +69 -0
- package/node_modules/is-core-module/package.json +65 -0
- package/node_modules/is-core-module/test/index.js +133 -0
- package/node_modules/is-fullwidth-code-point/index.js +46 -0
- package/node_modules/is-fullwidth-code-point/license +21 -0
- package/node_modules/is-fullwidth-code-point/package.json +45 -0
- package/node_modules/is-fullwidth-code-point/readme.md +39 -0
- package/node_modules/is-installed-globally/index.js +5 -0
- package/node_modules/is-installed-globally/license +9 -0
- package/node_modules/is-installed-globally/package.json +48 -0
- package/node_modules/is-installed-globally/readme.md +39 -0
- package/node_modules/is-npm/index.js +4 -0
- package/node_modules/is-npm/package.json +32 -0
- package/node_modules/is-npm/readme.md +30 -0
- package/node_modules/is-obj/index.js +5 -0
- package/node_modules/is-obj/license +21 -0
- package/node_modules/is-obj/package.json +33 -0
- package/node_modules/is-obj/readme.md +34 -0
- package/node_modules/is-path-inside/index.js +14 -0
- package/node_modules/is-path-inside/license +21 -0
- package/node_modules/is-path-inside/package.json +37 -0
- package/node_modules/is-path-inside/readme.md +34 -0
- package/node_modules/is-redirect/index.js +14 -0
- package/node_modules/is-redirect/license +21 -0
- package/node_modules/is-redirect/package.json +35 -0
- package/node_modules/is-redirect/readme.md +28 -0
- package/node_modules/is-retry-allowed/index.js +62 -0
- package/node_modules/is-retry-allowed/license +21 -0
- package/node_modules/is-retry-allowed/package.json +29 -0
- package/node_modules/is-retry-allowed/readme.md +42 -0
- package/node_modules/is-stream/index.js +21 -0
- package/node_modules/is-stream/license +21 -0
- package/node_modules/is-stream/package.json +38 -0
- package/node_modules/is-stream/readme.md +42 -0
- package/node_modules/is-typedarray/LICENSE.md +18 -0
- package/node_modules/is-typedarray/README.md +16 -0
- package/node_modules/is-typedarray/index.js +41 -0
- package/node_modules/is-typedarray/package.json +30 -0
- package/node_modules/is-typedarray/test.js +34 -0
- package/node_modules/isarray/.npmignore +1 -0
- package/node_modules/isarray/.travis.yml +4 -0
- package/node_modules/isarray/Makefile +6 -0
- package/node_modules/isarray/README.md +60 -0
- package/node_modules/isarray/component.json +19 -0
- package/node_modules/isarray/index.js +5 -0
- package/node_modules/isarray/package.json +45 -0
- package/node_modules/isarray/test.js +20 -0
- package/node_modules/isexe/.npmignore +2 -0
- package/node_modules/isexe/LICENSE +15 -0
- package/node_modules/isexe/README.md +51 -0
- package/node_modules/isexe/index.js +57 -0
- package/node_modules/isexe/mode.js +41 -0
- package/node_modules/isexe/package.json +31 -0
- package/node_modules/isexe/test/basic.js +221 -0
- package/node_modules/isexe/windows.js +42 -0
- package/node_modules/isstream/.jshintrc +59 -0
- package/node_modules/isstream/.npmignore +1 -0
- package/node_modules/isstream/.travis.yml +12 -0
- package/node_modules/isstream/LICENSE.md +11 -0
- package/node_modules/isstream/README.md +66 -0
- package/node_modules/isstream/isstream.js +27 -0
- package/node_modules/isstream/package.json +33 -0
- package/node_modules/isstream/test.js +168 -0
- package/node_modules/jsbn/.npmignore +2 -0
- package/node_modules/jsbn/LICENSE +40 -0
- package/node_modules/jsbn/README.md +175 -0
- package/node_modules/jsbn/example.html +12 -0
- package/node_modules/jsbn/example.js +3 -0
- package/node_modules/jsbn/index.js +1357 -0
- package/node_modules/jsbn/package.json +21 -0
- package/node_modules/json-schema/LICENSE +195 -0
- package/node_modules/json-schema/README.md +3 -0
- package/node_modules/json-schema/lib/links.js +65 -0
- package/node_modules/json-schema/lib/validate.js +271 -0
- package/node_modules/json-schema/package.json +24 -0
- package/node_modules/json-stringify-safe/.npmignore +1 -0
- package/node_modules/json-stringify-safe/CHANGELOG.md +14 -0
- package/node_modules/json-stringify-safe/LICENSE +15 -0
- package/node_modules/json-stringify-safe/Makefile +35 -0
- package/node_modules/json-stringify-safe/README.md +52 -0
- package/node_modules/json-stringify-safe/package.json +31 -0
- package/node_modules/json-stringify-safe/stringify.js +27 -0
- package/node_modules/json-stringify-safe/test/mocha.opts +2 -0
- package/node_modules/json-stringify-safe/test/stringify_test.js +246 -0
- package/node_modules/jsprim/CHANGES.md +53 -0
- package/node_modules/jsprim/CONTRIBUTING.md +19 -0
- package/node_modules/jsprim/LICENSE +19 -0
- package/node_modules/jsprim/README.md +287 -0
- package/node_modules/jsprim/lib/jsprim.js +735 -0
- package/node_modules/jsprim/package.json +20 -0
- package/node_modules/latest-version/index.js +4 -0
- package/node_modules/latest-version/license +21 -0
- package/node_modules/latest-version/package.json +39 -0
- package/node_modules/latest-version/readme.md +40 -0
- package/node_modules/lowercase-keys/index.js +11 -0
- package/node_modules/lowercase-keys/license +21 -0
- package/node_modules/lowercase-keys/package.json +35 -0
- package/node_modules/lowercase-keys/readme.md +33 -0
- package/node_modules/lru-cache/LICENSE +15 -0
- package/node_modules/lru-cache/README.md +158 -0
- package/node_modules/lru-cache/index.js +468 -0
- package/node_modules/lru-cache/package.json +36 -0
- package/node_modules/make-dir/index.js +85 -0
- package/node_modules/make-dir/license +9 -0
- package/node_modules/make-dir/package.json +54 -0
- package/node_modules/make-dir/readme.md +116 -0
- package/node_modules/media-typer/HISTORY.md +22 -0
- package/node_modules/media-typer/LICENSE +22 -0
- package/node_modules/media-typer/README.md +81 -0
- package/node_modules/media-typer/index.js +270 -0
- package/node_modules/media-typer/package.json +26 -0
- package/node_modules/merge-descriptors/HISTORY.md +21 -0
- package/node_modules/merge-descriptors/LICENSE +23 -0
- package/node_modules/merge-descriptors/README.md +48 -0
- package/node_modules/merge-descriptors/index.js +60 -0
- package/node_modules/merge-descriptors/package.json +32 -0
- package/node_modules/methods/HISTORY.md +29 -0
- package/node_modules/methods/LICENSE +24 -0
- package/node_modules/methods/README.md +51 -0
- package/node_modules/methods/index.js +69 -0
- package/node_modules/methods/package.json +36 -0
- package/node_modules/mime/.npmignore +0 -0
- package/node_modules/mime/CHANGELOG.md +164 -0
- package/node_modules/mime/LICENSE +21 -0
- package/node_modules/mime/README.md +90 -0
- package/node_modules/mime/cli.js +8 -0
- package/node_modules/mime/mime.js +108 -0
- package/node_modules/mime/package.json +44 -0
- package/node_modules/mime/src/build.js +53 -0
- package/node_modules/mime/src/test.js +60 -0
- package/node_modules/mime/types.json +1 -0
- package/node_modules/mime-db/HISTORY.md +507 -0
- package/node_modules/mime-db/LICENSE +23 -0
- package/node_modules/mime-db/README.md +100 -0
- package/node_modules/mime-db/db.json +8519 -0
- package/node_modules/mime-db/index.js +12 -0
- package/node_modules/mime-db/package.json +60 -0
- package/node_modules/mime-types/HISTORY.md +397 -0
- package/node_modules/mime-types/LICENSE +23 -0
- package/node_modules/mime-types/README.md +113 -0
- package/node_modules/mime-types/index.js +188 -0
- package/node_modules/mime-types/package.json +44 -0
- package/node_modules/minimatch/LICENSE +15 -0
- package/node_modules/minimatch/README.md +230 -0
- package/node_modules/minimatch/minimatch.js +947 -0
- package/node_modules/minimatch/package.json +33 -0
- package/node_modules/minimist/.travis.yml +8 -0
- package/node_modules/minimist/LICENSE +18 -0
- package/node_modules/minimist/example/parse.js +2 -0
- package/node_modules/minimist/index.js +249 -0
- package/node_modules/minimist/package.json +45 -0
- package/node_modules/minimist/readme.markdown +98 -0
- package/node_modules/minimist/test/all_bool.js +32 -0
- package/node_modules/minimist/test/bool.js +178 -0
- package/node_modules/minimist/test/dash.js +31 -0
- package/node_modules/minimist/test/default_bool.js +35 -0
- package/node_modules/minimist/test/dotted.js +22 -0
- package/node_modules/minimist/test/kv_short.js +16 -0
- package/node_modules/minimist/test/long.js +31 -0
- package/node_modules/minimist/test/num.js +36 -0
- package/node_modules/minimist/test/parse.js +197 -0
- package/node_modules/minimist/test/parse_modified.js +9 -0
- package/node_modules/minimist/test/proto.js +60 -0
- package/node_modules/minimist/test/short.js +67 -0
- package/node_modules/minimist/test/stop_early.js +15 -0
- package/node_modules/minimist/test/unknown.js +102 -0
- package/node_modules/minimist/test/whitespace.js +8 -0
- package/node_modules/mkdirp/LICENSE +21 -0
- package/node_modules/mkdirp/bin/cmd.js +33 -0
- package/node_modules/mkdirp/bin/usage.txt +12 -0
- package/node_modules/mkdirp/index.js +102 -0
- package/node_modules/mkdirp/package.json +33 -0
- package/node_modules/mkdirp/readme.markdown +100 -0
- package/node_modules/ms/index.js +152 -0
- package/node_modules/ms/license.md +21 -0
- package/node_modules/ms/package.json +37 -0
- package/node_modules/ms/readme.md +51 -0
- package/node_modules/negotiator/HISTORY.md +108 -0
- package/node_modules/negotiator/LICENSE +24 -0
- package/node_modules/negotiator/README.md +203 -0
- package/node_modules/negotiator/index.js +82 -0
- package/node_modules/negotiator/lib/charset.js +169 -0
- package/node_modules/negotiator/lib/encoding.js +184 -0
- package/node_modules/negotiator/lib/language.js +179 -0
- package/node_modules/negotiator/lib/mediaType.js +294 -0
- package/node_modules/negotiator/package.json +42 -0
- package/node_modules/nopt/.npmignore +0 -0
- package/node_modules/nopt/LICENSE +23 -0
- package/node_modules/nopt/README.md +208 -0
- package/node_modules/nopt/bin/nopt.js +44 -0
- package/node_modules/nopt/examples/my-program.js +30 -0
- package/node_modules/nopt/lib/nopt.js +552 -0
- package/node_modules/nopt/package.json +12 -0
- package/node_modules/npm/.eslintrc +3 -0
- package/node_modules/npm/.licensee.json +15 -0
- package/node_modules/npm/.mailmap +77 -0
- package/node_modules/npm/.npmignore +28 -0
- package/node_modules/npm/.travis.yml +20 -0
- package/node_modules/npm/AUTHORS +714 -0
- package/node_modules/npm/CHANGELOG.md +3000 -0
- package/node_modules/npm/CONTRIBUTING.md +191 -0
- package/node_modules/npm/LICENSE +235 -0
- package/node_modules/npm/Makefile +139 -0
- package/node_modules/npm/README.md +161 -0
- package/node_modules/npm/bin/node-gyp-bin/node-gyp +6 -0
- package/node_modules/npm/bin/node-gyp-bin/node-gyp.cmd +5 -0
- package/node_modules/npm/bin/npm +37 -0
- package/node_modules/npm/bin/npm-cli.js +155 -0
- package/node_modules/npm/bin/npm.cmd +19 -0
- package/node_modules/npm/bin/npx +35 -0
- package/node_modules/npm/bin/npx-cli.js +8 -0
- package/node_modules/npm/bin/npx.cmd +20 -0
- package/node_modules/npm/changelogs/CHANGELOG-1.md +743 -0
- package/node_modules/npm/changelogs/CHANGELOG-2.md +5344 -0
- package/node_modules/npm/changelogs/CHANGELOG-3.md +5245 -0
- package/node_modules/npm/changelogs/CHANGELOG-4.md +1566 -0
- package/node_modules/npm/changelogs/CHANGELOG-5.md +2360 -0
- package/node_modules/npm/configure +33 -0
- package/node_modules/npm/docs/LICENSE +22 -0
- package/node_modules/npm/docs/content/cli-commands/npm-access.md +93 -0
- package/node_modules/npm/docs/content/cli-commands/npm-adduser.md +95 -0
- package/node_modules/npm/docs/content/cli-commands/npm-audit.md +136 -0
- package/node_modules/npm/docs/content/cli-commands/npm-bin.md +26 -0
- package/node_modules/npm/docs/content/cli-commands/npm-bugs.md +50 -0
- package/node_modules/npm/docs/content/cli-commands/npm-build.md +34 -0
- package/node_modules/npm/docs/content/cli-commands/npm-bundle.md +21 -0
- package/node_modules/npm/docs/content/cli-commands/npm-cache.md +91 -0
- package/node_modules/npm/docs/content/cli-commands/npm-ci.md +67 -0
- package/node_modules/npm/docs/content/cli-commands/npm-completion.md +42 -0
- package/node_modules/npm/docs/content/cli-commands/npm-config.md +85 -0
- package/node_modules/npm/docs/content/cli-commands/npm-dedupe.md +67 -0
- package/node_modules/npm/docs/content/cli-commands/npm-deprecate.md +36 -0
- package/node_modules/npm/docs/content/cli-commands/npm-dist-tag.md +100 -0
- package/node_modules/npm/docs/content/cli-commands/npm-docs.md +52 -0
- package/node_modules/npm/docs/content/cli-commands/npm-doctor.md +111 -0
- package/node_modules/npm/docs/content/cli-commands/npm-edit.md +47 -0
- package/node_modules/npm/docs/content/cli-commands/npm-explore.md +50 -0
- package/node_modules/npm/docs/content/cli-commands/npm-fund.md +68 -0
- package/node_modules/npm/docs/content/cli-commands/npm-help-search.md +43 -0
- package/node_modules/npm/docs/content/cli-commands/npm-help.md +44 -0
- package/node_modules/npm/docs/content/cli-commands/npm-hook.md +80 -0
- package/node_modules/npm/docs/content/cli-commands/npm-init.md +74 -0
- package/node_modules/npm/docs/content/cli-commands/npm-install-ci-test.md +26 -0
- package/node_modules/npm/docs/content/cli-commands/npm-install-test.md +35 -0
- package/node_modules/npm/docs/content/cli-commands/npm-install.md +519 -0
- package/node_modules/npm/docs/content/cli-commands/npm-link.md +92 -0
- package/node_modules/npm/docs/content/cli-commands/npm-logout.md +54 -0
- package/node_modules/npm/docs/content/cli-commands/npm-ls.md +129 -0
- package/node_modules/npm/docs/content/cli-commands/npm-org.md +65 -0
- package/node_modules/npm/docs/content/cli-commands/npm-outdated.md +124 -0
- package/node_modules/npm/docs/content/cli-commands/npm-owner.md +47 -0
- package/node_modules/npm/docs/content/cli-commands/npm-pack.md +38 -0
- package/node_modules/npm/docs/content/cli-commands/npm-ping.md +33 -0
- package/node_modules/npm/docs/content/cli-commands/npm-prefix.md +32 -0
- package/node_modules/npm/docs/content/cli-commands/npm-profile.md +82 -0
- package/node_modules/npm/docs/content/cli-commands/npm-prune.md +46 -0
- package/node_modules/npm/docs/content/cli-commands/npm-publish.md +81 -0
- package/node_modules/npm/docs/content/cli-commands/npm-rebuild.md +26 -0
- package/node_modules/npm/docs/content/cli-commands/npm-repo.md +36 -0
- package/node_modules/npm/docs/content/cli-commands/npm-restart.md +49 -0
- package/node_modules/npm/docs/content/cli-commands/npm-root.md +26 -0
- package/node_modules/npm/docs/content/cli-commands/npm-run-script.md +97 -0
- package/node_modules/npm/docs/content/cli-commands/npm-search.md +114 -0
- package/node_modules/npm/docs/content/cli-commands/npm-shrinkwrap.md +34 -0
- package/node_modules/npm/docs/content/cli-commands/npm-star.md +31 -0
- package/node_modules/npm/docs/content/cli-commands/npm-stars.md +29 -0
- package/node_modules/npm/docs/content/cli-commands/npm-start.md +32 -0
- package/node_modules/npm/docs/content/cli-commands/npm-stop.md +27 -0
- package/node_modules/npm/docs/content/cli-commands/npm-team.md +66 -0
- package/node_modules/npm/docs/content/cli-commands/npm-test.md +29 -0
- package/node_modules/npm/docs/content/cli-commands/npm-token.md +68 -0
- package/node_modules/npm/docs/content/cli-commands/npm-uninstall.md +64 -0
- package/node_modules/npm/docs/content/cli-commands/npm-unpublish.md +50 -0
- package/node_modules/npm/docs/content/cli-commands/npm-update.md +140 -0
- package/node_modules/npm/docs/content/cli-commands/npm-version.md +134 -0
- package/node_modules/npm/docs/content/cli-commands/npm-view.md +124 -0
- package/node_modules/npm/docs/content/cli-commands/npm-whoami.md +24 -0
- package/node_modules/npm/docs/content/cli-commands/npm.md +168 -0
- package/node_modules/npm/docs/content/configuring-npm/folders.md +223 -0
- package/node_modules/npm/docs/content/configuring-npm/install.md +70 -0
- package/node_modules/npm/docs/content/configuring-npm/npmrc.md +103 -0
- package/node_modules/npm/docs/content/configuring-npm/package-json.md +917 -0
- package/node_modules/npm/docs/content/configuring-npm/package-lock-json.md +149 -0
- package/node_modules/npm/docs/content/configuring-npm/package-locks.md +182 -0
- package/node_modules/npm/docs/content/configuring-npm/shrinkwrap-json.md +34 -0
- package/node_modules/npm/docs/content/using-npm/config.md +1300 -0
- package/node_modules/npm/docs/content/using-npm/developers.md +252 -0
- package/node_modules/npm/docs/content/using-npm/disputes.md +137 -0
- package/node_modules/npm/docs/content/using-npm/orgs.md +97 -0
- package/node_modules/npm/docs/content/using-npm/registry.md +107 -0
- package/node_modules/npm/docs/content/using-npm/removal.md +70 -0
- package/node_modules/npm/docs/content/using-npm/scope.md +131 -0
- package/node_modules/npm/docs/content/using-npm/scripts.md +310 -0
- package/node_modules/npm/docs/content/using-npm/semver.md +418 -0
- package/node_modules/npm/docs/gatsby-browser.js +8 -0
- package/node_modules/npm/docs/gatsby-config.js +88 -0
- package/node_modules/npm/docs/gatsby-node.js +43 -0
- package/node_modules/npm/docs/gatsby-ssr.js +6 -0
- package/node_modules/npm/docs/package-lock.json +18301 -0
- package/node_modules/npm/docs/package.json +45 -0
- package/node_modules/npm/docs/public/cli-commands/npm/index.html +213 -0
- package/node_modules/npm/docs/public/cli-commands/npm-access/index.html +151 -0
- package/node_modules/npm/docs/public/cli-commands/npm-adduser/index.html +146 -0
- package/node_modules/npm/docs/public/cli-commands/npm-audit/index.html +168 -0
- package/node_modules/npm/docs/public/cli-commands/npm-bin/index.html +97 -0
- package/node_modules/npm/docs/public/cli-commands/npm-bugs/index.html +117 -0
- package/node_modules/npm/docs/public/cli-commands/npm-build/index.html +103 -0
- package/node_modules/npm/docs/public/cli-commands/npm-bundle/index.html +94 -0
- package/node_modules/npm/docs/public/cli-commands/npm-cache/index.html +148 -0
- package/node_modules/npm/docs/public/cli-commands/npm-ci/index.html +125 -0
- package/node_modules/npm/docs/public/cli-commands/npm-completion/index.html +107 -0
- package/node_modules/npm/docs/public/cli-commands/npm-config/index.html +131 -0
- package/node_modules/npm/docs/public/cli-commands/npm-dedupe/index.html +124 -0
- package/node_modules/npm/docs/public/cli-commands/npm-deprecate/index.html +103 -0
- package/node_modules/npm/docs/public/cli-commands/npm-dist-tag/index.html +152 -0
- package/node_modules/npm/docs/public/cli-commands/npm-docs/index.html +118 -0
- package/node_modules/npm/docs/public/cli-commands/npm-doctor/index.html +166 -0
- package/node_modules/npm/docs/public/cli-commands/npm-edit/index.html +113 -0
- package/node_modules/npm/docs/public/cli-commands/npm-explore/index.html +117 -0
- package/node_modules/npm/docs/public/cli-commands/npm-fund/index.html +131 -0
- package/node_modules/npm/docs/public/cli-commands/npm-help/index.html +110 -0
- package/node_modules/npm/docs/public/cli-commands/npm-help-search/index.html +108 -0
- package/node_modules/npm/docs/public/cli-commands/npm-hook/index.html +122 -0
- package/node_modules/npm/docs/public/cli-commands/npm-init/index.html +129 -0
- package/node_modules/npm/docs/public/cli-commands/npm-install/index.html +471 -0
- package/node_modules/npm/docs/public/cli-commands/npm-install-ci-test/index.html +96 -0
- package/node_modules/npm/docs/public/cli-commands/npm-install-test/index.html +105 -0
- package/node_modules/npm/docs/public/cli-commands/npm-link/index.html +137 -0
- package/node_modules/npm/docs/public/cli-commands/npm-logout/index.html +112 -0
- package/node_modules/npm/docs/public/cli-commands/npm-ls/index.html +179 -0
- package/node_modules/npm/docs/public/cli-commands/npm-org/index.html +110 -0
- package/node_modules/npm/docs/public/cli-commands/npm-outdated/index.html +181 -0
- package/node_modules/npm/docs/public/cli-commands/npm-owner/index.html +117 -0
- package/node_modules/npm/docs/public/cli-commands/npm-pack/index.html +105 -0
- package/node_modules/npm/docs/public/cli-commands/npm-ping/index.html +98 -0
- package/node_modules/npm/docs/public/cli-commands/npm-prefix/index.html +101 -0
- package/node_modules/npm/docs/public/cli-commands/npm-profile/index.html +151 -0
- package/node_modules/npm/docs/public/cli-commands/npm-prune/index.html +111 -0
- package/node_modules/npm/docs/public/cli-commands/npm-publish/index.html +143 -0
- package/node_modules/npm/docs/public/cli-commands/npm-rebuild/index.html +96 -0
- package/node_modules/npm/docs/public/cli-commands/npm-repo/index.html +104 -0
- package/node_modules/npm/docs/public/cli-commands/npm-restart/index.html +116 -0
- package/node_modules/npm/docs/public/cli-commands/npm-root/index.html +97 -0
- package/node_modules/npm/docs/public/cli-commands/npm-run-script/index.html +146 -0
- package/node_modules/npm/docs/public/cli-commands/npm-search/index.html +171 -0
- package/node_modules/npm/docs/public/cli-commands/npm-shrinkwrap/index.html +104 -0
- package/node_modules/npm/docs/public/cli-commands/npm-star/index.html +99 -0
- package/node_modules/npm/docs/public/cli-commands/npm-stars/index.html +99 -0
- package/node_modules/npm/docs/public/cli-commands/npm-start/index.html +101 -0
- package/node_modules/npm/docs/public/cli-commands/npm-stop/index.html +97 -0
- package/node_modules/npm/docs/public/cli-commands/npm-team/index.html +128 -0
- package/node_modules/npm/docs/public/cli-commands/npm-test/index.html +99 -0
- package/node_modules/npm/docs/public/cli-commands/npm-token/index.html +136 -0
- package/node_modules/npm/docs/public/cli-commands/npm-uninstall/index.html +121 -0
- package/node_modules/npm/docs/public/cli-commands/npm-unpublish/index.html +109 -0
- package/node_modules/npm/docs/public/cli-commands/npm-update/index.html +170 -0
- package/node_modules/npm/docs/public/cli-commands/npm-version/index.html +183 -0
- package/node_modules/npm/docs/public/cli-commands/npm-view/index.html +148 -0
- package/node_modules/npm/docs/public/cli-commands/npm-whoami/index.html +95 -0
- package/node_modules/npm/docs/public/configuring-npm/folders/index.html +243 -0
- package/node_modules/npm/docs/public/configuring-npm/install/index.html +126 -0
- package/node_modules/npm/docs/public/configuring-npm/npmrc/index.html +148 -0
- package/node_modules/npm/docs/public/configuring-npm/package-json/index.html +714 -0
- package/node_modules/npm/docs/public/configuring-npm/package-lock-json/index.html +189 -0
- package/node_modules/npm/docs/public/configuring-npm/package-locks/index.html +217 -0
- package/node_modules/npm/docs/public/configuring-npm/shrinkwrap-json/index.html +105 -0
- 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 +131 -0
- package/node_modules/npm/docs/public/static/d/2215187023.json +1 -0
- package/node_modules/npm/docs/public/static/d/2417117884.json +1 -0
- package/node_modules/npm/docs/public/static/network-icon-f659855f70bb0e12addd96250807c241.svg +1 -0
- package/node_modules/npm/docs/public/styles.e93b5499b63484750fba.css +1 -0
- package/node_modules/npm/docs/public/using-npm/config/index.html +1164 -0
- package/node_modules/npm/docs/public/using-npm/developers/index.html +262 -0
- package/node_modules/npm/docs/public/using-npm/disputes/index.html +195 -0
- package/node_modules/npm/docs/public/using-npm/orgs/index.html +147 -0
- package/node_modules/npm/docs/public/using-npm/registry/index.html +159 -0
- package/node_modules/npm/docs/public/using-npm/removal/index.html +119 -0
- package/node_modules/npm/docs/public/using-npm/scope/index.html +162 -0
- package/node_modules/npm/docs/public/using-npm/scripts/index.html +326 -0
- package/node_modules/npm/docs/public/using-npm/semver/index.html +438 -0
- package/node_modules/npm/docs/src/components/Accordion.js +57 -0
- package/node_modules/npm/docs/src/components/Button.js +22 -0
- package/node_modules/npm/docs/src/components/DocLinks.js +72 -0
- package/node_modules/npm/docs/src/components/FoundTypo.js +23 -0
- package/node_modules/npm/docs/src/components/MobileSidebar.js +33 -0
- package/node_modules/npm/docs/src/components/Sidebar.js +30 -0
- package/node_modules/npm/docs/src/components/home/DarkBlock.js +40 -0
- package/node_modules/npm/docs/src/components/home/FeatureCard.js +39 -0
- package/node_modules/npm/docs/src/components/home/Features.js +83 -0
- package/node_modules/npm/docs/src/components/home/Footer.js +29 -0
- package/node_modules/npm/docs/src/components/home/Terminal.js +120 -0
- package/node_modules/npm/docs/src/components/home/Windows.js +73 -0
- package/node_modules/npm/docs/src/components/home/cubes.js +101 -0
- package/node_modules/npm/docs/src/components/home/hero.js +25 -0
- package/node_modules/npm/docs/src/components/layout.js +24 -0
- package/node_modules/npm/docs/src/components/links.js +50 -0
- package/node_modules/npm/docs/src/components/navbar.js +136 -0
- package/node_modules/npm/docs/src/components/scripts.js +27 -0
- package/node_modules/npm/docs/src/components/seo.js +88 -0
- package/node_modules/npm/docs/src/images/background-boxes.svg +2782 -0
- package/node_modules/npm/docs/src/images/background-cubes.svg +2767 -0
- package/node_modules/npm/docs/src/images/background-rectangles.svg +1 -0
- package/node_modules/npm/docs/src/images/bracket.svg +1 -0
- package/node_modules/npm/docs/src/images/cli-logo.svg +1 -0
- package/node_modules/npm/docs/src/images/down-carrot.svg +1 -0
- package/node_modules/npm/docs/src/images/hamburger-close.svg +1 -0
- package/node_modules/npm/docs/src/images/hamburger.svg +1 -0
- package/node_modules/npm/docs/src/images/manager-icon.svg +1 -0
- package/node_modules/npm/docs/src/images/network-icon.svg +1 -0
- package/node_modules/npm/docs/src/images/npm-icon.png +0 -0
- package/node_modules/npm/docs/src/images/orange-cube.svg +1 -0
- package/node_modules/npm/docs/src/images/pink-gradient-cube.svg +1 -0
- package/node_modules/npm/docs/src/images/purple-cube.svg +1 -0
- package/node_modules/npm/docs/src/images/purple-gradient-cube.svg +1 -0
- package/node_modules/npm/docs/src/images/red-cube.svg +1 -0
- package/node_modules/npm/docs/src/images/right-shadow-box.svg +2809 -0
- package/node_modules/npm/docs/src/images/terminal-icon.svg +1 -0
- package/node_modules/npm/docs/src/images/test-icon.svg +1 -0
- package/node_modules/npm/docs/src/images/up-carrot.svg +1 -0
- package/node_modules/npm/docs/src/images/x.svg +1 -0
- package/node_modules/npm/docs/src/main.css +167 -0
- package/node_modules/npm/docs/src/pages/404.js +12 -0
- package/node_modules/npm/docs/src/pages/index.js +16 -0
- package/node_modules/npm/docs/src/templates/Page.js +40 -0
- package/node_modules/npm/docs/src/theme.js +50 -0
- package/node_modules/npm/lib/access.js +198 -0
- package/node_modules/npm/lib/adduser.js +50 -0
- package/node_modules/npm/lib/audit.js +305 -0
- package/node_modules/npm/lib/auth/legacy.js +79 -0
- package/node_modules/npm/lib/auth/oauth.js +7 -0
- package/node_modules/npm/lib/auth/saml.js +7 -0
- package/node_modules/npm/lib/auth/sso.js +73 -0
- package/node_modules/npm/lib/bin.js +23 -0
- package/node_modules/npm/lib/bugs.js +31 -0
- package/node_modules/npm/lib/build.js +140 -0
- package/node_modules/npm/lib/cache.js +137 -0
- package/node_modules/npm/lib/ci.js +51 -0
- package/node_modules/npm/lib/completion.js +248 -0
- package/node_modules/npm/lib/config/bin-links.js +32 -0
- package/node_modules/npm/lib/config/clear-credentials-by-uri.js +16 -0
- package/node_modules/npm/lib/config/cmd-list.js +136 -0
- package/node_modules/npm/lib/config/core.js +429 -0
- package/node_modules/npm/lib/config/defaults.js +442 -0
- package/node_modules/npm/lib/config/figgy-config.js +87 -0
- package/node_modules/npm/lib/config/gentle-fs.js +32 -0
- package/node_modules/npm/lib/config/get-credentials-by-uri.js +78 -0
- package/node_modules/npm/lib/config/lifecycle.js +31 -0
- package/node_modules/npm/lib/config/load-cafile.js +32 -0
- package/node_modules/npm/lib/config/load-prefix.js +51 -0
- package/node_modules/npm/lib/config/nerf-dart.js +23 -0
- package/node_modules/npm/lib/config/set-credentials-by-uri.js +39 -0
- package/node_modules/npm/lib/config/set-user.js +29 -0
- package/node_modules/npm/lib/config.js +286 -0
- package/node_modules/npm/lib/dedupe.js +160 -0
- package/node_modules/npm/lib/deprecate.js +72 -0
- package/node_modules/npm/lib/dist-tag.js +164 -0
- package/node_modules/npm/lib/docs.js +41 -0
- package/node_modules/npm/lib/doctor/check-files-permission.js +57 -0
- package/node_modules/npm/lib/doctor/check-ping.js +16 -0
- package/node_modules/npm/lib/doctor/get-git-path.js +13 -0
- package/node_modules/npm/lib/doctor/get-latest-nodejs-version.js +27 -0
- package/node_modules/npm/lib/doctor/get-latest-npm-version.js +14 -0
- package/node_modules/npm/lib/doctor/verify-cached-files.js +19 -0
- package/node_modules/npm/lib/doctor.js +113 -0
- package/node_modules/npm/lib/edit.js +49 -0
- package/node_modules/npm/lib/explore.js +60 -0
- package/node_modules/npm/lib/fetch-package-metadata.js +122 -0
- package/node_modules/npm/lib/fetch-package-metadata.md +37 -0
- package/node_modules/npm/lib/fund.js +168 -0
- package/node_modules/npm/lib/get.js +12 -0
- package/node_modules/npm/lib/help-search.js +212 -0
- package/node_modules/npm/lib/help.js +244 -0
- package/node_modules/npm/lib/hook.js +165 -0
- package/node_modules/npm/lib/init.js +85 -0
- package/node_modules/npm/lib/install/access-error.js +8 -0
- package/node_modules/npm/lib/install/action/build.js +13 -0
- package/node_modules/npm/lib/install/action/extract-worker.js +18 -0
- package/node_modules/npm/lib/install/action/extract.js +140 -0
- package/node_modules/npm/lib/install/action/fetch.js +16 -0
- package/node_modules/npm/lib/install/action/finalize.js +106 -0
- package/node_modules/npm/lib/install/action/global-install.js +18 -0
- package/node_modules/npm/lib/install/action/global-link.js +9 -0
- package/node_modules/npm/lib/install/action/install.js +8 -0
- package/node_modules/npm/lib/install/action/move.js +96 -0
- package/node_modules/npm/lib/install/action/postinstall.js +8 -0
- package/node_modules/npm/lib/install/action/preinstall.js +8 -0
- package/node_modules/npm/lib/install/action/prepare.js +27 -0
- package/node_modules/npm/lib/install/action/refresh-package-json.js +45 -0
- package/node_modules/npm/lib/install/action/remove.js +85 -0
- package/node_modules/npm/lib/install/action/unbuild.js +16 -0
- package/node_modules/npm/lib/install/actions.js +192 -0
- package/node_modules/npm/lib/install/and-add-parent-to-errors.js +14 -0
- package/node_modules/npm/lib/install/and-finish-tracker.js +16 -0
- package/node_modules/npm/lib/install/and-ignore-errors.js +9 -0
- package/node_modules/npm/lib/install/audit.js +279 -0
- package/node_modules/npm/lib/install/check-permissions.js +69 -0
- package/node_modules/npm/lib/install/copy-tree.js +30 -0
- package/node_modules/npm/lib/install/decompose-actions.js +79 -0
- package/node_modules/npm/lib/install/deps.js +851 -0
- package/node_modules/npm/lib/install/diff-trees.js +260 -0
- package/node_modules/npm/lib/install/exists.js +27 -0
- package/node_modules/npm/lib/install/flatten-tree.js +42 -0
- package/node_modules/npm/lib/install/fund.js +48 -0
- package/node_modules/npm/lib/install/get-requested.js +15 -0
- package/node_modules/npm/lib/install/has-modern-meta.js +20 -0
- package/node_modules/npm/lib/install/inflate-bundled.js +18 -0
- package/node_modules/npm/lib/install/inflate-shrinkwrap.js +263 -0
- package/node_modules/npm/lib/install/is-dev-dep.js +8 -0
- package/node_modules/npm/lib/install/is-extraneous.js +27 -0
- package/node_modules/npm/lib/install/is-fs-access-available.js +22 -0
- package/node_modules/npm/lib/install/is-only-dev.js +37 -0
- package/node_modules/npm/lib/install/is-only-optional.js +22 -0
- package/node_modules/npm/lib/install/is-opt-dep.js +8 -0
- package/node_modules/npm/lib/install/is-prod-dep.js +9 -0
- package/node_modules/npm/lib/install/module-staging-path.js +8 -0
- package/node_modules/npm/lib/install/mutate-into-logical-tree.js +140 -0
- package/node_modules/npm/lib/install/node.js +77 -0
- package/node_modules/npm/lib/install/read-shrinkwrap.js +107 -0
- package/node_modules/npm/lib/install/realize-shrinkwrap-specifier.js +22 -0
- package/node_modules/npm/lib/install/report-optional-failure.js +31 -0
- package/node_modules/npm/lib/install/save.js +193 -0
- package/node_modules/npm/lib/install/update-package-json.js +56 -0
- package/node_modules/npm/lib/install/validate-args.js +84 -0
- package/node_modules/npm/lib/install/validate-tree.js +95 -0
- package/node_modules/npm/lib/install/writable.js +35 -0
- package/node_modules/npm/lib/install-ci-test.js +26 -0
- package/node_modules/npm/lib/install-test.js +26 -0
- package/node_modules/npm/lib/install.js +1074 -0
- package/node_modules/npm/lib/link.js +197 -0
- package/node_modules/npm/lib/logout.js +44 -0
- package/node_modules/npm/lib/ls.js +554 -0
- package/node_modules/npm/lib/npm.js +502 -0
- package/node_modules/npm/lib/org.js +151 -0
- package/node_modules/npm/lib/outdated.js +454 -0
- package/node_modules/npm/lib/owner.js +242 -0
- package/node_modules/npm/lib/pack.js +363 -0
- package/node_modules/npm/lib/ping.js +47 -0
- package/node_modules/npm/lib/prefix.js +15 -0
- package/node_modules/npm/lib/profile.js +334 -0
- package/node_modules/npm/lib/prune.js +68 -0
- package/node_modules/npm/lib/publish.js +167 -0
- package/node_modules/npm/lib/rebuild.js +78 -0
- package/node_modules/npm/lib/repo.js +50 -0
- package/node_modules/npm/lib/restart.js +1 -0
- package/node_modules/npm/lib/root.js +15 -0
- package/node_modules/npm/lib/run-script.js +185 -0
- package/node_modules/npm/lib/search/all-package-metadata.js +325 -0
- package/node_modules/npm/lib/search/all-package-search.js +50 -0
- package/node_modules/npm/lib/search/format-package-stream.js +172 -0
- package/node_modules/npm/lib/search/package-filter.js +41 -0
- package/node_modules/npm/lib/search.js +114 -0
- package/node_modules/npm/lib/set.js +13 -0
- package/node_modules/npm/lib/shrinkwrap.js +296 -0
- package/node_modules/npm/lib/star.js +77 -0
- package/node_modules/npm/lib/stars.js +37 -0
- package/node_modules/npm/lib/start.js +1 -0
- package/node_modules/npm/lib/stop.js +1 -0
- package/node_modules/npm/lib/substack.js +22 -0
- package/node_modules/npm/lib/team.js +171 -0
- package/node_modules/npm/lib/test.js +16 -0
- package/node_modules/npm/lib/token.js +244 -0
- package/node_modules/npm/lib/unbuild.js +137 -0
- package/node_modules/npm/lib/uninstall.js +79 -0
- package/node_modules/npm/lib/unpublish.js +114 -0
- package/node_modules/npm/lib/update.js +72 -0
- package/node_modules/npm/lib/utils/ansi-trim.js +7 -0
- package/node_modules/npm/lib/utils/cache-file.js +70 -0
- package/node_modules/npm/lib/utils/child-path.js +10 -0
- package/node_modules/npm/lib/utils/completion/file-completion.js +24 -0
- package/node_modules/npm/lib/utils/completion/installed-deep.js +52 -0
- package/node_modules/npm/lib/utils/completion/installed-shallow.js +87 -0
- package/node_modules/npm/lib/utils/completion.sh +61 -0
- package/node_modules/npm/lib/utils/correct-mkdir.js +37 -0
- package/node_modules/npm/lib/utils/deep-sort-object.js +14 -0
- package/node_modules/npm/lib/utils/depr-check.js +23 -0
- package/node_modules/npm/lib/utils/did-you-mean.js +17 -0
- package/node_modules/npm/lib/utils/error-handler.js +254 -0
- package/node_modules/npm/lib/utils/error-message.js +426 -0
- package/node_modules/npm/lib/utils/escape-arg.js +27 -0
- package/node_modules/npm/lib/utils/escape-exec-path.js +30 -0
- package/node_modules/npm/lib/utils/funding.js +183 -0
- package/node_modules/npm/lib/utils/gently-rm.js +21 -0
- package/node_modules/npm/lib/utils/git.js +60 -0
- package/node_modules/npm/lib/utils/gunzip-maybe.js +22 -0
- package/node_modules/npm/lib/utils/is-registry.js +11 -0
- package/node_modules/npm/lib/utils/is-windows-bash.js +4 -0
- package/node_modules/npm/lib/utils/is-windows-shell.js +4 -0
- package/node_modules/npm/lib/utils/is-windows.js +2 -0
- package/node_modules/npm/lib/utils/lifecycle-cmd.js +18 -0
- package/node_modules/npm/lib/utils/lifecycle.js +14 -0
- package/node_modules/npm/lib/utils/link.js +8 -0
- package/node_modules/npm/lib/utils/locker.js +73 -0
- package/node_modules/npm/lib/utils/metrics-launch.js +40 -0
- package/node_modules/npm/lib/utils/metrics.js +78 -0
- package/node_modules/npm/lib/utils/module-name.js +32 -0
- package/node_modules/npm/lib/utils/move.js +12 -0
- package/node_modules/npm/lib/utils/no-progress-while-running.js +23 -0
- package/node_modules/npm/lib/utils/open-url.js +35 -0
- package/node_modules/npm/lib/utils/otplease.js +27 -0
- package/node_modules/npm/lib/utils/output.js +8 -0
- package/node_modules/npm/lib/utils/package-id.js +15 -0
- package/node_modules/npm/lib/utils/parse-json.js +25 -0
- package/node_modules/npm/lib/utils/perf.js +26 -0
- package/node_modules/npm/lib/utils/pick-manifest-from-registry-metadata.js +26 -0
- package/node_modules/npm/lib/utils/pulse-till-done.js +38 -0
- package/node_modules/npm/lib/utils/read-local-package.js +12 -0
- package/node_modules/npm/lib/utils/read-user-info.js +73 -0
- package/node_modules/npm/lib/utils/replace-info.js +22 -0
- package/node_modules/npm/lib/utils/save-stack.js +16 -0
- package/node_modules/npm/lib/utils/spawn.js +50 -0
- package/node_modules/npm/lib/utils/temp-filename.js +7 -0
- package/node_modules/npm/lib/utils/umask.js +17 -0
- package/node_modules/npm/lib/utils/unix-format-path.js +5 -0
- package/node_modules/npm/lib/utils/unsupported.js +34 -0
- package/node_modules/npm/lib/utils/usage.js +27 -0
- package/node_modules/npm/lib/utils/warn-deprecated.js +23 -0
- package/node_modules/npm/lib/version.js +355 -0
- package/node_modules/npm/lib/view.js +513 -0
- package/node_modules/npm/lib/visnup.js +43 -0
- package/node_modules/npm/lib/whoami.js +63 -0
- package/node_modules/npm/lib/xmas.js +61 -0
- package/node_modules/npm/make.bat +3 -0
- package/node_modules/npm/man/man1/npm-README.1 +168 -0
- package/node_modules/npm/man/man1/npm-access.1 +100 -0
- package/node_modules/npm/man/man1/npm-adduser.1 +104 -0
- package/node_modules/npm/man/man1/npm-audit.1 +173 -0
- package/node_modules/npm/man/man1/npm-bin.1 +27 -0
- package/node_modules/npm/man/man1/npm-bugs.1 +57 -0
- package/node_modules/npm/man/man1/npm-build.1 +40 -0
- package/node_modules/npm/man/man1/npm-bundle.1 +16 -0
- package/node_modules/npm/man/man1/npm-cache.1 +93 -0
- package/node_modules/npm/man/man1/npm-ci.1 +77 -0
- package/node_modules/npm/man/man1/npm-completion.1 +42 -0
- package/node_modules/npm/man/man1/npm-config.1 +96 -0
- package/node_modules/npm/man/man1/npm-dedupe.1 +70 -0
- package/node_modules/npm/man/man1/npm-deprecate.1 +38 -0
- package/node_modules/npm/man/man1/npm-dist-tag.1 +112 -0
- package/node_modules/npm/man/man1/npm-docs.1 +57 -0
- package/node_modules/npm/man/man1/npm-doctor.1 +113 -0
- package/node_modules/npm/man/man1/npm-edit.1 +49 -0
- package/node_modules/npm/man/man1/npm-explore.1 +60 -0
- package/node_modules/npm/man/man1/npm-fund.1 +77 -0
- package/node_modules/npm/man/man1/npm-help-search.1 +42 -0
- package/node_modules/npm/man/man1/npm-help.1 +47 -0
- package/node_modules/npm/man/man1/npm-hook.1 +96 -0
- package/node_modules/npm/man/man1/npm-init.1 +90 -0
- package/node_modules/npm/man/man1/npm-install-ci-test.1 +23 -0
- package/node_modules/npm/man/man1/npm-install-test.1 +32 -0
- package/node_modules/npm/man/man1/npm-install.1 +565 -0
- package/node_modules/npm/man/man1/npm-link.1 +101 -0
- package/node_modules/npm/man/man1/npm-logout.1 +52 -0
- package/node_modules/npm/man/man1/npm-ls.1 +161 -0
- package/node_modules/npm/man/man1/npm-org.1 +72 -0
- package/node_modules/npm/man/man1/npm-outdated.1 +156 -0
- package/node_modules/npm/man/man1/npm-owner.1 +52 -0
- package/node_modules/npm/man/man1/npm-pack.1 +37 -0
- package/node_modules/npm/man/man1/npm-ping.1 +36 -0
- package/node_modules/npm/man/man1/npm-prefix.1 +32 -0
- package/node_modules/npm/man/man1/npm-profile.1 +91 -0
- package/node_modules/npm/man/man1/npm-prune.1 +45 -0
- package/node_modules/npm/man/man1/npm-publish.1 +88 -0
- package/node_modules/npm/man/man1/npm-rebuild.1 +23 -0
- package/node_modules/npm/man/man1/npm-repo.1 +35 -0
- package/node_modules/npm/man/man1/npm-restart.1 +60 -0
- package/node_modules/npm/man/man1/npm-root.1 +27 -0
- package/node_modules/npm/man/man1/npm-run-script.1 +104 -0
- package/node_modules/npm/man/man1/npm-search.1 +135 -0
- package/node_modules/npm/man/man1/npm-shrinkwrap.1 +37 -0
- package/node_modules/npm/man/man1/npm-star.1 +29 -0
- package/node_modules/npm/man/man1/npm-stars.1 +29 -0
- package/node_modules/npm/man/man1/npm-start.1 +32 -0
- package/node_modules/npm/man/man1/npm-stop.1 +27 -0
- package/node_modules/npm/man/man1/npm-team.1 +66 -0
- package/node_modules/npm/man/man1/npm-test.1 +29 -0
- package/node_modules/npm/man/man1/npm-token.1 +76 -0
- package/node_modules/npm/man/man1/npm-uninstall.1 +72 -0
- package/node_modules/npm/man/man1/npm-unpublish.1 +48 -0
- package/node_modules/npm/man/man1/npm-update.1 +144 -0
- package/node_modules/npm/man/man1/npm-version.1 +161 -0
- package/node_modules/npm/man/man1/npm-view.1 +143 -0
- package/node_modules/npm/man/man1/npm-whoami.1 +23 -0
- package/node_modules/npm/man/man1/npm.1 +184 -0
- package/node_modules/npm/man/man1/npx.1 +175 -0
- package/node_modules/npm/man/man5/folders.5 +224 -0
- package/node_modules/npm/man/man5/install.5 +73 -0
- package/node_modules/npm/man/man5/npmrc.5 +108 -0
- package/node_modules/npm/man/man5/package-json.5 +1013 -0
- package/node_modules/npm/man/man5/package-lock-json.5 +152 -0
- package/node_modules/npm/man/man5/package-locks.5 +200 -0
- package/node_modules/npm/man/man5/shrinkwrap-json.5 +32 -0
- package/node_modules/npm/man/man7/config.7 +1732 -0
- package/node_modules/npm/man/man7/developers.7 +291 -0
- package/node_modules/npm/man/man7/disputes.7 +149 -0
- package/node_modules/npm/man/man7/orgs.7 +146 -0
- package/node_modules/npm/man/man7/registry.7 +104 -0
- package/node_modules/npm/man/man7/removal.7 +75 -0
- package/node_modules/npm/man/man7/scope.7 +136 -0
- package/node_modules/npm/man/man7/scripts.7 +376 -0
- package/node_modules/npm/man/man7/semver.7 +510 -0
- package/node_modules/npm/node_modules/JSONStream/.travis.yml +8 -0
- package/node_modules/npm/node_modules/JSONStream/LICENSE.APACHE2 +15 -0
- package/node_modules/npm/node_modules/JSONStream/LICENSE.MIT +24 -0
- package/node_modules/npm/node_modules/JSONStream/bin.js +12 -0
- package/node_modules/npm/node_modules/JSONStream/examples/all_docs.js +13 -0
- package/node_modules/npm/node_modules/JSONStream/index.js +247 -0
- package/node_modules/npm/node_modules/JSONStream/package.json +40 -0
- package/node_modules/npm/node_modules/JSONStream/readme.markdown +207 -0
- package/node_modules/npm/node_modules/JSONStream/test/bool.js +41 -0
- package/node_modules/npm/node_modules/JSONStream/test/browser.js +18 -0
- package/node_modules/npm/node_modules/JSONStream/test/destroy_missing.js +27 -0
- package/node_modules/npm/node_modules/JSONStream/test/doubledot1.js +29 -0
- package/node_modules/npm/node_modules/JSONStream/test/doubledot2.js +30 -0
- package/node_modules/npm/node_modules/JSONStream/test/empty.js +44 -0
- package/node_modules/npm/node_modules/JSONStream/test/error_contents.js +45 -0
- package/node_modules/npm/node_modules/JSONStream/test/fixtures/all_npm.json +4030 -0
- package/node_modules/npm/node_modules/JSONStream/test/fixtures/couch_sample.json +18 -0
- package/node_modules/npm/node_modules/JSONStream/test/fixtures/depth.json +15 -0
- package/node_modules/npm/node_modules/JSONStream/test/fixtures/error.json +1 -0
- package/node_modules/npm/node_modules/JSONStream/test/fixtures/header_footer.json +19 -0
- package/node_modules/npm/node_modules/JSONStream/test/fn.js +39 -0
- package/node_modules/npm/node_modules/JSONStream/test/gen.js +135 -0
- package/node_modules/npm/node_modules/JSONStream/test/header_footer.js +55 -0
- package/node_modules/npm/node_modules/JSONStream/test/issues.js +34 -0
- package/node_modules/npm/node_modules/JSONStream/test/keys.js +105 -0
- package/node_modules/npm/node_modules/JSONStream/test/map.js +40 -0
- package/node_modules/npm/node_modules/JSONStream/test/multiple_objects.js +36 -0
- package/node_modules/npm/node_modules/JSONStream/test/multiple_objects_error.js +29 -0
- package/node_modules/npm/node_modules/JSONStream/test/null.js +28 -0
- package/node_modules/npm/node_modules/JSONStream/test/parsejson.js +29 -0
- package/node_modules/npm/node_modules/JSONStream/test/run.js +13 -0
- package/node_modules/npm/node_modules/JSONStream/test/stringify.js +41 -0
- package/node_modules/npm/node_modules/JSONStream/test/stringify_object.js +47 -0
- package/node_modules/npm/node_modules/JSONStream/test/test.js +35 -0
- package/node_modules/npm/node_modules/JSONStream/test/test2.js +29 -0
- package/node_modules/npm/node_modules/JSONStream/test/two-ways.js +41 -0
- package/node_modules/npm/node_modules/abbrev/LICENSE +46 -0
- package/node_modules/npm/node_modules/abbrev/README.md +23 -0
- package/node_modules/npm/node_modules/abbrev/abbrev.js +61 -0
- package/node_modules/npm/node_modules/abbrev/package.json +21 -0
- package/node_modules/npm/node_modules/agent-base/.travis.yml +24 -0
- package/node_modules/npm/node_modules/agent-base/History.md +113 -0
- package/node_modules/npm/node_modules/agent-base/README.md +145 -0
- package/node_modules/npm/node_modules/agent-base/index.d.ts +43 -0
- package/node_modules/npm/node_modules/agent-base/index.js +170 -0
- package/node_modules/npm/node_modules/agent-base/package.json +37 -0
- package/node_modules/npm/node_modules/agent-base/patch-core.js +51 -0
- package/node_modules/npm/node_modules/agent-base/test/ssl-cert-snakeoil.key +15 -0
- package/node_modules/npm/node_modules/agent-base/test/ssl-cert-snakeoil.pem +12 -0
- package/node_modules/npm/node_modules/agent-base/test/test.js +728 -0
- package/node_modules/npm/node_modules/agentkeepalive/History.md +170 -0
- package/node_modules/npm/node_modules/agentkeepalive/README.md +248 -0
- package/node_modules/npm/node_modules/agentkeepalive/browser.js +5 -0
- package/node_modules/npm/node_modules/agentkeepalive/index.d.ts +43 -0
- package/node_modules/npm/node_modules/agentkeepalive/index.js +4 -0
- package/node_modules/npm/node_modules/agentkeepalive/lib/_http_agent.js +416 -0
- package/node_modules/npm/node_modules/agentkeepalive/lib/agent.js +133 -0
- package/node_modules/npm/node_modules/agentkeepalive/lib/https_agent.js +42 -0
- package/node_modules/npm/node_modules/agentkeepalive/package.json +53 -0
- package/node_modules/npm/node_modules/ansi-align/CHANGELOG.md +36 -0
- package/node_modules/npm/node_modules/ansi-align/LICENSE +13 -0
- package/node_modules/npm/node_modules/ansi-align/README.md +79 -0
- package/node_modules/npm/node_modules/ansi-align/index.js +61 -0
- package/node_modules/npm/node_modules/ansi-align/package.json +43 -0
- package/node_modules/npm/node_modules/ansi-regex/index.js +4 -0
- package/node_modules/npm/node_modules/ansi-regex/license +21 -0
- package/node_modules/npm/node_modules/ansi-regex/package.json +64 -0
- package/node_modules/npm/node_modules/ansi-regex/readme.md +39 -0
- package/node_modules/npm/node_modules/ansi-styles/index.js +165 -0
- package/node_modules/npm/node_modules/ansi-styles/license +9 -0
- package/node_modules/npm/node_modules/ansi-styles/package.json +56 -0
- package/node_modules/npm/node_modules/ansi-styles/readme.md +147 -0
- package/node_modules/npm/node_modules/ansicolors/LICENSE +23 -0
- package/node_modules/npm/node_modules/ansicolors/README.md +62 -0
- package/node_modules/npm/node_modules/ansicolors/ansicolors.js +65 -0
- package/node_modules/npm/node_modules/ansicolors/package.json +23 -0
- package/node_modules/npm/node_modules/ansicolors/test/ansicolors.js +71 -0
- package/node_modules/npm/node_modules/ansistyles/LICENSE +23 -0
- package/node_modules/npm/node_modules/ansistyles/README.md +71 -0
- package/node_modules/npm/node_modules/ansistyles/ansistyles.js +38 -0
- package/node_modules/npm/node_modules/ansistyles/package.json +23 -0
- package/node_modules/npm/node_modules/ansistyles/test/ansistyles.js +15 -0
- package/node_modules/npm/node_modules/aproba/CHANGELOG.md +4 -0
- package/node_modules/npm/node_modules/aproba/LICENSE +14 -0
- package/node_modules/npm/node_modules/aproba/README.md +94 -0
- package/node_modules/npm/node_modules/aproba/index.js +105 -0
- package/node_modules/npm/node_modules/aproba/package.json +35 -0
- package/node_modules/npm/node_modules/archy/.travis.yml +4 -0
- package/node_modules/npm/node_modules/archy/LICENSE +18 -0
- package/node_modules/npm/node_modules/archy/examples/beep.js +24 -0
- package/node_modules/npm/node_modules/archy/examples/multi_line.js +25 -0
- package/node_modules/npm/node_modules/archy/index.js +35 -0
- package/node_modules/npm/node_modules/archy/package.json +40 -0
- package/node_modules/npm/node_modules/archy/readme.markdown +88 -0
- package/node_modules/npm/node_modules/archy/test/beep.js +40 -0
- package/node_modules/npm/node_modules/archy/test/multi_line.js +45 -0
- package/node_modules/npm/node_modules/archy/test/non_unicode.js +40 -0
- package/node_modules/npm/node_modules/are-we-there-yet/CHANGES.md +31 -0
- package/node_modules/npm/node_modules/are-we-there-yet/CHANGES.md~ +27 -0
- package/node_modules/npm/node_modules/are-we-there-yet/LICENSE +5 -0
- package/node_modules/npm/node_modules/are-we-there-yet/README.md +195 -0
- package/node_modules/npm/node_modules/are-we-there-yet/index.js +4 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/.travis.yml +55 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/LICENSE +47 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/README.md +58 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/duplex-browser.js +1 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/duplex.js +1 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_duplex.js +131 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_passthrough.js +47 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_readable.js +1019 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_transform.js +214 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_writable.js +687 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/BufferList.js +79 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/destroy.js +74 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/package.json +52 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/passthrough.js +1 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/readable-browser.js +7 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/readable.js +19 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/transform.js +1 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/writable-browser.js +1 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/writable.js +8 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/string_decoder/.travis.yml +50 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/string_decoder/LICENSE +48 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/string_decoder/README.md +47 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/string_decoder/lib/string_decoder.js +296 -0
- package/node_modules/npm/node_modules/are-we-there-yet/node_modules/string_decoder/package.json +31 -0
- package/node_modules/npm/node_modules/are-we-there-yet/package.json +35 -0
- package/node_modules/npm/node_modules/are-we-there-yet/tracker-base.js +11 -0
- package/node_modules/npm/node_modules/are-we-there-yet/tracker-group.js +107 -0
- package/node_modules/npm/node_modules/are-we-there-yet/tracker-stream.js +35 -0
- package/node_modules/npm/node_modules/are-we-there-yet/tracker.js +30 -0
- package/node_modules/npm/node_modules/asap/CHANGES.md +70 -0
- package/node_modules/npm/node_modules/asap/LICENSE.md +21 -0
- package/node_modules/npm/node_modules/asap/README.md +237 -0
- package/node_modules/npm/node_modules/asap/asap.js +65 -0
- package/node_modules/npm/node_modules/asap/browser-asap.js +66 -0
- package/node_modules/npm/node_modules/asap/browser-raw.js +223 -0
- package/node_modules/npm/node_modules/asap/package.json +58 -0
- package/node_modules/npm/node_modules/asap/raw.js +101 -0
- package/node_modules/npm/node_modules/asn1/LICENSE +19 -0
- package/node_modules/npm/node_modules/asn1/README.md +50 -0
- package/node_modules/npm/node_modules/asn1/lib/ber/errors.js +13 -0
- package/node_modules/npm/node_modules/asn1/lib/ber/index.js +27 -0
- package/node_modules/npm/node_modules/asn1/lib/ber/reader.js +262 -0
- package/node_modules/npm/node_modules/asn1/lib/ber/types.js +36 -0
- package/node_modules/npm/node_modules/asn1/lib/ber/writer.js +317 -0
- package/node_modules/npm/node_modules/asn1/lib/index.js +20 -0
- package/node_modules/npm/node_modules/asn1/package.json +31 -0
- package/node_modules/npm/node_modules/assert-plus/AUTHORS +6 -0
- package/node_modules/npm/node_modules/assert-plus/CHANGES.md +14 -0
- package/node_modules/npm/node_modules/assert-plus/README.md +162 -0
- package/node_modules/npm/node_modules/assert-plus/assert.js +211 -0
- package/node_modules/npm/node_modules/assert-plus/package.json +23 -0
- package/node_modules/npm/node_modules/asynckit/LICENSE +21 -0
- package/node_modules/npm/node_modules/asynckit/README.md +233 -0
- package/node_modules/npm/node_modules/asynckit/bench.js +76 -0
- package/node_modules/npm/node_modules/asynckit/index.js +6 -0
- package/node_modules/npm/node_modules/asynckit/lib/abort.js +29 -0
- package/node_modules/npm/node_modules/asynckit/lib/async.js +34 -0
- package/node_modules/npm/node_modules/asynckit/lib/defer.js +26 -0
- package/node_modules/npm/node_modules/asynckit/lib/iterate.js +75 -0
- package/node_modules/npm/node_modules/asynckit/lib/readable_asynckit.js +91 -0
- package/node_modules/npm/node_modules/asynckit/lib/readable_parallel.js +25 -0
- package/node_modules/npm/node_modules/asynckit/lib/readable_serial.js +25 -0
- package/node_modules/npm/node_modules/asynckit/lib/readable_serial_ordered.js +29 -0
- package/node_modules/npm/node_modules/asynckit/lib/state.js +37 -0
- package/node_modules/npm/node_modules/asynckit/lib/streamify.js +141 -0
- package/node_modules/npm/node_modules/asynckit/lib/terminator.js +29 -0
- package/node_modules/npm/node_modules/asynckit/package.json +63 -0
- package/node_modules/npm/node_modules/asynckit/parallel.js +43 -0
- package/node_modules/npm/node_modules/asynckit/serial.js +17 -0
- package/node_modules/npm/node_modules/asynckit/serialOrdered.js +75 -0
- package/node_modules/npm/node_modules/asynckit/stream.js +21 -0
- package/node_modules/npm/node_modules/aws-sign2/LICENSE +55 -0
- package/node_modules/npm/node_modules/aws-sign2/README.md +4 -0
- package/node_modules/npm/node_modules/aws-sign2/index.js +212 -0
- package/node_modules/npm/node_modules/aws-sign2/package.json +17 -0
- package/node_modules/npm/node_modules/aws4/.travis.yml +5 -0
- package/node_modules/npm/node_modules/aws4/LICENSE +19 -0
- package/node_modules/npm/node_modules/aws4/README.md +523 -0
- package/node_modules/npm/node_modules/aws4/aws4.js +332 -0
- package/node_modules/npm/node_modules/aws4/lru.js +96 -0
- package/node_modules/npm/node_modules/aws4/package.json +71 -0
- package/node_modules/npm/node_modules/balanced-match/.npmignore +5 -0
- package/node_modules/npm/node_modules/balanced-match/LICENSE.md +21 -0
- package/node_modules/npm/node_modules/balanced-match/README.md +91 -0
- package/node_modules/npm/node_modules/balanced-match/index.js +59 -0
- package/node_modules/npm/node_modules/balanced-match/package.json +49 -0
- package/node_modules/npm/node_modules/bcrypt-pbkdf/CONTRIBUTING.md +13 -0
- package/node_modules/npm/node_modules/bcrypt-pbkdf/LICENSE +66 -0
- package/node_modules/npm/node_modules/bcrypt-pbkdf/README.md +45 -0
- package/node_modules/npm/node_modules/bcrypt-pbkdf/index.js +556 -0
- package/node_modules/npm/node_modules/bcrypt-pbkdf/package.json +15 -0
- package/node_modules/npm/node_modules/bin-links/CHANGELOG.md +92 -0
- package/node_modules/npm/node_modules/bin-links/LICENSE +235 -0
- package/node_modules/npm/node_modules/bin-links/README.md +47 -0
- package/node_modules/npm/node_modules/bin-links/index.js +183 -0
- package/node_modules/npm/node_modules/bin-links/package.json +50 -0
- package/node_modules/npm/node_modules/bluebird/LICENSE +21 -0
- package/node_modules/npm/node_modules/bluebird/README.md +57 -0
- package/node_modules/npm/node_modules/bluebird/changelog.md +1 -0
- package/node_modules/npm/node_modules/bluebird/js/browser/bluebird.core.js +3824 -0
- package/node_modules/npm/node_modules/bluebird/js/browser/bluebird.core.min.js +31 -0
- package/node_modules/npm/node_modules/bluebird/js/browser/bluebird.js +5666 -0
- package/node_modules/npm/node_modules/bluebird/js/browser/bluebird.min.js +31 -0
- package/node_modules/npm/node_modules/bluebird/js/release/any.js +21 -0
- package/node_modules/npm/node_modules/bluebird/js/release/assert.js +55 -0
- package/node_modules/npm/node_modules/bluebird/js/release/async.js +165 -0
- package/node_modules/npm/node_modules/bluebird/js/release/bind.js +67 -0
- package/node_modules/npm/node_modules/bluebird/js/release/bluebird.js +11 -0
- package/node_modules/npm/node_modules/bluebird/js/release/call_get.js +123 -0
- package/node_modules/npm/node_modules/bluebird/js/release/cancel.js +129 -0
- package/node_modules/npm/node_modules/bluebird/js/release/catch_filter.js +42 -0
- package/node_modules/npm/node_modules/bluebird/js/release/context.js +69 -0
- package/node_modules/npm/node_modules/bluebird/js/release/debuggability.js +934 -0
- package/node_modules/npm/node_modules/bluebird/js/release/direct_resolve.js +46 -0
- package/node_modules/npm/node_modules/bluebird/js/release/each.js +30 -0
- package/node_modules/npm/node_modules/bluebird/js/release/errors.js +116 -0
- package/node_modules/npm/node_modules/bluebird/js/release/es5.js +80 -0
- package/node_modules/npm/node_modules/bluebird/js/release/filter.js +12 -0
- package/node_modules/npm/node_modules/bluebird/js/release/finally.js +146 -0
- package/node_modules/npm/node_modules/bluebird/js/release/generators.js +223 -0
- package/node_modules/npm/node_modules/bluebird/js/release/join.js +168 -0
- package/node_modules/npm/node_modules/bluebird/js/release/map.js +168 -0
- package/node_modules/npm/node_modules/bluebird/js/release/method.js +55 -0
- package/node_modules/npm/node_modules/bluebird/js/release/nodeback.js +51 -0
- package/node_modules/npm/node_modules/bluebird/js/release/nodeify.js +58 -0
- package/node_modules/npm/node_modules/bluebird/js/release/promise.js +789 -0
- package/node_modules/npm/node_modules/bluebird/js/release/promise_array.js +185 -0
- package/node_modules/npm/node_modules/bluebird/js/release/promisify.js +314 -0
- package/node_modules/npm/node_modules/bluebird/js/release/props.js +118 -0
- package/node_modules/npm/node_modules/bluebird/js/release/queue.js +73 -0
- package/node_modules/npm/node_modules/bluebird/js/release/race.js +49 -0
- package/node_modules/npm/node_modules/bluebird/js/release/reduce.js +172 -0
- package/node_modules/npm/node_modules/bluebird/js/release/schedule.js +62 -0
- package/node_modules/npm/node_modules/bluebird/js/release/settle.js +43 -0
- package/node_modules/npm/node_modules/bluebird/js/release/some.js +148 -0
- package/node_modules/npm/node_modules/bluebird/js/release/synchronous_inspection.js +103 -0
- package/node_modules/npm/node_modules/bluebird/js/release/thenables.js +86 -0
- package/node_modules/npm/node_modules/bluebird/js/release/timers.js +93 -0
- package/node_modules/npm/node_modules/bluebird/js/release/using.js +226 -0
- package/node_modules/npm/node_modules/bluebird/js/release/util.js +389 -0
- package/node_modules/npm/node_modules/bluebird/package.json +78 -0
- package/node_modules/npm/node_modules/boxen/index.js +138 -0
- package/node_modules/npm/node_modules/boxen/license +9 -0
- package/node_modules/npm/node_modules/boxen/package.json +47 -0
- package/node_modules/npm/node_modules/boxen/readme.md +175 -0
- package/node_modules/npm/node_modules/brace-expansion/LICENSE +21 -0
- package/node_modules/npm/node_modules/brace-expansion/README.md +129 -0
- package/node_modules/npm/node_modules/brace-expansion/index.js +201 -0
- package/node_modules/npm/node_modules/brace-expansion/package.json +47 -0
- package/node_modules/npm/node_modules/buffer-from/index.js +69 -0
- package/node_modules/npm/node_modules/buffer-from/package.json +16 -0
- package/node_modules/npm/node_modules/buffer-from/readme.md +69 -0
- package/node_modules/npm/node_modules/buffer-from/test.js +12 -0
- package/node_modules/npm/node_modules/builtins/.travis.yml +4 -0
- package/node_modules/npm/node_modules/builtins/History.md +39 -0
- package/node_modules/npm/node_modules/builtins/License +20 -0
- package/node_modules/npm/node_modules/builtins/Readme.md +18 -0
- package/node_modules/npm/node_modules/builtins/builtins.json +35 -0
- package/node_modules/npm/node_modules/builtins/package.json +14 -0
- package/node_modules/npm/node_modules/builtins/test.js +5 -0
- package/node_modules/npm/node_modules/byline/LICENSE +19 -0
- package/node_modules/npm/node_modules/byline/README.md +147 -0
- package/node_modules/npm/node_modules/byline/lib/byline.js +155 -0
- package/node_modules/npm/node_modules/byline/package.json +29 -0
- package/node_modules/npm/node_modules/byte-size/LICENSE +21 -0
- package/node_modules/npm/node_modules/byte-size/README.hbs +40 -0
- package/node_modules/npm/node_modules/byte-size/README.md +133 -0
- package/node_modules/npm/node_modules/byte-size/dist/index.js +152 -0
- package/node_modules/npm/node_modules/byte-size/index.mjs +144 -0
- package/node_modules/npm/node_modules/byte-size/package.json +47 -0
- package/node_modules/npm/node_modules/cacache/CHANGELOG.md +657 -0
- package/node_modules/npm/node_modules/cacache/LICENSE.md +16 -0
- package/node_modules/npm/node_modules/cacache/README.es.md +628 -0
- package/node_modules/npm/node_modules/cacache/README.md +641 -0
- package/node_modules/npm/node_modules/cacache/en.js +3 -0
- package/node_modules/npm/node_modules/cacache/es.js +3 -0
- package/node_modules/npm/node_modules/cacache/get.js +247 -0
- package/node_modules/npm/node_modules/cacache/index.js +3 -0
- package/node_modules/npm/node_modules/cacache/lib/content/path.js +26 -0
- package/node_modules/npm/node_modules/cacache/lib/content/read.js +195 -0
- package/node_modules/npm/node_modules/cacache/lib/content/rm.js +21 -0
- package/node_modules/npm/node_modules/cacache/lib/content/write.js +164 -0
- package/node_modules/npm/node_modules/cacache/lib/entry-index.js +288 -0
- package/node_modules/npm/node_modules/cacache/lib/memoization.js +69 -0
- package/node_modules/npm/node_modules/cacache/lib/util/fix-owner.js +128 -0
- package/node_modules/npm/node_modules/cacache/lib/util/hash-to-segments.js +11 -0
- package/node_modules/npm/node_modules/cacache/lib/util/move-file.js +51 -0
- package/node_modules/npm/node_modules/cacache/lib/util/tmp.js +37 -0
- package/node_modules/npm/node_modules/cacache/lib/util/y.js +25 -0
- package/node_modules/npm/node_modules/cacache/lib/verify.js +227 -0
- package/node_modules/npm/node_modules/cacache/locales/en.js +47 -0
- package/node_modules/npm/node_modules/cacache/locales/en.json +7 -0
- package/node_modules/npm/node_modules/cacache/locales/es.js +49 -0
- package/node_modules/npm/node_modules/cacache/locales/es.json +6 -0
- package/node_modules/npm/node_modules/cacache/ls.js +6 -0
- package/node_modules/npm/node_modules/cacache/package.json +97 -0
- package/node_modules/npm/node_modules/cacache/put.js +86 -0
- package/node_modules/npm/node_modules/cacache/rm.js +28 -0
- package/node_modules/npm/node_modules/cacache/verify.js +3 -0
- package/node_modules/npm/node_modules/call-limit/CHANGELOG.md +16 -0
- package/node_modules/npm/node_modules/call-limit/LICENSE +13 -0
- package/node_modules/npm/node_modules/call-limit/README.md +85 -0
- package/node_modules/npm/node_modules/call-limit/call-limit.js +99 -0
- package/node_modules/npm/node_modules/call-limit/package.json +36 -0
- package/node_modules/npm/node_modules/camelcase/index.js +64 -0
- package/node_modules/npm/node_modules/camelcase/license +21 -0
- package/node_modules/npm/node_modules/camelcase/package.json +42 -0
- package/node_modules/npm/node_modules/camelcase/readme.md +57 -0
- package/node_modules/npm/node_modules/capture-stack-trace/index.js +18 -0
- package/node_modules/npm/node_modules/capture-stack-trace/package.json +29 -0
- package/node_modules/npm/node_modules/capture-stack-trace/readme.md +36 -0
- package/node_modules/npm/node_modules/caseless/LICENSE +28 -0
- package/node_modules/npm/node_modules/caseless/README.md +45 -0
- package/node_modules/npm/node_modules/caseless/index.js +67 -0
- package/node_modules/npm/node_modules/caseless/package.json +27 -0
- package/node_modules/npm/node_modules/caseless/test.js +67 -0
- package/node_modules/npm/node_modules/chalk/index.js +228 -0
- package/node_modules/npm/node_modules/chalk/index.js.flow +93 -0
- package/node_modules/npm/node_modules/chalk/license +9 -0
- package/node_modules/npm/node_modules/chalk/package.json +71 -0
- package/node_modules/npm/node_modules/chalk/readme.md +314 -0
- package/node_modules/npm/node_modules/chalk/templates.js +128 -0
- package/node_modules/npm/node_modules/chalk/types/index.d.ts +97 -0
- package/node_modules/npm/node_modules/chownr/LICENSE +15 -0
- package/node_modules/npm/node_modules/chownr/README.md +3 -0
- package/node_modules/npm/node_modules/chownr/chownr.js +167 -0
- package/node_modules/npm/node_modules/chownr/package.json +29 -0
- package/node_modules/npm/node_modules/ci-info/CHANGELOG.md +78 -0
- package/node_modules/npm/node_modules/ci-info/LICENSE +21 -0
- package/node_modules/npm/node_modules/ci-info/README.md +108 -0
- package/node_modules/npm/node_modules/ci-info/index.js +66 -0
- package/node_modules/npm/node_modules/ci-info/package.json +36 -0
- package/node_modules/npm/node_modules/ci-info/vendors.json +153 -0
- package/node_modules/npm/node_modules/cidr-regex/LICENSE +22 -0
- package/node_modules/npm/node_modules/cidr-regex/README.md +64 -0
- package/node_modules/npm/node_modules/cidr-regex/index.js +13 -0
- package/node_modules/npm/node_modules/cidr-regex/package.json +39 -0
- package/node_modules/npm/node_modules/cli-boxes/boxes.json +50 -0
- package/node_modules/npm/node_modules/cli-boxes/index.js +2 -0
- package/node_modules/npm/node_modules/cli-boxes/license +21 -0
- package/node_modules/npm/node_modules/cli-boxes/package.json +39 -0
- package/node_modules/npm/node_modules/cli-boxes/readme.md +94 -0
- package/node_modules/npm/node_modules/cli-columns/LICENSE +20 -0
- package/node_modules/npm/node_modules/cli-columns/README.md +69 -0
- package/node_modules/npm/node_modules/cli-columns/color.js +15 -0
- package/node_modules/npm/node_modules/cli-columns/index.js +83 -0
- package/node_modules/npm/node_modules/cli-columns/package.json +46 -0
- package/node_modules/npm/node_modules/cli-columns/test.js +78 -0
- package/node_modules/npm/node_modules/cli-table3/CHANGELOG.md +56 -0
- package/node_modules/npm/node_modules/cli-table3/LICENSE +21 -0
- package/node_modules/npm/node_modules/cli-table3/README.md +218 -0
- package/node_modules/npm/node_modules/cli-table3/index.d.ts +95 -0
- package/node_modules/npm/node_modules/cli-table3/index.js +1 -0
- package/node_modules/npm/node_modules/cli-table3/package.json +101 -0
- package/node_modules/npm/node_modules/cli-table3/src/cell.js +371 -0
- package/node_modules/npm/node_modules/cli-table3/src/layout-manager.js +232 -0
- package/node_modules/npm/node_modules/cli-table3/src/table.js +77 -0
- package/node_modules/npm/node_modules/cli-table3/src/utils.js +303 -0
- package/node_modules/npm/node_modules/cliui/CHANGELOG.md +65 -0
- package/node_modules/npm/node_modules/cliui/LICENSE.txt +14 -0
- package/node_modules/npm/node_modules/cliui/README.md +115 -0
- package/node_modules/npm/node_modules/cliui/index.js +324 -0
- package/node_modules/npm/node_modules/cliui/node_modules/ansi-regex/index.js +14 -0
- package/node_modules/npm/node_modules/cliui/node_modules/ansi-regex/license +9 -0
- package/node_modules/npm/node_modules/cliui/node_modules/ansi-regex/package.json +53 -0
- package/node_modules/npm/node_modules/cliui/node_modules/ansi-regex/readme.md +87 -0
- package/node_modules/npm/node_modules/cliui/node_modules/is-fullwidth-code-point/index.js +46 -0
- package/node_modules/npm/node_modules/cliui/node_modules/is-fullwidth-code-point/license +21 -0
- package/node_modules/npm/node_modules/cliui/node_modules/is-fullwidth-code-point/package.json +45 -0
- package/node_modules/npm/node_modules/cliui/node_modules/is-fullwidth-code-point/readme.md +39 -0
- package/node_modules/npm/node_modules/cliui/node_modules/string-width/index.js +39 -0
- package/node_modules/npm/node_modules/cliui/node_modules/string-width/license +9 -0
- package/node_modules/npm/node_modules/cliui/node_modules/string-width/package.json +56 -0
- package/node_modules/npm/node_modules/cliui/node_modules/string-width/readme.md +45 -0
- package/node_modules/npm/node_modules/cliui/node_modules/strip-ansi/index.d.ts +15 -0
- package/node_modules/npm/node_modules/cliui/node_modules/strip-ansi/index.js +7 -0
- package/node_modules/npm/node_modules/cliui/node_modules/strip-ansi/license +9 -0
- package/node_modules/npm/node_modules/cliui/node_modules/strip-ansi/package.json +54 -0
- package/node_modules/npm/node_modules/cliui/node_modules/strip-ansi/readme.md +61 -0
- package/node_modules/npm/node_modules/cliui/package.json +67 -0
- package/node_modules/npm/node_modules/clone/.npmignore +4 -0
- package/node_modules/npm/node_modules/clone/LICENSE +18 -0
- package/node_modules/npm/node_modules/clone/README.md +126 -0
- package/node_modules/npm/node_modules/clone/clone.iml +10 -0
- package/node_modules/npm/node_modules/clone/clone.js +166 -0
- package/node_modules/npm/node_modules/clone/package.json +51 -0
- package/node_modules/npm/node_modules/cmd-shim/LICENSE +15 -0
- package/node_modules/npm/node_modules/cmd-shim/README.md +44 -0
- package/node_modules/npm/node_modules/cmd-shim/index.js +265 -0
- package/node_modules/npm/node_modules/cmd-shim/lib/to-batch-syntax.js +51 -0
- package/node_modules/npm/node_modules/cmd-shim/package.json +29 -0
- package/node_modules/npm/node_modules/code-point-at/index.js +32 -0
- package/node_modules/npm/node_modules/code-point-at/license +21 -0
- package/node_modules/npm/node_modules/code-point-at/package.json +38 -0
- package/node_modules/npm/node_modules/code-point-at/readme.md +32 -0
- package/node_modules/npm/node_modules/color-convert/CHANGELOG.md +54 -0
- package/node_modules/npm/node_modules/color-convert/LICENSE +21 -0
- package/node_modules/npm/node_modules/color-convert/README.md +68 -0
- package/node_modules/npm/node_modules/color-convert/conversions.js +861 -0
- package/node_modules/npm/node_modules/color-convert/index.js +78 -0
- package/node_modules/npm/node_modules/color-convert/package.json +46 -0
- package/node_modules/npm/node_modules/color-convert/route.js +97 -0
- package/node_modules/npm/node_modules/color-name/.eslintrc.json +43 -0
- package/node_modules/npm/node_modules/color-name/.npmignore +107 -0
- package/node_modules/npm/node_modules/color-name/LICENSE +8 -0
- package/node_modules/npm/node_modules/color-name/README.md +11 -0
- package/node_modules/npm/node_modules/color-name/index.js +152 -0
- package/node_modules/npm/node_modules/color-name/package.json +25 -0
- package/node_modules/npm/node_modules/color-name/test.js +7 -0
- package/node_modules/npm/node_modules/colors/LICENSE +25 -0
- package/node_modules/npm/node_modules/colors/README.md +184 -0
- package/node_modules/npm/node_modules/colors/examples/normal-usage.js +81 -0
- package/node_modules/npm/node_modules/colors/examples/safe-string.js +77 -0
- package/node_modules/npm/node_modules/colors/index.d.ts +136 -0
- package/node_modules/npm/node_modules/colors/lib/colors.js +201 -0
- package/node_modules/npm/node_modules/colors/lib/custom/trap.js +46 -0
- package/node_modules/npm/node_modules/colors/lib/custom/zalgo.js +110 -0
- package/node_modules/npm/node_modules/colors/lib/extendStringPrototype.js +110 -0
- package/node_modules/npm/node_modules/colors/lib/index.js +13 -0
- package/node_modules/npm/node_modules/colors/lib/maps/america.js +10 -0
- package/node_modules/npm/node_modules/colors/lib/maps/rainbow.js +12 -0
- package/node_modules/npm/node_modules/colors/lib/maps/random.js +10 -0
- package/node_modules/npm/node_modules/colors/lib/maps/zebra.js +5 -0
- package/node_modules/npm/node_modules/colors/lib/styles.js +77 -0
- package/node_modules/npm/node_modules/colors/lib/system/has-flag.js +35 -0
- package/node_modules/npm/node_modules/colors/lib/system/supports-colors.js +151 -0
- package/node_modules/npm/node_modules/colors/package.json +45 -0
- package/node_modules/npm/node_modules/colors/safe.d.ts +48 -0
- package/node_modules/npm/node_modules/colors/safe.js +10 -0
- package/node_modules/npm/node_modules/colors/themes/generic-logging.js +12 -0
- package/node_modules/npm/node_modules/columnify/LICENSE +21 -0
- package/node_modules/npm/node_modules/columnify/Makefile +9 -0
- package/node_modules/npm/node_modules/columnify/Readme.md +470 -0
- package/node_modules/npm/node_modules/columnify/columnify.js +308 -0
- package/node_modules/npm/node_modules/columnify/index.js +297 -0
- package/node_modules/npm/node_modules/columnify/package.json +51 -0
- package/node_modules/npm/node_modules/columnify/utils.js +193 -0
- package/node_modules/npm/node_modules/columnify/width.js +6 -0
- package/node_modules/npm/node_modules/combined-stream/License +19 -0
- package/node_modules/npm/node_modules/combined-stream/Readme.md +138 -0
- package/node_modules/npm/node_modules/combined-stream/lib/combined_stream.js +189 -0
- package/node_modules/npm/node_modules/combined-stream/lib/defer.js +26 -0
- package/node_modules/npm/node_modules/combined-stream/package.json +25 -0
- package/node_modules/npm/node_modules/concat-map/.travis.yml +4 -0
- package/node_modules/npm/node_modules/concat-map/LICENSE +18 -0
- package/node_modules/npm/node_modules/concat-map/README.markdown +62 -0
- package/node_modules/npm/node_modules/concat-map/example/map.js +6 -0
- package/node_modules/npm/node_modules/concat-map/index.js +13 -0
- package/node_modules/npm/node_modules/concat-map/package.json +43 -0
- package/node_modules/npm/node_modules/concat-map/test/map.js +39 -0
- package/node_modules/npm/node_modules/concat-stream/LICENSE +24 -0
- package/node_modules/npm/node_modules/concat-stream/index.js +144 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/.travis.yml +55 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/LICENSE +47 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/README.md +58 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/duplex-browser.js +1 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/duplex.js +1 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_duplex.js +131 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_passthrough.js +47 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_readable.js +1019 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_transform.js +214 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_writable.js +687 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/lib/internal/streams/BufferList.js +79 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/lib/internal/streams/destroy.js +74 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/package.json +52 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/passthrough.js +1 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/readable-browser.js +7 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/readable.js +19 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/transform.js +1 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/writable-browser.js +1 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/writable.js +8 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/string_decoder/.travis.yml +50 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/string_decoder/LICENSE +48 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/string_decoder/README.md +47 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/string_decoder/lib/string_decoder.js +296 -0
- package/node_modules/npm/node_modules/concat-stream/node_modules/string_decoder/package.json +31 -0
- package/node_modules/npm/node_modules/concat-stream/package.json +55 -0
- package/node_modules/npm/node_modules/concat-stream/readme.md +102 -0
- package/node_modules/npm/node_modules/config-chain/LICENCE +22 -0
- package/node_modules/npm/node_modules/config-chain/index.js +282 -0
- package/node_modules/npm/node_modules/config-chain/package.json +30 -0
- package/node_modules/npm/node_modules/config-chain/readme.markdown +257 -0
- package/node_modules/npm/node_modules/configstore/index.js +106 -0
- package/node_modules/npm/node_modules/configstore/license +9 -0
- package/node_modules/npm/node_modules/configstore/package.json +47 -0
- package/node_modules/npm/node_modules/configstore/readme.md +116 -0
- package/node_modules/npm/node_modules/console-control-strings/LICENSE +13 -0
- package/node_modules/npm/node_modules/console-control-strings/README.md +145 -0
- package/node_modules/npm/node_modules/console-control-strings/README.md~ +140 -0
- package/node_modules/npm/node_modules/console-control-strings/index.js +125 -0
- package/node_modules/npm/node_modules/console-control-strings/package.json +27 -0
- package/node_modules/npm/node_modules/copy-concurrently/LICENSE +14 -0
- package/node_modules/npm/node_modules/copy-concurrently/README.md +128 -0
- package/node_modules/npm/node_modules/copy-concurrently/README.md~ +127 -0
- package/node_modules/npm/node_modules/copy-concurrently/copy.js +225 -0
- package/node_modules/npm/node_modules/copy-concurrently/is-windows.js +2 -0
- package/node_modules/npm/node_modules/copy-concurrently/node_modules/aproba/LICENSE +14 -0
- package/node_modules/npm/node_modules/copy-concurrently/node_modules/aproba/README.md +94 -0
- package/node_modules/npm/node_modules/copy-concurrently/node_modules/aproba/index.js +105 -0
- package/node_modules/npm/node_modules/copy-concurrently/node_modules/aproba/package.json +34 -0
- package/node_modules/npm/node_modules/copy-concurrently/node_modules/iferr/.npmignore +1 -0
- package/node_modules/npm/node_modules/copy-concurrently/node_modules/iferr/LICENSE +21 -0
- package/node_modules/npm/node_modules/copy-concurrently/node_modules/iferr/README.md +40 -0
- package/node_modules/npm/node_modules/copy-concurrently/node_modules/iferr/index.coffee +24 -0
- package/node_modules/npm/node_modules/copy-concurrently/node_modules/iferr/index.js +49 -0
- package/node_modules/npm/node_modules/copy-concurrently/node_modules/iferr/package.json +28 -0
- package/node_modules/npm/node_modules/copy-concurrently/node_modules/iferr/test/index.coffee +42 -0
- package/node_modules/npm/node_modules/copy-concurrently/node_modules/iferr/test/mocha.opts +2 -0
- package/node_modules/npm/node_modules/copy-concurrently/package.json +43 -0
- package/node_modules/npm/node_modules/core-util-is/LICENSE +19 -0
- package/node_modules/npm/node_modules/core-util-is/README.md +3 -0
- package/node_modules/npm/node_modules/core-util-is/float.patch +604 -0
- package/node_modules/npm/node_modules/core-util-is/lib/util.js +107 -0
- package/node_modules/npm/node_modules/core-util-is/package.json +32 -0
- package/node_modules/npm/node_modules/core-util-is/test.js +68 -0
- package/node_modules/npm/node_modules/create-error-class/index.js +44 -0
- package/node_modules/npm/node_modules/create-error-class/license +21 -0
- package/node_modules/npm/node_modules/create-error-class/package.json +30 -0
- package/node_modules/npm/node_modules/create-error-class/readme.md +54 -0
- package/node_modules/npm/node_modules/cross-spawn/CHANGELOG.md +6 -0
- package/node_modules/npm/node_modules/cross-spawn/LICENSE +19 -0
- package/node_modules/npm/node_modules/cross-spawn/README.md +85 -0
- package/node_modules/npm/node_modules/cross-spawn/index.js +59 -0
- package/node_modules/npm/node_modules/cross-spawn/lib/enoent.js +73 -0
- package/node_modules/npm/node_modules/cross-spawn/lib/parse.js +113 -0
- package/node_modules/npm/node_modules/cross-spawn/lib/util/escapeArgument.js +30 -0
- package/node_modules/npm/node_modules/cross-spawn/lib/util/escapeCommand.js +12 -0
- package/node_modules/npm/node_modules/cross-spawn/lib/util/hasEmptyArgumentBug.js +18 -0
- package/node_modules/npm/node_modules/cross-spawn/lib/util/readShebang.js +37 -0
- package/node_modules/npm/node_modules/cross-spawn/lib/util/resolveCommand.js +31 -0
- package/node_modules/npm/node_modules/cross-spawn/node_modules/lru-cache/LICENSE +15 -0
- package/node_modules/npm/node_modules/cross-spawn/node_modules/lru-cache/README.md +158 -0
- package/node_modules/npm/node_modules/cross-spawn/node_modules/lru-cache/index.js +468 -0
- package/node_modules/npm/node_modules/cross-spawn/node_modules/lru-cache/package.json +36 -0
- package/node_modules/npm/node_modules/cross-spawn/node_modules/yallist/LICENSE +15 -0
- package/node_modules/npm/node_modules/cross-spawn/node_modules/yallist/README.md +204 -0
- package/node_modules/npm/node_modules/cross-spawn/node_modules/yallist/iterator.js +7 -0
- package/node_modules/npm/node_modules/cross-spawn/node_modules/yallist/package.json +29 -0
- package/node_modules/npm/node_modules/cross-spawn/node_modules/yallist/yallist.js +370 -0
- package/node_modules/npm/node_modules/cross-spawn/package.json +53 -0
- package/node_modules/npm/node_modules/crypto-random-string/index.js +10 -0
- package/node_modules/npm/node_modules/crypto-random-string/license +21 -0
- package/node_modules/npm/node_modules/crypto-random-string/package.json +43 -0
- package/node_modules/npm/node_modules/crypto-random-string/readme.md +49 -0
- package/node_modules/npm/node_modules/cyclist/.npmignore +1 -0
- package/node_modules/npm/node_modules/cyclist/README.md +39 -0
- package/node_modules/npm/node_modules/cyclist/index.js +33 -0
- package/node_modules/npm/node_modules/cyclist/package.json +15 -0
- package/node_modules/npm/node_modules/dashdash/CHANGES.md +364 -0
- package/node_modules/npm/node_modules/dashdash/LICENSE.txt +24 -0
- package/node_modules/npm/node_modules/dashdash/README.md +574 -0
- package/node_modules/npm/node_modules/dashdash/etc/dashdash.bash_completion.in +389 -0
- package/node_modules/npm/node_modules/dashdash/lib/dashdash.js +1055 -0
- package/node_modules/npm/node_modules/dashdash/package.json +26 -0
- package/node_modules/npm/node_modules/debug/.coveralls.yml +1 -0
- package/node_modules/npm/node_modules/debug/.eslintrc +14 -0
- package/node_modules/npm/node_modules/debug/.npmignore +9 -0
- package/node_modules/npm/node_modules/debug/.travis.yml +20 -0
- package/node_modules/npm/node_modules/debug/CHANGELOG.md +395 -0
- package/node_modules/npm/node_modules/debug/LICENSE +19 -0
- package/node_modules/npm/node_modules/debug/Makefile +58 -0
- package/node_modules/npm/node_modules/debug/README.md +368 -0
- package/node_modules/npm/node_modules/debug/karma.conf.js +70 -0
- package/node_modules/npm/node_modules/debug/node.js +1 -0
- package/node_modules/npm/node_modules/debug/node_modules/ms/index.js +152 -0
- package/node_modules/npm/node_modules/debug/node_modules/ms/license.md +21 -0
- package/node_modules/npm/node_modules/debug/node_modules/ms/package.json +37 -0
- package/node_modules/npm/node_modules/debug/node_modules/ms/readme.md +51 -0
- package/node_modules/npm/node_modules/debug/package.json +43 -0
- package/node_modules/npm/node_modules/debug/src/browser.js +195 -0
- package/node_modules/npm/node_modules/debug/src/debug.js +225 -0
- package/node_modules/npm/node_modules/debug/src/index.js +10 -0
- package/node_modules/npm/node_modules/debug/src/node.js +186 -0
- package/node_modules/npm/node_modules/debuglog/LICENSE +19 -0
- package/node_modules/npm/node_modules/debuglog/README.md +40 -0
- package/node_modules/npm/node_modules/debuglog/debuglog.js +22 -0
- package/node_modules/npm/node_modules/debuglog/package.json +21 -0
- package/node_modules/npm/node_modules/decamelize/index.js +13 -0
- package/node_modules/npm/node_modules/decamelize/license +21 -0
- package/node_modules/npm/node_modules/decamelize/package.json +38 -0
- package/node_modules/npm/node_modules/decamelize/readme.md +48 -0
- package/node_modules/npm/node_modules/decode-uri-component/index.js +94 -0
- package/node_modules/npm/node_modules/decode-uri-component/license +21 -0
- package/node_modules/npm/node_modules/decode-uri-component/package.json +37 -0
- package/node_modules/npm/node_modules/decode-uri-component/readme.md +70 -0
- package/node_modules/npm/node_modules/deep-extend/CHANGELOG.md +46 -0
- package/node_modules/npm/node_modules/deep-extend/LICENSE +20 -0
- package/node_modules/npm/node_modules/deep-extend/README.md +91 -0
- package/node_modules/npm/node_modules/deep-extend/index.js +1 -0
- package/node_modules/npm/node_modules/deep-extend/lib/deep-extend.js +150 -0
- package/node_modules/npm/node_modules/deep-extend/package.json +62 -0
- package/node_modules/npm/node_modules/defaults/.npmignore +1 -0
- package/node_modules/npm/node_modules/defaults/LICENSE +21 -0
- package/node_modules/npm/node_modules/defaults/README.md +43 -0
- package/node_modules/npm/node_modules/defaults/index.js +13 -0
- package/node_modules/npm/node_modules/defaults/package.json +26 -0
- package/node_modules/npm/node_modules/defaults/test.js +34 -0
- package/node_modules/npm/node_modules/define-properties/.editorconfig +13 -0
- package/node_modules/npm/node_modules/define-properties/.eslintrc +12 -0
- package/node_modules/npm/node_modules/define-properties/.jscs.json +175 -0
- package/node_modules/npm/node_modules/define-properties/.travis.yml +233 -0
- package/node_modules/npm/node_modules/define-properties/CHANGELOG.md +44 -0
- package/node_modules/npm/node_modules/define-properties/LICENSE +21 -0
- package/node_modules/npm/node_modules/define-properties/README.md +86 -0
- package/node_modules/npm/node_modules/define-properties/index.js +58 -0
- package/node_modules/npm/node_modules/define-properties/package.json +65 -0
- package/node_modules/npm/node_modules/define-properties/test/index.js +125 -0
- package/node_modules/npm/node_modules/delayed-stream/.npmignore +1 -0
- package/node_modules/npm/node_modules/delayed-stream/License +19 -0
- package/node_modules/npm/node_modules/delayed-stream/Makefile +7 -0
- package/node_modules/npm/node_modules/delayed-stream/Readme.md +141 -0
- package/node_modules/npm/node_modules/delayed-stream/lib/delayed_stream.js +107 -0
- package/node_modules/npm/node_modules/delayed-stream/package.json +27 -0
- package/node_modules/npm/node_modules/delegates/.npmignore +1 -0
- package/node_modules/npm/node_modules/delegates/History.md +22 -0
- package/node_modules/npm/node_modules/delegates/License +20 -0
- package/node_modules/npm/node_modules/delegates/Makefile +8 -0
- package/node_modules/npm/node_modules/delegates/Readme.md +94 -0
- package/node_modules/npm/node_modules/delegates/index.js +121 -0
- package/node_modules/npm/node_modules/delegates/package.json +13 -0
- package/node_modules/npm/node_modules/delegates/test/index.js +94 -0
- package/node_modules/npm/node_modules/detect-indent/index.js +122 -0
- package/node_modules/npm/node_modules/detect-indent/license +21 -0
- package/node_modules/npm/node_modules/detect-indent/package.json +41 -0
- package/node_modules/npm/node_modules/detect-indent/readme.md +111 -0
- package/node_modules/npm/node_modules/detect-newline/index.js +24 -0
- package/node_modules/npm/node_modules/detect-newline/license +21 -0
- package/node_modules/npm/node_modules/detect-newline/package.json +37 -0
- package/node_modules/npm/node_modules/detect-newline/readme.md +42 -0
- package/node_modules/npm/node_modules/dezalgo/.travis.yml +7 -0
- package/node_modules/npm/node_modules/dezalgo/LICENSE +15 -0
- package/node_modules/npm/node_modules/dezalgo/README.md +29 -0
- package/node_modules/npm/node_modules/dezalgo/dezalgo.js +22 -0
- package/node_modules/npm/node_modules/dezalgo/package.json +42 -0
- package/node_modules/npm/node_modules/dezalgo/test/basic.js +29 -0
- package/node_modules/npm/node_modules/dot-prop/index.js +141 -0
- package/node_modules/npm/node_modules/dot-prop/license +21 -0
- package/node_modules/npm/node_modules/dot-prop/package.json +48 -0
- package/node_modules/npm/node_modules/dot-prop/readme.md +105 -0
- package/node_modules/npm/node_modules/dotenv/CHANGELOG.md +96 -0
- package/node_modules/npm/node_modules/dotenv/LICENSE +23 -0
- package/node_modules/npm/node_modules/dotenv/README.md +257 -0
- package/node_modules/npm/node_modules/dotenv/appveyor.yml +13 -0
- package/node_modules/npm/node_modules/dotenv/config.js +11 -0
- package/node_modules/npm/node_modules/dotenv/lib/main.js +79 -0
- package/node_modules/npm/node_modules/dotenv/package.json +43 -0
- package/node_modules/npm/node_modules/duplexer3/LICENSE.md +26 -0
- package/node_modules/npm/node_modules/duplexer3/README.md +115 -0
- package/node_modules/npm/node_modules/duplexer3/index.js +76 -0
- package/node_modules/npm/node_modules/duplexer3/package.json +28 -0
- package/node_modules/npm/node_modules/duplexify/.travis.yml +6 -0
- package/node_modules/npm/node_modules/duplexify/LICENSE +21 -0
- package/node_modules/npm/node_modules/duplexify/README.md +97 -0
- package/node_modules/npm/node_modules/duplexify/example.js +21 -0
- package/node_modules/npm/node_modules/duplexify/index.js +235 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/.travis.yml +55 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/LICENSE +47 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/README.md +58 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/duplex-browser.js +1 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/duplex.js +1 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/lib/_stream_duplex.js +131 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/lib/_stream_passthrough.js +47 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/lib/_stream_readable.js +1019 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/lib/_stream_transform.js +214 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/lib/_stream_writable.js +687 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/lib/internal/streams/BufferList.js +79 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/lib/internal/streams/destroy.js +74 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/package.json +52 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/passthrough.js +1 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/readable-browser.js +7 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/readable.js +19 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/transform.js +1 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/writable-browser.js +1 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/writable.js +8 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/string_decoder/.travis.yml +50 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/string_decoder/LICENSE +48 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/string_decoder/README.md +47 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/string_decoder/lib/string_decoder.js +296 -0
- package/node_modules/npm/node_modules/duplexify/node_modules/string_decoder/package.json +31 -0
- package/node_modules/npm/node_modules/duplexify/package.json +39 -0
- package/node_modules/npm/node_modules/duplexify/test.js +291 -0
- package/node_modules/npm/node_modules/ecc-jsbn/LICENSE +21 -0
- package/node_modules/npm/node_modules/ecc-jsbn/README.md +8 -0
- package/node_modules/npm/node_modules/ecc-jsbn/index.js +58 -0
- package/node_modules/npm/node_modules/ecc-jsbn/lib/LICENSE-jsbn +40 -0
- package/node_modules/npm/node_modules/ecc-jsbn/lib/ec.js +561 -0
- package/node_modules/npm/node_modules/ecc-jsbn/lib/sec.js +170 -0
- package/node_modules/npm/node_modules/ecc-jsbn/package.json +40 -0
- package/node_modules/npm/node_modules/ecc-jsbn/test.js +14 -0
- package/node_modules/npm/node_modules/editor/LICENSE +21 -0
- package/node_modules/npm/node_modules/editor/README.markdown +54 -0
- package/node_modules/npm/node_modules/editor/example/beep.json +5 -0
- package/node_modules/npm/node_modules/editor/example/edit.js +4 -0
- package/node_modules/npm/node_modules/editor/index.js +20 -0
- package/node_modules/npm/node_modules/editor/package.json +34 -0
- package/node_modules/npm/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/node_modules/npm/node_modules/emoji-regex/README.md +73 -0
- package/node_modules/npm/node_modules/emoji-regex/es2015/index.js +6 -0
- package/node_modules/npm/node_modules/emoji-regex/es2015/text.js +6 -0
- package/node_modules/npm/node_modules/emoji-regex/index.d.ts +5 -0
- package/node_modules/npm/node_modules/emoji-regex/index.js +6 -0
- package/node_modules/npm/node_modules/emoji-regex/package.json +51 -0
- package/node_modules/npm/node_modules/emoji-regex/text.js +6 -0
- package/node_modules/npm/node_modules/encoding/.npmignore +1 -0
- package/node_modules/npm/node_modules/encoding/.travis.yml +25 -0
- package/node_modules/npm/node_modules/encoding/LICENSE +16 -0
- package/node_modules/npm/node_modules/encoding/README.md +52 -0
- package/node_modules/npm/node_modules/encoding/lib/encoding.js +113 -0
- package/node_modules/npm/node_modules/encoding/lib/iconv-loader.js +14 -0
- package/node_modules/npm/node_modules/encoding/package.json +19 -0
- package/node_modules/npm/node_modules/encoding/test/test.js +75 -0
- package/node_modules/npm/node_modules/end-of-stream/LICENSE +21 -0
- package/node_modules/npm/node_modules/end-of-stream/README.md +52 -0
- package/node_modules/npm/node_modules/end-of-stream/index.js +87 -0
- package/node_modules/npm/node_modules/end-of-stream/package.json +34 -0
- package/node_modules/npm/node_modules/env-paths/index.d.ts +69 -0
- package/node_modules/npm/node_modules/env-paths/index.js +74 -0
- package/node_modules/npm/node_modules/env-paths/license +9 -0
- package/node_modules/npm/node_modules/env-paths/package.json +45 -0
- package/node_modules/npm/node_modules/env-paths/readme.md +76 -0
- package/node_modules/npm/node_modules/err-code/.editorconfig +12 -0
- package/node_modules/npm/node_modules/err-code/.eslintrc.json +7 -0
- package/node_modules/npm/node_modules/err-code/.npmignore +2 -0
- package/node_modules/npm/node_modules/err-code/.travis.yml +5 -0
- package/node_modules/npm/node_modules/err-code/README.md +72 -0
- package/node_modules/npm/node_modules/err-code/bower.json +30 -0
- package/node_modules/npm/node_modules/err-code/index.js +22 -0
- package/node_modules/npm/node_modules/err-code/index.umd.js +26 -0
- package/node_modules/npm/node_modules/err-code/package.json +34 -0
- package/node_modules/npm/node_modules/err-code/test/.eslintrc.json +5 -0
- package/node_modules/npm/node_modules/err-code/test/test.js +92 -0
- package/node_modules/npm/node_modules/errno/.jshintrc +59 -0
- package/node_modules/npm/node_modules/errno/.travis.yml +11 -0
- package/node_modules/npm/node_modules/errno/README.md +145 -0
- package/node_modules/npm/node_modules/errno/build.js +43 -0
- package/node_modules/npm/node_modules/errno/cli.js +22 -0
- package/node_modules/npm/node_modules/errno/custom.js +57 -0
- package/node_modules/npm/node_modules/errno/errno.js +313 -0
- package/node_modules/npm/node_modules/errno/package.json +33 -0
- package/node_modules/npm/node_modules/errno/test.js +88 -0
- package/node_modules/npm/node_modules/es-abstract/.editorconfig +13 -0
- package/node_modules/npm/node_modules/es-abstract/.eslintrc +23 -0
- package/node_modules/npm/node_modules/es-abstract/.jscs.json +174 -0
- package/node_modules/npm/node_modules/es-abstract/.nycrc +14 -0
- package/node_modules/npm/node_modules/es-abstract/.travis.yml +232 -0
- package/node_modules/npm/node_modules/es-abstract/CHANGELOG.md +175 -0
- package/node_modules/npm/node_modules/es-abstract/GetIntrinsic.js +177 -0
- package/node_modules/npm/node_modules/es-abstract/LICENSE +21 -0
- package/node_modules/npm/node_modules/es-abstract/Makefile +61 -0
- package/node_modules/npm/node_modules/es-abstract/README.md +44 -0
- package/node_modules/npm/node_modules/es-abstract/es2015.js +693 -0
- package/node_modules/npm/node_modules/es-abstract/es2016.js +16 -0
- package/node_modules/npm/node_modules/es-abstract/es2017.js +25 -0
- package/node_modules/npm/node_modules/es-abstract/es5.js +242 -0
- package/node_modules/npm/node_modules/es-abstract/es6.js +3 -0
- package/node_modules/npm/node_modules/es-abstract/es7.js +3 -0
- package/node_modules/npm/node_modules/es-abstract/helpers/assign.js +17 -0
- package/node_modules/npm/node_modules/es-abstract/helpers/isFinite.js +3 -0
- package/node_modules/npm/node_modules/es-abstract/helpers/isNaN.js +3 -0
- package/node_modules/npm/node_modules/es-abstract/helpers/isPrimitive.js +3 -0
- package/node_modules/npm/node_modules/es-abstract/helpers/mod.js +4 -0
- package/node_modules/npm/node_modules/es-abstract/helpers/sign.js +3 -0
- package/node_modules/npm/node_modules/es-abstract/index.js +22 -0
- package/node_modules/npm/node_modules/es-abstract/operations/2015.js +78 -0
- package/node_modules/npm/node_modules/es-abstract/operations/2016.js +80 -0
- package/node_modules/npm/node_modules/es-abstract/operations/2017.js +82 -0
- package/node_modules/npm/node_modules/es-abstract/operations/es5.js +10 -0
- package/node_modules/npm/node_modules/es-abstract/package.json +98 -0
- package/node_modules/npm/node_modules/es-abstract/test/.eslintrc +11 -0
- package/node_modules/npm/node_modules/es-abstract/test/GetIntrinsic.js +34 -0
- package/node_modules/npm/node_modules/es-abstract/test/diffOps.js +24 -0
- package/node_modules/npm/node_modules/es-abstract/test/es2015.js +11 -0
- package/node_modules/npm/node_modules/es-abstract/test/es2016.js +11 -0
- package/node_modules/npm/node_modules/es-abstract/test/es2017.js +11 -0
- package/node_modules/npm/node_modules/es-abstract/test/es5.js +415 -0
- package/node_modules/npm/node_modules/es-abstract/test/es6.js +18 -0
- package/node_modules/npm/node_modules/es-abstract/test/es7.js +18 -0
- package/node_modules/npm/node_modules/es-abstract/test/helpers/values.js +53 -0
- package/node_modules/npm/node_modules/es-abstract/test/index.js +28 -0
- package/node_modules/npm/node_modules/es-abstract/test/tests.js +1610 -0
- package/node_modules/npm/node_modules/es-to-primitive/.editorconfig +20 -0
- package/node_modules/npm/node_modules/es-to-primitive/.eslintrc +14 -0
- package/node_modules/npm/node_modules/es-to-primitive/.jscs.json +176 -0
- package/node_modules/npm/node_modules/es-to-primitive/.travis.yml +243 -0
- package/node_modules/npm/node_modules/es-to-primitive/CHANGELOG.md +38 -0
- package/node_modules/npm/node_modules/es-to-primitive/LICENSE +22 -0
- package/node_modules/npm/node_modules/es-to-primitive/Makefile +61 -0
- package/node_modules/npm/node_modules/es-to-primitive/README.md +51 -0
- package/node_modules/npm/node_modules/es-to-primitive/es2015.js +75 -0
- package/node_modules/npm/node_modules/es-to-primitive/es5.js +45 -0
- package/node_modules/npm/node_modules/es-to-primitive/es6.js +3 -0
- package/node_modules/npm/node_modules/es-to-primitive/helpers/isPrimitive.js +3 -0
- package/node_modules/npm/node_modules/es-to-primitive/index.js +17 -0
- package/node_modules/npm/node_modules/es-to-primitive/package.json +82 -0
- package/node_modules/npm/node_modules/es-to-primitive/test/.eslintrc +9 -0
- package/node_modules/npm/node_modules/es-to-primitive/test/es2015.js +151 -0
- package/node_modules/npm/node_modules/es-to-primitive/test/es5.js +94 -0
- package/node_modules/npm/node_modules/es-to-primitive/test/es6.js +151 -0
- package/node_modules/npm/node_modules/es-to-primitive/test/index.js +20 -0
- package/node_modules/npm/node_modules/es6-promise/CHANGELOG.md +155 -0
- package/node_modules/npm/node_modules/es6-promise/LICENSE +19 -0
- package/node_modules/npm/node_modules/es6-promise/README.md +97 -0
- package/node_modules/npm/node_modules/es6-promise/auto.js +4 -0
- package/node_modules/npm/node_modules/es6-promise/dist/es6-promise.auto.js +1176 -0
- package/node_modules/npm/node_modules/es6-promise/dist/es6-promise.auto.map +1 -0
- package/node_modules/npm/node_modules/es6-promise/dist/es6-promise.auto.min.js +1 -0
- package/node_modules/npm/node_modules/es6-promise/dist/es6-promise.auto.min.map +1 -0
- package/node_modules/npm/node_modules/es6-promise/dist/es6-promise.js +1174 -0
- package/node_modules/npm/node_modules/es6-promise/dist/es6-promise.map +1 -0
- package/node_modules/npm/node_modules/es6-promise/dist/es6-promise.min.js +1 -0
- package/node_modules/npm/node_modules/es6-promise/dist/es6-promise.min.map +1 -0
- package/node_modules/npm/node_modules/es6-promise/es6-promise.d.ts +85 -0
- package/node_modules/npm/node_modules/es6-promise/lib/es6-promise/-internal.js +243 -0
- package/node_modules/npm/node_modules/es6-promise/lib/es6-promise/asap.js +119 -0
- package/node_modules/npm/node_modules/es6-promise/lib/es6-promise/enumerator.js +124 -0
- package/node_modules/npm/node_modules/es6-promise/lib/es6-promise/polyfill.js +35 -0
- package/node_modules/npm/node_modules/es6-promise/lib/es6-promise/promise/all.js +52 -0
- package/node_modules/npm/node_modules/es6-promise/lib/es6-promise/promise/race.js +84 -0
- package/node_modules/npm/node_modules/es6-promise/lib/es6-promise/promise/reject.js +46 -0
- package/node_modules/npm/node_modules/es6-promise/lib/es6-promise/promise/resolve.js +48 -0
- package/node_modules/npm/node_modules/es6-promise/lib/es6-promise/promise.js +431 -0
- package/node_modules/npm/node_modules/es6-promise/lib/es6-promise/then.js +32 -0
- package/node_modules/npm/node_modules/es6-promise/lib/es6-promise/utils.js +21 -0
- package/node_modules/npm/node_modules/es6-promise/lib/es6-promise.auto.js +3 -0
- package/node_modules/npm/node_modules/es6-promise/lib/es6-promise.js +7 -0
- package/node_modules/npm/node_modules/es6-promise/package.json +78 -0
- package/node_modules/npm/node_modules/es6-promisify/README.md +89 -0
- package/node_modules/npm/node_modules/es6-promisify/dist/promise.js +73 -0
- package/node_modules/npm/node_modules/es6-promisify/dist/promisify.js +85 -0
- package/node_modules/npm/node_modules/es6-promisify/package.json +41 -0
- package/node_modules/npm/node_modules/escape-string-regexp/index.js +11 -0
- package/node_modules/npm/node_modules/escape-string-regexp/license +21 -0
- package/node_modules/npm/node_modules/escape-string-regexp/package.json +41 -0
- package/node_modules/npm/node_modules/escape-string-regexp/readme.md +27 -0
- package/node_modules/npm/node_modules/execa/index.js +309 -0
- package/node_modules/npm/node_modules/execa/lib/errname.js +37 -0
- package/node_modules/npm/node_modules/execa/lib/stdio.js +41 -0
- package/node_modules/npm/node_modules/execa/license +9 -0
- package/node_modules/npm/node_modules/execa/node_modules/get-stream/buffer-stream.js +51 -0
- package/node_modules/npm/node_modules/execa/node_modules/get-stream/index.js +51 -0
- package/node_modules/npm/node_modules/execa/node_modules/get-stream/license +21 -0
- package/node_modules/npm/node_modules/execa/node_modules/get-stream/package.json +48 -0
- package/node_modules/npm/node_modules/execa/node_modules/get-stream/readme.md +117 -0
- package/node_modules/npm/node_modules/execa/package.json +76 -0
- package/node_modules/npm/node_modules/execa/readme.md +279 -0
- package/node_modules/npm/node_modules/extend/.editorconfig +20 -0
- package/node_modules/npm/node_modules/extend/.eslintrc +17 -0
- package/node_modules/npm/node_modules/extend/.jscs.json +175 -0
- package/node_modules/npm/node_modules/extend/.travis.yml +230 -0
- package/node_modules/npm/node_modules/extend/CHANGELOG.md +83 -0
- package/node_modules/npm/node_modules/extend/LICENSE +23 -0
- package/node_modules/npm/node_modules/extend/README.md +81 -0
- package/node_modules/npm/node_modules/extend/component.json +32 -0
- package/node_modules/npm/node_modules/extend/index.js +117 -0
- package/node_modules/npm/node_modules/extend/package.json +42 -0
- package/node_modules/npm/node_modules/extsprintf/.gitmodules +0 -0
- package/node_modules/npm/node_modules/extsprintf/.npmignore +2 -0
- package/node_modules/npm/node_modules/extsprintf/LICENSE +19 -0
- package/node_modules/npm/node_modules/extsprintf/Makefile +24 -0
- package/node_modules/npm/node_modules/extsprintf/Makefile.targ +285 -0
- package/node_modules/npm/node_modules/extsprintf/README.md +46 -0
- package/node_modules/npm/node_modules/extsprintf/jsl.node.conf +137 -0
- package/node_modules/npm/node_modules/extsprintf/lib/extsprintf.js +183 -0
- package/node_modules/npm/node_modules/extsprintf/package.json +14 -0
- package/node_modules/npm/node_modules/fast-json-stable-stringify/.eslintrc.yml +26 -0
- package/node_modules/npm/node_modules/fast-json-stable-stringify/.npmignore +4 -0
- package/node_modules/npm/node_modules/fast-json-stable-stringify/.travis.yml +8 -0
- package/node_modules/npm/node_modules/fast-json-stable-stringify/LICENSE +18 -0
- package/node_modules/npm/node_modules/fast-json-stable-stringify/README.md +119 -0
- package/node_modules/npm/node_modules/fast-json-stable-stringify/benchmark/index.js +31 -0
- package/node_modules/npm/node_modules/fast-json-stable-stringify/benchmark/test.json +137 -0
- package/node_modules/npm/node_modules/fast-json-stable-stringify/example/key_cmp.js +7 -0
- package/node_modules/npm/node_modules/fast-json-stable-stringify/example/nested.js +3 -0
- package/node_modules/npm/node_modules/fast-json-stable-stringify/example/str.js +3 -0
- package/node_modules/npm/node_modules/fast-json-stable-stringify/example/value_cmp.js +7 -0
- package/node_modules/npm/node_modules/fast-json-stable-stringify/index.js +59 -0
- package/node_modules/npm/node_modules/fast-json-stable-stringify/package.json +50 -0
- package/node_modules/npm/node_modules/fast-json-stable-stringify/test/cmp.js +13 -0
- package/node_modules/npm/node_modules/fast-json-stable-stringify/test/nested.js +44 -0
- package/node_modules/npm/node_modules/fast-json-stable-stringify/test/str.js +46 -0
- package/node_modules/npm/node_modules/fast-json-stable-stringify/test/to-json.js +22 -0
- package/node_modules/npm/node_modules/figgy-pudding/CHANGELOG.md +151 -0
- package/node_modules/npm/node_modules/figgy-pudding/LICENSE.md +16 -0
- package/node_modules/npm/node_modules/figgy-pudding/README.md +260 -0
- package/node_modules/npm/node_modules/figgy-pudding/index.js +197 -0
- package/node_modules/npm/node_modules/figgy-pudding/package.json +35 -0
- package/node_modules/npm/node_modules/find-npm-prefix/LICENSE +15 -0
- package/node_modules/npm/node_modules/find-npm-prefix/README.md +28 -0
- package/node_modules/npm/node_modules/find-npm-prefix/find-prefix.js +56 -0
- package/node_modules/npm/node_modules/find-npm-prefix/package.json +29 -0
- package/node_modules/npm/node_modules/find-npm-prefix/test/find-prefix.js +79 -0
- package/node_modules/npm/node_modules/find-npm-prefix/test/find-prefix.js~ +79 -0
- package/node_modules/npm/node_modules/flush-write-stream/.travis.yml +6 -0
- package/node_modules/npm/node_modules/flush-write-stream/LICENSE +21 -0
- package/node_modules/npm/node_modules/flush-write-stream/README.md +59 -0
- package/node_modules/npm/node_modules/flush-write-stream/example.js +22 -0
- package/node_modules/npm/node_modules/flush-write-stream/index.js +54 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/readable-stream/.travis.yml +55 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/readable-stream/LICENSE +47 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/readable-stream/README.md +58 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/readable-stream/duplex-browser.js +1 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/readable-stream/duplex.js +1 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/readable-stream/lib/_stream_duplex.js +131 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/readable-stream/lib/_stream_passthrough.js +47 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/readable-stream/lib/_stream_readable.js +1019 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/readable-stream/lib/_stream_transform.js +214 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/readable-stream/lib/_stream_writable.js +687 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/readable-stream/lib/internal/streams/BufferList.js +79 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/readable-stream/lib/internal/streams/destroy.js +74 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/readable-stream/package.json +52 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/readable-stream/passthrough.js +1 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/readable-stream/readable-browser.js +7 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/readable-stream/readable.js +19 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/readable-stream/transform.js +1 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/readable-stream/writable-browser.js +1 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/readable-stream/writable.js +8 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/string_decoder/.travis.yml +50 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/string_decoder/LICENSE +48 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/string_decoder/README.md +47 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/string_decoder/lib/string_decoder.js +296 -0
- package/node_modules/npm/node_modules/flush-write-stream/node_modules/string_decoder/package.json +31 -0
- package/node_modules/npm/node_modules/flush-write-stream/package.json +26 -0
- package/node_modules/npm/node_modules/flush-write-stream/test.js +85 -0
- package/node_modules/npm/node_modules/forever-agent/LICENSE +55 -0
- package/node_modules/npm/node_modules/forever-agent/README.md +4 -0
- package/node_modules/npm/node_modules/forever-agent/index.js +138 -0
- package/node_modules/npm/node_modules/forever-agent/package.json +17 -0
- package/node_modules/npm/node_modules/form-data/License +19 -0
- package/node_modules/npm/node_modules/form-data/README.md +234 -0
- package/node_modules/npm/node_modules/form-data/README.md.bak +234 -0
- package/node_modules/npm/node_modules/form-data/lib/browser.js +2 -0
- package/node_modules/npm/node_modules/form-data/lib/form_data.js +457 -0
- package/node_modules/npm/node_modules/form-data/lib/populate.js +10 -0
- package/node_modules/npm/node_modules/form-data/package.json +65 -0
- package/node_modules/npm/node_modules/from2/.travis.yml +8 -0
- package/node_modules/npm/node_modules/from2/LICENSE.md +21 -0
- package/node_modules/npm/node_modules/from2/README.md +70 -0
- package/node_modules/npm/node_modules/from2/index.js +103 -0
- package/node_modules/npm/node_modules/from2/node_modules/readable-stream/.travis.yml +55 -0
- package/node_modules/npm/node_modules/from2/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/node_modules/npm/node_modules/from2/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/node_modules/npm/node_modules/from2/node_modules/readable-stream/LICENSE +47 -0
- package/node_modules/npm/node_modules/from2/node_modules/readable-stream/README.md +58 -0
- package/node_modules/npm/node_modules/from2/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
- package/node_modules/npm/node_modules/from2/node_modules/readable-stream/duplex-browser.js +1 -0
- package/node_modules/npm/node_modules/from2/node_modules/readable-stream/duplex.js +1 -0
- package/node_modules/npm/node_modules/from2/node_modules/readable-stream/lib/_stream_duplex.js +131 -0
- package/node_modules/npm/node_modules/from2/node_modules/readable-stream/lib/_stream_passthrough.js +47 -0
- package/node_modules/npm/node_modules/from2/node_modules/readable-stream/lib/_stream_readable.js +1019 -0
- package/node_modules/npm/node_modules/from2/node_modules/readable-stream/lib/_stream_transform.js +214 -0
- package/node_modules/npm/node_modules/from2/node_modules/readable-stream/lib/_stream_writable.js +687 -0
- package/node_modules/npm/node_modules/from2/node_modules/readable-stream/lib/internal/streams/BufferList.js +79 -0
- package/node_modules/npm/node_modules/from2/node_modules/readable-stream/lib/internal/streams/destroy.js +74 -0
- package/node_modules/npm/node_modules/from2/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/node_modules/npm/node_modules/from2/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/node_modules/npm/node_modules/from2/node_modules/readable-stream/package.json +52 -0
- package/node_modules/npm/node_modules/from2/node_modules/readable-stream/passthrough.js +1 -0
- package/node_modules/npm/node_modules/from2/node_modules/readable-stream/readable-browser.js +7 -0
- package/node_modules/npm/node_modules/from2/node_modules/readable-stream/readable.js +19 -0
- package/node_modules/npm/node_modules/from2/node_modules/readable-stream/transform.js +1 -0
- package/node_modules/npm/node_modules/from2/node_modules/readable-stream/writable-browser.js +1 -0
- package/node_modules/npm/node_modules/from2/node_modules/readable-stream/writable.js +8 -0
- package/node_modules/npm/node_modules/from2/node_modules/string_decoder/.travis.yml +50 -0
- package/node_modules/npm/node_modules/from2/node_modules/string_decoder/LICENSE +48 -0
- package/node_modules/npm/node_modules/from2/node_modules/string_decoder/README.md +47 -0
- package/node_modules/npm/node_modules/from2/node_modules/string_decoder/lib/string_decoder.js +296 -0
- package/node_modules/npm/node_modules/from2/node_modules/string_decoder/package.json +31 -0
- package/node_modules/npm/node_modules/from2/package.json +37 -0
- package/node_modules/npm/node_modules/from2/test.js +123 -0
- package/node_modules/npm/node_modules/fs-minipass/LICENSE +15 -0
- package/node_modules/npm/node_modules/fs-minipass/README.md +70 -0
- package/node_modules/npm/node_modules/fs-minipass/index.js +387 -0
- package/node_modules/npm/node_modules/fs-minipass/node_modules/minipass/LICENSE +15 -0
- package/node_modules/npm/node_modules/fs-minipass/node_modules/minipass/README.md +606 -0
- package/node_modules/npm/node_modules/fs-minipass/node_modules/minipass/index.js +537 -0
- package/node_modules/npm/node_modules/fs-minipass/node_modules/minipass/package.json +37 -0
- package/node_modules/npm/node_modules/fs-minipass/package.json +36 -0
- package/node_modules/npm/node_modules/fs-vacuum/.eslintrc +18 -0
- package/node_modules/npm/node_modules/fs-vacuum/.npmignore +1 -0
- package/node_modules/npm/node_modules/fs-vacuum/.travis.yml +14 -0
- package/node_modules/npm/node_modules/fs-vacuum/LICENSE +13 -0
- package/node_modules/npm/node_modules/fs-vacuum/README.md +33 -0
- package/node_modules/npm/node_modules/fs-vacuum/package.json +37 -0
- package/node_modules/npm/node_modules/fs-vacuum/test/arguments.js +24 -0
- package/node_modules/npm/node_modules/fs-vacuum/test/base-leaf-mismatch.js +16 -0
- package/node_modules/npm/node_modules/fs-vacuum/test/no-entries-file-no-purge.js +78 -0
- package/node_modules/npm/node_modules/fs-vacuum/test/no-entries-link-no-purge.js +78 -0
- package/node_modules/npm/node_modules/fs-vacuum/test/no-entries-no-purge.js +61 -0
- package/node_modules/npm/node_modules/fs-vacuum/test/no-entries-with-link-purge.js +78 -0
- package/node_modules/npm/node_modules/fs-vacuum/test/no-entries-with-purge.js +67 -0
- package/node_modules/npm/node_modules/fs-vacuum/test/not-remove-home-directory.js +46 -0
- package/node_modules/npm/node_modules/fs-vacuum/test/other-directories-no-purge.js +76 -0
- package/node_modules/npm/node_modules/fs-vacuum/test/racy-entries-eexist.js +119 -0
- package/node_modules/npm/node_modules/fs-vacuum/test/racy-entries-enotempty.js +119 -0
- package/node_modules/npm/node_modules/fs-vacuum/test/racy-entries.js +104 -0
- package/node_modules/npm/node_modules/fs-vacuum/vacuum.js +117 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/.npmignore +3 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/.travis.yml +11 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/LICENSE +15 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/README.md +35 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/index.js +176 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/iferr/.npmignore +1 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/iferr/LICENSE +21 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/iferr/README.md +40 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/iferr/index.coffee +24 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/iferr/index.js +49 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/iferr/package.json +28 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/iferr/test/index.coffee +42 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/iferr/test/mocha.opts +2 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/.travis.yml +55 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/LICENSE +47 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/README.md +58 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/duplex-browser.js +1 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/duplex.js +1 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/lib/_stream_duplex.js +131 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/lib/_stream_passthrough.js +47 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/lib/_stream_readable.js +1019 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/lib/_stream_transform.js +214 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/lib/_stream_writable.js +687 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/lib/internal/streams/BufferList.js +79 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/lib/internal/streams/destroy.js +74 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/package.json +52 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/passthrough.js +1 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/readable-browser.js +7 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/readable.js +19 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/transform.js +1 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/writable-browser.js +1 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/writable.js +8 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/string_decoder/.travis.yml +50 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/string_decoder/LICENSE +48 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/string_decoder/README.md +47 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/string_decoder/lib/string_decoder.js +296 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/string_decoder/package.json +31 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/package.json +33 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/test/basic.js +97 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/test/chown.js +44 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/test/rename-eperm.js +154 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/test/rename-fail.js +30 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/test/slow-close.js +40 -0
- package/node_modules/npm/node_modules/fs-write-stream-atomic/test/toolong.js +29 -0
- package/node_modules/npm/node_modules/fs.realpath/LICENSE +43 -0
- package/node_modules/npm/node_modules/fs.realpath/README.md +33 -0
- package/node_modules/npm/node_modules/fs.realpath/index.js +66 -0
- package/node_modules/npm/node_modules/fs.realpath/old.js +303 -0
- package/node_modules/npm/node_modules/fs.realpath/package.json +26 -0
- package/node_modules/npm/node_modules/function-bind/.editorconfig +20 -0
- package/node_modules/npm/node_modules/function-bind/.eslintrc +15 -0
- package/node_modules/npm/node_modules/function-bind/.jscs.json +176 -0
- package/node_modules/npm/node_modules/function-bind/.npmignore +22 -0
- package/node_modules/npm/node_modules/function-bind/.travis.yml +168 -0
- package/node_modules/npm/node_modules/function-bind/LICENSE +20 -0
- package/node_modules/npm/node_modules/function-bind/README.md +48 -0
- package/node_modules/npm/node_modules/function-bind/implementation.js +52 -0
- package/node_modules/npm/node_modules/function-bind/index.js +5 -0
- package/node_modules/npm/node_modules/function-bind/package.json +63 -0
- package/node_modules/npm/node_modules/function-bind/test/.eslintrc +9 -0
- package/node_modules/npm/node_modules/function-bind/test/index.js +252 -0
- package/node_modules/npm/node_modules/gauge/CHANGELOG.md +160 -0
- package/node_modules/npm/node_modules/gauge/LICENSE +13 -0
- package/node_modules/npm/node_modules/gauge/README.md +399 -0
- package/node_modules/npm/node_modules/gauge/base-theme.js +14 -0
- package/node_modules/npm/node_modules/gauge/error.js +24 -0
- package/node_modules/npm/node_modules/gauge/has-color.js +12 -0
- package/node_modules/npm/node_modules/gauge/index.js +233 -0
- package/node_modules/npm/node_modules/gauge/node_modules/aproba/LICENSE +14 -0
- package/node_modules/npm/node_modules/gauge/node_modules/aproba/README.md +94 -0
- package/node_modules/npm/node_modules/gauge/node_modules/aproba/index.js +105 -0
- package/node_modules/npm/node_modules/gauge/node_modules/aproba/package.json +34 -0
- package/node_modules/npm/node_modules/gauge/node_modules/string-width/index.js +37 -0
- package/node_modules/npm/node_modules/gauge/node_modules/string-width/license +21 -0
- package/node_modules/npm/node_modules/gauge/node_modules/string-width/package.json +56 -0
- package/node_modules/npm/node_modules/gauge/node_modules/string-width/readme.md +42 -0
- package/node_modules/npm/node_modules/gauge/package.json +63 -0
- package/node_modules/npm/node_modules/gauge/plumbing.js +48 -0
- package/node_modules/npm/node_modules/gauge/process.js +3 -0
- package/node_modules/npm/node_modules/gauge/progress-bar.js +35 -0
- package/node_modules/npm/node_modules/gauge/render-template.js +181 -0
- package/node_modules/npm/node_modules/gauge/set-immediate.js +7 -0
- package/node_modules/npm/node_modules/gauge/set-interval.js +3 -0
- package/node_modules/npm/node_modules/gauge/spin.js +5 -0
- package/node_modules/npm/node_modules/gauge/template-item.js +73 -0
- package/node_modules/npm/node_modules/gauge/theme-set.js +115 -0
- package/node_modules/npm/node_modules/gauge/themes.js +54 -0
- package/node_modules/npm/node_modules/gauge/wide-truncate.js +25 -0
- package/node_modules/npm/node_modules/genfun/CHANGELOG.md +53 -0
- package/node_modules/npm/node_modules/genfun/LICENSE +21 -0
- package/node_modules/npm/node_modules/genfun/README.md +223 -0
- package/node_modules/npm/node_modules/genfun/lib/genfun.js +296 -0
- package/node_modules/npm/node_modules/genfun/lib/method.js +82 -0
- package/node_modules/npm/node_modules/genfun/lib/role.js +17 -0
- package/node_modules/npm/node_modules/genfun/lib/util.js +37 -0
- package/node_modules/npm/node_modules/genfun/package.json +49 -0
- package/node_modules/npm/node_modules/gentle-fs/CHANGELOG.md +113 -0
- package/node_modules/npm/node_modules/gentle-fs/LICENSE +235 -0
- package/node_modules/npm/node_modules/gentle-fs/README.md +65 -0
- package/node_modules/npm/node_modules/gentle-fs/index.js +14 -0
- package/node_modules/npm/node_modules/gentle-fs/lib/bin-link.js +96 -0
- package/node_modules/npm/node_modules/gentle-fs/lib/chown.js +24 -0
- package/node_modules/npm/node_modules/gentle-fs/lib/link.js +126 -0
- package/node_modules/npm/node_modules/gentle-fs/lib/mkdir.js +22 -0
- package/node_modules/npm/node_modules/gentle-fs/lib/rm.js +256 -0
- package/node_modules/npm/node_modules/gentle-fs/node_modules/aproba/LICENSE +14 -0
- package/node_modules/npm/node_modules/gentle-fs/node_modules/aproba/README.md +94 -0
- package/node_modules/npm/node_modules/gentle-fs/node_modules/aproba/index.js +105 -0
- package/node_modules/npm/node_modules/gentle-fs/node_modules/aproba/package.json +34 -0
- package/node_modules/npm/node_modules/gentle-fs/node_modules/iferr/.npmignore +1 -0
- package/node_modules/npm/node_modules/gentle-fs/node_modules/iferr/LICENSE +21 -0
- package/node_modules/npm/node_modules/gentle-fs/node_modules/iferr/README.md +40 -0
- package/node_modules/npm/node_modules/gentle-fs/node_modules/iferr/index.coffee +24 -0
- package/node_modules/npm/node_modules/gentle-fs/node_modules/iferr/index.js +49 -0
- package/node_modules/npm/node_modules/gentle-fs/node_modules/iferr/package.json +28 -0
- package/node_modules/npm/node_modules/gentle-fs/node_modules/iferr/test/index.coffee +42 -0
- package/node_modules/npm/node_modules/gentle-fs/node_modules/iferr/test/mocha.opts +2 -0
- package/node_modules/npm/node_modules/gentle-fs/package.json +53 -0
- package/node_modules/npm/node_modules/get-caller-file/LICENSE.md +6 -0
- package/node_modules/npm/node_modules/get-caller-file/README.md +41 -0
- package/node_modules/npm/node_modules/get-caller-file/index.d.ts +2 -0
- package/node_modules/npm/node_modules/get-caller-file/index.js +22 -0
- package/node_modules/npm/node_modules/get-caller-file/index.js.map +1 -0
- package/node_modules/npm/node_modules/get-caller-file/package.json +42 -0
- package/node_modules/npm/node_modules/get-stream/buffer-stream.js +51 -0
- package/node_modules/npm/node_modules/get-stream/index.js +50 -0
- package/node_modules/npm/node_modules/get-stream/license +9 -0
- package/node_modules/npm/node_modules/get-stream/package.json +46 -0
- package/node_modules/npm/node_modules/get-stream/readme.md +123 -0
- package/node_modules/npm/node_modules/getpass/.npmignore +8 -0
- package/node_modules/npm/node_modules/getpass/.travis.yml +9 -0
- package/node_modules/npm/node_modules/getpass/LICENSE +18 -0
- package/node_modules/npm/node_modules/getpass/README.md +32 -0
- package/node_modules/npm/node_modules/getpass/lib/index.js +123 -0
- package/node_modules/npm/node_modules/getpass/package.json +18 -0
- package/node_modules/npm/node_modules/glob/LICENSE +21 -0
- package/node_modules/npm/node_modules/glob/README.md +375 -0
- package/node_modules/npm/node_modules/glob/changelog.md +67 -0
- package/node_modules/npm/node_modules/glob/common.js +240 -0
- package/node_modules/npm/node_modules/glob/glob.js +790 -0
- package/node_modules/npm/node_modules/glob/package.json +46 -0
- package/node_modules/npm/node_modules/glob/sync.js +486 -0
- package/node_modules/npm/node_modules/global-dirs/index.js +90 -0
- package/node_modules/npm/node_modules/global-dirs/license +9 -0
- package/node_modules/npm/node_modules/global-dirs/package.json +52 -0
- package/node_modules/npm/node_modules/global-dirs/readme.md +69 -0
- package/node_modules/npm/node_modules/got/index.js +364 -0
- package/node_modules/npm/node_modules/got/license +21 -0
- package/node_modules/npm/node_modules/got/node_modules/get-stream/buffer-stream.js +51 -0
- package/node_modules/npm/node_modules/got/node_modules/get-stream/index.js +51 -0
- package/node_modules/npm/node_modules/got/node_modules/get-stream/license +21 -0
- package/node_modules/npm/node_modules/got/node_modules/get-stream/package.json +48 -0
- package/node_modules/npm/node_modules/got/node_modules/get-stream/readme.md +117 -0
- package/node_modules/npm/node_modules/got/package.json +78 -0
- package/node_modules/npm/node_modules/got/readme.md +335 -0
- package/node_modules/npm/node_modules/graceful-fs/LICENSE +15 -0
- package/node_modules/npm/node_modules/graceful-fs/README.md +133 -0
- package/node_modules/npm/node_modules/graceful-fs/clone.js +19 -0
- package/node_modules/npm/node_modules/graceful-fs/graceful-fs.js +354 -0
- package/node_modules/npm/node_modules/graceful-fs/legacy-streams.js +118 -0
- package/node_modules/npm/node_modules/graceful-fs/package.json +50 -0
- package/node_modules/npm/node_modules/graceful-fs/polyfills.js +342 -0
- package/node_modules/npm/node_modules/har-schema/LICENSE +13 -0
- package/node_modules/npm/node_modules/har-schema/README.md +49 -0
- package/node_modules/npm/node_modules/har-schema/lib/afterRequest.json +30 -0
- package/node_modules/npm/node_modules/har-schema/lib/beforeRequest.json +30 -0
- package/node_modules/npm/node_modules/har-schema/lib/browser.json +20 -0
- package/node_modules/npm/node_modules/har-schema/lib/cache.json +21 -0
- package/node_modules/npm/node_modules/har-schema/lib/content.json +29 -0
- package/node_modules/npm/node_modules/har-schema/lib/cookie.json +36 -0
- package/node_modules/npm/node_modules/har-schema/lib/creator.json +20 -0
- package/node_modules/npm/node_modules/har-schema/lib/entry.json +53 -0
- package/node_modules/npm/node_modules/har-schema/lib/har.json +13 -0
- package/node_modules/npm/node_modules/har-schema/lib/header.json +20 -0
- package/node_modules/npm/node_modules/har-schema/lib/index.js +22 -0
- package/node_modules/npm/node_modules/har-schema/lib/log.json +36 -0
- package/node_modules/npm/node_modules/har-schema/lib/page.json +32 -0
- package/node_modules/npm/node_modules/har-schema/lib/pageTimings.json +18 -0
- package/node_modules/npm/node_modules/har-schema/lib/postData.json +43 -0
- package/node_modules/npm/node_modules/har-schema/lib/query.json +20 -0
- package/node_modules/npm/node_modules/har-schema/lib/request.json +57 -0
- package/node_modules/npm/node_modules/har-schema/lib/response.json +54 -0
- package/node_modules/npm/node_modules/har-schema/lib/timings.json +42 -0
- package/node_modules/npm/node_modules/har-schema/package.json +54 -0
- package/node_modules/npm/node_modules/har-validator/LICENSE +9 -0
- package/node_modules/npm/node_modules/har-validator/README.md +43 -0
- package/node_modules/npm/node_modules/har-validator/lib/async.js +105 -0
- package/node_modules/npm/node_modules/har-validator/lib/error.js +17 -0
- package/node_modules/npm/node_modules/har-validator/lib/promise.js +102 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/.tonic_example.js +20 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/LICENSE +22 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/README.md +1497 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/dist/ajv.bundle.js +7189 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/dist/ajv.min.js +3 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/dist/ajv.min.js.map +1 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/ajv.d.ts +397 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/ajv.js +506 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/cache.js +26 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/compile/async.js +90 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/compile/equal.js +5 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/compile/error_classes.js +34 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/compile/formats.js +142 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/compile/index.js +387 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/compile/resolve.js +270 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/compile/rules.js +66 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/compile/schema_obj.js +9 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/compile/ucs2length.js +20 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/compile/util.js +239 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/data.js +49 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/definition_schema.js +37 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dot/_limit.jst +113 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dot/_limitItems.jst +12 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dot/_limitLength.jst +12 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dot/_limitProperties.jst +12 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dot/allOf.jst +32 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dot/anyOf.jst +46 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dot/coerce.def +51 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dot/comment.jst +9 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dot/const.jst +11 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dot/contains.jst +55 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dot/custom.jst +191 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dot/defaults.def +47 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dot/definitions.def +203 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dot/dependencies.jst +79 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dot/enum.jst +30 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dot/errors.def +194 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dot/format.jst +106 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dot/if.jst +73 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dot/items.jst +98 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dot/missing.def +39 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dot/multipleOf.jst +22 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dot/not.jst +43 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dot/oneOf.jst +54 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dot/pattern.jst +14 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dot/properties.jst +245 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dot/propertyNames.jst +52 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dot/ref.jst +85 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dot/required.jst +108 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dot/uniqueItems.jst +62 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dot/validate.jst +276 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dotjs/README.md +3 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dotjs/_limit.js +163 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dotjs/_limitItems.js +80 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dotjs/_limitLength.js +85 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dotjs/_limitProperties.js +80 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dotjs/allOf.js +42 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dotjs/anyOf.js +73 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dotjs/comment.js +14 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dotjs/const.js +56 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dotjs/contains.js +81 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dotjs/custom.js +228 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dotjs/dependencies.js +168 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dotjs/enum.js +66 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dotjs/format.js +150 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dotjs/if.js +103 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dotjs/index.js +33 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dotjs/items.js +140 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dotjs/multipleOf.js +80 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dotjs/not.js +84 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dotjs/oneOf.js +73 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dotjs/pattern.js +75 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dotjs/properties.js +335 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dotjs/propertyNames.js +81 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dotjs/ref.js +124 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dotjs/required.js +270 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dotjs/uniqueItems.js +86 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/dotjs/validate.js +482 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/keyword.js +146 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/refs/data.json +17 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/refs/json-schema-draft-04.json +149 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/refs/json-schema-draft-06.json +154 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/refs/json-schema-draft-07.json +168 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/lib/refs/json-schema-secure.json +94 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/package.json +106 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/scripts/.eslintrc.yml +3 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/scripts/bundle.js +61 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/scripts/compile-dots.js +73 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/scripts/info +10 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/scripts/prepare-tests +12 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/scripts/publish-built-version +32 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/ajv/scripts/travis-gh-pages +23 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/fast-deep-equal/LICENSE +21 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/fast-deep-equal/README.md +96 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/fast-deep-equal/es6/index.d.ts +2 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/fast-deep-equal/es6/index.js +72 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/fast-deep-equal/es6/react.d.ts +2 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/fast-deep-equal/es6/react.js +79 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/fast-deep-equal/index.d.ts +4 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/fast-deep-equal/index.js +46 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/fast-deep-equal/package.json +61 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/fast-deep-equal/react.d.ts +2 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/fast-deep-equal/react.js +53 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/json-schema-traverse/.eslintrc.yml +27 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/json-schema-traverse/.travis.yml +8 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/json-schema-traverse/LICENSE +21 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/json-schema-traverse/README.md +83 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/json-schema-traverse/index.js +89 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/json-schema-traverse/package.json +43 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/json-schema-traverse/spec/.eslintrc.yml +6 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/json-schema-traverse/spec/fixtures/schema.js +125 -0
- package/node_modules/npm/node_modules/har-validator/node_modules/json-schema-traverse/spec/index.spec.js +171 -0
- package/node_modules/npm/node_modules/har-validator/package.json +43 -0
- package/node_modules/npm/node_modules/has/LICENSE-MIT +22 -0
- package/node_modules/npm/node_modules/has/README.md +18 -0
- package/node_modules/npm/node_modules/has/package.json +48 -0
- package/node_modules/npm/node_modules/has/src/index.js +5 -0
- package/node_modules/npm/node_modules/has/test/index.js +10 -0
- package/node_modules/npm/node_modules/has-flag/index.js +8 -0
- package/node_modules/npm/node_modules/has-flag/license +9 -0
- package/node_modules/npm/node_modules/has-flag/package.json +44 -0
- package/node_modules/npm/node_modules/has-flag/readme.md +70 -0
- package/node_modules/npm/node_modules/has-symbols/.eslintrc +10 -0
- package/node_modules/npm/node_modules/has-symbols/.npmignore +37 -0
- package/node_modules/npm/node_modules/has-symbols/.travis.yml +113 -0
- package/node_modules/npm/node_modules/has-symbols/CHANGELOG.md +3 -0
- package/node_modules/npm/node_modules/has-symbols/LICENSE +21 -0
- package/node_modules/npm/node_modules/has-symbols/README.md +45 -0
- package/node_modules/npm/node_modules/has-symbols/index.js +13 -0
- package/node_modules/npm/node_modules/has-symbols/package.json +79 -0
- package/node_modules/npm/node_modules/has-symbols/shams.js +42 -0
- package/node_modules/npm/node_modules/has-symbols/test/index.js +22 -0
- package/node_modules/npm/node_modules/has-symbols/test/shams/core-js.js +28 -0
- package/node_modules/npm/node_modules/has-symbols/test/shams/get-own-property-symbols.js +28 -0
- package/node_modules/npm/node_modules/has-symbols/test/tests.js +54 -0
- package/node_modules/npm/node_modules/has-unicode/LICENSE +14 -0
- package/node_modules/npm/node_modules/has-unicode/README.md +43 -0
- package/node_modules/npm/node_modules/has-unicode/index.js +16 -0
- package/node_modules/npm/node_modules/has-unicode/package.json +30 -0
- package/node_modules/npm/node_modules/hosted-git-info/CHANGELOG.md +151 -0
- package/node_modules/npm/node_modules/hosted-git-info/LICENSE +13 -0
- package/node_modules/npm/node_modules/hosted-git-info/README.md +133 -0
- package/node_modules/npm/node_modules/hosted-git-info/git-host-info.js +79 -0
- package/node_modules/npm/node_modules/hosted-git-info/git-host.js +156 -0
- package/node_modules/npm/node_modules/hosted-git-info/index.js +148 -0
- package/node_modules/npm/node_modules/hosted-git-info/package.json +40 -0
- package/node_modules/npm/node_modules/http-cache-semantics/README.md +177 -0
- package/node_modules/npm/node_modules/http-cache-semantics/node4/index.js +559 -0
- package/node_modules/npm/node_modules/http-cache-semantics/package.json +22 -0
- package/node_modules/npm/node_modules/http-proxy-agent/.travis.yml +22 -0
- package/node_modules/npm/node_modules/http-proxy-agent/History.md +101 -0
- package/node_modules/npm/node_modules/http-proxy-agent/README.md +74 -0
- package/node_modules/npm/node_modules/http-proxy-agent/index.js +111 -0
- package/node_modules/npm/node_modules/http-proxy-agent/package.json +35 -0
- package/node_modules/npm/node_modules/http-proxy-agent/test/ssl-cert-snakeoil.key +15 -0
- package/node_modules/npm/node_modules/http-proxy-agent/test/ssl-cert-snakeoil.pem +12 -0
- package/node_modules/npm/node_modules/http-proxy-agent/test/test.js +303 -0
- package/node_modules/npm/node_modules/http-signature/.dir-locals.el +6 -0
- package/node_modules/npm/node_modules/http-signature/.npmignore +7 -0
- package/node_modules/npm/node_modules/http-signature/CHANGES.md +46 -0
- package/node_modules/npm/node_modules/http-signature/LICENSE +18 -0
- package/node_modules/npm/node_modules/http-signature/README.md +79 -0
- package/node_modules/npm/node_modules/http-signature/http_signing.md +363 -0
- package/node_modules/npm/node_modules/http-signature/lib/index.js +29 -0
- package/node_modules/npm/node_modules/http-signature/lib/parser.js +315 -0
- package/node_modules/npm/node_modules/http-signature/lib/signer.js +401 -0
- package/node_modules/npm/node_modules/http-signature/lib/utils.js +112 -0
- package/node_modules/npm/node_modules/http-signature/lib/verify.js +88 -0
- package/node_modules/npm/node_modules/http-signature/package.json +39 -0
- package/node_modules/npm/node_modules/https-proxy-agent/.editorconfig +37 -0
- package/node_modules/npm/node_modules/https-proxy-agent/.eslintrc.js +86 -0
- package/node_modules/npm/node_modules/https-proxy-agent/History.md +124 -0
- package/node_modules/npm/node_modules/https-proxy-agent/README.md +137 -0
- package/node_modules/npm/node_modules/https-proxy-agent/index.d.ts +22 -0
- package/node_modules/npm/node_modules/https-proxy-agent/index.js +241 -0
- package/node_modules/npm/node_modules/https-proxy-agent/package.json +36 -0
- package/node_modules/npm/node_modules/humanize-ms/History.md +25 -0
- package/node_modules/npm/node_modules/humanize-ms/LICENSE +17 -0
- package/node_modules/npm/node_modules/humanize-ms/README.md +40 -0
- package/node_modules/npm/node_modules/humanize-ms/index.js +24 -0
- package/node_modules/npm/node_modules/humanize-ms/package.json +37 -0
- package/node_modules/npm/node_modules/iconv-lite/.travis.yml +23 -0
- package/node_modules/npm/node_modules/iconv-lite/Changelog.md +158 -0
- package/node_modules/npm/node_modules/iconv-lite/LICENSE +21 -0
- package/node_modules/npm/node_modules/iconv-lite/README.md +156 -0
- package/node_modules/npm/node_modules/iconv-lite/encodings/dbcs-codec.js +555 -0
- package/node_modules/npm/node_modules/iconv-lite/encodings/dbcs-data.js +176 -0
- package/node_modules/npm/node_modules/iconv-lite/encodings/index.js +22 -0
- package/node_modules/npm/node_modules/iconv-lite/encodings/internal.js +188 -0
- package/node_modules/npm/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
- package/node_modules/npm/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
- package/node_modules/npm/node_modules/iconv-lite/encodings/sbcs-data.js +169 -0
- package/node_modules/npm/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
- package/node_modules/npm/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
- package/node_modules/npm/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
- package/node_modules/npm/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
- package/node_modules/npm/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
- package/node_modules/npm/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
- package/node_modules/npm/node_modules/iconv-lite/encodings/tables/gbk-added.json +55 -0
- package/node_modules/npm/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
- package/node_modules/npm/node_modules/iconv-lite/encodings/utf16.js +177 -0
- package/node_modules/npm/node_modules/iconv-lite/encodings/utf7.js +290 -0
- package/node_modules/npm/node_modules/iconv-lite/lib/bom-handling.js +52 -0
- package/node_modules/npm/node_modules/iconv-lite/lib/extend-node.js +217 -0
- package/node_modules/npm/node_modules/iconv-lite/lib/index.d.ts +24 -0
- package/node_modules/npm/node_modules/iconv-lite/lib/index.js +153 -0
- package/node_modules/npm/node_modules/iconv-lite/lib/streams.js +121 -0
- package/node_modules/npm/node_modules/iconv-lite/package.json +46 -0
- package/node_modules/npm/node_modules/iferr/LICENSE +21 -0
- package/node_modules/npm/node_modules/iferr/README.md +53 -0
- package/node_modules/npm/node_modules/iferr/iferr.js +23 -0
- package/node_modules/npm/node_modules/iferr/package.json +33 -0
- package/node_modules/npm/node_modules/ignore-walk/LICENSE +15 -0
- package/node_modules/npm/node_modules/ignore-walk/README.md +60 -0
- package/node_modules/npm/node_modules/ignore-walk/index.js +269 -0
- package/node_modules/npm/node_modules/ignore-walk/package.json +41 -0
- package/node_modules/npm/node_modules/import-lazy/index.js +53 -0
- package/node_modules/npm/node_modules/import-lazy/license +21 -0
- package/node_modules/npm/node_modules/import-lazy/package.json +44 -0
- package/node_modules/npm/node_modules/import-lazy/readme.md +64 -0
- package/node_modules/npm/node_modules/imurmurhash/README.md +122 -0
- package/node_modules/npm/node_modules/imurmurhash/imurmurhash.js +138 -0
- package/node_modules/npm/node_modules/imurmurhash/imurmurhash.min.js +12 -0
- package/node_modules/npm/node_modules/imurmurhash/package.json +40 -0
- package/node_modules/npm/node_modules/infer-owner/LICENSE +15 -0
- package/node_modules/npm/node_modules/infer-owner/README.md +41 -0
- package/node_modules/npm/node_modules/infer-owner/index.js +71 -0
- package/node_modules/npm/node_modules/infer-owner/package.json +26 -0
- package/node_modules/npm/node_modules/inflight/LICENSE +15 -0
- package/node_modules/npm/node_modules/inflight/README.md +37 -0
- package/node_modules/npm/node_modules/inflight/inflight.js +54 -0
- package/node_modules/npm/node_modules/inflight/package.json +29 -0
- package/node_modules/npm/node_modules/inherits/LICENSE +16 -0
- package/node_modules/npm/node_modules/inherits/README.md +42 -0
- package/node_modules/npm/node_modules/inherits/inherits.js +9 -0
- package/node_modules/npm/node_modules/inherits/inherits_browser.js +27 -0
- package/node_modules/npm/node_modules/inherits/package.json +29 -0
- package/node_modules/npm/node_modules/ini/LICENSE +15 -0
- package/node_modules/npm/node_modules/ini/README.md +102 -0
- package/node_modules/npm/node_modules/ini/ini.js +206 -0
- package/node_modules/npm/node_modules/ini/package.json +33 -0
- package/node_modules/npm/node_modules/init-package-json/CHANGELOG.md +17 -0
- package/node_modules/npm/node_modules/init-package-json/LICENSE +15 -0
- package/node_modules/npm/node_modules/init-package-json/README.md +45 -0
- package/node_modules/npm/node_modules/init-package-json/default-input.js +244 -0
- package/node_modules/npm/node_modules/init-package-json/init-package-json.js +154 -0
- package/node_modules/npm/node_modules/init-package-json/package.json +49 -0
- package/node_modules/npm/node_modules/ip/.jscsrc +46 -0
- package/node_modules/npm/node_modules/ip/.jshintrc +89 -0
- package/node_modules/npm/node_modules/ip/.npmignore +2 -0
- package/node_modules/npm/node_modules/ip/.travis.yml +15 -0
- package/node_modules/npm/node_modules/ip/README.md +90 -0
- package/node_modules/npm/node_modules/ip/lib/ip.js +416 -0
- package/node_modules/npm/node_modules/ip/package.json +21 -0
- package/node_modules/npm/node_modules/ip/test/api-test.js +407 -0
- package/node_modules/npm/node_modules/ip-regex/index.js +24 -0
- package/node_modules/npm/node_modules/ip-regex/license +21 -0
- package/node_modules/npm/node_modules/ip-regex/package.json +45 -0
- package/node_modules/npm/node_modules/ip-regex/readme.md +63 -0
- package/node_modules/npm/node_modules/is-callable/.editorconfig +20 -0
- package/node_modules/npm/node_modules/is-callable/.eslintrc +11 -0
- package/node_modules/npm/node_modules/is-callable/.istanbul.yml +47 -0
- package/node_modules/npm/node_modules/is-callable/.jscs.json +176 -0
- package/node_modules/npm/node_modules/is-callable/.travis.yml +225 -0
- package/node_modules/npm/node_modules/is-callable/CHANGELOG.md +56 -0
- package/node_modules/npm/node_modules/is-callable/LICENSE +22 -0
- package/node_modules/npm/node_modules/is-callable/Makefile +61 -0
- package/node_modules/npm/node_modules/is-callable/README.md +59 -0
- package/node_modules/npm/node_modules/is-callable/index.js +37 -0
- package/node_modules/npm/node_modules/is-callable/package.json +94 -0
- package/node_modules/npm/node_modules/is-callable/test.js +158 -0
- package/node_modules/npm/node_modules/is-ci/LICENSE +21 -0
- package/node_modules/npm/node_modules/is-ci/README.md +50 -0
- package/node_modules/npm/node_modules/is-ci/bin.js +4 -0
- package/node_modules/npm/node_modules/is-ci/index.js +3 -0
- package/node_modules/npm/node_modules/is-ci/node_modules/ci-info/CHANGELOG.md +62 -0
- package/node_modules/npm/node_modules/is-ci/node_modules/ci-info/LICENSE +21 -0
- package/node_modules/npm/node_modules/is-ci/node_modules/ci-info/README.md +107 -0
- package/node_modules/npm/node_modules/is-ci/node_modules/ci-info/index.js +66 -0
- package/node_modules/npm/node_modules/is-ci/node_modules/ci-info/package.json +36 -0
- package/node_modules/npm/node_modules/is-ci/node_modules/ci-info/vendors.json +152 -0
- package/node_modules/npm/node_modules/is-ci/package.json +38 -0
- package/node_modules/npm/node_modules/is-cidr/LICENSE +22 -0
- package/node_modules/npm/node_modules/is-cidr/README.md +51 -0
- package/node_modules/npm/node_modules/is-cidr/index.js +13 -0
- package/node_modules/npm/node_modules/is-cidr/package.json +40 -0
- package/node_modules/npm/node_modules/is-date-object/.eslintrc +9 -0
- package/node_modules/npm/node_modules/is-date-object/.jscs.json +122 -0
- package/node_modules/npm/node_modules/is-date-object/.npmignore +28 -0
- package/node_modules/npm/node_modules/is-date-object/.travis.yml +58 -0
- package/node_modules/npm/node_modules/is-date-object/CHANGELOG.md +10 -0
- package/node_modules/npm/node_modules/is-date-object/LICENSE +22 -0
- package/node_modules/npm/node_modules/is-date-object/Makefile +61 -0
- package/node_modules/npm/node_modules/is-date-object/README.md +53 -0
- package/node_modules/npm/node_modules/is-date-object/index.js +20 -0
- package/node_modules/npm/node_modules/is-date-object/package.json +63 -0
- package/node_modules/npm/node_modules/is-date-object/test.js +33 -0
- package/node_modules/npm/node_modules/is-fullwidth-code-point/index.js +46 -0
- package/node_modules/npm/node_modules/is-fullwidth-code-point/license +21 -0
- package/node_modules/npm/node_modules/is-fullwidth-code-point/package.json +45 -0
- package/node_modules/npm/node_modules/is-fullwidth-code-point/readme.md +39 -0
- package/node_modules/npm/node_modules/is-installed-globally/index.js +5 -0
- package/node_modules/npm/node_modules/is-installed-globally/license +9 -0
- package/node_modules/npm/node_modules/is-installed-globally/package.json +48 -0
- package/node_modules/npm/node_modules/is-installed-globally/readme.md +39 -0
- package/node_modules/npm/node_modules/is-npm/index.js +4 -0
- package/node_modules/npm/node_modules/is-npm/package.json +32 -0
- package/node_modules/npm/node_modules/is-npm/readme.md +30 -0
- package/node_modules/npm/node_modules/is-obj/index.js +5 -0
- package/node_modules/npm/node_modules/is-obj/license +21 -0
- package/node_modules/npm/node_modules/is-obj/package.json +33 -0
- package/node_modules/npm/node_modules/is-obj/readme.md +34 -0
- package/node_modules/npm/node_modules/is-path-inside/index.js +14 -0
- package/node_modules/npm/node_modules/is-path-inside/license +21 -0
- package/node_modules/npm/node_modules/is-path-inside/package.json +37 -0
- package/node_modules/npm/node_modules/is-path-inside/readme.md +34 -0
- package/node_modules/npm/node_modules/is-redirect/index.js +14 -0
- package/node_modules/npm/node_modules/is-redirect/license +21 -0
- package/node_modules/npm/node_modules/is-redirect/package.json +35 -0
- package/node_modules/npm/node_modules/is-redirect/readme.md +28 -0
- package/node_modules/npm/node_modules/is-regex/.eslintrc +9 -0
- package/node_modules/npm/node_modules/is-regex/.jscs.json +176 -0
- package/node_modules/npm/node_modules/is-regex/.npmignore +15 -0
- package/node_modules/npm/node_modules/is-regex/.travis.yml +165 -0
- package/node_modules/npm/node_modules/is-regex/CHANGELOG.md +27 -0
- package/node_modules/npm/node_modules/is-regex/LICENSE +20 -0
- package/node_modules/npm/node_modules/is-regex/Makefile +61 -0
- package/node_modules/npm/node_modules/is-regex/README.md +54 -0
- package/node_modules/npm/node_modules/is-regex/index.js +39 -0
- package/node_modules/npm/node_modules/is-regex/package.json +74 -0
- package/node_modules/npm/node_modules/is-regex/test.js +58 -0
- package/node_modules/npm/node_modules/is-retry-allowed/index.js +62 -0
- package/node_modules/npm/node_modules/is-retry-allowed/license +21 -0
- package/node_modules/npm/node_modules/is-retry-allowed/package.json +29 -0
- package/node_modules/npm/node_modules/is-retry-allowed/readme.md +42 -0
- package/node_modules/npm/node_modules/is-stream/index.js +21 -0
- package/node_modules/npm/node_modules/is-stream/license +21 -0
- package/node_modules/npm/node_modules/is-stream/package.json +38 -0
- package/node_modules/npm/node_modules/is-stream/readme.md +42 -0
- package/node_modules/npm/node_modules/is-symbol/.editorconfig +13 -0
- package/node_modules/npm/node_modules/is-symbol/.eslintrc +9 -0
- package/node_modules/npm/node_modules/is-symbol/.jscs.json +176 -0
- package/node_modules/npm/node_modules/is-symbol/.nvmrc +1 -0
- package/node_modules/npm/node_modules/is-symbol/.travis.yml +241 -0
- package/node_modules/npm/node_modules/is-symbol/CHANGELOG.md +12 -0
- package/node_modules/npm/node_modules/is-symbol/LICENSE +22 -0
- package/node_modules/npm/node_modules/is-symbol/Makefile +61 -0
- package/node_modules/npm/node_modules/is-symbol/README.md +46 -0
- package/node_modules/npm/node_modules/is-symbol/index.js +35 -0
- package/node_modules/npm/node_modules/is-symbol/package.json +68 -0
- package/node_modules/npm/node_modules/is-symbol/test/.eslintrc +7 -0
- package/node_modules/npm/node_modules/is-symbol/test/index.js +92 -0
- package/node_modules/npm/node_modules/is-typedarray/LICENSE.md +18 -0
- package/node_modules/npm/node_modules/is-typedarray/README.md +16 -0
- package/node_modules/npm/node_modules/is-typedarray/index.js +41 -0
- package/node_modules/npm/node_modules/is-typedarray/package.json +30 -0
- package/node_modules/npm/node_modules/is-typedarray/test.js +34 -0
- package/node_modules/npm/node_modules/isarray/.npmignore +1 -0
- package/node_modules/npm/node_modules/isarray/.travis.yml +4 -0
- package/node_modules/npm/node_modules/isarray/Makefile +6 -0
- package/node_modules/npm/node_modules/isarray/README.md +60 -0
- package/node_modules/npm/node_modules/isarray/component.json +19 -0
- package/node_modules/npm/node_modules/isarray/index.js +5 -0
- package/node_modules/npm/node_modules/isarray/package.json +45 -0
- package/node_modules/npm/node_modules/isarray/test.js +20 -0
- package/node_modules/npm/node_modules/isexe/.npmignore +2 -0
- package/node_modules/npm/node_modules/isexe/LICENSE +15 -0
- package/node_modules/npm/node_modules/isexe/README.md +51 -0
- package/node_modules/npm/node_modules/isexe/index.js +57 -0
- package/node_modules/npm/node_modules/isexe/mode.js +41 -0
- package/node_modules/npm/node_modules/isexe/package.json +31 -0
- package/node_modules/npm/node_modules/isexe/test/basic.js +221 -0
- package/node_modules/npm/node_modules/isexe/windows.js +42 -0
- package/node_modules/npm/node_modules/isstream/.jshintrc +59 -0
- package/node_modules/npm/node_modules/isstream/.npmignore +1 -0
- package/node_modules/npm/node_modules/isstream/.travis.yml +12 -0
- package/node_modules/npm/node_modules/isstream/LICENSE.md +11 -0
- package/node_modules/npm/node_modules/isstream/README.md +66 -0
- package/node_modules/npm/node_modules/isstream/isstream.js +27 -0
- package/node_modules/npm/node_modules/isstream/package.json +33 -0
- package/node_modules/npm/node_modules/isstream/test.js +168 -0
- package/node_modules/npm/node_modules/jsbn/.npmignore +2 -0
- package/node_modules/npm/node_modules/jsbn/LICENSE +40 -0
- package/node_modules/npm/node_modules/jsbn/README.md +175 -0
- package/node_modules/npm/node_modules/jsbn/example.html +12 -0
- package/node_modules/npm/node_modules/jsbn/example.js +3 -0
- package/node_modules/npm/node_modules/jsbn/index.js +1357 -0
- package/node_modules/npm/node_modules/jsbn/package.json +21 -0
- package/node_modules/npm/node_modules/json-parse-better-errors/CHANGELOG.md +46 -0
- package/node_modules/npm/node_modules/json-parse-better-errors/LICENSE.md +7 -0
- package/node_modules/npm/node_modules/json-parse-better-errors/README.md +46 -0
- package/node_modules/npm/node_modules/json-parse-better-errors/index.js +38 -0
- package/node_modules/npm/node_modules/json-parse-better-errors/package.json +45 -0
- package/node_modules/npm/node_modules/json-schema/LICENSE +195 -0
- package/node_modules/npm/node_modules/json-schema/README.md +3 -0
- package/node_modules/npm/node_modules/json-schema/lib/links.js +65 -0
- package/node_modules/npm/node_modules/json-schema/lib/validate.js +271 -0
- package/node_modules/npm/node_modules/json-schema/package.json +24 -0
- package/node_modules/npm/node_modules/json-stringify-safe/.npmignore +1 -0
- package/node_modules/npm/node_modules/json-stringify-safe/CHANGELOG.md +14 -0
- package/node_modules/npm/node_modules/json-stringify-safe/LICENSE +15 -0
- package/node_modules/npm/node_modules/json-stringify-safe/Makefile +35 -0
- package/node_modules/npm/node_modules/json-stringify-safe/README.md +52 -0
- package/node_modules/npm/node_modules/json-stringify-safe/package.json +31 -0
- package/node_modules/npm/node_modules/json-stringify-safe/stringify.js +27 -0
- package/node_modules/npm/node_modules/json-stringify-safe/test/mocha.opts +2 -0
- package/node_modules/npm/node_modules/json-stringify-safe/test/stringify_test.js +246 -0
- package/node_modules/npm/node_modules/jsonparse/.npmignore +1 -0
- package/node_modules/npm/node_modules/jsonparse/LICENSE +24 -0
- package/node_modules/npm/node_modules/jsonparse/README.markdown +11 -0
- package/node_modules/npm/node_modules/jsonparse/bench.js +26 -0
- package/node_modules/npm/node_modules/jsonparse/examples/twitterfeed.js +30 -0
- package/node_modules/npm/node_modules/jsonparse/jsonparse.js +413 -0
- package/node_modules/npm/node_modules/jsonparse/package.json +22 -0
- package/node_modules/npm/node_modules/jsonparse/samplejson/basic.json +167 -0
- package/node_modules/npm/node_modules/jsonparse/samplejson/basic2.json +180 -0
- package/node_modules/npm/node_modules/jsonparse/test/big-token.js +24 -0
- package/node_modules/npm/node_modules/jsonparse/test/boundary.js +110 -0
- package/node_modules/npm/node_modules/jsonparse/test/offset.js +67 -0
- package/node_modules/npm/node_modules/jsonparse/test/primitives.js +57 -0
- package/node_modules/npm/node_modules/jsonparse/test/surrogate.js +26 -0
- package/node_modules/npm/node_modules/jsonparse/test/unvalid.js +15 -0
- package/node_modules/npm/node_modules/jsonparse/test/utf8.js +38 -0
- package/node_modules/npm/node_modules/jsprim/CHANGES.md +53 -0
- package/node_modules/npm/node_modules/jsprim/CONTRIBUTING.md +19 -0
- package/node_modules/npm/node_modules/jsprim/LICENSE +19 -0
- package/node_modules/npm/node_modules/jsprim/README.md +287 -0
- package/node_modules/npm/node_modules/jsprim/lib/jsprim.js +735 -0
- package/node_modules/npm/node_modules/jsprim/package.json +20 -0
- package/node_modules/npm/node_modules/latest-version/index.js +4 -0
- package/node_modules/npm/node_modules/latest-version/license +21 -0
- package/node_modules/npm/node_modules/latest-version/package.json +39 -0
- package/node_modules/npm/node_modules/latest-version/readme.md +40 -0
- package/node_modules/npm/node_modules/lazy-property/.npmignore +16 -0
- package/node_modules/npm/node_modules/lazy-property/LICENSE +22 -0
- package/node_modules/npm/node_modules/lazy-property/README.md +44 -0
- package/node_modules/npm/node_modules/lazy-property/component.json +7 -0
- package/node_modules/npm/node_modules/lazy-property/lazyProperty.js +19 -0
- package/node_modules/npm/node_modules/lazy-property/package.json +35 -0
- package/node_modules/npm/node_modules/libcipm/CHANGELOG.md +518 -0
- package/node_modules/npm/node_modules/libcipm/LICENSE.md +19 -0
- package/node_modules/npm/node_modules/libcipm/README.md +32 -0
- package/node_modules/npm/node_modules/libcipm/index.js +429 -0
- package/node_modules/npm/node_modules/libcipm/lib/config/npm-config.js +84 -0
- package/node_modules/npm/node_modules/libcipm/lib/extract.js +67 -0
- package/node_modules/npm/node_modules/libcipm/lib/silentlog.js +13 -0
- package/node_modules/npm/node_modules/libcipm/lib/worker.js +16 -0
- package/node_modules/npm/node_modules/libcipm/package.json +64 -0
- package/node_modules/npm/node_modules/libnpm/CHANGELOG.md +113 -0
- package/node_modules/npm/node_modules/libnpm/LICENSE.md +16 -0
- package/node_modules/npm/node_modules/libnpm/README.md +57 -0
- package/node_modules/npm/node_modules/libnpm/access.js +3 -0
- package/node_modules/npm/node_modules/libnpm/adduser.js +3 -0
- package/node_modules/npm/node_modules/libnpm/config.js +3 -0
- package/node_modules/npm/node_modules/libnpm/extract.js +3 -0
- package/node_modules/npm/node_modules/libnpm/fetch.js +3 -0
- package/node_modules/npm/node_modules/libnpm/get-prefix.js +3 -0
- package/node_modules/npm/node_modules/libnpm/hook.js +3 -0
- package/node_modules/npm/node_modules/libnpm/index.js +29 -0
- package/node_modules/npm/node_modules/libnpm/link-bin.js +3 -0
- package/node_modules/npm/node_modules/libnpm/log.js +3 -0
- package/node_modules/npm/node_modules/libnpm/logical-tree.js +3 -0
- package/node_modules/npm/node_modules/libnpm/login.js +3 -0
- package/node_modules/npm/node_modules/libnpm/manifest.js +3 -0
- package/node_modules/npm/node_modules/libnpm/org.js +3 -0
- package/node_modules/npm/node_modules/libnpm/package.json +58 -0
- package/node_modules/npm/node_modules/libnpm/packument.js +3 -0
- package/node_modules/npm/node_modules/libnpm/parse-arg.js +3 -0
- package/node_modules/npm/node_modules/libnpm/profile.js +3 -0
- package/node_modules/npm/node_modules/libnpm/publish.js +3 -0
- package/node_modules/npm/node_modules/libnpm/read-json.js +3 -0
- package/node_modules/npm/node_modules/libnpm/run-script.js +3 -0
- package/node_modules/npm/node_modules/libnpm/search.js +3 -0
- package/node_modules/npm/node_modules/libnpm/stringify-package.js +3 -0
- package/node_modules/npm/node_modules/libnpm/tarball.js +3 -0
- package/node_modules/npm/node_modules/libnpm/team.js +3 -0
- package/node_modules/npm/node_modules/libnpm/unpublish.js +3 -0
- package/node_modules/npm/node_modules/libnpm/verify-lock.js +3 -0
- package/node_modules/npm/node_modules/libnpmaccess/.travis.yml +7 -0
- package/node_modules/npm/node_modules/libnpmaccess/CHANGELOG.md +129 -0
- package/node_modules/npm/node_modules/libnpmaccess/CODE_OF_CONDUCT.md +151 -0
- package/node_modules/npm/node_modules/libnpmaccess/CONTRIBUTING.md +256 -0
- package/node_modules/npm/node_modules/libnpmaccess/LICENSE +13 -0
- package/node_modules/npm/node_modules/libnpmaccess/PULL_REQUEST_TEMPLATE +7 -0
- package/node_modules/npm/node_modules/libnpmaccess/README.md +258 -0
- package/node_modules/npm/node_modules/libnpmaccess/appveyor.yml +22 -0
- package/node_modules/npm/node_modules/libnpmaccess/index.js +201 -0
- package/node_modules/npm/node_modules/libnpmaccess/package.json +40 -0
- package/node_modules/npm/node_modules/libnpmaccess/test/index.js +347 -0
- package/node_modules/npm/node_modules/libnpmaccess/test/util/tnock.js +12 -0
- package/node_modules/npm/node_modules/libnpmconfig/CHANGELOG.md +51 -0
- package/node_modules/npm/node_modules/libnpmconfig/CODE_OF_CONDUCT.md +151 -0
- package/node_modules/npm/node_modules/libnpmconfig/CONTRIBUTING.md +256 -0
- package/node_modules/npm/node_modules/libnpmconfig/LICENSE +13 -0
- package/node_modules/npm/node_modules/libnpmconfig/PULL_REQUEST_TEMPLATE +7 -0
- package/node_modules/npm/node_modules/libnpmconfig/README.md +40 -0
- package/node_modules/npm/node_modules/libnpmconfig/index.js +107 -0
- package/node_modules/npm/node_modules/libnpmconfig/node_modules/find-up/index.js +46 -0
- package/node_modules/npm/node_modules/libnpmconfig/node_modules/find-up/license +9 -0
- package/node_modules/npm/node_modules/libnpmconfig/node_modules/find-up/package.json +50 -0
- package/node_modules/npm/node_modules/libnpmconfig/node_modules/find-up/readme.md +87 -0
- package/node_modules/npm/node_modules/libnpmconfig/node_modules/locate-path/index.js +24 -0
- package/node_modules/npm/node_modules/libnpmconfig/node_modules/locate-path/license +9 -0
- package/node_modules/npm/node_modules/libnpmconfig/node_modules/locate-path/package.json +44 -0
- package/node_modules/npm/node_modules/libnpmconfig/node_modules/locate-path/readme.md +99 -0
- package/node_modules/npm/node_modules/libnpmconfig/node_modules/p-limit/index.d.ts +29 -0
- package/node_modules/npm/node_modules/libnpmconfig/node_modules/p-limit/index.js +52 -0
- package/node_modules/npm/node_modules/libnpmconfig/node_modules/p-limit/license +9 -0
- package/node_modules/npm/node_modules/libnpmconfig/node_modules/p-limit/package.json +51 -0
- package/node_modules/npm/node_modules/libnpmconfig/node_modules/p-limit/readme.md +90 -0
- package/node_modules/npm/node_modules/libnpmconfig/node_modules/p-locate/index.js +34 -0
- package/node_modules/npm/node_modules/libnpmconfig/node_modules/p-locate/license +9 -0
- package/node_modules/npm/node_modules/libnpmconfig/node_modules/p-locate/package.json +51 -0
- package/node_modules/npm/node_modules/libnpmconfig/node_modules/p-locate/readme.md +88 -0
- package/node_modules/npm/node_modules/libnpmconfig/node_modules/p-try/index.d.ts +39 -0
- package/node_modules/npm/node_modules/libnpmconfig/node_modules/p-try/index.js +9 -0
- package/node_modules/npm/node_modules/libnpmconfig/node_modules/p-try/license +9 -0
- package/node_modules/npm/node_modules/libnpmconfig/node_modules/p-try/package.json +42 -0
- package/node_modules/npm/node_modules/libnpmconfig/node_modules/p-try/readme.md +58 -0
- package/node_modules/npm/node_modules/libnpmconfig/package.json +38 -0
- package/node_modules/npm/node_modules/libnpmhook/CHANGELOG.md +101 -0
- package/node_modules/npm/node_modules/libnpmhook/LICENSE.md +16 -0
- package/node_modules/npm/node_modules/libnpmhook/README.md +267 -0
- package/node_modules/npm/node_modules/libnpmhook/index.js +80 -0
- package/node_modules/npm/node_modules/libnpmhook/package.json +42 -0
- package/node_modules/npm/node_modules/libnpmorg/.travis.yml +7 -0
- package/node_modules/npm/node_modules/libnpmorg/CHANGELOG.md +21 -0
- package/node_modules/npm/node_modules/libnpmorg/CODE_OF_CONDUCT.md +151 -0
- package/node_modules/npm/node_modules/libnpmorg/CONTRIBUTING.md +256 -0
- package/node_modules/npm/node_modules/libnpmorg/LICENSE +13 -0
- package/node_modules/npm/node_modules/libnpmorg/PULL_REQUEST_TEMPLATE +7 -0
- package/node_modules/npm/node_modules/libnpmorg/README.md +144 -0
- package/node_modules/npm/node_modules/libnpmorg/appveyor.yml +22 -0
- package/node_modules/npm/node_modules/libnpmorg/index.js +71 -0
- package/node_modules/npm/node_modules/libnpmorg/package.json +48 -0
- package/node_modules/npm/node_modules/libnpmorg/test/index.js +81 -0
- package/node_modules/npm/node_modules/libnpmorg/test/util/tnock.js +12 -0
- package/node_modules/npm/node_modules/libnpmpublish/.travis.yml +7 -0
- package/node_modules/npm/node_modules/libnpmpublish/CHANGELOG.md +55 -0
- package/node_modules/npm/node_modules/libnpmpublish/CODE_OF_CONDUCT.md +151 -0
- package/node_modules/npm/node_modules/libnpmpublish/CONTRIBUTING.md +256 -0
- package/node_modules/npm/node_modules/libnpmpublish/LICENSE +13 -0
- package/node_modules/npm/node_modules/libnpmpublish/PULL_REQUEST_TEMPLATE +7 -0
- package/node_modules/npm/node_modules/libnpmpublish/README.md +111 -0
- package/node_modules/npm/node_modules/libnpmpublish/appveyor.yml +22 -0
- package/node_modules/npm/node_modules/libnpmpublish/index.js +4 -0
- package/node_modules/npm/node_modules/libnpmpublish/package.json +47 -0
- package/node_modules/npm/node_modules/libnpmpublish/publish.js +218 -0
- package/node_modules/npm/node_modules/libnpmpublish/test/publish.js +1048 -0
- package/node_modules/npm/node_modules/libnpmpublish/test/unpublish.js +249 -0
- package/node_modules/npm/node_modules/libnpmpublish/test/util/mock-tarball.js +47 -0
- package/node_modules/npm/node_modules/libnpmpublish/test/util/tnock.js +12 -0
- package/node_modules/npm/node_modules/libnpmpublish/unpublish.js +86 -0
- package/node_modules/npm/node_modules/libnpmsearch/.travis.yml +7 -0
- package/node_modules/npm/node_modules/libnpmsearch/CHANGELOG.md +42 -0
- package/node_modules/npm/node_modules/libnpmsearch/CODE_OF_CONDUCT.md +151 -0
- package/node_modules/npm/node_modules/libnpmsearch/CONTRIBUTING.md +256 -0
- package/node_modules/npm/node_modules/libnpmsearch/LICENSE +13 -0
- package/node_modules/npm/node_modules/libnpmsearch/PULL_REQUEST_TEMPLATE +7 -0
- package/node_modules/npm/node_modules/libnpmsearch/README.md +169 -0
- package/node_modules/npm/node_modules/libnpmsearch/appveyor.yml +22 -0
- package/node_modules/npm/node_modules/libnpmsearch/index.js +80 -0
- package/node_modules/npm/node_modules/libnpmsearch/package.json +45 -0
- package/node_modules/npm/node_modules/libnpmsearch/test/index.js +300 -0
- package/node_modules/npm/node_modules/libnpmsearch/test/util/tnock.js +12 -0
- package/node_modules/npm/node_modules/libnpmteam/.travis.yml +7 -0
- package/node_modules/npm/node_modules/libnpmteam/CHANGELOG.md +28 -0
- package/node_modules/npm/node_modules/libnpmteam/CODE_OF_CONDUCT.md +151 -0
- package/node_modules/npm/node_modules/libnpmteam/CONTRIBUTING.md +256 -0
- package/node_modules/npm/node_modules/libnpmteam/LICENSE +13 -0
- package/node_modules/npm/node_modules/libnpmteam/PULL_REQUEST_TEMPLATE +7 -0
- package/node_modules/npm/node_modules/libnpmteam/README.md +185 -0
- package/node_modules/npm/node_modules/libnpmteam/appveyor.yml +22 -0
- package/node_modules/npm/node_modules/libnpmteam/index.js +106 -0
- package/node_modules/npm/node_modules/libnpmteam/package.json +39 -0
- package/node_modules/npm/node_modules/libnpmteam/test/index.js +138 -0
- package/node_modules/npm/node_modules/libnpmteam/test/util/tnock.js +12 -0
- package/node_modules/npm/node_modules/libnpx/CHANGELOG.md +825 -0
- package/node_modules/npm/node_modules/libnpx/LICENSE.md +16 -0
- package/node_modules/npm/node_modules/libnpx/README.md +165 -0
- package/node_modules/npm/node_modules/libnpx/auto-fallback.js +69 -0
- package/node_modules/npm/node_modules/libnpx/child.js +86 -0
- package/node_modules/npm/node_modules/libnpx/get-prefix.js +54 -0
- package/node_modules/npm/node_modules/libnpx/index.js +370 -0
- package/node_modules/npm/node_modules/libnpx/libnpx.1 +175 -0
- package/node_modules/npm/node_modules/libnpx/locales/ca.json +28 -0
- package/node_modules/npm/node_modules/libnpx/locales/cs.json +28 -0
- package/node_modules/npm/node_modules/libnpx/locales/de.json +29 -0
- package/node_modules/npm/node_modules/libnpx/locales/en.json +30 -0
- package/node_modules/npm/node_modules/libnpx/locales/es.json +28 -0
- package/node_modules/npm/node_modules/libnpx/locales/fr.json +28 -0
- package/node_modules/npm/node_modules/libnpx/locales/id.json +29 -0
- package/node_modules/npm/node_modules/libnpx/locales/it.json +28 -0
- package/node_modules/npm/node_modules/libnpx/locales/ja.json +28 -0
- package/node_modules/npm/node_modules/libnpx/locales/ko.json +29 -0
- package/node_modules/npm/node_modules/libnpx/locales/nb.json +29 -0
- package/node_modules/npm/node_modules/libnpx/locales/nl.json +29 -0
- package/node_modules/npm/node_modules/libnpx/locales/nn.json +30 -0
- package/node_modules/npm/node_modules/libnpx/locales/no.json +29 -0
- package/node_modules/npm/node_modules/libnpx/locales/pl.json +29 -0
- package/node_modules/npm/node_modules/libnpx/locales/pt_BR.json +28 -0
- package/node_modules/npm/node_modules/libnpx/locales/ro.json +28 -0
- package/node_modules/npm/node_modules/libnpx/locales/ru.json +28 -0
- package/node_modules/npm/node_modules/libnpx/locales/sr.json +29 -0
- package/node_modules/npm/node_modules/libnpx/locales/tr.json +28 -0
- package/node_modules/npm/node_modules/libnpx/locales/uk.json +29 -0
- package/node_modules/npm/node_modules/libnpx/locales/zh_CN.json +29 -0
- package/node_modules/npm/node_modules/libnpx/locales/zh_TW.json +29 -0
- package/node_modules/npm/node_modules/libnpx/package.json +71 -0
- package/node_modules/npm/node_modules/libnpx/parse-args.js +241 -0
- package/node_modules/npm/node_modules/libnpx/util.js +17 -0
- package/node_modules/npm/node_modules/libnpx/y.js +21 -0
- package/node_modules/npm/node_modules/lock-verify/LICENSE +14 -0
- package/node_modules/npm/node_modules/lock-verify/README.md +22 -0
- package/node_modules/npm/node_modules/lock-verify/index.js +81 -0
- package/node_modules/npm/node_modules/lock-verify/package.json +30 -0
- package/node_modules/npm/node_modules/lockfile/.travis.yml +11 -0
- package/node_modules/npm/node_modules/lockfile/CHANGELOG.md +109 -0
- package/node_modules/npm/node_modules/lockfile/LICENSE +15 -0
- package/node_modules/npm/node_modules/lockfile/README.md +86 -0
- package/node_modules/npm/node_modules/lockfile/gen-changelog.sh +9 -0
- package/node_modules/npm/node_modules/lockfile/lockfile.js +320 -0
- package/node_modules/npm/node_modules/lockfile/package.json +34 -0
- package/node_modules/npm/node_modules/lockfile/sockets.md +27 -0
- package/node_modules/npm/node_modules/lockfile/speedtest.js +63 -0
- package/node_modules/npm/node_modules/lockfile/test/basic.js +292 -0
- package/node_modules/npm/node_modules/lockfile/test/fixtures/bad-child.js +5 -0
- package/node_modules/npm/node_modules/lockfile/test/fixtures/child.js +3 -0
- package/node_modules/npm/node_modules/lockfile/test/retry-time.js +67 -0
- package/node_modules/npm/node_modules/lockfile/test/stale-contention.js +85 -0
- package/node_modules/npm/node_modules/lockfile/test/unlock-no-cb.js +10 -0
- package/node_modules/npm/node_modules/lodash._baseindexof/LICENSE.txt +22 -0
- package/node_modules/npm/node_modules/lodash._baseindexof/README.md +20 -0
- package/node_modules/npm/node_modules/lodash._baseindexof/index.js +57 -0
- package/node_modules/npm/node_modules/lodash._baseindexof/package.json +18 -0
- package/node_modules/npm/node_modules/lodash._baseuniq/LICENSE +47 -0
- package/node_modules/npm/node_modules/lodash._baseuniq/README.md +18 -0
- package/node_modules/npm/node_modules/lodash._baseuniq/index.js +801 -0
- package/node_modules/npm/node_modules/lodash._baseuniq/package.json +20 -0
- package/node_modules/npm/node_modules/lodash._bindcallback/LICENSE.txt +22 -0
- package/node_modules/npm/node_modules/lodash._bindcallback/README.md +20 -0
- package/node_modules/npm/node_modules/lodash._bindcallback/index.js +65 -0
- package/node_modules/npm/node_modules/lodash._bindcallback/package.json +18 -0
- package/node_modules/npm/node_modules/lodash._cacheindexof/LICENSE.txt +22 -0
- package/node_modules/npm/node_modules/lodash._cacheindexof/README.md +20 -0
- package/node_modules/npm/node_modules/lodash._cacheindexof/index.js +53 -0
- package/node_modules/npm/node_modules/lodash._cacheindexof/package.json +18 -0
- package/node_modules/npm/node_modules/lodash._createcache/LICENSE +22 -0
- package/node_modules/npm/node_modules/lodash._createcache/README.md +20 -0
- package/node_modules/npm/node_modules/lodash._createcache/index.js +91 -0
- package/node_modules/npm/node_modules/lodash._createcache/package.json +21 -0
- package/node_modules/npm/node_modules/lodash._createset/LICENSE +47 -0
- package/node_modules/npm/node_modules/lodash._createset/README.md +18 -0
- package/node_modules/npm/node_modules/lodash._createset/index.js +280 -0
- package/node_modules/npm/node_modules/lodash._createset/package.json +16 -0
- package/node_modules/npm/node_modules/lodash._getnative/LICENSE +22 -0
- package/node_modules/npm/node_modules/lodash._getnative/README.md +20 -0
- package/node_modules/npm/node_modules/lodash._getnative/index.js +137 -0
- package/node_modules/npm/node_modules/lodash._getnative/package.json +18 -0
- package/node_modules/npm/node_modules/lodash._root/LICENSE +23 -0
- package/node_modules/npm/node_modules/lodash._root/README.md +18 -0
- package/node_modules/npm/node_modules/lodash._root/index.js +59 -0
- package/node_modules/npm/node_modules/lodash._root/package.json +16 -0
- package/node_modules/npm/node_modules/lodash.clonedeep/LICENSE +47 -0
- package/node_modules/npm/node_modules/lodash.clonedeep/README.md +18 -0
- package/node_modules/npm/node_modules/lodash.clonedeep/index.js +1748 -0
- package/node_modules/npm/node_modules/lodash.clonedeep/package.json +17 -0
- package/node_modules/npm/node_modules/lodash.restparam/LICENSE.txt +22 -0
- package/node_modules/npm/node_modules/lodash.restparam/README.md +20 -0
- package/node_modules/npm/node_modules/lodash.restparam/index.js +67 -0
- package/node_modules/npm/node_modules/lodash.restparam/package.json +19 -0
- package/node_modules/npm/node_modules/lodash.union/LICENSE +47 -0
- package/node_modules/npm/node_modules/lodash.union/README.md +18 -0
- package/node_modules/npm/node_modules/lodash.union/index.js +1181 -0
- package/node_modules/npm/node_modules/lodash.union/package.json +17 -0
- package/node_modules/npm/node_modules/lodash.uniq/LICENSE +47 -0
- package/node_modules/npm/node_modules/lodash.uniq/README.md +18 -0
- package/node_modules/npm/node_modules/lodash.uniq/index.js +896 -0
- package/node_modules/npm/node_modules/lodash.uniq/package.json +17 -0
- package/node_modules/npm/node_modules/lodash.without/LICENSE +47 -0
- package/node_modules/npm/node_modules/lodash.without/README.md +18 -0
- package/node_modules/npm/node_modules/lodash.without/index.js +1051 -0
- package/node_modules/npm/node_modules/lodash.without/package.json +17 -0
- package/node_modules/npm/node_modules/lowercase-keys/index.js +11 -0
- package/node_modules/npm/node_modules/lowercase-keys/license +21 -0
- package/node_modules/npm/node_modules/lowercase-keys/package.json +35 -0
- package/node_modules/npm/node_modules/lowercase-keys/readme.md +33 -0
- package/node_modules/npm/node_modules/lru-cache/LICENSE +15 -0
- package/node_modules/npm/node_modules/lru-cache/README.md +166 -0
- package/node_modules/npm/node_modules/lru-cache/index.js +334 -0
- package/node_modules/npm/node_modules/lru-cache/package.json +32 -0
- package/node_modules/npm/node_modules/make-dir/index.js +85 -0
- package/node_modules/npm/node_modules/make-dir/license +9 -0
- package/node_modules/npm/node_modules/make-dir/package.json +54 -0
- package/node_modules/npm/node_modules/make-dir/readme.md +116 -0
- package/node_modules/npm/node_modules/make-fetch-happen/CHANGELOG.md +587 -0
- package/node_modules/npm/node_modules/make-fetch-happen/LICENSE +16 -0
- package/node_modules/npm/node_modules/make-fetch-happen/README.md +404 -0
- package/node_modules/npm/node_modules/make-fetch-happen/agent.js +171 -0
- package/node_modules/npm/node_modules/make-fetch-happen/cache.js +245 -0
- package/node_modules/npm/node_modules/make-fetch-happen/index.js +482 -0
- package/node_modules/npm/node_modules/make-fetch-happen/package.json +63 -0
- package/node_modules/npm/node_modules/make-fetch-happen/warning.js +24 -0
- package/node_modules/npm/node_modules/meant/.github/workflows/ci.yml +20 -0
- package/node_modules/npm/node_modules/meant/CHANGELOG.md +37 -0
- package/node_modules/npm/node_modules/meant/LICENSE +21 -0
- package/node_modules/npm/node_modules/meant/README.md +67 -0
- package/node_modules/npm/node_modules/meant/index.js +49 -0
- package/node_modules/npm/node_modules/meant/package.json +28 -0
- package/node_modules/npm/node_modules/meant/test.js +11 -0
- package/node_modules/npm/node_modules/mime-db/HISTORY.md +384 -0
- package/node_modules/npm/node_modules/mime-db/LICENSE +22 -0
- package/node_modules/npm/node_modules/mime-db/README.md +94 -0
- package/node_modules/npm/node_modules/mime-db/db.json +7621 -0
- package/node_modules/npm/node_modules/mime-db/index.js +11 -0
- package/node_modules/npm/node_modules/mime-db/package.json +57 -0
- package/node_modules/npm/node_modules/mime-types/HISTORY.md +270 -0
- package/node_modules/npm/node_modules/mime-types/LICENSE +23 -0
- package/node_modules/npm/node_modules/mime-types/README.md +108 -0
- package/node_modules/npm/node_modules/mime-types/index.js +188 -0
- package/node_modules/npm/node_modules/mime-types/package.json +43 -0
- package/node_modules/npm/node_modules/minimatch/LICENSE +15 -0
- package/node_modules/npm/node_modules/minimatch/README.md +209 -0
- package/node_modules/npm/node_modules/minimatch/minimatch.js +923 -0
- package/node_modules/npm/node_modules/minimatch/package.json +30 -0
- package/node_modules/npm/node_modules/minimist/.travis.yml +8 -0
- package/node_modules/npm/node_modules/minimist/LICENSE +18 -0
- package/node_modules/npm/node_modules/minimist/example/parse.js +2 -0
- package/node_modules/npm/node_modules/minimist/index.js +249 -0
- package/node_modules/npm/node_modules/minimist/package.json +45 -0
- package/node_modules/npm/node_modules/minimist/readme.markdown +98 -0
- package/node_modules/npm/node_modules/minimist/test/all_bool.js +32 -0
- package/node_modules/npm/node_modules/minimist/test/bool.js +178 -0
- package/node_modules/npm/node_modules/minimist/test/dash.js +31 -0
- package/node_modules/npm/node_modules/minimist/test/default_bool.js +35 -0
- package/node_modules/npm/node_modules/minimist/test/dotted.js +22 -0
- package/node_modules/npm/node_modules/minimist/test/kv_short.js +16 -0
- package/node_modules/npm/node_modules/minimist/test/long.js +31 -0
- package/node_modules/npm/node_modules/minimist/test/num.js +36 -0
- package/node_modules/npm/node_modules/minimist/test/parse.js +197 -0
- package/node_modules/npm/node_modules/minimist/test/parse_modified.js +9 -0
- package/node_modules/npm/node_modules/minimist/test/proto.js +60 -0
- package/node_modules/npm/node_modules/minimist/test/short.js +67 -0
- package/node_modules/npm/node_modules/minimist/test/stop_early.js +15 -0
- package/node_modules/npm/node_modules/minimist/test/unknown.js +102 -0
- package/node_modules/npm/node_modules/minimist/test/whitespace.js +8 -0
- package/node_modules/npm/node_modules/minizlib/LICENSE +26 -0
- package/node_modules/npm/node_modules/minizlib/README.md +53 -0
- package/node_modules/npm/node_modules/minizlib/constants.js +115 -0
- package/node_modules/npm/node_modules/minizlib/index.js +320 -0
- package/node_modules/npm/node_modules/minizlib/node_modules/minipass/LICENSE +15 -0
- package/node_modules/npm/node_modules/minizlib/node_modules/minipass/README.md +606 -0
- package/node_modules/npm/node_modules/minizlib/node_modules/minipass/index.js +537 -0
- package/node_modules/npm/node_modules/minizlib/node_modules/minipass/package.json +37 -0
- package/node_modules/npm/node_modules/minizlib/package.json +38 -0
- package/node_modules/npm/node_modules/mississippi/changelog.md +10 -0
- package/node_modules/npm/node_modules/mississippi/index.js +10 -0
- package/node_modules/npm/node_modules/mississippi/license +7 -0
- package/node_modules/npm/node_modules/mississippi/package.json +35 -0
- package/node_modules/npm/node_modules/mississippi/readme.md +411 -0
- package/node_modules/npm/node_modules/mkdirp/LICENSE +21 -0
- package/node_modules/npm/node_modules/mkdirp/bin/cmd.js +33 -0
- package/node_modules/npm/node_modules/mkdirp/bin/usage.txt +12 -0
- package/node_modules/npm/node_modules/mkdirp/index.js +99 -0
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/.travis.yml +8 -0
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/LICENSE +18 -0
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/example/parse.js +2 -0
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/index.js +249 -0
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/package.json +45 -0
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/readme.markdown +98 -0
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/all_bool.js +32 -0
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/bool.js +178 -0
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/dash.js +31 -0
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/default_bool.js +35 -0
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/dotted.js +22 -0
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/kv_short.js +16 -0
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/long.js +31 -0
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/num.js +36 -0
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/parse.js +197 -0
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/parse_modified.js +9 -0
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/proto.js +60 -0
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/short.js +67 -0
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/stop_early.js +15 -0
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/unknown.js +102 -0
- package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/test/whitespace.js +8 -0
- package/node_modules/npm/node_modules/mkdirp/package.json +34 -0
- package/node_modules/npm/node_modules/mkdirp/readme.markdown +100 -0
- package/node_modules/npm/node_modules/move-concurrently/LICENSE +14 -0
- package/node_modules/npm/node_modules/move-concurrently/README.md +53 -0
- package/node_modules/npm/node_modules/move-concurrently/README.md~ +52 -0
- package/node_modules/npm/node_modules/move-concurrently/move.js +84 -0
- package/node_modules/npm/node_modules/move-concurrently/node_modules/aproba/LICENSE +14 -0
- package/node_modules/npm/node_modules/move-concurrently/node_modules/aproba/README.md +94 -0
- package/node_modules/npm/node_modules/move-concurrently/node_modules/aproba/index.js +105 -0
- package/node_modules/npm/node_modules/move-concurrently/node_modules/aproba/package.json +34 -0
- package/node_modules/npm/node_modules/move-concurrently/package.json +42 -0
- package/node_modules/npm/node_modules/ms/index.js +162 -0
- package/node_modules/npm/node_modules/ms/license.md +21 -0
- package/node_modules/npm/node_modules/ms/package.json +37 -0
- package/node_modules/npm/node_modules/ms/readme.md +60 -0
- package/node_modules/npm/node_modules/mute-stream/.nyc_output/33508.json +1 -0
- package/node_modules/npm/node_modules/mute-stream/.nyc_output/33510.json +1 -0
- package/node_modules/npm/node_modules/mute-stream/.travis.yml +9 -0
- package/node_modules/npm/node_modules/mute-stream/LICENSE +15 -0
- package/node_modules/npm/node_modules/mute-stream/README.md +68 -0
- package/node_modules/npm/node_modules/mute-stream/coverage/lcov-report/__root__/index.html +93 -0
- package/node_modules/npm/node_modules/mute-stream/coverage/lcov-report/__root__/mute.js.html +500 -0
- package/node_modules/npm/node_modules/mute-stream/coverage/lcov-report/base.css +212 -0
- package/node_modules/npm/node_modules/mute-stream/coverage/lcov-report/index.html +93 -0
- package/node_modules/npm/node_modules/mute-stream/coverage/lcov-report/prettify.css +1 -0
- package/node_modules/npm/node_modules/mute-stream/coverage/lcov-report/prettify.js +1 -0
- package/node_modules/npm/node_modules/mute-stream/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/node_modules/npm/node_modules/mute-stream/coverage/lcov-report/sorter.js +158 -0
- package/node_modules/npm/node_modules/mute-stream/coverage/lcov.info +155 -0
- package/node_modules/npm/node_modules/mute-stream/mute.js +145 -0
- package/node_modules/npm/node_modules/mute-stream/package.json +26 -0
- package/node_modules/npm/node_modules/mute-stream/test/basic.js +207 -0
- package/node_modules/npm/node_modules/node-fetch-npm/CHANGELOG.md +252 -0
- package/node_modules/npm/node_modules/node-fetch-npm/LICENSE.md +22 -0
- package/node_modules/npm/node_modules/node-fetch-npm/README.md +398 -0
- package/node_modules/npm/node_modules/node-fetch-npm/package.json +75 -0
- package/node_modules/npm/node_modules/node-fetch-npm/src/blob.js +109 -0
- package/node_modules/npm/node_modules/node-fetch-npm/src/body.js +411 -0
- package/node_modules/npm/node_modules/node-fetch-npm/src/common.js +92 -0
- package/node_modules/npm/node_modules/node-fetch-npm/src/fetch-error.js +35 -0
- package/node_modules/npm/node_modules/node-fetch-npm/src/headers.js +296 -0
- package/node_modules/npm/node_modules/node-fetch-npm/src/index.js +214 -0
- package/node_modules/npm/node_modules/node-fetch-npm/src/request.js +174 -0
- package/node_modules/npm/node_modules/node-fetch-npm/src/response.js +71 -0
- package/node_modules/npm/node_modules/node-gyp/.github/ISSUE_TEMPLATE.md +27 -0
- package/node_modules/npm/node_modules/node-gyp/.github/PULL_REQUEST_TEMPLATE.md +17 -0
- package/node_modules/npm/node_modules/node-gyp/.github/workflows/Python_tests.yml +40 -0
- package/node_modules/npm/node_modules/node-gyp/.travis.yml +108 -0
- package/node_modules/npm/node_modules/node-gyp/CHANGELOG.md +394 -0
- package/node_modules/npm/node_modules/node-gyp/CONTRIBUTING.md +34 -0
- package/node_modules/npm/node_modules/node-gyp/LICENSE +24 -0
- package/node_modules/npm/node_modules/node-gyp/README.md +242 -0
- package/node_modules/npm/node_modules/node-gyp/addon.gypi +164 -0
- package/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js +141 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/AUTHORS +13 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/DEPS +24 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/LICENSE +27 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/OWNERS +1 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/PRESUBMIT.py +138 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/codereview.settings +10 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/data/win/large-pdb-shim.cc +12 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/gyp +8 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/gyp.bat +5 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py +50 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSNew.py +338 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSProject.py +208 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings.py +1104 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings_test.py +1489 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSToolFile.py +58 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUserFile.py +147 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUtil.py +270 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSVersion.py +455 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/__init__.py +557 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common.py +638 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common_test.py +72 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml.py +163 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml_test.py +106 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/flock_tool.py +54 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/__init__.py +0 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/analyzer.py +743 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/android.py +1097 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/cmake.py +1226 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/compile_commands_json.py +115 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/dump_dependency_json.py +100 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/eclipse.py +431 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypd.py +94 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypsh.py +56 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py +2265 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs.py +3522 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs_test.py +40 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja.py +2426 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja_test.py +45 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode.py +1301 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode_test.py +23 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input.py +2902 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input_test.py +90 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/mac_tool.py +614 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/msvs_emulation.py +1104 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/ninja_syntax.py +160 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/simple_copy.py +50 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/win_tool.py +327 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py +1660 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_ninja.py +270 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcodeproj_file.py +2922 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xml_fix.py +69 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/samples/samples +81 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/samples/samples.bat +5 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/setup.py +19 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/tools/README +15 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/tools/Xcode/README +5 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/tools/Xcode/Specifications/gyp.pbfilespec +27 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/tools/Xcode/Specifications/gyp.xclangspec +226 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/tools/emacs/README +12 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/tools/emacs/gyp-tests.el +63 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/tools/emacs/gyp.el +275 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/tools/emacs/run-unit-tests.sh +7 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/tools/emacs/testdata/media.gyp +1105 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/tools/emacs/testdata/media.gyp.fontified +1107 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/tools/graphviz.py +102 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/tools/pretty_gyp.py +157 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/tools/pretty_sln.py +171 -0
- package/node_modules/npm/node_modules/node-gyp/gyp/tools/pretty_vcproj.py +337 -0
- package/node_modules/npm/node_modules/node-gyp/lib/Find-VisualStudio.cs +250 -0
- package/node_modules/npm/node_modules/node-gyp/lib/build.js +204 -0
- package/node_modules/npm/node_modules/node-gyp/lib/clean.js +15 -0
- package/node_modules/npm/node_modules/node-gyp/lib/configure.js +386 -0
- package/node_modules/npm/node_modules/node-gyp/lib/find-node-directory.js +63 -0
- package/node_modules/npm/node_modules/node-gyp/lib/find-python.js +321 -0
- package/node_modules/npm/node_modules/node-gyp/lib/find-visualstudio.js +434 -0
- package/node_modules/npm/node_modules/node-gyp/lib/install.js +448 -0
- package/node_modules/npm/node_modules/node-gyp/lib/list.js +27 -0
- package/node_modules/npm/node_modules/node-gyp/lib/node-gyp.js +210 -0
- package/node_modules/npm/node_modules/node-gyp/lib/process-release.js +147 -0
- package/node_modules/npm/node_modules/node-gyp/lib/proxy.js +92 -0
- package/node_modules/npm/node_modules/node-gyp/lib/rebuild.js +13 -0
- package/node_modules/npm/node_modules/node-gyp/lib/remove.js +46 -0
- package/node_modules/npm/node_modules/node-gyp/lib/util.js +64 -0
- package/node_modules/npm/node_modules/node-gyp/macOS_Catalina.md +83 -0
- package/node_modules/npm/node_modules/node-gyp/package.json +51 -0
- package/node_modules/npm/node_modules/node-gyp/src/win_delay_load_hook.cc +39 -0
- package/node_modules/npm/node_modules/node-gyp/test/common.js +3 -0
- package/node_modules/npm/node_modules/node-gyp/test/fixtures/VS_2017_BuildTools_minimal.txt +1 -0
- package/node_modules/npm/node_modules/node-gyp/test/fixtures/VS_2017_Community_workload.txt +1 -0
- package/node_modules/npm/node_modules/node-gyp/test/fixtures/VS_2017_Express.txt +1 -0
- package/node_modules/npm/node_modules/node-gyp/test/fixtures/VS_2017_Unusable.txt +1 -0
- package/node_modules/npm/node_modules/node-gyp/test/fixtures/VS_2019_BuildTools_minimal.txt +1 -0
- package/node_modules/npm/node_modules/node-gyp/test/fixtures/VS_2019_Community_workload.txt +1 -0
- package/node_modules/npm/node_modules/node-gyp/test/fixtures/VS_2019_Preview.txt +1 -0
- package/node_modules/npm/node_modules/node-gyp/test/fixtures/ca-bundle.crt +40 -0
- package/node_modules/npm/node_modules/node-gyp/test/fixtures/ca.crt +21 -0
- package/node_modules/npm/node_modules/node-gyp/test/fixtures/server.crt +21 -0
- package/node_modules/npm/node_modules/node-gyp/test/fixtures/server.key +27 -0
- package/node_modules/npm/node_modules/node-gyp/test/fixtures/test-charmap.py +30 -0
- package/node_modules/npm/node_modules/node-gyp/test/process-exec-sync.js +140 -0
- package/node_modules/npm/node_modules/node-gyp/test/simple-proxy.js +27 -0
- package/node_modules/npm/node_modules/node-gyp/test/test-addon.js +150 -0
- package/node_modules/npm/node_modules/node-gyp/test/test-configure-python.js +78 -0
- package/node_modules/npm/node_modules/node-gyp/test/test-download.js +268 -0
- package/node_modules/npm/node_modules/node-gyp/test/test-find-accessible-sync.js +84 -0
- package/node_modules/npm/node_modules/node-gyp/test/test-find-node-directory.js +119 -0
- package/node_modules/npm/node_modules/node-gyp/test/test-find-python.js +232 -0
- package/node_modules/npm/node_modules/node-gyp/test/test-find-visualstudio.js +676 -0
- package/node_modules/npm/node_modules/node-gyp/test/test-install.js +38 -0
- package/node_modules/npm/node_modules/node-gyp/test/test-options.js +25 -0
- package/node_modules/npm/node_modules/node-gyp/test/test-process-release.js +434 -0
- package/node_modules/npm/node_modules/nopt/CHANGELOG.md +58 -0
- package/node_modules/npm/node_modules/nopt/LICENSE +15 -0
- package/node_modules/npm/node_modules/nopt/README.md +213 -0
- package/node_modules/npm/node_modules/nopt/bin/nopt.js +54 -0
- package/node_modules/npm/node_modules/nopt/lib/nopt.js +441 -0
- package/node_modules/npm/node_modules/nopt/package.json +30 -0
- package/node_modules/npm/node_modules/normalize-package-data/AUTHORS +4 -0
- package/node_modules/npm/node_modules/normalize-package-data/LICENSE +30 -0
- package/node_modules/npm/node_modules/normalize-package-data/README.md +106 -0
- package/node_modules/npm/node_modules/normalize-package-data/lib/extract_description.js +14 -0
- package/node_modules/npm/node_modules/normalize-package-data/lib/fixer.js +418 -0
- package/node_modules/npm/node_modules/normalize-package-data/lib/make_warning.js +23 -0
- package/node_modules/npm/node_modules/normalize-package-data/lib/normalize.js +39 -0
- package/node_modules/npm/node_modules/normalize-package-data/lib/safe_format.js +9 -0
- package/node_modules/npm/node_modules/normalize-package-data/lib/typos.json +25 -0
- package/node_modules/npm/node_modules/normalize-package-data/lib/warning_messages.json +30 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/.editorconfig +20 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/.eslintignore +1 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/.eslintrc +31 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/.travis.yml +269 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/CHANGELOG.md +629 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/LICENSE +18 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/appveyor.yml +47 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/changelog.hbs +36 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/example/async.js +5 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/example/sync.js +3 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/index.js +8 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/lib/async.js +229 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/lib/caller.js +8 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/lib/core.js +53 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/lib/core.json +73 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/lib/node-modules-paths.js +42 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/lib/normalize-options.js +10 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/lib/sync.js +154 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/package.json +42 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/readme.markdown +179 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/.eslintrc +5 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/core.js +82 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/dotdot/abc/index.js +2 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/dotdot/index.js +1 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/dotdot.js +29 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/faulty_basedir.js +29 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/filter.js +34 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/filter_sync.js +26 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/mock.js +143 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/mock_sync.js +67 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/module_dir/xmodules/aaa/index.js +1 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/module_dir/ymodules/aaa/index.js +1 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/module_dir/zmodules/bbb/main.js +1 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/module_dir/zmodules/bbb/package.json +3 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/module_dir.js +56 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/node-modules-paths.js +121 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/node_path/x/aaa/index.js +1 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/node_path/x/ccc/index.js +1 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/node_path/y/bbb/index.js +1 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/node_path/y/ccc/index.js +1 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/node_path.js +70 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/nonstring.js +9 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/pathfilter/deep_ref/main.js +0 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/pathfilter.js +75 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/precedence/aaa/index.js +1 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/precedence/aaa/main.js +1 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/precedence/aaa.js +1 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/precedence/bbb/main.js +1 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/precedence/bbb.js +1 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/precedence.js +23 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/resolver/baz/doom.js +0 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/resolver/baz/package.json +3 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/resolver/baz/quux.js +1 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/resolver/browser_field/a.js +0 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/resolver/browser_field/b.js +0 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/resolver/browser_field/package.json +5 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/resolver/cup.coffee +1 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/resolver/dot_main/index.js +1 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/resolver/dot_main/package.json +3 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/resolver/dot_slash_main/index.js +1 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/resolver/dot_slash_main/package.json +3 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/resolver/foo.js +1 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/resolver/incorrect_main/index.js +2 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/resolver/incorrect_main/package.json +3 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/resolver/invalid_main/package.json +7 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/resolver/mug.coffee +0 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/resolver/mug.js +0 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/resolver/multirepo/lerna.json +6 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/resolver/multirepo/package.json +20 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/resolver/multirepo/packages/package-a/index.js +35 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json +14 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/resolver/multirepo/packages/package-b/index.js +0 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json +14 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/resolver/other_path/lib/other-lib.js +0 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/resolver/other_path/root.js +0 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/resolver/quux/foo/index.js +1 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/resolver/same_names/foo/index.js +1 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/resolver/same_names/foo.js +1 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/resolver/symlinked/_/node_modules/foo.js +0 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/resolver/symlinked/_/symlink_target/.gitkeep +0 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/resolver/without_basedir/main.js +5 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/resolver.js +429 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/resolver_sync.js +340 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/subdirs.js +13 -0
- package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/test/symlinks.js +56 -0
- package/node_modules/npm/node_modules/normalize-package-data/package.json +31 -0
- package/node_modules/npm/node_modules/npm-audit-report/CHANGELOG.md +81 -0
- package/node_modules/npm/node_modules/npm-audit-report/LICENSE +16 -0
- package/node_modules/npm/node_modules/npm-audit-report/README.md +40 -0
- package/node_modules/npm/node_modules/npm-audit-report/index.js +25 -0
- package/node_modules/npm/node_modules/npm-audit-report/lib/utils.js +60 -0
- package/node_modules/npm/node_modules/npm-audit-report/package.json +48 -0
- package/node_modules/npm/node_modules/npm-audit-report/reporters/detail.js +197 -0
- package/node_modules/npm/node_modules/npm-audit-report/reporters/install.js +61 -0
- package/node_modules/npm/node_modules/npm-audit-report/reporters/json.js +17 -0
- package/node_modules/npm/node_modules/npm-audit-report/reporters/parseable.js +99 -0
- package/node_modules/npm/node_modules/npm-audit-report/reporters/quiet.js +14 -0
- package/node_modules/npm/node_modules/npm-bundled/LICENSE +15 -0
- package/node_modules/npm/node_modules/npm-bundled/README.md +48 -0
- package/node_modules/npm/node_modules/npm-bundled/index.js +249 -0
- package/node_modules/npm/node_modules/npm-bundled/package.json +30 -0
- package/node_modules/npm/node_modules/npm-cache-filename/LICENSE +15 -0
- package/node_modules/npm/node_modules/npm-cache-filename/README.md +21 -0
- package/node_modules/npm/node_modules/npm-cache-filename/index.js +24 -0
- package/node_modules/npm/node_modules/npm-cache-filename/package.json +23 -0
- package/node_modules/npm/node_modules/npm-cache-filename/test.js +23 -0
- package/node_modules/npm/node_modules/npm-install-checks/CHANGELOG.md +10 -0
- package/node_modules/npm/node_modules/npm-install-checks/LICENSE +27 -0
- package/node_modules/npm/node_modules/npm-install-checks/README.md +27 -0
- package/node_modules/npm/node_modules/npm-install-checks/index.js +145 -0
- package/node_modules/npm/node_modules/npm-install-checks/package.json +35 -0
- package/node_modules/npm/node_modules/npm-lifecycle/CHANGELOG.md +189 -0
- package/node_modules/npm/node_modules/npm-lifecycle/LICENSE +235 -0
- package/node_modules/npm/node_modules/npm-lifecycle/README.md +49 -0
- package/node_modules/npm/node_modules/npm-lifecycle/index.js +497 -0
- package/node_modules/npm/node_modules/npm-lifecycle/lib/spawn.js +65 -0
- package/node_modules/npm/node_modules/npm-lifecycle/node-gyp-bin/node-gyp +6 -0
- package/node_modules/npm/node_modules/npm-lifecycle/node-gyp-bin/node-gyp.cmd +5 -0
- package/node_modules/npm/node_modules/npm-lifecycle/package.json +52 -0
- package/node_modules/npm/node_modules/npm-logical-tree/CHANGELOG.md +46 -0
- package/node_modules/npm/node_modules/npm-logical-tree/LICENSE.md +16 -0
- package/node_modules/npm/node_modules/npm-logical-tree/README.md +147 -0
- package/node_modules/npm/node_modules/npm-logical-tree/index.js +192 -0
- package/node_modules/npm/node_modules/npm-logical-tree/package.json +53 -0
- package/node_modules/npm/node_modules/npm-normalize-package-bin/.github/settings.yml +2 -0
- package/node_modules/npm/node_modules/npm-normalize-package-bin/.npmignore +24 -0
- package/node_modules/npm/node_modules/npm-normalize-package-bin/LICENSE +15 -0
- package/node_modules/npm/node_modules/npm-normalize-package-bin/README.md +14 -0
- package/node_modules/npm/node_modules/npm-normalize-package-bin/index.js +60 -0
- package/node_modules/npm/node_modules/npm-normalize-package-bin/package-lock.json +3529 -0
- package/node_modules/npm/node_modules/npm-normalize-package-bin/package.json +21 -0
- package/node_modules/npm/node_modules/npm-normalize-package-bin/test/array.js +37 -0
- package/node_modules/npm/node_modules/npm-normalize-package-bin/test/nobin.js +35 -0
- package/node_modules/npm/node_modules/npm-normalize-package-bin/test/object.js +141 -0
- package/node_modules/npm/node_modules/npm-normalize-package-bin/test/string.js +37 -0
- package/node_modules/npm/node_modules/npm-package-arg/CHANGELOG.md +26 -0
- package/node_modules/npm/node_modules/npm-package-arg/LICENSE +15 -0
- package/node_modules/npm/node_modules/npm-package-arg/README.md +83 -0
- package/node_modules/npm/node_modules/npm-package-arg/npa.js +301 -0
- package/node_modules/npm/node_modules/npm-package-arg/package.json +44 -0
- package/node_modules/npm/node_modules/npm-packlist/LICENSE +15 -0
- package/node_modules/npm/node_modules/npm-packlist/README.md +68 -0
- package/node_modules/npm/node_modules/npm-packlist/index.js +289 -0
- package/node_modules/npm/node_modules/npm-packlist/package.json +45 -0
- package/node_modules/npm/node_modules/npm-pick-manifest/CHANGELOG.md +167 -0
- package/node_modules/npm/node_modules/npm-pick-manifest/LICENSE.md +16 -0
- package/node_modules/npm/node_modules/npm-pick-manifest/README.md +84 -0
- package/node_modules/npm/node_modules/npm-pick-manifest/index.js +136 -0
- package/node_modules/npm/node_modules/npm-pick-manifest/package.json +51 -0
- package/node_modules/npm/node_modules/npm-profile/CHANGELOG.md +45 -0
- package/node_modules/npm/node_modules/npm-profile/LICENSE +15 -0
- package/node_modules/npm/node_modules/npm-profile/README.md +556 -0
- package/node_modules/npm/node_modules/npm-profile/index.js +289 -0
- package/node_modules/npm/node_modules/npm-profile/package.json +29 -0
- package/node_modules/npm/node_modules/npm-registry-fetch/CHANGELOG.md +280 -0
- package/node_modules/npm/node_modules/npm-registry-fetch/LICENSE.md +16 -0
- package/node_modules/npm/node_modules/npm-registry-fetch/README.md +636 -0
- package/node_modules/npm/node_modules/npm-registry-fetch/auth.js +57 -0
- package/node_modules/npm/node_modules/npm-registry-fetch/check-response.js +122 -0
- package/node_modules/npm/node_modules/npm-registry-fetch/config.js +98 -0
- package/node_modules/npm/node_modules/npm-registry-fetch/errors.js +79 -0
- package/node_modules/npm/node_modules/npm-registry-fetch/index.js +203 -0
- package/node_modules/npm/node_modules/npm-registry-fetch/node_modules/safe-buffer/LICENSE +21 -0
- package/node_modules/npm/node_modules/npm-registry-fetch/node_modules/safe-buffer/README.md +584 -0
- package/node_modules/npm/node_modules/npm-registry-fetch/node_modules/safe-buffer/index.d.ts +187 -0
- package/node_modules/npm/node_modules/npm-registry-fetch/node_modules/safe-buffer/index.js +65 -0
- package/node_modules/npm/node_modules/npm-registry-fetch/node_modules/safe-buffer/package.json +51 -0
- package/node_modules/npm/node_modules/npm-registry-fetch/package.json +65 -0
- package/node_modules/npm/node_modules/npm-registry-fetch/silentlog.js +14 -0
- package/node_modules/npm/node_modules/npm-run-path/index.js +39 -0
- package/node_modules/npm/node_modules/npm-run-path/license +21 -0
- package/node_modules/npm/node_modules/npm-run-path/package.json +45 -0
- package/node_modules/npm/node_modules/npm-run-path/readme.md +81 -0
- package/node_modules/npm/node_modules/npm-user-validate/LICENSE +27 -0
- package/node_modules/npm/node_modules/npm-user-validate/README.md +6 -0
- package/node_modules/npm/node_modules/npm-user-validate/npm-user-validate.js +61 -0
- package/node_modules/npm/node_modules/npm-user-validate/package.json +29 -0
- package/node_modules/npm/node_modules/npmlog/CHANGELOG.md +49 -0
- package/node_modules/npm/node_modules/npmlog/LICENSE +15 -0
- package/node_modules/npm/node_modules/npmlog/README.md +216 -0
- package/node_modules/npm/node_modules/npmlog/log.js +309 -0
- package/node_modules/npm/node_modules/npmlog/package.json +28 -0
- package/node_modules/npm/node_modules/number-is-nan/index.js +4 -0
- package/node_modules/npm/node_modules/number-is-nan/license +21 -0
- package/node_modules/npm/node_modules/number-is-nan/package.json +35 -0
- package/node_modules/npm/node_modules/number-is-nan/readme.md +28 -0
- package/node_modules/npm/node_modules/oauth-sign/LICENSE +55 -0
- package/node_modules/npm/node_modules/oauth-sign/README.md +11 -0
- package/node_modules/npm/node_modules/oauth-sign/index.js +146 -0
- package/node_modules/npm/node_modules/oauth-sign/package.json +23 -0
- package/node_modules/npm/node_modules/object-assign/index.js +90 -0
- package/node_modules/npm/node_modules/object-assign/license +21 -0
- package/node_modules/npm/node_modules/object-assign/package.json +42 -0
- package/node_modules/npm/node_modules/object-assign/readme.md +61 -0
- package/node_modules/npm/node_modules/object-keys/.editorconfig +13 -0
- package/node_modules/npm/node_modules/object-keys/.eslintrc +17 -0
- package/node_modules/npm/node_modules/object-keys/.jscs.json +175 -0
- package/node_modules/npm/node_modules/object-keys/.travis.yml +225 -0
- package/node_modules/npm/node_modules/object-keys/CHANGELOG.md +220 -0
- package/node_modules/npm/node_modules/object-keys/LICENSE +21 -0
- package/node_modules/npm/node_modules/object-keys/README.md +76 -0
- package/node_modules/npm/node_modules/object-keys/index.js +141 -0
- package/node_modules/npm/node_modules/object-keys/isArguments.js +17 -0
- package/node_modules/npm/node_modules/object-keys/package.json +90 -0
- package/node_modules/npm/node_modules/object-keys/test/index.js +5 -0
- package/node_modules/npm/node_modules/object.getownpropertydescriptors/.editorconfig +13 -0
- package/node_modules/npm/node_modules/object.getownpropertydescriptors/.eslintrc +10 -0
- package/node_modules/npm/node_modules/object.getownpropertydescriptors/.jscs.json +176 -0
- package/node_modules/npm/node_modules/object.getownpropertydescriptors/.npmignore +28 -0
- package/node_modules/npm/node_modules/object.getownpropertydescriptors/.travis.yml +96 -0
- package/node_modules/npm/node_modules/object.getownpropertydescriptors/CHANGELOG.md +51 -0
- package/node_modules/npm/node_modules/object.getownpropertydescriptors/LICENSE +22 -0
- package/node_modules/npm/node_modules/object.getownpropertydescriptors/Makefile +61 -0
- package/node_modules/npm/node_modules/object.getownpropertydescriptors/README.md +99 -0
- package/node_modules/npm/node_modules/object.getownpropertydescriptors/implementation.js +44 -0
- package/node_modules/npm/node_modules/object.getownpropertydescriptors/index.js +15 -0
- package/node_modules/npm/node_modules/object.getownpropertydescriptors/package.json +77 -0
- package/node_modules/npm/node_modules/object.getownpropertydescriptors/polyfill.js +7 -0
- package/node_modules/npm/node_modules/object.getownpropertydescriptors/shim.js +14 -0
- package/node_modules/npm/node_modules/object.getownpropertydescriptors/test/.eslintrc +8 -0
- package/node_modules/npm/node_modules/object.getownpropertydescriptors/test/index.js +17 -0
- package/node_modules/npm/node_modules/object.getownpropertydescriptors/test/shimmed.js +35 -0
- package/node_modules/npm/node_modules/object.getownpropertydescriptors/test/tests.js +127 -0
- package/node_modules/npm/node_modules/once/LICENSE +15 -0
- package/node_modules/npm/node_modules/once/README.md +79 -0
- package/node_modules/npm/node_modules/once/once.js +42 -0
- package/node_modules/npm/node_modules/once/package.json +33 -0
- package/node_modules/npm/node_modules/opener/LICENSE.txt +47 -0
- package/node_modules/npm/node_modules/opener/README.md +54 -0
- package/node_modules/npm/node_modules/opener/bin/opener-bin.js +10 -0
- package/node_modules/npm/node_modules/opener/lib/opener.js +66 -0
- package/node_modules/npm/node_modules/opener/package.json +20 -0
- package/node_modules/npm/node_modules/os-homedir/index.js +24 -0
- package/node_modules/npm/node_modules/os-homedir/license +21 -0
- package/node_modules/npm/node_modules/os-homedir/package.json +41 -0
- package/node_modules/npm/node_modules/os-homedir/readme.md +31 -0
- package/node_modules/npm/node_modules/os-tmpdir/index.js +25 -0
- package/node_modules/npm/node_modules/os-tmpdir/license +21 -0
- package/node_modules/npm/node_modules/os-tmpdir/package.json +41 -0
- package/node_modules/npm/node_modules/os-tmpdir/readme.md +32 -0
- package/node_modules/npm/node_modules/osenv/LICENSE +15 -0
- package/node_modules/npm/node_modules/osenv/README.md +63 -0
- package/node_modules/npm/node_modules/osenv/osenv.js +72 -0
- package/node_modules/npm/node_modules/osenv/package.json +37 -0
- package/node_modules/npm/node_modules/p-finally/index.js +15 -0
- package/node_modules/npm/node_modules/p-finally/license +21 -0
- package/node_modules/npm/node_modules/p-finally/package.json +42 -0
- package/node_modules/npm/node_modules/p-finally/readme.md +47 -0
- package/node_modules/npm/node_modules/package-json/index.js +67 -0
- package/node_modules/npm/node_modules/package-json/license +21 -0
- package/node_modules/npm/node_modules/package-json/package.json +43 -0
- package/node_modules/npm/node_modules/package-json/readme.md +91 -0
- package/node_modules/npm/node_modules/pacote/CHANGELOG.md +1417 -0
- package/node_modules/npm/node_modules/pacote/LICENSE +21 -0
- package/node_modules/npm/node_modules/pacote/README.md +288 -0
- package/node_modules/npm/node_modules/pacote/extract.js +99 -0
- package/node_modules/npm/node_modules/pacote/index.js +10 -0
- package/node_modules/npm/node_modules/pacote/lib/extract-stream.js +89 -0
- package/node_modules/npm/node_modules/pacote/lib/fetch.js +82 -0
- package/node_modules/npm/node_modules/pacote/lib/fetchers/alias.js +24 -0
- package/node_modules/npm/node_modules/pacote/lib/fetchers/directory.js +89 -0
- package/node_modules/npm/node_modules/pacote/lib/fetchers/file.js +78 -0
- package/node_modules/npm/node_modules/pacote/lib/fetchers/git.js +178 -0
- package/node_modules/npm/node_modules/pacote/lib/fetchers/hosted.js +3 -0
- package/node_modules/npm/node_modules/pacote/lib/fetchers/range.js +3 -0
- package/node_modules/npm/node_modules/pacote/lib/fetchers/registry/index.js +32 -0
- package/node_modules/npm/node_modules/pacote/lib/fetchers/registry/manifest.js +81 -0
- package/node_modules/npm/node_modules/pacote/lib/fetchers/registry/packument.js +92 -0
- package/node_modules/npm/node_modules/pacote/lib/fetchers/registry/tarball.js +102 -0
- package/node_modules/npm/node_modules/pacote/lib/fetchers/remote.js +34 -0
- package/node_modules/npm/node_modules/pacote/lib/fetchers/tag.js +3 -0
- package/node_modules/npm/node_modules/pacote/lib/fetchers/version.js +3 -0
- package/node_modules/npm/node_modules/pacote/lib/finalize-manifest.js +248 -0
- package/node_modules/npm/node_modules/pacote/lib/util/cache-key.js +6 -0
- package/node_modules/npm/node_modules/pacote/lib/util/finished.js +17 -0
- package/node_modules/npm/node_modules/pacote/lib/util/git.js +292 -0
- package/node_modules/npm/node_modules/pacote/lib/util/opt-check.js +48 -0
- package/node_modules/npm/node_modules/pacote/lib/util/pack-dir.js +44 -0
- package/node_modules/npm/node_modules/pacote/lib/util/proclog.js +23 -0
- package/node_modules/npm/node_modules/pacote/lib/util/read-json.js +15 -0
- package/node_modules/npm/node_modules/pacote/lib/with-tarball-stream.js +135 -0
- package/node_modules/npm/node_modules/pacote/manifest.js +38 -0
- package/node_modules/npm/node_modules/pacote/node_modules/minipass/LICENSE +15 -0
- package/node_modules/npm/node_modules/pacote/node_modules/minipass/README.md +606 -0
- package/node_modules/npm/node_modules/pacote/node_modules/minipass/index.js +537 -0
- package/node_modules/npm/node_modules/pacote/node_modules/minipass/package.json +37 -0
- package/node_modules/npm/node_modules/pacote/package.json +91 -0
- package/node_modules/npm/node_modules/pacote/packument.js +29 -0
- package/node_modules/npm/node_modules/pacote/prefetch.js +64 -0
- package/node_modules/npm/node_modules/pacote/tarball.js +67 -0
- package/node_modules/npm/node_modules/parallel-transform/.npmignore +1 -0
- package/node_modules/npm/node_modules/parallel-transform/LICENSE +20 -0
- package/node_modules/npm/node_modules/parallel-transform/README.md +54 -0
- package/node_modules/npm/node_modules/parallel-transform/index.js +105 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/readable-stream/.travis.yml +55 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/readable-stream/LICENSE +47 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/readable-stream/README.md +58 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/readable-stream/duplex-browser.js +1 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/readable-stream/duplex.js +1 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/readable-stream/lib/_stream_duplex.js +131 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/readable-stream/lib/_stream_passthrough.js +47 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/readable-stream/lib/_stream_readable.js +1019 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/readable-stream/lib/_stream_transform.js +214 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/readable-stream/lib/_stream_writable.js +687 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/readable-stream/lib/internal/streams/BufferList.js +79 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/readable-stream/lib/internal/streams/destroy.js +74 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/readable-stream/package.json +52 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/readable-stream/passthrough.js +1 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/readable-stream/readable-browser.js +7 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/readable-stream/readable.js +19 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/readable-stream/transform.js +1 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/readable-stream/writable-browser.js +1 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/readable-stream/writable.js +8 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/string_decoder/.travis.yml +50 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/string_decoder/LICENSE +48 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/string_decoder/README.md +47 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/string_decoder/lib/string_decoder.js +296 -0
- package/node_modules/npm/node_modules/parallel-transform/node_modules/string_decoder/package.json +31 -0
- package/node_modules/npm/node_modules/parallel-transform/package.json +20 -0
- package/node_modules/npm/node_modules/path-exists/index.js +17 -0
- package/node_modules/npm/node_modules/path-exists/license +21 -0
- package/node_modules/npm/node_modules/path-exists/package.json +40 -0
- package/node_modules/npm/node_modules/path-exists/readme.md +50 -0
- package/node_modules/npm/node_modules/path-is-absolute/index.js +20 -0
- package/node_modules/npm/node_modules/path-is-absolute/license +21 -0
- package/node_modules/npm/node_modules/path-is-absolute/package.json +43 -0
- package/node_modules/npm/node_modules/path-is-absolute/readme.md +59 -0
- package/node_modules/npm/node_modules/path-is-inside/LICENSE.txt +47 -0
- package/node_modules/npm/node_modules/path-is-inside/lib/path-is-inside.js +28 -0
- package/node_modules/npm/node_modules/path-is-inside/package.json +21 -0
- package/node_modules/npm/node_modules/path-key/index.js +13 -0
- package/node_modules/npm/node_modules/path-key/license +21 -0
- package/node_modules/npm/node_modules/path-key/package.json +39 -0
- package/node_modules/npm/node_modules/path-key/readme.md +51 -0
- package/node_modules/npm/node_modules/path-parse/LICENSE +21 -0
- package/node_modules/npm/node_modules/path-parse/README.md +42 -0
- package/node_modules/npm/node_modules/path-parse/index.js +75 -0
- package/node_modules/npm/node_modules/path-parse/package.json +33 -0
- package/node_modules/npm/node_modules/performance-now/.npmignore +1 -0
- package/node_modules/npm/node_modules/performance-now/.tm_properties +7 -0
- package/node_modules/npm/node_modules/performance-now/.travis.yml +6 -0
- package/node_modules/npm/node_modules/performance-now/README.md +30 -0
- package/node_modules/npm/node_modules/performance-now/lib/performance-now.js +36 -0
- package/node_modules/npm/node_modules/performance-now/lib/performance-now.js.map +10 -0
- package/node_modules/npm/node_modules/performance-now/license.txt +7 -0
- package/node_modules/npm/node_modules/performance-now/package.json +35 -0
- package/node_modules/npm/node_modules/performance-now/src/index.d.ts +8 -0
- package/node_modules/npm/node_modules/performance-now/src/performance-now.coffee +17 -0
- package/node_modules/npm/node_modules/performance-now/test/mocha.opts +3 -0
- package/node_modules/npm/node_modules/performance-now/test/performance-now.coffee +43 -0
- package/node_modules/npm/node_modules/performance-now/test/scripts/delayed-call.coffee +11 -0
- package/node_modules/npm/node_modules/performance-now/test/scripts/delayed-require.coffee +12 -0
- package/node_modules/npm/node_modules/performance-now/test/scripts/difference.coffee +6 -0
- package/node_modules/npm/node_modules/performance-now/test/scripts/initial-value.coffee +10 -0
- package/node_modules/npm/node_modules/performance-now/test/scripts.coffee +27 -0
- package/node_modules/npm/node_modules/pify/index.js +84 -0
- package/node_modules/npm/node_modules/pify/license +9 -0
- package/node_modules/npm/node_modules/pify/package.json +51 -0
- package/node_modules/npm/node_modules/pify/readme.md +131 -0
- package/node_modules/npm/node_modules/prepend-http/index.js +14 -0
- package/node_modules/npm/node_modules/prepend-http/license +21 -0
- package/node_modules/npm/node_modules/prepend-http/package.json +35 -0
- package/node_modules/npm/node_modules/prepend-http/readme.md +31 -0
- package/node_modules/npm/node_modules/process-nextick-args/index.js +44 -0
- package/node_modules/npm/node_modules/process-nextick-args/license.md +19 -0
- package/node_modules/npm/node_modules/process-nextick-args/package.json +25 -0
- package/node_modules/npm/node_modules/process-nextick-args/readme.md +18 -0
- package/node_modules/npm/node_modules/promise-inflight/LICENSE +14 -0
- package/node_modules/npm/node_modules/promise-inflight/README.md +34 -0
- package/node_modules/npm/node_modules/promise-inflight/inflight.js +36 -0
- package/node_modules/npm/node_modules/promise-inflight/package.json +24 -0
- package/node_modules/npm/node_modules/promise-retry/.editorconfig +15 -0
- package/node_modules/npm/node_modules/promise-retry/.jshintrc +64 -0
- package/node_modules/npm/node_modules/promise-retry/.npmignore +2 -0
- package/node_modules/npm/node_modules/promise-retry/.travis.yml +5 -0
- package/node_modules/npm/node_modules/promise-retry/LICENSE +19 -0
- package/node_modules/npm/node_modules/promise-retry/README.md +92 -0
- package/node_modules/npm/node_modules/promise-retry/index.js +52 -0
- package/node_modules/npm/node_modules/promise-retry/node_modules/retry/.npmignore +2 -0
- package/node_modules/npm/node_modules/promise-retry/node_modules/retry/License +21 -0
- package/node_modules/npm/node_modules/promise-retry/node_modules/retry/Makefile +22 -0
- package/node_modules/npm/node_modules/promise-retry/node_modules/retry/README.md +215 -0
- package/node_modules/npm/node_modules/promise-retry/node_modules/retry/equation.gif +0 -0
- package/node_modules/npm/node_modules/promise-retry/node_modules/retry/example/dns.js +31 -0
- package/node_modules/npm/node_modules/promise-retry/node_modules/retry/example/stop.js +40 -0
- package/node_modules/npm/node_modules/promise-retry/node_modules/retry/index.js +1 -0
- package/node_modules/npm/node_modules/promise-retry/node_modules/retry/lib/retry.js +99 -0
- package/node_modules/npm/node_modules/promise-retry/node_modules/retry/lib/retry_operation.js +143 -0
- package/node_modules/npm/node_modules/promise-retry/node_modules/retry/package.json +24 -0
- package/node_modules/npm/node_modules/promise-retry/node_modules/retry/test/common.js +10 -0
- package/node_modules/npm/node_modules/promise-retry/node_modules/retry/test/integration/test-forever.js +24 -0
- package/node_modules/npm/node_modules/promise-retry/node_modules/retry/test/integration/test-retry-operation.js +176 -0
- package/node_modules/npm/node_modules/promise-retry/node_modules/retry/test/integration/test-retry-wrap.js +77 -0
- package/node_modules/npm/node_modules/promise-retry/node_modules/retry/test/integration/test-timeouts.js +69 -0
- package/node_modules/npm/node_modules/promise-retry/node_modules/retry/test/runner.js +5 -0
- package/node_modules/npm/node_modules/promise-retry/package.json +37 -0
- package/node_modules/npm/node_modules/promise-retry/test/test.js +263 -0
- package/node_modules/npm/node_modules/promzard/.npmignore +1 -0
- package/node_modules/npm/node_modules/promzard/LICENSE +15 -0
- package/node_modules/npm/node_modules/promzard/README.md +133 -0
- package/node_modules/npm/node_modules/promzard/example/buffer.js +12 -0
- package/node_modules/npm/node_modules/promzard/example/index.js +11 -0
- package/node_modules/npm/node_modules/promzard/example/npm-init/README.md +8 -0
- package/node_modules/npm/node_modules/promzard/example/npm-init/init-input.js +191 -0
- package/node_modules/npm/node_modules/promzard/example/npm-init/init.js +37 -0
- package/node_modules/npm/node_modules/promzard/example/npm-init/package.json +10 -0
- package/node_modules/npm/node_modules/promzard/example/substack-input.js +61 -0
- package/node_modules/npm/node_modules/promzard/package.json +20 -0
- package/node_modules/npm/node_modules/promzard/promzard.js +238 -0
- package/node_modules/npm/node_modules/promzard/test/basic.js +91 -0
- package/node_modules/npm/node_modules/promzard/test/buffer.js +84 -0
- package/node_modules/npm/node_modules/promzard/test/exports.input +5 -0
- package/node_modules/npm/node_modules/promzard/test/exports.js +48 -0
- package/node_modules/npm/node_modules/promzard/test/fn.input +18 -0
- package/node_modules/npm/node_modules/promzard/test/fn.js +56 -0
- package/node_modules/npm/node_modules/promzard/test/simple.input +8 -0
- package/node_modules/npm/node_modules/promzard/test/simple.js +30 -0
- package/node_modules/npm/node_modules/promzard/test/validate.input +8 -0
- package/node_modules/npm/node_modules/promzard/test/validate.js +20 -0
- package/node_modules/npm/node_modules/proto-list/LICENSE +15 -0
- package/node_modules/npm/node_modules/proto-list/README.md +3 -0
- package/node_modules/npm/node_modules/proto-list/package.json +18 -0
- package/node_modules/npm/node_modules/proto-list/proto-list.js +88 -0
- package/node_modules/npm/node_modules/proto-list/test/basic.js +61 -0
- package/node_modules/npm/node_modules/protoduck/CHANGELOG.md +66 -0
- package/node_modules/npm/node_modules/protoduck/LICENSE +21 -0
- package/node_modules/npm/node_modules/protoduck/README.md +346 -0
- package/node_modules/npm/node_modules/protoduck/index.js +349 -0
- package/node_modules/npm/node_modules/protoduck/package.json +60 -0
- package/node_modules/npm/node_modules/prr/.jshintrc +61 -0
- package/node_modules/npm/node_modules/prr/.npmignore +1 -0
- package/node_modules/npm/node_modules/prr/.travis.yml +10 -0
- package/node_modules/npm/node_modules/prr/LICENSE.md +11 -0
- package/node_modules/npm/node_modules/prr/README.md +47 -0
- package/node_modules/npm/node_modules/prr/package.json +26 -0
- package/node_modules/npm/node_modules/prr/prr.js +63 -0
- package/node_modules/npm/node_modules/prr/test.js +169 -0
- package/node_modules/npm/node_modules/pseudomap/LICENSE +15 -0
- package/node_modules/npm/node_modules/pseudomap/README.md +60 -0
- package/node_modules/npm/node_modules/pseudomap/map.js +9 -0
- package/node_modules/npm/node_modules/pseudomap/package.json +25 -0
- package/node_modules/npm/node_modules/pseudomap/pseudomap.js +113 -0
- package/node_modules/npm/node_modules/pseudomap/test/basic.js +86 -0
- package/node_modules/npm/node_modules/psl/.eslintignore +1 -0
- package/node_modules/npm/node_modules/psl/.eslintrc +11 -0
- package/node_modules/npm/node_modules/psl/.travis.yml +6 -0
- package/node_modules/npm/node_modules/psl/README.md +213 -0
- package/node_modules/npm/node_modules/psl/data/rules.json +1 -0
- package/node_modules/npm/node_modules/psl/dist/psl.js +812 -0
- package/node_modules/npm/node_modules/psl/dist/psl.min.js +1 -0
- package/node_modules/npm/node_modules/psl/index.js +269 -0
- package/node_modules/npm/node_modules/psl/karma.conf.js +38 -0
- package/node_modules/npm/node_modules/psl/package.json +42 -0
- package/node_modules/npm/node_modules/psl/yarn.lock +4532 -0
- package/node_modules/npm/node_modules/pump/.travis.yml +5 -0
- package/node_modules/npm/node_modules/pump/LICENSE +21 -0
- package/node_modules/npm/node_modules/pump/README.md +65 -0
- package/node_modules/npm/node_modules/pump/index.js +82 -0
- package/node_modules/npm/node_modules/pump/package.json +24 -0
- package/node_modules/npm/node_modules/pump/test-browser.js +66 -0
- package/node_modules/npm/node_modules/pump/test-node.js +53 -0
- package/node_modules/npm/node_modules/pumpify/.travis.yml +8 -0
- package/node_modules/npm/node_modules/pumpify/LICENSE +21 -0
- package/node_modules/npm/node_modules/pumpify/README.md +56 -0
- package/node_modules/npm/node_modules/pumpify/index.js +60 -0
- package/node_modules/npm/node_modules/pumpify/node_modules/pump/.travis.yml +5 -0
- package/node_modules/npm/node_modules/pumpify/node_modules/pump/LICENSE +21 -0
- package/node_modules/npm/node_modules/pumpify/node_modules/pump/README.md +56 -0
- package/node_modules/npm/node_modules/pumpify/node_modules/pump/index.js +82 -0
- package/node_modules/npm/node_modules/pumpify/node_modules/pump/package.json +24 -0
- package/node_modules/npm/node_modules/pumpify/node_modules/pump/test-browser.js +62 -0
- package/node_modules/npm/node_modules/pumpify/node_modules/pump/test-node.js +53 -0
- package/node_modules/npm/node_modules/pumpify/package.json +37 -0
- package/node_modules/npm/node_modules/pumpify/test.js +235 -0
- package/node_modules/npm/node_modules/punycode/LICENSE-MIT.txt +20 -0
- package/node_modules/npm/node_modules/punycode/README.md +176 -0
- package/node_modules/npm/node_modules/punycode/package.json +60 -0
- package/node_modules/npm/node_modules/punycode/punycode.js +533 -0
- package/node_modules/npm/node_modules/qrcode-terminal/.travis.yml +3 -0
- package/node_modules/npm/node_modules/qrcode-terminal/LICENSE +222 -0
- package/node_modules/npm/node_modules/qrcode-terminal/README.md +82 -0
- package/node_modules/npm/node_modules/qrcode-terminal/bin/qrcode-terminal.js +101 -0
- package/node_modules/npm/node_modules/qrcode-terminal/example/basic.js +2 -0
- package/node_modules/npm/node_modules/qrcode-terminal/example/basic.png +0 -0
- package/node_modules/npm/node_modules/qrcode-terminal/example/callback.js +4 -0
- package/node_modules/npm/node_modules/qrcode-terminal/example/small-qrcode.js +6 -0
- package/node_modules/npm/node_modules/qrcode-terminal/lib/main.js +100 -0
- package/node_modules/npm/node_modules/qrcode-terminal/package.json +37 -0
- package/node_modules/npm/node_modules/qrcode-terminal/test/main.js +63 -0
- package/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QR8bitByte.js +22 -0
- package/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRBitBuffer.js +38 -0
- package/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRErrorCorrectLevel.js +7 -0
- package/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRMaskPattern.js +10 -0
- package/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRMath.js +44 -0
- package/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRMode.js +6 -0
- package/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRPolynomial.js +66 -0
- package/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRRSBlock.js +298 -0
- package/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRUtil.js +272 -0
- package/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/index.js +462 -0
- package/node_modules/npm/node_modules/qs/.editorconfig +30 -0
- package/node_modules/npm/node_modules/qs/.eslintignore +1 -0
- package/node_modules/npm/node_modules/qs/.eslintrc +19 -0
- package/node_modules/npm/node_modules/qs/CHANGELOG.md +226 -0
- package/node_modules/npm/node_modules/qs/LICENSE +28 -0
- package/node_modules/npm/node_modules/qs/README.md +475 -0
- package/node_modules/npm/node_modules/qs/dist/qs.js +638 -0
- package/node_modules/npm/node_modules/qs/lib/formats.js +18 -0
- package/node_modules/npm/node_modules/qs/lib/index.js +11 -0
- package/node_modules/npm/node_modules/qs/lib/parse.js +174 -0
- package/node_modules/npm/node_modules/qs/lib/stringify.js +210 -0
- package/node_modules/npm/node_modules/qs/lib/utils.js +213 -0
- package/node_modules/npm/node_modules/qs/package.json +52 -0
- package/node_modules/npm/node_modules/qs/test/.eslintrc +15 -0
- package/node_modules/npm/node_modules/qs/test/index.js +7 -0
- package/node_modules/npm/node_modules/qs/test/parse.js +574 -0
- package/node_modules/npm/node_modules/qs/test/stringify.js +597 -0
- package/node_modules/npm/node_modules/qs/test/utils.js +34 -0
- package/node_modules/npm/node_modules/query-string/index.d.ts +208 -0
- package/node_modules/npm/node_modules/query-string/index.js +278 -0
- package/node_modules/npm/node_modules/query-string/license +9 -0
- package/node_modules/npm/node_modules/query-string/package.json +49 -0
- package/node_modules/npm/node_modules/query-string/readme.md +278 -0
- package/node_modules/npm/node_modules/qw/LICENSE +14 -0
- package/node_modules/npm/node_modules/qw/README.md +35 -0
- package/node_modules/npm/node_modules/qw/README.md~ +27 -0
- package/node_modules/npm/node_modules/qw/package.json +30 -0
- package/node_modules/npm/node_modules/qw/qw.js +43 -0
- package/node_modules/npm/node_modules/rc/LICENSE.APACHE2 +15 -0
- package/node_modules/npm/node_modules/rc/LICENSE.BSD +26 -0
- package/node_modules/npm/node_modules/rc/LICENSE.MIT +24 -0
- package/node_modules/npm/node_modules/rc/README.md +227 -0
- package/node_modules/npm/node_modules/rc/browser.js +7 -0
- package/node_modules/npm/node_modules/rc/cli.js +4 -0
- package/node_modules/npm/node_modules/rc/index.js +53 -0
- package/node_modules/npm/node_modules/rc/lib/utils.js +104 -0
- package/node_modules/npm/node_modules/rc/package.json +29 -0
- package/node_modules/npm/node_modules/rc/test/ini.js +16 -0
- package/node_modules/npm/node_modules/rc/test/nested-env-vars.js +50 -0
- package/node_modules/npm/node_modules/rc/test/test.js +59 -0
- package/node_modules/npm/node_modules/read/LICENSE +15 -0
- package/node_modules/npm/node_modules/read/README.md +53 -0
- package/node_modules/npm/node_modules/read/lib/read.js +113 -0
- package/node_modules/npm/node_modules/read/package.json +27 -0
- package/node_modules/npm/node_modules/read-cmd-shim/LICENSE +14 -0
- package/node_modules/npm/node_modules/read-cmd-shim/README.md +37 -0
- package/node_modules/npm/node_modules/read-cmd-shim/index.js +61 -0
- package/node_modules/npm/node_modules/read-cmd-shim/package.json +32 -0
- package/node_modules/npm/node_modules/read-installed/.npmignore +13 -0
- package/node_modules/npm/node_modules/read-installed/.travis.yml +9 -0
- package/node_modules/npm/node_modules/read-installed/LICENSE +16 -0
- package/node_modules/npm/node_modules/read-installed/README.md +27 -0
- package/node_modules/npm/node_modules/read-installed/package.json +31 -0
- package/node_modules/npm/node_modules/read-installed/read-installed.js +407 -0
- package/node_modules/npm/node_modules/read-installed/test/basic.js +46 -0
- package/node_modules/npm/node_modules/read-installed/test/cyclic-extraneous-peer-deps.js +81 -0
- package/node_modules/npm/node_modules/read-installed/test/depth-0.js +27 -0
- package/node_modules/npm/node_modules/read-installed/test/depth-1.js +23 -0
- package/node_modules/npm/node_modules/read-installed/test/dev.js +23 -0
- package/node_modules/npm/node_modules/read-installed/test/empty.js +16 -0
- package/node_modules/npm/node_modules/read-installed/test/extraneous-dev.js +20 -0
- package/node_modules/npm/node_modules/read-installed/test/extraneous.js +17 -0
- package/node_modules/npm/node_modules/read-installed/test/fixtures/extraneous-detected/package.json +7 -0
- package/node_modules/npm/node_modules/read-installed/test/fixtures/extraneous-dev-dep/package.json +7 -0
- package/node_modules/npm/node_modules/read-installed/test/fixtures/grandparent-peer/package.json +8 -0
- package/node_modules/npm/node_modules/read-installed/test/fixtures/grandparent-peer-dev/package.json +8 -0
- package/node_modules/npm/node_modules/read-installed/test/fixtures/package.json +27 -0
- package/node_modules/npm/node_modules/read-installed/test/grandparent-peer-dev.js +20 -0
- package/node_modules/npm/node_modules/read-installed/test/grandparent-peer.js +24 -0
- package/node_modules/npm/node_modules/read-installed/test/issue-40.js +15 -0
- package/node_modules/npm/node_modules/read-installed/test/linked-dep-dev-deps-extraneous.js +59 -0
- package/node_modules/npm/node_modules/read-installed/test/noargs.js +21 -0
- package/node_modules/npm/node_modules/read-installed/test/peer-dep-at-latest.js +14 -0
- package/node_modules/npm/node_modules/read-package-json/CHANGELOG.md +31 -0
- package/node_modules/npm/node_modules/read-package-json/LICENSE +15 -0
- package/node_modules/npm/node_modules/read-package-json/README.md +151 -0
- package/node_modules/npm/node_modules/read-package-json/package.json +36 -0
- package/node_modules/npm/node_modules/read-package-json/read-json.js +474 -0
- package/node_modules/npm/node_modules/read-package-tree/LICENSE +15 -0
- package/node_modules/npm/node_modules/read-package-tree/README.md +73 -0
- package/node_modules/npm/node_modules/read-package-tree/package.json +44 -0
- package/node_modules/npm/node_modules/read-package-tree/realpath.js +94 -0
- package/node_modules/npm/node_modules/read-package-tree/rpt.js +169 -0
- package/node_modules/npm/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/node_modules/npm/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/node_modules/npm/node_modules/readable-stream/LICENSE +47 -0
- package/node_modules/npm/node_modules/readable-stream/README.md +106 -0
- package/node_modules/npm/node_modules/readable-stream/errors-browser.js +127 -0
- package/node_modules/npm/node_modules/readable-stream/errors.js +116 -0
- package/node_modules/npm/node_modules/readable-stream/experimentalWarning.js +17 -0
- package/node_modules/npm/node_modules/readable-stream/lib/_stream_duplex.js +139 -0
- package/node_modules/npm/node_modules/readable-stream/lib/_stream_passthrough.js +39 -0
- package/node_modules/npm/node_modules/readable-stream/lib/_stream_readable.js +1124 -0
- package/node_modules/npm/node_modules/readable-stream/lib/_stream_transform.js +201 -0
- package/node_modules/npm/node_modules/readable-stream/lib/_stream_writable.js +697 -0
- package/node_modules/npm/node_modules/readable-stream/lib/internal/streams/async_iterator.js +207 -0
- package/node_modules/npm/node_modules/readable-stream/lib/internal/streams/buffer_list.js +210 -0
- package/node_modules/npm/node_modules/readable-stream/lib/internal/streams/destroy.js +105 -0
- package/node_modules/npm/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +104 -0
- package/node_modules/npm/node_modules/readable-stream/lib/internal/streams/from-browser.js +3 -0
- package/node_modules/npm/node_modules/readable-stream/lib/internal/streams/from.js +64 -0
- package/node_modules/npm/node_modules/readable-stream/lib/internal/streams/pipeline.js +97 -0
- package/node_modules/npm/node_modules/readable-stream/lib/internal/streams/state.js +27 -0
- package/node_modules/npm/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/node_modules/npm/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/node_modules/npm/node_modules/readable-stream/package.json +68 -0
- package/node_modules/npm/node_modules/readable-stream/readable-browser.js +9 -0
- package/node_modules/npm/node_modules/readable-stream/readable.js +16 -0
- package/node_modules/npm/node_modules/readdir-scoped-modules/LICENSE +15 -0
- package/node_modules/npm/node_modules/readdir-scoped-modules/README.md +17 -0
- package/node_modules/npm/node_modules/readdir-scoped-modules/package.json +34 -0
- package/node_modules/npm/node_modules/readdir-scoped-modules/readdir.js +121 -0
- package/node_modules/npm/node_modules/registry-auth-token/.npmignore +6 -0
- package/node_modules/npm/node_modules/registry-auth-token/CHANGELOG.md +112 -0
- package/node_modules/npm/node_modules/registry-auth-token/LICENSE +21 -0
- package/node_modules/npm/node_modules/registry-auth-token/README.md +65 -0
- package/node_modules/npm/node_modules/registry-auth-token/base64.js +14 -0
- package/node_modules/npm/node_modules/registry-auth-token/index.js +123 -0
- package/node_modules/npm/node_modules/registry-auth-token/package.json +46 -0
- package/node_modules/npm/node_modules/registry-auth-token/registry-url.js +5 -0
- package/node_modules/npm/node_modules/registry-auth-token/test/auth-token.test.js +455 -0
- package/node_modules/npm/node_modules/registry-auth-token/test/registry-url.test.js +64 -0
- package/node_modules/npm/node_modules/registry-auth-token/yarn.lock +1516 -0
- package/node_modules/npm/node_modules/registry-url/index.js +6 -0
- package/node_modules/npm/node_modules/registry-url/license +21 -0
- package/node_modules/npm/node_modules/registry-url/package.json +40 -0
- package/node_modules/npm/node_modules/registry-url/readme.md +50 -0
- package/node_modules/npm/node_modules/request/CHANGELOG.md +709 -0
- package/node_modules/npm/node_modules/request/LICENSE +55 -0
- package/node_modules/npm/node_modules/request/README.md +1097 -0
- package/node_modules/npm/node_modules/request/index.js +155 -0
- package/node_modules/npm/node_modules/request/lib/auth.js +167 -0
- package/node_modules/npm/node_modules/request/lib/cookies.js +38 -0
- package/node_modules/npm/node_modules/request/lib/getProxyFromURI.js +79 -0
- package/node_modules/npm/node_modules/request/lib/har.js +205 -0
- package/node_modules/npm/node_modules/request/lib/hawk.js +89 -0
- package/node_modules/npm/node_modules/request/lib/helpers.js +66 -0
- package/node_modules/npm/node_modules/request/lib/multipart.js +112 -0
- package/node_modules/npm/node_modules/request/lib/oauth.js +148 -0
- package/node_modules/npm/node_modules/request/lib/querystring.js +50 -0
- package/node_modules/npm/node_modules/request/lib/redirect.js +154 -0
- package/node_modules/npm/node_modules/request/lib/tunnel.js +175 -0
- package/node_modules/npm/node_modules/request/package.json +86 -0
- package/node_modules/npm/node_modules/request/request.js +1551 -0
- package/node_modules/npm/node_modules/require-directory/.jshintrc +67 -0
- package/node_modules/npm/node_modules/require-directory/.npmignore +1 -0
- package/node_modules/npm/node_modules/require-directory/.travis.yml +3 -0
- package/node_modules/npm/node_modules/require-directory/LICENSE +22 -0
- package/node_modules/npm/node_modules/require-directory/README.markdown +184 -0
- package/node_modules/npm/node_modules/require-directory/index.js +86 -0
- package/node_modules/npm/node_modules/require-directory/package.json +40 -0
- package/node_modules/npm/node_modules/require-main-filename/CHANGELOG.md +26 -0
- package/node_modules/npm/node_modules/require-main-filename/LICENSE.txt +14 -0
- package/node_modules/npm/node_modules/require-main-filename/README.md +26 -0
- package/node_modules/npm/node_modules/require-main-filename/index.js +18 -0
- package/node_modules/npm/node_modules/require-main-filename/package.json +35 -0
- package/node_modules/npm/node_modules/resolve-from/index.js +47 -0
- package/node_modules/npm/node_modules/resolve-from/license +9 -0
- package/node_modules/npm/node_modules/resolve-from/package.json +34 -0
- package/node_modules/npm/node_modules/resolve-from/readme.md +72 -0
- package/node_modules/npm/node_modules/retry/.npmignore +3 -0
- package/node_modules/npm/node_modules/retry/.travis.yml +15 -0
- package/node_modules/npm/node_modules/retry/License +21 -0
- package/node_modules/npm/node_modules/retry/Makefile +18 -0
- package/node_modules/npm/node_modules/retry/README.md +227 -0
- package/node_modules/npm/node_modules/retry/equation.gif +0 -0
- package/node_modules/npm/node_modules/retry/example/dns.js +31 -0
- package/node_modules/npm/node_modules/retry/example/stop.js +40 -0
- package/node_modules/npm/node_modules/retry/index.js +1 -0
- package/node_modules/npm/node_modules/retry/lib/retry.js +100 -0
- package/node_modules/npm/node_modules/retry/lib/retry_operation.js +158 -0
- package/node_modules/npm/node_modules/retry/package.json +32 -0
- package/node_modules/npm/node_modules/retry/test/common.js +10 -0
- package/node_modules/npm/node_modules/retry/test/integration/test-forever.js +24 -0
- package/node_modules/npm/node_modules/retry/test/integration/test-retry-operation.js +258 -0
- package/node_modules/npm/node_modules/retry/test/integration/test-retry-wrap.js +101 -0
- package/node_modules/npm/node_modules/retry/test/integration/test-timeouts.js +69 -0
- package/node_modules/npm/node_modules/rimraf/LICENSE +15 -0
- package/node_modules/npm/node_modules/rimraf/README.md +101 -0
- package/node_modules/npm/node_modules/rimraf/bin.js +50 -0
- package/node_modules/npm/node_modules/rimraf/package.json +29 -0
- package/node_modules/npm/node_modules/rimraf/rimraf.js +372 -0
- package/node_modules/npm/node_modules/run-queue/README.md +86 -0
- package/node_modules/npm/node_modules/run-queue/node_modules/aproba/LICENSE +14 -0
- package/node_modules/npm/node_modules/run-queue/node_modules/aproba/README.md +94 -0
- package/node_modules/npm/node_modules/run-queue/node_modules/aproba/index.js +105 -0
- package/node_modules/npm/node_modules/run-queue/node_modules/aproba/package.json +34 -0
- package/node_modules/npm/node_modules/run-queue/package.json +33 -0
- package/node_modules/npm/node_modules/run-queue/queue.js +95 -0
- package/node_modules/npm/node_modules/safe-buffer/LICENSE +21 -0
- package/node_modules/npm/node_modules/safe-buffer/README.md +584 -0
- package/node_modules/npm/node_modules/safe-buffer/index.d.ts +187 -0
- package/node_modules/npm/node_modules/safe-buffer/index.js +62 -0
- package/node_modules/npm/node_modules/safe-buffer/package.json +37 -0
- package/node_modules/npm/node_modules/safer-buffer/LICENSE +21 -0
- package/node_modules/npm/node_modules/safer-buffer/Porting-Buffer.md +268 -0
- package/node_modules/npm/node_modules/safer-buffer/Readme.md +156 -0
- package/node_modules/npm/node_modules/safer-buffer/dangerous.js +58 -0
- package/node_modules/npm/node_modules/safer-buffer/package.json +34 -0
- package/node_modules/npm/node_modules/safer-buffer/safer.js +77 -0
- package/node_modules/npm/node_modules/safer-buffer/tests.js +406 -0
- package/node_modules/npm/node_modules/semver/CHANGELOG.md +39 -0
- package/node_modules/npm/node_modules/semver/LICENSE +15 -0
- package/node_modules/npm/node_modules/semver/README.md +412 -0
- package/node_modules/npm/node_modules/semver/bin/semver +160 -0
- package/node_modules/npm/node_modules/semver/package.json +28 -0
- package/node_modules/npm/node_modules/semver/range.bnf +16 -0
- package/node_modules/npm/node_modules/semver/semver.js +1483 -0
- package/node_modules/npm/node_modules/semver-diff/index.js +27 -0
- package/node_modules/npm/node_modules/semver-diff/license +21 -0
- package/node_modules/npm/node_modules/semver-diff/package.json +34 -0
- package/node_modules/npm/node_modules/semver-diff/readme.md +52 -0
- package/node_modules/npm/node_modules/set-blocking/CHANGELOG.md +26 -0
- package/node_modules/npm/node_modules/set-blocking/LICENSE.txt +14 -0
- package/node_modules/npm/node_modules/set-blocking/README.md +31 -0
- package/node_modules/npm/node_modules/set-blocking/index.js +7 -0
- package/node_modules/npm/node_modules/set-blocking/package.json +42 -0
- package/node_modules/npm/node_modules/sha/LICENSE +46 -0
- package/node_modules/npm/node_modules/sha/README.md +49 -0
- package/node_modules/npm/node_modules/sha/index.js +107 -0
- package/node_modules/npm/node_modules/sha/package.json +22 -0
- package/node_modules/npm/node_modules/shebang-command/index.js +19 -0
- package/node_modules/npm/node_modules/shebang-command/license +21 -0
- package/node_modules/npm/node_modules/shebang-command/package.json +39 -0
- package/node_modules/npm/node_modules/shebang-command/readme.md +39 -0
- package/node_modules/npm/node_modules/shebang-regex/index.js +2 -0
- package/node_modules/npm/node_modules/shebang-regex/license +21 -0
- package/node_modules/npm/node_modules/shebang-regex/package.json +32 -0
- package/node_modules/npm/node_modules/shebang-regex/readme.md +29 -0
- package/node_modules/npm/node_modules/signal-exit/CHANGELOG.md +27 -0
- package/node_modules/npm/node_modules/signal-exit/LICENSE.txt +16 -0
- package/node_modules/npm/node_modules/signal-exit/README.md +40 -0
- package/node_modules/npm/node_modules/signal-exit/index.js +157 -0
- package/node_modules/npm/node_modules/signal-exit/package.json +38 -0
- package/node_modules/npm/node_modules/signal-exit/signals.js +53 -0
- package/node_modules/npm/node_modules/slide/LICENSE +15 -0
- package/node_modules/npm/node_modules/slide/README.md +143 -0
- package/node_modules/npm/node_modules/slide/index.js +1 -0
- package/node_modules/npm/node_modules/slide/lib/async-map-ordered.js +65 -0
- package/node_modules/npm/node_modules/slide/lib/async-map.js +54 -0
- package/node_modules/npm/node_modules/slide/lib/bind-actor.js +16 -0
- package/node_modules/npm/node_modules/slide/lib/chain.js +20 -0
- package/node_modules/npm/node_modules/slide/lib/slide.js +3 -0
- package/node_modules/npm/node_modules/slide/package.json +20 -0
- package/node_modules/npm/node_modules/smart-buffer/.prettierrc.yaml +5 -0
- package/node_modules/npm/node_modules/smart-buffer/.travis.yml +13 -0
- package/node_modules/npm/node_modules/smart-buffer/LICENSE +20 -0
- package/node_modules/npm/node_modules/smart-buffer/README.md +632 -0
- package/node_modules/npm/node_modules/smart-buffer/build/smartbuffer.js +1233 -0
- package/node_modules/npm/node_modules/smart-buffer/build/smartbuffer.js.map +1 -0
- package/node_modules/npm/node_modules/smart-buffer/build/utils.js +108 -0
- package/node_modules/npm/node_modules/smart-buffer/build/utils.js.map +1 -0
- package/node_modules/npm/node_modules/smart-buffer/docs/CHANGELOG.md +70 -0
- package/node_modules/npm/node_modules/smart-buffer/docs/README_v3.md +367 -0
- package/node_modules/npm/node_modules/smart-buffer/docs/ROADMAP.md +0 -0
- package/node_modules/npm/node_modules/smart-buffer/package.json +78 -0
- package/node_modules/npm/node_modules/smart-buffer/typings/smartbuffer.d.ts +755 -0
- package/node_modules/npm/node_modules/smart-buffer/typings/utils.d.ts +66 -0
- package/node_modules/npm/node_modules/socks/.prettierrc.yaml +5 -0
- package/node_modules/npm/node_modules/socks/.travis.yml +12 -0
- package/node_modules/npm/node_modules/socks/LICENSE +20 -0
- package/node_modules/npm/node_modules/socks/README.md +670 -0
- package/node_modules/npm/node_modules/socks/build/client/socksclient.js +723 -0
- package/node_modules/npm/node_modules/socks/build/client/socksclient.js.map +1 -0
- package/node_modules/npm/node_modules/socks/build/common/constants.js +105 -0
- package/node_modules/npm/node_modules/socks/build/common/constants.js.map +1 -0
- package/node_modules/npm/node_modules/socks/build/common/helpers.js +100 -0
- package/node_modules/npm/node_modules/socks/build/common/helpers.js.map +1 -0
- package/node_modules/npm/node_modules/socks/build/common/receivebuffer.js +42 -0
- package/node_modules/npm/node_modules/socks/build/common/receivebuffer.js.map +1 -0
- package/node_modules/npm/node_modules/socks/build/common/util.js +24 -0
- package/node_modules/npm/node_modules/socks/build/common/util.js.map +1 -0
- package/node_modules/npm/node_modules/socks/build/index.js +7 -0
- package/node_modules/npm/node_modules/socks/build/index.js.map +1 -0
- package/node_modules/npm/node_modules/socks/docs/examples/index.md +17 -0
- package/node_modules/npm/node_modules/socks/docs/examples/javascript/associateExample.md +90 -0
- package/node_modules/npm/node_modules/socks/docs/examples/javascript/bindExample.md +83 -0
- package/node_modules/npm/node_modules/socks/docs/examples/javascript/connectExample.md +258 -0
- package/node_modules/npm/node_modules/socks/docs/examples/typescript/associateExample.md +93 -0
- package/node_modules/npm/node_modules/socks/docs/examples/typescript/bindExample.md +86 -0
- package/node_modules/npm/node_modules/socks/docs/examples/typescript/connectExample.md +265 -0
- package/node_modules/npm/node_modules/socks/docs/index.md +5 -0
- package/node_modules/npm/node_modules/socks/docs/migratingFromV1.md +86 -0
- package/node_modules/npm/node_modules/socks/package.json +85 -0
- package/node_modules/npm/node_modules/socks/typings/client/socksclient.d.ts +159 -0
- package/node_modules/npm/node_modules/socks/typings/common/constants.d.ts +141 -0
- package/node_modules/npm/node_modules/socks/typings/common/helpers.d.ts +13 -0
- package/node_modules/npm/node_modules/socks/typings/common/receiveBuffer.d.ts +12 -0
- package/node_modules/npm/node_modules/socks/typings/common/util.d.ts +17 -0
- package/node_modules/npm/node_modules/socks/typings/index.d.ts +1 -0
- package/node_modules/npm/node_modules/socks-proxy-agent/.travis.yml +21 -0
- package/node_modules/npm/node_modules/socks-proxy-agent/History.md +96 -0
- package/node_modules/npm/node_modules/socks-proxy-agent/README.md +133 -0
- package/node_modules/npm/node_modules/socks-proxy-agent/index.js +145 -0
- package/node_modules/npm/node_modules/socks-proxy-agent/node_modules/agent-base/.travis.yml +23 -0
- package/node_modules/npm/node_modules/socks-proxy-agent/node_modules/agent-base/History.md +113 -0
- package/node_modules/npm/node_modules/socks-proxy-agent/node_modules/agent-base/README.md +145 -0
- package/node_modules/npm/node_modules/socks-proxy-agent/node_modules/agent-base/index.js +170 -0
- package/node_modules/npm/node_modules/socks-proxy-agent/node_modules/agent-base/package.json +35 -0
- package/node_modules/npm/node_modules/socks-proxy-agent/node_modules/agent-base/patch-core.js +37 -0
- package/node_modules/npm/node_modules/socks-proxy-agent/node_modules/agent-base/test/ssl-cert-snakeoil.key +15 -0
- package/node_modules/npm/node_modules/socks-proxy-agent/node_modules/agent-base/test/ssl-cert-snakeoil.pem +12 -0
- package/node_modules/npm/node_modules/socks-proxy-agent/node_modules/agent-base/test/test.js +697 -0
- package/node_modules/npm/node_modules/socks-proxy-agent/package.json +39 -0
- package/node_modules/npm/node_modules/socks-proxy-agent/test/ssl-cert-snakeoil.key +15 -0
- package/node_modules/npm/node_modules/socks-proxy-agent/test/ssl-cert-snakeoil.pem +12 -0
- package/node_modules/npm/node_modules/socks-proxy-agent/test/test.js +144 -0
- package/node_modules/npm/node_modules/socks-proxy-agent/yarn.lock +354 -0
- package/node_modules/npm/node_modules/sorted-object/LICENSE.txt +47 -0
- package/node_modules/npm/node_modules/sorted-object/lib/sorted-object.js +11 -0
- package/node_modules/npm/node_modules/sorted-object/package.json +25 -0
- package/node_modules/npm/node_modules/sorted-union-stream/.npmignore +1 -0
- package/node_modules/npm/node_modules/sorted-union-stream/.travis.yml +5 -0
- package/node_modules/npm/node_modules/sorted-union-stream/LICENSE +21 -0
- package/node_modules/npm/node_modules/sorted-union-stream/README.md +80 -0
- package/node_modules/npm/node_modules/sorted-union-stream/example.js +15 -0
- package/node_modules/npm/node_modules/sorted-union-stream/index.js +59 -0
- package/node_modules/npm/node_modules/sorted-union-stream/node_modules/from2/LICENSE.md +21 -0
- package/node_modules/npm/node_modules/sorted-union-stream/node_modules/from2/README.md +67 -0
- package/node_modules/npm/node_modules/sorted-union-stream/node_modules/from2/index.js +93 -0
- package/node_modules/npm/node_modules/sorted-union-stream/node_modules/from2/package.json +37 -0
- package/node_modules/npm/node_modules/sorted-union-stream/node_modules/from2/test.js +86 -0
- package/node_modules/npm/node_modules/sorted-union-stream/node_modules/isarray/README.md +54 -0
- package/node_modules/npm/node_modules/sorted-union-stream/node_modules/isarray/build/build.js +209 -0
- package/node_modules/npm/node_modules/sorted-union-stream/node_modules/isarray/component.json +19 -0
- package/node_modules/npm/node_modules/sorted-union-stream/node_modules/isarray/index.js +3 -0
- package/node_modules/npm/node_modules/sorted-union-stream/node_modules/isarray/package.json +25 -0
- package/node_modules/npm/node_modules/sorted-union-stream/node_modules/readable-stream/.npmignore +5 -0
- package/node_modules/npm/node_modules/sorted-union-stream/node_modules/readable-stream/LICENSE +18 -0
- package/node_modules/npm/node_modules/sorted-union-stream/node_modules/readable-stream/README.md +15 -0
- package/node_modules/npm/node_modules/sorted-union-stream/node_modules/readable-stream/duplex.js +1 -0
- package/node_modules/npm/node_modules/sorted-union-stream/node_modules/readable-stream/float.patch +923 -0
- package/node_modules/npm/node_modules/sorted-union-stream/node_modules/readable-stream/lib/_stream_duplex.js +89 -0
- package/node_modules/npm/node_modules/sorted-union-stream/node_modules/readable-stream/lib/_stream_passthrough.js +46 -0
- package/node_modules/npm/node_modules/sorted-union-stream/node_modules/readable-stream/lib/_stream_readable.js +951 -0
- package/node_modules/npm/node_modules/sorted-union-stream/node_modules/readable-stream/lib/_stream_transform.js +209 -0
- package/node_modules/npm/node_modules/sorted-union-stream/node_modules/readable-stream/lib/_stream_writable.js +477 -0
- package/node_modules/npm/node_modules/sorted-union-stream/node_modules/readable-stream/package.json +32 -0
- package/node_modules/npm/node_modules/sorted-union-stream/node_modules/readable-stream/passthrough.js +1 -0
- package/node_modules/npm/node_modules/sorted-union-stream/node_modules/readable-stream/readable.js +10 -0
- package/node_modules/npm/node_modules/sorted-union-stream/node_modules/readable-stream/transform.js +1 -0
- package/node_modules/npm/node_modules/sorted-union-stream/node_modules/readable-stream/writable.js +1 -0
- package/node_modules/npm/node_modules/sorted-union-stream/node_modules/string_decoder/.npmignore +2 -0
- package/node_modules/npm/node_modules/sorted-union-stream/node_modules/string_decoder/LICENSE +20 -0
- package/node_modules/npm/node_modules/sorted-union-stream/node_modules/string_decoder/README.md +7 -0
- package/node_modules/npm/node_modules/sorted-union-stream/node_modules/string_decoder/index.js +221 -0
- package/node_modules/npm/node_modules/sorted-union-stream/node_modules/string_decoder/package.json +25 -0
- package/node_modules/npm/node_modules/sorted-union-stream/package.json +32 -0
- package/node_modules/npm/node_modules/sorted-union-stream/test.js +154 -0
- package/node_modules/npm/node_modules/spdx-correct/LICENSE +202 -0
- package/node_modules/npm/node_modules/spdx-correct/README.md +10 -0
- package/node_modules/npm/node_modules/spdx-correct/index.js +326 -0
- package/node_modules/npm/node_modules/spdx-correct/package.json +37 -0
- package/node_modules/npm/node_modules/spdx-exceptions/README.md +36 -0
- package/node_modules/npm/node_modules/spdx-exceptions/index.json +29 -0
- package/node_modules/npm/node_modules/spdx-exceptions/package.json +11 -0
- package/node_modules/npm/node_modules/spdx-expression-parse/AUTHORS +4 -0
- package/node_modules/npm/node_modules/spdx-expression-parse/LICENSE +22 -0
- package/node_modules/npm/node_modules/spdx-expression-parse/README.md +91 -0
- package/node_modules/npm/node_modules/spdx-expression-parse/index.js +8 -0
- package/node_modules/npm/node_modules/spdx-expression-parse/package.json +40 -0
- package/node_modules/npm/node_modules/spdx-expression-parse/parse.js +138 -0
- package/node_modules/npm/node_modules/spdx-expression-parse/scan.js +131 -0
- package/node_modules/npm/node_modules/spdx-license-ids/README.md +52 -0
- package/node_modules/npm/node_modules/spdx-license-ids/deprecated.json +24 -0
- package/node_modules/npm/node_modules/spdx-license-ids/index.json +370 -0
- package/node_modules/npm/node_modules/spdx-license-ids/package.json +39 -0
- package/node_modules/npm/node_modules/split-on-first/index.d.ts +29 -0
- package/node_modules/npm/node_modules/split-on-first/index.js +22 -0
- package/node_modules/npm/node_modules/split-on-first/license +9 -0
- package/node_modules/npm/node_modules/split-on-first/package.json +36 -0
- package/node_modules/npm/node_modules/split-on-first/readme.md +58 -0
- package/node_modules/npm/node_modules/sshpk/.npmignore +9 -0
- package/node_modules/npm/node_modules/sshpk/.travis.yml +11 -0
- package/node_modules/npm/node_modules/sshpk/LICENSE +18 -0
- package/node_modules/npm/node_modules/sshpk/README.md +698 -0
- package/node_modules/npm/node_modules/sshpk/bin/sshpk-conv +202 -0
- package/node_modules/npm/node_modules/sshpk/bin/sshpk-sign +191 -0
- package/node_modules/npm/node_modules/sshpk/bin/sshpk-verify +167 -0
- package/node_modules/npm/node_modules/sshpk/lib/algs.js +168 -0
- package/node_modules/npm/node_modules/sshpk/lib/certificate.js +378 -0
- package/node_modules/npm/node_modules/sshpk/lib/dhe.js +414 -0
- package/node_modules/npm/node_modules/sshpk/lib/ed-compat.js +98 -0
- package/node_modules/npm/node_modules/sshpk/lib/errors.js +84 -0
- package/node_modules/npm/node_modules/sshpk/lib/fingerprint.js +162 -0
- package/node_modules/npm/node_modules/sshpk/lib/formats/auto.js +107 -0
- package/node_modules/npm/node_modules/sshpk/lib/formats/dnssec.js +287 -0
- package/node_modules/npm/node_modules/sshpk/lib/formats/openssh-cert.js +323 -0
- package/node_modules/npm/node_modules/sshpk/lib/formats/pem.js +192 -0
- package/node_modules/npm/node_modules/sshpk/lib/formats/pkcs1.js +373 -0
- package/node_modules/npm/node_modules/sshpk/lib/formats/pkcs8.js +612 -0
- package/node_modules/npm/node_modules/sshpk/lib/formats/rfc4253.js +166 -0
- package/node_modules/npm/node_modules/sshpk/lib/formats/ssh-private.js +262 -0
- package/node_modules/npm/node_modules/sshpk/lib/formats/ssh.js +115 -0
- package/node_modules/npm/node_modules/sshpk/lib/formats/x509-pem.js +78 -0
- package/node_modules/npm/node_modules/sshpk/lib/formats/x509.js +729 -0
- package/node_modules/npm/node_modules/sshpk/lib/identity.js +289 -0
- package/node_modules/npm/node_modules/sshpk/lib/index.js +39 -0
- package/node_modules/npm/node_modules/sshpk/lib/key.js +275 -0
- package/node_modules/npm/node_modules/sshpk/lib/private-key.js +253 -0
- package/node_modules/npm/node_modules/sshpk/lib/signature.js +314 -0
- package/node_modules/npm/node_modules/sshpk/lib/ssh-buffer.js +149 -0
- package/node_modules/npm/node_modules/sshpk/lib/utils.js +389 -0
- package/node_modules/npm/node_modules/sshpk/man/man1/sshpk-conv.1 +135 -0
- package/node_modules/npm/node_modules/sshpk/man/man1/sshpk-sign.1 +81 -0
- package/node_modules/npm/node_modules/sshpk/man/man1/sshpk-verify.1 +68 -0
- package/node_modules/npm/node_modules/sshpk/package.json +60 -0
- package/node_modules/npm/node_modules/ssri/CHANGELOG.md +296 -0
- package/node_modules/npm/node_modules/ssri/LICENSE.md +16 -0
- package/node_modules/npm/node_modules/ssri/README.md +488 -0
- package/node_modules/npm/node_modules/ssri/index.js +395 -0
- package/node_modules/npm/node_modules/ssri/package.json +58 -0
- package/node_modules/npm/node_modules/stream-each/.npmignore +1 -0
- package/node_modules/npm/node_modules/stream-each/.travis.yml +5 -0
- package/node_modules/npm/node_modules/stream-each/LICENSE +21 -0
- package/node_modules/npm/node_modules/stream-each/README.md +41 -0
- package/node_modules/npm/node_modules/stream-each/collaborators.md +7 -0
- package/node_modules/npm/node_modules/stream-each/index.js +58 -0
- package/node_modules/npm/node_modules/stream-each/package.json +28 -0
- package/node_modules/npm/node_modules/stream-each/test.js +122 -0
- package/node_modules/npm/node_modules/stream-iterate/.npmignore +1 -0
- package/node_modules/npm/node_modules/stream-iterate/.travis.yml +5 -0
- package/node_modules/npm/node_modules/stream-iterate/LICENSE +21 -0
- package/node_modules/npm/node_modules/stream-iterate/README.md +39 -0
- package/node_modules/npm/node_modules/stream-iterate/index.js +70 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/readable-stream/.travis.yml +55 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/readable-stream/LICENSE +47 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/readable-stream/README.md +58 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/readable-stream/duplex-browser.js +1 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/readable-stream/duplex.js +1 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/readable-stream/lib/_stream_duplex.js +131 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/readable-stream/lib/_stream_passthrough.js +47 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/readable-stream/lib/_stream_readable.js +1019 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/readable-stream/lib/_stream_transform.js +214 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/readable-stream/lib/_stream_writable.js +687 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/readable-stream/lib/internal/streams/BufferList.js +79 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/readable-stream/lib/internal/streams/destroy.js +74 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/readable-stream/package.json +52 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/readable-stream/passthrough.js +1 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/readable-stream/readable-browser.js +7 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/readable-stream/readable.js +19 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/readable-stream/transform.js +1 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/readable-stream/writable-browser.js +1 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/readable-stream/writable.js +8 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/string_decoder/.travis.yml +50 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/string_decoder/LICENSE +48 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/string_decoder/README.md +47 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/string_decoder/lib/string_decoder.js +296 -0
- package/node_modules/npm/node_modules/stream-iterate/node_modules/string_decoder/package.json +31 -0
- package/node_modules/npm/node_modules/stream-iterate/package.json +28 -0
- package/node_modules/npm/node_modules/stream-iterate/test.js +60 -0
- package/node_modules/npm/node_modules/stream-shift/.npmignore +1 -0
- package/node_modules/npm/node_modules/stream-shift/.travis.yml +6 -0
- package/node_modules/npm/node_modules/stream-shift/LICENSE +21 -0
- package/node_modules/npm/node_modules/stream-shift/README.md +25 -0
- package/node_modules/npm/node_modules/stream-shift/index.js +20 -0
- package/node_modules/npm/node_modules/stream-shift/package.json +25 -0
- package/node_modules/npm/node_modules/stream-shift/test.js +48 -0
- package/node_modules/npm/node_modules/strict-uri-encode/index.js +2 -0
- package/node_modules/npm/node_modules/strict-uri-encode/license +21 -0
- package/node_modules/npm/node_modules/strict-uri-encode/package.json +31 -0
- package/node_modules/npm/node_modules/strict-uri-encode/readme.md +39 -0
- package/node_modules/npm/node_modules/string-width/index.js +36 -0
- package/node_modules/npm/node_modules/string-width/license +9 -0
- package/node_modules/npm/node_modules/string-width/node_modules/ansi-regex/index.js +10 -0
- package/node_modules/npm/node_modules/string-width/node_modules/ansi-regex/license +9 -0
- package/node_modules/npm/node_modules/string-width/node_modules/ansi-regex/package.json +53 -0
- package/node_modules/npm/node_modules/string-width/node_modules/ansi-regex/readme.md +46 -0
- package/node_modules/npm/node_modules/string-width/node_modules/is-fullwidth-code-point/index.js +46 -0
- package/node_modules/npm/node_modules/string-width/node_modules/is-fullwidth-code-point/license +21 -0
- package/node_modules/npm/node_modules/string-width/node_modules/is-fullwidth-code-point/package.json +45 -0
- package/node_modules/npm/node_modules/string-width/node_modules/is-fullwidth-code-point/readme.md +39 -0
- package/node_modules/npm/node_modules/string-width/node_modules/strip-ansi/index.js +4 -0
- package/node_modules/npm/node_modules/string-width/node_modules/strip-ansi/license +9 -0
- package/node_modules/npm/node_modules/string-width/node_modules/strip-ansi/package.json +52 -0
- package/node_modules/npm/node_modules/string-width/node_modules/strip-ansi/readme.md +39 -0
- package/node_modules/npm/node_modules/string-width/package.json +55 -0
- package/node_modules/npm/node_modules/string-width/readme.md +42 -0
- package/node_modules/npm/node_modules/string_decoder/LICENSE +48 -0
- package/node_modules/npm/node_modules/string_decoder/README.md +47 -0
- package/node_modules/npm/node_modules/string_decoder/lib/string_decoder.js +296 -0
- package/node_modules/npm/node_modules/string_decoder/node_modules/safe-buffer/LICENSE +21 -0
- package/node_modules/npm/node_modules/string_decoder/node_modules/safe-buffer/README.md +586 -0
- package/node_modules/npm/node_modules/string_decoder/node_modules/safe-buffer/index.d.ts +187 -0
- package/node_modules/npm/node_modules/string_decoder/node_modules/safe-buffer/index.js +64 -0
- package/node_modules/npm/node_modules/string_decoder/node_modules/safe-buffer/package.json +37 -0
- package/node_modules/npm/node_modules/string_decoder/package.json +34 -0
- package/node_modules/npm/node_modules/stringify-package/CHANGELOG.md +16 -0
- package/node_modules/npm/node_modules/stringify-package/LICENSE +13 -0
- package/node_modules/npm/node_modules/stringify-package/README.md +55 -0
- package/node_modules/npm/node_modules/stringify-package/index.js +18 -0
- package/node_modules/npm/node_modules/stringify-package/package.json +38 -0
- package/node_modules/npm/node_modules/strip-ansi/index.js +6 -0
- package/node_modules/npm/node_modules/strip-ansi/license +21 -0
- package/node_modules/npm/node_modules/strip-ansi/package.json +57 -0
- package/node_modules/npm/node_modules/strip-ansi/readme.md +33 -0
- package/node_modules/npm/node_modules/strip-eof/index.js +15 -0
- package/node_modules/npm/node_modules/strip-eof/license +21 -0
- package/node_modules/npm/node_modules/strip-eof/package.json +39 -0
- package/node_modules/npm/node_modules/strip-eof/readme.md +28 -0
- package/node_modules/npm/node_modules/strip-json-comments/index.js +70 -0
- package/node_modules/npm/node_modules/strip-json-comments/license +21 -0
- package/node_modules/npm/node_modules/strip-json-comments/package.json +42 -0
- package/node_modules/npm/node_modules/strip-json-comments/readme.md +64 -0
- package/node_modules/npm/node_modules/supports-color/browser.js +5 -0
- package/node_modules/npm/node_modules/supports-color/index.js +131 -0
- package/node_modules/npm/node_modules/supports-color/license +9 -0
- package/node_modules/npm/node_modules/supports-color/package.json +53 -0
- package/node_modules/npm/node_modules/supports-color/readme.md +66 -0
- package/node_modules/npm/node_modules/tar/LICENSE +15 -0
- package/node_modules/npm/node_modules/tar/README.md +954 -0
- package/node_modules/npm/node_modules/tar/index.js +18 -0
- package/node_modules/npm/node_modules/tar/lib/buffer.js +11 -0
- package/node_modules/npm/node_modules/tar/lib/create.js +105 -0
- package/node_modules/npm/node_modules/tar/lib/extract.js +113 -0
- package/node_modules/npm/node_modules/tar/lib/header.js +289 -0
- package/node_modules/npm/node_modules/tar/lib/high-level-opt.js +29 -0
- package/node_modules/npm/node_modules/tar/lib/large-numbers.js +97 -0
- package/node_modules/npm/node_modules/tar/lib/list.js +131 -0
- package/node_modules/npm/node_modules/tar/lib/mkdir.js +213 -0
- package/node_modules/npm/node_modules/tar/lib/mode-fix.js +14 -0
- package/node_modules/npm/node_modules/tar/lib/normalize-windows-path.js +8 -0
- package/node_modules/npm/node_modules/tar/lib/pack.js +394 -0
- package/node_modules/npm/node_modules/tar/lib/parse.js +428 -0
- package/node_modules/npm/node_modules/tar/lib/path-reservations.js +149 -0
- package/node_modules/npm/node_modules/tar/lib/pax.js +146 -0
- package/node_modules/npm/node_modules/tar/lib/read-entry.js +99 -0
- package/node_modules/npm/node_modules/tar/lib/replace.js +221 -0
- package/node_modules/npm/node_modules/tar/lib/strip-absolute-path.js +24 -0
- package/node_modules/npm/node_modules/tar/lib/strip-trailing-slashes.js +24 -0
- package/node_modules/npm/node_modules/tar/lib/types.js +44 -0
- package/node_modules/npm/node_modules/tar/lib/unpack.js +846 -0
- package/node_modules/npm/node_modules/tar/lib/update.js +36 -0
- package/node_modules/npm/node_modules/tar/lib/warn-mixin.js +14 -0
- package/node_modules/npm/node_modules/tar/lib/winchars.js +23 -0
- package/node_modules/npm/node_modules/tar/lib/write-entry.js +518 -0
- package/node_modules/npm/node_modules/tar/node_modules/minipass/LICENSE +15 -0
- package/node_modules/npm/node_modules/tar/node_modules/minipass/README.md +606 -0
- package/node_modules/npm/node_modules/tar/node_modules/minipass/index.js +537 -0
- package/node_modules/npm/node_modules/tar/node_modules/minipass/package.json +37 -0
- package/node_modules/npm/node_modules/tar/node_modules/safe-buffer/LICENSE +21 -0
- package/node_modules/npm/node_modules/tar/node_modules/safe-buffer/README.md +584 -0
- package/node_modules/npm/node_modules/tar/node_modules/safe-buffer/index.d.ts +187 -0
- package/node_modules/npm/node_modules/tar/node_modules/safe-buffer/index.js +65 -0
- package/node_modules/npm/node_modules/tar/node_modules/safe-buffer/package.json +51 -0
- package/node_modules/npm/node_modules/tar/node_modules/yallist/LICENSE +15 -0
- package/node_modules/npm/node_modules/tar/node_modules/yallist/README.md +204 -0
- package/node_modules/npm/node_modules/tar/node_modules/yallist/iterator.js +8 -0
- package/node_modules/npm/node_modules/tar/node_modules/yallist/package.json +29 -0
- package/node_modules/npm/node_modules/tar/node_modules/yallist/yallist.js +426 -0
- package/node_modules/npm/node_modules/tar/package.json +55 -0
- package/node_modules/npm/node_modules/term-size/index.js +70 -0
- package/node_modules/npm/node_modules/term-size/license +21 -0
- package/node_modules/npm/node_modules/term-size/package.json +43 -0
- package/node_modules/npm/node_modules/term-size/readme.md +41 -0
- package/node_modules/npm/node_modules/term-size/vendor/macos/term-size +0 -0
- package/node_modules/npm/node_modules/term-size/vendor/windows/term-size.exe +0 -0
- package/node_modules/npm/node_modules/text-table/.travis.yml +4 -0
- package/node_modules/npm/node_modules/text-table/LICENSE +18 -0
- package/node_modules/npm/node_modules/text-table/example/align.js +8 -0
- package/node_modules/npm/node_modules/text-table/example/center.js +8 -0
- package/node_modules/npm/node_modules/text-table/example/dotalign.js +9 -0
- package/node_modules/npm/node_modules/text-table/example/doubledot.js +11 -0
- package/node_modules/npm/node_modules/text-table/example/table.js +6 -0
- package/node_modules/npm/node_modules/text-table/index.js +86 -0
- package/node_modules/npm/node_modules/text-table/package.json +44 -0
- package/node_modules/npm/node_modules/text-table/readme.markdown +134 -0
- package/node_modules/npm/node_modules/text-table/test/align.js +18 -0
- package/node_modules/npm/node_modules/text-table/test/ansi-colors.js +32 -0
- package/node_modules/npm/node_modules/text-table/test/center.js +18 -0
- package/node_modules/npm/node_modules/text-table/test/dotalign.js +20 -0
- package/node_modules/npm/node_modules/text-table/test/doubledot.js +24 -0
- package/node_modules/npm/node_modules/text-table/test/table.js +14 -0
- package/node_modules/npm/node_modules/through/.travis.yml +5 -0
- package/node_modules/npm/node_modules/through/LICENSE.APACHE2 +15 -0
- package/node_modules/npm/node_modules/through/LICENSE.MIT +24 -0
- package/node_modules/npm/node_modules/through/index.js +108 -0
- package/node_modules/npm/node_modules/through/package.json +36 -0
- package/node_modules/npm/node_modules/through/readme.markdown +64 -0
- package/node_modules/npm/node_modules/through/test/async.js +28 -0
- package/node_modules/npm/node_modules/through/test/auto-destroy.js +30 -0
- package/node_modules/npm/node_modules/through/test/buffering.js +71 -0
- package/node_modules/npm/node_modules/through/test/end.js +45 -0
- package/node_modules/npm/node_modules/through/test/index.js +133 -0
- package/node_modules/npm/node_modules/through2/.npmignore +3 -0
- package/node_modules/npm/node_modules/through2/LICENSE.html +336 -0
- package/node_modules/npm/node_modules/through2/LICENSE.md +9 -0
- package/node_modules/npm/node_modules/through2/README.md +136 -0
- package/node_modules/npm/node_modules/through2/node_modules/readable-stream/.travis.yml +55 -0
- package/node_modules/npm/node_modules/through2/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/node_modules/npm/node_modules/through2/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/node_modules/npm/node_modules/through2/node_modules/readable-stream/LICENSE +47 -0
- package/node_modules/npm/node_modules/through2/node_modules/readable-stream/README.md +58 -0
- package/node_modules/npm/node_modules/through2/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
- package/node_modules/npm/node_modules/through2/node_modules/readable-stream/duplex-browser.js +1 -0
- package/node_modules/npm/node_modules/through2/node_modules/readable-stream/duplex.js +1 -0
- package/node_modules/npm/node_modules/through2/node_modules/readable-stream/lib/_stream_duplex.js +131 -0
- package/node_modules/npm/node_modules/through2/node_modules/readable-stream/lib/_stream_passthrough.js +47 -0
- package/node_modules/npm/node_modules/through2/node_modules/readable-stream/lib/_stream_readable.js +1019 -0
- package/node_modules/npm/node_modules/through2/node_modules/readable-stream/lib/_stream_transform.js +214 -0
- package/node_modules/npm/node_modules/through2/node_modules/readable-stream/lib/_stream_writable.js +687 -0
- package/node_modules/npm/node_modules/through2/node_modules/readable-stream/lib/internal/streams/BufferList.js +79 -0
- package/node_modules/npm/node_modules/through2/node_modules/readable-stream/lib/internal/streams/destroy.js +74 -0
- package/node_modules/npm/node_modules/through2/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/node_modules/npm/node_modules/through2/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/node_modules/npm/node_modules/through2/node_modules/readable-stream/package.json +52 -0
- package/node_modules/npm/node_modules/through2/node_modules/readable-stream/passthrough.js +1 -0
- package/node_modules/npm/node_modules/through2/node_modules/readable-stream/readable-browser.js +7 -0
- package/node_modules/npm/node_modules/through2/node_modules/readable-stream/readable.js +19 -0
- package/node_modules/npm/node_modules/through2/node_modules/readable-stream/transform.js +1 -0
- package/node_modules/npm/node_modules/through2/node_modules/readable-stream/writable-browser.js +1 -0
- package/node_modules/npm/node_modules/through2/node_modules/readable-stream/writable.js +8 -0
- package/node_modules/npm/node_modules/through2/node_modules/string_decoder/.travis.yml +50 -0
- package/node_modules/npm/node_modules/through2/node_modules/string_decoder/LICENSE +48 -0
- package/node_modules/npm/node_modules/through2/node_modules/string_decoder/README.md +47 -0
- package/node_modules/npm/node_modules/through2/node_modules/string_decoder/lib/string_decoder.js +296 -0
- package/node_modules/npm/node_modules/through2/node_modules/string_decoder/package.json +31 -0
- package/node_modules/npm/node_modules/through2/package.json +32 -0
- package/node_modules/npm/node_modules/through2/through2.js +96 -0
- package/node_modules/npm/node_modules/timed-out/index.js +55 -0
- package/node_modules/npm/node_modules/timed-out/license +21 -0
- package/node_modules/npm/node_modules/timed-out/package.json +36 -0
- package/node_modules/npm/node_modules/timed-out/readme.md +42 -0
- package/node_modules/npm/node_modules/tiny-relative-date/LICENSE.md +21 -0
- package/node_modules/npm/node_modules/tiny-relative-date/README.md +120 -0
- package/node_modules/npm/node_modules/tiny-relative-date/lib/factory.js +100 -0
- package/node_modules/npm/node_modules/tiny-relative-date/lib/index.js +18 -0
- package/node_modules/npm/node_modules/tiny-relative-date/package.json +39 -0
- package/node_modules/npm/node_modules/tiny-relative-date/src/factory.js +89 -0
- package/node_modules/npm/node_modules/tiny-relative-date/src/index.js +4 -0
- package/node_modules/npm/node_modules/tiny-relative-date/translations/da.js +31 -0
- package/node_modules/npm/node_modules/tiny-relative-date/translations/de.js +31 -0
- package/node_modules/npm/node_modules/tiny-relative-date/translations/en-short.js +31 -0
- package/node_modules/npm/node_modules/tiny-relative-date/translations/en.js +31 -0
- package/node_modules/npm/node_modules/tiny-relative-date/translations/es.js +31 -0
- package/node_modules/npm/node_modules/tough-cookie/LICENSE +12 -0
- package/node_modules/npm/node_modules/tough-cookie/README.md +507 -0
- package/node_modules/npm/node_modules/tough-cookie/lib/cookie.js +1431 -0
- package/node_modules/npm/node_modules/tough-cookie/lib/memstore.js +176 -0
- package/node_modules/npm/node_modules/tough-cookie/lib/pathMatch.js +61 -0
- package/node_modules/npm/node_modules/tough-cookie/lib/permuteDomain.js +56 -0
- package/node_modules/npm/node_modules/tough-cookie/lib/pubsuffix-psl.js +38 -0
- package/node_modules/npm/node_modules/tough-cookie/lib/store.js +71 -0
- package/node_modules/npm/node_modules/tough-cookie/package.json +76 -0
- package/node_modules/npm/node_modules/tunnel-agent/LICENSE +55 -0
- package/node_modules/npm/node_modules/tunnel-agent/README.md +4 -0
- package/node_modules/npm/node_modules/tunnel-agent/index.js +244 -0
- package/node_modules/npm/node_modules/tunnel-agent/package.json +22 -0
- package/node_modules/npm/node_modules/tweetnacl/.npmignore +4 -0
- package/node_modules/npm/node_modules/tweetnacl/AUTHORS.md +28 -0
- package/node_modules/npm/node_modules/tweetnacl/CHANGELOG.md +221 -0
- package/node_modules/npm/node_modules/tweetnacl/LICENSE +24 -0
- package/node_modules/npm/node_modules/tweetnacl/PULL_REQUEST_TEMPLATE.md +20 -0
- package/node_modules/npm/node_modules/tweetnacl/README.md +459 -0
- package/node_modules/npm/node_modules/tweetnacl/nacl-fast.js +2388 -0
- package/node_modules/npm/node_modules/tweetnacl/nacl-fast.min.js +2 -0
- package/node_modules/npm/node_modules/tweetnacl/nacl.d.ts +98 -0
- package/node_modules/npm/node_modules/tweetnacl/nacl.js +1175 -0
- package/node_modules/npm/node_modules/tweetnacl/nacl.min.js +1 -0
- package/node_modules/npm/node_modules/tweetnacl/package.json +58 -0
- package/node_modules/npm/node_modules/typedarray/.travis.yml +4 -0
- package/node_modules/npm/node_modules/typedarray/LICENSE +35 -0
- package/node_modules/npm/node_modules/typedarray/example/tarray.js +4 -0
- package/node_modules/npm/node_modules/typedarray/index.js +630 -0
- package/node_modules/npm/node_modules/typedarray/package.json +55 -0
- package/node_modules/npm/node_modules/typedarray/readme.markdown +61 -0
- package/node_modules/npm/node_modules/typedarray/test/server/undef_globals.js +19 -0
- package/node_modules/npm/node_modules/typedarray/test/tarray.js +10 -0
- package/node_modules/npm/node_modules/uid-number/LICENSE +15 -0
- package/node_modules/npm/node_modules/uid-number/README.md +17 -0
- package/node_modules/npm/node_modules/uid-number/get-uid-gid.js +24 -0
- package/node_modules/npm/node_modules/uid-number/package.json +18 -0
- package/node_modules/npm/node_modules/uid-number/uid-number.js +59 -0
- package/node_modules/npm/node_modules/umask/.npmignore +28 -0
- package/node_modules/npm/node_modules/umask/ChangeLog +9 -0
- package/node_modules/npm/node_modules/umask/LICENSE +22 -0
- package/node_modules/npm/node_modules/umask/README.md +78 -0
- package/node_modules/npm/node_modules/umask/index.js +77 -0
- package/node_modules/npm/node_modules/umask/index.js~ +68 -0
- package/node_modules/npm/node_modules/umask/package.json +28 -0
- package/node_modules/npm/node_modules/umask/test/ChangeLog~ +5 -0
- package/node_modules/npm/node_modules/umask/test/simple.js +166 -0
- package/node_modules/npm/node_modules/umask/test/simple.js~ +14 -0
- package/node_modules/npm/node_modules/unique-filename/.nyc_output/54942.json +1 -0
- package/node_modules/npm/node_modules/unique-filename/.nyc_output/54944.json +1 -0
- package/node_modules/npm/node_modules/unique-filename/LICENSE +5 -0
- package/node_modules/npm/node_modules/unique-filename/README.md +33 -0
- package/node_modules/npm/node_modules/unique-filename/coverage/__root__/index.html +73 -0
- package/node_modules/npm/node_modules/unique-filename/coverage/__root__/index.js.html +69 -0
- package/node_modules/npm/node_modules/unique-filename/coverage/base.css +182 -0
- package/node_modules/npm/node_modules/unique-filename/coverage/index.html +73 -0
- package/node_modules/npm/node_modules/unique-filename/coverage/prettify.css +1 -0
- package/node_modules/npm/node_modules/unique-filename/coverage/prettify.js +1 -0
- package/node_modules/npm/node_modules/unique-filename/coverage/sort-arrow-sprite.png +0 -0
- package/node_modules/npm/node_modules/unique-filename/coverage/sorter.js +156 -0
- package/node_modules/npm/node_modules/unique-filename/index.js +8 -0
- package/node_modules/npm/node_modules/unique-filename/package.json +27 -0
- package/node_modules/npm/node_modules/unique-filename/test/index.js +23 -0
- package/node_modules/npm/node_modules/unique-slug/.npmignore +6 -0
- package/node_modules/npm/node_modules/unique-slug/.travis.yml +11 -0
- package/node_modules/npm/node_modules/unique-slug/README.md +20 -0
- package/node_modules/npm/node_modules/unique-slug/index.js +19 -0
- package/node_modules/npm/node_modules/unique-slug/package.json +23 -0
- package/node_modules/npm/node_modules/unique-slug/test/index.js +13 -0
- package/node_modules/npm/node_modules/unique-string/index.js +4 -0
- package/node_modules/npm/node_modules/unique-string/license +21 -0
- package/node_modules/npm/node_modules/unique-string/package.json +44 -0
- package/node_modules/npm/node_modules/unique-string/readme.md +32 -0
- package/node_modules/npm/node_modules/unpipe/HISTORY.md +4 -0
- package/node_modules/npm/node_modules/unpipe/LICENSE +22 -0
- package/node_modules/npm/node_modules/unpipe/README.md +43 -0
- package/node_modules/npm/node_modules/unpipe/index.js +69 -0
- package/node_modules/npm/node_modules/unpipe/package.json +27 -0
- package/node_modules/npm/node_modules/unzip-response/index.js +36 -0
- package/node_modules/npm/node_modules/unzip-response/license +21 -0
- package/node_modules/npm/node_modules/unzip-response/package.json +49 -0
- package/node_modules/npm/node_modules/unzip-response/readme.md +29 -0
- package/node_modules/npm/node_modules/update-notifier/check.js +22 -0
- package/node_modules/npm/node_modules/update-notifier/index.js +155 -0
- package/node_modules/npm/node_modules/update-notifier/license +9 -0
- package/node_modules/npm/node_modules/update-notifier/package.json +55 -0
- package/node_modules/npm/node_modules/update-notifier/readme.md +193 -0
- package/node_modules/npm/node_modules/uri-js/LICENSE +11 -0
- package/node_modules/npm/node_modules/uri-js/README.md +201 -0
- package/node_modules/npm/node_modules/uri-js/dist/es5/uri.all.d.ts +59 -0
- package/node_modules/npm/node_modules/uri-js/dist/es5/uri.all.js +1443 -0
- package/node_modules/npm/node_modules/uri-js/dist/es5/uri.all.js.map +1 -0
- package/node_modules/npm/node_modules/uri-js/dist/es5/uri.all.min.d.ts +59 -0
- package/node_modules/npm/node_modules/uri-js/dist/es5/uri.all.min.js +3 -0
- package/node_modules/npm/node_modules/uri-js/dist/es5/uri.all.min.js.map +1 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/index.d.ts +1 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/index.js +17 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/index.js.map +1 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/regexps-iri.d.ts +3 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/regexps-iri.js +3 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/regexps-iri.js.map +1 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/regexps-uri.d.ts +4 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/regexps-uri.js +42 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/regexps-uri.js.map +1 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/schemes/http.d.ts +3 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/schemes/http.js +28 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/schemes/http.js.map +1 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/schemes/https.d.ts +3 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/schemes/https.js +9 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/schemes/https.js.map +1 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/schemes/mailto.d.ts +12 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/schemes/mailto.js +148 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/schemes/mailto.js.map +1 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/schemes/urn-uuid.d.ts +7 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/schemes/urn-uuid.js +23 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/schemes/urn-uuid.js.map +1 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/schemes/urn.d.ts +10 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/schemes/urn.js +49 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/schemes/urn.js.map +1 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/schemes/ws.d.ts +7 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/schemes/ws.js +41 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/schemes/ws.js.map +1 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/schemes/wss.d.ts +3 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/schemes/wss.js +9 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/schemes/wss.js.map +1 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/uri.d.ts +59 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/uri.js +480 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/uri.js.map +1 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/util.d.ts +6 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/util.js +36 -0
- package/node_modules/npm/node_modules/uri-js/dist/esnext/util.js.map +1 -0
- package/node_modules/npm/node_modules/uri-js/node_modules/punycode/LICENSE-MIT.txt +20 -0
- package/node_modules/npm/node_modules/uri-js/node_modules/punycode/README.md +122 -0
- package/node_modules/npm/node_modules/uri-js/node_modules/punycode/package.json +58 -0
- package/node_modules/npm/node_modules/uri-js/node_modules/punycode/punycode.es6.js +441 -0
- package/node_modules/npm/node_modules/uri-js/node_modules/punycode/punycode.js +440 -0
- package/node_modules/npm/node_modules/uri-js/package.json +77 -0
- package/node_modules/npm/node_modules/uri-js/yarn.lock +1923 -0
- package/node_modules/npm/node_modules/url-parse-lax/index.js +14 -0
- package/node_modules/npm/node_modules/url-parse-lax/license +21 -0
- package/node_modules/npm/node_modules/url-parse-lax/package.json +41 -0
- package/node_modules/npm/node_modules/url-parse-lax/readme.md +100 -0
- package/node_modules/npm/node_modules/util-deprecate/History.md +16 -0
- package/node_modules/npm/node_modules/util-deprecate/LICENSE +24 -0
- package/node_modules/npm/node_modules/util-deprecate/README.md +53 -0
- package/node_modules/npm/node_modules/util-deprecate/browser.js +67 -0
- package/node_modules/npm/node_modules/util-deprecate/node.js +6 -0
- package/node_modules/npm/node_modules/util-deprecate/package.json +27 -0
- package/node_modules/npm/node_modules/util-extend/LICENSE +18 -0
- package/node_modules/npm/node_modules/util-extend/README.md +13 -0
- package/node_modules/npm/node_modules/util-extend/extend.js +33 -0
- package/node_modules/npm/node_modules/util-extend/package.json +16 -0
- package/node_modules/npm/node_modules/util-extend/test.js +10 -0
- package/node_modules/npm/node_modules/util-promisify/.npmignore +1 -0
- package/node_modules/npm/node_modules/util-promisify/.travis.yml +8 -0
- package/node_modules/npm/node_modules/util-promisify/LICENSE +1072 -0
- package/node_modules/npm/node_modules/util-promisify/README.md +42 -0
- package/node_modules/npm/node_modules/util-promisify/index.js +91 -0
- package/node_modules/npm/node_modules/util-promisify/package.json +13 -0
- package/node_modules/npm/node_modules/util-promisify/test/common.js +56 -0
- package/node_modules/npm/node_modules/util-promisify/test/index.js +194 -0
- package/node_modules/npm/node_modules/util-promisify/test/timers.js +38 -0
- package/node_modules/npm/node_modules/uuid/AUTHORS +5 -0
- package/node_modules/npm/node_modules/uuid/CHANGELOG.md +112 -0
- package/node_modules/npm/node_modules/uuid/LICENSE.md +21 -0
- package/node_modules/npm/node_modules/uuid/README.md +293 -0
- package/node_modules/npm/node_modules/uuid/bin/uuid +65 -0
- package/node_modules/npm/node_modules/uuid/index.js +8 -0
- package/node_modules/npm/node_modules/uuid/lib/bytesToUuid.js +24 -0
- package/node_modules/npm/node_modules/uuid/lib/md5-browser.js +216 -0
- package/node_modules/npm/node_modules/uuid/lib/md5.js +25 -0
- package/node_modules/npm/node_modules/uuid/lib/rng-browser.js +34 -0
- package/node_modules/npm/node_modules/uuid/lib/rng.js +8 -0
- package/node_modules/npm/node_modules/uuid/lib/sha1-browser.js +89 -0
- package/node_modules/npm/node_modules/uuid/lib/sha1.js +25 -0
- package/node_modules/npm/node_modules/uuid/lib/v35.js +57 -0
- package/node_modules/npm/node_modules/uuid/package.json +44 -0
- package/node_modules/npm/node_modules/uuid/v1.js +109 -0
- package/node_modules/npm/node_modules/uuid/v3.js +4 -0
- package/node_modules/npm/node_modules/uuid/v4.js +29 -0
- package/node_modules/npm/node_modules/uuid/v5.js +3 -0
- package/node_modules/npm/node_modules/validate-npm-package-license/LICENSE +202 -0
- package/node_modules/npm/node_modules/validate-npm-package-license/README.md +113 -0
- package/node_modules/npm/node_modules/validate-npm-package-license/index.js +86 -0
- package/node_modules/npm/node_modules/validate-npm-package-license/package.json +28 -0
- package/node_modules/npm/node_modules/validate-npm-package-name/.npmignore +1 -0
- package/node_modules/npm/node_modules/validate-npm-package-name/.nyc_output/aa4ee25ac41a9c3c7ee37ce965e6d1ac.json +1 -0
- package/node_modules/npm/node_modules/validate-npm-package-name/.nyc_output/bb918173e62b9517f55b630902d07ef4.json +1 -0
- package/node_modules/npm/node_modules/validate-npm-package-name/.travis.yml +6 -0
- package/node_modules/npm/node_modules/validate-npm-package-name/LICENSE +6 -0
- package/node_modules/npm/node_modules/validate-npm-package-name/README.md +120 -0
- package/node_modules/npm/node_modules/validate-npm-package-name/index.js +105 -0
- package/node_modules/npm/node_modules/validate-npm-package-name/package.json +38 -0
- package/node_modules/npm/node_modules/validate-npm-package-name/test/index.js +109 -0
- package/node_modules/npm/node_modules/verror/.npmignore +9 -0
- package/node_modules/npm/node_modules/verror/CHANGES.md +28 -0
- package/node_modules/npm/node_modules/verror/CONTRIBUTING.md +19 -0
- package/node_modules/npm/node_modules/verror/LICENSE +19 -0
- package/node_modules/npm/node_modules/verror/README.md +528 -0
- package/node_modules/npm/node_modules/verror/lib/verror.js +451 -0
- package/node_modules/npm/node_modules/verror/package.json +22 -0
- package/node_modules/npm/node_modules/wcwidth/.npmignore +1 -0
- package/node_modules/npm/node_modules/wcwidth/LICENSE +30 -0
- package/node_modules/npm/node_modules/wcwidth/Readme.md +33 -0
- package/node_modules/npm/node_modules/wcwidth/combining.js +50 -0
- package/node_modules/npm/node_modules/wcwidth/docs/index.md +65 -0
- package/node_modules/npm/node_modules/wcwidth/index.js +99 -0
- package/node_modules/npm/node_modules/wcwidth/package.json +42 -0
- package/node_modules/npm/node_modules/wcwidth/test/index.js +64 -0
- package/node_modules/npm/node_modules/which/CHANGELOG.md +152 -0
- package/node_modules/npm/node_modules/which/LICENSE +15 -0
- package/node_modules/npm/node_modules/which/README.md +51 -0
- package/node_modules/npm/node_modules/which/bin/which +52 -0
- package/node_modules/npm/node_modules/which/package.json +30 -0
- package/node_modules/npm/node_modules/which/which.js +135 -0
- package/node_modules/npm/node_modules/which-module/CHANGELOG.md +26 -0
- package/node_modules/npm/node_modules/which-module/LICENSE +13 -0
- package/node_modules/npm/node_modules/which-module/README.md +55 -0
- package/node_modules/npm/node_modules/which-module/index.js +9 -0
- package/node_modules/npm/node_modules/which-module/package.json +41 -0
- package/node_modules/npm/node_modules/wide-align/LICENSE +14 -0
- package/node_modules/npm/node_modules/wide-align/README.md +47 -0
- package/node_modules/npm/node_modules/wide-align/align.js +65 -0
- package/node_modules/npm/node_modules/wide-align/node_modules/string-width/index.js +37 -0
- package/node_modules/npm/node_modules/wide-align/node_modules/string-width/license +21 -0
- package/node_modules/npm/node_modules/wide-align/node_modules/string-width/package.json +56 -0
- package/node_modules/npm/node_modules/wide-align/node_modules/string-width/readme.md +42 -0
- package/node_modules/npm/node_modules/wide-align/package.json +33 -0
- package/node_modules/npm/node_modules/widest-line/index.js +8 -0
- package/node_modules/npm/node_modules/widest-line/license +9 -0
- package/node_modules/npm/node_modules/widest-line/package.json +54 -0
- package/node_modules/npm/node_modules/widest-line/readme.md +34 -0
- package/node_modules/npm/node_modules/worker-farm/.editorconfig +16 -0
- package/node_modules/npm/node_modules/worker-farm/.travis.yml +12 -0
- package/node_modules/npm/node_modules/worker-farm/LICENSE.md +13 -0
- package/node_modules/npm/node_modules/worker-farm/README.md +150 -0
- package/node_modules/npm/node_modules/worker-farm/examples/basic/child.js +5 -0
- package/node_modules/npm/node_modules/worker-farm/examples/basic/index.js +13 -0
- package/node_modules/npm/node_modules/worker-farm/examples/pi/calc.js +22 -0
- package/node_modules/npm/node_modules/worker-farm/examples/pi/index.js +41 -0
- package/node_modules/npm/node_modules/worker-farm/index.d.ts +55 -0
- package/node_modules/npm/node_modules/worker-farm/lib/child/index.js +56 -0
- package/node_modules/npm/node_modules/worker-farm/lib/farm.js +348 -0
- package/node_modules/npm/node_modules/worker-farm/lib/fork.js +33 -0
- package/node_modules/npm/node_modules/worker-farm/lib/index.js +34 -0
- package/node_modules/npm/node_modules/worker-farm/package.json +31 -0
- package/node_modules/npm/node_modules/worker-farm/tests/child.js +87 -0
- package/node_modules/npm/node_modules/worker-farm/tests/debug.js +12 -0
- package/node_modules/npm/node_modules/worker-farm/tests/index.js +616 -0
- package/node_modules/npm/node_modules/wrap-ansi/index.js +188 -0
- package/node_modules/npm/node_modules/wrap-ansi/license +9 -0
- package/node_modules/npm/node_modules/wrap-ansi/node_modules/ansi-regex/index.js +14 -0
- package/node_modules/npm/node_modules/wrap-ansi/node_modules/ansi-regex/license +9 -0
- package/node_modules/npm/node_modules/wrap-ansi/node_modules/ansi-regex/package.json +53 -0
- package/node_modules/npm/node_modules/wrap-ansi/node_modules/ansi-regex/readme.md +87 -0
- package/node_modules/npm/node_modules/wrap-ansi/node_modules/is-fullwidth-code-point/index.js +46 -0
- package/node_modules/npm/node_modules/wrap-ansi/node_modules/is-fullwidth-code-point/license +21 -0
- package/node_modules/npm/node_modules/wrap-ansi/node_modules/is-fullwidth-code-point/package.json +45 -0
- package/node_modules/npm/node_modules/wrap-ansi/node_modules/is-fullwidth-code-point/readme.md +39 -0
- package/node_modules/npm/node_modules/wrap-ansi/node_modules/string-width/index.js +39 -0
- package/node_modules/npm/node_modules/wrap-ansi/node_modules/string-width/license +9 -0
- package/node_modules/npm/node_modules/wrap-ansi/node_modules/string-width/package.json +56 -0
- package/node_modules/npm/node_modules/wrap-ansi/node_modules/string-width/readme.md +45 -0
- package/node_modules/npm/node_modules/wrap-ansi/node_modules/strip-ansi/index.d.ts +15 -0
- package/node_modules/npm/node_modules/wrap-ansi/node_modules/strip-ansi/index.js +7 -0
- package/node_modules/npm/node_modules/wrap-ansi/node_modules/strip-ansi/license +9 -0
- package/node_modules/npm/node_modules/wrap-ansi/node_modules/strip-ansi/package.json +54 -0
- package/node_modules/npm/node_modules/wrap-ansi/node_modules/strip-ansi/readme.md +61 -0
- package/node_modules/npm/node_modules/wrap-ansi/package.json +61 -0
- package/node_modules/npm/node_modules/wrap-ansi/readme.md +108 -0
- package/node_modules/npm/node_modules/wrappy/LICENSE +15 -0
- package/node_modules/npm/node_modules/wrappy/README.md +36 -0
- package/node_modules/npm/node_modules/wrappy/package.json +29 -0
- package/node_modules/npm/node_modules/wrappy/wrappy.js +33 -0
- package/node_modules/npm/node_modules/write-file-atomic/CHANGELOG.md +25 -0
- package/node_modules/npm/node_modules/write-file-atomic/LICENSE +6 -0
- package/node_modules/npm/node_modules/write-file-atomic/README.md +56 -0
- package/node_modules/npm/node_modules/write-file-atomic/index.js +238 -0
- package/node_modules/npm/node_modules/write-file-atomic/package.json +41 -0
- package/node_modules/npm/node_modules/xdg-basedir/index.js +28 -0
- package/node_modules/npm/node_modules/xdg-basedir/license +21 -0
- package/node_modules/npm/node_modules/xdg-basedir/package.json +40 -0
- package/node_modules/npm/node_modules/xdg-basedir/readme.md +60 -0
- package/node_modules/npm/node_modules/xtend/.jshintrc +30 -0
- package/node_modules/npm/node_modules/xtend/.npmignore +1 -0
- package/node_modules/npm/node_modules/xtend/LICENCE +19 -0
- package/node_modules/npm/node_modules/xtend/Makefile +4 -0
- package/node_modules/npm/node_modules/xtend/README.md +32 -0
- package/node_modules/npm/node_modules/xtend/immutable.js +19 -0
- package/node_modules/npm/node_modules/xtend/mutable.js +17 -0
- package/node_modules/npm/node_modules/xtend/package.json +55 -0
- package/node_modules/npm/node_modules/xtend/test.js +83 -0
- package/node_modules/npm/node_modules/y18n/CHANGELOG.md +28 -0
- package/node_modules/npm/node_modules/y18n/LICENSE +13 -0
- package/node_modules/npm/node_modules/y18n/README.md +109 -0
- package/node_modules/npm/node_modules/y18n/index.js +188 -0
- package/node_modules/npm/node_modules/y18n/package.json +39 -0
- package/node_modules/npm/node_modules/yallist/LICENSE +15 -0
- package/node_modules/npm/node_modules/yallist/README.md +204 -0
- package/node_modules/npm/node_modules/yallist/iterator.js +8 -0
- package/node_modules/npm/node_modules/yallist/package.json +29 -0
- package/node_modules/npm/node_modules/yallist/yallist.js +376 -0
- package/node_modules/npm/node_modules/yargs/CHANGELOG.md +1406 -0
- package/node_modules/npm/node_modules/yargs/LICENSE +22 -0
- package/node_modules/npm/node_modules/yargs/README.md +136 -0
- package/node_modules/npm/node_modules/yargs/index.js +39 -0
- package/node_modules/npm/node_modules/yargs/lib/apply-extends.js +67 -0
- package/node_modules/npm/node_modules/yargs/lib/argsert.js +68 -0
- package/node_modules/npm/node_modules/yargs/lib/command.js +447 -0
- package/node_modules/npm/node_modules/yargs/lib/completion-templates.js +49 -0
- package/node_modules/npm/node_modules/yargs/lib/completion.js +116 -0
- package/node_modules/npm/node_modules/yargs/lib/is-promise.js +3 -0
- package/node_modules/npm/node_modules/yargs/lib/levenshtein.js +58 -0
- package/node_modules/npm/node_modules/yargs/lib/middleware.js +64 -0
- package/node_modules/npm/node_modules/yargs/lib/obj-filter.js +11 -0
- package/node_modules/npm/node_modules/yargs/lib/usage.js +549 -0
- package/node_modules/npm/node_modules/yargs/lib/validation.js +350 -0
- package/node_modules/npm/node_modules/yargs/lib/yerror.js +11 -0
- package/node_modules/npm/node_modules/yargs/locales/be.json +39 -0
- package/node_modules/npm/node_modules/yargs/locales/de.json +39 -0
- package/node_modules/npm/node_modules/yargs/locales/en.json +42 -0
- package/node_modules/npm/node_modules/yargs/locales/es.json +39 -0
- package/node_modules/npm/node_modules/yargs/locales/fr.json +37 -0
- package/node_modules/npm/node_modules/yargs/locales/hi.json +42 -0
- package/node_modules/npm/node_modules/yargs/locales/hu.json +39 -0
- package/node_modules/npm/node_modules/yargs/locales/id.json +43 -0
- package/node_modules/npm/node_modules/yargs/locales/it.json +39 -0
- package/node_modules/npm/node_modules/yargs/locales/ja.json +42 -0
- package/node_modules/npm/node_modules/yargs/locales/ko.json +42 -0
- package/node_modules/npm/node_modules/yargs/locales/nb.json +37 -0
- package/node_modules/npm/node_modules/yargs/locales/nl.json +42 -0
- package/node_modules/npm/node_modules/yargs/locales/nn.json +39 -0
- package/node_modules/npm/node_modules/yargs/locales/pirate.json +13 -0
- package/node_modules/npm/node_modules/yargs/locales/pl.json +42 -0
- package/node_modules/npm/node_modules/yargs/locales/pt.json +38 -0
- package/node_modules/npm/node_modules/yargs/locales/pt_BR.json +42 -0
- package/node_modules/npm/node_modules/yargs/locales/ru.json +39 -0
- package/node_modules/npm/node_modules/yargs/locales/th.json +39 -0
- package/node_modules/npm/node_modules/yargs/locales/tr.json +41 -0
- package/node_modules/npm/node_modules/yargs/locales/zh_CN.json +41 -0
- package/node_modules/npm/node_modules/yargs/locales/zh_TW.json +40 -0
- package/node_modules/npm/node_modules/yargs/node_modules/ansi-regex/index.js +14 -0
- package/node_modules/npm/node_modules/yargs/node_modules/ansi-regex/license +9 -0
- package/node_modules/npm/node_modules/yargs/node_modules/ansi-regex/package.json +53 -0
- package/node_modules/npm/node_modules/yargs/node_modules/ansi-regex/readme.md +87 -0
- package/node_modules/npm/node_modules/yargs/node_modules/find-up/index.js +46 -0
- package/node_modules/npm/node_modules/yargs/node_modules/find-up/license +9 -0
- package/node_modules/npm/node_modules/yargs/node_modules/find-up/package.json +50 -0
- package/node_modules/npm/node_modules/yargs/node_modules/find-up/readme.md +87 -0
- package/node_modules/npm/node_modules/yargs/node_modules/is-fullwidth-code-point/index.js +46 -0
- package/node_modules/npm/node_modules/yargs/node_modules/is-fullwidth-code-point/license +21 -0
- package/node_modules/npm/node_modules/yargs/node_modules/is-fullwidth-code-point/package.json +45 -0
- package/node_modules/npm/node_modules/yargs/node_modules/is-fullwidth-code-point/readme.md +39 -0
- package/node_modules/npm/node_modules/yargs/node_modules/locate-path/index.js +24 -0
- package/node_modules/npm/node_modules/yargs/node_modules/locate-path/license +9 -0
- package/node_modules/npm/node_modules/yargs/node_modules/locate-path/package.json +44 -0
- package/node_modules/npm/node_modules/yargs/node_modules/locate-path/readme.md +99 -0
- package/node_modules/npm/node_modules/yargs/node_modules/p-limit/index.d.ts +38 -0
- package/node_modules/npm/node_modules/yargs/node_modules/p-limit/index.js +57 -0
- package/node_modules/npm/node_modules/yargs/node_modules/p-limit/license +9 -0
- package/node_modules/npm/node_modules/yargs/node_modules/p-limit/package.json +52 -0
- package/node_modules/npm/node_modules/yargs/node_modules/p-limit/readme.md +101 -0
- package/node_modules/npm/node_modules/yargs/node_modules/p-locate/index.js +34 -0
- package/node_modules/npm/node_modules/yargs/node_modules/p-locate/license +9 -0
- package/node_modules/npm/node_modules/yargs/node_modules/p-locate/package.json +51 -0
- package/node_modules/npm/node_modules/yargs/node_modules/p-locate/readme.md +88 -0
- package/node_modules/npm/node_modules/yargs/node_modules/p-try/index.d.ts +39 -0
- package/node_modules/npm/node_modules/yargs/node_modules/p-try/index.js +9 -0
- package/node_modules/npm/node_modules/yargs/node_modules/p-try/license +9 -0
- package/node_modules/npm/node_modules/yargs/node_modules/p-try/package.json +42 -0
- package/node_modules/npm/node_modules/yargs/node_modules/p-try/readme.md +58 -0
- package/node_modules/npm/node_modules/yargs/node_modules/string-width/index.js +39 -0
- package/node_modules/npm/node_modules/yargs/node_modules/string-width/license +9 -0
- package/node_modules/npm/node_modules/yargs/node_modules/string-width/package.json +56 -0
- package/node_modules/npm/node_modules/yargs/node_modules/string-width/readme.md +45 -0
- package/node_modules/npm/node_modules/yargs/node_modules/strip-ansi/index.d.ts +15 -0
- package/node_modules/npm/node_modules/yargs/node_modules/strip-ansi/index.js +7 -0
- package/node_modules/npm/node_modules/yargs/node_modules/strip-ansi/license +9 -0
- package/node_modules/npm/node_modules/yargs/node_modules/strip-ansi/package.json +54 -0
- package/node_modules/npm/node_modules/yargs/node_modules/strip-ansi/readme.md +61 -0
- package/node_modules/npm/node_modules/yargs/package.json +79 -0
- package/node_modules/npm/node_modules/yargs/yargs.js +1252 -0
- package/node_modules/npm/node_modules/yargs-parser/CHANGELOG.md +507 -0
- package/node_modules/npm/node_modules/yargs-parser/LICENSE.txt +14 -0
- package/node_modules/npm/node_modules/yargs-parser/README.md +418 -0
- package/node_modules/npm/node_modules/yargs-parser/index.js +968 -0
- package/node_modules/npm/node_modules/yargs-parser/lib/tokenize-arg-string.js +40 -0
- package/node_modules/npm/node_modules/yargs-parser/node_modules/camelcase/index.d.ts +63 -0
- package/node_modules/npm/node_modules/yargs-parser/node_modules/camelcase/index.js +76 -0
- package/node_modules/npm/node_modules/yargs-parser/node_modules/camelcase/license +9 -0
- package/node_modules/npm/node_modules/yargs-parser/node_modules/camelcase/package.json +43 -0
- package/node_modules/npm/node_modules/yargs-parser/node_modules/camelcase/readme.md +99 -0
- package/node_modules/npm/node_modules/yargs-parser/package.json +47 -0
- package/node_modules/npm/package.json +315 -0
- package/node_modules/npm/scripts/changelog.js +103 -0
- package/node_modules/npm/scripts/clean-old.sh +165 -0
- package/node_modules/npm/scripts/dep-update +8 -0
- package/node_modules/npm/scripts/dev-dep-update +8 -0
- package/node_modules/npm/scripts/docs-build.js +28 -0
- package/node_modules/npm/scripts/gen-changelog +7 -0
- package/node_modules/npm/scripts/gen-dev-ignores.js +7 -0
- package/node_modules/npm/scripts/install.sh +245 -0
- package/node_modules/npm/scripts/maketest +85 -0
- package/node_modules/npm/scripts/pr +167 -0
- package/node_modules/npm/scripts/publish-tag.js +3 -0
- package/node_modules/npm/scripts/release.sh +43 -0
- package/node_modules/npm/scripts/relocate.sh +26 -0
- package/node_modules/npm/scripts/update-authors.sh +9 -0
- package/node_modules/npm/scripts/update-dist-tags.js +123 -0
- package/node_modules/npm-run-path/index.js +39 -0
- package/node_modules/npm-run-path/license +21 -0
- package/node_modules/npm-run-path/package.json +45 -0
- package/node_modules/npm-run-path/readme.md +81 -0
- package/node_modules/oauth-sign/LICENSE +55 -0
- package/node_modules/oauth-sign/README.md +11 -0
- package/node_modules/oauth-sign/index.js +146 -0
- package/node_modules/oauth-sign/package.json +23 -0
- package/node_modules/object-assign/index.js +90 -0
- package/node_modules/object-assign/license +21 -0
- package/node_modules/object-assign/package.json +42 -0
- package/node_modules/object-assign/readme.md +61 -0
- package/node_modules/object-inspect/.eslintrc +53 -0
- package/node_modules/object-inspect/.github/FUNDING.yml +12 -0
- package/node_modules/object-inspect/.nycrc +13 -0
- package/node_modules/object-inspect/CHANGELOG.md +360 -0
- package/node_modules/object-inspect/LICENSE +21 -0
- package/node_modules/object-inspect/example/all.js +23 -0
- package/node_modules/object-inspect/example/circular.js +6 -0
- package/node_modules/object-inspect/example/fn.js +5 -0
- package/node_modules/object-inspect/example/inspect.js +10 -0
- package/node_modules/object-inspect/index.js +512 -0
- package/node_modules/object-inspect/package-support.json +20 -0
- package/node_modules/object-inspect/package.json +94 -0
- package/node_modules/object-inspect/readme.markdown +86 -0
- package/node_modules/object-inspect/test/bigint.js +58 -0
- package/node_modules/object-inspect/test/browser/dom.js +15 -0
- package/node_modules/object-inspect/test/circular.js +16 -0
- package/node_modules/object-inspect/test/deep.js +12 -0
- package/node_modules/object-inspect/test/element.js +53 -0
- package/node_modules/object-inspect/test/err.js +48 -0
- package/node_modules/object-inspect/test/fakes.js +29 -0
- package/node_modules/object-inspect/test/fn.js +76 -0
- package/node_modules/object-inspect/test/has.js +15 -0
- package/node_modules/object-inspect/test/holes.js +15 -0
- package/node_modules/object-inspect/test/indent-option.js +271 -0
- package/node_modules/object-inspect/test/inspect.js +139 -0
- package/node_modules/object-inspect/test/lowbyte.js +12 -0
- package/node_modules/object-inspect/test/number.js +58 -0
- package/node_modules/object-inspect/test/quoteStyle.js +17 -0
- package/node_modules/object-inspect/test/toStringTag.js +40 -0
- package/node_modules/object-inspect/test/undef.js +12 -0
- package/node_modules/object-inspect/test/values.js +211 -0
- package/node_modules/object-inspect/test-core-js.js +26 -0
- package/node_modules/object-inspect/util.inspect.js +1 -0
- package/node_modules/on-finished/HISTORY.md +98 -0
- package/node_modules/on-finished/LICENSE +23 -0
- package/node_modules/on-finished/README.md +162 -0
- package/node_modules/on-finished/index.js +234 -0
- package/node_modules/on-finished/package.json +39 -0
- package/node_modules/once/LICENSE +15 -0
- package/node_modules/once/README.md +79 -0
- package/node_modules/once/once.js +42 -0
- package/node_modules/once/package.json +33 -0
- package/node_modules/p-finally/index.js +15 -0
- package/node_modules/p-finally/license +21 -0
- package/node_modules/p-finally/package.json +42 -0
- package/node_modules/p-finally/readme.md +47 -0
- package/node_modules/package-json/index.js +67 -0
- package/node_modules/package-json/license +21 -0
- package/node_modules/package-json/package.json +43 -0
- package/node_modules/package-json/readme.md +91 -0
- package/node_modules/parseurl/HISTORY.md +58 -0
- package/node_modules/parseurl/LICENSE +24 -0
- package/node_modules/parseurl/README.md +133 -0
- package/node_modules/parseurl/index.js +158 -0
- package/node_modules/parseurl/package.json +40 -0
- package/node_modules/path-exists/index.js +17 -0
- package/node_modules/path-exists/license +21 -0
- package/node_modules/path-exists/package.json +40 -0
- package/node_modules/path-exists/readme.md +50 -0
- package/node_modules/path-is-absolute/index.js +20 -0
- package/node_modules/path-is-absolute/license +21 -0
- package/node_modules/path-is-absolute/package.json +43 -0
- package/node_modules/path-is-absolute/readme.md +59 -0
- package/node_modules/path-is-inside/LICENSE.txt +47 -0
- package/node_modules/path-is-inside/lib/path-is-inside.js +28 -0
- package/node_modules/path-is-inside/package.json +21 -0
- package/node_modules/path-key/index.js +13 -0
- package/node_modules/path-key/license +21 -0
- package/node_modules/path-key/package.json +39 -0
- package/node_modules/path-key/readme.md +51 -0
- package/node_modules/path-parse/LICENSE +21 -0
- package/node_modules/path-parse/README.md +42 -0
- package/node_modules/path-parse/index.js +75 -0
- package/node_modules/path-parse/package.json +33 -0
- package/node_modules/path-to-regexp/History.md +36 -0
- package/node_modules/path-to-regexp/LICENSE +21 -0
- package/node_modules/path-to-regexp/Readme.md +35 -0
- package/node_modules/path-to-regexp/index.js +129 -0
- package/node_modules/path-to-regexp/package.json +30 -0
- package/node_modules/performance-now/.npmignore +1 -0
- package/node_modules/performance-now/.tm_properties +7 -0
- package/node_modules/performance-now/.travis.yml +6 -0
- package/node_modules/performance-now/README.md +30 -0
- package/node_modules/performance-now/lib/performance-now.js +36 -0
- package/node_modules/performance-now/lib/performance-now.js.map +10 -0
- package/node_modules/performance-now/license.txt +7 -0
- package/node_modules/performance-now/package.json +35 -0
- package/node_modules/performance-now/src/index.d.ts +8 -0
- package/node_modules/performance-now/src/performance-now.coffee +17 -0
- package/node_modules/performance-now/test/mocha.opts +3 -0
- package/node_modules/performance-now/test/performance-now.coffee +43 -0
- package/node_modules/performance-now/test/scripts/delayed-call.coffee +11 -0
- package/node_modules/performance-now/test/scripts/delayed-require.coffee +12 -0
- package/node_modules/performance-now/test/scripts/difference.coffee +6 -0
- package/node_modules/performance-now/test/scripts/initial-value.coffee +10 -0
- package/node_modules/performance-now/test/scripts.coffee +27 -0
- package/node_modules/pify/index.js +84 -0
- package/node_modules/pify/license +9 -0
- package/node_modules/pify/package.json +51 -0
- package/node_modules/pify/readme.md +131 -0
- package/node_modules/prepend-http/index.js +14 -0
- package/node_modules/prepend-http/license +21 -0
- package/node_modules/prepend-http/package.json +35 -0
- package/node_modules/prepend-http/readme.md +31 -0
- package/node_modules/process-nextick-args/index.js +45 -0
- package/node_modules/process-nextick-args/license.md +19 -0
- package/node_modules/process-nextick-args/package.json +25 -0
- package/node_modules/process-nextick-args/readme.md +18 -0
- package/node_modules/proxy-addr/HISTORY.md +161 -0
- package/node_modules/proxy-addr/LICENSE +22 -0
- package/node_modules/proxy-addr/README.md +139 -0
- package/node_modules/proxy-addr/index.js +327 -0
- package/node_modules/proxy-addr/package.json +47 -0
- package/node_modules/pseudomap/LICENSE +15 -0
- package/node_modules/pseudomap/README.md +60 -0
- package/node_modules/pseudomap/map.js +9 -0
- package/node_modules/pseudomap/package.json +25 -0
- package/node_modules/pseudomap/pseudomap.js +113 -0
- package/node_modules/pseudomap/test/basic.js +86 -0
- package/node_modules/psl/LICENSE +9 -0
- package/node_modules/psl/README.md +215 -0
- package/node_modules/psl/browserstack-logo.svg +90 -0
- package/node_modules/psl/data/rules.json +8834 -0
- package/node_modules/psl/dist/psl.js +9645 -0
- package/node_modules/psl/dist/psl.min.js +1 -0
- package/node_modules/psl/index.js +269 -0
- package/node_modules/psl/package.json +44 -0
- package/node_modules/punycode/LICENSE-MIT.txt +20 -0
- package/node_modules/punycode/README.md +122 -0
- package/node_modules/punycode/package.json +58 -0
- package/node_modules/punycode/punycode.es6.js +441 -0
- package/node_modules/punycode/punycode.js +440 -0
- package/node_modules/qs/.editorconfig +40 -0
- package/node_modules/qs/.eslintrc +38 -0
- package/node_modules/qs/.github/FUNDING.yml +12 -0
- package/node_modules/qs/.nycrc +13 -0
- package/node_modules/qs/CHANGELOG.md +388 -0
- package/node_modules/qs/LICENSE.md +29 -0
- package/node_modules/qs/README.md +623 -0
- package/node_modules/qs/dist/qs.js +2044 -0
- package/node_modules/qs/lib/formats.js +23 -0
- package/node_modules/qs/lib/index.js +11 -0
- package/node_modules/qs/lib/parse.js +263 -0
- package/node_modules/qs/lib/stringify.js +317 -0
- package/node_modules/qs/lib/utils.js +252 -0
- package/node_modules/qs/package.json +73 -0
- package/node_modules/qs/test/parse.js +841 -0
- package/node_modules/qs/test/stringify.js +865 -0
- package/node_modules/qs/test/utils.js +136 -0
- package/node_modules/range-parser/HISTORY.md +56 -0
- package/node_modules/range-parser/LICENSE +23 -0
- package/node_modules/range-parser/README.md +84 -0
- package/node_modules/range-parser/index.js +162 -0
- package/node_modules/range-parser/package.json +44 -0
- package/node_modules/raw-body/HISTORY.md +303 -0
- package/node_modules/raw-body/LICENSE +22 -0
- package/node_modules/raw-body/README.md +223 -0
- package/node_modules/raw-body/SECURITY.md +24 -0
- package/node_modules/raw-body/index.d.ts +87 -0
- package/node_modules/raw-body/index.js +329 -0
- package/node_modules/raw-body/package.json +49 -0
- package/node_modules/rc/LICENSE.APACHE2 +15 -0
- package/node_modules/rc/LICENSE.BSD +26 -0
- package/node_modules/rc/LICENSE.MIT +24 -0
- package/node_modules/rc/README.md +227 -0
- package/node_modules/rc/browser.js +7 -0
- package/node_modules/rc/cli.js +4 -0
- package/node_modules/rc/index.js +53 -0
- package/node_modules/rc/lib/utils.js +104 -0
- package/node_modules/rc/package.json +29 -0
- package/node_modules/rc/test/ini.js +16 -0
- package/node_modules/rc/test/nested-env-vars.js +50 -0
- package/node_modules/rc/test/test.js +59 -0
- package/node_modules/rechoir/.npmignore +1 -0
- package/node_modules/rechoir/.travis.yml +24 -0
- package/node_modules/rechoir/CHANGELOG +38 -0
- package/node_modules/rechoir/LICENSE +22 -0
- package/node_modules/rechoir/README.md +42 -0
- package/node_modules/rechoir/index.js +59 -0
- package/node_modules/rechoir/lib/extension.js +11 -0
- package/node_modules/rechoir/lib/normalize.js +15 -0
- package/node_modules/rechoir/lib/register.js +15 -0
- package/node_modules/rechoir/package.json +88 -0
- package/node_modules/registry-auth-token/.npmignore +6 -0
- package/node_modules/registry-auth-token/CHANGELOG.md +112 -0
- package/node_modules/registry-auth-token/LICENSE +21 -0
- package/node_modules/registry-auth-token/README.md +65 -0
- package/node_modules/registry-auth-token/base64.js +14 -0
- package/node_modules/registry-auth-token/index.js +123 -0
- package/node_modules/registry-auth-token/package.json +46 -0
- package/node_modules/registry-auth-token/registry-url.js +5 -0
- package/node_modules/registry-auth-token/test/auth-token.test.js +455 -0
- package/node_modules/registry-auth-token/test/registry-url.test.js +64 -0
- package/node_modules/registry-auth-token/yarn.lock +1516 -0
- package/node_modules/registry-url/index.js +6 -0
- package/node_modules/registry-url/license +21 -0
- package/node_modules/registry-url/package.json +40 -0
- package/node_modules/registry-url/readme.md +50 -0
- package/node_modules/request/CHANGELOG.md +717 -0
- package/node_modules/request/LICENSE +55 -0
- package/node_modules/request/README.md +1133 -0
- package/node_modules/request/index.js +155 -0
- package/node_modules/request/lib/auth.js +167 -0
- package/node_modules/request/lib/cookies.js +38 -0
- package/node_modules/request/lib/getProxyFromURI.js +79 -0
- package/node_modules/request/lib/har.js +205 -0
- package/node_modules/request/lib/hawk.js +89 -0
- package/node_modules/request/lib/helpers.js +66 -0
- package/node_modules/request/lib/multipart.js +112 -0
- package/node_modules/request/lib/oauth.js +148 -0
- package/node_modules/request/lib/querystring.js +50 -0
- package/node_modules/request/lib/redirect.js +154 -0
- package/node_modules/request/lib/tunnel.js +175 -0
- package/node_modules/request/node_modules/qs/.editorconfig +43 -0
- package/node_modules/request/node_modules/qs/.eslintrc +37 -0
- package/node_modules/request/node_modules/qs/.github/FUNDING.yml +12 -0
- package/node_modules/request/node_modules/qs/.nycrc +13 -0
- package/node_modules/request/node_modules/qs/CHANGELOG.md +250 -0
- package/node_modules/request/node_modules/qs/LICENSE.md +29 -0
- package/node_modules/request/node_modules/qs/README.md +510 -0
- package/node_modules/request/node_modules/qs/bower.json +21 -0
- package/node_modules/request/node_modules/qs/component.json +15 -0
- package/node_modules/request/node_modules/qs/dist/qs.js +648 -0
- package/node_modules/request/node_modules/qs/lib/formats.js +18 -0
- package/node_modules/request/node_modules/qs/lib/index.js +11 -0
- package/node_modules/request/node_modules/qs/lib/parse.js +175 -0
- package/node_modules/request/node_modules/qs/lib/stringify.js +217 -0
- package/node_modules/request/node_modules/qs/lib/utils.js +215 -0
- package/node_modules/request/node_modules/qs/package.json +54 -0
- package/node_modules/request/node_modules/qs/test/index.js +7 -0
- package/node_modules/request/node_modules/qs/test/parse.js +649 -0
- package/node_modules/request/node_modules/qs/test/stringify.js +642 -0
- package/node_modules/request/node_modules/qs/test/utils.js +65 -0
- package/node_modules/request/package.json +86 -0
- package/node_modules/request/request.js +1553 -0
- package/node_modules/resolve/.editorconfig +37 -0
- package/node_modules/resolve/.eslintrc +65 -0
- package/node_modules/resolve/.github/FUNDING.yml +12 -0
- package/node_modules/resolve/LICENSE +21 -0
- package/node_modules/resolve/SECURITY.md +3 -0
- package/node_modules/resolve/appveyor.yml +76 -0
- package/node_modules/resolve/async.js +3 -0
- package/node_modules/resolve/bin/resolve +50 -0
- package/node_modules/resolve/example/async.js +5 -0
- package/node_modules/resolve/example/sync.js +3 -0
- package/node_modules/resolve/index.js +6 -0
- package/node_modules/resolve/lib/async.js +329 -0
- package/node_modules/resolve/lib/caller.js +8 -0
- package/node_modules/resolve/lib/core.js +52 -0
- package/node_modules/resolve/lib/core.json +152 -0
- package/node_modules/resolve/lib/homedir.js +24 -0
- package/node_modules/resolve/lib/is-core.js +5 -0
- package/node_modules/resolve/lib/node-modules-paths.js +42 -0
- package/node_modules/resolve/lib/normalize-options.js +10 -0
- package/node_modules/resolve/lib/sync.js +208 -0
- package/node_modules/resolve/package.json +62 -0
- package/node_modules/resolve/readme.markdown +301 -0
- package/node_modules/resolve/sync.js +3 -0
- package/node_modules/resolve/test/core.js +81 -0
- package/node_modules/resolve/test/dotdot/abc/index.js +2 -0
- package/node_modules/resolve/test/dotdot/index.js +1 -0
- package/node_modules/resolve/test/dotdot.js +29 -0
- package/node_modules/resolve/test/faulty_basedir.js +29 -0
- package/node_modules/resolve/test/filter.js +34 -0
- package/node_modules/resolve/test/filter_sync.js +33 -0
- package/node_modules/resolve/test/home_paths.js +127 -0
- package/node_modules/resolve/test/home_paths_sync.js +114 -0
- package/node_modules/resolve/test/mock.js +315 -0
- package/node_modules/resolve/test/mock_sync.js +214 -0
- package/node_modules/resolve/test/module_dir/xmodules/aaa/index.js +1 -0
- package/node_modules/resolve/test/module_dir/ymodules/aaa/index.js +1 -0
- package/node_modules/resolve/test/module_dir/zmodules/bbb/main.js +1 -0
- package/node_modules/resolve/test/module_dir/zmodules/bbb/package.json +3 -0
- package/node_modules/resolve/test/module_dir.js +56 -0
- package/node_modules/resolve/test/node-modules-paths.js +143 -0
- package/node_modules/resolve/test/node_path/x/aaa/index.js +1 -0
- package/node_modules/resolve/test/node_path/x/ccc/index.js +1 -0
- package/node_modules/resolve/test/node_path/y/bbb/index.js +1 -0
- package/node_modules/resolve/test/node_path/y/ccc/index.js +1 -0
- package/node_modules/resolve/test/node_path.js +70 -0
- package/node_modules/resolve/test/nonstring.js +9 -0
- package/node_modules/resolve/test/pathfilter/deep_ref/main.js +0 -0
- package/node_modules/resolve/test/pathfilter.js +75 -0
- package/node_modules/resolve/test/precedence/aaa/index.js +1 -0
- package/node_modules/resolve/test/precedence/aaa/main.js +1 -0
- package/node_modules/resolve/test/precedence/aaa.js +1 -0
- package/node_modules/resolve/test/precedence/bbb/main.js +1 -0
- package/node_modules/resolve/test/precedence/bbb.js +1 -0
- package/node_modules/resolve/test/precedence.js +23 -0
- package/node_modules/resolve/test/resolver/baz/doom.js +0 -0
- package/node_modules/resolve/test/resolver/baz/package.json +4 -0
- package/node_modules/resolve/test/resolver/baz/quux.js +1 -0
- package/node_modules/resolve/test/resolver/browser_field/a.js +0 -0
- package/node_modules/resolve/test/resolver/browser_field/b.js +0 -0
- package/node_modules/resolve/test/resolver/browser_field/package.json +5 -0
- package/node_modules/resolve/test/resolver/cup.coffee +1 -0
- package/node_modules/resolve/test/resolver/dot_main/index.js +1 -0
- package/node_modules/resolve/test/resolver/dot_main/package.json +3 -0
- package/node_modules/resolve/test/resolver/dot_slash_main/index.js +1 -0
- package/node_modules/resolve/test/resolver/dot_slash_main/package.json +3 -0
- package/node_modules/resolve/test/resolver/foo.js +1 -0
- package/node_modules/resolve/test/resolver/incorrect_main/index.js +2 -0
- package/node_modules/resolve/test/resolver/incorrect_main/package.json +3 -0
- package/node_modules/resolve/test/resolver/invalid_main/package.json +7 -0
- package/node_modules/resolve/test/resolver/malformed_package_json/index.js +0 -0
- package/node_modules/resolve/test/resolver/malformed_package_json/package.json +1 -0
- package/node_modules/resolve/test/resolver/mug.coffee +0 -0
- package/node_modules/resolve/test/resolver/mug.js +0 -0
- package/node_modules/resolve/test/resolver/multirepo/lerna.json +6 -0
- package/node_modules/resolve/test/resolver/multirepo/package.json +20 -0
- package/node_modules/resolve/test/resolver/multirepo/packages/package-a/index.js +35 -0
- package/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json +14 -0
- package/node_modules/resolve/test/resolver/multirepo/packages/package-b/index.js +0 -0
- package/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json +14 -0
- package/node_modules/resolve/test/resolver/nested_symlinks/mylib/async.js +26 -0
- package/node_modules/resolve/test/resolver/nested_symlinks/mylib/package.json +15 -0
- package/node_modules/resolve/test/resolver/nested_symlinks/mylib/sync.js +12 -0
- package/node_modules/resolve/test/resolver/other_path/lib/other-lib.js +0 -0
- package/node_modules/resolve/test/resolver/other_path/root.js +0 -0
- package/node_modules/resolve/test/resolver/quux/foo/index.js +1 -0
- package/node_modules/resolve/test/resolver/same_names/foo/index.js +1 -0
- package/node_modules/resolve/test/resolver/same_names/foo.js +1 -0
- package/node_modules/resolve/test/resolver/symlinked/_/node_modules/foo.js +0 -0
- package/node_modules/resolve/test/resolver/symlinked/_/symlink_target/.gitkeep +0 -0
- package/node_modules/resolve/test/resolver/symlinked/package/bar.js +1 -0
- package/node_modules/resolve/test/resolver/symlinked/package/package.json +3 -0
- package/node_modules/resolve/test/resolver/without_basedir/main.js +5 -0
- package/node_modules/resolve/test/resolver.js +546 -0
- package/node_modules/resolve/test/resolver_sync.js +645 -0
- package/node_modules/resolve/test/shadowed_core/node_modules/util/index.js +0 -0
- package/node_modules/resolve/test/shadowed_core.js +54 -0
- package/node_modules/resolve/test/subdirs.js +13 -0
- package/node_modules/resolve/test/symlinks.js +176 -0
- package/node_modules/rimraf/LICENSE +15 -0
- package/node_modules/rimraf/README.md +101 -0
- package/node_modules/rimraf/bin.js +50 -0
- package/node_modules/rimraf/package.json +29 -0
- package/node_modules/rimraf/rimraf.js +364 -0
- package/node_modules/safe-buffer/LICENSE +21 -0
- package/node_modules/safe-buffer/README.md +584 -0
- package/node_modules/safe-buffer/index.d.ts +187 -0
- package/node_modules/safe-buffer/index.js +65 -0
- package/node_modules/safe-buffer/package.json +51 -0
- package/node_modules/safer-buffer/LICENSE +21 -0
- package/node_modules/safer-buffer/Porting-Buffer.md +268 -0
- package/node_modules/safer-buffer/Readme.md +156 -0
- package/node_modules/safer-buffer/dangerous.js +58 -0
- package/node_modules/safer-buffer/package.json +34 -0
- package/node_modules/safer-buffer/safer.js +77 -0
- package/node_modules/safer-buffer/tests.js +406 -0
- package/node_modules/semver/CHANGELOG.md +39 -0
- package/node_modules/semver/LICENSE +15 -0
- package/node_modules/semver/README.md +412 -0
- package/node_modules/semver/bin/semver +160 -0
- package/node_modules/semver/package.json +28 -0
- package/node_modules/semver/range.bnf +16 -0
- package/node_modules/semver/semver.js +1483 -0
- package/node_modules/semver-diff/index.js +27 -0
- package/node_modules/semver-diff/license +21 -0
- package/node_modules/semver-diff/package.json +34 -0
- package/node_modules/semver-diff/readme.md +52 -0
- package/node_modules/send/HISTORY.md +521 -0
- package/node_modules/send/LICENSE +23 -0
- package/node_modules/send/README.md +327 -0
- package/node_modules/send/SECURITY.md +24 -0
- package/node_modules/send/index.js +1143 -0
- package/node_modules/send/node_modules/ms/index.js +162 -0
- package/node_modules/send/node_modules/ms/license.md +21 -0
- package/node_modules/send/node_modules/ms/package.json +38 -0
- package/node_modules/send/node_modules/ms/readme.md +59 -0
- package/node_modules/send/package.json +62 -0
- package/node_modules/serve-static/HISTORY.md +471 -0
- package/node_modules/serve-static/LICENSE +25 -0
- package/node_modules/serve-static/README.md +257 -0
- package/node_modules/serve-static/index.js +210 -0
- package/node_modules/serve-static/package.json +42 -0
- package/node_modules/setprototypeof/LICENSE +13 -0
- package/node_modules/setprototypeof/README.md +31 -0
- package/node_modules/setprototypeof/index.d.ts +2 -0
- package/node_modules/setprototypeof/index.js +17 -0
- package/node_modules/setprototypeof/package.json +38 -0
- package/node_modules/setprototypeof/test/index.js +24 -0
- package/node_modules/shebang-command/index.js +19 -0
- package/node_modules/shebang-command/license +21 -0
- package/node_modules/shebang-command/package.json +39 -0
- package/node_modules/shebang-command/readme.md +39 -0
- package/node_modules/shebang-regex/index.js +2 -0
- package/node_modules/shebang-regex/license +21 -0
- package/node_modules/shebang-regex/package.json +32 -0
- package/node_modules/shebang-regex/readme.md +29 -0
- package/node_modules/shelljs/CHANGELOG.md +942 -0
- package/node_modules/shelljs/LICENSE +26 -0
- package/node_modules/shelljs/README.md +835 -0
- package/node_modules/shelljs/bin/shjs +48 -0
- package/node_modules/shelljs/commands.js +29 -0
- package/node_modules/shelljs/global.js +12 -0
- package/node_modules/shelljs/make.js +57 -0
- package/node_modules/shelljs/package.json +79 -0
- package/node_modules/shelljs/plugin.js +16 -0
- package/node_modules/shelljs/shell.js +156 -0
- package/node_modules/shelljs/src/cat.js +76 -0
- package/node_modules/shelljs/src/cd.js +39 -0
- package/node_modules/shelljs/src/chmod.js +216 -0
- package/node_modules/shelljs/src/common.js +468 -0
- package/node_modules/shelljs/src/cp.js +304 -0
- package/node_modules/shelljs/src/dirs.js +212 -0
- package/node_modules/shelljs/src/echo.js +63 -0
- package/node_modules/shelljs/src/error.js +15 -0
- package/node_modules/shelljs/src/exec-child.js +39 -0
- package/node_modules/shelljs/src/exec.js +226 -0
- package/node_modules/shelljs/src/find.js +61 -0
- package/node_modules/shelljs/src/grep.js +73 -0
- package/node_modules/shelljs/src/head.js +107 -0
- package/node_modules/shelljs/src/ln.js +73 -0
- package/node_modules/shelljs/src/ls.js +141 -0
- package/node_modules/shelljs/src/mkdir.js +100 -0
- package/node_modules/shelljs/src/mv.js +118 -0
- package/node_modules/shelljs/src/popd.js +1 -0
- package/node_modules/shelljs/src/pushd.js +1 -0
- package/node_modules/shelljs/src/pwd.js +16 -0
- package/node_modules/shelljs/src/rm.js +201 -0
- package/node_modules/shelljs/src/sed.js +87 -0
- package/node_modules/shelljs/src/set.js +56 -0
- package/node_modules/shelljs/src/sort.js +97 -0
- package/node_modules/shelljs/src/tail.js +80 -0
- package/node_modules/shelljs/src/tempdir.js +75 -0
- package/node_modules/shelljs/src/test.js +85 -0
- package/node_modules/shelljs/src/to.js +37 -0
- package/node_modules/shelljs/src/toEnd.js +36 -0
- package/node_modules/shelljs/src/touch.js +111 -0
- package/node_modules/shelljs/src/uniq.js +92 -0
- package/node_modules/shelljs/src/which.js +118 -0
- package/node_modules/side-channel/.eslintignore +1 -0
- package/node_modules/side-channel/.eslintrc +11 -0
- package/node_modules/side-channel/.github/FUNDING.yml +12 -0
- package/node_modules/side-channel/.nycrc +13 -0
- package/node_modules/side-channel/CHANGELOG.md +65 -0
- package/node_modules/side-channel/LICENSE +21 -0
- package/node_modules/side-channel/README.md +2 -0
- package/node_modules/side-channel/index.js +124 -0
- package/node_modules/side-channel/package.json +67 -0
- package/node_modules/side-channel/test/index.js +78 -0
- package/node_modules/signal-exit/LICENSE.txt +16 -0
- package/node_modules/signal-exit/README.md +39 -0
- package/node_modules/signal-exit/index.js +202 -0
- package/node_modules/signal-exit/package.json +38 -0
- package/node_modules/signal-exit/signals.js +53 -0
- package/node_modules/sshpk/.travis.yml +11 -0
- package/node_modules/sshpk/Jenkinsfile +86 -0
- package/node_modules/sshpk/LICENSE +18 -0
- package/node_modules/sshpk/README.md +804 -0
- package/node_modules/sshpk/bin/sshpk-conv +243 -0
- package/node_modules/sshpk/bin/sshpk-sign +191 -0
- package/node_modules/sshpk/bin/sshpk-verify +167 -0
- package/node_modules/sshpk/lib/algs.js +168 -0
- package/node_modules/sshpk/lib/certificate.js +410 -0
- package/node_modules/sshpk/lib/dhe.js +397 -0
- package/node_modules/sshpk/lib/ed-compat.js +92 -0
- package/node_modules/sshpk/lib/errors.js +84 -0
- package/node_modules/sshpk/lib/fingerprint.js +220 -0
- package/node_modules/sshpk/lib/formats/auto.js +124 -0
- package/node_modules/sshpk/lib/formats/dnssec.js +287 -0
- package/node_modules/sshpk/lib/formats/openssh-cert.js +352 -0
- package/node_modules/sshpk/lib/formats/pem.js +290 -0
- package/node_modules/sshpk/lib/formats/pkcs1.js +373 -0
- package/node_modules/sshpk/lib/formats/pkcs8.js +631 -0
- package/node_modules/sshpk/lib/formats/putty.js +194 -0
- package/node_modules/sshpk/lib/formats/rfc4253.js +166 -0
- package/node_modules/sshpk/lib/formats/ssh-private.js +262 -0
- package/node_modules/sshpk/lib/formats/ssh.js +115 -0
- package/node_modules/sshpk/lib/formats/x509-pem.js +88 -0
- package/node_modules/sshpk/lib/formats/x509.js +752 -0
- package/node_modules/sshpk/lib/identity.js +373 -0
- package/node_modules/sshpk/lib/index.js +40 -0
- package/node_modules/sshpk/lib/key.js +294 -0
- package/node_modules/sshpk/lib/private-key.js +247 -0
- package/node_modules/sshpk/lib/signature.js +314 -0
- package/node_modules/sshpk/lib/ssh-buffer.js +149 -0
- package/node_modules/sshpk/lib/utils.js +404 -0
- package/node_modules/sshpk/man/man1/sshpk-conv.1 +135 -0
- package/node_modules/sshpk/man/man1/sshpk-sign.1 +81 -0
- package/node_modules/sshpk/man/man1/sshpk-verify.1 +68 -0
- package/node_modules/sshpk/package.json +60 -0
- package/node_modules/statuses/HISTORY.md +82 -0
- package/node_modules/statuses/LICENSE +23 -0
- package/node_modules/statuses/README.md +136 -0
- package/node_modules/statuses/codes.json +65 -0
- package/node_modules/statuses/index.js +146 -0
- package/node_modules/statuses/package.json +49 -0
- package/node_modules/string-width/index.js +36 -0
- package/node_modules/string-width/license +9 -0
- package/node_modules/string-width/package.json +55 -0
- package/node_modules/string-width/readme.md +42 -0
- package/node_modules/strip-ansi/index.js +4 -0
- package/node_modules/strip-ansi/license +9 -0
- package/node_modules/strip-ansi/package.json +52 -0
- package/node_modules/strip-ansi/readme.md +39 -0
- package/node_modules/strip-eof/index.js +15 -0
- package/node_modules/strip-eof/license +21 -0
- package/node_modules/strip-eof/package.json +39 -0
- package/node_modules/strip-eof/readme.md +28 -0
- package/node_modules/strip-json-comments/index.js +70 -0
- package/node_modules/strip-json-comments/license +21 -0
- package/node_modules/strip-json-comments/package.json +42 -0
- package/node_modules/strip-json-comments/readme.md +64 -0
- package/node_modules/supports-color/browser.js +5 -0
- package/node_modules/supports-color/index.js +131 -0
- package/node_modules/supports-color/license +9 -0
- package/node_modules/supports-color/package.json +53 -0
- package/node_modules/supports-color/readme.md +66 -0
- package/node_modules/supports-preserve-symlinks-flag/.eslintrc +14 -0
- package/node_modules/supports-preserve-symlinks-flag/.github/FUNDING.yml +12 -0
- package/node_modules/supports-preserve-symlinks-flag/.nycrc +9 -0
- package/node_modules/supports-preserve-symlinks-flag/CHANGELOG.md +22 -0
- package/node_modules/supports-preserve-symlinks-flag/LICENSE +21 -0
- package/node_modules/supports-preserve-symlinks-flag/README.md +42 -0
- package/node_modules/supports-preserve-symlinks-flag/browser.js +3 -0
- package/node_modules/supports-preserve-symlinks-flag/index.js +9 -0
- package/node_modules/supports-preserve-symlinks-flag/package.json +70 -0
- package/node_modules/supports-preserve-symlinks-flag/test/index.js +29 -0
- package/node_modules/term-size/index.js +70 -0
- package/node_modules/term-size/license +21 -0
- package/node_modules/term-size/package.json +43 -0
- package/node_modules/term-size/readme.md +41 -0
- package/node_modules/term-size/vendor/macos/term-size +0 -0
- package/node_modules/term-size/vendor/windows/term-size.exe +0 -0
- package/node_modules/timed-out/index.js +55 -0
- package/node_modules/timed-out/license +21 -0
- package/node_modules/timed-out/package.json +36 -0
- package/node_modules/timed-out/readme.md +42 -0
- package/node_modules/toidentifier/HISTORY.md +9 -0
- package/node_modules/toidentifier/LICENSE +21 -0
- package/node_modules/toidentifier/README.md +61 -0
- package/node_modules/toidentifier/index.js +32 -0
- package/node_modules/toidentifier/package.json +38 -0
- package/node_modules/tough-cookie/LICENSE +12 -0
- package/node_modules/tough-cookie/README.md +527 -0
- package/node_modules/tough-cookie/lib/cookie.js +1482 -0
- package/node_modules/tough-cookie/lib/memstore.js +181 -0
- package/node_modules/tough-cookie/lib/pathMatch.js +61 -0
- package/node_modules/tough-cookie/lib/permuteDomain.js +56 -0
- package/node_modules/tough-cookie/lib/pubsuffix-psl.js +38 -0
- package/node_modules/tough-cookie/lib/store.js +75 -0
- package/node_modules/tough-cookie/lib/version.js +2 -0
- package/node_modules/tough-cookie/package.json +78 -0
- package/node_modules/traverse/.npmignore +1 -0
- package/node_modules/traverse/LICENSE +24 -0
- package/node_modules/traverse/README.markdown +247 -0
- package/node_modules/traverse/examples/json.js +16 -0
- package/node_modules/traverse/examples/leaves.js +15 -0
- package/node_modules/traverse/examples/negative.js +8 -0
- package/node_modules/traverse/examples/stringify.js +38 -0
- package/node_modules/traverse/index.js +322 -0
- package/node_modules/traverse/package.json +18 -0
- package/node_modules/traverse/test/circular.js +114 -0
- package/node_modules/traverse/test/date.js +35 -0
- package/node_modules/traverse/test/equal.js +219 -0
- package/node_modules/traverse/test/instance.js +17 -0
- package/node_modules/traverse/test/interface.js +42 -0
- package/node_modules/traverse/test/json.js +47 -0
- package/node_modules/traverse/test/leaves.js +21 -0
- package/node_modules/traverse/test/mutability.js +203 -0
- package/node_modules/traverse/test/negative.js +20 -0
- package/node_modules/traverse/test/obj.js +15 -0
- package/node_modules/traverse/test/stop.js +41 -0
- package/node_modules/traverse/test/stringify.js +36 -0
- package/node_modules/traverse/test/super_deep.js +54 -0
- package/node_modules/tunnel-agent/LICENSE +55 -0
- package/node_modules/tunnel-agent/README.md +4 -0
- package/node_modules/tunnel-agent/index.js +244 -0
- package/node_modules/tunnel-agent/package.json +22 -0
- package/node_modules/tweetnacl/.npmignore +4 -0
- package/node_modules/tweetnacl/AUTHORS.md +28 -0
- package/node_modules/tweetnacl/CHANGELOG.md +221 -0
- package/node_modules/tweetnacl/LICENSE +24 -0
- package/node_modules/tweetnacl/PULL_REQUEST_TEMPLATE.md +20 -0
- package/node_modules/tweetnacl/README.md +459 -0
- package/node_modules/tweetnacl/nacl-fast.js +2388 -0
- package/node_modules/tweetnacl/nacl-fast.min.js +2 -0
- package/node_modules/tweetnacl/nacl.d.ts +98 -0
- package/node_modules/tweetnacl/nacl.js +1175 -0
- package/node_modules/tweetnacl/nacl.min.js +1 -0
- package/node_modules/tweetnacl/package.json +58 -0
- package/node_modules/type-is/HISTORY.md +259 -0
- package/node_modules/type-is/LICENSE +23 -0
- package/node_modules/type-is/README.md +170 -0
- package/node_modules/type-is/index.js +266 -0
- package/node_modules/type-is/package.json +45 -0
- package/node_modules/underscore/LICENSE +22 -0
- package/node_modules/underscore/README.md +34 -0
- package/node_modules/underscore/amd/_baseCreate.js +21 -0
- package/node_modules/underscore/amd/_baseIteratee.js +15 -0
- package/node_modules/underscore/amd/_cb.js +12 -0
- package/node_modules/underscore/amd/_chainResult.js +10 -0
- package/node_modules/underscore/amd/_collectNonEnumProps.js +42 -0
- package/node_modules/underscore/amd/_createAssigner.js +24 -0
- package/node_modules/underscore/amd/_createEscaper.js +21 -0
- package/node_modules/underscore/amd/_createIndexFinder.js +30 -0
- package/node_modules/underscore/amd/_createPredicateIndexFinder.js +18 -0
- package/node_modules/underscore/amd/_createReduce.js +30 -0
- package/node_modules/underscore/amd/_createSizePropertyCheck.js +13 -0
- package/node_modules/underscore/amd/_deepGet.js +15 -0
- package/node_modules/underscore/amd/_escapeMap.js +15 -0
- package/node_modules/underscore/amd/_executeBound.js +16 -0
- package/node_modules/underscore/amd/_flatten.js +32 -0
- package/node_modules/underscore/amd/_getByteLength.js +8 -0
- package/node_modules/underscore/amd/_getLength.js +8 -0
- package/node_modules/underscore/amd/_group.js +18 -0
- package/node_modules/underscore/amd/_has.js +10 -0
- package/node_modules/underscore/amd/_hasObjectTag.js +7 -0
- package/node_modules/underscore/amd/_isArrayLike.js +11 -0
- package/node_modules/underscore/amd/_isBufferLike.js +9 -0
- package/node_modules/underscore/amd/_keyInObj.js +11 -0
- package/node_modules/underscore/amd/_methodFingerprint.js +44 -0
- package/node_modules/underscore/amd/_optimizeCb.js +27 -0
- package/node_modules/underscore/amd/_setup.js +70 -0
- package/node_modules/underscore/amd/_shallowProperty.js +12 -0
- package/node_modules/underscore/amd/_stringTagBug.js +16 -0
- package/node_modules/underscore/amd/_tagTester.js +13 -0
- package/node_modules/underscore/amd/_toBufferView.js +15 -0
- package/node_modules/underscore/amd/_toPath.js +11 -0
- package/node_modules/underscore/amd/_unescapeMap.js +8 -0
- package/node_modules/underscore/amd/after.js +14 -0
- package/node_modules/underscore/amd/allKeys.js +15 -0
- package/node_modules/underscore/amd/before.js +18 -0
- package/node_modules/underscore/amd/bind.js +15 -0
- package/node_modules/underscore/amd/bindAll.js +19 -0
- package/node_modules/underscore/amd/chain.js +12 -0
- package/node_modules/underscore/amd/chunk.js +17 -0
- package/node_modules/underscore/amd/clone.js +11 -0
- package/node_modules/underscore/amd/compact.js +10 -0
- package/node_modules/underscore/amd/compose.js +18 -0
- package/node_modules/underscore/amd/constant.js +12 -0
- package/node_modules/underscore/amd/contains.js +12 -0
- package/node_modules/underscore/amd/countBy.js +12 -0
- package/node_modules/underscore/amd/create.js +14 -0
- package/node_modules/underscore/amd/debounce.js +43 -0
- package/node_modules/underscore/amd/defaults.js +8 -0
- package/node_modules/underscore/amd/defer.js +9 -0
- package/node_modules/underscore/amd/delay.js +13 -0
- package/node_modules/underscore/amd/difference.js +14 -0
- package/node_modules/underscore/amd/each.js +25 -0
- package/node_modules/underscore/amd/escape.js +8 -0
- package/node_modules/underscore/amd/every.js +17 -0
- package/node_modules/underscore/amd/extend.js +8 -0
- package/node_modules/underscore/amd/extendOwn.js +10 -0
- package/node_modules/underscore/amd/filter.js +15 -0
- package/node_modules/underscore/amd/find.js +12 -0
- package/node_modules/underscore/amd/findIndex.js +8 -0
- package/node_modules/underscore/amd/findKey.js +15 -0
- package/node_modules/underscore/amd/findLastIndex.js +8 -0
- package/node_modules/underscore/amd/findWhere.js +11 -0
- package/node_modules/underscore/amd/first.js +13 -0
- package/node_modules/underscore/amd/flatten.js +11 -0
- package/node_modules/underscore/amd/functions.js +14 -0
- package/node_modules/underscore/amd/get.js +14 -0
- package/node_modules/underscore/amd/groupBy.js +11 -0
- package/node_modules/underscore/amd/has.js +19 -0
- package/node_modules/underscore/amd/identity.js +10 -0
- package/node_modules/underscore/amd/index-default.js +12 -0
- package/node_modules/underscore/amd/index.js +154 -0
- package/node_modules/underscore/amd/indexBy.js +11 -0
- package/node_modules/underscore/amd/indexOf.js +11 -0
- package/node_modules/underscore/amd/initial.js +12 -0
- package/node_modules/underscore/amd/intersection.js +22 -0
- package/node_modules/underscore/amd/invert.js +15 -0
- package/node_modules/underscore/amd/invoke.js +28 -0
- package/node_modules/underscore/amd/isArguments.js +19 -0
- package/node_modules/underscore/amd/isArray.js +9 -0
- package/node_modules/underscore/amd/isArrayBuffer.js +7 -0
- package/node_modules/underscore/amd/isBoolean.js +10 -0
- package/node_modules/underscore/amd/isDataView.js +15 -0
- package/node_modules/underscore/amd/isDate.js +7 -0
- package/node_modules/underscore/amd/isElement.js +10 -0
- package/node_modules/underscore/amd/isEmpty.js +18 -0
- package/node_modules/underscore/amd/isEqual.js +133 -0
- package/node_modules/underscore/amd/isError.js +7 -0
- package/node_modules/underscore/amd/isFinite.js +10 -0
- package/node_modules/underscore/amd/isFunction.js +18 -0
- package/node_modules/underscore/amd/isMap.js +7 -0
- package/node_modules/underscore/amd/isMatch.js +17 -0
- package/node_modules/underscore/amd/isNaN.js +10 -0
- package/node_modules/underscore/amd/isNull.js +10 -0
- package/node_modules/underscore/amd/isNumber.js +7 -0
- package/node_modules/underscore/amd/isObject.js +11 -0
- package/node_modules/underscore/amd/isRegExp.js +7 -0
- package/node_modules/underscore/amd/isSet.js +7 -0
- package/node_modules/underscore/amd/isString.js +7 -0
- package/node_modules/underscore/amd/isSymbol.js +7 -0
- package/node_modules/underscore/amd/isTypedArray.js +16 -0
- package/node_modules/underscore/amd/isUndefined.js +10 -0
- package/node_modules/underscore/amd/isWeakMap.js +7 -0
- package/node_modules/underscore/amd/isWeakSet.js +7 -0
- package/node_modules/underscore/amd/iteratee.js +13 -0
- package/node_modules/underscore/amd/keys.js +17 -0
- package/node_modules/underscore/amd/last.js +13 -0
- package/node_modules/underscore/amd/lastIndexOf.js +9 -0
- package/node_modules/underscore/amd/map.js +18 -0
- package/node_modules/underscore/amd/mapObject.js +19 -0
- package/node_modules/underscore/amd/matcher.js +14 -0
- package/node_modules/underscore/amd/max.js +30 -0
- package/node_modules/underscore/amd/memoize.js +17 -0
- package/node_modules/underscore/amd/min.js +30 -0
- package/node_modules/underscore/amd/mixin.js +18 -0
- package/node_modules/underscore/amd/negate.js +12 -0
- package/node_modules/underscore/amd/noop.js +8 -0
- package/node_modules/underscore/amd/now.js +10 -0
- package/node_modules/underscore/amd/object.js +20 -0
- package/node_modules/underscore/amd/omit.js +20 -0
- package/node_modules/underscore/amd/once.js +9 -0
- package/node_modules/underscore/amd/pairs.js +17 -0
- package/node_modules/underscore/amd/partial.js +25 -0
- package/node_modules/underscore/amd/partition.js +11 -0
- package/node_modules/underscore/amd/pick.js +25 -0
- package/node_modules/underscore/amd/pluck.js +10 -0
- package/node_modules/underscore/amd/property.js +14 -0
- package/node_modules/underscore/amd/propertyOf.js +13 -0
- package/node_modules/underscore/amd/random.js +14 -0
- package/node_modules/underscore/amd/range.js +27 -0
- package/node_modules/underscore/amd/reduce.js +9 -0
- package/node_modules/underscore/amd/reduceRight.js +8 -0
- package/node_modules/underscore/amd/reject.js +10 -0
- package/node_modules/underscore/amd/rest.js +12 -0
- package/node_modules/underscore/amd/restArguments.js +33 -0
- package/node_modules/underscore/amd/result.js +25 -0
- package/node_modules/underscore/amd/sample.js +27 -0
- package/node_modules/underscore/amd/shuffle.js +10 -0
- package/node_modules/underscore/amd/size.js +11 -0
- package/node_modules/underscore/amd/some.js +17 -0
- package/node_modules/underscore/amd/sortBy.js +26 -0
- package/node_modules/underscore/amd/sortedIndex.js +18 -0
- package/node_modules/underscore/amd/tap.js +13 -0
- package/node_modules/underscore/amd/template.js +103 -0
- package/node_modules/underscore/amd/templateSettings.js +13 -0
- package/node_modules/underscore/amd/throttle.js +51 -0
- package/node_modules/underscore/amd/times.js +13 -0
- package/node_modules/underscore/amd/toArray.js +18 -0
- package/node_modules/underscore/amd/toPath.js +12 -0
- package/node_modules/underscore/amd/underscore-array-methods.js +30 -0
- package/node_modules/underscore/amd/underscore.js +29 -0
- package/node_modules/underscore/amd/unescape.js +8 -0
- package/node_modules/underscore/amd/union.js +11 -0
- package/node_modules/underscore/amd/uniq.js +37 -0
- package/node_modules/underscore/amd/uniqueId.js +13 -0
- package/node_modules/underscore/amd/unzip.js +17 -0
- package/node_modules/underscore/amd/values.js +16 -0
- package/node_modules/underscore/amd/where.js +11 -0
- package/node_modules/underscore/amd/without.js +10 -0
- package/node_modules/underscore/amd/wrap.js +12 -0
- package/node_modules/underscore/amd/zip.js +9 -0
- package/node_modules/underscore/cjs/_baseCreate.js +20 -0
- package/node_modules/underscore/cjs/_baseIteratee.js +19 -0
- package/node_modules/underscore/cjs/_cb.js +12 -0
- package/node_modules/underscore/cjs/_chainResult.js +8 -0
- package/node_modules/underscore/cjs/_collectNonEnumProps.js +42 -0
- package/node_modules/underscore/cjs/_createAssigner.js +20 -0
- package/node_modules/underscore/cjs/_createEscaper.js +19 -0
- package/node_modules/underscore/cjs/_createIndexFinder.js +30 -0
- package/node_modules/underscore/cjs/_createPredicateIndexFinder.js +17 -0
- package/node_modules/underscore/cjs/_createReduce.js +30 -0
- package/node_modules/underscore/cjs/_createSizePropertyCheck.js +11 -0
- package/node_modules/underscore/cjs/_deepGet.js +11 -0
- package/node_modules/underscore/cjs/_escapeMap.js +11 -0
- package/node_modules/underscore/cjs/_executeBound.js +15 -0
- package/node_modules/underscore/cjs/_flatten.js +33 -0
- package/node_modules/underscore/cjs/_getByteLength.js +6 -0
- package/node_modules/underscore/cjs/_getLength.js +6 -0
- package/node_modules/underscore/cjs/_group.js +17 -0
- package/node_modules/underscore/cjs/_has.js +8 -0
- package/node_modules/underscore/cjs/_hasObjectTag.js +5 -0
- package/node_modules/underscore/cjs/_isArrayLike.js +10 -0
- package/node_modules/underscore/cjs/_isBufferLike.js +8 -0
- package/node_modules/underscore/cjs/_keyInObj.js +7 -0
- package/node_modules/underscore/cjs/_methodFingerprint.js +44 -0
- package/node_modules/underscore/cjs/_optimizeCb.js +23 -0
- package/node_modules/underscore/cjs/_setup.js +66 -0
- package/node_modules/underscore/cjs/_shallowProperty.js +8 -0
- package/node_modules/underscore/cjs/_stringTagBug.js +15 -0
- package/node_modules/underscore/cjs/_tagTester.js +11 -0
- package/node_modules/underscore/cjs/_toBufferView.js +13 -0
- package/node_modules/underscore/cjs/_toPath.js +10 -0
- package/node_modules/underscore/cjs/_unescapeMap.js +7 -0
- package/node_modules/underscore/cjs/after.js +10 -0
- package/node_modules/underscore/cjs/allKeys.js +15 -0
- package/node_modules/underscore/cjs/before.js +14 -0
- package/node_modules/underscore/cjs/bind.js +15 -0
- package/node_modules/underscore/cjs/bindAll.js +19 -0
- package/node_modules/underscore/cjs/chain.js +10 -0
- package/node_modules/underscore/cjs/chunk.js +15 -0
- package/node_modules/underscore/cjs/clone.js +11 -0
- package/node_modules/underscore/cjs/compact.js +8 -0
- package/node_modules/underscore/cjs/compose.js +14 -0
- package/node_modules/underscore/cjs/constant.js +8 -0
- package/node_modules/underscore/cjs/contains.js +12 -0
- package/node_modules/underscore/cjs/countBy.js +11 -0
- package/node_modules/underscore/cjs/create.js +13 -0
- package/node_modules/underscore/cjs/debounce.js +42 -0
- package/node_modules/underscore/cjs/defaults.js +7 -0
- package/node_modules/underscore/cjs/defer.js +9 -0
- package/node_modules/underscore/cjs/delay.js +11 -0
- package/node_modules/underscore/cjs/difference.js +15 -0
- package/node_modules/underscore/cjs/each.js +25 -0
- package/node_modules/underscore/cjs/escape.js +7 -0
- package/node_modules/underscore/cjs/every.js +17 -0
- package/node_modules/underscore/cjs/extend.js +7 -0
- package/node_modules/underscore/cjs/extendOwn.js +9 -0
- package/node_modules/underscore/cjs/filter.js +14 -0
- package/node_modules/underscore/cjs/find.js +12 -0
- package/node_modules/underscore/cjs/findIndex.js +6 -0
- package/node_modules/underscore/cjs/findKey.js +14 -0
- package/node_modules/underscore/cjs/findLastIndex.js +6 -0
- package/node_modules/underscore/cjs/findWhere.js +10 -0
- package/node_modules/underscore/cjs/first.js +11 -0
- package/node_modules/underscore/cjs/flatten.js +9 -0
- package/node_modules/underscore/cjs/functions.js +12 -0
- package/node_modules/underscore/cjs/get.js +14 -0
- package/node_modules/underscore/cjs/groupBy.js +10 -0
- package/node_modules/underscore/cjs/has.js +18 -0
- package/node_modules/underscore/cjs/identity.js +6 -0
- package/node_modules/underscore/cjs/index-default.js +11 -0
- package/node_modules/underscore/cjs/index.js +278 -0
- package/node_modules/underscore/cjs/indexBy.js +9 -0
- package/node_modules/underscore/cjs/indexOf.js +11 -0
- package/node_modules/underscore/cjs/initial.js +10 -0
- package/node_modules/underscore/cjs/intersection.js +21 -0
- package/node_modules/underscore/cjs/invert.js +13 -0
- package/node_modules/underscore/cjs/invoke.js +30 -0
- package/node_modules/underscore/cjs/isArguments.js +18 -0
- package/node_modules/underscore/cjs/isArray.js +8 -0
- package/node_modules/underscore/cjs/isArrayBuffer.js +5 -0
- package/node_modules/underscore/cjs/isBoolean.js +8 -0
- package/node_modules/underscore/cjs/isDataView.js +16 -0
- package/node_modules/underscore/cjs/isDate.js +5 -0
- package/node_modules/underscore/cjs/isElement.js +6 -0
- package/node_modules/underscore/cjs/isEmpty.js +20 -0
- package/node_modules/underscore/cjs/isEqual.js +140 -0
- package/node_modules/underscore/cjs/isError.js +5 -0
- package/node_modules/underscore/cjs/isFinite.js +9 -0
- package/node_modules/underscore/cjs/isFunction.js +17 -0
- package/node_modules/underscore/cjs/isMap.js +7 -0
- package/node_modules/underscore/cjs/isMatch.js +15 -0
- package/node_modules/underscore/cjs/isNaN.js +9 -0
- package/node_modules/underscore/cjs/isNull.js +6 -0
- package/node_modules/underscore/cjs/isNumber.js +5 -0
- package/node_modules/underscore/cjs/isObject.js +7 -0
- package/node_modules/underscore/cjs/isRegExp.js +5 -0
- package/node_modules/underscore/cjs/isSet.js +7 -0
- package/node_modules/underscore/cjs/isString.js +5 -0
- package/node_modules/underscore/cjs/isSymbol.js +5 -0
- package/node_modules/underscore/cjs/isTypedArray.js +17 -0
- package/node_modules/underscore/cjs/isUndefined.js +6 -0
- package/node_modules/underscore/cjs/isWeakMap.js +7 -0
- package/node_modules/underscore/cjs/isWeakSet.js +5 -0
- package/node_modules/underscore/cjs/iteratee.js +12 -0
- package/node_modules/underscore/cjs/keys.js +18 -0
- package/node_modules/underscore/cjs/last.js +11 -0
- package/node_modules/underscore/cjs/lastIndexOf.js +8 -0
- package/node_modules/underscore/cjs/map.js +18 -0
- package/node_modules/underscore/cjs/mapObject.js +18 -0
- package/node_modules/underscore/cjs/matcher.js +13 -0
- package/node_modules/underscore/cjs/max.js +31 -0
- package/node_modules/underscore/cjs/memoize.js +15 -0
- package/node_modules/underscore/cjs/min.js +31 -0
- package/node_modules/underscore/cjs/mixin.js +20 -0
- package/node_modules/underscore/cjs/negate.js +8 -0
- package/node_modules/underscore/cjs/noop.js +4 -0
- package/node_modules/underscore/cjs/now.js +6 -0
- package/node_modules/underscore/cjs/object.js +18 -0
- package/node_modules/underscore/cjs/omit.js +24 -0
- package/node_modules/underscore/cjs/once.js +8 -0
- package/node_modules/underscore/cjs/pairs.js +15 -0
- package/node_modules/underscore/cjs/partial.js +25 -0
- package/node_modules/underscore/cjs/partition.js +9 -0
- package/node_modules/underscore/cjs/pick.js +28 -0
- package/node_modules/underscore/cjs/pluck.js +9 -0
- package/node_modules/underscore/cjs/property.js +13 -0
- package/node_modules/underscore/cjs/propertyOf.js +12 -0
- package/node_modules/underscore/cjs/random.js +10 -0
- package/node_modules/underscore/cjs/range.js +23 -0
- package/node_modules/underscore/cjs/reduce.js +7 -0
- package/node_modules/underscore/cjs/reduceRight.js +6 -0
- package/node_modules/underscore/cjs/reject.js +10 -0
- package/node_modules/underscore/cjs/rest.js +10 -0
- package/node_modules/underscore/cjs/restArguments.js +29 -0
- package/node_modules/underscore/cjs/result.js +24 -0
- package/node_modules/underscore/cjs/sample.js +29 -0
- package/node_modules/underscore/cjs/shuffle.js +8 -0
- package/node_modules/underscore/cjs/size.js +10 -0
- package/node_modules/underscore/cjs/some.js +17 -0
- package/node_modules/underscore/cjs/sortBy.js +26 -0
- package/node_modules/underscore/cjs/sortedIndex.js +17 -0
- package/node_modules/underscore/cjs/tap.js +9 -0
- package/node_modules/underscore/cjs/template.js +103 -0
- package/node_modules/underscore/cjs/templateSettings.js +11 -0
- package/node_modules/underscore/cjs/throttle.js +49 -0
- package/node_modules/underscore/cjs/times.js +11 -0
- package/node_modules/underscore/cjs/toArray.js +22 -0
- package/node_modules/underscore/cjs/toPath.js +11 -0
- package/node_modules/underscore/cjs/underscore-array-methods.js +31 -0
- package/node_modules/underscore/cjs/underscore.js +27 -0
- package/node_modules/underscore/cjs/unescape.js +7 -0
- package/node_modules/underscore/cjs/union.js +11 -0
- package/node_modules/underscore/cjs/uniq.js +38 -0
- package/node_modules/underscore/cjs/uniqueId.js +9 -0
- package/node_modules/underscore/cjs/unzip.js +17 -0
- package/node_modules/underscore/cjs/values.js +14 -0
- package/node_modules/underscore/cjs/where.js +10 -0
- package/node_modules/underscore/cjs/without.js +9 -0
- package/node_modules/underscore/cjs/wrap.js +10 -0
- package/node_modules/underscore/cjs/zip.js +8 -0
- package/node_modules/underscore/modules/.eslintrc +21 -0
- package/node_modules/underscore/modules/_baseCreate.js +18 -0
- package/node_modules/underscore/modules/_baseIteratee.js +17 -0
- package/node_modules/underscore/modules/_cb.js +10 -0
- package/node_modules/underscore/modules/_chainResult.js +6 -0
- package/node_modules/underscore/modules/_collectNonEnumProps.js +40 -0
- package/node_modules/underscore/modules/_createAssigner.js +18 -0
- package/node_modules/underscore/modules/_createEscaper.js +17 -0
- package/node_modules/underscore/modules/_createIndexFinder.js +28 -0
- package/node_modules/underscore/modules/_createPredicateIndexFinder.js +15 -0
- package/node_modules/underscore/modules/_createReduce.js +28 -0
- package/node_modules/underscore/modules/_createSizePropertyCheck.js +9 -0
- package/node_modules/underscore/modules/_deepGet.js +9 -0
- package/node_modules/underscore/modules/_escapeMap.js +9 -0
- package/node_modules/underscore/modules/_executeBound.js +13 -0
- package/node_modules/underscore/modules/_flatten.js +31 -0
- package/node_modules/underscore/modules/_getByteLength.js +4 -0
- package/node_modules/underscore/modules/_getLength.js +4 -0
- package/node_modules/underscore/modules/_group.js +15 -0
- package/node_modules/underscore/modules/_has.js +6 -0
- package/node_modules/underscore/modules/_hasObjectTag.js +3 -0
- package/node_modules/underscore/modules/_isArrayLike.js +8 -0
- package/node_modules/underscore/modules/_isBufferLike.js +6 -0
- package/node_modules/underscore/modules/_keyInObj.js +5 -0
- package/node_modules/underscore/modules/_methodFingerprint.js +37 -0
- package/node_modules/underscore/modules/_optimizeCb.js +21 -0
- package/node_modules/underscore/modules/_setup.js +43 -0
- package/node_modules/underscore/modules/_shallowProperty.js +6 -0
- package/node_modules/underscore/modules/_stringTagBug.js +10 -0
- package/node_modules/underscore/modules/_tagTester.js +9 -0
- package/node_modules/underscore/modules/_toBufferView.js +11 -0
- package/node_modules/underscore/modules/_toPath.js +8 -0
- package/node_modules/underscore/modules/_unescapeMap.js +5 -0
- package/node_modules/underscore/modules/after.js +8 -0
- package/node_modules/underscore/modules/allKeys.js +13 -0
- package/node_modules/underscore/modules/before.js +12 -0
- package/node_modules/underscore/modules/bind.js +13 -0
- package/node_modules/underscore/modules/bindAll.js +17 -0
- package/node_modules/underscore/modules/chain.js +8 -0
- package/node_modules/underscore/modules/chunk.js +13 -0
- package/node_modules/underscore/modules/clone.js +9 -0
- package/node_modules/underscore/modules/compact.js +6 -0
- package/node_modules/underscore/modules/compose.js +12 -0
- package/node_modules/underscore/modules/constant.js +6 -0
- package/node_modules/underscore/modules/contains.js +10 -0
- package/node_modules/underscore/modules/countBy.js +9 -0
- package/node_modules/underscore/modules/create.js +11 -0
- package/node_modules/underscore/modules/debounce.js +40 -0
- package/node_modules/underscore/modules/defaults.js +5 -0
- package/node_modules/underscore/modules/defer.js +7 -0
- package/node_modules/underscore/modules/delay.js +9 -0
- package/node_modules/underscore/modules/difference.js +13 -0
- package/node_modules/underscore/modules/each.js +23 -0
- package/node_modules/underscore/modules/escape.js +5 -0
- package/node_modules/underscore/modules/every.js +15 -0
- package/node_modules/underscore/modules/extend.js +5 -0
- package/node_modules/underscore/modules/extendOwn.js +7 -0
- package/node_modules/underscore/modules/filter.js +12 -0
- package/node_modules/underscore/modules/find.js +10 -0
- package/node_modules/underscore/modules/findIndex.js +4 -0
- package/node_modules/underscore/modules/findKey.js +12 -0
- package/node_modules/underscore/modules/findLastIndex.js +4 -0
- package/node_modules/underscore/modules/findWhere.js +8 -0
- package/node_modules/underscore/modules/first.js +9 -0
- package/node_modules/underscore/modules/flatten.js +7 -0
- package/node_modules/underscore/modules/functions.js +10 -0
- package/node_modules/underscore/modules/get.js +12 -0
- package/node_modules/underscore/modules/groupBy.js +8 -0
- package/node_modules/underscore/modules/has.js +16 -0
- package/node_modules/underscore/modules/identity.js +4 -0
- package/node_modules/underscore/modules/index-all.js +18 -0
- package/node_modules/underscore/modules/index-default.js +27 -0
- package/node_modules/underscore/modules/index.js +200 -0
- package/node_modules/underscore/modules/indexBy.js +7 -0
- package/node_modules/underscore/modules/indexOf.js +9 -0
- package/node_modules/underscore/modules/initial.js +8 -0
- package/node_modules/underscore/modules/intersection.js +19 -0
- package/node_modules/underscore/modules/invert.js +11 -0
- package/node_modules/underscore/modules/invoke.js +28 -0
- package/node_modules/underscore/modules/isArguments.js +16 -0
- package/node_modules/underscore/modules/isArray.js +6 -0
- package/node_modules/underscore/modules/isArrayBuffer.js +3 -0
- package/node_modules/underscore/modules/isBoolean.js +6 -0
- package/node_modules/underscore/modules/isDataView.js +14 -0
- package/node_modules/underscore/modules/isDate.js +3 -0
- package/node_modules/underscore/modules/isElement.js +4 -0
- package/node_modules/underscore/modules/isEmpty.js +18 -0
- package/node_modules/underscore/modules/isEqual.js +138 -0
- package/node_modules/underscore/modules/isError.js +3 -0
- package/node_modules/underscore/modules/isFinite.js +7 -0
- package/node_modules/underscore/modules/isFunction.js +15 -0
- package/node_modules/underscore/modules/isMap.js +5 -0
- package/node_modules/underscore/modules/isMatch.js +13 -0
- package/node_modules/underscore/modules/isNaN.js +7 -0
- package/node_modules/underscore/modules/isNull.js +4 -0
- package/node_modules/underscore/modules/isNumber.js +3 -0
- package/node_modules/underscore/modules/isObject.js +5 -0
- package/node_modules/underscore/modules/isRegExp.js +3 -0
- package/node_modules/underscore/modules/isSet.js +5 -0
- package/node_modules/underscore/modules/isString.js +3 -0
- package/node_modules/underscore/modules/isSymbol.js +3 -0
- package/node_modules/underscore/modules/isTypedArray.js +15 -0
- package/node_modules/underscore/modules/isUndefined.js +4 -0
- package/node_modules/underscore/modules/isWeakMap.js +5 -0
- package/node_modules/underscore/modules/isWeakSet.js +3 -0
- package/node_modules/underscore/modules/iteratee.js +10 -0
- package/node_modules/underscore/modules/keys.js +16 -0
- package/node_modules/underscore/modules/last.js +9 -0
- package/node_modules/underscore/modules/lastIndexOf.js +6 -0
- package/node_modules/underscore/modules/map.js +16 -0
- package/node_modules/underscore/modules/mapObject.js +16 -0
- package/node_modules/underscore/modules/matcher.js +11 -0
- package/node_modules/underscore/modules/max.js +29 -0
- package/node_modules/underscore/modules/memoize.js +13 -0
- package/node_modules/underscore/modules/min.js +29 -0
- package/node_modules/underscore/modules/mixin.js +18 -0
- package/node_modules/underscore/modules/negate.js +6 -0
- package/node_modules/underscore/modules/noop.js +2 -0
- package/node_modules/underscore/modules/now.js +4 -0
- package/node_modules/underscore/modules/object.js +16 -0
- package/node_modules/underscore/modules/omit.js +22 -0
- package/node_modules/underscore/modules/once.js +6 -0
- package/node_modules/underscore/modules/package.json +3 -0
- package/node_modules/underscore/modules/pairs.js +13 -0
- package/node_modules/underscore/modules/partial.js +24 -0
- package/node_modules/underscore/modules/partition.js +7 -0
- package/node_modules/underscore/modules/pick.js +26 -0
- package/node_modules/underscore/modules/pluck.js +7 -0
- package/node_modules/underscore/modules/property.js +11 -0
- package/node_modules/underscore/modules/propertyOf.js +10 -0
- package/node_modules/underscore/modules/random.js +8 -0
- package/node_modules/underscore/modules/range.js +21 -0
- package/node_modules/underscore/modules/reduce.js +5 -0
- package/node_modules/underscore/modules/reduceRight.js +4 -0
- package/node_modules/underscore/modules/reject.js +8 -0
- package/node_modules/underscore/modules/rest.js +8 -0
- package/node_modules/underscore/modules/restArguments.js +27 -0
- package/node_modules/underscore/modules/result.js +22 -0
- package/node_modules/underscore/modules/sample.js +27 -0
- package/node_modules/underscore/modules/shuffle.js +6 -0
- package/node_modules/underscore/modules/size.js +8 -0
- package/node_modules/underscore/modules/some.js +15 -0
- package/node_modules/underscore/modules/sortBy.js +24 -0
- package/node_modules/underscore/modules/sortedIndex.js +15 -0
- package/node_modules/underscore/modules/tap.js +7 -0
- package/node_modules/underscore/modules/template.js +101 -0
- package/node_modules/underscore/modules/templateSettings.js +9 -0
- package/node_modules/underscore/modules/throttle.js +47 -0
- package/node_modules/underscore/modules/times.js +9 -0
- package/node_modules/underscore/modules/toArray.js +20 -0
- package/node_modules/underscore/modules/toPath.js +9 -0
- package/node_modules/underscore/modules/underscore-array-methods.js +31 -0
- package/node_modules/underscore/modules/underscore.js +25 -0
- package/node_modules/underscore/modules/unescape.js +5 -0
- package/node_modules/underscore/modules/union.js +9 -0
- package/node_modules/underscore/modules/uniq.js +36 -0
- package/node_modules/underscore/modules/uniqueId.js +7 -0
- package/node_modules/underscore/modules/unzip.js +15 -0
- package/node_modules/underscore/modules/values.js +12 -0
- package/node_modules/underscore/modules/where.js +8 -0
- package/node_modules/underscore/modules/without.js +7 -0
- package/node_modules/underscore/modules/wrap.js +8 -0
- package/node_modules/underscore/modules/zip.js +6 -0
- package/node_modules/underscore/package.json +121 -0
- package/node_modules/underscore/underscore-esm-min.js +5 -0
- package/node_modules/underscore/underscore-esm-min.js.map +1 -0
- package/node_modules/underscore/underscore-esm.js +2034 -0
- package/node_modules/underscore/underscore-esm.js.map +1 -0
- package/node_modules/underscore/underscore-min.js +6 -0
- package/node_modules/underscore/underscore-min.js.map +1 -0
- package/node_modules/underscore/underscore-node-f.cjs +2158 -0
- package/node_modules/underscore/underscore-node-f.cjs.map +1 -0
- package/node_modules/underscore/underscore-node.cjs +11 -0
- package/node_modules/underscore/underscore-node.cjs.map +1 -0
- package/node_modules/underscore/underscore-node.mjs +7 -0
- package/node_modules/underscore/underscore-node.mjs.map +1 -0
- package/node_modules/underscore/underscore-umd-min.js +6 -0
- package/node_modules/underscore/underscore-umd-min.js.map +1 -0
- package/node_modules/underscore/underscore-umd.js +2042 -0
- package/node_modules/underscore/underscore-umd.js.map +1 -0
- package/node_modules/underscore/underscore.js +2042 -0
- package/node_modules/unique-string/index.js +4 -0
- package/node_modules/unique-string/license +21 -0
- package/node_modules/unique-string/package.json +44 -0
- package/node_modules/unique-string/readme.md +32 -0
- package/node_modules/unpipe/HISTORY.md +4 -0
- package/node_modules/unpipe/LICENSE +22 -0
- package/node_modules/unpipe/README.md +43 -0
- package/node_modules/unpipe/index.js +69 -0
- package/node_modules/unpipe/package.json +27 -0
- package/node_modules/unzip-response/index.js +36 -0
- package/node_modules/unzip-response/license +21 -0
- package/node_modules/unzip-response/package.json +49 -0
- package/node_modules/unzip-response/readme.md +29 -0
- package/node_modules/unzip-stream/.travis.yml +9 -0
- package/node_modules/unzip-stream/LICENSE +21 -0
- package/node_modules/unzip-stream/README.md +92 -0
- package/node_modules/unzip-stream/aa.zip +0 -0
- package/node_modules/unzip-stream/lib/entry.js +24 -0
- package/node_modules/unzip-stream/lib/extract.js +97 -0
- package/node_modules/unzip-stream/lib/matcher-stream.js +94 -0
- package/node_modules/unzip-stream/lib/parser-stream.js +51 -0
- package/node_modules/unzip-stream/lib/unzip-stream.js +740 -0
- package/node_modules/unzip-stream/package.json +45 -0
- package/node_modules/unzip-stream/test.js +29 -0
- package/node_modules/unzip-stream/testData-golang/crc32-not-streamed.zip +0 -0
- package/node_modules/unzip-stream/testData-golang/dd.zip +0 -0
- package/node_modules/unzip-stream/testData-golang/go-no-datadesc-sig.zip +0 -0
- package/node_modules/unzip-stream/testData-golang/go-with-datadesc-sig.zip +0 -0
- package/node_modules/unzip-stream/testData-golang/readme.zip +0 -0
- package/node_modules/unzip-stream/testData-golang/symlink.zip +0 -0
- package/node_modules/unzip-stream/testData-golang/test-trailing-junk.zip +0 -0
- package/node_modules/unzip-stream/testData-golang/test.zip +0 -0
- package/node_modules/unzip-stream/testData-golang/unix.zip +0 -0
- package/node_modules/unzip-stream/testData-golang/winxp.zip +0 -0
- package/node_modules/unzip-stream/testData-golang/zip64-2.zip +0 -0
- package/node_modules/unzip-stream/testData-golang/zip64.zip +0 -0
- package/node_modules/unzip-stream/testData-php/cd-gap.zip +0 -0
- package/node_modules/unzip-stream/testData-php/cd-truncated.zip +0 -0
- package/node_modules/unzip-stream/testData-php/class-trailing-null.zip +0 -0
- package/node_modules/unzip-stream/testData-php/class-trailing-slash.zip +0 -0
- package/node_modules/unzip-stream/testData-php/class.zip +0 -0
- package/node_modules/unzip-stream/testData-php/empty.zip +0 -0
- package/node_modules/unzip-stream/testData-php/looks-like-zip64.zip +0 -0
- package/node_modules/unzip-stream/testData-php/nosig.zip +0 -0
- package/node_modules/unzip-stream/testData-php/split.zip +0 -0
- package/node_modules/unzip-stream/testData-php/trail.zip +0 -0
- package/node_modules/unzip-stream/testData-php/wrong-cd-start-disk.zip +0 -0
- package/node_modules/unzip-stream/testData-php/wrong-central-entry-sig.zip +0 -0
- package/node_modules/unzip-stream/unzip.js +4 -0
- package/node_modules/update-notifier/check.js +22 -0
- package/node_modules/update-notifier/index.js +155 -0
- package/node_modules/update-notifier/license +9 -0
- package/node_modules/update-notifier/package.json +55 -0
- package/node_modules/update-notifier/readme.md +193 -0
- package/node_modules/uri-js/LICENSE +11 -0
- package/node_modules/uri-js/README.md +203 -0
- package/node_modules/uri-js/dist/es5/uri.all.d.ts +59 -0
- package/node_modules/uri-js/dist/es5/uri.all.js +1443 -0
- package/node_modules/uri-js/dist/es5/uri.all.js.map +1 -0
- package/node_modules/uri-js/dist/es5/uri.all.min.d.ts +59 -0
- package/node_modules/uri-js/dist/es5/uri.all.min.js +3 -0
- package/node_modules/uri-js/dist/es5/uri.all.min.js.map +1 -0
- package/node_modules/uri-js/dist/esnext/index.d.ts +1 -0
- package/node_modules/uri-js/dist/esnext/index.js +17 -0
- package/node_modules/uri-js/dist/esnext/index.js.map +1 -0
- package/node_modules/uri-js/dist/esnext/regexps-iri.d.ts +3 -0
- package/node_modules/uri-js/dist/esnext/regexps-iri.js +3 -0
- package/node_modules/uri-js/dist/esnext/regexps-iri.js.map +1 -0
- package/node_modules/uri-js/dist/esnext/regexps-uri.d.ts +4 -0
- package/node_modules/uri-js/dist/esnext/regexps-uri.js +42 -0
- package/node_modules/uri-js/dist/esnext/regexps-uri.js.map +1 -0
- package/node_modules/uri-js/dist/esnext/schemes/http.d.ts +3 -0
- package/node_modules/uri-js/dist/esnext/schemes/http.js +28 -0
- package/node_modules/uri-js/dist/esnext/schemes/http.js.map +1 -0
- package/node_modules/uri-js/dist/esnext/schemes/https.d.ts +3 -0
- package/node_modules/uri-js/dist/esnext/schemes/https.js +9 -0
- package/node_modules/uri-js/dist/esnext/schemes/https.js.map +1 -0
- package/node_modules/uri-js/dist/esnext/schemes/mailto.d.ts +12 -0
- package/node_modules/uri-js/dist/esnext/schemes/mailto.js +148 -0
- package/node_modules/uri-js/dist/esnext/schemes/mailto.js.map +1 -0
- package/node_modules/uri-js/dist/esnext/schemes/urn-uuid.d.ts +7 -0
- package/node_modules/uri-js/dist/esnext/schemes/urn-uuid.js +23 -0
- package/node_modules/uri-js/dist/esnext/schemes/urn-uuid.js.map +1 -0
- package/node_modules/uri-js/dist/esnext/schemes/urn.d.ts +10 -0
- package/node_modules/uri-js/dist/esnext/schemes/urn.js +49 -0
- package/node_modules/uri-js/dist/esnext/schemes/urn.js.map +1 -0
- package/node_modules/uri-js/dist/esnext/schemes/ws.d.ts +7 -0
- package/node_modules/uri-js/dist/esnext/schemes/ws.js +41 -0
- package/node_modules/uri-js/dist/esnext/schemes/ws.js.map +1 -0
- package/node_modules/uri-js/dist/esnext/schemes/wss.d.ts +3 -0
- package/node_modules/uri-js/dist/esnext/schemes/wss.js +9 -0
- package/node_modules/uri-js/dist/esnext/schemes/wss.js.map +1 -0
- package/node_modules/uri-js/dist/esnext/uri.d.ts +59 -0
- package/node_modules/uri-js/dist/esnext/uri.js +480 -0
- package/node_modules/uri-js/dist/esnext/uri.js.map +1 -0
- package/node_modules/uri-js/dist/esnext/util.d.ts +6 -0
- package/node_modules/uri-js/dist/esnext/util.js +36 -0
- package/node_modules/uri-js/dist/esnext/util.js.map +1 -0
- package/node_modules/uri-js/package.json +77 -0
- package/node_modules/uri-js/yarn.lock +2558 -0
- package/node_modules/url-parse-lax/index.js +14 -0
- package/node_modules/url-parse-lax/license +21 -0
- package/node_modules/url-parse-lax/package.json +41 -0
- package/node_modules/url-parse-lax/readme.md +100 -0
- package/node_modules/util-deprecate/History.md +16 -0
- package/node_modules/util-deprecate/LICENSE +24 -0
- package/node_modules/util-deprecate/README.md +53 -0
- package/node_modules/util-deprecate/browser.js +67 -0
- package/node_modules/util-deprecate/node.js +6 -0
- package/node_modules/util-deprecate/package.json +27 -0
- package/node_modules/utils-merge/.npmignore +9 -0
- package/node_modules/utils-merge/LICENSE +20 -0
- package/node_modules/utils-merge/README.md +34 -0
- package/node_modules/utils-merge/index.js +23 -0
- package/node_modules/utils-merge/package.json +40 -0
- package/node_modules/uuid/AUTHORS +5 -0
- package/node_modules/uuid/CHANGELOG.md +119 -0
- package/node_modules/uuid/LICENSE.md +21 -0
- package/node_modules/uuid/README.md +276 -0
- package/node_modules/uuid/bin/uuid +65 -0
- package/node_modules/uuid/index.js +8 -0
- package/node_modules/uuid/lib/bytesToUuid.js +26 -0
- package/node_modules/uuid/lib/md5-browser.js +216 -0
- package/node_modules/uuid/lib/md5.js +25 -0
- package/node_modules/uuid/lib/rng-browser.js +34 -0
- package/node_modules/uuid/lib/rng.js +8 -0
- package/node_modules/uuid/lib/sha1-browser.js +89 -0
- package/node_modules/uuid/lib/sha1.js +25 -0
- package/node_modules/uuid/lib/v35.js +57 -0
- package/node_modules/uuid/package.json +49 -0
- package/node_modules/uuid/v1.js +109 -0
- package/node_modules/uuid/v3.js +4 -0
- package/node_modules/uuid/v4.js +29 -0
- package/node_modules/uuid/v5.js +3 -0
- package/node_modules/vary/HISTORY.md +39 -0
- package/node_modules/vary/LICENSE +22 -0
- package/node_modules/vary/README.md +101 -0
- package/node_modules/vary/index.js +149 -0
- package/node_modules/vary/package.json +43 -0
- package/node_modules/verror/.npmignore +9 -0
- package/node_modules/verror/CHANGES.md +28 -0
- package/node_modules/verror/CONTRIBUTING.md +19 -0
- package/node_modules/verror/LICENSE +19 -0
- package/node_modules/verror/README.md +528 -0
- package/node_modules/verror/lib/verror.js +451 -0
- package/node_modules/verror/node_modules/core-util-is/LICENSE +19 -0
- package/node_modules/verror/node_modules/core-util-is/README.md +3 -0
- package/node_modules/verror/node_modules/core-util-is/float.patch +604 -0
- package/node_modules/verror/node_modules/core-util-is/lib/util.js +107 -0
- package/node_modules/verror/node_modules/core-util-is/package.json +32 -0
- package/node_modules/verror/node_modules/core-util-is/test.js +68 -0
- package/node_modules/verror/package.json +22 -0
- package/node_modules/which/CHANGELOG.md +152 -0
- package/node_modules/which/LICENSE +15 -0
- package/node_modules/which/README.md +51 -0
- package/node_modules/which/bin/which +52 -0
- package/node_modules/which/package.json +30 -0
- package/node_modules/which/which.js +135 -0
- package/node_modules/widest-line/index.js +8 -0
- package/node_modules/widest-line/license +9 -0
- package/node_modules/widest-line/package.json +54 -0
- package/node_modules/widest-line/readme.md +34 -0
- package/node_modules/wrappy/LICENSE +15 -0
- package/node_modules/wrappy/README.md +36 -0
- package/node_modules/wrappy/package.json +29 -0
- package/node_modules/wrappy/wrappy.js +33 -0
- package/node_modules/write-file-atomic/CHANGELOG.md +25 -0
- package/node_modules/write-file-atomic/LICENSE +6 -0
- package/node_modules/write-file-atomic/README.md +56 -0
- package/node_modules/write-file-atomic/index.js +238 -0
- package/node_modules/write-file-atomic/package.json +41 -0
- package/node_modules/xdg-basedir/index.js +28 -0
- package/node_modules/xdg-basedir/license +21 -0
- package/node_modules/xdg-basedir/package.json +40 -0
- package/node_modules/xdg-basedir/readme.md +60 -0
- package/node_modules/yallist/LICENSE +15 -0
- package/node_modules/yallist/README.md +204 -0
- package/node_modules/yallist/iterator.js +7 -0
- package/node_modules/yallist/package.json +29 -0
- package/node_modules/yallist/yallist.js +370 -0
- package/package.json +58 -0
- package/server.js +72 -0
- package/test/test.js +60 -0
|
@@ -0,0 +1,3000 @@
|
|
|
1
|
+
## 6.14.17 (2022-04-28)
|
|
2
|
+
|
|
3
|
+
### DEPENDENCIES
|
|
4
|
+
|
|
5
|
+
* [`a869ec48b`](https://github.com/npm/cli/commit/a869ec48b9481c10302378e6c2d94fe36e4c81c2)
|
|
6
|
+
`ansi-regex@4.1.1`
|
|
7
|
+
* [`a869ec48b`](https://github.com/npm/cli/commit/a869ec48b9481c10302378e6c2d94fe36e4c81c2)
|
|
8
|
+
`minimist@1.2.6`
|
|
9
|
+
|
|
10
|
+
## 6.14.16 (2022-01-19)
|
|
11
|
+
|
|
12
|
+
### CHORE
|
|
13
|
+
|
|
14
|
+
* [`0afe4f12f`](https://github.com/npm/cli/commit/0afe4f12f6b69f8fa6d39451b6e684fbef5fe1e2)
|
|
15
|
+
update one-time password prompt
|
|
16
|
+
([@ruyadorno](https://github.com/ruyadorno))
|
|
17
|
+
|
|
18
|
+
### DEPENDENCIES
|
|
19
|
+
|
|
20
|
+
* [`2c534f801`](https://github.com/npm/cli/commit/2c534f801b87d6b8d6c534d326ca39654e313fe9)
|
|
21
|
+
`json-schema@0.4.0`
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
## 6.14.15 (2021-08-23)
|
|
25
|
+
|
|
26
|
+
### DEPENDENCIES
|
|
27
|
+
|
|
28
|
+
* [`8160e6e4b`](https://github.com/npm/cli/commit/8160e6e4b58c0f76e720183f2057e26c6d9d8470)
|
|
29
|
+
`path-parse@1.0.7`
|
|
30
|
+
* [`3079f5038`](https://github.com/npm/cli/commit/3079f503896323ab10bfad5bbdb7fe5ca9207d4b)
|
|
31
|
+
`tar@4.4.1`
|
|
32
|
+
|
|
33
|
+
## 6.14.14 (2021-07-27)
|
|
34
|
+
|
|
35
|
+
### DEPENDENCIES
|
|
36
|
+
|
|
37
|
+
* [`4627c0670`](https://github.com/npm/cli/commit/4627c0670957ee5c5e8506750f4626493aabdc25)
|
|
38
|
+
`tar@4.4.15`
|
|
39
|
+
|
|
40
|
+
## 6.14.13 (2021-04-08)
|
|
41
|
+
|
|
42
|
+
### DEPENDENCIES
|
|
43
|
+
|
|
44
|
+
* [`285ab3f65`](https://github.com/npm/cli/commit/285ab3f654882860246f729eb52e2c8c6a6d6e01)
|
|
45
|
+
`hosted-git-info@2.8.9`
|
|
46
|
+
* [`63b5c56c5`](https://github.com/npm/cli/commit/63b5c56c5203c8965c8ddeff28f2a65010b40b7c)
|
|
47
|
+
`ssri@6.0.2`
|
|
48
|
+
|
|
49
|
+
## 6.14.12 (2021-03-25)
|
|
50
|
+
|
|
51
|
+
### DEPENDENCIES
|
|
52
|
+
|
|
53
|
+
* [`e47654048`](https://github.com/npm/cli/commit/e4765404844a0b6795752b2bc6f9b9107fe713be)
|
|
54
|
+
[#2737](https://github.com/npm/cli/pull/2737)
|
|
55
|
+
Update y18n to fix CVE-2020-7774
|
|
56
|
+
([@vecerek](https://github.com/vecerek))
|
|
57
|
+
|
|
58
|
+
## 6.14.11 (2021-01-07)
|
|
59
|
+
### DEPENDENCIES
|
|
60
|
+
|
|
61
|
+
* [`19108ca5b`](https://github.com/npm/cli/commit/19108ca5be1b3e7e9787dac3131aafe2722c6218)
|
|
62
|
+
`ini@1.3.8`:
|
|
63
|
+
* addressing [`CVE-2020-7788`](https://github.com/advisories/GHSA-qqgx-2p2h-9c37)
|
|
64
|
+
* [`7a0574074`](https://github.com/npm/cli/commit/7a05740743ac9d9229e2dc9e1b9ca8b57d58c789)
|
|
65
|
+
`bl@3.0.1`
|
|
66
|
+
* addressing [`CVE-2020-8244`](https://github.com/advisories/GHSA-pp7h-53gx-mx7r)
|
|
67
|
+
|
|
68
|
+
## 6.14.10 (2020-12-18)
|
|
69
|
+
|
|
70
|
+
### DEPENDENCIES
|
|
71
|
+
|
|
72
|
+
* [`906d647e1`](https://github.com/npm/cli/commit/906d647e1cacd74243abcacba3bade80437f30f5)
|
|
73
|
+
`opener@1.5.2`
|
|
74
|
+
* fixes: [`#36445`](https://github.com/nodejs/node/issues/36445) addressing
|
|
75
|
+
[`GHSL-2020-145`](https://securitylab.github.com/advisories/GHSL-2020-145-domenic-opener)
|
|
76
|
+
|
|
77
|
+
## 6.14.9 (2020-11-20)
|
|
78
|
+
|
|
79
|
+
### BUG FIXES
|
|
80
|
+
* [`4a91e48aa`](https://github.com/npm/cli/commit/4a91e48aa92be5b2739ebcdd8a9a841ff5cb6817)
|
|
81
|
+
fix: docs generation breaking builds
|
|
82
|
+
|
|
83
|
+
### DEPENDDENCIES
|
|
84
|
+
* [`ab80a7cf0`](https://github.com/npm/cli/commit/ab80a7cf092d52f4b055cc6d03c38b6115c4b582)
|
|
85
|
+
`npm-user-validate@1.0.1`
|
|
86
|
+
* dep update to resolve security issue [GHSA-xgh6-85xh-479p](https://github.com/advisories/GHSA-xgh6-85xh-479p)
|
|
87
|
+
* [`6b2ab9d53`](https://github.com/npm/cli/commit/6b2ab9d532ef8ffce326f4caa23eb27f83765acd)
|
|
88
|
+
`har-validator@5.1.5`
|
|
89
|
+
* dep update to resolve security issue [SNYK-JS-AJV-584908](https://snyk.io/vuln/SNYK-JS-AJV-584908)
|
|
90
|
+
|
|
91
|
+
## 6.14.8 (2020-08-17)
|
|
92
|
+
|
|
93
|
+
### BUG FIXES
|
|
94
|
+
* [`9262e8c88`](https://github.com/npm/cli/commit/9262e8c88f2f828206423928b8e21eea67f4801a)
|
|
95
|
+
[#1575](https://github.com/npm/cli/pull/1575)
|
|
96
|
+
npm install --dev deprecation message
|
|
97
|
+
([@sandratatarevicova](https://github.com/sandratatarevicova))
|
|
98
|
+
* [`765cfe0bc`](https://github.com/npm/cli/commit/765cfe0bc05a10b72026291ff0ca7c9ca5cb3f57)
|
|
99
|
+
[#1658](https://github.com/npm/cli/issues/1658)
|
|
100
|
+
remove unused broken require
|
|
101
|
+
([@aduh95](https://github.com/aduh95))
|
|
102
|
+
* [`4e28de79a`](https://github.com/npm/cli/commit/4e28de79a3a0aacc7603010a592beb448ceb6f5f)
|
|
103
|
+
[#1663](https://github.com/npm/cli/pull/1663)
|
|
104
|
+
Do not send user secret in the referer header
|
|
105
|
+
([@assapir](https://github.com/assapir))
|
|
106
|
+
|
|
107
|
+
### DOCUMENTATION
|
|
108
|
+
* [`8abdf30c9`](https://github.com/npm/cli/commit/8abdf30c95ec90331456f3f2ed78e2703939bb74)
|
|
109
|
+
[#1572](https://github.com/npm/cli/pull/1572)
|
|
110
|
+
docs: add missing metadata in semver page
|
|
111
|
+
([@tripu](https://github.com/tripu))
|
|
112
|
+
* [`8cedcca46`](https://github.com/npm/cli/commit/8cedcca464ced5aab58be83dd5049c3df13384de)
|
|
113
|
+
[#1614](https://github.com/npm/cli/pull/1614)
|
|
114
|
+
Node-gyp supports both Python and legacy Python
|
|
115
|
+
([@cclauss](https://github.com/cclauss))
|
|
116
|
+
|
|
117
|
+
### DEPENDENCIES
|
|
118
|
+
* [`a303b75fd`](https://github.com/npm/cli/commit/a303b75fd7c4b2644da02ad2ad46d80dfceec3c5)
|
|
119
|
+
`update-notifier@2.5.0`
|
|
120
|
+
* [`c48600832`](https://github.com/npm/cli/commit/c48600832aff4cc349f59997e08dc4bbde15bd49)
|
|
121
|
+
`npm-registry-fetch@4.0.7`
|
|
122
|
+
* [`a6e9fc4df`](https://github.com/npm/cli/commit/a6e9fc4df7092ba3eb5394193638b33c24855c36)
|
|
123
|
+
`meant@1.0.2`:
|
|
124
|
+
|
|
125
|
+
## 6.14.7 (2020-07-21)
|
|
126
|
+
|
|
127
|
+
### BUG FIXES
|
|
128
|
+
* [`de5108836`](https://github.com/npm/cli/commit/de5108836189bddf28d4d3542f9bd5869cc5c2e9) [#784](https://github.com/npm/cli/pull/784) npm explore spawn shell correctly ([@jasisk](https://github.com/jasisk))
|
|
129
|
+
* [`36e6c01d3`](https://github.com/npm/cli/commit/36e6c01d334c4db75018bc6a4a0bef726fd41ce4) git tag handling regression on shrinkwrap ([@claudiahdz](https://github.com/claudiahdz))
|
|
130
|
+
* [`1961c9369`](https://github.com/npm/cli/commit/1961c9369c92bf8fe530cecba9834ca3c7f5567c) [#288](https://github.com/npm/cli/pull/288) Fix package id in shrinkwrap lifecycle step output ([@bz2](https://github.com/bz2))
|
|
131
|
+
* [`87888892a`](https://github.com/npm/cli/commit/87888892a1282cc3edae968c3ae4ec279189271c) [#1009](https://github.com/npm/cli/pull/1009) gracefully handle error during npm install ([@danielleadams](https://github.com/danielleadams))
|
|
132
|
+
* [`6fe2bdc25`](https://github.com/npm/cli/commit/6fe2bdc25e7961956e5c0067fa4db54ff1bd0dbd) [#1547](https://github.com/npm/cli/pull/1547) npm ls --parseable --long output ([@ruyadorno](https://github.com/ruyadorno))
|
|
133
|
+
|
|
134
|
+
### DEPENDENCIES
|
|
135
|
+
* [`2d78481c7`](https://github.com/npm/cli/commit/2d78481c7ec178e628ce23df940f73a05d5c6367) update mkdirp on tacks ([@claudiahdz](https://github.com/claudiahdz))
|
|
136
|
+
* [`4e129d105`](https://github.com/npm/cli/commit/4e129d105eba3b12d474caa6e5ca216a98deb75a) uninstall npm-registry-couchapp ([@claudiahdz](https://github.com/claudiahdz))
|
|
137
|
+
* [`8e1869e27`](https://github.com/npm/cli/commit/8e1869e278d1dd37ddefd6b4e961d1bb17fc9d09) update marked dev dep ([@claudiahdz](https://github.com/claudiahdz))
|
|
138
|
+
* [`6a6151f37`](https://github.com/npm/cli/commit/6a6151f377063c6aca852c859c01910edd235ec6) `libnpx@10.2.4` ([@claudiahdz](https://github.com/claudiahdz))
|
|
139
|
+
* [`dc21422eb`](https://github.com/npm/cli/commit/dc21422eb1ca1a4a19f160fad0e924566e08c496) `bin-links@1.1.8` ([@claudiahdz](https://github.com/claudiahdz))
|
|
140
|
+
* [`d341f88ce`](https://github.com/npm/cli/commit/d341f88ce6feb3df1dcb37f34910fcc6c1db85f2) `gentle-fs@2.3.1` ([@claudiahdz](https://github.com/claudiahdz))
|
|
141
|
+
* [`3e168d49b`](https://github.com/npm/cli/commit/3e168d49b41574809cae2ad013776a00d3f20ff4) `libcipm@4.0.8` ([@claudiahdz](https://github.com/claudiahdz))
|
|
142
|
+
* [`6ae942a51`](https://github.com/npm/cli/commit/6ae942a510520b7dff11b5b78eebeff1706e38af) `npm-audit-report@1.3.3` ([@claudiahdz](https://github.com/claudiahdz))
|
|
143
|
+
* [`6a35e3dee`](https://github.com/npm/cli/commit/6a35e3deec275bf2ae76603acd424a0640458047) `npm-lifecycle@3.1.5` ([@claudiahdz](https://github.com/claudiahdz))
|
|
144
|
+
|
|
145
|
+
## 6.14.6 (2020-07-07)
|
|
146
|
+
|
|
147
|
+
### BUG FIXES
|
|
148
|
+
* [`a9857b8f6`](https://github.com/npm/cli/commit/a9857b8f6869451ff058789c4631fadfde5bbcbc) chore: remove auth info from logs ([@claudiahdz](https://github.com/claudiahdz))
|
|
149
|
+
* [`b7ad77598`](https://github.com/npm/cli/commit/b7ad77598112908d60195d0fbc472b3c84275fd5) [#1416](https://github.com/npm/cli/pull/1416) fix: wrong `npm doctor` command result ([@vanishcode](https://github.com/vanishcode))
|
|
150
|
+
|
|
151
|
+
### DEPENDENCIES
|
|
152
|
+
* [`94eca6377`](https://github.com/npm/cli/commit/94eca637756376b949edfb697e179a1fdcc231ee) `npm-registry-fetch@4.0.5` ([@claudiahdz](https://github.com/claudiahdz))
|
|
153
|
+
* [`c49b6ae28`](https://github.com/npm/cli/commit/c49b6ae28791ff7184288be16654f97168aa9705) [#1418](https://github.com/npm/cli/pull/1418) `spdx-license-ids@3.0.5` ([@kemitchell](https://github.com/kemitchell))
|
|
154
|
+
|
|
155
|
+
### DOCUMENTATION
|
|
156
|
+
* [`2e052984b`](https://github.com/npm/cli/commit/2e052984b08c09115ed75387fb2c961631d85d77)
|
|
157
|
+
[#1459](https://github.com/npm/cli/pull/1459)
|
|
158
|
+
chore(docs): fixed links to cli commands ([@claudiahdz](https://github.com/claudiahdz))
|
|
159
|
+
* [`0ca3509ca`](https://github.com/npm/cli/commit/0ca3509ca940865392daeeabb39192f7d5af9f5e)
|
|
160
|
+
[#1283](https://github.com/npm/cli/pull/1283) Update npm-link.md ([@peterfich](https://github.com/peterfich))
|
|
161
|
+
* [`3dd429e9a`](https://github.com/npm/cli/commit/3dd429e9aad760ce2ff9e522b34ebfebd85b460c)
|
|
162
|
+
[#1377](https://github.com/npm/cli/pull/1377)
|
|
163
|
+
Add note about dropped `*` filenames ([@maxwellgerber](https://github.com/maxwellgerber))
|
|
164
|
+
* [`9a2e2e797`](https://github.com/npm/cli/commit/9a2e2e797e5c91e7f4f261583a1906e2c440cc2f)
|
|
165
|
+
[#1429](https://github.com/npm/cli/pull/1429) Fix typo ([@seanpoulter](https://github.com/seanpoulter))
|
|
166
|
+
|
|
167
|
+
## 6.14.5 (2020-05-01)
|
|
168
|
+
|
|
169
|
+
### BUG FIXES
|
|
170
|
+
|
|
171
|
+
* [`33ec41f18`](https://github.com/npm/cli/commit/33ec41f18f557146607cb14a7a38c707fce6d42c) [#758](https://github.com/npm/cli/pull/758) fix: relativize file links when inflating shrinkwrap ([@jsnajdr](https://github.com/jsnajdr))
|
|
172
|
+
* [`94ed456df`](https://github.com/npm/cli/commit/94ed456dfb0b122fd4192429024f034d06c3c454) [#1162](https://github.com/npm/cli/pull/1162) fix: npm init help output ([@mum-never-proud](https://github.com/mum-never-proud))
|
|
173
|
+
|
|
174
|
+
### DEPENDENCIES
|
|
175
|
+
|
|
176
|
+
* [`5587ac01f`](https://github.com/npm/cli/commit/5587ac01ffd0d2ea830a6bbb67bb34a611ffc409) `npm-registry-fetch@4.0.4`
|
|
177
|
+
* [`fc5d94c39`](https://github.com/npm/npm-registry-fetch/commit/fc5d94c39ca218d78df77249ab3a6bf1d9ed9db1) fix: removed default timeout
|
|
178
|
+
* [`07a4d8884`](https://github.com/npm/cli/commit/07a4d8884448359bac485a49c05fd2d23d06834b) `graceful-fs@4.2.4`
|
|
179
|
+
* [`8228d1f2e`](https://github.com/npm/cli/commit/8228d1f2e427ad9adee617266108acd1ee39b4a5) `mkdirp@0.5.5`
|
|
180
|
+
* [`e6d208317`](https://github.com/npm/cli/commit/e6d20831740a84aea766da2a2913cf82a4d56ada) `nopt@4.0.3`
|
|
181
|
+
|
|
182
|
+
## 6.14.4 (2020-03-24)
|
|
183
|
+
|
|
184
|
+
### DEPENDENCIES
|
|
185
|
+
|
|
186
|
+
* Bump `minimist@1.2.5` transitive dep to resolve security issue
|
|
187
|
+
* [`9c554fd8c`](https://github.com/npm/cli/commit/9c554fd8cd1e9aeb8eb122ccfa3c78d12af4097a) `update-notifier@2.5.0`
|
|
188
|
+
* bump `deep-extend@1.2.5`
|
|
189
|
+
* bump `deep-extend@0.6.0`
|
|
190
|
+
* bump `is-ci@1.2.1`
|
|
191
|
+
* bump `is-retry-allowed@1.2.0`
|
|
192
|
+
* bump `rc@1.2.8`
|
|
193
|
+
* bump `registry-auth-token@3.4.0`
|
|
194
|
+
* bump `widest-line@2.0.1`
|
|
195
|
+
* [`136832dca`](https://github.com/npm/cli/commit/136832dcae13cb5518b1fe17bd63ea9b2a195f92) `mkdirp@0.5.4`
|
|
196
|
+
* [`8bf99b2b5`](https://github.com/npm/cli/commit/8bf99b2b58c14d45dc6739fce77de051ebc8ffb7) [#1053](https://github.com/npm/cli/pull/1053) deps: updates term-size to use signed binary
|
|
197
|
+
* [`d2f08a1bdb`](https://github.com/nodejs/node/commit/d2f08a1bdb78655c4a3fc49825986c148d14117e) ([@rvagg](https://github.com/rvagg))
|
|
198
|
+
|
|
199
|
+
## 6.14.3 (2020-03-19)
|
|
200
|
+
|
|
201
|
+
### DOCUMENTATION
|
|
202
|
+
|
|
203
|
+
* [`4ad221487`](https://github.com/npm/cli/commit4ad2214873cddfd4a0eff1bd188516b08fae9f9e) [#1020](https://github.com/npm/cli/pull/1020) docs(teams): updated team docs to reflect MFA workflow ([@blkdm0n](https://github.com/blkdm0n))
|
|
204
|
+
* [`4a31a4ba2`](https://github.com/npm/cli/commit/4a31a4ba2db0a5db2d1d0890ee934ba1babb73a6) [#1034](https://github.com/npm/cli/pull/1034) docs: cleanup ([@ruyadorno](https://github.com/ruyadorno))
|
|
205
|
+
* [`0eac801cd`](https://github.com/npm/cli/commit/0eac801cdef344e9fbda6270145e062211255b0e) [#1013](https://github.com/npm/cli/pull/1013) docs: fix links to cli commands ([@alenros](https://github.com/alenros))
|
|
206
|
+
* [`7d8e5b99c`](https://github.com/npm/cli/commit/7d8e5b99c4ef8c394cffa7fc845f54a25ff37e3a) [#755](https://github.com/npm/cli/pull/755) docs: correction to `npm update -g` behaviour ([@johnkennedy9147](https://github.com/johnkennedy9147))
|
|
207
|
+
|
|
208
|
+
### DEPENDENCIES
|
|
209
|
+
|
|
210
|
+
* [`e11167646`](https://github.com/npm/cli/commit/e111676467f090f73802b97e8da7ece481b18f99) `mkdirp@0.5.3`
|
|
211
|
+
* [`c5b97d17d`](https://github.com/isaacs/node-mkdirp/commit/c5b97d17d45a22bcf4c815645cbb989dab57ddd8) fix: bump `minimist` dep to resolve security issue ([@isaacs](https://github.com/isaacs))
|
|
212
|
+
* [`c50d679c6`](https://github.com/npm/cli/commit/c50d679c68b39dd03ad127d34f540ddcb1b1e804) `rimraf@2.7.1`
|
|
213
|
+
* [`a2de99ff9`](https://github.com/npm/cli/commit/a2de99ff9e02425a3ccc25280f390178be755a36) `npm-registry-mock@1.3.1`
|
|
214
|
+
* [`217debeb9`](https://github.com/npm/cli/commit/217debeb9812e037a6686cbf6ec67a0cd47fa68a) `npm-registry-couchapp@2.7.4`
|
|
215
|
+
|
|
216
|
+
## 6.14.2 (2020-03-03)
|
|
217
|
+
|
|
218
|
+
### DOCUMENTATION
|
|
219
|
+
* [`f9248c0be`](https://github.com/npm/cli/commit/f9248c0be63fba37a30098dc9215c752474380e3) [#730](https://github.com/npm/cli/pull/730) chore(docs): update unpublish docs & policy reference ([@nomadtechie](https://github.com/nomadtechie), [@mikemimik](https://github.com/mikemimik))
|
|
220
|
+
|
|
221
|
+
### DEPENDENCIES
|
|
222
|
+
|
|
223
|
+
* [`909cc3918`](https://github.com/npm/cli/commit/909cc39180a352f206898481add5772206c8b65f) `hosted-git-info@2.8.8` ([@darcyclarke](https://github.com/darcyclarke))
|
|
224
|
+
* [`5038b1891`](https://github.com/npm/hosted-git-info/commit/5038b1891a61ca3cd7453acbf85d7011fe0086bb) fix: regression in old node versions w/ respect to url.URL implmentation
|
|
225
|
+
* [`9204ffa58`](https://github.com/npm/cli/commit/9204ffa584c140c5e22b1ee37f6df2c98f5dc70b) `npm-profile@4.0.4` ([@isaacs](https://github.com/isaacs))
|
|
226
|
+
* [`6bcf0860a`](https://github.com/npm/npm-profile/commit/6bcf0860a3841865099d0115dbcbde8b78109bd9) fix: treat non-http/https login urls as invalid
|
|
227
|
+
* [`0365d39bd`](https://github.com/npm/cli/commit/0365d39bdc74960a18caac674f51d0e2a98b31e6) `glob@7.1.6` ([@isaacs](https://github.com/isaacs))
|
|
228
|
+
* [`dab030536`](https://github.com/nodejs/node-gyp/commit/dab030536b6a70ecae37debc74c581db9e5280fd) `node-gyp@5.1.0` ([@rvagg](https://github.com/rvagg))
|
|
229
|
+
|
|
230
|
+
## 6.14.1 (2020-02-26)
|
|
231
|
+
|
|
232
|
+
* [`303e5c11e`](https://github.com/npm/cli/commit/303e5c11e7db34cf014107aecd2e81c821bfde8d)
|
|
233
|
+
`hosted-git-info@2.8.7`
|
|
234
|
+
Fixes a regression where scp-style git urls are passed to the WhatWG URL
|
|
235
|
+
parser, which does not handle them properly.
|
|
236
|
+
([@isaacs](https://github.com/isaacs))
|
|
237
|
+
|
|
238
|
+
## 6.14.0 (2020-02-25)
|
|
239
|
+
|
|
240
|
+
### FEATURES
|
|
241
|
+
* [`30f170877`](https://github.com/npm/cli/commit/30f170877954acd036cb234a581e4eb155049b82) [#731](https://github.com/npm/cli/pull/731) add support for multiple funding sources ([@ljharb](https://github.com/ljharb) & [@ruyadorno](hhttps://github.com/ruyadorno/))
|
|
242
|
+
|
|
243
|
+
### BUG FIXES
|
|
244
|
+
* [`55916b130`](https://github.com/npm/cli/commit/55916b130ef52984584678f2cc17c15c1f031cb5) [#508](https://github.com/npm/cli/pull/508) fix: check `npm.config` before accessing its members ([@kaiyoma](https://github.com/kaiyoma))
|
|
245
|
+
* [`7d0cd65b2`](https://github.com/npm/cli/commit/7d0cd65b23c0986b631b9b54d87bbe74902cc023) [#733](https://github.com/npm/cli/pull/733) fix: access grant with unscoped packages ([@netanelgilad](https://github.com/netanelgilad))
|
|
246
|
+
* [`28c3d40d6`](https://github.com/npm/cli/commit/28c3d40d65eef63f9d6ccb60b99ac57f5057a46e), [`0769c5b20`](https://github.com/npm/cli/commit/30f170877954acd036cb234a581e4eb155049b82) [#945](https://github.com/npm/cli/pull/945), [#697](https://github.com/npm/cli/pull/697) fix: allow new major versions of node to be automatically considered "supported" ([@isaacs](https://github.com/isaacs), [@ljharb](https://github.com/ljharb))
|
|
247
|
+
|
|
248
|
+
### DEPENDENCIES
|
|
249
|
+
* [`6f39e93`](https://github.com/npm/hosted-git-info/commit/6f39e93bae9162663af6f15a9d10bce675dd5de3) `hosted-git-info@2.8.6` ([@darcyclarke](https://github.com/darcyclarke))
|
|
250
|
+
* fix: passwords & usernames are escaped properly in git deps ([@stevenhilder](https://github.com/stevenhilder))
|
|
251
|
+
* [`f14b594ee`](https://github.com/npm/cli/commit/f14b594ee9dbfc98ed0b65c65d904782db4f31ad) `chownr@1.1.4` ([@isaacs](https://github.com/isaacs))
|
|
252
|
+
* [`77044150b`](https://github.com/npm/cli/commit/77044150b763d67d997f9ff108219132ea922678) `npm-packlist@1.4.8` ([@isaacs](https://github.com/isaacs))
|
|
253
|
+
* [`1d112461a`](https://github.com/npm/cli/commit/1d112461ad8dc99e5ff7fabb5177e8c2f89a9755) `npm-registry-fetch@4.0.3` ([@isaacs](https://github.com/isaacs))
|
|
254
|
+
* [`ba8b4fe`](https://github.com/npm/npm-registry-fetch/commit/ba8b4fe60eb6cdf9b39012560aec596eda8ce924) fix: always bypass cache when ?write=true
|
|
255
|
+
* [`a47fed760`](https://github.com/npm/cli/commit/a47fed7603a6ed31dcc314c0c573805f05a96830) `readable-stream@3.6.0`
|
|
256
|
+
* [`3bbf2d6`](https://github.com/nodejs/readable-stream/commit/3bbf2d6feb45b03f4e46a2ae8251601ad2262121) fix: babel's "loose mode" class transform enbrittles BufferList ([@ljharb](https://github.com/ljharb))
|
|
257
|
+
|
|
258
|
+
### DOCUMENTATION
|
|
259
|
+
* [`284c1c055`](https://github.com/npm/cli/commit/284c1c055a28c4b334496101799acefe3c54ceb3), [`fbb5f0e50`](https://github.com/npm/cli/commit/fbb5f0e50e54425119fa3f03c5de93e4cb6bfda7) [#729](https://github.com/npm/cli/pull/729) update lifecycle hooks docs
|
|
260
|
+
([@seanhealy](https://github.com/seanhealy), [@mikemimik](https://github.com/mikemimik))
|
|
261
|
+
* [`1c272832d`](https://github.com/npm/cli/commit/1c272832d048300e409882313305c416dc6f21a2) [#787](https://github.com/npm/cli/pull/787) fix: trademarks typo ([@dnicolson](https://github.com/dnicolson))
|
|
262
|
+
* [`f6ff41776`](https://github.com/npm/cli/commit/f6ff417767d52418cc8c9e7b9731ede2c3916d2e) [#936](https://github.com/npm/cli/pull/936) fix: postinstall example ([@ajaymathur](https://github.com/ajaymathur))
|
|
263
|
+
* [`373224b16`](https://github.com/npm/cli/commit/373224b16e019b7b63d8f0b4c5d4adb7e5cb80dd) [#939](https://github.com/npm/cli/pull/939) fix: bad links in publish docs ([@vit100](https://github.com/vit100))
|
|
264
|
+
|
|
265
|
+
### MISCELLANEOUS
|
|
266
|
+
* [`85c79636d`](https://github.com/npm/cli/commit/85c79636df31bac586c0e380c4852ee155a7723c) [#736](https://github.com/npm/cli/pull/736) add script to update dist-tags ([@mikemimik](https://github.com/mikemimik))
|
|
267
|
+
|
|
268
|
+
## 6.13.7 (2020-01-28)
|
|
269
|
+
|
|
270
|
+
### BUG FIXES
|
|
271
|
+
* [`7dbb91438`](https://github.com/npm/cli/commit/7dbb914382ecd2074fffb7eba81d93262e2d23c6)
|
|
272
|
+
[#655](https://github.com/npm/cli/pull/655)
|
|
273
|
+
Update CI detection cases
|
|
274
|
+
([@isaacs](https://github.com/isaacs))
|
|
275
|
+
|
|
276
|
+
### DEPENDENCIES
|
|
277
|
+
* [`0fb1296c7`](https://github.com/npm/cli/commit/0fb1296c7d6d4bb9e78c96978c433cd65e55c0ea)
|
|
278
|
+
`libnpx@10.2.2`
|
|
279
|
+
([@mikemimik](https://github.com/mikemimik))
|
|
280
|
+
* [`c9b69d569`](https://github.com/npm/cli/commit/c9b69d569fec7944375a746e9c08a6fa9bec96ff)
|
|
281
|
+
`node-gyp@5.0.7`
|
|
282
|
+
([@mikemimik](https://github.com/mikemimik))
|
|
283
|
+
* [`e8dbaf452`](https://github.com/npm/cli/commit/e8dbaf452a1f6c5350bb0c37059b89a7448e7986)
|
|
284
|
+
`bin-links@1.1.7`
|
|
285
|
+
([@mikemimik](https://github.com/mikemimik))
|
|
286
|
+
* [#613](https://github.com/npm/cli/issues/613) Fixes bin entry for package
|
|
287
|
+
|
|
288
|
+
## 6.13.6 (2020-01-09)
|
|
289
|
+
|
|
290
|
+
### DEPENDENCIES
|
|
291
|
+
|
|
292
|
+
* [`6dba897a1`](https://github.com/npm/cli/commit/6dba897a1e2d56388fb6df0c814b0bb85af366b4)
|
|
293
|
+
`pacote@9.5.12`:
|
|
294
|
+
* [`d2f4176`](https://github.com/npm/pacote/commit/d2f4176b6af393d7e29de27e9b638dbcbab9a0c7)
|
|
295
|
+
fix(git): Do not drop uid/gid when executing in root-owned directory
|
|
296
|
+
([@isaacs](https://github.com/isaacs))
|
|
297
|
+
|
|
298
|
+
## 6.13.5 (2020-01-09)
|
|
299
|
+
|
|
300
|
+
### BUG FIXES
|
|
301
|
+
|
|
302
|
+
* [`fd0a802ec`](https://github.com/npm/cli/commit/fd0a802ec468ec7b98d6c15934c355fef0e7ff60) [#550](https://github.com/npm/cli/pull/550) Fix cache location for `npm ci` ([@zhenyavinogradov](https://github.com/zhenyavinogradov))
|
|
303
|
+
* [`4b30f3cca`](https://github.com/npm/cli/commit/4b30f3ccaebf50d6ab3bad130ff94827c017cc16) [#648](https://github.com/npm/cli/pull/648) fix(version): using 'allow-same-version', git commit --allow-empty and git tag -f ([@rhengles](https://github.com/rhengles))
|
|
304
|
+
|
|
305
|
+
### TESTING
|
|
306
|
+
|
|
307
|
+
* [`e16f68d30`](https://github.com/npm/cli/commit/e16f68d30d59ce1ddde9fe62f7681b2c07fce84d) test(ci): add failing cache config test ([@ruyadorno](https://github.com/ruyadorno))
|
|
308
|
+
* [`3f009fbf2`](https://github.com/npm/cli/commit/3f009fbf2c42f68c5127efecc6e22db105a74fe0) [#659](https://github.com/npm/cli/pull/659) test: fix bin-overwriting test on Windows ([@isaacs](https://github.com/isaacs))
|
|
309
|
+
* [`43ae0791f`](https://github.com/npm/cli/commit/43ae0791f74f68e02850201a64a6af693657b241) [#601](https://github.com/npm/cli/pull/601) ci: Allow builds to run even if one fails ([@XhmikosR](https://github.com/XhmikosR))
|
|
310
|
+
* [`4a669bee4`](https://github.com/npm/cli/commit/4a669bee4ac54c70adc6979d45cd0605b6dc33fd) [#603](https://github.com/npm/cli/pull/603) Remove the unused appveyor.yml ([@XhmikosR](https://github.com/XhmikosR))
|
|
311
|
+
* [`9295046ac`](https://github.com/npm/cli/commit/9295046ac92bbe82f4d84e1ec90cc81d3b80bfc7) [#600](https://github.com/npm/cli/pull/600) ci: switch to `actions/checkout@v2` ([@XhmikosR](https://github.com/XhmikosR))
|
|
312
|
+
|
|
313
|
+
### DOCUMENTATION
|
|
314
|
+
|
|
315
|
+
* [`f2d770ac7`](https://github.com/npm/cli/commit/f2d770ac768ea84867772b90a3c9acbdd0c1cb6a) [#569](https://github.com/npm/cli/pull/569) fix netlify publish path config ([@claudiahdz](https://github.com/claudiahdz))
|
|
316
|
+
* [`462cf0983`](https://github.com/npm/cli/commit/462cf0983dbc18a3d93f77212ca69f878060b2ec) [#627](https://github.com/npm/cli/pull/627) update gatsby dependencies ([@felixonmars](https://github.com/felixonmars))
|
|
317
|
+
* [`6fb5dbb72`](https://github.com/npm/cli/commit/6fb5dbb7213c4c050c9a47a7d5131447b8b7dcc8)
|
|
318
|
+
[#532](https://github.com/npm/cli/pull/532) docs: clarify usage of global prefix ([@jgehrcke](https://github.com/jgehrcke))
|
|
319
|
+
|
|
320
|
+
## 6.13.4 (2019-12-11)
|
|
321
|
+
|
|
322
|
+
## BUGFIXES
|
|
323
|
+
|
|
324
|
+
* [`320ac9aee`](https://github.com/npm/cli/commit/320ac9aeeafd11bb693c53b31148b8d10c4165e8)
|
|
325
|
+
[npm/bin-links#12](https://github.com/npm/bin-links/pull/12)
|
|
326
|
+
[npm/gentle-fs#7](https://github.com/npm/gentle-fs/pull/7)
|
|
327
|
+
Do not remove global bin/man links inappropriately
|
|
328
|
+
([@isaacs](https://github.com/isaacs))
|
|
329
|
+
|
|
330
|
+
## DEPENDENCIES
|
|
331
|
+
|
|
332
|
+
* [`52fd21061`](https://github.com/npm/cli/commit/52fd21061ff8b1a73429294620ffe5ebaaa60d3e)
|
|
333
|
+
`gentle-fs@2.3.0`
|
|
334
|
+
([@isaacs](https://github.com/isaacs))
|
|
335
|
+
* [`d06f5c0b0`](https://github.com/npm/cli/commit/d06f5c0b0611c43b6e70ded92af24fa5d83a0f48)
|
|
336
|
+
`bin-links@1.1.6`
|
|
337
|
+
([@isaacs](https://github.com/isaacs))
|
|
338
|
+
|
|
339
|
+
## 6.13.3 (2019-12-09)
|
|
340
|
+
|
|
341
|
+
### DEPENDENCIES
|
|
342
|
+
|
|
343
|
+
* [`19ce061a2`](https://github.com/npm/cli/commit/19ce061a2ee165d8de862c8f0f733c222846b9e1)
|
|
344
|
+
`bin-links@1.1.5` Properly normalize, sanitize, and verify `bin` entries
|
|
345
|
+
in `package.json`.
|
|
346
|
+
* [`59c836aae`](https://github.com/npm/cli/commit/59c836aae8d0104a767e80c540b963c91774012a)
|
|
347
|
+
`npm-packlist@1.4.7`
|
|
348
|
+
* [`fb4ecd7d2`](https://github.com/npm/cli/commit/fb4ecd7d2810b0b4897daaf081a5e2f3f483b310)
|
|
349
|
+
`pacote@9.5.11`
|
|
350
|
+
* [`5f33040`](https://github.com/npm/pacote/commit/5f3304028b6985fd380fc77c4840ff12a4898301)
|
|
351
|
+
[#476](https://github.com/npm/cli/issues/476)
|
|
352
|
+
[npm/pacote#22](https://github.com/npm/pacote/issues/22)
|
|
353
|
+
[npm/pacote#14](https://github.com/npm/pacote/issues/14) fix: Do not
|
|
354
|
+
drop perms in git when not root ([isaacs](https://github.com/isaacs),
|
|
355
|
+
[@darcyclarke](https://github.com/darcyclarke))
|
|
356
|
+
* [`6f229f7`](https://github.com/npm/pacote/6f229f78d9911b4734f0a19c6afdc5454034c759)
|
|
357
|
+
sanitize and normalize package bin field
|
|
358
|
+
([isaacs](https://github.com/isaacs))
|
|
359
|
+
* [`1743cb339`](https://github.com/npm/cli/commit/1743cb339767e86431dcd565c7bdb0aed67b293d)
|
|
360
|
+
`read-package-json@2.1.1`
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
## 6.13.2 (2019-12-03)
|
|
364
|
+
|
|
365
|
+
### BUG FIXES
|
|
366
|
+
|
|
367
|
+
* [`4429645b3`](https://github.com/npm/cli/commit/4429645b3538e1cda54d8d1b7ecb3da7a88fdd3c)
|
|
368
|
+
[#546](https://github.com/npm/cli/pull/546)
|
|
369
|
+
fix docs target typo
|
|
370
|
+
([@richardlau](https://github.com/richardlau))
|
|
371
|
+
* [`867642942`](https://github.com/npm/cli/commit/867642942bec69bb9ab71cff1914fb6a9fe67de8)
|
|
372
|
+
[#142](https://github.com/npm/cli/pull/142)
|
|
373
|
+
fix(packageRelativePath): fix 'where' for file deps
|
|
374
|
+
([@larsgw](https://github.com/larsgw))
|
|
375
|
+
* [`d480f2c17`](https://github.com/npm/cli/commit/d480f2c176e6976b3cca3565e4c108b599b0379b)
|
|
376
|
+
[#527](https://github.com/npm/cli/pull/527)
|
|
377
|
+
Revert "windows: Add preliminary WSL support for npm and npx"
|
|
378
|
+
([@craigloewen-msft](https://github.com/craigloewen-msft))
|
|
379
|
+
* [`e4b97962e`](https://github.com/npm/cli/commit/e4b97962e5fce0d49beb541ce5a0f96aee0525de)
|
|
380
|
+
[#504](https://github.com/npm/cli/pull/504)
|
|
381
|
+
remove unnecessary package.json read when reading shrinkwrap
|
|
382
|
+
([@Lighting-Jack](https://github.com/Lighting-Jack))
|
|
383
|
+
* [`1c65d26ac`](https://github.com/npm/cli/commit/1c65d26ac9f10ac0037094c207d216fbf0e969bf)
|
|
384
|
+
[#501](https://github.com/npm/cli/pull/501)
|
|
385
|
+
fix(fund): open url for string shorthand
|
|
386
|
+
([@ruyadorno](https://github.com/ruyadorno))
|
|
387
|
+
* [`ae7afe565`](https://github.com/npm/cli/commit/ae7afe56504dbffabf9f73d55b6dac1e3e9fed4a)
|
|
388
|
+
[#263](https://github.com/npm/cli/pull/263)
|
|
389
|
+
Don't log error message if git tagging is disabled
|
|
390
|
+
([@woppa684](https://github.com/woppa684))
|
|
391
|
+
* [`4c1b16f6a`](https://github.com/npm/cli/commit/4c1b16f6aecaf78956b9335734cfde2ac076ee11)
|
|
392
|
+
[#182](https://github.com/npm/cli/pull/182)
|
|
393
|
+
Warn the user that it is uninstalling npm-install
|
|
394
|
+
([@Hoidberg](https://github.com/Hoidberg))
|
|
395
|
+
|
|
396
|
+
## 6.13.1 (2019-11-18)
|
|
397
|
+
|
|
398
|
+
### BUG FIXES
|
|
399
|
+
|
|
400
|
+
* [`938d6124d`](https://github.com/npm/cli/commit/938d6124d6d15d96b5a69d0ae32ef59fceb8ceab)
|
|
401
|
+
[#472](https://github.com/npm/cli/pull/472)
|
|
402
|
+
fix(fund): support funding string shorthand
|
|
403
|
+
([@ruyadorno](https://github.com/ruyadorno))
|
|
404
|
+
* [`b49c5535b`](https://github.com/npm/cli/commit/b49c5535b7c41729a8d167b035924c3c66b36de0)
|
|
405
|
+
[#471](https://github.com/npm/cli/pull/471)
|
|
406
|
+
should not publish tap-snapshot folder
|
|
407
|
+
([@ruyadorno](https://github.com/ruyadorno))
|
|
408
|
+
* [`3471d5200`](https://github.com/npm/cli/commit/3471d5200217bfa612b1a262e36c9c043a52eb09)
|
|
409
|
+
[#253](https://github.com/npm/cli/pull/253)
|
|
410
|
+
Add preliminary WSL support for npm and npx
|
|
411
|
+
([@infinnie](https://github.com/infinnie))
|
|
412
|
+
* [`3ef295f23`](https://github.com/npm/cli/commit/3ef295f23ee1b2300abf13ec19e935c47a455179)
|
|
413
|
+
[#486](https://github.com/npm/cli/pull/486)
|
|
414
|
+
print quick audit report for human output
|
|
415
|
+
([@isaacs](https://github.com/isaacs))
|
|
416
|
+
|
|
417
|
+
### TESTING
|
|
418
|
+
|
|
419
|
+
* [`dbbf977ac`](https://github.com/npm/cli/commit/dbbf977acd1e74bcdec859c562ea4a2bc0536442)
|
|
420
|
+
[#278](https://github.com/npm/cli/pull/278)
|
|
421
|
+
added workflow to trigger and run benchmarks
|
|
422
|
+
([@mikemimik](https://github.com/mikemimik))
|
|
423
|
+
* [`b4f5e3825`](https://github.com/npm/cli/commit/b4f5e3825535256aaada09c5e8f104570a3d96a4)
|
|
424
|
+
[#457](https://github.com/npm/cli/pull/457)
|
|
425
|
+
feat(docs): adding tests and updating docs to reflect changes in registry teams API.
|
|
426
|
+
([@nomadtechie](https://github.com/nomadtechie))
|
|
427
|
+
* [`454c7dd60`](https://github.com/npm/cli/commit/454c7dd60c78371bf606f11a17ed0299025bc37c)
|
|
428
|
+
[#456](https://github.com/npm/cli/pull/456)
|
|
429
|
+
fix git configs for git 2.23 and above
|
|
430
|
+
([@isaacs](https://github.com/isaacs))
|
|
431
|
+
|
|
432
|
+
### DOCUMENTATION
|
|
433
|
+
|
|
434
|
+
* [`b8c1576a4`](https://github.com/npm/cli/commit/b8c1576a448566397c721655b95fc90bf202b35a) [`30b013ae8`](https://github.com/npm/cli/commit/30b013ae8eacd04b1b8a41ce2ed0dd50c8ebae25) [`26c1b2ef6`](https://github.com/npm/cli/commit/26c1b2ef6be1595d28d935d35faa8ec72daae544) [`9f943a765`](https://github.com/npm/cli/commit/9f943a765faf6ebb8a442e862b808dbb630e018d) [`c0346b158`](https://github.com/npm/cli/commit/c0346b158fc25ab6ca9954d4dd78d9e62f573a41) [`8e09d5ad6`](https://github.com/npm/cli/commit/8e09d5ad67d4f142241193cecbce61c659389be3) [`4a2f551ee`](https://github.com/npm/cli/commit/4a2f551eeb3285f6f200534da33644789715a41a) [`87d67258c`](https://github.com/npm/cli/commit/87d67258c213d9ea9a49ce1804294a718f08ff13) [`5c3b32722`](https://github.com/npm/cli/commit/5c3b3272234764c8b4d2d798b69af077b5a529c7) [`b150eaeff`](https://github.com/npm/cli/commit/b150eaeff428180bfa03be53fd741d5625897758) [`7555a743c`](https://github.com/npm/cli/commit/7555a743ce4c3146d6245dd63f91503c7f439a6c) [`b89423e2f`](https://github.com/npm/cli/commit/b89423e2f6a09b290b15254e7ff7e8033b434d83)
|
|
435
|
+
[#463](https://github.com/npm/cli/pull/463)
|
|
436
|
+
[#285](https://github.com/npm/cli/pull/285)
|
|
437
|
+
[#268](https://github.com/npm/cli/pull/268)
|
|
438
|
+
[#232](https://github.com/npm/cli/pull/232)
|
|
439
|
+
[#485](https://github.com/npm/cli/pull/485)
|
|
440
|
+
[#453](https://github.com/npm/cli/pull/453)
|
|
441
|
+
docs cleanup: typos, styling and content
|
|
442
|
+
([@claudiahdz](https://github.com/claudiahdz))
|
|
443
|
+
([@XhmikosR](https://github.com/XhmikosR))
|
|
444
|
+
([@mugli](https://github.com/mugli))
|
|
445
|
+
([@brettz9](https://github.com/brettz9))
|
|
446
|
+
([@mkotsollaris](https://github.com/mkotsollaris))
|
|
447
|
+
|
|
448
|
+
### DEPENDENCIES
|
|
449
|
+
|
|
450
|
+
* [`661d86cd2`](https://github.com/npm/cli/commit/661d86cd229b14ddf687b7f25a66941a79d233e7)
|
|
451
|
+
`make-fetch-happen@5.0.2`
|
|
452
|
+
([@claudiahdz](https://github.com/claudiahdz))
|
|
453
|
+
|
|
454
|
+
## 6.13.0 (2019-11-05)
|
|
455
|
+
|
|
456
|
+
### NEW FEATURES
|
|
457
|
+
|
|
458
|
+
* [`4414b06d9`](https://github.com/npm/cli/commit/4414b06d944c56bee05ccfb85260055a767ee334)
|
|
459
|
+
[#273](https://github.com/npm/cli/pull/273)
|
|
460
|
+
add fund command
|
|
461
|
+
([@ruyadorno](https://github.com/ruyadorno))
|
|
462
|
+
|
|
463
|
+
### DOCUMENTATION
|
|
464
|
+
|
|
465
|
+
* [`ae4c74d04`](https://github.com/npm/cli/commit/ae4c74d04f820a0255a92bdfe77ecf97af134fae)
|
|
466
|
+
[#274](https://github.com/npm/cli/pull/274)
|
|
467
|
+
migrate existing docs to gatsby
|
|
468
|
+
([@claudiahdz](https://github.com/claudiahdz))
|
|
469
|
+
* [`4ff1bb180`](https://github.com/npm/cli/commit/4ff1bb180b1db8c72e51b3d57bd4e268b738e049)
|
|
470
|
+
[#277](https://github.com/npm/cli/pull/277)
|
|
471
|
+
updated documentation copy
|
|
472
|
+
([@oletizi](https://github.com/oletizi))
|
|
473
|
+
|
|
474
|
+
### BUG FIXES
|
|
475
|
+
|
|
476
|
+
* [`e4455409f`](https://github.com/npm/cli/commit/e4455409fe6fe9c198b250b488129171f0b4624a)
|
|
477
|
+
[#281](https://github.com/npm/cli/pull/281)
|
|
478
|
+
delete ps1 files on package removal
|
|
479
|
+
([@NoDocCat](https://github.com/NoDocCat))
|
|
480
|
+
* [`cd14d4701`](https://github.com/npm/cli/commit/cd14d47014e8c96ffd6a18791e8752028b19d637)
|
|
481
|
+
[#279](https://github.com/npm/cli/pull/279)
|
|
482
|
+
update supported node list to remove v6.0, v6.1, v9.0 - v9.2
|
|
483
|
+
([@ljharb](https://github.com/ljharb))
|
|
484
|
+
|
|
485
|
+
### DEPENDENCIES
|
|
486
|
+
|
|
487
|
+
* [`a37296b20`](https://github.com/npm/cli/commit/a37296b20ca3e19c2bbfa78fedcfe695e03fda69)
|
|
488
|
+
`pacote@9.5.9`
|
|
489
|
+
* [`d3cb3abe8`](https://github.com/npm/cli/commit/d3cb3abe8cee54bd2624acdcf8043932ef0d660a)
|
|
490
|
+
`read-cmd-shim@1.0.5`
|
|
491
|
+
|
|
492
|
+
### TESTING
|
|
493
|
+
|
|
494
|
+
* [`688cd97be`](https://github.com/npm/cli/commit/688cd97be94ca949719424ff69ff515a68c5caba)
|
|
495
|
+
[#272](https://github.com/npm/cli/pull/272)
|
|
496
|
+
use github actions for CI
|
|
497
|
+
([@JasonEtco](https://github.com/JasonEtco))
|
|
498
|
+
* [`9a2d8af84`](https://github.com/npm/cli/commit/9a2d8af84f7328f13d8f578cf4b150b9d5f09517)
|
|
499
|
+
[#240](https://github.com/npm/cli/pull/240)
|
|
500
|
+
Clean up some flakiness and inconsistency
|
|
501
|
+
([@isaacs](https://github.com/isaacs))
|
|
502
|
+
|
|
503
|
+
## 6.12.1 (2019-10-29)
|
|
504
|
+
|
|
505
|
+
### BUG FIXES
|
|
506
|
+
|
|
507
|
+
* [`6508e833d`](https://github.com/npm/cli/commit/6508e833df35a3caeb2b496f120ce67feff306b6)
|
|
508
|
+
[#269](https://github.com/npm/cli/pull/269)
|
|
509
|
+
add node v13 as a supported version
|
|
510
|
+
([@ljharb](https://github.com/ljharb))
|
|
511
|
+
* [`b6588a8f7`](https://github.com/npm/cli/commit/b6588a8f74fb8b1ad103060b73c4fd5174b1d1f6)
|
|
512
|
+
[#265](https://github.com/npm/cli/pull/265)
|
|
513
|
+
Fix regression in lockfile repair for sub-deps
|
|
514
|
+
([@feelepxyz](https://github.com/feelepxyz))
|
|
515
|
+
* [`d5dfe57a1`](https://github.com/npm/cli/commit/d5dfe57a1d810fe7fd64edefc976633ee3a4da53)
|
|
516
|
+
[#266](https://github.com/npm/cli/pull/266)
|
|
517
|
+
resolve circular dependency in pack.js
|
|
518
|
+
([@addaleax](https://github.com/addaleax))
|
|
519
|
+
|
|
520
|
+
### DEPENDENCIES
|
|
521
|
+
|
|
522
|
+
* [`73678bb59`](https://github.com/npm/cli/commit/73678bb590a8633c3bdbf72e08f1279f9e17fd28)
|
|
523
|
+
`chownr@1.1.3`
|
|
524
|
+
* [`4b76926e2`](https://github.com/npm/cli/commit/4b76926e2058ef30ab1d5e2541bb96d847653417)
|
|
525
|
+
`graceful-fs@4.2.3`
|
|
526
|
+
* [`c691f36a9`](https://github.com/npm/cli/commit/c691f36a9c108b6267859fe61e4a38228b190c17)
|
|
527
|
+
`libcipm@4.0.7`
|
|
528
|
+
* [`5e1a14975`](https://github.com/npm/cli/commit/5e1a14975311bfdc43df8e1eb317ae5690ee580c)
|
|
529
|
+
`npm-packlist@1.4.6`
|
|
530
|
+
* [`c194482d6`](https://github.com/npm/cli/commit/c194482d65ee81a5a0a6281c7a9f984462286c56)
|
|
531
|
+
`npm-registry-fetch@4.0.2`
|
|
532
|
+
* [`bc6a8e0ec`](https://github.com/npm/cli/commit/bc6a8e0ec966281e49b1dc66f9c641ea661ab7a6)
|
|
533
|
+
`tar@4.4.1`
|
|
534
|
+
* [`4dcca3cbb`](https://github.com/npm/cli/commit/4dcca3cbb161da1f261095d9cdd26e1fbb536a8d)
|
|
535
|
+
`uuid@3.3.3`
|
|
536
|
+
|
|
537
|
+
## 6.12.0 (2019-10-08):
|
|
538
|
+
|
|
539
|
+
Now `npm ci` runs prepare scripts for git dependencies, and respects the
|
|
540
|
+
`--no-optional` argument. Warnings for `engine` mismatches are printed
|
|
541
|
+
again. Various other fixes and cleanups.
|
|
542
|
+
|
|
543
|
+
### BUG FIXES
|
|
544
|
+
|
|
545
|
+
* [`890b245dc`](https://github.com/npm/cli/commit/890b245dc1f609590d8ab993fac7cf5a37ed46a5)
|
|
546
|
+
[#252](https://github.com/npm/cli/pull/252) ci: add dirPacker to options
|
|
547
|
+
([@claudiahdz](https://github.com/claudiahdz))
|
|
548
|
+
* [`f3299acd0`](https://github.com/npm/cli/commit/f3299acd0b4249500e940776aca77cc6c0977263)
|
|
549
|
+
[#257](https://github.com/npm/cli/pull/257)
|
|
550
|
+
[npm.community#4792](https://npm.community/t/engines-and-engines-strict-ignored/4792)
|
|
551
|
+
warn message on engine mismatch
|
|
552
|
+
([@ruyadorno](https://github.com/ruyadorno))
|
|
553
|
+
* [`bbc92fb8f`](https://github.com/npm/cli/commit/bbc92fb8f3478ff67071ebaff551f01c1ea42ced)
|
|
554
|
+
[#259](https://github.com/npm/cli/pull/259)
|
|
555
|
+
[npm.community#10288](https://npm.community/t/npm-token-err-figgypudding-options-cannot-be-modified-use-concat-instead/10288)
|
|
556
|
+
Fix figgyPudding error in `npm token`
|
|
557
|
+
([@benblank](https://github.com/benblank))
|
|
558
|
+
* [`70f54dcb5`](https://github.com/npm/cli/commit/70f54dcb5693b301c6b357922b7e8d16b57d8b00)
|
|
559
|
+
[#241](https://github.com/npm/cli/pull/241) doctor: Make OK more
|
|
560
|
+
consistent ([@gemal](https://github.com/gemal))
|
|
561
|
+
|
|
562
|
+
### FEATURES
|
|
563
|
+
|
|
564
|
+
* [`ed993a29c`](https://github.com/npm/cli/commit/ed993a29ccf923425317c433844d55dbea2f23ee)
|
|
565
|
+
[#249](https://github.com/npm/cli/pull/249) Add CI environment variables
|
|
566
|
+
to user-agent ([@isaacs](https://github.com/isaacs))
|
|
567
|
+
* [`f6b0459a4`](https://github.com/npm/cli/commit/f6b0459a466a2c663dbd549cdc331e7732552dca)
|
|
568
|
+
[#248](https://github.com/npm/cli/pull/248) Add option to save
|
|
569
|
+
package-lock without formatting Adds a new config
|
|
570
|
+
`--format-package-lock`, which defaults to true.
|
|
571
|
+
([@bl00mber](https://github.com/bl00mber))
|
|
572
|
+
|
|
573
|
+
### DEPENDENCIES
|
|
574
|
+
|
|
575
|
+
* [`0ca063c5d`](https://github.com/npm/cli/commit/0ca063c5dc961c4aa17373f4b33fb54c51c8c8d6)
|
|
576
|
+
`npm-lifecycle@3.1.4`:
|
|
577
|
+
- fix: filter functions and undefined out of makeEnv
|
|
578
|
+
([@isaacs](https://github.com/isaacs))
|
|
579
|
+
* [`5df6b0ea2`](https://github.com/npm/cli/commit/5df6b0ea2e3106ba65bba649cc8d7f02f4738236)
|
|
580
|
+
`libcipm@4.0.4`:
|
|
581
|
+
- fix: pack git directories properly
|
|
582
|
+
([@claudiahdz](https://github.com/claudiahdz))
|
|
583
|
+
- respect no-optional argument
|
|
584
|
+
([@cruzdanilo](https://github.com/cruzdanilo))
|
|
585
|
+
* [`7e04f728c`](https://github.com/npm/cli/commit/7e04f728cc4cd4853a8fc99e2df0a12988897589)
|
|
586
|
+
`tar@4.4.12`
|
|
587
|
+
* [`5c380e5a3`](https://github.com/npm/cli/commit/5c380e5a33d760bb66a4285b032ae5f50af27199)
|
|
588
|
+
`stringify-package@1.0.1` ([@isaacs](https://github.com/isaacs))
|
|
589
|
+
* [`62f2ca692`](https://github.com/npm/cli/commit/62f2ca692ac0c0467ef4cf74f91777a5175258c4)
|
|
590
|
+
`node-gyp@5.0.5` ([@isaacs](https://github.com/isaacs))
|
|
591
|
+
* [`0ff0ea47a`](https://github.com/npm/cli/commit/0ff0ea47a8840dd7d952bde7f7983a5016cda8ea)
|
|
592
|
+
`npm-install-checks@3.0.2` ([@isaacs](https://github.com/isaacs))
|
|
593
|
+
* [`f46edae94`](https://github.com/npm/cli/commit/f46edae9450b707650a0efab09aa1e9295a18070)
|
|
594
|
+
`hosted-git-info@2.8.5` ([@isaacs](https://github.com/isaacs))
|
|
595
|
+
|
|
596
|
+
### TESTING
|
|
597
|
+
|
|
598
|
+
* [`44a2b036b`](https://github.com/npm/cli/commit/44a2b036b34324ec85943908264b2e36de5a9435)
|
|
599
|
+
[#262](https://github.com/npm/cli/pull/262) fix root-ownership race
|
|
600
|
+
conditions in meta-test ([@isaacs](https://github.com/isaacs))
|
|
601
|
+
|
|
602
|
+
## 6.11.3 (2019-09-03):
|
|
603
|
+
|
|
604
|
+
Fix npm ci regressions and npm outdated depth.
|
|
605
|
+
|
|
606
|
+
### BUG FIXES
|
|
607
|
+
|
|
608
|
+
* [`235ed1d28`](https://github.com/npm/cli/commit/235ed1d2838ef302bb995e183980209d16c51b9b)
|
|
609
|
+
[#239](https://github.com/npm/cli/pull/239)
|
|
610
|
+
Don't override user specified depth in outdated
|
|
611
|
+
Restores ability to update packages using `--depth` as suggested by `npm audit`.
|
|
612
|
+
([@G-Rath](https://github.com/G-Rath))
|
|
613
|
+
* [`1fafb5151`](https://github.com/npm/cli/commit/1fafb51513466cd793866b576dfea9a8963a3335)
|
|
614
|
+
[#242](https://github.com/npm/cli/pull/242)
|
|
615
|
+
[npm.community#9586](https://npm.community/t/6-11-1-some-dependencies-are-no-longer-being-installed/9586/4)
|
|
616
|
+
Revert "install: do not descend into directory deps' child modules"
|
|
617
|
+
([@isaacs](https://github.com/isaacs))
|
|
618
|
+
* [`cebf542e6`](https://github.com/npm/cli/commit/cebf542e61dcabdd2bd3b876272bf8eebf7d01cc)
|
|
619
|
+
[#243](https://github.com/npm/cli/pull/243)
|
|
620
|
+
[npm.community#9720](https://npm.community/t/6-11-2-npm-ci-installs-package-with-wrong-permissions/9720)
|
|
621
|
+
ci: pass appropriate configs for file/dir modes
|
|
622
|
+
([@isaacs](https://github.com/isaacs))
|
|
623
|
+
|
|
624
|
+
### DEPENDENCIES
|
|
625
|
+
|
|
626
|
+
* [`e5fbb7ed1`](https://github.com/npm/cli/commit/e5fbb7ed1fc7ef5c6ca4790e2d0dc441e0ac1596)
|
|
627
|
+
`read-cmd-shim@1.0.4`
|
|
628
|
+
([@claudiahdz](https://github.com/claudiahdz))
|
|
629
|
+
* [`23ce65616`](https://github.com/npm/cli/commit/23ce65616c550647c586f7babc3c2f60115af2aa)
|
|
630
|
+
`npm-pick-manifest@3.0.2`
|
|
631
|
+
([@claudiahdz](https://github.com/claudiahdz))
|
|
632
|
+
|
|
633
|
+
## 6.11.2 (2019-08-22):
|
|
634
|
+
|
|
635
|
+
Fix a recent Windows regression, and two long-standing Windows bugs. Also,
|
|
636
|
+
get CI running on Windows, so these things are less likely in the future.
|
|
637
|
+
|
|
638
|
+
### DEPENDENCIES
|
|
639
|
+
|
|
640
|
+
* [`9778a1b87`](https://github.com/npm/cli/commit/9778a1b878aaa817af6e99385e7683c2a389570d)
|
|
641
|
+
`cmd-shim@3.0.3`: Fix regression where shims fail to preserve exit code
|
|
642
|
+
([@isaacs](https://github.com/isaacs))
|
|
643
|
+
* [`bf93e91d8`](https://github.com/npm/cli/commit/bf93e91d879c816a055d5913e6e4210d7299f299)
|
|
644
|
+
`npm-package-arg@6.1.1`: Properly handle git+file: urls on Windows when a
|
|
645
|
+
drive letter is included. ([@isaacs](https://github.com/isaacs))
|
|
646
|
+
|
|
647
|
+
### BUGFIXES
|
|
648
|
+
|
|
649
|
+
* [`6cc4cc66f`](https://github.com/npm/cli/commit/6cc4cc66f1fb050dc4113e35cab59197fd48e04a)
|
|
650
|
+
escape args properly on Windows Bash Despite being bash, Node.js running
|
|
651
|
+
on windows git mingw bash still executes child processes using cmd.exe.
|
|
652
|
+
As a result, arguments in this environment need to be escaped in the
|
|
653
|
+
style of cmd.exe, not bash. ([@isaacs](https://github.com/isaacs))
|
|
654
|
+
|
|
655
|
+
### TESTS
|
|
656
|
+
|
|
657
|
+
* [`291aba7b8`](https://github.com/npm/cli/commit/291aba7b821e247b96240b1ec037310ead69a594)
|
|
658
|
+
make tests pass on Windows ([@isaacs](https://github.com/isaacs))
|
|
659
|
+
* [`fea3a023a`](https://github.com/npm/cli/commit/fea3a023a80863f32a5f97f5132401b1a16161b8)
|
|
660
|
+
travis: run tests on Windows as well
|
|
661
|
+
([@isaacs](https://github.com/isaacs))
|
|
662
|
+
|
|
663
|
+
## 6.11.1 (2019-08-20):
|
|
664
|
+
|
|
665
|
+
Fix a regression for windows command shim syntax.
|
|
666
|
+
|
|
667
|
+
* [`37db29647`](https://github.com/npm/cli/commit/37db2964710c80003604b7e3c1527d17be7ed3d0)
|
|
668
|
+
`cmd-shim@3.0.2` ([@isaacs](https://github.com/isaacs))
|
|
669
|
+
|
|
670
|
+
## v6.11.0 (2019-08-20):
|
|
671
|
+
|
|
672
|
+
A few meaty bugfixes, and introducing `peerDependenciesMeta`.
|
|
673
|
+
|
|
674
|
+
### FEATURES
|
|
675
|
+
|
|
676
|
+
* [`a12341088`](https://github.com/npm/cli/commit/a12341088820c0e7ef6c1c0db3c657f0c2b3943e)
|
|
677
|
+
[#224](https://github.com/npm/cli/pull/224) Implements
|
|
678
|
+
peerDependenciesMeta ([@arcanis](https://github.com/arcanis))
|
|
679
|
+
* [`2f3b79bba`](https://github.com/npm/cli/commit/2f3b79bbad820fd4a398aa494b19f79b7fd520a1)
|
|
680
|
+
[#234](https://github.com/npm/cli/pull/234) add new forbidden 403 error
|
|
681
|
+
code ([@claudiahdz](https://github.com/claudiahdz))
|
|
682
|
+
|
|
683
|
+
### BUGFIXES
|
|
684
|
+
|
|
685
|
+
* [`24acc9fc8`](https://github.com/npm/cli/commit/24acc9fc89d99d87cc66206c6c6f7cdc82fbf763)
|
|
686
|
+
and
|
|
687
|
+
[`45772af0d`](https://github.com/npm/cli/commit/45772af0ddca54b658cb2ba2182eec26d0a4729d)
|
|
688
|
+
[#217](https://github.com/npm/cli/pull/217)
|
|
689
|
+
[npm.community#8863](https://npm.community/t/installing-the-same-module-under-multiple-relative-paths-fails-on-linux/8863)
|
|
690
|
+
[npm.community#9327](https://npm.community/t/reinstall-breaks-after-npm-update-to-6-10-2/9327,)
|
|
691
|
+
do not descend into directory deps' child modules, fix shrinkwrap files
|
|
692
|
+
that inappropriately list child nodes of symlink packages
|
|
693
|
+
([@isaacs](https://github.com/isaacs) and
|
|
694
|
+
[@salomvary](https://github.com/salomvary))
|
|
695
|
+
* [`50cfe113d`](https://github.com/npm/cli/commit/50cfe113da5fcc59c1d99b0dcf1050ace45803c7)
|
|
696
|
+
[#229](https://github.com/npm/cli/pull/229) fixed typo in semver doc
|
|
697
|
+
([@gall0ws](https://github.com/gall0ws))
|
|
698
|
+
* [`e8fb2a1bd`](https://github.com/npm/cli/commit/e8fb2a1bd9785e0092e9926f4fd65ad431e38452)
|
|
699
|
+
[#231](https://github.com/npm/cli/pull/231) Fix spelling mistakes in
|
|
700
|
+
CHANGELOG-3.md ([@XhmikosR](https://github.com/XhmikosR))
|
|
701
|
+
* [`769d2e057`](https://github.com/npm/cli/commit/769d2e057daf5a2cbfe0ce86f02550e59825a691)
|
|
702
|
+
[npm/uid-number#7](https://github.com/npm/uid-number/issues/7) Better
|
|
703
|
+
error on invalid `--user`/`--group` configs. This addresses the issue
|
|
704
|
+
when people fail to install binary packages on Docker and other
|
|
705
|
+
environments where there is no 'nobody' user.
|
|
706
|
+
([@isaacs](https://github.com/isaacs))
|
|
707
|
+
* [`8b43c9624`](https://github.com/npm/cli/commit/8b43c962498c8e2707527e4fca442d7a4fa51595)
|
|
708
|
+
[nodejs/node#28987](https://github.com/nodejs/node/issues/28987)
|
|
709
|
+
[npm.community#6032](https://npm.community/t/npm-ci-doesnt-respect-npmrc-variables/6032)
|
|
710
|
+
[npm.community#6658](https://npm.community/t/npm-ci-doesnt-fill-anymore-the-process-env-npm-config-cache-variable-on-post-install-scripts/6658)
|
|
711
|
+
[npm.community#6069](https://npm.community/t/npm-ci-does-not-compile-native-dependencies-according-to-npmrc-configuration/6069)
|
|
712
|
+
[npm.community#9323](https://npm.community/t/npm-6-9-x-not-passing-environment-to-node-gyp-regression-from-6-4-x/9323/2)
|
|
713
|
+
Fix the regression where random config values in a .npmrc file are not
|
|
714
|
+
passed to lifecycle scripts, breaking build processes which rely on them.
|
|
715
|
+
([@isaacs](https://github.com/isaacs))
|
|
716
|
+
* [`8b85eaa47`](https://github.com/npm/cli/commit/8b85eaa47da3abaacc90fe23162a68cc6e1f0404)
|
|
717
|
+
save files with inferred ownership rather than relying on `SUDO_UID` and
|
|
718
|
+
`SUDO_GID`. ([@isaacs](https://github.com/isaacs))
|
|
719
|
+
* [`b7f6e5f02`](https://github.com/npm/cli/commit/b7f6e5f0285515087b4614d81db17206524c0fdb)
|
|
720
|
+
Infer ownership of shrinkwrap files
|
|
721
|
+
([@isaacs](https://github.com/isaacs))
|
|
722
|
+
* [`54b095d77`](https://github.com/npm/cli/commit/54b095d77b3b131622b3cf4cb5c689aa2dd10b6b)
|
|
723
|
+
[#235](https://github.com/npm/cli/pull/235) Add spec to dist-tag remove
|
|
724
|
+
function ([@theberbie](https://github.com/theberbie))
|
|
725
|
+
|
|
726
|
+
### DEPENDENCIES
|
|
727
|
+
|
|
728
|
+
* [`dc8f9e52f`](https://github.com/npm/cli/commit/dc8f9e52f0bb107c0a6b20cc0c97cbc3b056c1b3)
|
|
729
|
+
`pacote@9.5.7`: Infer the ownership of all unpacked files in
|
|
730
|
+
`node_modules`, so that we never have user-owned files in root-owned
|
|
731
|
+
folders, or root-owned files in user-owned folders.
|
|
732
|
+
([@isaacs](https://github.com/isaacs))
|
|
733
|
+
* [`bb33940c3`](https://github.com/npm/cli/commit/bb33940c32aad61704084e61ebd1bd8e7cacccc8)
|
|
734
|
+
`cmd-shim@3.0.0`:
|
|
735
|
+
* [`9c93ac3`](https://github.com/npm/cmd-shim/commit/9c93ac39e95b0d6ae852e842e4c5dba5e19687c2)
|
|
736
|
+
[#2](https://github.com/npm/cmd-shim/pull/2)
|
|
737
|
+
[npm#3380](https://github.com/npm/npm/issues/3380) Handle environment
|
|
738
|
+
variables properly ([@basbossink](https://github.com/basbossink))
|
|
739
|
+
* [`2d277f8`](https://github.com/npm/cmd-shim/commit/2d277f8e84d45401747b0b9470058f168b974ad5)
|
|
740
|
+
[#25](https://github.com/npm/cmd-shim/pull/25)
|
|
741
|
+
[#36](https://github.com/npm/cmd-shim/pull/36)
|
|
742
|
+
[#35](https://github.com/npm/cmd-shim/pull/35) Fix 'no shebang' case by
|
|
743
|
+
always providing `$basedir` in shell script
|
|
744
|
+
([@igorklopov](https://github.com/igorklopov))
|
|
745
|
+
* [`adaf20b`](https://github.com/npm/cmd-shim/commit/adaf20b7fa2c09c2111a2506c6a3e53ed0831f88)
|
|
746
|
+
[#26](https://github.com/npm/cmd-shim/pull/26) Fix `$*` causing an
|
|
747
|
+
error when arguments contain parentheses
|
|
748
|
+
([@satazor](https://github.com/satazor))
|
|
749
|
+
* [`49f0c13`](https://github.com/npm/cmd-shim/commit/49f0c1318fd384e0031c3fd43801f0e22e1e555f)
|
|
750
|
+
[#30](https://github.com/npm/cmd-shim/pull/30) Fix paths for MSYS/MINGW
|
|
751
|
+
bash ([@dscho](https://github.com/dscho))
|
|
752
|
+
* [`51a8af3`](https://github.com/npm/cmd-shim/commit/51a8af30990cb072cb30d67fc1b564b14746bba9)
|
|
753
|
+
[#34](https://github.com/npm/cmd-shim/pull/34) Add proper support for
|
|
754
|
+
PowerShell ([@ExE-Boss](https://github.com/ExE-Boss))
|
|
755
|
+
* [`4c37e04`](https://github.com/npm/cmd-shim/commit/4c37e048dee672237e8962fdffca28e20e9f976d)
|
|
756
|
+
[#10](https://github.com/npm/cmd-shim/issues/10) Work around quoted
|
|
757
|
+
batch file names ([@isaacs](https://github.com/isaacs))
|
|
758
|
+
* [`a4e279544`](https://github.com/npm/cli/commit/a4e279544f7983e0adff1e475e3760f1ea85825a)
|
|
759
|
+
`npm-lifecycle@3.1.3` ([@isaacs](https://github.com/isaacs)):
|
|
760
|
+
* fail properly if `uid-number` raises an error
|
|
761
|
+
* [`7086a1809`](https://github.com/npm/cli/commit/7086a1809bbfda9be81344b3949c7d3ac687ffc4)
|
|
762
|
+
`libcipm@4.0.3` ([@isaacs](https://github.com/isaacs))
|
|
763
|
+
* [`8845141f9`](https://github.com/npm/cli/commit/8845141f9d7827dae572c8cf26f2c775db905bd3)
|
|
764
|
+
`read-package-json@2.1.0` ([@isaacs](https://github.com/isaacs))
|
|
765
|
+
* [`51c028215`](https://github.com/npm/cli/commit/51c02821575d80035ebe853492d110db11a7d1b9)
|
|
766
|
+
`bin-links@1.1.3` ([@isaacs](https://github.com/isaacs))
|
|
767
|
+
* [`534a5548c`](https://github.com/npm/cli/commit/534a5548c9ebd59f0dd90e9ccca148ed8946efa6)
|
|
768
|
+
`read-cmd-shim@1.0.3` ([@isaacs](https://github.com/isaacs))
|
|
769
|
+
* [`3038f2fd5`](https://github.com/npm/cli/commit/3038f2fd5b1d7dd886ee72798241d8943690f508)
|
|
770
|
+
`gentle-fs@2.2.1` ([@isaacs](https://github.com/isaacs))
|
|
771
|
+
* [`a609a1648`](https://github.com/npm/cli/commit/a609a16489f76791697d270b499fd4949ab1f8c3)
|
|
772
|
+
`graceful-fs@4.2.2` ([@isaacs](https://github.com/isaacs))
|
|
773
|
+
* [`f0346f754`](https://github.com/npm/cli/commit/f0346f75490619a81b310bfc18646ae5ae2e0ea4)
|
|
774
|
+
`cacache@12.0.3` ([@isaacs](https://github.com/isaacs))
|
|
775
|
+
* [`ca9c615c8`](https://github.com/npm/cli/commit/ca9c615c8cff5c7db125735eb09f84d912d18694)
|
|
776
|
+
`npm-pick-manifest@3.0.0` ([@isaacs](https://github.com/isaacs))
|
|
777
|
+
* [`b417affbf`](https://github.com/npm/cli/commit/b417affbf7133dc7687fd809e4956a43eae3438a)
|
|
778
|
+
`pacote@9.5.8` ([@isaacs](https://github.com/isaacs))
|
|
779
|
+
|
|
780
|
+
### TESTS
|
|
781
|
+
|
|
782
|
+
* [`b6df0913c`](https://github.com/npm/cli/commit/b6df0913ca73246f1fa6cfa0e81e34ba5f2b6204)
|
|
783
|
+
[#228](https://github.com/npm/cli/pull/228) Proper handing of
|
|
784
|
+
/usr/bin/node lifecycle-path test
|
|
785
|
+
([@olivr70](https://github.com/olivr70))
|
|
786
|
+
* [`aaf98e88c`](https://github.com/npm/cli/commit/aaf98e88c78fd6c850d0a3d3ee2f61c02f63bc8c)
|
|
787
|
+
`npm-registry-mock@1.3.0` ([@isaacs](https://github.com/isaacs))
|
|
788
|
+
|
|
789
|
+
## v6.10.3 (2019-08-06):
|
|
790
|
+
|
|
791
|
+
### BUGFIXES
|
|
792
|
+
|
|
793
|
+
* [`27cccfbda`](https://github.com/npm/cli/commit/27cccfbdac8526cc807b07f416355949b1372a9b)
|
|
794
|
+
[#223](https://github.com/npm/cli/pull/223) vulns → vulnerabilities in
|
|
795
|
+
npm audit output ([@sapegin](https://github.com/sapegin))
|
|
796
|
+
* [`d5e865eb7`](https://github.com/npm/cli/commit/d5e865eb79329665a927cc2767b4395c03045dbb)
|
|
797
|
+
[#222](https://github.com/npm/cli/pull/222)
|
|
798
|
+
[#226](https://github.com/npm/cli/pull/226) install, doctor: don't crash
|
|
799
|
+
if registry unset ([@dmitrydvorkin](https://github.com/dmitrydvorkin),
|
|
800
|
+
[@isaacs](https://github.com/isaacs))
|
|
801
|
+
* [`5b3890226`](https://github.com/npm/cli/commit/5b389022652abeb0e1c278a152550eb95bc6c452)
|
|
802
|
+
[#227](https://github.com/npm/cli/pull/227)
|
|
803
|
+
[npm.community#9167](https://npm.community/t/npm-err-cb-never-called-permission-denied/9167/5)
|
|
804
|
+
Handle unhandledRejections, tell user what to do when encountering an
|
|
805
|
+
`EACCES` error in the cache. ([@isaacs](https://github.com/isaacs))
|
|
806
|
+
|
|
807
|
+
### DEPENDENCIES
|
|
808
|
+
|
|
809
|
+
* [`77516df6e`](https://github.com/npm/cli/commit/77516df6eac94a6d7acb5e9ca06feaa0868d779b)
|
|
810
|
+
`licensee@7.0.3` ([@isaacs](https://github.com/isaacs))
|
|
811
|
+
* [`ceb993590`](https://github.com/npm/cli/commit/ceb993590e4e376a9a78264ce7bb4327fbbb37fe)
|
|
812
|
+
`query-string@6.8.2` ([@isaacs](https://github.com/isaacs))
|
|
813
|
+
* [`4050b9189`](https://github.com/npm/cli/commit/4050b91898c60e9b22998cf82b70b9b822de592a)
|
|
814
|
+
`hosted-git-info@2.8.2`
|
|
815
|
+
* [#46](https://github.com/npm/hosted-git-info/issues/46)
|
|
816
|
+
[#43](https://github.com/npm/hosted-git-info/issues/43)
|
|
817
|
+
[#47](https://github.com/npm/hosted-git-info/pull/47)
|
|
818
|
+
[#44](https://github.com/npm/hosted-git-info/pull/44) Add support for
|
|
819
|
+
GitLab subgroups ([@mterrel](https://github.com/mterrel),
|
|
820
|
+
[@isaacs](https://github.com/isaacs),
|
|
821
|
+
[@ybiquitous](https://github.com/ybiquitous))
|
|
822
|
+
* [`3b1d629`](https://github.com/npm/hosted-git-info/commit/3b1d629)
|
|
823
|
+
[#48](https://github.com/npm/hosted-git-info/issues/48) fix http
|
|
824
|
+
protocol using sshurl by default
|
|
825
|
+
([@fengmk2](https://github.com/fengmk2))
|
|
826
|
+
* [`5d4a8d7`](https://github.com/npm/hosted-git-info/commit/5d4a8d7)
|
|
827
|
+
ignore noCommittish on tarball url generation
|
|
828
|
+
([@isaacs](https://github.com/isaacs))
|
|
829
|
+
* [`1692435`](https://github.com/npm/hosted-git-info/commit/1692435)
|
|
830
|
+
use gist tarball url that works for anonymous gists
|
|
831
|
+
([@isaacs](https://github.com/isaacs))
|
|
832
|
+
* [`d5cf830`](https://github.com/npm/hosted-git-info/commit/d5cf8309be7af884032616c63ea302ce49dd321c)
|
|
833
|
+
Do not allow invalid gist urls ([@isaacs](https://github.com/isaacs))
|
|
834
|
+
* [`e518222`](https://github.com/npm/hosted-git-info/commit/e5182224351183ce619dd5ef00019ae700ed37b7)
|
|
835
|
+
Use LRU cache to prevent unbounded memory consumption
|
|
836
|
+
([@iarna](https://github.com/iarna))
|
|
837
|
+
|
|
838
|
+
## v6.10.2 (2019-07-23):
|
|
839
|
+
|
|
840
|
+
tl;dr - Fixes several issues with the cache when npm is run as `sudo` on
|
|
841
|
+
Unix systems.
|
|
842
|
+
|
|
843
|
+
### TESTING
|
|
844
|
+
|
|
845
|
+
* [`2a78b96f8`](https://github.com/npm/cli/commit/2a78b96f830bbd834720ccc9eacccc54915ae6f7)
|
|
846
|
+
check test cache for root-owned files
|
|
847
|
+
([@isaacs](https://github.com/isaacs))
|
|
848
|
+
* [`108646ebc`](https://github.com/npm/cli/commit/108646ebc12f3eeebaa0a45884c45991a45e57e4)
|
|
849
|
+
run sudo tests on Travis-CI ([@isaacs](https://github.com/isaacs))
|
|
850
|
+
* [`cf984e946`](https://github.com/npm/cli/commit/cf984e946f453cbea2fcc7a59608de3f24ab74c3)
|
|
851
|
+
set --no-esm tap flag ([@isaacs](https://github.com/isaacs))
|
|
852
|
+
* [`8e0a3100d`](https://github.com/npm/cli/commit/8e0a3100dffb3965bb3dc4240e82980dfadf2f3c)
|
|
853
|
+
add script to run tests and leave fixtures for inspection and debugging
|
|
854
|
+
([@isaacs](https://github.com/isaacs))
|
|
855
|
+
|
|
856
|
+
### BUGFIXES
|
|
857
|
+
|
|
858
|
+
* [`25f4f73f6`](https://github.com/npm/cli/commit/25f4f73f6dc9744757787c82351120cd1baee5f8)
|
|
859
|
+
add a util for writing arbitrary files to cache This prevents metrics
|
|
860
|
+
timing and debug logs from becoming root-owned.
|
|
861
|
+
([@isaacs](https://github.com/isaacs))
|
|
862
|
+
* [`2c61ce65d`](https://github.com/npm/cli/commit/2c61ce65d6b67100fdf3fcb9729055b669cb1a1d)
|
|
863
|
+
infer cache owner from parent dir in `correct-mkdir` util
|
|
864
|
+
([@isaacs](https://github.com/isaacs))
|
|
865
|
+
* [`235e5d6df`](https://github.com/npm/cli/commit/235e5d6df6f427585ec58425f1f3339d08f39d8a)
|
|
866
|
+
ensure correct owner on cached all-packages metadata
|
|
867
|
+
([@isaacs](https://github.com/isaacs))
|
|
868
|
+
* [`e2d377bb6`](https://github.com/npm/cli/commit/e2d377bb6419d8a3c1d80a73dba46062b4dad336)
|
|
869
|
+
[npm.community#8540](https://npm.community/t/npm-audit-fails-with-child-requires-fails-because-requires-must-be-an-object/8540)
|
|
870
|
+
audit: report server error on failure
|
|
871
|
+
([@isaacs](https://github.com/isaacs))
|
|
872
|
+
* [`52576a39e`](https://github.com/npm/cli/commit/52576a39ed75d94c46bb2c482fd38d2c6ea61c56)
|
|
873
|
+
[#216](https://github.com/npm/cli/pull/216)
|
|
874
|
+
[npm.community#5385](https://npm.community/t/6-8-0-npm-ci-fails-with-local-dependency/5385)
|
|
875
|
+
[npm.community#6076](https://npm.community/t/npm-ci-fail-to-local-packages/6076)
|
|
876
|
+
Fix `npm ci` with `file:` dependencies. Partially reverts
|
|
877
|
+
[#40](https://github.com/npm/cli/pull/40)/[#86](https://github.com/npm/cli/pull/86),
|
|
878
|
+
recording dependencies of linked deps in order for `npm ci` to work.
|
|
879
|
+
([@jfirebaugh](https://github.com/jfirebaugh))
|
|
880
|
+
|
|
881
|
+
### DEPENDENCIES
|
|
882
|
+
|
|
883
|
+
* [`0fefdee13`](https://github.com/npm/cli/commit/0fefdee130fd7d0dbb240fb9ecb50a793fbf3d29)
|
|
884
|
+
`cacache@12.0.2` ([@isaacs](https://github.com/isaacs))
|
|
885
|
+
* infer uid/gid instead of accepting as options, preventing the
|
|
886
|
+
overwhelming majority of cases where root-owned files end up in the
|
|
887
|
+
cache folder.
|
|
888
|
+
([ac84d14](https://github.com/npm/cacache/commit/ac84d14))
|
|
889
|
+
([@isaacs](https://github.com/isaacs))
|
|
890
|
+
([#1](https://github.com/npm/cacache/pull/1))
|
|
891
|
+
* **i18n:** add another error message
|
|
892
|
+
([676cb32](https://github.com/npm/cacache/commit/676cb32))
|
|
893
|
+
([@zkat](https://github.com/zkat))
|
|
894
|
+
* [`e1d87a392`](https://github.com/npm/cli/commit/e1d87a392371a070b0788ab7bfc62be18b21e9ad)
|
|
895
|
+
`pacote@9.5.4` ([@isaacs](https://github.com/isaacs))
|
|
896
|
+
* git: ensure stream failures are reported
|
|
897
|
+
([7f07b5d](https://github.com/npm/pacote/commit/7f07b5d))
|
|
898
|
+
[#1](https://github.com/npm/pacote/issues/1)
|
|
899
|
+
([@lddubeau](https://github.com/lddubeau))
|
|
900
|
+
* [`3f035bf09`](https://github.com/npm/cli/commit/3f035bf098e2feea76574cec18b04812659aa16d)
|
|
901
|
+
`infer-owner@1.0.4` ([@isaacs](https://github.com/isaacs))
|
|
902
|
+
* [`ba3283112`](https://github.com/npm/cli/commit/ba32831126591d2f6f48e31a4a2329b533b1ff19)
|
|
903
|
+
`npm-registry-fetch@4.0.0` ([@isaacs](https://github.com/isaacs))
|
|
904
|
+
* [`ee90c334d`](https://github.com/npm/cli/commit/ee90c334d271383d0325af42f20f80f34cb61f07)
|
|
905
|
+
`libnpm@3.0.1` ([@isaacs](https://github.com/isaacs))
|
|
906
|
+
* [`1e480c384`](https://github.com/npm/cli/commit/1e480c38416982ae28b5cdd48c698ca59d3c0395)
|
|
907
|
+
`libnpmaccess@3.0.2` ([@isaacs](https://github.com/isaacs))
|
|
908
|
+
* [`7662ee850`](https://github.com/npm/cli/commit/7662ee850220c71ecaec639adbc7715286f0d28b)
|
|
909
|
+
`libnpmhook@5.0.3` ([@isaacs](https://github.com/isaacs))
|
|
910
|
+
* [`1357fadc6`](https://github.com/npm/cli/commit/1357fadc613d0bfeb40f9a8f3ecace2face2fe2c)
|
|
911
|
+
`libnpmorg@1.0.1` ([@isaacs](https://github.com/isaacs))
|
|
912
|
+
* [`a621b5cb6`](https://github.com/npm/cli/commit/a621b5cb6c881f95a11af86a8051754a67ae017c)
|
|
913
|
+
`libnpmsearch@2.0.2` ([@isaacs](https://github.com/isaacs))
|
|
914
|
+
* [`560cd31dd`](https://github.com/npm/cli/commit/560cd31dd51b6aa2e396ccdd7289fab0a50b5608)
|
|
915
|
+
`libnpmteam@1.0.2` ([@isaacs](https://github.com/isaacs))
|
|
916
|
+
* [`de7ae0867`](https://github.com/npm/cli/commit/de7ae0867d4c0180edc283457ce0b4e8e5eee554)
|
|
917
|
+
`npm-profile@4.0.2` ([@isaacs](https://github.com/isaacs))
|
|
918
|
+
* [`e95da463c`](https://github.com/npm/cli/commit/e95da463cb7a325457ef411a569d7ef4bf76901d)
|
|
919
|
+
`libnpm@3.0.1` ([@isaacs](https://github.com/isaacs))
|
|
920
|
+
* [`554b641d4`](https://github.com/npm/cli/commit/554b641d49d135ae8d137e83aa288897c32dacc6)
|
|
921
|
+
`npm-registry-fetch@4.0.0` ([@isaacs](https://github.com/isaacs))
|
|
922
|
+
* [`06772f34a`](https://github.com/npm/cli/commit/06772f34ab851440dcd78574736936c674a84aed)
|
|
923
|
+
`node-gyp@5.0.3` ([@isaacs](https://github.com/isaacs))
|
|
924
|
+
* [`85358db80`](https://github.com/npm/cli/commit/85358db80d6ccb5f7bc9a0b4d558ac6dd2468394)
|
|
925
|
+
`npm-lifecycle@3.1.2` ([@isaacs](https://github.com/isaacs))
|
|
926
|
+
* [`051cf20`](https://github.com/npm/npm-lifecycle/commit/051cf20072a01839c17920d2e841756251c4f924)
|
|
927
|
+
[#26](https://github.com/npm/npm-lifecycle/pull/26) fix switches for
|
|
928
|
+
alternative shells on Windows
|
|
929
|
+
([@gucong3000](https://github.com/gucong3000))
|
|
930
|
+
* [`3aaf954`](https://github.com/npm/npm-lifecycle/commit/3aaf95435965e8f7acfd955582cf85237afd2c9b)
|
|
931
|
+
[#25](https://github.com/npm/npm-lifecycle/pull/25) set only one PATH
|
|
932
|
+
env variable for child process on Windows
|
|
933
|
+
([@zkochan](https://github.com/zkochan))
|
|
934
|
+
* [`ea18ed2`](https://github.com/npm/npm-lifecycle/commit/ea18ed2b754ca7f11998cad70d88e9004c5bef4a)
|
|
935
|
+
[#36](https://github.com/npm/npm-lifecycle/pull/36)
|
|
936
|
+
[#11](https://github.com/npm/npm-lifecycle/issue/11)
|
|
937
|
+
[#18](https://github.com/npm/npm-lifecycle/issue/18) remove
|
|
938
|
+
procInterrupt listener on SIGINT in procError
|
|
939
|
+
([@mattshin](https://github.com/mattshin))
|
|
940
|
+
* [`5523951`](https://github.com/npm/npm-lifecycle/commit/55239519c57b82521605622e6c71640a31ed4586)
|
|
941
|
+
[#29](https://github.com/npm/npm-lifecycle/issue/29)
|
|
942
|
+
[#30](https://github.com/npm/npm-lifecycle/pull/30) Use platform
|
|
943
|
+
specific path casing if present
|
|
944
|
+
([@mattezell](https://github.com/mattezell))
|
|
945
|
+
|
|
946
|
+
## v6.10.1 (2019-07-11):
|
|
947
|
+
|
|
948
|
+
### BUGFIXES
|
|
949
|
+
|
|
950
|
+
* [`3cbd57712`](https://github.com/npm/cli/commit/3cbd577120a9da6e51bb8b13534d1bf71ea5712c)
|
|
951
|
+
fix(git): strip GIT environs when running git
|
|
952
|
+
([@isaacs](https://github.com/isaacs))
|
|
953
|
+
* [`a81a8c4c4`](https://github.com/npm/cli/commit/a81a8c4c466f510215a51cef1bb08544d11844fe)
|
|
954
|
+
[#206](https://github.com/npm/cli/pull/206) improve isOnly(Dev,Optional)
|
|
955
|
+
([@larsgw](https://github.com/larsgw))
|
|
956
|
+
* [`172f9aca6`](https://github.com/npm/cli/commit/172f9aca67a66ee303c17f90a994cd52fc66552a)
|
|
957
|
+
[#179](https://github.com/npm/cli/pull/179) fix-xmas-underline
|
|
958
|
+
([@raywu0123](https://github.com/raywu0123))
|
|
959
|
+
* [`f52673fc7`](https://github.com/npm/cli/commit/f52673fc7284e58af8c04533e82b76bf7add72cf)
|
|
960
|
+
[#212](https://github.com/npm/cli/pull/212) build: use `/usr/bin/env` to
|
|
961
|
+
load bash ([@rsmarples](https://github.com/rsmarples))
|
|
962
|
+
|
|
963
|
+
### DEPENDENCIES
|
|
964
|
+
|
|
965
|
+
* [`ef4445ad3`](https://github.com/npm/cli/commit/ef4445ad34a53b5639499c8e3c9752f62ee6f37c)
|
|
966
|
+
[#208](https://github.com/npm/cli/pull/208) `node-gyp@5.0.2`
|
|
967
|
+
([@irega](https://github.com/irega))
|
|
968
|
+
* [`c0d611356`](https://github.com/npm/cli/commit/c0d611356f7b23077e97574b01c8886e544db425)
|
|
969
|
+
`npm-lifecycle@3.0.0` ([@isaacs](https://github.com/isaacs))
|
|
970
|
+
* [`7716ba972`](https://github.com/npm/cli/commit/7716ba9720270d5b780755a5bb1ce79702067f1f)
|
|
971
|
+
`libcipm@4.0.0` ([@isaacs](https://github.com/isaacs))
|
|
972
|
+
* [`42d22e837`](https://github.com/npm/cli/commit/42d22e8374c7d303d94e405d7385d94dd2558814)
|
|
973
|
+
`libnpm@3.0.0` ([@isaacs](https://github.com/isaacs))
|
|
974
|
+
* [`a2ea7f9ff`](https://github.com/npm/cli/commit/a2ea7f9ff64ae743d05fdbf7d46fb9afafa8aa6f)
|
|
975
|
+
`semver@5.7.0` ([@isaacs](https://github.com/isaacs))
|
|
976
|
+
* [`429226a5e`](https://github.com/npm/cli/commit/429226a5e992cd907d4f19bd738037007cf78c1f)
|
|
977
|
+
`lru-cache@5.1.1` ([@isaacs](https://github.com/isaacs))
|
|
978
|
+
* [`175670ea6`](https://github.com/npm/cli/commit/175670ea65cca03f8b2e957df3dd4b8b0efd0e1f)
|
|
979
|
+
`npm-registry-fetch@3.9.1`: ([@isaacs](https://github.com/isaacs))
|
|
980
|
+
* [`0d0517f7f`](https://github.com/npm/cli/commit/0d0517f7f8c902b5064ac18fb4015b31750ad2b2)
|
|
981
|
+
`call-limit@1.1.1` ([@isaacs](https://github.com/isaacs))
|
|
982
|
+
* [`741400429`](https://github.com/npm/cli/commit/74140042917ea241062a812ceb65c5423c2bafa9)
|
|
983
|
+
`glob@7.1.4` ([@isaacs](https://github.com/isaacs))
|
|
984
|
+
* [`bddd60e30`](https://github.com/npm/cli/commit/bddd60e302283a4a70d35f8f742e42bd13f4dabf)
|
|
985
|
+
`inherits@2.0.4` ([@isaacs](https://github.com/isaacs))
|
|
986
|
+
* [`4acf03fd1`](https://github.com/npm/cli/commit/4acf03fd140ed3ddb2dcf3fdc9756bc3f5a8bcbb)
|
|
987
|
+
`libnpmsearch@2.0.1` ([@isaacs](https://github.com/isaacs))
|
|
988
|
+
* [`c2bd17291`](https://github.com/npm/cli/commit/c2bd17291a86bea7ced2fbd07d66d013bd7a7560)
|
|
989
|
+
`marked@0.6.3` ([@isaacs](https://github.com/isaacs))
|
|
990
|
+
* [`7f0221bb1`](https://github.com/npm/cli/commit/7f0221bb1bb41ffc933c785940e227feae38c80c)
|
|
991
|
+
`marked-man@0.6.0` ([@isaacs](https://github.com/isaacs))
|
|
992
|
+
* [`f458fe7dd`](https://github.com/npm/cli/commit/f458fe7dd3bebddf603aaae183a424ea8aaa018f)
|
|
993
|
+
`npm-lifecycle@2.1.1` ([@isaacs](https://github.com/isaacs))
|
|
994
|
+
* [`009752978`](https://github.com/npm/cli/commit/0097529780269c28444f1efa0d7c131d47a933eb)
|
|
995
|
+
`node-gyp@4.0.0` ([@isaacs](https://github.com/isaacs))
|
|
996
|
+
* [`0fa2bb438`](https://github.com/npm/cli/commit/0fa2bb4386379d6e9d8c95db08662ec0529964f9)
|
|
997
|
+
`query-string@6.8.1` ([@isaacs](https://github.com/isaacs))
|
|
998
|
+
* [`b86450929`](https://github.com/npm/cli/commit/b86450929796950a1fe4b1f9b02b1634c812f3bb)
|
|
999
|
+
`tar-stream@2.1.0` ([@isaacs](https://github.com/isaacs))
|
|
1000
|
+
* [`25db00fe9`](https://github.com/npm/cli/commit/25db00fe953453198adb9e1bd71d1bc2a9f04aaa)
|
|
1001
|
+
`worker-farm@1.7.0` ([@isaacs](https://github.com/isaacs))
|
|
1002
|
+
* [`8dfbe8610`](https://github.com/npm/cli/commit/8dfbe861085dfa8fa56bb504b4a00fba04c34f9d)
|
|
1003
|
+
`readable-stream@3.4.0` ([@isaacs](https://github.com/isaacs))
|
|
1004
|
+
* [`f6164d5dd`](https://github.com/npm/cli/commit/f6164d5ddd072eabdf2237f1694a31efd746eb1d)
|
|
1005
|
+
[isaacs/chownr#21](https://github.com/isaacs/chownr/pull/21)
|
|
1006
|
+
[isaacs/chownr#20](https://github.com/isaacs/chownr/issues/20)
|
|
1007
|
+
[npm.community#7901](https://npm.community/t/7901/)
|
|
1008
|
+
[npm.community#8203](https://npm.community/t/8203) `chownr@1.1.2` This
|
|
1009
|
+
fixes an EISDIR error from cacache on Darwin in Node versions prior to
|
|
1010
|
+
10.6. ([@isaacs](https://github.com/isaacs))
|
|
1011
|
+
|
|
1012
|
+
## v6.10.0 (2019-07-03):
|
|
1013
|
+
|
|
1014
|
+
### FEATURES
|
|
1015
|
+
|
|
1016
|
+
* [`87fef4e35`](https://github.com/npm/cli/commit/87fef4e35)
|
|
1017
|
+
[#176](https://github.com/npm/cli/pull/176) fix: Always return JSON for
|
|
1018
|
+
outdated --json ([@sreeramjayan](https://github.com/sreeramjayan))
|
|
1019
|
+
* [`f101d44fc`](https://github.com/npm/cli/commit/f101d44fc)
|
|
1020
|
+
[#203](https://github.com/npm/cli/pull/203) fix(unpublish): add space
|
|
1021
|
+
after hyphen ([@ffflorian](https://github.com/ffflorian))
|
|
1022
|
+
* [`a4475de4c`](https://github.com/npm/cli/commit/a4475de4c)
|
|
1023
|
+
[#202](https://github.com/npm/cli/pull/202) enable production flag for
|
|
1024
|
+
npm audit ([@CalebCourier](https://github.com/CalebCourier))
|
|
1025
|
+
* [`d192904d0`](https://github.com/npm/cli/commit/d192904d0)
|
|
1026
|
+
[#178](https://github.com/npm/cli/pull/178) fix: Return a value for
|
|
1027
|
+
`view` when in silent mode
|
|
1028
|
+
([@stayradiated](https://github.com/stayradiated))
|
|
1029
|
+
* [`39d473adf`](https://github.com/npm/cli/commit/39d473adf)
|
|
1030
|
+
[#185](https://github.com/npm/cli/pull/185) Allow git to follow global
|
|
1031
|
+
tagsign config ([@junderw](https://github.com/junderw))
|
|
1032
|
+
|
|
1033
|
+
### BUGFIXES
|
|
1034
|
+
|
|
1035
|
+
* [`d9238af0b`](https://github.com/npm/cli/commit/d9238af0b)
|
|
1036
|
+
[#201](https://github.com/npm/cli/pull/163)
|
|
1037
|
+
[npm/npm#17858](https://github.com/npm/npm/issues/17858)
|
|
1038
|
+
[npm/npm#18042](https://github.com/npm/npm/issues/18042)
|
|
1039
|
+
[npm.community#644](https://npm.community/t/644) do not crash when
|
|
1040
|
+
removing nameless packages
|
|
1041
|
+
([@SteveVanOpstal](https://github.com/SteveVanOpstal) and
|
|
1042
|
+
[@isaacs](https://github.com/isaacs))
|
|
1043
|
+
* [`4bec4f111`](https://github.com/npm/cli/commit/4bec4f111)
|
|
1044
|
+
[#200](https://github.com/npm/cli/pull/200) Check for `node` (as well as
|
|
1045
|
+
`node.exe`) in npm's local dir on Windows
|
|
1046
|
+
([@rgoulais](https://github.com/rgoulais))
|
|
1047
|
+
* [`ce93dab2d`](https://github.com/npm/cli/commit/ce93dab2db423ef23b3e08a0612dafbeb2d25789)
|
|
1048
|
+
[#180](https://github.com/npm/cli/pull/180)
|
|
1049
|
+
[npm.community#6187](https://npm.community/t/6187) Fix handling of
|
|
1050
|
+
`remote` deps in `npm outdated` ([@larsgw](https://github.com/larsgw))
|
|
1051
|
+
|
|
1052
|
+
### TESTING
|
|
1053
|
+
|
|
1054
|
+
* [`a823f3084`](https://github.com/npm/cli/commit/a823f3084) travis: Update
|
|
1055
|
+
to include new v12 LTS ([@isaacs](https://github.com/isaacs))
|
|
1056
|
+
* [`33e2d1dac`](https://github.com/npm/cli/commit/33e2d1dac) fix flaky
|
|
1057
|
+
debug-logs test ([@isaacs](https://github.com/isaacs))
|
|
1058
|
+
* [`e9411c6cd`](https://github.com/npm/cli/commit/e9411c6cd) Don't time out
|
|
1059
|
+
waiting for gpg user input ([@isaacs](https://github.com/isaacs))
|
|
1060
|
+
* [`d2d301704`](https://github.com/npm/cli/commit/d2d301704)
|
|
1061
|
+
[#195](https://github.com/npm/cli/pull/195) Add the arm64 check for
|
|
1062
|
+
legacy-platform-all.js test case.
|
|
1063
|
+
([@ossdev07](https://github.com/ossdev07))
|
|
1064
|
+
* [`a4dc34243`](https://github.com/npm/cli/commit/a4dc34243) parallel tests
|
|
1065
|
+
([@isaacs](https://github.com/isaacs))
|
|
1066
|
+
|
|
1067
|
+
### DOCUMENTATION
|
|
1068
|
+
|
|
1069
|
+
* [`f5857e263`](https://github.com/npm/cli/commit/f5857e263)
|
|
1070
|
+
[#192](https://github.com/npm/cli/pull/192) Clarify usage of
|
|
1071
|
+
bundledDependencies
|
|
1072
|
+
([@john-osullivan](https://github.com/john-osullivan))
|
|
1073
|
+
* [`747fdaf66`](https://github.com/npm/cli/commit/747fdaf66)
|
|
1074
|
+
[#159](https://github.com/npm/cli/pull/159) doc: add --audit-level param
|
|
1075
|
+
([@ngraef](https://github.com/ngraef))
|
|
1076
|
+
|
|
1077
|
+
### DEPENDENCIES
|
|
1078
|
+
|
|
1079
|
+
* [`e36b3c320`](https://github.com/npm/cli/commit/e36b3c320)
|
|
1080
|
+
graceful-fs@4.2.0 ([@isaacs](https://github.com/isaacs))
|
|
1081
|
+
* [`6bb935c09`](https://github.com/npm/cli/commit/6bb935c09)
|
|
1082
|
+
read-package-tree@5.3.1 ([@isaacs](https://github.com/isaacs))
|
|
1083
|
+
* [`e9cd536`](https://github.com/npm/read-package-tree/commit/e9cd536)
|
|
1084
|
+
Use custom caching `realpath` implementation, dramatically reducing
|
|
1085
|
+
`lstat` calls when reading the package tree
|
|
1086
|
+
([@isaacs](https://github.com/isaacs))
|
|
1087
|
+
* [`39538b460`](https://github.com/npm/cli/commit/39538b460)
|
|
1088
|
+
write-file-atomic@2.4.3 ([@isaacs](https://github.com/isaacs))
|
|
1089
|
+
* [`f8b1552`](https://github.com/npm/write-file-atomic/commit/f8b1552)
|
|
1090
|
+
[#38](https://github.com/npm/write-file-atomic/pull/38) Ignore errors
|
|
1091
|
+
raised by `fs.closeSync` ([@lukeapage](https://github.com/lukeapage))
|
|
1092
|
+
* [`042193069`](https://github.com/npm/cli/commit/042193069) pacote@9.5.1
|
|
1093
|
+
([@isaacs](https://github.com/isaacs))
|
|
1094
|
+
* [`8bbd051`](https://github.com/npm/pacote/commit/8bbd051)
|
|
1095
|
+
[#172](https://github.com/zkat/pacote/pull/172) limit git retry
|
|
1096
|
+
times, avoid unlimited retries ([小秦](https://github.com/xqin))
|
|
1097
|
+
* [`92f5e4c`](https://github.com/npm/pacote/commit/92f5e4c)
|
|
1098
|
+
[#170](https://github.com/zkat/pacote/pull/170) fix(errors): Fix
|
|
1099
|
+
"TypeError: err.code.match is not a function" error
|
|
1100
|
+
([@jviotti](https://github.com/jviotti))
|
|
1101
|
+
* [`8bd8e909f`](https://github.com/npm/cli/commit/8bd8e909f) cacache@11.3.3
|
|
1102
|
+
([@isaacs](https://github.com/isaacs))
|
|
1103
|
+
* [`47de8f5`](https://github.com/npm/cacache/commit/47de8f5)
|
|
1104
|
+
[#146](https://github.com/zkat/cacache/pull/146)
|
|
1105
|
+
[npm.community#2395](https://npm.community/t/2395) fix(config): Add
|
|
1106
|
+
ssri config 'error' option ([@larsgw](https://github.com/larsgw))
|
|
1107
|
+
* [`5156561`](https://github.com/npm/cacache/commit/5156561)
|
|
1108
|
+
fix(write): avoid a `cb never called` situation
|
|
1109
|
+
([@zkat](https://github.com/zkat))
|
|
1110
|
+
* [`90f40f0`](https://github.com/npm/cacache/commit/90f40f0)
|
|
1111
|
+
[#166](https://github.com/zkat/cacache/pull/166)
|
|
1112
|
+
[#165](https://github.com/zkat/cacache/issues/165) docs: Fix docs for
|
|
1113
|
+
`path` property in get.info
|
|
1114
|
+
([@hdgarrood](https://github.com/hdgarrood))
|
|
1115
|
+
* [`bf61c45c6`](https://github.com/npm/cli/commit/bf61c45c6) bluebird@3.5.5
|
|
1116
|
+
([@isaacs](https://github.com/isaacs))
|
|
1117
|
+
* [`f75d46a9d`](https://github.com/npm/cli/commit/f75d46a9d) tar@4.4.10
|
|
1118
|
+
([@isaacs](https://github.com/isaacs))
|
|
1119
|
+
* [`c80341a`](https://github.com/npm/node-tar/commit/c80341a)
|
|
1120
|
+
[#215](https://github.com/npm/node-tar/pull/215) Fix
|
|
1121
|
+
encoding/decoding of base-256 numbers
|
|
1122
|
+
([@justfalter](https://github.com/justfalter))
|
|
1123
|
+
* [`77522f0`](https://github.com/npm/node-tar/commit/77522f0)
|
|
1124
|
+
[#204](https://github.com/npm/node-tar/issues/204)
|
|
1125
|
+
[#214](https://github.com/npm/node-tar/issues/214) Use `stat` instead
|
|
1126
|
+
of `lstat` when checking CWD ([@stkb](https://github.com/stkb))
|
|
1127
|
+
* [`ec6236210`](https://github.com/npm/cli/commit/ec6236210)
|
|
1128
|
+
npm-packlist@1.4.4 ([@isaacs](https://github.com/isaacs))
|
|
1129
|
+
* [`63d1e3e`](https://github.com/npm/npm-packlist/commit/63d1e3e)
|
|
1130
|
+
[#30](https://github.com/npm/npm-packlist/issues/30) Sort package
|
|
1131
|
+
tarball entries by file type for compression benefits
|
|
1132
|
+
([@isaacs](https://github.com/isaacs))
|
|
1133
|
+
* [`7fcd045`](https://github.com/npm/npm-packlist/commit/7fcd045)
|
|
1134
|
+
Ignore `.DS_Store` files as well as folders
|
|
1135
|
+
([@isaacs](https://github.com/isaacs))
|
|
1136
|
+
* [`68b7c96`](https://github.com/npm/npm-packlist/commit/68b7c96) Never
|
|
1137
|
+
include .git folders in package root. (Note: this prevents the issue
|
|
1138
|
+
that broke the v6.9.1 release.)
|
|
1139
|
+
([@isaacs](https://github.com/isaacs))
|
|
1140
|
+
* [`57bef61bc`](https://github.com/npm/cli/commit/57bef61bc) update fstream
|
|
1141
|
+
in node-gyp ([@isaacs](https://github.com/isaacs))
|
|
1142
|
+
* Addresses [security advisory
|
|
1143
|
+
#886](https://www.npmjs.com/advisories/886)
|
|
1144
|
+
* [`acbbf7eee`](https://github.com/npm/cli/commit/acbbf7eee)
|
|
1145
|
+
[#183](https://github.com/npm/cli/pull/183) licensee@7.0.2
|
|
1146
|
+
([@kemitchell](https://github.com/kemitchell))
|
|
1147
|
+
* [`011ae67f0`](https://github.com/npm/cli/commit/011ae67f0)
|
|
1148
|
+
readable-stream@3.3.0 ([@isaacs](https://github.com/isaacs))
|
|
1149
|
+
* [`f5e884909`](https://github.com/npm/cli/commit/f5e884909)
|
|
1150
|
+
npm-registry-mock@1.2.1 ([@isaacs](https://github.com/isaacs))
|
|
1151
|
+
* [`b57d07e35`](https://github.com/npm/cli/commit/b57d07e35)
|
|
1152
|
+
npm-registry-couchapp@2.7.2 ([@isaacs](https://github.com/isaacs))
|
|
1153
|
+
|
|
1154
|
+
## v6.9.2 (2019-06-27):
|
|
1155
|
+
|
|
1156
|
+
This release is identical to v6.9.1, but we had to publish a new version
|
|
1157
|
+
due to [a .git directory in the release](https://npm.community/t/8454).
|
|
1158
|
+
|
|
1159
|
+
## v6.9.1 (2019-06-26):
|
|
1160
|
+
|
|
1161
|
+
### BUGFIXES
|
|
1162
|
+
|
|
1163
|
+
* [`6b1a9da0e`](https://github.com/npm/cli/commit/6b1a9da0e0f5c295cdaf4dea4b73bd221d778611)
|
|
1164
|
+
[#165](https://github.com/npm/cli/pull/165)
|
|
1165
|
+
Update `knownBroken` version.
|
|
1166
|
+
([@ljharb](https://github.com/ljharb))
|
|
1167
|
+
* [`d07547154`](https://github.com/npm/cli/commit/d07547154eb8a88aa4fde8a37e128e1e3272adc1)
|
|
1168
|
+
[npm.community#5929](https://npm.community/t/npm-outdated-throw-an-error-cannot-read-property-length-of-undefined/5929)
|
|
1169
|
+
Fix `outdated` rendering for global dependencies.
|
|
1170
|
+
([@zkat](https://github.com/zkat))
|
|
1171
|
+
* [`e4a1f1745`](https://github.com/npm/cli/commit/e4a1f174514a57580fd5e0fa33eee0f42bba77fc)
|
|
1172
|
+
[npm.community#6259](https://npm.community/t/npm-token-create-doesnt-work-in-6-6-0-6-9-0/6259)
|
|
1173
|
+
Fix OTP for token create and remove.
|
|
1174
|
+
([@zkat](https://github.com/zkat))
|
|
1175
|
+
|
|
1176
|
+
### DEPENDENCIES
|
|
1177
|
+
|
|
1178
|
+
* [`a163a9c35`](https://github.com/npm/cli/commit/a163a9c35f6f341de343562368056258bba5d7dc)
|
|
1179
|
+
`sha@3.0.0`
|
|
1180
|
+
([@aeschright](https://github.com/aeschright))
|
|
1181
|
+
* [`47b08b3b9`](https://github.com/npm/cli/commit/47b08b3b9860438b416efb438e975a628ec2eed5)
|
|
1182
|
+
`query-string@6.4.0`
|
|
1183
|
+
([@aeschright](https://github.com/aeschright))
|
|
1184
|
+
* [`d6a956cff`](https://github.com/npm/cli/commit/d6a956cff6357e6de431848e578c391768685a64)
|
|
1185
|
+
`readable-stream@3.2.0`
|
|
1186
|
+
([@aeschright](https://github.com/aeschright))
|
|
1187
|
+
* [`10b8bed2b`](https://github.com/npm/cli/commit/10b8bed2bb0afac5451164e87f25924cc1ac6f2e)
|
|
1188
|
+
`tacks@1.3.0`
|
|
1189
|
+
([@aeschright](https://github.com/aeschright))
|
|
1190
|
+
* [`e7483704d`](https://github.com/npm/cli/commit/e7483704dda1acffc8c6b8c165c14c8a7512f3c8)
|
|
1191
|
+
`tap@12.6.0`
|
|
1192
|
+
([@aeschright](https://github.com/aeschright))
|
|
1193
|
+
* [`3242fe698`](https://github.com/npm/cli/commit/3242fe698ead46a9cda94e1a4d489cd84a85d7e3)
|
|
1194
|
+
`tar-stream@2.0.1`
|
|
1195
|
+
([@aeschright](https://github.com/aeschright))
|
|
1196
|
+
|
|
1197
|
+
## v6.9.0 (2019-02-20):
|
|
1198
|
+
|
|
1199
|
+
### FEATURES
|
|
1200
|
+
|
|
1201
|
+
* [`2ba3a0f67`](https://github.com/npm/cli/commit/2ba3a0f6721f6d5a16775aebce6012965634fc7c)
|
|
1202
|
+
[#90](https://github.com/npm/cli/pull/90)
|
|
1203
|
+
Time traveling installs using the `--before` flag.
|
|
1204
|
+
([@zkat](https://github.com/zkat))
|
|
1205
|
+
* [`b7b54f2d1`](https://github.com/npm/cli/commit/b7b54f2d18e2d8d65ec67c850b21ae9f01c60e7e)
|
|
1206
|
+
[#3](https://github.com/npm/cli/pull/3)
|
|
1207
|
+
Add support for package aliases. This allows packages to be installed under a
|
|
1208
|
+
different directory than the package name listed in `package.json`, and adds a
|
|
1209
|
+
new dependency type to allow this to be done for registry dependencies.
|
|
1210
|
+
([@zkat](https://github.com/zkat))
|
|
1211
|
+
* [`684bccf06`](https://github.com/npm/cli/commit/684bccf061dfc97bb759121bc0ad635e01c65868)
|
|
1212
|
+
[#146](https://github.com/npm/cli/pull/146)
|
|
1213
|
+
Always save `package-lock.json` when using `--package-lock-only`.
|
|
1214
|
+
([@aeschright](https://github.com/aeschright))
|
|
1215
|
+
* [`b8b8afd40`](https://github.com/npm/cli/commit/b8b8afd4048b4ba1181e00ba2ac49ced43936ce0)
|
|
1216
|
+
[#139](https://github.com/npm/cli/pull/139)
|
|
1217
|
+
Make empty-string run-scripts run successfully as a no-op.
|
|
1218
|
+
([@vlasy](https://github.com/vlasy))
|
|
1219
|
+
* [`8047b19b1`](https://github.com/npm/cli/commit/8047b19b1b994fd4b4e7b5c91d7cc4e0384bd5e4)
|
|
1220
|
+
[npm.community#3784](https://npm.community/t/3784)
|
|
1221
|
+
Match git semver ranges when flattening the tree.
|
|
1222
|
+
([@larsgw](https://github.com/larsgw))
|
|
1223
|
+
* [`e135c2bb3`](https://github.com/npm/cli/commit/e135c2bb360dcf00ecee34a95985afec21ba3655)
|
|
1224
|
+
[npm.community#1725](https://npm.community/t/1725?u=larsgw)
|
|
1225
|
+
Re-enable updating local packages.
|
|
1226
|
+
([@larsgw](https://github.com/larsgw))
|
|
1227
|
+
|
|
1228
|
+
### BUGFIXES
|
|
1229
|
+
|
|
1230
|
+
* [`cf09fbaed`](https://github.com/npm/cli/commit/cf09fbaed489d908e9b551382cc5f61bdabe99a9)
|
|
1231
|
+
[#153](https://github.com/npm/cli/pull/153)
|
|
1232
|
+
Set modified to undefined in `npm view` when `time` is not available. This
|
|
1233
|
+
fixes a bug where `npm view` would crash on certain third-party registries.
|
|
1234
|
+
([@simonua](https://github.com/simonua))
|
|
1235
|
+
* [`774fc26ee`](https://github.com/npm/cli/commit/774fc26eeb01345c11bd8c97e2c4f328d419d9b5)
|
|
1236
|
+
[#154](https://github.com/npm/cli/pull/154)
|
|
1237
|
+
Print out tar version in `install.sh` only when the flag is supported not all
|
|
1238
|
+
the tar implementations support --version flag. This allows the install script
|
|
1239
|
+
to work in OpenBSD, for example.
|
|
1240
|
+
([@agudulin](https://github.com/agudulin))
|
|
1241
|
+
* [`863baff11`](https://github.com/npm/cli/commit/863baff11d8c870f1a0d9619bb5133c67d71e407)
|
|
1242
|
+
[#158](https://github.com/npm/cli/pull/158)
|
|
1243
|
+
Fix typo in error message for `npm stars`.
|
|
1244
|
+
([@phihag](https://github.com/phihag))
|
|
1245
|
+
* [`a805a95ad`](https://github.com/npm/cli/commit/a805a95ad8832ef5008671f4bd4c11b83e32e0f2)
|
|
1246
|
+
[npm.community#4227](https://npm.community/t/4227)
|
|
1247
|
+
Strip version info from pkg on E404. This improves the error messaging format.
|
|
1248
|
+
([@larsgw](https://github.com/larsgw))
|
|
1249
|
+
|
|
1250
|
+
### DOCS
|
|
1251
|
+
|
|
1252
|
+
* [`5d7633833`](https://github.com/npm/cli/commit/5d76338338621fd0b3d4f7914a51726d27569ee1)
|
|
1253
|
+
[#160](https://github.com/npm/cli/pull/160)
|
|
1254
|
+
Add `npm add` as alias to npm install in docs.
|
|
1255
|
+
([@ahasall](https://github.com/ahasall))
|
|
1256
|
+
* [`489c2211c`](https://github.com/npm/cli/commit/489c2211c96a01d65df50fd57346c785bcc3efe6)
|
|
1257
|
+
[#162](https://github.com/npm/cli/pull/162)
|
|
1258
|
+
Fix link to RFC #10 in the changelog.
|
|
1259
|
+
([@mansona](https://github.com/mansona))
|
|
1260
|
+
* [`433020ead`](https://github.com/npm/cli/commit/433020ead5251b562bc3b0f5f55341a5b8cc9023)
|
|
1261
|
+
[#135](https://github.com/npm/cli/pull/135)
|
|
1262
|
+
Describe exit codes in npm-audit docs.
|
|
1263
|
+
([@emilis-tm](https://github.com/emilis-tm))
|
|
1264
|
+
|
|
1265
|
+
### DEPENDENCIES
|
|
1266
|
+
|
|
1267
|
+
* [`ee6b6746b`](https://github.com/npm/cli/commit/ee6b6746b04f145dfe489af2d26667ac32ba0cef)
|
|
1268
|
+
[zkat/make-fetch-happen#29](https://github.com/zkat/make-fetch-happen/issues/29)
|
|
1269
|
+
`agent-base@4.2.1`
|
|
1270
|
+
([@TooTallNate](https://github.com/TooTallNate))
|
|
1271
|
+
* [`2ce23baf5`](https://github.com/npm/cli/commit/2ce23baf53b1ce7d11b8efb80c598ddaf9cef9e7)
|
|
1272
|
+
`lock-verify@2.1.0`:
|
|
1273
|
+
Adds support for package aliases
|
|
1274
|
+
([@zkat](https://github.com/zkat))
|
|
1275
|
+
* [`baaedbc6e`](https://github.com/npm/cli/commit/baaedbc6e2fc370d73b35e7721794719115507cc)
|
|
1276
|
+
`pacote@9.5.0`:
|
|
1277
|
+
Adds opts.before support
|
|
1278
|
+
([@zkat](https://github.com/zkat))
|
|
1279
|
+
* [`57e771a03`](https://github.com/npm/cli/commit/57e771a032165d1e31e71d0ff7530442139c21a6)
|
|
1280
|
+
[#164](https://github.com/npm/cli/pull/164)
|
|
1281
|
+
`licensee@6.1.0`
|
|
1282
|
+
([@kemitchell](https://github.com/kemitchell))
|
|
1283
|
+
* [`2b78288d4`](https://github.com/npm/cli/commit/2b78288d4accd10c1b7cc6c36bc28045f5634d91)
|
|
1284
|
+
add core to default inclusion tests in pack
|
|
1285
|
+
([@Kat Marchán](https://github.com/Kat Marchán))
|
|
1286
|
+
* [`9b8b6513f`](https://github.com/npm/cli/commit/9b8b6513fbce92764b32a067322984985ff683fe)
|
|
1287
|
+
[npm.community#5382](https://npm.community/t/npm-pack-leaving-out-files-6-8-0-only/5382)
|
|
1288
|
+
`npm-packlist@1.4.1`: Fixes bug where `core/` directories were being suddenly excluded.
|
|
1289
|
+
([@zkat](https://github.com/zkat))
|
|
1290
|
+
|
|
1291
|
+
## v6.8.0 (2019-02-07):
|
|
1292
|
+
|
|
1293
|
+
This release includes an implementation of [RFC #10](https://github.com/npm/rfcs/blob/latest/implemented/0010-monorepo-subdirectory-declaration.md), documenting an optional field that can be used to specify
|
|
1294
|
+
the directory path for a package within a monorepo.
|
|
1295
|
+
|
|
1296
|
+
### NEW FEATURES
|
|
1297
|
+
|
|
1298
|
+
* [`3663cdef2`](https://github.com/npm/cli/commit/3663cdef205fa9ba2c2830e5ef7ceeb31c30298c)
|
|
1299
|
+
[#140](https://github.com/npm/cli/pull/140)
|
|
1300
|
+
Update package.json docs to include repository.directory details.
|
|
1301
|
+
([@greysteil](https://github.com/greysteil))
|
|
1302
|
+
|
|
1303
|
+
### BUGFIXES
|
|
1304
|
+
|
|
1305
|
+
* [`550bf703a`](https://github.com/npm/cli/commit/550bf703ae3e31ba6a300658ae95b6937f67b68f)
|
|
1306
|
+
Add @types to ignore list to fix git clean -fd.
|
|
1307
|
+
([@zkat](https://github.com/zkat))
|
|
1308
|
+
* [`cdb059293`](https://github.com/npm/cli/commit/cdb0592939d6256c80f7ec5a2b6251131a512a2a)
|
|
1309
|
+
[#144](https://github.com/npm/cli/pull/144)
|
|
1310
|
+
Fix common.npm callback arguments.
|
|
1311
|
+
([@larsgw](https://github.com/larsgw))
|
|
1312
|
+
* [`25573e9b9`](https://github.com/npm/cli/commit/25573e9b9d5d26261c68d453f06db5b3b1cd6789)
|
|
1313
|
+
[npm.community#4770](https://npm.community/t/https://npm.community/t/4770)
|
|
1314
|
+
Show installed but unmet peer deps.
|
|
1315
|
+
([@larsgw](https://github.com/larsgw))
|
|
1316
|
+
* [`ce2c4bd1a`](https://github.com/npm/cli/commit/ce2c4bd1a2ce7ac1727a4ca9a350b743a2e27b2a)
|
|
1317
|
+
[#149](https://github.com/npm/cli/pull/149)
|
|
1318
|
+
Use figgy-config to make sure extra opts are there.
|
|
1319
|
+
([@zkat](https://github.com/zkat))
|
|
1320
|
+
* [`3c22d1a35`](https://github.com/npm/cli/commit/3c22d1a35878f73c0af8ea5968b962a85a1a9b84)
|
|
1321
|
+
[npm.community#5101](https://npm.community/t/npm-6-6-0-breaks-access-to-ls-collaborators/5101)
|
|
1322
|
+
Fix `ls-collaborators` access error for non-scoped case.
|
|
1323
|
+
([@zkat](https://github.com/zkat))
|
|
1324
|
+
* [`d5137091d`](https://github.com/npm/cli/commit/d5137091dd695a2980f7ade85fdc56b2421ff677)
|
|
1325
|
+
[npm.community#754](https://npm.community/t/npm-install-for-package-with-local-dependency-fails/754)
|
|
1326
|
+
Fix issue with sub-folder local references.
|
|
1327
|
+
([@iarna](https://github.com/iarna))
|
|
1328
|
+
([@jhecking](https://github.com/jhecking))
|
|
1329
|
+
|
|
1330
|
+
### DEPENDENCY BUMPS
|
|
1331
|
+
|
|
1332
|
+
* [`d72141080`](https://github.com/npm/cli/commit/d72141080ec8fcf35bcc5650245efbe649de053e)
|
|
1333
|
+
`npm-registry-couchapp@2.7.1`
|
|
1334
|
+
([@zkat](https://github.com/zkat))
|
|
1335
|
+
* [`671cad1b1`](https://github.com/npm/cli/commit/671cad1b18239d540da246d6f78de45d9f784396)
|
|
1336
|
+
`npm-registry-fetch@3.9.0`:
|
|
1337
|
+
Make sure publishing with legacy username:password `_auth` works again.
|
|
1338
|
+
([@zkat](https://github.com/zkat))
|
|
1339
|
+
* [`95ca1aef4`](https://github.com/npm/cli/commit/95ca1aef4077c8e68d9f4dce37f6ba49b591c4ca)
|
|
1340
|
+
`pacote@9.4.1`
|
|
1341
|
+
([@aeschright](https://github.com/aeschright))
|
|
1342
|
+
* [`322fef403`](https://github.com/npm/cli/commit/322fef40376e71cd100159dc914e7ca89faae327)
|
|
1343
|
+
`normalize-package-data@2.5.0`
|
|
1344
|
+
([@aeschright](https://github.com/aeschright))
|
|
1345
|
+
* [`32d34c0da`](https://github.com/npm/cli/commit/32d34c0da4f393a74697297667eb9226155ecc6b)
|
|
1346
|
+
`npm-packlist@1.3.0`
|
|
1347
|
+
([@aeschright](https://github.com/aeschright))
|
|
1348
|
+
* [`338571cf0`](https://github.com/npm/cli/commit/338571cf0bd3a1e2ea800464d57581932ff0fb11)
|
|
1349
|
+
`read-package-tree@5.2.2`
|
|
1350
|
+
([@zkat](https://github.com/zkat))
|
|
1351
|
+
|
|
1352
|
+
### MISC
|
|
1353
|
+
|
|
1354
|
+
* [`89b23a5f7`](https://github.com/npm/cli/commit/89b23a5f7b0ccdcdda1d7d4d3eafb6903156d186)
|
|
1355
|
+
[#120](https://github.com/npm/cli/pull/120)
|
|
1356
|
+
Use `const` in lib/fetch-package-metadata.md.
|
|
1357
|
+
([@watilde](https://github.com/watilde))
|
|
1358
|
+
* [`4970d553c`](https://github.com/npm/cli/commit/4970d553c0ea66128931d118469fd31c87cc7986)
|
|
1359
|
+
[#126](https://github.com/npm/cli/pull/126)
|
|
1360
|
+
Replace ronn with marked-man in `.npmignore`.
|
|
1361
|
+
([@watilde](https://github.com/watilde))
|
|
1362
|
+
* [`d9b6090dc`](https://github.com/npm/cli/commit/d9b6090dc26cd0fded18b4f80248cff3e51bb185)
|
|
1363
|
+
[#138](https://github.com/npm/cli/pull/138)
|
|
1364
|
+
Reduce work to test if executable ends with a 'g'.
|
|
1365
|
+
([@elidoran](https://github.com/elidoran))
|
|
1366
|
+
([@larsgw](https://github.com/larsgw))
|
|
1367
|
+
|
|
1368
|
+
## v6.7.0 (2019-01-23):
|
|
1369
|
+
|
|
1370
|
+
Hey y'all! This is a quick hotfix release that includes some important fixes to
|
|
1371
|
+
`npm@6.6.0` related to the large rewrite/refactor. We're tagging it as a feature
|
|
1372
|
+
release because the changes involve some minor new features, and semver is
|
|
1373
|
+
semver, but there's nothing major here.
|
|
1374
|
+
|
|
1375
|
+
### NEW FEATURES
|
|
1376
|
+
|
|
1377
|
+
* [`50463f58b`](https://github.com/npm/cli/commit/50463f58b4b70180a85d6d8c10fcf50d8970ef5e)
|
|
1378
|
+
Improve usage errors to `npm org` commands and add optional filtering to `npm
|
|
1379
|
+
org ls` subcommand.
|
|
1380
|
+
([@zkat](https://github.com/zkat))
|
|
1381
|
+
|
|
1382
|
+
### BUGFIXES
|
|
1383
|
+
|
|
1384
|
+
* [`4027070b0`](https://github.com/npm/cli/commit/4027070b03be3bdae2515f2291de89b91f901df9)
|
|
1385
|
+
Fix default usage printout for `npm org` so you actually see how it's supposed
|
|
1386
|
+
to be used.
|
|
1387
|
+
([@zkat](https://github.com/zkat))
|
|
1388
|
+
* [`cfea6ea5b`](https://github.com/npm/cli/commit/cfea6ea5b67ec5e4ec57e3a9cb8c82d018cb5476)
|
|
1389
|
+
fix default usage message for npm hook
|
|
1390
|
+
([@zkat](https://github.com/zkat))
|
|
1391
|
+
|
|
1392
|
+
### DOCS
|
|
1393
|
+
|
|
1394
|
+
* [`e959e1421`](https://github.com/npm/cli/commit/e959e14217d751ddb295565fd75cc81de1ee0d5b)
|
|
1395
|
+
Add manpage for `npm org` command.
|
|
1396
|
+
([@zkat](https://github.com/zkat))
|
|
1397
|
+
|
|
1398
|
+
### DEPENDENCY BUMPS
|
|
1399
|
+
|
|
1400
|
+
* [`8543fc357`](https://github.com/npm/cli/commit/8543fc3576f64e91f7946d4c56a5ffb045b55156)
|
|
1401
|
+
`pacote@9.4.0`: Fall back to "fullfat" packuments on ETARGET errors. This will
|
|
1402
|
+
make it so that, when a package is published but the corgi follower hasn't
|
|
1403
|
+
caught up, users can still install a freshly-published package.
|
|
1404
|
+
([@zkat](https://github.com/zkat))
|
|
1405
|
+
* [`75475043b`](https://github.com/npm/cli/commit/75475043b03a254b2e7db2c04c3f0baea31d8dc5)
|
|
1406
|
+
[npm.community#4752](https://npm.community/t/npm-6-6-0-broke-authentication-with-npm-registry-couchapp/4752)
|
|
1407
|
+
`libnpmpublish@1.1.1`: Fixes auth error for username/password legacy authentication.
|
|
1408
|
+
([@sreeramjayan](https://github.com/sreeramjayan))
|
|
1409
|
+
* [`0af8c00ac`](https://github.com/npm/cli/commit/0af8c00acb01849362ffca25b567cc62447c7175)
|
|
1410
|
+
[npm.community#4746](https://npm.community/t/npm-6-6-0-release-breaking-docker-npm-ci-commands/4746)
|
|
1411
|
+
`libcipm@3.0.3`: Fixes issue with "cannot run in wd" errors for run-scripts.
|
|
1412
|
+
([@zkat](https://github.com/zkat))
|
|
1413
|
+
* [`5a7962e46`](https://github.com/npm/cli/commit/5a7962e46f582c6bd91784b0ddc941ed45e9f802)
|
|
1414
|
+
`write-file-atomic@2.4.2`:
|
|
1415
|
+
Fixes issues with leaking `signal-exit` instances and file descriptors.
|
|
1416
|
+
([@iarna](https://github.com/iarna))
|
|
1417
|
+
|
|
1418
|
+
## v6.6.0 (2019-01-17):
|
|
1419
|
+
|
|
1420
|
+
### REFACTORING OUT npm-REGISTRY-CLIENT
|
|
1421
|
+
|
|
1422
|
+
Today is an auspicious day! This release marks the end of a massive internal
|
|
1423
|
+
refactor to npm that means we finally got rid of the legacy
|
|
1424
|
+
[`npm-registry-client`](https://npm.im/npm-registry-client) in favor of the
|
|
1425
|
+
shiny, new, `window.fetch`-like
|
|
1426
|
+
[`npm-registry-fetch`](https://npm.im/npm-registry-fetch).
|
|
1427
|
+
|
|
1428
|
+
Now, the installer had already done most of this work with the release of
|
|
1429
|
+
`npm@5`, but it turns out _every other command_ still used the legacy client.
|
|
1430
|
+
This release updates all of those commands to use the new client, and while
|
|
1431
|
+
we're at it, adds a few extra goodies:
|
|
1432
|
+
|
|
1433
|
+
* All OTP-requiring commands will now **prompt**. `--otp` is no longer required for `dist-tag`, `access`, et al.
|
|
1434
|
+
* We're starting to integrate a new config system which will eventually get extracted into a standalone package.
|
|
1435
|
+
* We now use [`libnpm`](https://npm.im/libnpm) for the API functionality of a lot of our commands! That means you can install a library if you want to write your own tooling around them.
|
|
1436
|
+
* There's now an `npm org` command for managing users in your org.
|
|
1437
|
+
* [`pacote`](https://npm.im/pacote) now consumes npm-style configurations, instead of its own naming for various config vars. This will make it easier to load npm configs using `libnpm.config` and hand them directly to `pacote`.
|
|
1438
|
+
|
|
1439
|
+
There's too many commits to list all of them here, so check out the PR if you're
|
|
1440
|
+
curious about details:
|
|
1441
|
+
|
|
1442
|
+
* [`c5af34c05`](https://github.com/npm/cli/commit/c5af34c05fd569aecd11f18d6d0ddeac3970b253)
|
|
1443
|
+
[npm-registry-client@REMOVED](https://www.youtube.com/watch\?v\=kPIdRJlzERo)
|
|
1444
|
+
([@zkat](https://github.com/zkat))
|
|
1445
|
+
* [`4cca9cb90`](https://github.com/npm/cli/commit/4cca9cb9042c0eeb743377e8f1ae1c07733df43f)
|
|
1446
|
+
[`ad67461dc`](https://github.com/npm/cli/commit/ad67461dc3a73d5ae6569fdbee44c67e1daf86e7)
|
|
1447
|
+
[`77625f9e2`](https://github.com/npm/cli/commit/77625f9e20d4285b7726b3bf3ebc10cb21c638f0)
|
|
1448
|
+
[`6e922aefb`](https://github.com/npm/cli/commit/6e922aefbb4634bbd77ed3b143e0765d63afc7f9)
|
|
1449
|
+
[`584613ea8`](https://github.com/npm/cli/commit/584613ea8ff94b927db4957e5647504b30ca2b1f)
|
|
1450
|
+
[`64de4ebf0`](https://github.com/npm/cli/commit/64de4ebf019b217179039124c6621e74651e4d27)
|
|
1451
|
+
[`6cd87d1a9`](https://github.com/npm/cli/commit/6cd87d1a9bb90e795f9891ea4db384435f4a8930)
|
|
1452
|
+
[`2786834c0`](https://github.com/npm/cli/commit/2786834c0257b8bb1bbb115f1ce7060abaab2e17)
|
|
1453
|
+
[`514558e09`](https://github.com/npm/cli/commit/514558e094460fd0284a759c13965b685133b3fe)
|
|
1454
|
+
[`dec07ebe3`](https://github.com/npm/cli/commit/dec07ebe3312245f6421c6e523660be4973ae8c2)
|
|
1455
|
+
[`084741913`](https://github.com/npm/cli/commit/084741913c4fdb396e589abf3440b4be3aa0b67e)
|
|
1456
|
+
[`45aff0e02`](https://github.com/npm/cli/commit/45aff0e02251785a85e56eafacf9efaeac6f92ae)
|
|
1457
|
+
[`846ddcc44`](https://github.com/npm/cli/commit/846ddcc44538f2d9a51ac79405010dfe97fdcdeb)
|
|
1458
|
+
[`8971ba1b9`](https://github.com/npm/cli/commit/8971ba1b953d4f05ff5094f1822b91526282edd8)
|
|
1459
|
+
[`99156e081`](https://github.com/npm/cli/commit/99156e081a07516d6c970685bc3d858f89dc4f9c)
|
|
1460
|
+
[`ab2155306`](https://github.com/npm/cli/commit/ab215530674d7f6123c9572d0ad4ca9e9b5fb184)
|
|
1461
|
+
[`b37a66542`](https://github.com/npm/cli/commit/b37a66542ca2879069b2acd338b1904de71b7f40)
|
|
1462
|
+
[`d2af0777a`](https://github.com/npm/cli/commit/d2af0777ac179ff5009dbbf0354a4a84f151b60f)
|
|
1463
|
+
[`e0b4c6880`](https://github.com/npm/cli/commit/e0b4c6880504fa2e8491c2fbd098efcb2e496849)
|
|
1464
|
+
[`ff72350b4`](https://github.com/npm/cli/commit/ff72350b4c56d65e4a92671d86a33080bf3c2ea5)
|
|
1465
|
+
[`6ed943303`](https://github.com/npm/cli/commit/6ed943303ce7a267ddb26aa25caa035f832895dd)
|
|
1466
|
+
[`90a069e7d`](https://github.com/npm/cli/commit/90a069e7d4646682211f4cabe289c306ee1d5397)
|
|
1467
|
+
[`b24ed5fdc`](https://github.com/npm/cli/commit/b24ed5fdc3a4395628465ae5273bad54eea274c8)
|
|
1468
|
+
[`ec9fcc14f`](https://github.com/npm/cli/commit/ec9fcc14f4e0e2f3967e2fd6ad8b8433076393cb)
|
|
1469
|
+
[`8a56fa39e`](https://github.com/npm/cli/commit/8a56fa39e61136da45565447fe201a57f04ad4cd)
|
|
1470
|
+
[`41d19e18f`](https://github.com/npm/cli/commit/41d19e18f769c6f0acfdffbdb01d12bf332908ce)
|
|
1471
|
+
[`125ff9551`](https://github.com/npm/cli/commit/125ff9551595dda9dab2edaef10f4c73ae8e1433)
|
|
1472
|
+
[`1c3b226ff`](https://github.com/npm/cli/commit/1c3b226ff37159c426e855e83c8f6c361603901d)
|
|
1473
|
+
[`3c0a7b06b`](https://github.com/npm/cli/commit/3c0a7b06b6473fe068fc8ae8466c07a177975b87)
|
|
1474
|
+
[`08fcb3f0f`](https://github.com/npm/cli/commit/08fcb3f0f26e025702b35253ed70a527ab69977f)
|
|
1475
|
+
[`c8135d97a`](https://github.com/npm/cli/commit/c8135d97a424b38363dc4530c45e4583471e9849)
|
|
1476
|
+
[`ae936f22c`](https://github.com/npm/cli/commit/ae936f22ce80614287f2769e9aaa9a155f03cc15)
|
|
1477
|
+
[#2](https://github.com/npm/cli/pull/2)
|
|
1478
|
+
Move rest of commands to `npm-registry-fetch` and use [`figgy-pudding`](https://npm.im/figgy-pudding) for configs.
|
|
1479
|
+
([@zkat](https://github.com/zkat))
|
|
1480
|
+
|
|
1481
|
+
### NEW FEATURES
|
|
1482
|
+
|
|
1483
|
+
* [`02c837e01`](https://github.com/npm/cli/commit/02c837e01a71a26f37cbd5a09be89df8a9ce01da)
|
|
1484
|
+
[#106](https://github.com/npm/cli/pull/106)
|
|
1485
|
+
Make `npm dist-tags` the same as `npm dist-tag ls`.
|
|
1486
|
+
([@isaacs](https://github.com/isaacs))
|
|
1487
|
+
* [`1065a7809`](https://github.com/npm/cli/commit/1065a7809161fd4dc23e96b642019fc842fdacf2)
|
|
1488
|
+
[#65](https://github.com/npm/cli/pull/65)
|
|
1489
|
+
Add support for `IBM i`.
|
|
1490
|
+
([@dmabupt](https://github.com/dmabupt))
|
|
1491
|
+
* [`a22e6f5fc`](https://github.com/npm/cli/commit/a22e6f5fc3e91350d3c64dcc88eabbe0efbca759)
|
|
1492
|
+
[#131](https://github.com/npm/cli/pull/131)
|
|
1493
|
+
Update profile to support new npm-profile API.
|
|
1494
|
+
([@zkat](https://github.com/zkat))
|
|
1495
|
+
|
|
1496
|
+
### BUGFIXES
|
|
1497
|
+
|
|
1498
|
+
* [`890a74458`](https://github.com/npm/cli/commit/890a74458dd4a55e2d85f3eba9dbf125affa4206)
|
|
1499
|
+
[npm.community#3278](https://npm.community/t/3278)
|
|
1500
|
+
Fix support for passing git binary path config with `--git`.
|
|
1501
|
+
([@larsgw](https://github.com/larsgw))
|
|
1502
|
+
* [`90e55a143`](https://github.com/npm/cli/commit/90e55a143ed1de8678d65c17bc3c2b103a15ddac)
|
|
1503
|
+
[npm.community#2713](https://npm.community/t/npx-envinfo-preset-jest-fails-on-windows-with-a-stack-trace/2713)
|
|
1504
|
+
Check for `npm.config`'s existence in `error-handler.js` to prevent weird
|
|
1505
|
+
errors when failures happen before config object is loaded.
|
|
1506
|
+
([@BeniCheni](https://github.com/BeniCheni))
|
|
1507
|
+
* [`134207174`](https://github.com/npm/cli/commit/134207174652e1eb6d7b0f44fd9858a0b6a0cd6c)
|
|
1508
|
+
[npm.community#2569](https://npm.community/t/2569)
|
|
1509
|
+
Fix checking for optional dependencies.
|
|
1510
|
+
([@larsgw](https://github.com/larsgw))
|
|
1511
|
+
* [`7a2f6b05d`](https://github.com/npm/cli/commit/7a2f6b05d27f3bcf47a48230db62e86afa41c9d3)
|
|
1512
|
+
[npm.community#4172](https://npm.community/t/4172)
|
|
1513
|
+
Remove tink experiments.
|
|
1514
|
+
([@larsgw](https://github.com/larsgw))
|
|
1515
|
+
* [`c5b6056b6`](https://github.com/npm/cli/commit/c5b6056b6b35eefb81ae5fb00a5c7681c5318c22)
|
|
1516
|
+
[#123](https://github.com/npm/cli/pull/123)
|
|
1517
|
+
Handle git branch references correctly.
|
|
1518
|
+
([@johanneswuerbach](https://github.com/johanneswuerbach))
|
|
1519
|
+
* [`f58b43ef2`](https://github.com/npm/cli/commit/f58b43ef2c5e3dea2094340a0cf264b2d11a5da4)
|
|
1520
|
+
[npm.community#3983](https://npm.community/t/npm-audit-error-messaging-update-for-401s/3983)
|
|
1521
|
+
Report any errors above 400 as potentially not supporting audit.
|
|
1522
|
+
([@zkat](https://github.com/zkat))
|
|
1523
|
+
* [`a5c9e6f35`](https://github.com/npm/cli/commit/a5c9e6f35a591a6e2d4b6ace5c01bc03f2b75fdc)
|
|
1524
|
+
[#124](https://github.com/npm/cli/pull/124)
|
|
1525
|
+
Set default homepage to an empty string.
|
|
1526
|
+
([@anchnk](https://github.com/anchnk))
|
|
1527
|
+
* [`5d076351d`](https://github.com/npm/cli/commit/5d076351d7ec1d3585942a9289548166a7fbbd4c)
|
|
1528
|
+
[npm.community#4054](https://npm.community/t/4054)
|
|
1529
|
+
Fix npm-prefix description.
|
|
1530
|
+
([@larsgw](https://github.com/larsgw))
|
|
1531
|
+
|
|
1532
|
+
### DOCS
|
|
1533
|
+
|
|
1534
|
+
* [`31a7274b7`](https://github.com/npm/cli/commit/31a7274b70de18b24e7bee51daa22cc7cbb6141c)
|
|
1535
|
+
[#71](https://github.com/npm/cli/pull/71)
|
|
1536
|
+
Fix typo in npm-token documentation.
|
|
1537
|
+
([@GeorgeTaveras1231](https://github.com/GeorgeTaveras1231))
|
|
1538
|
+
* [`2401b7592`](https://github.com/npm/cli/commit/2401b7592c6ee114e6db7077ebf8c072b7bfe427)
|
|
1539
|
+
Correct docs for fake-registry interface.
|
|
1540
|
+
([@iarna](https://github.com/iarna))
|
|
1541
|
+
|
|
1542
|
+
### DEPENDENCIES
|
|
1543
|
+
|
|
1544
|
+
* [`9cefcdc1d`](https://github.com/npm/cli/commit/9cefcdc1d2289b56f9164d14d7e499e115cfeaee)
|
|
1545
|
+
`npm-registry-fetch@3.8.0`
|
|
1546
|
+
([@zkat](https://github.com/zkat))
|
|
1547
|
+
* [`1c769c9b3`](https://github.com/npm/cli/commit/1c769c9b3e431d324c1a5b6dd10e1fddb5cb88c7)
|
|
1548
|
+
`pacote@9.1.0`
|
|
1549
|
+
([@zkat](https://github.com/zkat))
|
|
1550
|
+
* [`f3bc5539b`](https://github.com/npm/cli/commit/f3bc5539b30446500abcc3873781b2c717f8e22c)
|
|
1551
|
+
`figgy-pudding@3.5.1`
|
|
1552
|
+
([@zkat](https://github.com/zkat))
|
|
1553
|
+
* [`bf7199d3c`](https://github.com/npm/cli/commit/bf7199d3cbf50545da1ebd30d28f0a6ed5444a00)
|
|
1554
|
+
`npm-profile@4.0.1`
|
|
1555
|
+
([@zkat](https://github.com/zkat))
|
|
1556
|
+
* [`118c50496`](https://github.com/npm/cli/commit/118c50496c01231cab3821ae623be6df89cb0a32)
|
|
1557
|
+
`semver@5.5.1`
|
|
1558
|
+
([@isaacs](https://github.com/isaacs))
|
|
1559
|
+
* [`eab4df925`](https://github.com/npm/cli/commit/eab4df9250e9169c694b3f6c287d2932bf5e08fb)
|
|
1560
|
+
`libcipm@3.0.2`
|
|
1561
|
+
([@zkat](https://github.com/zkat))
|
|
1562
|
+
* [`b86e51573`](https://github.com/npm/cli/commit/b86e515734faf433dc6c457c36c1de52795aa870)
|
|
1563
|
+
`libnpm@1.4.0`
|
|
1564
|
+
([@zkat](https://github.com/zkat))
|
|
1565
|
+
* [`56fffbff2`](https://github.com/npm/cli/commit/56fffbff27fe2fae8bef27d946755789ef0d89bd)
|
|
1566
|
+
`get-stream@4.1.0`
|
|
1567
|
+
([@zkat](https://github.com/zkat))
|
|
1568
|
+
* [`df972e948`](https://github.com/npm/cli/commit/df972e94868050b5aa42ac18b527fd929e1de9e4)
|
|
1569
|
+
npm-profile@REMOVED
|
|
1570
|
+
([@zkat](https://github.com/zkat))
|
|
1571
|
+
* [`32c73bf0e`](https://github.com/npm/cli/commit/32c73bf0e3f0441d0c7c940292235d4b93aa87e2)
|
|
1572
|
+
`libnpm@2.0.1`
|
|
1573
|
+
([@zkat](https://github.com/zkat))
|
|
1574
|
+
* [`569491b80`](https://github.com/npm/cli/commit/569491b8042f939dc13986b6adb2a0a260f95b63)
|
|
1575
|
+
`licensee@5.0.0`
|
|
1576
|
+
([@zkat](https://github.com/zkat))
|
|
1577
|
+
* [`a3ba0ccf1`](https://github.com/npm/cli/commit/a3ba0ccf1fa86aec56b1ad49883abf28c1f56b3c)
|
|
1578
|
+
move rimraf to prod deps
|
|
1579
|
+
([@zkat](https://github.com/zkat))
|
|
1580
|
+
* [`f63a0d6cf`](https://github.com/npm/cli/commit/f63a0d6cf0b7db3dcc80e72e1383c3df723c8119)
|
|
1581
|
+
`spdx-license-ids@3.0.3`:
|
|
1582
|
+
Ref: https://github.com/npm/cli/pull/121
|
|
1583
|
+
([@zkat](https://github.com/zkat))
|
|
1584
|
+
* [`f350e714f`](https://github.com/npm/cli/commit/f350e714f66a77f71a7ebe17daeea2ea98179a1a)
|
|
1585
|
+
`aproba@2.0.0`
|
|
1586
|
+
([@aeschright](https://github.com/aeschright))
|
|
1587
|
+
* [`a67e4d8b2`](https://github.com/npm/cli/commit/a67e4d8b214e58ede037c3854961acb33fd889da)
|
|
1588
|
+
`byte-size@5.0.1`
|
|
1589
|
+
([@aeschright](https://github.com/aeschright))
|
|
1590
|
+
* [`8bea4efa3`](https://github.com/npm/cli/commit/8bea4efa34857c4e547904b3630dd442def241de)
|
|
1591
|
+
`cacache@11.3.2`
|
|
1592
|
+
([@aeschright](https://github.com/aeschright))
|
|
1593
|
+
* [`9d4776836`](https://github.com/npm/cli/commit/9d4776836a4eaa4b19701b4e4f00cd64578bf078)
|
|
1594
|
+
`chownr@1.1.1`
|
|
1595
|
+
([@aeschright](https://github.com/aeschright))
|
|
1596
|
+
* [`70da139e9`](https://github.com/npm/cli/commit/70da139e97ed1660c216e2d9b3f9cfb986bfd4a4)
|
|
1597
|
+
`ci-info@2.0.0`
|
|
1598
|
+
([@aeschright](https://github.com/aeschright))
|
|
1599
|
+
* [`bcdeddcc3`](https://github.com/npm/cli/commit/bcdeddcc3d4dc242f42404223dafe4afdc753b32)
|
|
1600
|
+
`cli-table3@0.5.1`
|
|
1601
|
+
([@aeschright](https://github.com/aeschright))
|
|
1602
|
+
* [`63aab82c7`](https://github.com/npm/cli/commit/63aab82c7bfca4f16987cf4156ddebf8d150747c)
|
|
1603
|
+
`is-cidr@3.0.0`
|
|
1604
|
+
([@aeschright](https://github.com/aeschright))
|
|
1605
|
+
* [`d522bd90c`](https://github.com/npm/cli/commit/d522bd90c3b0cb08518f249ae5b90bd609fff165)
|
|
1606
|
+
`JSONStream@1.3.5`
|
|
1607
|
+
([@aeschright](https://github.com/aeschright))
|
|
1608
|
+
* [`2a59bfc79`](https://github.com/npm/cli/commit/2a59bfc7989bd5575d8cbba912977c6d1ba92567)
|
|
1609
|
+
`libnpmhook@5.0.2`
|
|
1610
|
+
([@aeschright](https://github.com/aeschright))
|
|
1611
|
+
* [`66d60e394`](https://github.com/npm/cli/commit/66d60e394e5a96330f90e230505758f19a3643ac)
|
|
1612
|
+
`marked@0.6.0`
|
|
1613
|
+
([@aeschright](https://github.com/aeschright))
|
|
1614
|
+
* [`8213def9a`](https://github.com/npm/cli/commit/8213def9aa9b6e702887e4f2ed7654943e1e4154)
|
|
1615
|
+
`npm-packlist@1.2.0`
|
|
1616
|
+
([@aeschright](https://github.com/aeschright))
|
|
1617
|
+
* [`e4ffc6a2b`](https://github.com/npm/cli/commit/e4ffc6a2bfb8d0b7047cb6692030484760fc8c91)
|
|
1618
|
+
`unique-filename@1.1.1`
|
|
1619
|
+
([@aeschright](https://github.com/aeschright))
|
|
1620
|
+
* [`09a5c2fab`](https://github.com/npm/cli/commit/09a5c2fabe0d1c00ec8c99f328f6d28a3495eb0b)
|
|
1621
|
+
`semver@5.6.0`
|
|
1622
|
+
([@aeschright](https://github.com/aeschright))
|
|
1623
|
+
* [`740e79e17`](https://github.com/npm/cli/commit/740e79e17a78247f73349525043c9388ce94459a)
|
|
1624
|
+
`rimraf@2.6.3`
|
|
1625
|
+
([@aeschright](https://github.com/aeschright))
|
|
1626
|
+
* [`455476c8d`](https://github.com/npm/cli/commit/455476c8d148ca83a4e030e96e93dcf1c7f0ff5f)
|
|
1627
|
+
`require-inject@1.4.4`
|
|
1628
|
+
([@aeschright](https://github.com/aeschright))
|
|
1629
|
+
* [`3f40251c5`](https://github.com/npm/cli/commit/3f40251c5868feaacbcdbcb1360877ce76998f5e)
|
|
1630
|
+
`npm-pick-manifest@2.2.3`
|
|
1631
|
+
([@aeschright](https://github.com/aeschright))
|
|
1632
|
+
* [`4ffa8a8e9`](https://github.com/npm/cli/commit/4ffa8a8e9e80e5562898dd76fe5a49f5694f38c8)
|
|
1633
|
+
`query-string@6.2.0`
|
|
1634
|
+
([@aeschright](https://github.com/aeschright))
|
|
1635
|
+
* [`a0a0ca9ec`](https://github.com/npm/cli/commit/a0a0ca9ec2a962183d420fa751f4139969760f18)
|
|
1636
|
+
`pacote@9.3.0`
|
|
1637
|
+
([@aeschright](https://github.com/aeschright))
|
|
1638
|
+
* [`5777ea8ad`](https://github.com/npm/cli/commit/5777ea8ad2058be3166a6dad2d31d2d393c9f778)
|
|
1639
|
+
`readable-stream@3.1.1`
|
|
1640
|
+
([@aeschright](https://github.com/aeschright))
|
|
1641
|
+
* [`887e94386`](https://github.com/npm/cli/commit/887e94386f42cb59a5628e7762b3662d084b23c8)
|
|
1642
|
+
`lru-cache@4.1.5`
|
|
1643
|
+
([@aeschright](https://github.com/aeschright))
|
|
1644
|
+
* [`41f15524c`](https://github.com/npm/cli/commit/41f15524c58c59d206c4b1d25ae9e0f22745213b)
|
|
1645
|
+
Updating semver docs.
|
|
1646
|
+
([@aeschright](https://github.com/aeschright))
|
|
1647
|
+
* [`fb3bbb72d`](https://github.com/npm/cli/commit/fb3bbb72d448ac37a465b31233b21381917422f3)
|
|
1648
|
+
`npm-audit-report@1.3.2`:
|
|
1649
|
+
([@melkikh](https://github.com/melkikh))
|
|
1650
|
+
|
|
1651
|
+
### TESTING
|
|
1652
|
+
|
|
1653
|
+
* [`f1edffba9`](https://github.com/npm/cli/commit/f1edffba90ebd96cf88675d2e18ebc48954ba50e)
|
|
1654
|
+
Modernize maketest script.
|
|
1655
|
+
([@iarna](https://github.com/iarna))
|
|
1656
|
+
* [`ae263473d`](https://github.com/npm/cli/commit/ae263473d92a896b482830d4019a04b5dbd1e9d7)
|
|
1657
|
+
maketest: Use promise based example common.npm call.
|
|
1658
|
+
([@iarna](https://github.com/iarna))
|
|
1659
|
+
* [`d9970da5e`](https://github.com/npm/cli/commit/d9970da5ee97a354eab01cbf16f9101693a15d2d)
|
|
1660
|
+
maketest: Use newEnv for env production.
|
|
1661
|
+
([@iarna](https://github.com/iarna))
|
|
1662
|
+
|
|
1663
|
+
### MISCELLANEOUS
|
|
1664
|
+
|
|
1665
|
+
* [`c665f35aa`](https://github.com/npm/cli/commit/c665f35aacdb8afdbe35f3dd7ccb62f55ff6b896)
|
|
1666
|
+
[#119](https://github.com/npm/cli/pull/119)
|
|
1667
|
+
Replace var with const/let in lib/repo.js.
|
|
1668
|
+
([@watilde](https://github.com/watilde))
|
|
1669
|
+
* [`46639ba9f`](https://github.com/npm/cli/commit/46639ba9f04ea729502f1af28b02eb67fb6dcb66)
|
|
1670
|
+
Update package-lock.json for https tarball URLs
|
|
1671
|
+
([@aeschright](https://github.com/aeschright))
|
|
1672
|
+
|
|
1673
|
+
## v6.5.0 (2018-11-28):
|
|
1674
|
+
|
|
1675
|
+
### NEW FEATURES
|
|
1676
|
+
|
|
1677
|
+
* [`fc1a8d185`](https://github.com/npm/cli/commit/fc1a8d185fc678cdf3784d9df9eef9094e0b2dec)
|
|
1678
|
+
Backronym `npm ci` to `npm clean-install`.
|
|
1679
|
+
([@zkat](https://github.com/zkat))
|
|
1680
|
+
* [`4be51a9cc`](https://github.com/npm/cli/commit/4be51a9cc65635bb26fa4ce62233f26e0104bc20)
|
|
1681
|
+
[#81](https://github.com/npm/cli/pull/81)
|
|
1682
|
+
Adds 'Homepage' to outdated --long output.
|
|
1683
|
+
([@jbottigliero](https://github.com/jbottigliero))
|
|
1684
|
+
|
|
1685
|
+
### BUGFIXES
|
|
1686
|
+
|
|
1687
|
+
* [`89652cb9b`](https://github.com/npm/cli/commit/89652cb9b810f929f5586fc90cc6794d076603fb)
|
|
1688
|
+
[npm.community#1661](https://npm.community/t/1661)
|
|
1689
|
+
Fix sign-git-commit options. They were previously totally wrong.
|
|
1690
|
+
([@zkat](https://github.com/zkat))
|
|
1691
|
+
* [`414f2d1a1`](https://github.com/npm/cli/commit/414f2d1a1bdffc02ed31ebb48a43216f284c21d4)
|
|
1692
|
+
[npm.community#1742](https://npm.community/t/npm-audit-making-non-rfc-compliant-requests-to-server-resulting-in-400-bad-request-pr-with-fix/1742)
|
|
1693
|
+
Set lowercase headers for npm audit requests.
|
|
1694
|
+
([@maartenba](https://github.com/maartenba))
|
|
1695
|
+
* [`a34246baf`](https://github.com/npm/cli/commit/a34246bafe73218dc9e3090df9ee800451db2c7d)
|
|
1696
|
+
[#75](https://github.com/npm/cli/pull/75)
|
|
1697
|
+
Fix `npm edit` handling of scoped packages.
|
|
1698
|
+
([@larsgw](https://github.com/larsgw))
|
|
1699
|
+
* [`d3e8a7c72`](https://github.com/npm/cli/commit/d3e8a7c7240dd25379a5bcad324a367c58733c73)
|
|
1700
|
+
[npm.community#2303](https://npm.community/t/npm-ci-logs-success-to-stderr/2303)
|
|
1701
|
+
Make summary output for `npm ci` go to `stdout`, not `stderr`.
|
|
1702
|
+
([@alopezsanchez](https://github.com/alopezsanchez))
|
|
1703
|
+
* [`71d8fb4a9`](https://github.com/npm/cli/commit/71d8fb4a94d65e1855f6d0c5f2ad2b7c3202e3c4)
|
|
1704
|
+
[npm.community#1377](https://npm.community/t/unhelpful-error-message-when-publishing-without-logging-in-error-eperm-operation-not-permitted-unlink/1377/3)
|
|
1705
|
+
Close the file descriptor during publish if exiting upload via an error. This
|
|
1706
|
+
will prevent strange error messages when the upload fails and make sure
|
|
1707
|
+
cleanup happens correctly.
|
|
1708
|
+
([@macdja38](https://github.com/macdja38))
|
|
1709
|
+
|
|
1710
|
+
### DOCS UPDATES
|
|
1711
|
+
|
|
1712
|
+
* [`b1a8729c8`](https://github.com/npm/cli/commit/b1a8729c80175243fbbeecd164e9ddd378a09a50)
|
|
1713
|
+
[#60](https://github.com/npm/cli/pull/60)
|
|
1714
|
+
Mention --otp flag when prompting for OTP.
|
|
1715
|
+
([@bakkot](https://github.com/bakkot))
|
|
1716
|
+
* [`bcae4ea81`](https://github.com/npm/cli/commit/bcae4ea8173e489a76cc226bbd30dd9eabe21ec6)
|
|
1717
|
+
[#64](https://github.com/npm/cli/pull/64)
|
|
1718
|
+
Clarify that git dependencies use the default branch, not just `master`.
|
|
1719
|
+
([@zckrs](https://github.com/zckrs))
|
|
1720
|
+
* [`15da82690`](https://github.com/npm/cli/commit/15da8269032bf509ade3252978e934f2a61d4499)
|
|
1721
|
+
[#72](https://github.com/npm/cli/pull/72)
|
|
1722
|
+
`bash_completion.d` dir is sometimes found in `/etc` not `/usr/local`.
|
|
1723
|
+
([@RobertKielty](https://github.com/RobertKielty))
|
|
1724
|
+
* [`8a6ecc793`](https://github.com/npm/cli/commit/8a6ecc7936dae2f51638397ff5a1d35cccda5495)
|
|
1725
|
+
[#74](https://github.com/npm/cli/pull/74)
|
|
1726
|
+
Update OTP documentation for `dist-tag add` to clarify `--otp` is needed right
|
|
1727
|
+
now.
|
|
1728
|
+
([@scotttrinh](https://github.com/scotttrinh))
|
|
1729
|
+
* [`dcc03ec85`](https://github.com/npm/cli/commit/dcc03ec858bddd7aa2173b5a86b55c1c2385a2a3)
|
|
1730
|
+
[#82](https://github.com/npm/cli/pull/82)
|
|
1731
|
+
Note that `prepare` runs when installing git dependencies.
|
|
1732
|
+
([@seishun](https://github.com/seishun))
|
|
1733
|
+
* [`a91a470b7`](https://github.com/npm/cli/commit/a91a470b71e08ccf6a75d4fb8c9937789fa8d067)
|
|
1734
|
+
[#83](https://github.com/npm/cli/pull/83)
|
|
1735
|
+
Specify that --dry-run isn't available in older versions of npm publish.
|
|
1736
|
+
([@kjin](https://github.com/kjin))
|
|
1737
|
+
* [`1b2fabcce`](https://github.com/npm/cli/commit/1b2fabccede37242233755961434c52536224de5)
|
|
1738
|
+
[#96](https://github.com/npm/cli/pull/96)
|
|
1739
|
+
Fix inline code tag issue in docs.
|
|
1740
|
+
([@midare](https://github.com/midare))
|
|
1741
|
+
* [`6cc70cc19`](https://github.com/npm/cli/commit/6cc70cc1977e58a3e1ea48e660ffc6b46b390e59)
|
|
1742
|
+
[#68](https://github.com/npm/cli/pull/68)
|
|
1743
|
+
Add semver link and a note on empty string format to `deprecate` doc.
|
|
1744
|
+
([@neverett](https://github.com/neverett))
|
|
1745
|
+
* [`61dbbb7c3`](https://github.com/npm/cli/commit/61dbbb7c3474834031bce88c423850047e8131dc)
|
|
1746
|
+
Fix semver docs after version update.
|
|
1747
|
+
([@zkat](https://github.com/zkat))
|
|
1748
|
+
* [`4acd45a3d`](https://github.com/npm/cli/commit/4acd45a3d0ce92f9999446226fe7dfb89a90ba2e)
|
|
1749
|
+
[#78](https://github.com/npm/cli/pull/78)
|
|
1750
|
+
Correct spelling across various docs.
|
|
1751
|
+
([@hugovk](https://github.com/hugovk))
|
|
1752
|
+
|
|
1753
|
+
### DEPENDENCIES
|
|
1754
|
+
|
|
1755
|
+
* [`4f761283e`](https://github.com/npm/cli/commit/4f761283e8896d0ceb5934779005646463a030e8)
|
|
1756
|
+
`figgy-pudding@3.5.1`
|
|
1757
|
+
([@zkat](https://github.com/zkat))
|
|
1758
|
+
* [`3706db0bc`](https://github.com/npm/cli/commit/3706db0bcbc306d167bb902362e7f6962f2fe1a1)
|
|
1759
|
+
[npm.community#1764](https://npm.community/t/crash-invalid-config-key-requested-error/1764)
|
|
1760
|
+
`ssri@6.0.1`
|
|
1761
|
+
([@zkat](https://github.com/zkat))
|
|
1762
|
+
* [`83c2b117d`](https://github.com/npm/cli/commit/83c2b117d0b760d0ea8d667e5e4bdfa6a7a7a8f6)
|
|
1763
|
+
`bluebird@3.5.2`
|
|
1764
|
+
([@petkaantonov](https://github.com/petkaantonov))
|
|
1765
|
+
* [`2702f46bd`](https://github.com/npm/cli/commit/2702f46bd7284fb303ca2119d23c52536811d705)
|
|
1766
|
+
`ci-info@1.5.1`
|
|
1767
|
+
([@watson](https://github.com/watson))
|
|
1768
|
+
* [`4db6c3898`](https://github.com/npm/cli/commit/4db6c3898b07100e3a324e4aae50c2fab4b93a04)
|
|
1769
|
+
`config-chain@1.1.1`:2
|
|
1770
|
+
([@dawsbot](https://github.com/dawbot))
|
|
1771
|
+
* [`70bee4f69`](https://github.com/npm/cli/commit/70bee4f69bb4ce4e18c48582fe2b48d8b4aba566)
|
|
1772
|
+
`glob@7.1.3`
|
|
1773
|
+
([@isaacs](https://github.com/isaacs))
|
|
1774
|
+
* [`e469fd6be`](https://github.com/npm/cli/commit/e469fd6be95333dcaa7cf377ca3620994ca8d0de)
|
|
1775
|
+
`opener@1.5.1`:
|
|
1776
|
+
Fix browser opening under Windows Subsystem for Linux (WSL).
|
|
1777
|
+
([@thijsputman](https://github.com/thijsputman))
|
|
1778
|
+
* [`03840dced`](https://github.com/npm/cli/commit/03840dced865abdca6e6449ea030962e5b19db0c)
|
|
1779
|
+
`semver@5.5.1`
|
|
1780
|
+
([@iarna](https://github.com/iarna))
|
|
1781
|
+
* [`161dc0b41`](https://github.com/npm/cli/commit/161dc0b4177e76306a0e3b8660b3b496cc3db83b)
|
|
1782
|
+
`bluebird@3.5.3`
|
|
1783
|
+
([@petkaantonov](https://github.com/petkaantonov))
|
|
1784
|
+
* [`bb6f94395`](https://github.com/npm/cli/commit/bb6f94395491576ec42996ff6665df225f6b4377)
|
|
1785
|
+
`graceful-fs@4.1.1`:5
|
|
1786
|
+
([@isaacs](https://github.com/isaacs))
|
|
1787
|
+
* [`43b1f4c91`](https://github.com/npm/cli/commit/43b1f4c91fa1d7b3ebb6aa2d960085e5f3ac7607)
|
|
1788
|
+
`tar@4.4.8`
|
|
1789
|
+
([@isaacs](https://github.com/isaacs))
|
|
1790
|
+
* [`ab62afcc4`](https://github.com/npm/cli/commit/ab62afcc472de82c479bf91f560a0bbd6a233c80)
|
|
1791
|
+
`npm-packlist@1.1.1`:2
|
|
1792
|
+
([@isaacs](https://github.com/isaacs))
|
|
1793
|
+
* [`027f06be3`](https://github.com/npm/cli/commit/027f06be35bb09f390e46fcd2b8182539939d1f7)
|
|
1794
|
+
`ci-info@1.6.0`
|
|
1795
|
+
([@watson](https://github.com/watson))
|
|
1796
|
+
|
|
1797
|
+
### MISCELLANEOUS
|
|
1798
|
+
|
|
1799
|
+
* [`27217dae8`](https://github.com/npm/cli/commit/27217dae8adbc577ee9cb323b7cfe9c6b2493aca)
|
|
1800
|
+
[#70](https://github.com/npm/cli/pull/70)
|
|
1801
|
+
Automatically audit dependency licenses for npm itself.
|
|
1802
|
+
([@kemitchell](https://github.com/kemitchell))
|
|
1803
|
+
|
|
1804
|
+
## v6.4.1 (2018-08-22):
|
|
1805
|
+
|
|
1806
|
+
### BUGFIXES
|
|
1807
|
+
|
|
1808
|
+
* [`4bd40f543`](https://github.com/npm/cli/commit/4bd40f543dc89f0721020e7d0bb3497300d74818)
|
|
1809
|
+
[#42](https://github.com/npm/cli/pull/42)
|
|
1810
|
+
Prevent blowing up on malformed responses from the `npm audit` endpoint, such
|
|
1811
|
+
as with third-party registries.
|
|
1812
|
+
([@framp](https://github.com/framp))
|
|
1813
|
+
* [`0e576f0aa`](https://github.com/npm/cli/commit/0e576f0aa6ea02653d948c10f29102a2d4a31944)
|
|
1814
|
+
[#46](https://github.com/npm/cli/pull/46)
|
|
1815
|
+
Fix `NO_PROXY` support by renaming npm-side config to `--noproxy`. The
|
|
1816
|
+
environment variable should still work.
|
|
1817
|
+
([@SneakyFish5](https://github.com/SneakyFish5))
|
|
1818
|
+
* [`d8e811d6a`](https://github.com/npm/cli/commit/d8e811d6adf3d87474982cb831c11316ac725605)
|
|
1819
|
+
[#33](https://github.com/npm/cli/pull/33)
|
|
1820
|
+
Disable `update-notifier` checks when a CI environment is detected.
|
|
1821
|
+
([@Sibiraj-S](https://github.com/Sibiraj-S))
|
|
1822
|
+
* [`1bc5b8cea`](https://github.com/npm/cli/commit/1bc5b8ceabc86bfe4777732f25ffef0f3de81bd1)
|
|
1823
|
+
[#47](https://github.com/npm/cli/pull/47)
|
|
1824
|
+
Fix issue where `postpack` scripts would break if `pack` was used with
|
|
1825
|
+
`--dry-run`.
|
|
1826
|
+
([@larsgw](https://github.com/larsgw))
|
|
1827
|
+
|
|
1828
|
+
### DEPENDENCY BUMPS
|
|
1829
|
+
|
|
1830
|
+
* [`4c57316d5`](https://github.com/npm/cli/commit/4c57316d5633e940105fa545b52d8fbfd2eb9f75)
|
|
1831
|
+
`figgy-pudding@3.4.1`
|
|
1832
|
+
([@zkat](https://github.com/zkat))
|
|
1833
|
+
* [`85f4d7905`](https://github.com/npm/cli/commit/85f4d79059865d5267f3516b6cdbc746012202c6)
|
|
1834
|
+
`cacache@11.2.0`
|
|
1835
|
+
([@zkat](https://github.com/zkat))
|
|
1836
|
+
* [`d20ac242a`](https://github.com/npm/cli/commit/d20ac242aeb44aa3581c65c052802a02d5eb22f3)
|
|
1837
|
+
`npm-packlist@1.1.11`:
|
|
1838
|
+
No real changes in npm-packlist, but npm-bundled included a
|
|
1839
|
+
circular dependency fix, as well as adding a proper LICENSE file.
|
|
1840
|
+
([@isaacs](https://github.com/isaacs))
|
|
1841
|
+
* [`e8d5f4418`](https://github.com/npm/cli/commit/e8d5f441821553a31fc8cd751670663699d2c8ce)
|
|
1842
|
+
[npm.community#632](https://npm.community/t/using-npm-ci-does-not-run-prepare-script-for-git-modules/632)
|
|
1843
|
+
`libcipm@2.0.2`:
|
|
1844
|
+
Fixes issue where `npm ci` wasn't running the `prepare` lifecycle script when
|
|
1845
|
+
installing git dependencies
|
|
1846
|
+
([@edahlseng](https://github.com/edahlseng))
|
|
1847
|
+
* [`a5e6f78e9`](https://github.com/npm/cli/commit/a5e6f78e916873f7d18639ebdb8abd20479615a9)
|
|
1848
|
+
`JSONStream@1.3.4`:
|
|
1849
|
+
Fixes memory leak problem when streaming large files (like legacy npm search).
|
|
1850
|
+
([@daern91](https://github.com/daern91))
|
|
1851
|
+
* [`3b940331d`](https://github.com/npm/cli/commit/3b940331dcccfa67f92366adb7ffd9ecf7673a9a)
|
|
1852
|
+
[npm.community#1042](https://npm.community/t/3-path-variables-are-assigned-to-child-process-launched-by-npm/1042)
|
|
1853
|
+
`npm-lifecycle@2.1.0`:
|
|
1854
|
+
Fixes issue for Windows user where multiple `Path`/`PATH` variables were being
|
|
1855
|
+
added to the environment and breaking things in all sorts of fun and
|
|
1856
|
+
interesting ways.
|
|
1857
|
+
([@JimiC](https://github.com/JimiC))
|
|
1858
|
+
* [`d612d2ce8`](https://github.com/npm/cli/commit/d612d2ce8fab72026f344f125539ecbf3746af9a)
|
|
1859
|
+
`npm-registry-client@8.6.0`
|
|
1860
|
+
([@iarna](https://github.com/iarna))
|
|
1861
|
+
* [`1f6ba1cb1`](https://github.com/npm/cli/commit/1f6ba1cb174590c1f5d2b00e2ca238dfa39d507a)
|
|
1862
|
+
`opener@1.5.0`
|
|
1863
|
+
([@domenic](https://github.com/domenic))
|
|
1864
|
+
* [`37b8f405f`](https://github.com/npm/cli/commit/37b8f405f35c861b7beeed56f71ad20b0bf87889)
|
|
1865
|
+
`request@2.88.0`
|
|
1866
|
+
([@mikeal](https://github.com/mikeal))
|
|
1867
|
+
* [`bb91a2a14`](https://github.com/npm/cli/commit/bb91a2a14562e77769057f1b6d06384be6d6bf7f)
|
|
1868
|
+
`tacks@1.2.7`
|
|
1869
|
+
([@iarna](https://github.com/iarna))
|
|
1870
|
+
* [`30bc9900a`](https://github.com/npm/cli/commit/30bc9900ae79c80bf0bdee0ae6372da6f668124c)
|
|
1871
|
+
`ci-info@1.4.0`:
|
|
1872
|
+
Adds support for two more CI services
|
|
1873
|
+
([@watson](https://github.com/watson))
|
|
1874
|
+
* [`1d2fa4ddd`](https://github.com/npm/cli/commit/1d2fa4dddcab8facfee92096cc24b299387f3182)
|
|
1875
|
+
`marked@0.5.0`
|
|
1876
|
+
([@joshbruce](https://github.com/joshbruce))
|
|
1877
|
+
|
|
1878
|
+
### DOCUMENTATION
|
|
1879
|
+
|
|
1880
|
+
* [`08ecde292`](https://github.com/npm/cli/commit/08ecde2928f8c89a2fdaa800ae845103750b9327)
|
|
1881
|
+
[#54](https://github.com/npm/cli/pull/54)
|
|
1882
|
+
Mention registry terms of use in manpage and registry docs and update language
|
|
1883
|
+
in README for it.
|
|
1884
|
+
([@kemitchell](https://github.com/kemitchell))
|
|
1885
|
+
* [`de956405d`](https://github.com/npm/cli/commit/de956405d8b72354f98579d00c6dd30ac3b9bddf)
|
|
1886
|
+
[#41](https://github.com/npm/cli/pull/41)
|
|
1887
|
+
Add documentation for `--dry-run` in `install` and `pack` docs.
|
|
1888
|
+
([@reconbot](https://github.com/reconbot))
|
|
1889
|
+
* [`95031b90c`](https://github.com/npm/cli/commit/95031b90ce0b0c4dcd5e4eafc86e3e5bfd59fb3e)
|
|
1890
|
+
[#48](https://github.com/npm/cli/pull/48)
|
|
1891
|
+
Update republish time and lightly reorganize republish info.
|
|
1892
|
+
([@neverett](https://github.com/neverett))
|
|
1893
|
+
* [`767699b68`](https://github.com/npm/cli/commit/767699b6829b8b899d5479445e99b0ffc43ff92d)
|
|
1894
|
+
[#53](https://github.com/npm/cli/pull/53)
|
|
1895
|
+
Correct `npm@6.4.0` release date in changelog.
|
|
1896
|
+
([@charmander](https://github.com/charmander))
|
|
1897
|
+
* [`3fea3166e`](https://github.com/npm/cli/commit/3fea3166eb4f43f574fcfd9ee71a171feea2bc29)
|
|
1898
|
+
[#55](https://github.com/npm/cli/pull/55)
|
|
1899
|
+
Align command descriptions in help text.
|
|
1900
|
+
([@erik](https://github.com/erik))
|
|
1901
|
+
|
|
1902
|
+
## v6.4.0 (2018-08-09):
|
|
1903
|
+
|
|
1904
|
+
### NEW FEATURES
|
|
1905
|
+
|
|
1906
|
+
* [`6e9f04b0b`](https://github.com/npm/cli/commit/6e9f04b0baed007169d4e0c341f097cf133debf7)
|
|
1907
|
+
[npm/cli#8](https://github.com/npm/cli/pull/8)
|
|
1908
|
+
Search for authentication token defined by environment variables by preventing
|
|
1909
|
+
the translation layer from env variable to npm option from breaking
|
|
1910
|
+
`:_authToken`.
|
|
1911
|
+
([@mkhl](https://github.com/mkhl))
|
|
1912
|
+
* [`84bfd23e7`](https://github.com/npm/cli/commit/84bfd23e7d6434d30595594723a6e1976e84b022)
|
|
1913
|
+
[npm/cli#35](https://github.com/npm/cli/pull/35)
|
|
1914
|
+
Stop filtering out non-IPv4 addresses from `local-addrs`, making npm actually
|
|
1915
|
+
use IPv6 addresses when it must.
|
|
1916
|
+
([@valentin2105](https://github.com/valentin2105))
|
|
1917
|
+
* [`792c8c709`](https://github.com/npm/cli/commit/792c8c709dc7a445687aa0c8cba5c50bc4ed83fd)
|
|
1918
|
+
[npm/cli#31](https://github.com/npm/cli/pull/31)
|
|
1919
|
+
configurable audit level for non-zero exit
|
|
1920
|
+
`npm audit` currently exits with exit code 1 if any vulnerabilities are found of any level.
|
|
1921
|
+
Add a flag of `--audit-level` to `npm audit` to allow it to pass if only vulnerabilities below a certain level are found.
|
|
1922
|
+
Example: `npm audit --audit-level=high` will exit with 0 if only low or moderate level vulns are detected.
|
|
1923
|
+
([@lennym](https://github.com/lennym))
|
|
1924
|
+
|
|
1925
|
+
### BUGFIXES
|
|
1926
|
+
|
|
1927
|
+
* [`d81146181`](https://github.com/npm/cli/commit/d8114618137bb5b9a52a86711bb8dc18bfc8e60c)
|
|
1928
|
+
[npm/cli#32](https://github.com/npm/cli/pull/32)
|
|
1929
|
+
Don't check for updates to npm when we are updating npm itself.
|
|
1930
|
+
([@olore](https://github.com/olore))
|
|
1931
|
+
|
|
1932
|
+
### DEPENDENCY UPDATES
|
|
1933
|
+
|
|
1934
|
+
A very special dependency update event! Since the [release of
|
|
1935
|
+
`node-gyp@3.8.0`](https://github.com/nodejs/node-gyp/pull/1521), an awkward
|
|
1936
|
+
version conflict that was preventing `request` from begin flattened was
|
|
1937
|
+
resolved. This means two things:
|
|
1938
|
+
|
|
1939
|
+
1. We've cut down the npm tarball size by another 200kb, to 4.6MB
|
|
1940
|
+
2. `npm audit` now shows no vulnerabilities for npm itself!
|
|
1941
|
+
|
|
1942
|
+
Thanks, [@rvagg](https://github.com/rvagg)!
|
|
1943
|
+
|
|
1944
|
+
* [`866d776c2`](https://github.com/npm/cli/commit/866d776c27f80a71309389aaab42825b2a0916f6)
|
|
1945
|
+
`request@2.87.0`
|
|
1946
|
+
([@simov](https://github.com/simov))
|
|
1947
|
+
* [`f861c2b57`](https://github.com/npm/cli/commit/f861c2b579a9d4feae1653222afcefdd4f0e978f)
|
|
1948
|
+
`node-gyp@3.8.0`
|
|
1949
|
+
([@rvagg](https://github.com/rvagg))
|
|
1950
|
+
* [`32e6947c6`](https://github.com/npm/cli/commit/32e6947c60db865257a0ebc2f7e754fedf7a6fc9)
|
|
1951
|
+
[npm/cli#39](https://github.com/npm/cli/pull/39)
|
|
1952
|
+
`colors@1.1.2`:
|
|
1953
|
+
REVERT REVERT, newer versions of this library are broken and print ansi
|
|
1954
|
+
codes even when disabled.
|
|
1955
|
+
([@iarna](https://github.com/iarna))
|
|
1956
|
+
* [`beb96b92c`](https://github.com/npm/cli/commit/beb96b92caf061611e3faafc7ca10e77084ec335)
|
|
1957
|
+
`libcipm@2.0.1`
|
|
1958
|
+
([@zkat](https://github.com/zkat))
|
|
1959
|
+
* [`348fc91ad`](https://github.com/npm/cli/commit/348fc91ad223ff91cd7bcf233018ea1d979a2af1)
|
|
1960
|
+
`validate-npm-package-license@3.0.4`: Fixes errors with empty or string-only
|
|
1961
|
+
license fields.
|
|
1962
|
+
([@Gudahtt](https://github.com/Gudahtt))
|
|
1963
|
+
* [`e57d34575`](https://github.com/npm/cli/commit/e57d3457547ef464828fc6f82ae4750f3e511550)
|
|
1964
|
+
`iferr@1.0.2`
|
|
1965
|
+
([@shesek](https://github.com/shesek))
|
|
1966
|
+
* [`46f1c6ad4`](https://github.com/npm/cli/commit/46f1c6ad4b2fd5b0d7ec879b76b76a70a3a2595c)
|
|
1967
|
+
`tar@4.4.6`
|
|
1968
|
+
([@isaacs](https://github.com/isaacs))
|
|
1969
|
+
* [`50df1bf69`](https://github.com/npm/cli/commit/50df1bf691e205b9f13e0fff0d51a68772c40561)
|
|
1970
|
+
`hosted-git-info@2.7.1`
|
|
1971
|
+
([@iarna](https://github.com/iarna))
|
|
1972
|
+
([@Erveon](https://github.com/Erveon))
|
|
1973
|
+
([@huochunpeng](https://github.com/huochunpeng))
|
|
1974
|
+
|
|
1975
|
+
### DOCUMENTATION
|
|
1976
|
+
|
|
1977
|
+
* [`af98e76ed`](https://github.com/npm/cli/commit/af98e76ed96af780b544962aa575585b3fa17b9a)
|
|
1978
|
+
[npm/cli#34](https://github.com/npm/cli/pull/34)
|
|
1979
|
+
Remove `npm publish` from list of commands not affected by `--dry-run`.
|
|
1980
|
+
([@joebowbeer](https://github.com/joebowbeer))
|
|
1981
|
+
* [`e2b0f0921`](https://github.com/npm/cli/commit/e2b0f092193c08c00f12a6168ad2bd9d6e16f8ce)
|
|
1982
|
+
[npm/cli#36](https://github.com/npm/cli/pull/36)
|
|
1983
|
+
Tweak formatting in repository field examples.
|
|
1984
|
+
([@noahbenham](https://github.com/noahbenham))
|
|
1985
|
+
* [`e2346e770`](https://github.com/npm/cli/commit/e2346e7702acccefe6d711168c2b0e0e272e194a)
|
|
1986
|
+
[npm/cli#14](https://github.com/npm/cli/pull/14)
|
|
1987
|
+
Used `process.env` examples to make accessing certain `npm run-scripts`
|
|
1988
|
+
environment variables more clear.
|
|
1989
|
+
([@mwarger](https://github.com/mwarger))
|
|
1990
|
+
|
|
1991
|
+
## v6.3.0 (2018-08-01):
|
|
1992
|
+
|
|
1993
|
+
This is basically the same as the prerelease, but two dependencies have been
|
|
1994
|
+
bumped due to bugs that had been around for a while.
|
|
1995
|
+
|
|
1996
|
+
* [`0a22be42e`](https://github.com/npm/cli/commit/0a22be42eb0d40cd0bd87e68c9e28fc9d72c0e19)
|
|
1997
|
+
`figgy-pudding@3.2.0`
|
|
1998
|
+
([@zkat](https://github.com/zkat))
|
|
1999
|
+
* [`0096f6997`](https://github.com/npm/cli/commit/0096f69978d2f40b170b28096f269b0b0008a692)
|
|
2000
|
+
`cacache@11.1.0`
|
|
2001
|
+
([@zkat](https://github.com/zkat))
|
|
2002
|
+
|
|
2003
|
+
## v6.3.0-next.0 (2018-07-25):
|
|
2004
|
+
|
|
2005
|
+
### NEW FEATURES
|
|
2006
|
+
|
|
2007
|
+
* [`ad0dd226f`](https://github.com/npm/cli/commit/ad0dd226fb97a33dcf41787ae7ff282803fb66f2)
|
|
2008
|
+
[npm/cli#26](https://github.com/npm/cli/pull/26)
|
|
2009
|
+
`npm version` now supports a `--preid` option to specify the preid for
|
|
2010
|
+
prereleases. For example, `npm version premajor --preid rc` will tag a version
|
|
2011
|
+
like `2.0.0-rc.0`.
|
|
2012
|
+
([@dwilches](https://github.com/dwilches))
|
|
2013
|
+
|
|
2014
|
+
### MESSAGING IMPROVEMENTS
|
|
2015
|
+
|
|
2016
|
+
* [`c1dad1e99`](https://github.com/npm/cli/commit/c1dad1e994827f2eab7a13c0f6454f4e4c22ebc2)
|
|
2017
|
+
[npm/cli#6](https://github.com/npm/cli/pull/6)
|
|
2018
|
+
Make `npm audit fix` message provide better instructions for vulnerabilities
|
|
2019
|
+
that require manual review.
|
|
2020
|
+
([@bradsk88](https://github.com/bradsk88))
|
|
2021
|
+
* [`15c1130fe`](https://github.com/npm/cli/commit/15c1130fe81961706667d845aad7a5a1f70369f3)
|
|
2022
|
+
Fix missing colon next to tarball url in new `npm view` output.
|
|
2023
|
+
([@zkat](https://github.com/zkat))
|
|
2024
|
+
* [`21cf0ab68`](https://github.com/npm/cli/commit/21cf0ab68cf528d5244ae664133ef400bdcfbdb6)
|
|
2025
|
+
[npm/cli#24](https://github.com/npm/cli/pull/24)
|
|
2026
|
+
Use the default OTP explanation everywhere except when the context is
|
|
2027
|
+
"OTP-aware" (like when setting double-authentication). This improves the
|
|
2028
|
+
overall CLI messaging when prompting for an OTP code.
|
|
2029
|
+
([@jdeniau](https://github.com/jdeniau))
|
|
2030
|
+
|
|
2031
|
+
### MISC
|
|
2032
|
+
|
|
2033
|
+
* [`a9ac8712d`](https://github.com/npm/cli/commit/a9ac8712dfafcb31a4e3deca24ddb92ff75e942d)
|
|
2034
|
+
[npm/cli#21](https://github.com/npm/cli/pull/21)
|
|
2035
|
+
Use the extracted `stringify-package` package.
|
|
2036
|
+
([@dpogue](https://github.com/dpogue))
|
|
2037
|
+
* [`9db15408c`](https://github.com/npm/cli/commit/9db15408c60be788667cafc787116555507dc433)
|
|
2038
|
+
[npm/cli#27](https://github.com/npm/cli/pull/27)
|
|
2039
|
+
`wrappy` was previously added to dependencies in order to flatten it, but we
|
|
2040
|
+
no longer do legacy-style for npm itself, so it has been removed from
|
|
2041
|
+
`package.json`.
|
|
2042
|
+
([@rickschubert](https://github.com/rickschubert))
|
|
2043
|
+
|
|
2044
|
+
### DOCUMENTATION
|
|
2045
|
+
|
|
2046
|
+
* [`3242baf08`](https://github.com/npm/cli/commit/3242baf0880d1cdc0e20b546d3c1da952e474444)
|
|
2047
|
+
[npm/cli#13](https://github.com/npm/cli/pull/13)
|
|
2048
|
+
Update more dead links in README.md.
|
|
2049
|
+
([@u32i64](https://github.com/u32i64))
|
|
2050
|
+
* [`06580877b`](https://github.com/npm/cli/commit/06580877b6023643ec780c19d84fbe120fe5425c)
|
|
2051
|
+
[npm/cli#19](https://github.com/npm/cli/pull/19)
|
|
2052
|
+
Update links in docs' `index.html` to refer to new bug/PR URLs.
|
|
2053
|
+
([@watilde](https://github.com/watilde))
|
|
2054
|
+
* [`ca03013c2`](https://github.com/npm/cli/commit/ca03013c23ff38e12902e9569a61265c2d613738)
|
|
2055
|
+
[npm/cli#15](https://github.com/npm/cli/pull/15)
|
|
2056
|
+
Fix some typos in file-specifiers docs.
|
|
2057
|
+
([@Mstrodl](https://github.com/Mstrodl))
|
|
2058
|
+
* [`4f39f79bc`](https://github.com/npm/cli/commit/4f39f79bcacef11bf2f98d09730bc94d0379789b)
|
|
2059
|
+
[npm/cli#16](https://github.com/npm/cli/pull/16)
|
|
2060
|
+
Fix some typos in file-specifiers and package-lock docs.
|
|
2061
|
+
([@watilde](https://github.com/watilde))
|
|
2062
|
+
* [`35e51f79d`](https://github.com/npm/cli/commit/35e51f79d1a285964aad44f550811aa9f9a72cd8)
|
|
2063
|
+
[npm/cli#18](https://github.com/npm/cli/pull/18)
|
|
2064
|
+
Update build status badge url in README.
|
|
2065
|
+
([@watilde](https://github.com/watilde))
|
|
2066
|
+
* [`a67db5607`](https://github.com/npm/cli/commit/a67db5607ba2052b4ea44f66657f98b758fb4786)
|
|
2067
|
+
[npm/cli#17](https://github.com/npm/cli/pull/17/)
|
|
2068
|
+
Replace TROUBLESHOOTING.md with [posts in
|
|
2069
|
+
npm.community](https://npm.community/c/support/troubleshooting).
|
|
2070
|
+
([@watilde](https://github.com/watilde))
|
|
2071
|
+
* [`e115f9de6`](https://github.com/npm/cli/commit/e115f9de65bf53711266152fc715a5012f7d3462)
|
|
2072
|
+
[npm/cli#7](https://github.com/npm/cli/pull/7)
|
|
2073
|
+
Use https URLs in documentation when appropriate. Happy [Not Secure Day](https://arstechnica.com/gadgets/2018/07/todays-the-day-that-chrome-brands-plain-old-http-as-not-secure/)!
|
|
2074
|
+
([@XhmikosR](https://github.com/XhmikosR))
|
|
2075
|
+
|
|
2076
|
+
## v6.2.0 (2018-07-13):
|
|
2077
|
+
|
|
2078
|
+
In case you missed it, [we
|
|
2079
|
+
moved!](https://blog.npmjs.org/post/175587538995/announcing-npmcommunity). We
|
|
2080
|
+
look forward to seeing future PRs landing in
|
|
2081
|
+
[npm/cli](https://github.com/npm/cli) in the future, and we'll be chatting with
|
|
2082
|
+
you all in [npm.community](https://npm.community). Go check it out!
|
|
2083
|
+
|
|
2084
|
+
This final release of `npm@6.2.0` includes a couple of features that weren't
|
|
2085
|
+
quite ready on time but that we'd still like to include. Enjoy!
|
|
2086
|
+
|
|
2087
|
+
### FEATURES
|
|
2088
|
+
|
|
2089
|
+
* [`244b18380`](https://github.com/npm/npm/commit/244b18380ee55950b13c293722771130dbad70de)
|
|
2090
|
+
[#20554](https://github.com/npm/npm/pull/20554)
|
|
2091
|
+
Add support for tab-separated output for `npm audit` data with the
|
|
2092
|
+
`--parseable` flag.
|
|
2093
|
+
([@luislobo](https://github.com/luislobo))
|
|
2094
|
+
* [`7984206e2`](https://github.com/npm/npm/commit/7984206e2f41b8d8361229cde88d68f0c96ed0b8)
|
|
2095
|
+
[#12697](https://github.com/npm/npm/pull/12697)
|
|
2096
|
+
Add new `sign-git-commit` config to control whether the git commit itself gets
|
|
2097
|
+
signed, or just the tag (which is the default).
|
|
2098
|
+
([@tribou](https://github.com/tribou))
|
|
2099
|
+
|
|
2100
|
+
### FIXES
|
|
2101
|
+
|
|
2102
|
+
* [`4c32413a5`](https://github.com/npm/npm/commit/4c32413a5b42e18a34afb078cf00eed60f08e4ff)
|
|
2103
|
+
[#19418](https://github.com/npm/npm/pull/19418)
|
|
2104
|
+
Do not use `SET` to fetch the env in git-bash or Cygwin.
|
|
2105
|
+
([@gucong3000](https://github.com/gucong3000))
|
|
2106
|
+
|
|
2107
|
+
### DEPENDENCY BUMPS
|
|
2108
|
+
|
|
2109
|
+
* [`d9b2712a6`](https://github.com/npm/npm/commit/d9b2712a670e5e78334e83f89a5ed49616f1f3d3)
|
|
2110
|
+
`request@2.81.0`: Downgraded to allow better deduplication. This does
|
|
2111
|
+
introduce a bunch of `hoek`-related audit reports, but they don't affect npm
|
|
2112
|
+
itself so we consider it safe. We'll upgrade `request` again once `node-gyp`
|
|
2113
|
+
unpins it.
|
|
2114
|
+
([@simov](https://github.com/simov))
|
|
2115
|
+
* [`2ac48f863`](https://github.com/npm/npm/commit/2ac48f863f90166b2bbf2021ed4cc04343d2503c)
|
|
2116
|
+
`node-gyp@3.7.0`
|
|
2117
|
+
([@MylesBorins](https://github.com/MylesBorins))
|
|
2118
|
+
* [`8dc6d7640`](https://github.com/npm/npm/commit/8dc6d76408f83ba35bda77a2ac1bdbde01937349)
|
|
2119
|
+
`cli-table3@0.5.0`: `cli-table2` is unmaintained and required `lodash`. With
|
|
2120
|
+
this dependency bump, we've removed `lodash` from our tree, which cut back
|
|
2121
|
+
tarball size by another 300kb.
|
|
2122
|
+
([@Turbo87](https://github.com/Turbo87))
|
|
2123
|
+
* [`90c759fee`](https://github.com/npm/npm/commit/90c759fee6055cf61cf6709432a5e6eae6278096)
|
|
2124
|
+
`npm-audit-report@1.3.1`
|
|
2125
|
+
([@zkat](https://github.com/zkat))
|
|
2126
|
+
* [`4231a0a1e`](https://github.com/npm/npm/commit/4231a0a1eb2be13931c3b71eba38c0709644302c)
|
|
2127
|
+
Add `cli-table3` to bundleDeps.
|
|
2128
|
+
([@iarna](https://github.com/iarna))
|
|
2129
|
+
* [`322d9c2f1`](https://github.com/npm/npm/commit/322d9c2f107fd82a4cbe2f9d7774cea5fbf41b8d)
|
|
2130
|
+
Make `standard` happy.
|
|
2131
|
+
([@iarna](https://github.com/iarna))
|
|
2132
|
+
|
|
2133
|
+
### DOCS
|
|
2134
|
+
|
|
2135
|
+
* [`5724983ea`](https://github.com/npm/npm/commit/5724983ea8f153fb122f9c0ccab6094a26dfc631)
|
|
2136
|
+
[#21165](https://github.com/npm/npm/pull/21165)
|
|
2137
|
+
Fix some markdown formatting in npm-disputes.md.
|
|
2138
|
+
([@hchiam](https://github.com/hchiam))
|
|
2139
|
+
* [`738178315`](https://github.com/npm/npm/commit/738178315fe48e463028657ea7ae541c3d63d171)
|
|
2140
|
+
[#20920](https://github.com/npm/npm/pull/20920)
|
|
2141
|
+
Explicitly state that republishing an unpublished package requires a 72h
|
|
2142
|
+
waiting period.
|
|
2143
|
+
([@gmattie](https://github.com/gmattie))
|
|
2144
|
+
* [`f0a372b07`](https://github.com/npm/npm/commit/f0a372b074cc43ee0e1be28dbbcef0d556b3b36c)
|
|
2145
|
+
Replace references to the old repo or issue tracker. We're at npm/cli now!
|
|
2146
|
+
([@zkat](https://github.com/zkat))
|
|
2147
|
+
|
|
2148
|
+
## v6.2.0-next.1 (2018-07-05):
|
|
2149
|
+
|
|
2150
|
+
This is a quick patch to the release to fix an issue that was preventing users
|
|
2151
|
+
from installing `npm@next`.
|
|
2152
|
+
|
|
2153
|
+
* [`ecdcbd745`](https://github.com/npm/npm/commit/ecdcbd745ae1edd9bdd102dc3845a7bc76e1c5fb)
|
|
2154
|
+
[#21129](https://github.com/npm/npm/pull/21129)
|
|
2155
|
+
Remove postinstall script that depended on source files, thus preventing
|
|
2156
|
+
`npm@next` from being installable from the registry.
|
|
2157
|
+
([@zkat](https://github.com/zkat))
|
|
2158
|
+
|
|
2159
|
+
## v6.2.0-next.0 (2018-06-28):
|
|
2160
|
+
|
|
2161
|
+
### NEW FEATURES
|
|
2162
|
+
|
|
2163
|
+
* [`ce0793358`](https://github.com/npm/npm/commit/ce07933588ec2da1cc1980f93bdaa485d6028ae2)
|
|
2164
|
+
[#20750](https://github.com/npm/npm/pull/20750)
|
|
2165
|
+
You can now disable the update notifier entirely by using
|
|
2166
|
+
`--no-update-notifier` or setting it in your config with `npm config set
|
|
2167
|
+
update-notifier false`.
|
|
2168
|
+
([@travi](https://github.com/travi))
|
|
2169
|
+
* [`d2ad776f6`](https://github.com/npm/npm/commit/d2ad776f6dcd92ae3937465736dcbca171131343)
|
|
2170
|
+
[#20879](https://github.com/npm/npm/pull/20879)
|
|
2171
|
+
When `npm run-script <script>` fails due to a typo or missing script, npm will
|
|
2172
|
+
now do a "did you mean?..." for scripts that do exist.
|
|
2173
|
+
([@watilde](https://github.com/watilde))
|
|
2174
|
+
|
|
2175
|
+
### BUGFIXES
|
|
2176
|
+
|
|
2177
|
+
* [`8f033d72d`](https://github.com/npm/npm/commit/8f033d72da3e84a9dbbabe3a768693817af99912)
|
|
2178
|
+
[#20948](https://github.com/npm/npm/pull/20948)
|
|
2179
|
+
Fix the regular expression matching in `xcode_emulation` in `node-gyp` to also
|
|
2180
|
+
handle version numbers with multiple-digit major versions which would
|
|
2181
|
+
otherwise break under use of XCode 10.
|
|
2182
|
+
([@Trott](https://github.com/Trott))
|
|
2183
|
+
* [`c8ba7573a`](https://github.com/npm/npm/commit/c8ba7573a4ea95789f674ce038762d6a77a8b047)
|
|
2184
|
+
Stop trying to hoist/dedupe bundles dependencies.
|
|
2185
|
+
([@iarna](https://github.com/iarna))
|
|
2186
|
+
* [`cd698f068`](https://github.com/npm/npm/commit/cd698f06840b7c9407ac802efa96d16464722a7d)
|
|
2187
|
+
[#20762](https://github.com/npm/npm/pull/20762)
|
|
2188
|
+
Add synopsis to brief help for `npm audit` and suppress trailing newline.
|
|
2189
|
+
([@wyardley](https://github.com/wyardley))
|
|
2190
|
+
* [`6808ee3bd`](https://github.com/npm/npm/commit/6808ee3bd59560b1334a18aa6c6e0120094b03c0)
|
|
2191
|
+
[#20881](https://github.com/npm/npm/pull/20881)
|
|
2192
|
+
Exclude /.github directory from npm tarball.
|
|
2193
|
+
([@styfle](https://github.com/styfle))
|
|
2194
|
+
* [`177cbb476`](https://github.com/npm/npm/commit/177cbb4762c1402bfcbf0636c4bc4905fd684fc1)
|
|
2195
|
+
[#21105](https://github.com/npm/npm/pull/21105)
|
|
2196
|
+
Add suggestion to use a temporary cache instead of `npm cache clear --force`.
|
|
2197
|
+
([@karanjthakkar](https://github.com/karanjthakkar))
|
|
2198
|
+
|
|
2199
|
+
### DOCS
|
|
2200
|
+
|
|
2201
|
+
* [`7ba3fca00`](https://github.com/npm/npm/commit/7ba3fca00554b884eb47f2ed661693faf2630b27)
|
|
2202
|
+
[#20855](https://github.com/npm/npm/pull/20855)
|
|
2203
|
+
Direct people to npm.community instead of the GitHub issue tracker on error.
|
|
2204
|
+
([@zkat](https://github.com/zkat))
|
|
2205
|
+
* [`88efbf6b0`](https://github.com/npm/npm/commit/88efbf6b0b403c5107556ff9e1bb7787a410d14d)
|
|
2206
|
+
[#20859](https://github.com/npm/npm/pull/20859)
|
|
2207
|
+
Fix typo in registry docs.
|
|
2208
|
+
([@strugee](https://github.com/strugee))
|
|
2209
|
+
* [`61bf827ae`](https://github.com/npm/npm/commit/61bf827aea6f98bba08a54e60137d4df637788f9)
|
|
2210
|
+
[#20947](https://github.com/npm/npm/pull/20947)
|
|
2211
|
+
Fixed a small grammar error in the README.
|
|
2212
|
+
([@bitsol](https://github.com/bitsol))
|
|
2213
|
+
* [`f5230c90a`](https://github.com/npm/npm/commit/f5230c90afef40f445bf148cbb16d6129a2dcc19)
|
|
2214
|
+
[#21018](https://github.com/npm/npm/pull/21018)
|
|
2215
|
+
Small typo fix in CONTRIBUTING.md.
|
|
2216
|
+
([@reggi](https://github.com/reggi))
|
|
2217
|
+
* [`833efe4b2`](https://github.com/npm/npm/commit/833efe4b2abcef58806f823d77ab8bb8f4f781c6)
|
|
2218
|
+
[#20986](https://github.com/npm/npm/pull/20986)
|
|
2219
|
+
Document current structure/expectations around package tarballs.
|
|
2220
|
+
([@Maximaximum](https://github.com/Maximaximum))
|
|
2221
|
+
* [`9fc0dc4f5`](https://github.com/npm/npm/commit/9fc0dc4f58d728bac6a8db7143d04863d7b653db)
|
|
2222
|
+
[#21019](https://github.com/npm/npm/pull/21019)
|
|
2223
|
+
Clarify behavior of `npm link ../path` shorthand.
|
|
2224
|
+
([@davidgilbertson](https://github.com/davidgilbertson))
|
|
2225
|
+
* [`3924c72d0`](https://github.com/npm/npm/commit/3924c72d06b9216ac2b6a9d951fd565a1d5eda89)
|
|
2226
|
+
[#21064](https://github.com/npm/npm/pull/21064)
|
|
2227
|
+
Add missing "if"
|
|
2228
|
+
([@roblourens](https://github.com/roblourens))
|
|
2229
|
+
|
|
2230
|
+
### DEPENDENCY SHUFFLE!
|
|
2231
|
+
|
|
2232
|
+
We did some reshuffling and moving around of npm's own dependencies. This
|
|
2233
|
+
significantly reduces the total bundle size of the npm pack, from 8MB to 4.8MB
|
|
2234
|
+
for the distributed tarball! We also moved around what we actually commit to the
|
|
2235
|
+
repo as far as devDeps go.
|
|
2236
|
+
|
|
2237
|
+
* [`0483f5c5d`](https://github.com/npm/npm/commit/0483f5c5deaf18c968a128657923103e49f4e67a)
|
|
2238
|
+
Flatten and dedupe our dependencies!
|
|
2239
|
+
([@iarna](https://github.com/iarna))
|
|
2240
|
+
* [`ef9fa1ceb`](https://github.com/npm/npm/commit/ef9fa1ceb5f9d175fd453138b1a26d45a5071dfd)
|
|
2241
|
+
Remove unused direct dependency `ansi-regex`.
|
|
2242
|
+
([@iarna](https://github.com/iarna))
|
|
2243
|
+
* [`0d14b0bc5`](https://github.com/npm/npm/commit/0d14b0bc59812f4e33798194e11ffacbea3c0493)
|
|
2244
|
+
Reshuffle ansi-regex for better deduping.
|
|
2245
|
+
([@iarna](https://github.com/iarna))
|
|
2246
|
+
* [`68a101859`](https://github.com/npm/npm/commit/68a101859b2b6f78b2e7c3a936492acdb15f7c4a)
|
|
2247
|
+
Reshuffle strip-ansi for better deduping.
|
|
2248
|
+
([@iarna](https://github.com/iarna))
|
|
2249
|
+
* [`0d5251f97`](https://github.com/npm/npm/commit/0d5251f97dc8b8b143064869e530d465c757ffbb)
|
|
2250
|
+
Reshuffle is-fullwidth-code-point for better deduping.
|
|
2251
|
+
([@iarna](https://github.com/iarna))
|
|
2252
|
+
* [`2d0886632`](https://github.com/npm/npm/commit/2d08866327013522fc5fbe61ed872b8f30e92775)
|
|
2253
|
+
Add fake-registry, npm-registry-mock replacement.
|
|
2254
|
+
([@iarna](https://github.com/iarna))
|
|
2255
|
+
|
|
2256
|
+
### DEPENDENCIES
|
|
2257
|
+
|
|
2258
|
+
* [`8cff8eea7`](https://github.com/npm/npm/commit/8cff8eea75dc34c9c1897a7a6f65d7232bb0c64c)
|
|
2259
|
+
`tar@4.4.3`
|
|
2260
|
+
([@zkat](https://github.com/zkat))
|
|
2261
|
+
* [`bfc4f873b`](https://github.com/npm/npm/commit/bfc4f873bd056b7e3aee389eda4ecd8a2e175923)
|
|
2262
|
+
`pacote@8.1.6`
|
|
2263
|
+
([@zkat](https://github.com/zkat))
|
|
2264
|
+
* [`532096163`](https://github.com/npm/npm/commit/53209616329119be8fcc29db86a43cc8cf73454d)
|
|
2265
|
+
`libcipm@2.0.0`
|
|
2266
|
+
([@zkat](https://github.com/zkat))
|
|
2267
|
+
* [`4a512771b`](https://github.com/npm/npm/commit/4a512771b67aa06505a0df002a9027c16a238c71)
|
|
2268
|
+
`request@2.87.0`
|
|
2269
|
+
([@iarna](https://github.com/iarna))
|
|
2270
|
+
* [`b7cc48dee`](https://github.com/npm/npm/commit/b7cc48deee45da1feab49aa1dd4d92e33c9bcac8)
|
|
2271
|
+
`which@1.3.1`
|
|
2272
|
+
([@iarna](https://github.com/iarna))
|
|
2273
|
+
* [`bae657c28`](https://github.com/npm/npm/commit/bae657c280f6ea8e677509a9576e1b47c65c5441)
|
|
2274
|
+
`tar@4.4.4`
|
|
2275
|
+
([@iarna](https://github.com/iarna))
|
|
2276
|
+
* [`3d46e5c4e`](https://github.com/npm/npm/commit/3d46e5c4e3c5fecd9bf05a7425a16f2e8ad5c833)
|
|
2277
|
+
`JSONStream@1.3.3`
|
|
2278
|
+
([@iarna](https://github.com/iarna))
|
|
2279
|
+
* [`d0a905daf`](https://github.com/npm/npm/commit/d0a905dafc7e3fcd304e8053acbe3da40ba22554)
|
|
2280
|
+
`is-cidr@2.0.6`
|
|
2281
|
+
([@iarna](https://github.com/iarna))
|
|
2282
|
+
* [`4fc1f815f`](https://github.com/npm/npm/commit/4fc1f815fec5a7f6f057cf305e01d4126331d1f2)
|
|
2283
|
+
`marked@0.4.0`
|
|
2284
|
+
([@iarna](https://github.com/iarna))
|
|
2285
|
+
* [`f72202944`](https://github.com/npm/npm/commit/f722029441a088d03df94bdfdeeec51cfd318659)
|
|
2286
|
+
`tap@12.0.1`
|
|
2287
|
+
([@iarna](https://github.com/iarna))
|
|
2288
|
+
* [`bdce96eb3`](https://github.com/npm/npm/commit/bdce96eb3c30fcff873aa3f1190e8ae4928d690b)
|
|
2289
|
+
`npm-profile@3.0.2`
|
|
2290
|
+
([@iarna](https://github.com/iarna))
|
|
2291
|
+
* [`fe4240e85`](https://github.com/npm/npm/commit/fe4240e852144770bf76d7b1952056ca5baa63cf)
|
|
2292
|
+
`uuid@3.3.2`
|
|
2293
|
+
([@zkat](https://github.com/zkat))
|
|
2294
|
+
|
|
2295
|
+
## v6.1.0 (2018-05-17):
|
|
2296
|
+
|
|
2297
|
+
### FIX WRITE AFTER END ERROR
|
|
2298
|
+
|
|
2299
|
+
First introduced in 5.8.0, this finally puts to bed errors where you would
|
|
2300
|
+
occasionally see `Error: write after end at MiniPass.write`.
|
|
2301
|
+
|
|
2302
|
+
* [`171f3182f`](https://github.com/npm/npm/commit/171f3182f32686f2f94ea7d4b08035427e0b826e)
|
|
2303
|
+
[node-tar#180](https://github.com/npm/node-tar/issues/180)
|
|
2304
|
+
[npm.community#35](https://npm.community/t/write-after-end-when-installing-packages-with-5-8-and-later/35)
|
|
2305
|
+
`pacote@8.1.5`: Fix write-after-end errors.
|
|
2306
|
+
([@zkat](https://github.com/zkat))
|
|
2307
|
+
|
|
2308
|
+
### DETECT CHANGES IN GIT SPECIFIERS
|
|
2309
|
+
|
|
2310
|
+
* [`0e1726c03`](https://github.com/npm/npm/commit/0e1726c0350a02d5a60f5fddb1e69c247538625e)
|
|
2311
|
+
We can now determine if the commitid of a git dependency in the lockfile is derived
|
|
2312
|
+
from the specifier in the package.json and if it isn't we now trigger an update for it.
|
|
2313
|
+
([@iarna](https://github.com/iarna))
|
|
2314
|
+
|
|
2315
|
+
### OTHER BUGS
|
|
2316
|
+
|
|
2317
|
+
* [`442d2484f`](https://github.com/npm/npm/commit/442d2484f686e3a371b07f8473a17708f84d9603)
|
|
2318
|
+
[`2f0c88351`](https://github.com/npm/npm/commit/2f0c883519f17c94411dd1d9877c5666f260c12f)
|
|
2319
|
+
[`631d30a34`](https://github.com/npm/npm/commit/631d30a340f5805aed6e83f47a577ca4125599b2)
|
|
2320
|
+
When requesting the update of a direct dependency that was also a
|
|
2321
|
+
transitive dependency to a version incompatible with the transitive
|
|
2322
|
+
requirement and you had a lock-file but did not have a `node_modules`
|
|
2323
|
+
folder then npm would fail to provide a new copy of the transitive
|
|
2324
|
+
dependency, resulting in an invalid lock-file that could not self heal.
|
|
2325
|
+
([@iarna](https://github.com/iarna))
|
|
2326
|
+
* [`be5dd0f49`](https://github.com/npm/npm/commit/be5dd0f496ec1485b1ea3094c479dfc17bd50d82)
|
|
2327
|
+
[#20715](https://github.com/npm/npm/pull/20715)
|
|
2328
|
+
Cleanup output of `npm ci` summary report.
|
|
2329
|
+
([@legodude17](https://github.com/legodude17))
|
|
2330
|
+
* [`98ffe4adb`](https://github.com/npm/npm/commit/98ffe4adb55a6f4459271856de2e27e95ee63375)
|
|
2331
|
+
Node.js now has a test that scans for things that look like conflict
|
|
2332
|
+
markers in source code. This was triggering false positives on a fixture in a test
|
|
2333
|
+
of npm's ability to heal lockfiles with conflicts in them.
|
|
2334
|
+
([@iarna](https://github.com/iarna))
|
|
2335
|
+
|
|
2336
|
+
### DEPENDENCY UPDATES
|
|
2337
|
+
|
|
2338
|
+
* [`3f2e306b8`](https://github.com/npm/npm/commit/3f2e306b884a027df03f64524beb8658ce1772cb)
|
|
2339
|
+
Using `npm audit fix`, replace some transitive dependencies with security
|
|
2340
|
+
issues with versions that don't have any.
|
|
2341
|
+
([@iarna](https://github.com/iarna))
|
|
2342
|
+
* [`1d07134e0`](https://github.com/npm/npm/commit/1d07134e0b157f7484a20ce6987ff57951842954)
|
|
2343
|
+
`tar@4.4.1`:
|
|
2344
|
+
Dropping to 4.4.1 from 4.4.2 due to https://github.com/npm/node-tar/issues/183
|
|
2345
|
+
([@zkat](https://github.com/zkat))
|
|
2346
|
+
|
|
2347
|
+
|
|
2348
|
+
## v6.1.0-next.0 (2018-05-17):
|
|
2349
|
+
|
|
2350
|
+
Look at that! A feature bump! `npm@6` was super-exciting not just because it
|
|
2351
|
+
used a bigger number than ever before, but also because it included a super
|
|
2352
|
+
shiny new command: `npm audit`. Well, we've kept working on it since then and
|
|
2353
|
+
have some really nice improvements for it. You can expect more of them, and the
|
|
2354
|
+
occasional fix, in the next few releases as more users start playing with it and
|
|
2355
|
+
we get more feedback about what y'all would like to see from something like
|
|
2356
|
+
this.
|
|
2357
|
+
|
|
2358
|
+
I, for one, have started running it (and the new subcommand...) in all my
|
|
2359
|
+
projects, and it's one of those things that I don't know how I ever functioned
|
|
2360
|
+
-without- it! This will make a world of difference to so many people as far as
|
|
2361
|
+
making the npm ecosystem a higher-quality, safer commons for all of us.
|
|
2362
|
+
|
|
2363
|
+
This is also a good time to remind y'all that we have a new [RFCs
|
|
2364
|
+
repository](https://github.com/npm/rfcs), along with a new process for them.
|
|
2365
|
+
This repo is open to anyone's RFCs, and has already received some great ideas
|
|
2366
|
+
about where we can take the CLI (and, to a certain extent, the registry). It's a
|
|
2367
|
+
great place to get feedback, and completely replaces feature requests in the
|
|
2368
|
+
main repo, so we won't be accepting feature requests there at all anymore. Check
|
|
2369
|
+
it out if you have something you'd like to suggest, or if you want to keep track
|
|
2370
|
+
of what the future might look like!
|
|
2371
|
+
|
|
2372
|
+
### NEW FEATURE: `npm audit fix`
|
|
2373
|
+
|
|
2374
|
+
This is the biggie with this release! `npm audit fix` does exactly what it says
|
|
2375
|
+
on the tin. It takes all the actionable reports from your `npm audit` and runs
|
|
2376
|
+
the installs automatically for you, so you don't have to try to do all that
|
|
2377
|
+
mechanical work yourself!
|
|
2378
|
+
|
|
2379
|
+
Note that by default, `npm audit fix` will stick to semver-compatible changes,
|
|
2380
|
+
so you should be able to safely run it on most projects and carry on with your
|
|
2381
|
+
day without having to track down what breaking changes were included. If you
|
|
2382
|
+
want your (toplevel) dependencies to accept semver-major bumps as well, you can
|
|
2383
|
+
use `npm audit fix --force` and it'll toss those in, as well. Since it's running
|
|
2384
|
+
the npm installer under the hood, it also supports `--production` and
|
|
2385
|
+
`--only=dev` flags, as well as things like `--dry-run`, `--json`, and
|
|
2386
|
+
`--package-lock-only`, if you want more control over what it does.
|
|
2387
|
+
|
|
2388
|
+
Give it a whirl and tell us what you think! See `npm help audit` for full docs!
|
|
2389
|
+
|
|
2390
|
+
* [`3800a660d`](https://github.com/npm/npm/commit/3800a660d99ca45c0175061dbe087520db2f54b7)
|
|
2391
|
+
Add `npm audit fix` subcommand to automatically fix detected vulnerabilities.
|
|
2392
|
+
([@zkat](https://github.com/zkat))
|
|
2393
|
+
|
|
2394
|
+
### OTHER NEW `audit` FEATURES
|
|
2395
|
+
|
|
2396
|
+
* [`1854b1c7f`](https://github.com/npm/npm/commit/1854b1c7f09afceb49627e539a086d8a3565601c)
|
|
2397
|
+
[#20568](https://github.com/npm/npm/pull/20568)
|
|
2398
|
+
Add support for `npm audit --json` to print the report in JSON format.
|
|
2399
|
+
([@finnp](https://github.com/finnp))
|
|
2400
|
+
* [`85b86169d`](https://github.com/npm/npm/commit/85b86169d9d0423f50893d2ed0c7274183255abe)
|
|
2401
|
+
[#20570](https://github.com/npm/npm/pull/20570)
|
|
2402
|
+
Include number of audited packages in `npm install` summary output.
|
|
2403
|
+
([@zkat](https://github.com/zkat))
|
|
2404
|
+
* [`957cbe275`](https://github.com/npm/npm/commit/957cbe27542d30c33e58e7e6f2f04eeb64baf5cd)
|
|
2405
|
+
`npm-audit-report@1.2.1`:
|
|
2406
|
+
Overhaul audit install and detail output format. The new format is terser and
|
|
2407
|
+
fits more closely into the visual style of the CLI, while still providing you
|
|
2408
|
+
with the important bits of information you need. They also include a bit more
|
|
2409
|
+
detail on the footer about what actions you can take!
|
|
2410
|
+
([@zkat](https://github.com/zkat))
|
|
2411
|
+
|
|
2412
|
+
### NEW FEATURE: GIT DEPS AND `npm init <pkg>`!
|
|
2413
|
+
|
|
2414
|
+
Another exciting change that came with `npm@6` was the new `npm init` command
|
|
2415
|
+
that allows for community-authored generators. That means you can, for example,
|
|
2416
|
+
do `npm init react-app` and it'll one-off download, install, and run
|
|
2417
|
+
[`create-react-app`](https://npm.im/create-react-app) for you, without requiring
|
|
2418
|
+
or keeping around any global installs. That is, it basically just calls out to
|
|
2419
|
+
[`npx`](https://npm.im/npx).
|
|
2420
|
+
|
|
2421
|
+
The first version of this command only really supported registry dependencies,
|
|
2422
|
+
but now, [@jdalton](https://github.com/jdalton) went ahead and extended this
|
|
2423
|
+
feature so you can use hosted git dependencies, and their shorthands.
|
|
2424
|
+
|
|
2425
|
+
So go ahead and do `npm init facebook/create-react-app` and it'll grab the
|
|
2426
|
+
package from the github repo now! Or you can use it with a private github
|
|
2427
|
+
repository to maintain your organizational scaffolding tools or whatnot. ✨
|
|
2428
|
+
|
|
2429
|
+
* [`483e01180`](https://github.com/npm/npm/commit/483e011803af82e63085ef41b7acce5b22aa791c)
|
|
2430
|
+
[#20403](https://github.com/npm/npm/pull/20403)
|
|
2431
|
+
Add support for hosted git packages to `npm init <name>`.
|
|
2432
|
+
([@jdalton](https://github.com/jdalton))
|
|
2433
|
+
|
|
2434
|
+
### BUGFIXES
|
|
2435
|
+
|
|
2436
|
+
* [`a41c0393c`](https://github.com/npm/npm/commit/a41c0393cba710761a15612c6c85c9ef2396e65f)
|
|
2437
|
+
[#20538](https://github.com/npm/npm/pull/20538)
|
|
2438
|
+
Make the new `npm view` work when the license field is an object instead of a
|
|
2439
|
+
string.
|
|
2440
|
+
([@zkat](https://github.com/zkat))
|
|
2441
|
+
* [`eb7522073`](https://github.com/npm/npm/commit/eb75220739302126c94583cc65a5ff12b441e3c6)
|
|
2442
|
+
[#20582](https://github.com/npm/npm/pull/20582)
|
|
2443
|
+
Add support for environments (like Docker) where the expected binary for
|
|
2444
|
+
opening external URLs is not available.
|
|
2445
|
+
([@bcoe](https://github.com/bcoe))
|
|
2446
|
+
* [`212266529`](https://github.com/npm/npm/commit/212266529ae72056bf0876e2cff4b8ba01d09d0f)
|
|
2447
|
+
[#20536](https://github.com/npm/npm/pull/20536)
|
|
2448
|
+
Fix a spurious colon in the new update notifier message and add support for
|
|
2449
|
+
the npm canary.
|
|
2450
|
+
([@zkat](https://github.com/zkat))
|
|
2451
|
+
* [`5ee1384d0`](https://github.com/npm/npm/commit/5ee1384d02c3f11949d7a26ec6322488476babe6)
|
|
2452
|
+
[#20597](https://github.com/npm/npm/pull/20597)
|
|
2453
|
+
Infer a version range when a `package.json` has a dist-tag instead of a
|
|
2454
|
+
version range in one of its dependency specs. Previously, this would cause
|
|
2455
|
+
dependencies to be flagged as invalid.
|
|
2456
|
+
([@zkat](https://github.com/zkat))
|
|
2457
|
+
* [`4fa68ae41`](https://github.com/npm/npm/commit/4fa68ae41324293e59584ca6cf0ac24b3e0825bb)
|
|
2458
|
+
[#20585](https://github.com/npm/npm/pull/20585)
|
|
2459
|
+
Make sure scoped bundled deps are shown in the new publish preview, too.
|
|
2460
|
+
([@zkat](https://github.com/zkat))
|
|
2461
|
+
* [`1f3ee6b7e`](https://github.com/npm/npm/commit/1f3ee6b7e1b36b52bdedeb9241296d4e66561d48)
|
|
2462
|
+
`cacache@11.0.2`:
|
|
2463
|
+
Stop dropping `size` from metadata on `npm cache verify`.
|
|
2464
|
+
([@jfmartinez](https://github.com/jfmartinez))
|
|
2465
|
+
* [`91ef93691`](https://github.com/npm/npm/commit/91ef93691a9d6ce7c016fefdf7da97854ca2b2ca)
|
|
2466
|
+
[#20513](https://github.com/npm/npm/pull/20513)
|
|
2467
|
+
Fix nested command aliases.
|
|
2468
|
+
([@mmermerkaya](https://github.com/mmermerkaya))
|
|
2469
|
+
* [`18b2b3cf7`](https://github.com/npm/npm/commit/18b2b3cf71a438648ced1bd13faecfb50c71e979)
|
|
2470
|
+
`npm-lifecycle@2.0.3`:
|
|
2471
|
+
Make sure different versions of the `Path` env var on Windows all get
|
|
2472
|
+
`node_modules/.bin` prepended when running lifecycle scripts.
|
|
2473
|
+
([@laggingreflex](https://github.com/laggingreflex))
|
|
2474
|
+
|
|
2475
|
+
### DOCUMENTATION
|
|
2476
|
+
|
|
2477
|
+
* [`a91d87072`](https://github.com/npm/npm/commit/a91d87072f292564e58dcab508b5a8c6702b9aae)
|
|
2478
|
+
[#20550](https://github.com/npm/npm/pull/20550)
|
|
2479
|
+
Update required node versions in README.
|
|
2480
|
+
([@legodude17](https://github.com/legodude17))
|
|
2481
|
+
* [`bf3cfa7b8`](https://github.com/npm/npm/commit/bf3cfa7b8b351714c4ec621e1a5867c8450c6fff)
|
|
2482
|
+
Pull in changelogs from the last `npm@5` release.
|
|
2483
|
+
([@iarna](https://github.com/iarna))
|
|
2484
|
+
* [`b2f14b14c`](https://github.com/npm/npm/commit/b2f14b14ca25203c2317ac2c47366acb50d46e69)
|
|
2485
|
+
[#20629](https://github.com/npm/npm/pull/20629)
|
|
2486
|
+
Make tone in `publishConfig` docs more neutral.
|
|
2487
|
+
([@jeremyckahn](https://github.com/jeremyckahn))
|
|
2488
|
+
|
|
2489
|
+
### DEPENDENCY BUMPS
|
|
2490
|
+
|
|
2491
|
+
* [`5fca4eae8`](https://github.com/npm/npm/commit/5fca4eae8a62a7049b1ae06aa0bbffdc6e0ad6cc)
|
|
2492
|
+
`byte-size@4.0.3`
|
|
2493
|
+
([@75lb](https://github.com/75lb))
|
|
2494
|
+
* [`d9ef3fba7`](https://github.com/npm/npm/commit/d9ef3fba79f87c470889a6921a91f7cdcafa32b9)
|
|
2495
|
+
`lru-cache@4.1.3`
|
|
2496
|
+
([@isaacs](https://github.com/isaacs))
|
|
2497
|
+
* [`f1baf011a`](https://github.com/npm/npm/commit/f1baf011a0d164f8dc8aa6cd31e89225e3872e3b)
|
|
2498
|
+
`request@2.86.0`
|
|
2499
|
+
([@simonv](https://github.com/simonv))
|
|
2500
|
+
* [`005fa5420`](https://github.com/npm/npm/commit/005fa542072f09a83f77a9d62c5e53b8f6309371)
|
|
2501
|
+
`require-inject@1.4.3`
|
|
2502
|
+
([@iarna](https://github.com/iarna))
|
|
2503
|
+
* [`1becdf09a`](https://github.com/npm/npm/commit/1becdf09a2f19716726c88e9a2342e1e056cfc71)
|
|
2504
|
+
`tap@11.1.5`
|
|
2505
|
+
([@isaacs](https://github.com/isaacs))
|
|
2506
|
+
|
|
2507
|
+
## v6.0.1 (2018-05-09):
|
|
2508
|
+
|
|
2509
|
+
### AUDIT SHOULDN'T WAIT FOREVER
|
|
2510
|
+
|
|
2511
|
+
This will likely be reduced further with the goal that the audit process
|
|
2512
|
+
shouldn't noticibly slow down your builds regardless of your network
|
|
2513
|
+
situation.
|
|
2514
|
+
|
|
2515
|
+
* [`3dcc240db`](https://github.com/npm/npm/commit/3dcc240dba5258532990534f1bd8a25d1698b0bf)
|
|
2516
|
+
Timeout audit requests eventually.
|
|
2517
|
+
([@iarna](https://github.com/iarna))
|
|
2518
|
+
|
|
2519
|
+
### Looking forward
|
|
2520
|
+
|
|
2521
|
+
We're still a way from having node@11, so now's a good time to ensure we
|
|
2522
|
+
don't warn about being used with it.
|
|
2523
|
+
|
|
2524
|
+
* [`ed1aebf55`](https://github.com/npm/npm/commit/ed1aebf55)
|
|
2525
|
+
Allow node@11, when it comes.
|
|
2526
|
+
([@iarna](https://github.com/iarna))
|
|
2527
|
+
|
|
2528
|
+
## v6.0.1-next.0 (2018-05-03):
|
|
2529
|
+
|
|
2530
|
+
### CTRL-C OUT DURING PACKAGE EXTRACTION AS MUCH AS YOU WANT!
|
|
2531
|
+
|
|
2532
|
+
* [`b267bbbb9`](https://github.com/npm/npm/commit/b267bbbb9ddd551e3dbd162cc2597be041b9382c)
|
|
2533
|
+
[npm/lockfile#29](https://github.com/npm/lockfile/pull/29)
|
|
2534
|
+
`lockfile@1.0.4`:
|
|
2535
|
+
Switches to `signal-exit` to detect abnormal exits and remove locks.
|
|
2536
|
+
([@Redsandro](https://github.com/Redsandro))
|
|
2537
|
+
|
|
2538
|
+
### SHRONKWRAPS AND LACKFILES
|
|
2539
|
+
|
|
2540
|
+
If a published modules had legacy `npm-shrinkwrap.json` we were saving
|
|
2541
|
+
ordinary registry dependencies (`name@version`) to your `package-lock.json`
|
|
2542
|
+
as `https://` URLs instead of versions.
|
|
2543
|
+
|
|
2544
|
+
* [`89102c0d9`](https://github.com/npm/npm/commit/89102c0d995c3d707ff2b56995a97a1610f8b532)
|
|
2545
|
+
When saving the lock-file compute how the dependency is being required instead of using
|
|
2546
|
+
`_resolved` in the `package.json`. This fixes the bug that was converting
|
|
2547
|
+
registry dependencies into `https://` dependencies.
|
|
2548
|
+
([@iarna](https://github.com/iarna))
|
|
2549
|
+
* [`676f1239a`](https://github.com/npm/npm/commit/676f1239ab337ff967741895dbe3a6b6349467b6)
|
|
2550
|
+
When encountering a `https://` URL in our lockfiles that point at our default registry, extract
|
|
2551
|
+
the version and use them as registry dependencies. This lets us heal
|
|
2552
|
+
`package-lock.json` files produced by 6.0.0
|
|
2553
|
+
([@iarna](https://github.com/iarna))
|
|
2554
|
+
|
|
2555
|
+
### AUDIT AUDIT EVERYWHERE
|
|
2556
|
+
|
|
2557
|
+
You can't use it _quite_ yet, but we do have a few last moment patches to `npm audit` to make
|
|
2558
|
+
it even better when it is turned on!
|
|
2559
|
+
|
|
2560
|
+
* [`b2e4f48f5`](https://github.com/npm/npm/commit/b2e4f48f5c07b8ebc94a46ce01a810dd5d6cd20c)
|
|
2561
|
+
Make sure we hide stream errors on background audit submissions. Previously some classes
|
|
2562
|
+
of error could end up being displayed (harmlessly) during installs.
|
|
2563
|
+
([@iarna](https://github.com/iarna))
|
|
2564
|
+
* [`1fe0c7fea`](https://github.com/npm/npm/commit/1fe0c7fea226e592c96b8ab22fd9435e200420e9)
|
|
2565
|
+
Include session and scope in requests (as we do in other requests to the registry).
|
|
2566
|
+
([@iarna](https://github.com/iarna))
|
|
2567
|
+
* [`d04656461`](https://github.com/npm/npm/commit/d046564614639c37e7984fff127c79a8ddcc0c92)
|
|
2568
|
+
Exit with non-zero status when vulnerabilities are found. So you can have `npm audit` as a test or prepublish step!
|
|
2569
|
+
([@iarna](https://github.com/iarna))
|
|
2570
|
+
* [`fcdbcbacc`](https://github.com/npm/npm/commit/fcdbcbacc16d96a8696dde4b6d7c1cba77828337)
|
|
2571
|
+
Verify lockfile integrity before running. You'd get an error either way, but this way it's
|
|
2572
|
+
faster and can give you more concrete instructions on how to fix it.
|
|
2573
|
+
([@iarna](https://github.com/iarna))
|
|
2574
|
+
* [`2ac8edd42`](https://github.com/npm/npm/commit/2ac8edd4248f2393b35896f0300b530e7666bb0e)
|
|
2575
|
+
Refuse to run in global mode. Audits require a lockfile and globals don't have one. Yet.
|
|
2576
|
+
([@iarna](https://github.com/iarna))
|
|
2577
|
+
|
|
2578
|
+
### DOCUMENTATION IMPROVEMENTS
|
|
2579
|
+
|
|
2580
|
+
* [`b7fca1084`](https://github.com/npm/npm/commit/b7fca1084b0be6f8b87ec0807c6daf91dbc3060a)
|
|
2581
|
+
[#20407](https://github.com/npm/npm/pull/20407)
|
|
2582
|
+
Update the lock-file spec doc to mention that we now generate the from field for `git`-type dependencies.
|
|
2583
|
+
([@watilde](https://github.com/watilde))
|
|
2584
|
+
* [`7a6555e61`](https://github.com/npm/npm/commit/7a6555e618e4b8459609b7847a9e17de2d4fa36e)
|
|
2585
|
+
[#20408](https://github.com/npm/npm/pull/20408)
|
|
2586
|
+
Describe what the colors in outdated mean.
|
|
2587
|
+
([@teameh](https://github.com/teameh))
|
|
2588
|
+
|
|
2589
|
+
### DEPENDENCY UPDATES
|
|
2590
|
+
|
|
2591
|
+
* [`5e56b3209`](https://github.com/npm/npm/commit/5e56b3209c4719e3c4d7f0d9346dfca3881a5d34)
|
|
2592
|
+
`npm-audit-report@1.0.8`
|
|
2593
|
+
([@evilpacket](https://github.com/evilpacket))
|
|
2594
|
+
* [`58a0b31b4`](https://github.com/npm/npm/commit/58a0b31b43245692b4de0f1e798fcaf71f8b7c31)
|
|
2595
|
+
`lock-verify@2.0.2`
|
|
2596
|
+
([@iarna](https://github.com/iarna))
|
|
2597
|
+
* [`e7a8c364f`](https://github.com/npm/npm/commit/e7a8c364f3146ffb94357d8dd7f643e5563e2f2b)
|
|
2598
|
+
[zkat/pacote#148](https://github.com/zkat/pacote/pull/148)
|
|
2599
|
+
`pacote@8.1.1`
|
|
2600
|
+
([@redonkulus](https://github.com/redonkulus))
|
|
2601
|
+
* [`46c0090a5`](https://github.com/npm/npm/commit/46c0090a517526dfec9b1b6483ff640227f0cd10)
|
|
2602
|
+
`tar@4.4.2`
|
|
2603
|
+
([@isaacs](https://github.com/isaacs))
|
|
2604
|
+
* [`8a16db3e3`](https://github.com/npm/npm/commit/8a16db3e39715301fd085a8f4c80ae836f0ec714)
|
|
2605
|
+
`update-notifier@2.5.0`
|
|
2606
|
+
([@alexccl](https://github.com/alexccl))
|
|
2607
|
+
* [`696375903`](https://github.com/npm/npm/commit/6963759032fe955c1404d362e14f458d633c9444)
|
|
2608
|
+
`safe-buffer@5.1.2`
|
|
2609
|
+
([@feross](https://github.com/feross))
|
|
2610
|
+
* [`c949eb26a`](https://github.com/npm/npm/commit/c949eb26ab6c0f307e75a546f342bb2ec0403dcf)
|
|
2611
|
+
`query-string@6.1.0`
|
|
2612
|
+
([@sindresorhus](https://github.com/sindresorhus))
|
|
2613
|
+
|
|
2614
|
+
## v6.0.0 (2018-04-20):
|
|
2615
|
+
|
|
2616
|
+
Hey y'all! Here's another `npm@6` release -- with `node@10` around the corner,
|
|
2617
|
+
this might well be the last prerelease before we tag `6.0.0`! There's two major
|
|
2618
|
+
features included with this release, along with a few miscellaneous fixes and
|
|
2619
|
+
changes.
|
|
2620
|
+
|
|
2621
|
+
### EXTENDED `npm init` SCAFFOLDING
|
|
2622
|
+
|
|
2623
|
+
Thanks to the wonderful efforts of [@jdalton](https://github.com/jdalton) of
|
|
2624
|
+
lodash fame, `npm init` can now be used to invoke custom scaffolding tools!
|
|
2625
|
+
|
|
2626
|
+
You can now do things like `npm init react-app` or `npm init esm` to scaffold an
|
|
2627
|
+
npm package by running `create-react-app` and `create-esm`, respectively. This
|
|
2628
|
+
also adds an `npm create` alias, to correspond to Yarn's `yarn create` feature,
|
|
2629
|
+
which inspired this.
|
|
2630
|
+
|
|
2631
|
+
* [`008a83642`](https://github.com/npm/npm/commit/008a83642e04360e461f56da74b5557d5248a726) [`ed81d1426`](https://github.com/npm/npm/commit/ed81d1426776bcac47492cabef43f65e1d4ab536) [`833046e45`](https://github.com/npm/npm/commit/833046e45fe25f75daffd55caf25599a9f98c148)
|
|
2632
|
+
[#20303](https://github.com/npm/npm/pull/20303)
|
|
2633
|
+
Add an `npm init` feature that calls out to `npx` when invoked with positional
|
|
2634
|
+
arguments. ([@jdalton](https://github.com/jdalton))
|
|
2635
|
+
|
|
2636
|
+
### DEPENDENCY AUDITING
|
|
2637
|
+
|
|
2638
|
+
This version of npm adds a new command, `npm audit`, which will run a security
|
|
2639
|
+
audit of your project's dependency tree and notify you about any actions you may
|
|
2640
|
+
need to take.
|
|
2641
|
+
|
|
2642
|
+
The registry-side services required for this command to work will be available
|
|
2643
|
+
on the main npm registry in the coming weeks. Until then, you won't get much out
|
|
2644
|
+
of trying to use this on the CLI.
|
|
2645
|
+
|
|
2646
|
+
As part of this change, the npm CLI now sends scrubbed and cryptographically
|
|
2647
|
+
anonymized metadata about your dependency tree to your configured registry, to
|
|
2648
|
+
allow notifying you about the existence of critical security flaws. For details
|
|
2649
|
+
about how the CLI protects your privacy when it shares this metadata, see `npm
|
|
2650
|
+
help audit`, or [read the docs for `npm audit`
|
|
2651
|
+
online](https://github.com/npm/npm/blob/release-next/doc/cli/npm-audit.md). You
|
|
2652
|
+
can disable this altogether by doing `npm config set audit false`, but will no
|
|
2653
|
+
longer benefit from the service.
|
|
2654
|
+
|
|
2655
|
+
* [`f4bc648ea`](https://github.com/npm/npm/commit/f4bc648ea7b19d63cc9878c9da2cb1312f6ce152)
|
|
2656
|
+
[#20389](https://github.com/npm/npm/pull/20389)
|
|
2657
|
+
`npm-registry-fetch@1.1.0`
|
|
2658
|
+
([@iarna](https://github.com/iarna))
|
|
2659
|
+
* [`594d16987`](https://github.com/npm/npm/commit/594d16987465014d573c51a49bba6886cc19f8e8)
|
|
2660
|
+
[#20389](https://github.com/npm/npm/pull/20389)
|
|
2661
|
+
`npm-audit-report@1.0.5`
|
|
2662
|
+
([@iarna](https://github.com/iarna))
|
|
2663
|
+
* [`8c77dde74`](https://github.com/npm/npm/commit/8c77dde74a9d8f9007667cd1732c3329e0d52617) [`1d8ac2492`](https://github.com/npm/npm/commit/1d8ac2492196c4752b2e41b23d5ddc92780aaa24) [`552ff6d64`](https://github.com/npm/npm/commit/552ff6d64a5e3bcecb33b2a861c49a3396adad6d) [`09c734803`](https://github.com/npm/npm/commit/09c73480329e75e44fb8e55ca522f798be68d448)
|
|
2664
|
+
[#20389](https://github.com/npm/npm/pull/20389)
|
|
2665
|
+
Add new `npm audit` command.
|
|
2666
|
+
([@iarna](https://github.com/iarna))
|
|
2667
|
+
* [`be393a290`](https://github.com/npm/npm/commit/be393a290a5207dc75d3d70a32973afb3322306c)
|
|
2668
|
+
[#20389](https://github.com/npm/npm/pull/20389)
|
|
2669
|
+
Temporarily suppress git metadata till there's an opt-in.
|
|
2670
|
+
([@iarna](https://github.com/iarna))
|
|
2671
|
+
* [`8e713344f`](https://github.com/npm/npm/commit/8e713344f6e0828ddfb7733df20d75e95a5382d8)
|
|
2672
|
+
[#20389](https://github.com/npm/npm/pull/20389)
|
|
2673
|
+
Document the new command.
|
|
2674
|
+
([@iarna](https://github.com/iarna))
|
|
2675
|
+
*
|
|
2676
|
+
[#20389](https://github.com/npm/npm/pull/20389)
|
|
2677
|
+
Default audit to off when running the npm test suite itself.
|
|
2678
|
+
([@iarna](https://github.com/iarna))
|
|
2679
|
+
|
|
2680
|
+
### MORE `package-lock.json` FORMAT CHANGES?!
|
|
2681
|
+
|
|
2682
|
+
* [`820f74ae2`](https://github.com/npm/npm/commit/820f74ae22b7feb875232d46901cc34e9ba995d6)
|
|
2683
|
+
[#20384](https://github.com/npm/npm/pull/20384)
|
|
2684
|
+
Add `from` field back into package-lock for git dependencies. This will give
|
|
2685
|
+
npm the information it needs to figure out whether git deps are valid,
|
|
2686
|
+
specially when running with legacy install metadata or in
|
|
2687
|
+
`--package-lock-only` mode when there's no `node_modules`. This should help
|
|
2688
|
+
remove a significant amount of git-related churn on the lock-file.
|
|
2689
|
+
([@zkat](https://github.com/zkat))
|
|
2690
|
+
|
|
2691
|
+
### BUGFIXES
|
|
2692
|
+
|
|
2693
|
+
* [`9d5d0a18a`](https://github.com/npm/npm/commit/9d5d0a18a5458655275056156b5aa001140ae4d7)
|
|
2694
|
+
[#20358](https://github.com/npm/npm/pull/20358)
|
|
2695
|
+
`npm install-test` (aka `npm it`) will no longer generate `package-lock.json`
|
|
2696
|
+
when running with `--no-package-lock` or `package-lock=false`.
|
|
2697
|
+
([@raymondfeng](https://github.com/raymondfeng))
|
|
2698
|
+
* [`e4ed976e2`](https://github.com/npm/npm/commit/e4ed976e20b7d1114c920a9dc9faf351f89a31c9)
|
|
2699
|
+
[`2facb35fb`](https://github.com/npm/npm/commit/2facb35fbfbbc415e693d350b67413a66ff96204)
|
|
2700
|
+
[`9c1eb945b`](https://github.com/npm/npm/commit/9c1eb945be566e24cbbbf186b0437bdec4be53fc)
|
|
2701
|
+
[#20390](https://github.com/npm/npm/pull/20390)
|
|
2702
|
+
Fix a scenario where a git dependency had a comittish associated with it
|
|
2703
|
+
that was not a complete commitid. `npm` would never consider that entry
|
|
2704
|
+
in the `package.json` as matching the entry in the `package-lock.json` and
|
|
2705
|
+
this resulted in inappropriate pruning or reinstallation of git
|
|
2706
|
+
dependencies. This has been addressed in two ways, first, the addition of the
|
|
2707
|
+
`from` field as described in [#20384](https://github.com/npm/npm/pull/20384) means
|
|
2708
|
+
we can exactly match the `package.json`. Second, when that's missing (when working with
|
|
2709
|
+
older `package-lock.json` files), we assume that the match is ok. (If
|
|
2710
|
+
it's not, we'll fix it up when a real installation is done.)
|
|
2711
|
+
([@iarna](https://github.com/iarna))
|
|
2712
|
+
|
|
2713
|
+
|
|
2714
|
+
### DEPENDENCIES
|
|
2715
|
+
|
|
2716
|
+
* [`1c1f89b73`](https://github.com/npm/npm/commit/1c1f89b7319b2eef6adee2530c4619ac1c0d83cf)
|
|
2717
|
+
`libnpx@10.2.0`
|
|
2718
|
+
([@zkat](https://github.com/zkat))
|
|
2719
|
+
* [`242d8a647`](https://github.com/npm/npm/commit/242d8a6478b725778c00be8ba3dc85f367006a61)
|
|
2720
|
+
`pacote@8.1.0`
|
|
2721
|
+
([@zkat](https://github.com/zkat))
|
|
2722
|
+
|
|
2723
|
+
### DOCS
|
|
2724
|
+
|
|
2725
|
+
* [`a1c77d614`](https://github.com/npm/npm/commit/a1c77d614adb4fe6769631b646b817fd490d239c)
|
|
2726
|
+
[#20331](https://github.com/npm/npm/pull/20331)
|
|
2727
|
+
Fix broken link to 'private-modules' page. The redirect went away when the new
|
|
2728
|
+
npm website went up, but the new URL is better anyway.
|
|
2729
|
+
([@vipranarayan14](https://github.com/vipranarayan14))
|
|
2730
|
+
* [`ad7a5962d`](https://github.com/npm/npm/commit/ad7a5962d758efcbcfbd9fda9a3d8b38ddbf89a1)
|
|
2731
|
+
[#20279](https://github.com/npm/npm/pull/20279)
|
|
2732
|
+
Document the `--if-present` option for `npm run-script`.
|
|
2733
|
+
([@aleclarson](https://github.com/aleclarson))
|
|
2734
|
+
|
|
2735
|
+
## v6.0.0-next.1 (2018-04-12):
|
|
2736
|
+
|
|
2737
|
+
### NEW FEATURES
|
|
2738
|
+
|
|
2739
|
+
* [`a9e722118`](https://github.com/npm/npm/commit/a9e7221181dc88e14820d0677acccf0648ac3c5a)
|
|
2740
|
+
[#20256](https://github.com/npm/npm/pull/20256)
|
|
2741
|
+
Add support for managing npm webhooks. This brings over functionality
|
|
2742
|
+
previously provided by the [`wombat`](https://www.npmjs.com/package/wombat) CLI.
|
|
2743
|
+
([@zkat](https://github.com/zkat))
|
|
2744
|
+
* [`8a1a64203`](https://github.com/npm/npm/commit/8a1a64203cca3f30999ea9e160eb63662478dcee)
|
|
2745
|
+
[#20126](https://github.com/npm/npm/pull/20126)
|
|
2746
|
+
Add `npm cit` command that's equivalent of `npm ci && npm t` that's equivalent of `npm it`.
|
|
2747
|
+
([@SimenB](https://github.com/SimenB))
|
|
2748
|
+
* [`fe867aaf1`](https://github.com/npm/npm/commit/fe867aaf19e924322fe58ed0cf0a570297a96559)
|
|
2749
|
+
[`49d18b4d8`](https://github.com/npm/npm/commit/49d18b4d87d8050024f8c5d7a0f61fc2514917b1)
|
|
2750
|
+
[`ff6b31f77`](https://github.com/npm/npm/commit/ff6b31f775f532bb8748e8ef85911ffb35a8c646)
|
|
2751
|
+
[`78eab3cda`](https://github.com/npm/npm/commit/78eab3cdab6876728798f876d569badfc74ce68f)
|
|
2752
|
+
The `requires` field in your lock-file will be upgraded to use ranges from
|
|
2753
|
+
versions on your first use of npm.
|
|
2754
|
+
([@iarna](https://github.com/iarna))
|
|
2755
|
+
* [`cf4d7b4de`](https://github.com/npm/npm/commit/cf4d7b4de6fa241a656e58f662af0f8d7cd57d21)
|
|
2756
|
+
[#20257](https://github.com/npm/npm/pull/20257)
|
|
2757
|
+
Add shasum and integrity to the new `npm view` output.
|
|
2758
|
+
([@zkat](https://github.com/zkat))
|
|
2759
|
+
|
|
2760
|
+
### BUG FIXES
|
|
2761
|
+
|
|
2762
|
+
* [`685764308`](https://github.com/npm/npm/commit/685764308e05ff0ddb9943b22ca77b3a56d5c026)
|
|
2763
|
+
Fix a bug where OTPs passed in via the commandline would have leading
|
|
2764
|
+
zeros deleted resulted in authentication failures.
|
|
2765
|
+
([@iarna](https://github.com/iarna))
|
|
2766
|
+
* [`8f3faa323`](https://github.com/npm/npm/commit/8f3faa3234b2d2fcd2cb05712a80c3e4133c8f45)
|
|
2767
|
+
[`6800f76ff`](https://github.com/npm/npm/commit/6800f76ffcd674742ba8944f11f6b0aa55f4b612)
|
|
2768
|
+
[`ec90c06c7`](https://github.com/npm/npm/commit/ec90c06c78134eb2618612ac72288054825ea941)
|
|
2769
|
+
[`825b5d2c6`](https://github.com/npm/npm/commit/825b5d2c60e620da5459d9dc13d4f911294a7ec2)
|
|
2770
|
+
[`4785f13fb`](https://github.com/npm/npm/commit/4785f13fb69f33a8c624ecc8a2be5c5d0d7c94fc)
|
|
2771
|
+
[`bd16485f5`](https://github.com/npm/npm/commit/bd16485f5b3087625e13773f7251d66547d6807d)
|
|
2772
|
+
Restore the ability to bundle dependencies that are uninstallable from the
|
|
2773
|
+
registry. This also eliminates needless registry lookups for bundled
|
|
2774
|
+
dependencies.
|
|
2775
|
+
|
|
2776
|
+
Fixed a bug where attempting to install a dependency that is bundled
|
|
2777
|
+
inside another module without reinstalling that module would result in
|
|
2778
|
+
ENOENT errors.
|
|
2779
|
+
([@iarna](https://github.com/iarna))
|
|
2780
|
+
* [`429498a8c`](https://github.com/npm/npm/commit/429498a8c8d4414bf242be6a3f3a08f9a2adcdf9)
|
|
2781
|
+
[#20029](https://github.com/npm/npm/pull/20029)
|
|
2782
|
+
Allow packages with non-registry specifiers to follow the fast path that
|
|
2783
|
+
the we use with the lock-file for registry specifiers. This will improve install time
|
|
2784
|
+
especially when operating only on the package-lock (`--package-lock-only`).
|
|
2785
|
+
([@zkat](https://github.com/zkat))
|
|
2786
|
+
|
|
2787
|
+
Fix the a bug where `npm i --only=prod` could remove development
|
|
2788
|
+
dependencies from lock-file.
|
|
2789
|
+
([@iarna](https://github.com/iarna))
|
|
2790
|
+
* [`834b46ff4`](https://github.com/npm/npm/commit/834b46ff48ade4ab4e557566c10e83199d8778c6)
|
|
2791
|
+
[#20122](https://github.com/npm/npm/pull/20122)
|
|
2792
|
+
Improve the update-notifier messaging (borrowing ideas from pnpm) and
|
|
2793
|
+
eliminate false positives.
|
|
2794
|
+
([@zkat](https://github.com/zkat))
|
|
2795
|
+
* [`f9de7ef3a`](https://github.com/npm/npm/commit/f9de7ef3a1089ceb2610cd27bbd4b4bc2979c4de)
|
|
2796
|
+
[#20154](https://github.com/npm/npm/pull/20154)
|
|
2797
|
+
Let version succeed when `package-lock.json` is gitignored.
|
|
2798
|
+
([@nwoltman](https://github.com/nwoltman))
|
|
2799
|
+
* [`f8ec52073`](https://github.com/npm/npm/commit/f8ec520732bda687bc58d9da0873dadb2d65ca96)
|
|
2800
|
+
[#20212](https://github.com/npm/npm/pull/20212)
|
|
2801
|
+
Ensure that we only create an `etc` directory if we are actually going to write files to it.
|
|
2802
|
+
([@buddydvd](https://github.com/buddydvd))
|
|
2803
|
+
* [`ab489b753`](https://github.com/npm/npm/commit/ab489b75362348f412c002cf795a31dea6420ef0)
|
|
2804
|
+
[#20140](https://github.com/npm/npm/pull/20140)
|
|
2805
|
+
Note in documentation that `package-lock.json` version gets touched by `npm version`.
|
|
2806
|
+
([@srl295](https://github.com/srl295))
|
|
2807
|
+
* [`857c2138d`](https://github.com/npm/npm/commit/857c2138dae768ea9798782baa916b1840ab13e8)
|
|
2808
|
+
[#20032](https://github.com/npm/npm/pull/20032)
|
|
2809
|
+
Fix bug where unauthenticated errors would get reported as both 404s and
|
|
2810
|
+
401s, i.e. `npm ERR! 404 Registry returned 401`. In these cases the error
|
|
2811
|
+
message will now be much more informative.
|
|
2812
|
+
([@iarna](https://github.com/iarna))
|
|
2813
|
+
* [`d2d290bca`](https://github.com/npm/npm/commit/d2d290bcaa85e44a4b08cc40cb4791dd4f81dfc4)
|
|
2814
|
+
[#20082](https://github.com/npm/npm/pull/20082)
|
|
2815
|
+
Allow optional @ prefix on scope with `npm team` commands for parity with other commands.
|
|
2816
|
+
([@bcoe](https://github.com/bcoe))
|
|
2817
|
+
* [`b5babf0a9`](https://github.com/npm/npm/commit/b5babf0a9aa1e47fad8a07cc83245bd510842047)
|
|
2818
|
+
[#19580](https://github.com/npm/npm/pull/19580)
|
|
2819
|
+
Improve messaging when two-factor authentication is required while publishing.
|
|
2820
|
+
([@jdeniau](https://github.com/jdeniau))
|
|
2821
|
+
* [`471ee1c5b`](https://github.com/npm/npm/commit/471ee1c5b58631fe2e936e32480f3f5ed6438536)
|
|
2822
|
+
[`0da38b7b4`](https://github.com/npm/npm/commit/0da38b7b4aff0464c60ad12e0253fd389efd5086)
|
|
2823
|
+
Fix a bug where optional status of a dependency was not being saved to
|
|
2824
|
+
the package-lock on the initial install.
|
|
2825
|
+
([@iarna](https://github.com/iarna))
|
|
2826
|
+
* [`b3f98d8ba`](https://github.com/npm/npm/commit/b3f98d8ba242a7238f0f9a90ceea840b7b7070af)
|
|
2827
|
+
[`9dea95e31`](https://github.com/npm/npm/commit/9dea95e319169647bea967e732ae4c8212608f53)
|
|
2828
|
+
Ensure that `--no-optional` does not remove optional dependencies from the lock-file.
|
|
2829
|
+
([@iarna](https://github.com/iarna))
|
|
2830
|
+
|
|
2831
|
+
### MISCELLANEOUS
|
|
2832
|
+
|
|
2833
|
+
* [`ec6b12099`](https://github.com/npm/npm/commit/ec6b120995c9c1d17ff84bf0217ba5741365af2d)
|
|
2834
|
+
Exclude all tests from the published version of npm itself.
|
|
2835
|
+
([@iarna](https://github.com/iarna))
|
|
2836
|
+
|
|
2837
|
+
### DEPENDENCY UPDATES
|
|
2838
|
+
|
|
2839
|
+
* [`73dc97455`](https://github.com/npm/npm/commit/73dc974555217207fb384e39d049da19be2f79ba)
|
|
2840
|
+
[zkat/cipm#46](https://github.com/zkat/cipm/pull/46)
|
|
2841
|
+
`libcipm@1.6.2`:
|
|
2842
|
+
Detect binding.gyp for default install lifecycle. Let's `npm ci` work on projects that
|
|
2843
|
+
have their own C code.
|
|
2844
|
+
([@caleblloyd](https://github.com/caleblloyd))
|
|
2845
|
+
* [`77c3f7a00`](https://github.com/npm/npm/commit/77c3f7a0091f689661f61182cd361465e2d695d5)
|
|
2846
|
+
`iferr@1.0.0`
|
|
2847
|
+
* [`dce733e37`](https://github.com/npm/npm/commit/dce733e37687c21cb1a658f06197c609ac39c793)
|
|
2848
|
+
[zkat/json-parse-better-errors#1](https://github.com/zkat/json-parse-better-errors/pull/1)
|
|
2849
|
+
`json-parse-better-errors@1.0.2`
|
|
2850
|
+
([@Hoishin](https://github.com/Hoishin))
|
|
2851
|
+
* [`c52765ff3`](https://github.com/npm/npm/commit/c52765ff32d195842133baf146d647760eb8d0cd)
|
|
2852
|
+
`readable-stream@2.3.6`
|
|
2853
|
+
([@mcollina](https://github.com/mcollina))
|
|
2854
|
+
* [`e160adf9f`](https://github.com/npm/npm/commit/e160adf9fce09f226f66e0892cc3fa45f254b5e8)
|
|
2855
|
+
`update-notifier@2.4.0`
|
|
2856
|
+
([@sindersorhus](https://github.com/sindersorhus))
|
|
2857
|
+
* [`9a9d7809e`](https://github.com/npm/npm/commit/9a9d7809e30d1add21b760804be4a829e3c7e39e)
|
|
2858
|
+
`marked@0.3.1`
|
|
2859
|
+
([@joshbruce](https://github.com/joshbruce))
|
|
2860
|
+
* [`f2fbd8577`](https://github.com/npm/npm/commit/f2fbd857797cf5c12a68a6fb0ff0609d373198b3)
|
|
2861
|
+
[#20256](https://github.com/npm/npm/pull/20256)
|
|
2862
|
+
`figgy-pudding@2.0.1`
|
|
2863
|
+
([@zkat](https://github.com/zkat))
|
|
2864
|
+
* [`44972d53d`](https://github.com/npm/npm/commit/44972d53df2e0f0cc22d527ac88045066205dbbf)
|
|
2865
|
+
[#20256](https://github.com/npm/npm/pull/20256)
|
|
2866
|
+
`libnpmhook@3.0.0`
|
|
2867
|
+
([@zkat](https://github.com/zkat))
|
|
2868
|
+
* [`cfe562c58`](https://github.com/npm/npm/commit/cfe562c5803db08a8d88957828a2cd1cc51a8dd5)
|
|
2869
|
+
[#20276](https://github.com/npm/npm/pull/20276)
|
|
2870
|
+
`node-gyp@3.6.2`
|
|
2871
|
+
* [`3c0bbcb8e`](https://github.com/npm/npm/commit/3c0bbcb8e5440a3b90fabcce85d7a1d31e2ecbe7)
|
|
2872
|
+
[zkat/npx#172](https://github.com/zkat/npx/pull/172)
|
|
2873
|
+
`libnpx@10.1.1`
|
|
2874
|
+
([@jdalton](https://github.com/jdalton))
|
|
2875
|
+
* [`0573d91e5`](https://github.com/npm/npm/commit/0573d91e57c068635a3ad4187b9792afd7b5e22f)
|
|
2876
|
+
[zkat/cacache#128](https://github.com/zkat/cacache/pull/128)
|
|
2877
|
+
`cacache@11.0.1`
|
|
2878
|
+
([@zkat](https://github.com/zkat))
|
|
2879
|
+
* [`396afa99f`](https://github.com/npm/npm/commit/396afa99f61561424866d5c8dd7aedd6f91d611a)
|
|
2880
|
+
`figgy-pudding@3.1.0`
|
|
2881
|
+
([@zkat](https://github.com/zkat))
|
|
2882
|
+
* [`e7f869c36`](https://github.com/npm/npm/commit/e7f869c36ec1dacb630e5ab749eb3bb466193f01)
|
|
2883
|
+
`pacote@8.0.0`
|
|
2884
|
+
([@zkat](https://github.com/zkat))
|
|
2885
|
+
* [`77dac72df`](https://github.com/npm/npm/commit/77dac72dfdb6add66ec859a949b1d2d788a379b7)
|
|
2886
|
+
`ssri@6.0.0`
|
|
2887
|
+
([@zkat](https://github.com/zkat))
|
|
2888
|
+
* [`0b802f2a0`](https://github.com/npm/npm/commit/0b802f2a0bfa15c6af8074ebf9347f07bccdbcc7)
|
|
2889
|
+
`retry@0.12.0`
|
|
2890
|
+
([@iarna](https://github.com/iarna))
|
|
2891
|
+
* [`4781b64bc`](https://github.com/npm/npm/commit/4781b64bcc47d4e7fb7025fd6517cde044f6b5e1)
|
|
2892
|
+
`libnpmhook@4.0.1`
|
|
2893
|
+
([@zkat](https://github.com/zkat))
|
|
2894
|
+
* [`7bdbaeea6`](https://github.com/npm/npm/commit/7bdbaeea61853280f00c8443a3b2d6e6b893ada9)
|
|
2895
|
+
`npm-package-arg@6.1.0`
|
|
2896
|
+
([@zkat](https://github.com/zkat))
|
|
2897
|
+
* [`5f2bf4222`](https://github.com/npm/npm/commit/5f2bf4222004117eb38c44ace961bd15a779fd66)
|
|
2898
|
+
`read-package-tree@5.2.1`
|
|
2899
|
+
([@zkat](https://github.com/zkat))
|
|
2900
|
+
|
|
2901
|
+
## v6.0.0-0 (2018-03-23):
|
|
2902
|
+
|
|
2903
|
+
Sometimes major releases are a big splash, sometimes they're something
|
|
2904
|
+
smaller. This is the latter kind. That said, we expect to keep this in
|
|
2905
|
+
release candidate status until Node 10 ships at the end of April. There
|
|
2906
|
+
will likely be a few more features for the 6.0.0 release line between now
|
|
2907
|
+
and then. We do expect to have a bigger one later this year though, so keep
|
|
2908
|
+
an eye out for `npm@7`!
|
|
2909
|
+
|
|
2910
|
+
### *BREAKING* AVOID DEPRECATED
|
|
2911
|
+
|
|
2912
|
+
When selecting versions to install, we now avoid deprecated versions if
|
|
2913
|
+
possible. For example:
|
|
2914
|
+
|
|
2915
|
+
```
|
|
2916
|
+
Module: example
|
|
2917
|
+
Versions:
|
|
2918
|
+
1.0.0
|
|
2919
|
+
1.1.0
|
|
2920
|
+
1.1.2
|
|
2921
|
+
1.1.3 (deprecated)
|
|
2922
|
+
1.2.0 (latest)
|
|
2923
|
+
```
|
|
2924
|
+
|
|
2925
|
+
If you ask `npm` to install `example@~1.1.0`, `npm` will now give you `1.1.2`.
|
|
2926
|
+
|
|
2927
|
+
By contrast, if you installed `example@~1.1.3` then you'd get `1.1.3`, as
|
|
2928
|
+
it's the only version that can match the range.
|
|
2929
|
+
|
|
2930
|
+
* [`78bebc0ce`](https://github.com/npm/npm/commit/78bebc0cedc4ce75c974c47b61791e6ca1ccfd7e)
|
|
2931
|
+
[#20151](https://github.com/npm/npm/pull/20151)
|
|
2932
|
+
Skip deprecated versions when possible.
|
|
2933
|
+
([@zkat](https://github.com/zkat))
|
|
2934
|
+
|
|
2935
|
+
### *BREAKING* UPDATE AND OUTDATED
|
|
2936
|
+
|
|
2937
|
+
When `npm install` is finding a version to install, it first checks to see
|
|
2938
|
+
if the specifier you requested matches the `latest` tag. If it doesn't,
|
|
2939
|
+
then it looks for the highest version that does. This means you can do
|
|
2940
|
+
release candidates on tags other than `latest` and users won't see them
|
|
2941
|
+
unless they ask for them. Promoting them is as easy as setting the `latest`
|
|
2942
|
+
tag to point at them.
|
|
2943
|
+
|
|
2944
|
+
Historically `npm update` and `npm outdated` worked differently. They just
|
|
2945
|
+
looked for the most recent thing that matched the semver range, disregarding
|
|
2946
|
+
the `latest` tag. We're changing it to match `npm install`'s behavior.
|
|
2947
|
+
|
|
2948
|
+
* [`3aaa6ef42`](https://github.com/npm/npm/commit/3aaa6ef427b7a34ebc49cd656e188b5befc22bae)
|
|
2949
|
+
Make update and outdated respect latest interaction with semver as install does.
|
|
2950
|
+
([@iarna](https://github.com/iarna))
|
|
2951
|
+
* [`e5fbbd2c9`](https://github.com/npm/npm/commit/e5fbbd2c999ab9c7ec15b30d8b4eb596d614c715)
|
|
2952
|
+
`npm-pick-manifest@2.1.0`
|
|
2953
|
+
([@iarna](https://github.com/iarna))
|
|
2954
|
+
|
|
2955
|
+
### PLUS ONE SMALLER PATCH
|
|
2956
|
+
|
|
2957
|
+
Technically this is a bug fix, but the change in behavior is enough of an
|
|
2958
|
+
edge case that I held off on bringing it in until a major version.
|
|
2959
|
+
|
|
2960
|
+
When we extract a binary and it starts with a shebang (or "hash bang"), that
|
|
2961
|
+
is, something like:
|
|
2962
|
+
|
|
2963
|
+
```
|
|
2964
|
+
#!/usr/bin/env node
|
|
2965
|
+
```
|
|
2966
|
+
|
|
2967
|
+
If the file has Windows line endings we strip them off of the first line.
|
|
2968
|
+
The reason for this is that shebangs are only used in Unix-like environments
|
|
2969
|
+
and the files with them can't be run if the shebang has a Windows line ending.
|
|
2970
|
+
|
|
2971
|
+
Previously we converted ALL line endings from Windows to Unix. With this
|
|
2972
|
+
patch we only convert the line with the shebang. (Node.js works just fine
|
|
2973
|
+
with either set of line endings.)
|
|
2974
|
+
|
|
2975
|
+
* [`814658371`](https://github.com/npm/npm/commit/814658371bc7b820b23bc138e2b90499d5dda7b1)
|
|
2976
|
+
[`7265198eb`](https://github.com/npm/npm/commit/7265198ebb32d35937f4ff484b0167870725b054)
|
|
2977
|
+
`bin-links@1.1.2`:
|
|
2978
|
+
Only rewrite the CR after a shebang (if any) when fixing up CR/LFs.
|
|
2979
|
+
([@iarna](https://github.com/iarna))
|
|
2980
|
+
|
|
2981
|
+
### *BREAKING* SUPPORTED NODE VERSIONS
|
|
2982
|
+
|
|
2983
|
+
Per our supported Node.js policy, we're dropping support for both Node 4 and
|
|
2984
|
+
Node 7, which are no longer supported by the Node.js project.
|
|
2985
|
+
|
|
2986
|
+
* [`077cbe917`](https://github.com/npm/npm/commit/077cbe917930ed9a0c066e10934d540e1edb6245)
|
|
2987
|
+
Drop support for Node 4 and Node 7.
|
|
2988
|
+
([@iarna](https://github.com/iarna))
|
|
2989
|
+
|
|
2990
|
+
### DEPENDENCIES
|
|
2991
|
+
|
|
2992
|
+
* [`478fbe2d0`](https://github.com/npm/npm/commit/478fbe2d0bce1534b1867e0b80310863cfacc01a)
|
|
2993
|
+
`iferr@1.0.0`
|
|
2994
|
+
* [`b18d88178`](https://github.com/npm/npm/commit/b18d88178a4cf333afd896245a7850f2f5fb740b)
|
|
2995
|
+
`query-string@6.0.0`
|
|
2996
|
+
* [`e02fa7497`](https://github.com/npm/npm/commit/e02fa7497f89623dc155debd0143aa54994ace74)
|
|
2997
|
+
`is-cidr@2.0.5`
|
|
2998
|
+
* [`c8f8564be`](https://github.com/npm/npm/commit/c8f8564be6f644e202fccd9e3de01d64f346d870)
|
|
2999
|
+
[`311e55512`](https://github.com/npm/npm/commit/311e5551243d67bf9f0d168322378061339ecff8)
|
|
3000
|
+
`standard@11.0.1`
|