jfrog-cli-v2-jf 2.6.0
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/README.md +28 -0
- package/assets/jfrog.jpg +0 -0
- package/bin/jf +0 -0
- package/init.js +113 -0
- package/node-v8.11.1-linux-x64/CHANGELOG.md +1396 -0
- package/node-v8.11.1-linux-x64/LICENSE +1171 -0
- package/node-v8.11.1-linux-x64/README.md +601 -0
- package/node-v8.11.1-linux-x64/bin/node +0 -0
- package/node-v8.11.1-linux-x64/include/node/android-ifaddrs.h +54 -0
- package/node-v8.11.1-linux-x64/include/node/common.gypi +431 -0
- package/node-v8.11.1-linux-x64/include/node/config.gypi +63 -0
- package/node-v8.11.1-linux-x64/include/node/libplatform/libplatform-export.h +29 -0
- package/node-v8.11.1-linux-x64/include/node/libplatform/libplatform.h +83 -0
- package/node-v8.11.1-linux-x64/include/node/libplatform/v8-tracing.h +284 -0
- package/node-v8.11.1-linux-x64/include/node/node.h +782 -0
- package/node-v8.11.1-linux-x64/include/node/node_api.h +592 -0
- package/node-v8.11.1-linux-x64/include/node/node_api_types.h +115 -0
- package/node-v8.11.1-linux-x64/include/node/node_buffer.h +89 -0
- package/node-v8.11.1-linux-x64/include/node/node_object_wrap.h +132 -0
- package/node-v8.11.1-linux-x64/include/node/node_version.h +110 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/aes.h +149 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/archs/BSD-x86/opensslconf.h +270 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/archs/BSD-x86_64/opensslconf.h +270 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/archs/VC-WIN32/opensslconf.h +271 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/archs/VC-WIN64A/opensslconf.h +271 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/archs/aix-gcc/opensslconf.h +273 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/archs/aix64-gcc/opensslconf.h +273 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/archs/darwin-i386-cc/opensslconf.h +273 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/archs/darwin64-x86_64-cc/opensslconf.h +273 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/archs/linux-aarch64/opensslconf.h +270 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/archs/linux-armv4/opensslconf.h +270 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/archs/linux-elf/opensslconf.h +270 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/archs/linux-ppc/opensslconf.h +270 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/archs/linux-ppc64/opensslconf.h +270 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/archs/linux-x32/opensslconf.h +270 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/archs/linux-x86_64/opensslconf.h +270 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/archs/linux32-s390x/opensslconf.h +270 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/archs/linux64-s390x/opensslconf.h +270 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/archs/solaris-x86-gcc/opensslconf.h +270 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/archs/solaris64-x86_64-gcc/opensslconf.h +270 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/asn1.h +1420 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/asn1_mac.h +579 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/asn1t.h +973 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/bio.h +883 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/blowfish.h +130 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/bn.h +951 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/buffer.h +125 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/camellia.h +132 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/cast.h +107 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/cmac.h +82 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/cms.h +555 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/comp.h +83 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/conf.h +268 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/conf_api.h +89 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/crypto.h +661 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/des.h +257 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/des_old.h +497 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/dh.h +412 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/dsa.h +332 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/dso.h +451 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/dtls1.h +272 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/e_os2.h +328 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/ebcdic.h +26 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/ec.h +1282 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/ecdh.h +134 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/ecdsa.h +335 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/engine.h +960 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/err.h +390 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/evp.h +1628 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/hmac.h +109 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/idea.h +105 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/krb5_asn.h +240 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/kssl.h +197 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/lhash.h +240 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/md4.h +119 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/md5.h +119 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/mdc2.h +94 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/modes.h +163 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/obj_mac.h +4194 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/objects.h +1143 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/ocsp.h +637 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/opensslconf.h +154 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/opensslv.h +97 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/ossl_typ.h +213 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/pem.h +617 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/pem2.h +70 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/pkcs12.h +342 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/pkcs7.h +481 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/pqueue.h +99 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/rand.h +150 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/rc2.h +103 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/rc4.h +88 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/ripemd.h +105 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/rsa.h +664 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/safestack.h +2672 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/seed.h +149 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/sha.h +214 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/srp.h +179 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/srtp.h +147 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/ssl.h +3163 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/ssl2.h +265 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/ssl23.h +84 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/ssl3.h +774 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/stack.h +107 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/symhacks.h +518 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/tls1.h +810 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/ts.h +865 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/txt_db.h +112 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/ui.h +415 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/ui_compat.h +88 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/whrlpool.h +41 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/x509.h +1330 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/x509_vfy.h +652 -0
- package/node-v8.11.1-linux-x64/include/node/openssl/x509v3.h +1055 -0
- package/node-v8.11.1-linux-x64/include/node/pthread-barrier.h +69 -0
- package/node-v8.11.1-linux-x64/include/node/stdint-msvc2008.h +247 -0
- package/node-v8.11.1-linux-x64/include/node/tree.h +768 -0
- package/node-v8.11.1-linux-x64/include/node/uv-aix.h +32 -0
- package/node-v8.11.1-linux-x64/include/node/uv-bsd.h +34 -0
- package/node-v8.11.1-linux-x64/include/node/uv-darwin.h +61 -0
- package/node-v8.11.1-linux-x64/include/node/uv-errno.h +431 -0
- package/node-v8.11.1-linux-x64/include/node/uv-linux.h +34 -0
- package/node-v8.11.1-linux-x64/include/node/uv-os390.h +33 -0
- package/node-v8.11.1-linux-x64/include/node/uv-posix.h +31 -0
- package/node-v8.11.1-linux-x64/include/node/uv-sunos.h +44 -0
- package/node-v8.11.1-linux-x64/include/node/uv-threadpool.h +37 -0
- package/node-v8.11.1-linux-x64/include/node/uv-unix.h +464 -0
- package/node-v8.11.1-linux-x64/include/node/uv-version.h +43 -0
- package/node-v8.11.1-linux-x64/include/node/uv-win.h +676 -0
- package/node-v8.11.1-linux-x64/include/node/uv.h +1566 -0
- package/node-v8.11.1-linux-x64/include/node/v8-debug.h +255 -0
- package/node-v8.11.1-linux-x64/include/node/v8-inspector-protocol.h +13 -0
- package/node-v8.11.1-linux-x64/include/node/v8-inspector.h +269 -0
- package/node-v8.11.1-linux-x64/include/node/v8-platform.h +241 -0
- package/node-v8.11.1-linux-x64/include/node/v8-profiler.h +912 -0
- package/node-v8.11.1-linux-x64/include/node/v8-testing.h +48 -0
- package/node-v8.11.1-linux-x64/include/node/v8-util.h +655 -0
- package/node-v8.11.1-linux-x64/include/node/v8-value-serializer-version.h +24 -0
- package/node-v8.11.1-linux-x64/include/node/v8-version-string.h +33 -0
- package/node-v8.11.1-linux-x64/include/node/v8-version.h +20 -0
- package/node-v8.11.1-linux-x64/include/node/v8.h +10342 -0
- package/node-v8.11.1-linux-x64/include/node/v8config.h +417 -0
- package/node-v8.11.1-linux-x64/include/node/zconf.h +534 -0
- package/node-v8.11.1-linux-x64/include/node/zlib.h +1912 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/.github/CODEOWNERS +1 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/.github/issue_template.md +69 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/.mailmap +67 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/.npmignore +34 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/.travis.yml +38 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/AUTHORS +538 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/CHANGELOG.md +1488 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/CONTRIBUTING.md +82 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/LICENSE +235 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/Makefile +190 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/README.md +169 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/TROUBLESHOOTING.md +192 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/appveyor.yml +34 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/bin/node-gyp-bin/node-gyp +6 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/bin/node-gyp-bin/node-gyp.cmd +5 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/bin/npm +34 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/bin/npm-cli.js +92 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/bin/npm.cmd +19 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/bin/npx +34 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/bin/npx-cli.js +8 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/bin/npx.cmd +19 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/changelogs/CHANGELOG-1.md +743 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/changelogs/CHANGELOG-2.md +5344 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/changelogs/CHANGELOG-3.md +5245 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/changelogs/CHANGELOG-4.md +1566 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/configure +33 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-access.md +76 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-adduser.md +85 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-bin.md +19 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-bugs.md +43 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-build.md +25 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-bundle.md +14 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-cache.md +83 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-completion.md +31 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-config.md +73 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-dedupe.md +55 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-deprecate.md +26 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-dist-tag.md +88 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-docs.md +44 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-doctor.md +102 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-edit.md +37 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-explore.md +39 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-help-search.md +34 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-help.md +38 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-init.md +38 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-install-test.md +25 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-install.md +444 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-link.md +74 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-logout.md +45 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-ls.md +111 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-outdated.md +112 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-owner.md +39 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-pack.md +27 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-ping.md +24 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-prefix.md +23 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-profile.md +74 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-prune.md +26 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-publish.md +73 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-rebuild.md +19 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-repo.md +27 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-restart.md +40 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-root.md +19 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-run-script.md +78 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-search.md +106 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-shrinkwrap.md +25 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-star.md +22 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-stars.md +21 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-start.md +24 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-stop.md +18 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-team.md +55 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-test.md +20 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-token.md +59 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-uninstall.md +53 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-unpublish.md +43 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-update.md +149 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-version.md +119 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-view.md +96 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm-whoami.md +17 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/cli/npm.md +165 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/files/npm-folders.md +213 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/files/npm-package-locks.md +145 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/files/npm-shrinkwrap.json.md +27 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/files/npmrc.md +90 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/files/package-lock.json.md +132 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/files/package.json.md +785 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/misc/npm-coding-style.md +192 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/misc/npm-config.md +1185 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/misc/npm-developers.md +233 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/misc/npm-disputes.md +130 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/misc/npm-index.md +303 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/misc/npm-orgs.md +90 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/misc/npm-registry.md +92 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/misc/npm-scope.md +113 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/misc/npm-scripts.md +266 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/misc/removing-npm.md +54 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/misc/semver.md +366 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/spec/file-specifiers.md +154 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/doc/spec/package-lock.md +276 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/README.html +131 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-access.html +90 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-adduser.html +85 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-bin.html +39 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-bugs.html +59 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-build.html +44 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-bundle.html +35 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-cache.html +93 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-completion.html +47 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-config.html +72 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-dedupe.html +65 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-deprecate.html +42 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-dist-tag.html +92 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-docs.html +60 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-doctor.html +107 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-edit.html +53 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-explore.html +53 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-help-search.html +49 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-help.html +54 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-init.html +52 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-install-test.html +46 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-install.html +373 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-link.html +78 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-logout.html +55 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-ls.html +114 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-outdated.html +120 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-owner.html +58 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-pack.html +45 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-ping.html +40 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-prefix.html +42 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-profile.html +94 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-prune.html +44 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-publish.html +89 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-rebuild.html +39 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-repo.html +45 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-restart.html +57 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-root.html +39 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-run-script.html +84 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-search.html +113 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-shrinkwrap.html +45 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-star.html +40 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-stars.html +40 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-start.html +43 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-stop.html +38 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-team.html +71 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-test.html +40 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-token.html +77 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-uninstall.html +67 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-unpublish.html +55 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-update.html +122 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-version.html +124 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-view.html +90 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm-whoami.html +37 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/cli/npm.html +154 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/files/npm-folders.html +185 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/files/npm-global.html +185 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/files/npm-json.html +607 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/files/npm-package-locks.html +149 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/files/npm-shrinkwrap.json.html +46 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/files/npmrc.html +89 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/files/package-lock.json.html +128 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/files/package.json.html +607 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/index.html +176 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/misc/npm-coding-style.html +157 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/misc/npm-config.html +1028 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/misc/npm-developers.html +208 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/misc/npm-disputes.html +138 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/misc/npm-index.html +176 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/misc/npm-orgs.html +90 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/misc/npm-registry.html +94 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/misc/npm-scope.html +103 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/misc/npm-scripts.html +243 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/misc/removing-npm.html +61 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/doc/misc/semver.html +340 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/docfoot.html +13 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/dochead.html +11 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/favicon.ico +0 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/index.html +93 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/static/style.css +336 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/html/static/toc.js +29 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/access.js +129 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/adduser.js +49 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/auth/legacy.js +57 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/auth/oauth.js +7 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/auth/saml.js +7 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/auth/sso.js +59 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/bin.js +23 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/bugs.js +32 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/build.js +140 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/cache.js +136 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/completion.js +248 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/config/bin-links.js +32 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/config/clear-credentials-by-uri.js +16 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/config/cmd-list.js +119 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/config/core.js +431 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/config/defaults.js +430 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/config/fetch-opts.js +77 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/config/gentle-fs.js +32 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/config/get-credentials-by-uri.js +72 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/config/lifecycle.js +31 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/config/load-cafile.js +32 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/config/load-prefix.js +51 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/config/load-uid.js +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/config/nerf-dart.js +23 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/config/pacote.js +139 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/config/reg-client.js +29 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/config/set-credentials-by-uri.js +39 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/config/set-user.js +29 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/config.js +280 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/dedupe.js +160 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/deprecate.js +54 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/dist-tag.js +158 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/docs.js +42 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/doctor/check-files-permission.js +57 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/doctor/check-ping.js +12 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/doctor/get-git-path.js +13 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/doctor/get-latest-nodejs-version.js +27 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/doctor/get-latest-npm-version.js +14 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/doctor/verify-cached-files.js +19 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/doctor.js +113 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/edit.js +35 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/explore.js +59 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/fetch-package-metadata.js +118 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/fetch-package-metadata.md +37 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/get.js +12 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/help-search.js +212 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/help.js +247 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/init.js +41 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/access-error.js +8 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/action/build.js +13 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/action/extract-worker.js +18 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/action/extract.js +160 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/action/fetch.js +16 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/action/finalize.js +106 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/action/global-install.js +17 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/action/global-link.js +8 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/action/install.js +8 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/action/move.js +96 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/action/postinstall.js +8 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/action/preinstall.js +8 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/action/prepare.js +27 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/action/refresh-package-json.js +45 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/action/remove.js +85 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/action/unbuild.js +16 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/actions.js +192 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/and-add-parent-to-errors.js +13 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/and-finish-tracker.js +16 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/and-ignore-errors.js +9 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/check-permissions.js +69 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/copy-tree.js +31 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/decompose-actions.js +72 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/deps.js +742 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/diff-trees.js +244 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/exists.js +27 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/flatten-tree.js +42 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/get-requested.js +12 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/inflate-bundled.js +18 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/inflate-shrinkwrap.js +206 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/is-dev-dep.js +8 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/is-extraneous.js +27 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/is-fs-access-available.js +22 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/is-only-dev.js +35 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/is-only-optional.js +18 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/is-opt-dep.js +8 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/is-prod-dep.js +9 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/module-staging-path.js +8 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/mutate-into-logical-tree.js +140 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/node.js +77 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/read-shrinkwrap.js +58 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/realize-shrinkwrap-specifier.js +22 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/report-optional-failure.js +31 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/save.js +187 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/update-package-json.js +56 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/validate-args.js +73 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/validate-tree.js +95 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install/writable.js +35 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install-test.js +26 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/install.js +959 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/link.js +197 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/logout.js +43 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/ls.js +548 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/npm.js +480 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/outdated.js +425 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/owner.js +277 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/pack.js +232 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/ping.js +27 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/prefix.js +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/profile.js +314 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/prune.js +66 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/publish.js +200 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/rebuild.js +78 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/repo.js +51 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/restart.js +1 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/root.js +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/run-script.js +181 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/search/all-package-metadata.js +313 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/search/all-package-search.js +50 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/search/esearch.js +64 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/search/format-package-stream.js +172 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/search/package-filter.js +41 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/search.js +108 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/set.js +13 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/shrinkwrap.js +252 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/star.js +45 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/stars.js +47 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/start.js +1 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/stop.js +1 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/substack.js +22 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/team.js +55 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/test.js +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/token.js +211 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/unbuild.js +132 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/uninstall.js +79 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/unpublish.js +118 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/update.js +72 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/ansi-trim.js +7 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/child-path.js +10 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/completion/file-completion.js +24 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/completion/installed-deep.js +52 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/completion/installed-shallow.js +87 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/completion.sh +61 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/correct-mkdir.js +123 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/deep-sort-object.js +14 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/depr-check.js +23 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/did-you-mean.js +20 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/error-handler.js +252 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/error-message.js +335 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/escape-arg.js +27 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/escape-exec-path.js +30 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/gently-rm.js +21 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/get-publish-config.js +29 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/git.js +50 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/gunzip-maybe.js +22 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/is-registry.js +12 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/is-windows-bash.js +3 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/is-windows-shell.js +4 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/is-windows.js +2 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/lifecycle-cmd.js +18 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/lifecycle.js +14 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/link.js +8 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/locker.js +73 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/map-to-registry.js +103 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/metrics-launch.js +39 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/metrics.js +73 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/module-name.js +31 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/move.js +12 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/no-progress-while-running.js +23 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/output.js +8 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/package-id.js +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/parse-json.js +24 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/perf.js +27 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/pick-manifest-from-registry-metadata.js +26 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/pulse-till-done.js +38 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/read-local-package.js +12 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/read-user-info.js +66 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/save-stack.js +16 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/spawn.js +50 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/temp-filename.js +7 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/umask.js +17 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/unix-format-path.js +5 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/unsupported.js +52 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/usage.js +27 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/utils/warn-deprecated.js +23 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/version.js +334 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/view.js +337 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/visnup.js +43 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/whoami.js +47 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/lib/xmas.js +59 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/make.bat +3 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-README.1 +178 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-access.1 +92 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-adduser.1 +103 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-bin.1 +30 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-bugs.1 +60 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-build.1 +41 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-bundle.1 +17 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-cache.1 +96 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-completion.1 +42 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-config.1 +97 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-dedupe.1 +71 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-deprecate.1 +37 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-dist-tag.1 +109 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-docs.1 +60 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-doctor.1 +114 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-edit.1 +50 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-explore.1 +55 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-help-search.1 +43 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-help.1 +54 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-init.1 +49 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-install-test.1 +33 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-install.1 +524 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-link.1 +102 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-logout.1 +57 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-ls.1 +153 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-outdated.1 +151 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-owner.1 +53 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-pack.1 +37 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-ping.1 +39 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-prefix.1 +34 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-profile.1 +92 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-prune.1 +34 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-publish.1 +88 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-rebuild.1 +26 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-repo.1 +36 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-restart.1 +61 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-root.1 +30 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-run-script.1 +101 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-search.1 +138 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-shrinkwrap.1 +38 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-star.1 +30 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-stars.1 +30 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-start.1 +34 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-stop.1 +28 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-team.1 +64 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-test.1 +30 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-token.1 +74 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-uninstall.1 +75 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-unpublish.1 +52 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-update.1 +167 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-version.1 +162 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-view.1 +146 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm-whoami.1 +26 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npm.1 +205 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man1/npx.1 +168 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man5/npm-folders.5 +226 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man5/npm-global.5 +226 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man5/npm-json.5 +951 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man5/npm-package-locks.5 +184 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man5/npm-shrinkwrap.json.5 +33 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man5/npmrc.5 +109 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man5/package-lock.json.5 +145 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man5/package.json.5 +951 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man7/npm-coding-style.7 +222 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man7/npm-config.7 +1615 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man7/npm-developers.7 +292 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man7/npm-disputes.7 +150 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man7/npm-index.7 +229 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man7/npm-orgs.7 +147 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man7/npm-registry.7 +97 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man7/npm-scope.7 +137 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man7/npm-scripts.7 +323 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man7/removing-npm.7 +78 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/man/man7/semver.7 +458 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/JSONStream/.npmignore +2 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/JSONStream/.travis.yml +8 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/JSONStream/LICENSE.APACHE2 +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/JSONStream/LICENSE.MIT +24 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/JSONStream/examples/all_docs.js +13 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/JSONStream/index.js +253 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/JSONStream/package.json +75 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/JSONStream/readme.markdown +207 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/abbrev/LICENSE +46 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/abbrev/README.md +23 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/abbrev/abbrev.js +61 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/ansi-regex/index.js +10 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/ansi-regex/license +9 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/ansi-regex/readme.md +46 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/ansicolors/LICENSE +23 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/ansicolors/README.md +62 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/ansicolors/ansicolors.js +65 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/ansicolors/package.json +60 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/ansistyles/LICENSE +23 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/ansistyles/README.md +71 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/ansistyles/ansistyles.js +38 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/ansistyles/package.json +60 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/aproba/LICENSE +14 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/aproba/README.md +94 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/aproba/index.js +105 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/archy/.travis.yml +4 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/archy/LICENSE +18 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/archy/README.markdown +88 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/archy/examples/beep.js +24 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/archy/examples/multi_line.js +25 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/archy/index.js +35 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/archy/package.json +87 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bin-links/CHANGELOG.md +22 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bin-links/LICENSE +235 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bin-links/README.md +47 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bin-links/index.js +187 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/LICENSE +21 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/README.md +52 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/changelog.md +1 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/browser/bluebird.core.js +3781 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/browser/bluebird.core.min.js +31 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/browser/bluebird.js +5623 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/browser/bluebird.min.js +31 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/any.js +21 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/assert.js +55 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/async.js +161 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/bind.js +67 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/bluebird.js +11 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/call_get.js +123 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/cancel.js +129 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/catch_filter.js +42 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/context.js +69 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/debuggability.js +919 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/direct_resolve.js +46 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/each.js +30 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/errors.js +116 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/es5.js +80 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/filter.js +12 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/finally.js +146 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/generators.js +223 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/join.js +168 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/map.js +168 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/method.js +55 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/nodeback.js +51 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/nodeify.js +58 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/promise.js +775 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/promise_array.js +185 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/promisify.js +314 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/props.js +118 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/queue.js +73 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/race.js +49 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/reduce.js +172 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/schedule.js +61 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/settle.js +43 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/some.js +148 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/synchronous_inspection.js +103 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/thenables.js +86 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/timers.js +93 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/using.js +226 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/bluebird/js/release/util.js +380 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cacache/CHANGELOG.md +453 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cacache/LICENSE.md +16 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cacache/README.es.md +628 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cacache/README.md +624 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cacache/en.js +3 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cacache/es.js +3 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cacache/get.js +190 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cacache/index.js +3 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cacache/lib/content/path.js +26 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cacache/lib/content/read.js +115 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cacache/lib/content/rm.js +21 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cacache/lib/content/write.js +162 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cacache/lib/entry-index.js +224 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cacache/lib/memoization.js +69 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cacache/lib/util/fix-owner.js +44 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cacache/lib/util/hash-to-segments.js +11 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cacache/lib/util/move-file.js +51 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cacache/lib/util/tmp.js +32 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cacache/lib/util/y.js +25 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cacache/lib/verify.js +213 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cacache/locales/en.js +44 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cacache/locales/en.json +6 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cacache/locales/es.js +46 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cacache/locales/es.json +6 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cacache/ls.js +6 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cacache/put.js +71 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cacache/rm.js +28 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cacache/verify.js +3 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/call-limit/README.md +85 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/call-limit/call-limit.js +86 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/chownr/LICENSE +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/chownr/README.md +3 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/chownr/chownr.js +52 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cli-table2/.npmignore +5 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cli-table2/.travis.yml +6 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cli-table2/README.md +215 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cli-table2/advanced-usage.md +247 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cli-table2/basic-usage.md +146 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cli-table2/examples/basic-usage-examples.js +222 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cli-table2/examples/col-and-row-span-examples.js +358 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cli-table2/examples/screenshots/basic-usage-with-colors.png +0 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cli-table2/examples/screenshots/multi-line-colors.png +0 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cli-table2/examples/screenshots/truncation-with-colors.png +0 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cli-table2/gulpfile.js +73 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cli-table2/index.js +1 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cli-table2/lib/print-example.js +123 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cli-table2/package.json +84 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cli-table2/src/cell.js +364 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cli-table2/src/layout-manager.js +235 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cli-table2/src/table.js +78 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cli-table2/src/utils.js +304 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cmd-shim/.npmignore +16 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cmd-shim/.travis.yml +4 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cmd-shim/LICENSE +27 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cmd-shim/README.md +44 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cmd-shim/index.js +180 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/cmd-shim/package.json +53 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/columnify/LICENSE +21 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/columnify/Makefile +9 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/columnify/Readme.md +470 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/columnify/columnify.js +308 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/columnify/index.js +297 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/index.js +6 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/license +21 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/readme.md +33 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/.npmignore +1 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/LICENSE +30 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/Readme.md +33 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/combining.js +50 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/docs/index.md +65 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/index.js +99 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/columnify/node_modules/wcwidth/package.json +76 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/columnify/package.json +81 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/columnify/utils.js +193 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/columnify/width.js +6 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/config-chain/.npmignore +3 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/config-chain/LICENCE +22 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/config-chain/index.js +282 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/config-chain/package.json +62 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/config-chain/readme.markdown +237 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/debuglog/LICENSE +19 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/debuglog/README.md +40 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/debuglog/debuglog.js +22 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/debuglog/package.json +58 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/detect-indent/index.js +122 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/detect-indent/license +21 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/detect-indent/readme.md +111 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/dezalgo/.travis.yml +7 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/dezalgo/LICENSE +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/dezalgo/README.md +29 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/dezalgo/dezalgo.js +22 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/dezalgo/node_modules/asap/CHANGES.md +64 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/dezalgo/node_modules/asap/LICENSE.md +21 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/dezalgo/node_modules/asap/README.md +237 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/dezalgo/node_modules/asap/asap.js +65 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/dezalgo/node_modules/asap/browser-asap.js +66 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/dezalgo/node_modules/asap/browser-raw.js +223 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/dezalgo/node_modules/asap/raw.js +101 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/dezalgo/package.json +76 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/editor/LICENSE +21 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/editor/README.markdown +54 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/editor/example/beep.json +5 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/editor/example/edit.js +4 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/editor/index.js +20 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/editor/package.json +67 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/find-npm-prefix/LICENSE +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/find-npm-prefix/README.md +28 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/find-npm-prefix/find-prefix.js +54 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/find-npm-prefix/package.json +59 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/fs-vacuum/.eslintrc +18 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/fs-vacuum/.npmignore +1 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/fs-vacuum/.travis.yml +14 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/fs-vacuum/LICENSE +13 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/fs-vacuum/README.md +33 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/fs-vacuum/package.json +68 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/fs-vacuum/vacuum.js +117 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/fs-write-stream-atomic/.npmignore +3 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/fs-write-stream-atomic/.travis.yml +11 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/fs-write-stream-atomic/LICENSE +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/fs-write-stream-atomic/README.md +35 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/fs-write-stream-atomic/index.js +176 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/fs-write-stream-atomic/package.json +67 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/gentle-fs/CHANGELOG.md +63 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/gentle-fs/LICENSE +235 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/gentle-fs/README.md +74 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/gentle-fs/index.js +10 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/gentle-fs/lib/link.js +66 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/gentle-fs/lib/rm.js +256 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/glob/LICENSE +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/glob/README.md +368 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/glob/changelog.md +67 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/glob/common.js +240 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/glob/glob.js +790 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/glob/sync.js +486 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/graceful-fs/LICENSE +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/graceful-fs/README.md +133 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/graceful-fs/fs.js +21 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/graceful-fs/graceful-fs.js +262 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/graceful-fs/legacy-streams.js +118 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/graceful-fs/polyfills.js +330 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/has-unicode/LICENSE +14 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/has-unicode/README.md +43 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/has-unicode/index.js +16 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/hosted-git-info/LICENSE +13 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/hosted-git-info/README.md +132 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/hosted-git-info/git-host-info.js +68 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/hosted-git-info/git-host.js +114 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/hosted-git-info/index.js +121 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/iferr/.npmignore +1 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/iferr/LICENSE +21 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/iferr/README.md +40 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/iferr/index.coffee +24 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/iferr/index.js +49 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/iferr/package.json +61 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/imurmurhash/README.md +122 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/imurmurhash/imurmurhash.js +138 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/imurmurhash/imurmurhash.min.js +12 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/imurmurhash/package.json +69 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/inflight/LICENSE +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/inflight/README.md +37 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/inflight/inflight.js +54 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/inherits/LICENSE +16 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/inherits/README.md +42 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/inherits/inherits.js +7 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/inherits/inherits_browser.js +23 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/ini/LICENSE +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/ini/README.md +102 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/ini/ini.js +190 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/init-package-json/LICENSE +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/init-package-json/README.md +45 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/init-package-json/default-input.js +239 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/init-package-json/init-package-json.js +154 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/is-cidr/.npmignore +1 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/is-cidr/.travis.yml +21 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/is-cidr/README.md +58 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/is-cidr/example/example.js +14 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/is-cidr/lib/index.js +18 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/is-cidr/node_modules/cidr-regex/.npmignore +1 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/is-cidr/node_modules/cidr-regex/README.md +49 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/is-cidr/node_modules/cidr-regex/lib/index.js +10 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/is-cidr/node_modules/cidr-regex/package.json +68 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/is-cidr/node_modules/cidr-regex/test.js +200 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/is-cidr/package.json +94 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lazy-property/.npmignore +16 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lazy-property/LICENSE +22 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lazy-property/README.md +44 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lazy-property/component.json +7 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lazy-property/lazyProperty.js +19 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lazy-property/package.json +65 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/libnpx/CHANGELOG.md +740 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/libnpx/LICENSE.md +3 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/libnpx/README.md +159 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/libnpx/auto-fallback.js +69 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/libnpx/child.js +86 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/libnpx/get-prefix.js +54 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/libnpx/index.js +366 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/libnpx/libnpx.1 +168 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/libnpx/locales/ar.json +29 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/libnpx/locales/ca.json +28 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/libnpx/locales/cs.json +28 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/libnpx/locales/de.json +29 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/libnpx/locales/en.json +29 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/libnpx/locales/es.json +28 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/libnpx/locales/fr.json +29 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/libnpx/locales/id.json +29 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/libnpx/locales/it.json +28 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/libnpx/locales/ja.json +28 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/libnpx/locales/ko.json +29 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/libnpx/locales/nb.json +29 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/libnpx/locales/nl.json +29 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/libnpx/locales/nn.json +30 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/libnpx/locales/no.json +29 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/libnpx/locales/pl.json +29 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/libnpx/locales/pt_BR.json +28 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/libnpx/locales/ro.json +28 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/libnpx/locales/ru.json +28 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/libnpx/locales/sr.json +29 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/libnpx/locales/tr.json +28 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/libnpx/locales/uk.json +29 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/libnpx/locales/zh_CN.json +28 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/libnpx/locales/zh_TW.json +29 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/libnpx/parse-args.js +237 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/libnpx/util.js +17 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/libnpx/y.js +21 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lockfile/.npmignore +3 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lockfile/.travis.yml +8 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lockfile/CHANGELOG.md +101 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lockfile/LICENSE +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lockfile/README.md +86 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lockfile/gen-changelog.sh +9 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lockfile/lockfile.js +311 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lockfile/package.json +68 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash._baseindexof/LICENSE.txt +22 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash._baseindexof/README.md +20 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash._baseindexof/index.js +57 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash._baseindexof/package.json +80 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash._baseuniq/LICENSE +47 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash._baseuniq/README.md +18 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash._baseuniq/index.js +801 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash._baseuniq/node_modules/lodash._createset/LICENSE +47 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash._baseuniq/node_modules/lodash._createset/README.md +18 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash._baseuniq/node_modules/lodash._createset/index.js +280 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash._baseuniq/node_modules/lodash._createset/package.json +70 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash._baseuniq/node_modules/lodash._root/LICENSE +23 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash._baseuniq/node_modules/lodash._root/README.md +18 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash._baseuniq/node_modules/lodash._root/index.js +59 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash._baseuniq/node_modules/lodash._root/package.json +70 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash._baseuniq/package.json +73 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash._bindcallback/LICENSE.txt +22 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash._bindcallback/README.md +20 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash._bindcallback/index.js +65 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash._bindcallback/package.json +80 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash._cacheindexof/LICENSE.txt +22 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash._cacheindexof/README.md +20 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash._cacheindexof/index.js +53 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash._cacheindexof/package.json +80 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash._createcache/LICENSE +22 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash._createcache/README.md +20 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash._createcache/index.js +91 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash._createcache/package.json +82 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash._getnative/LICENSE +22 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash._getnative/README.md +20 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash._getnative/index.js +137 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash._getnative/package.json +81 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash.clonedeep/LICENSE +47 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash.clonedeep/README.md +18 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash.clonedeep/index.js +1748 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash.clonedeep/package.json +74 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash.restparam/LICENSE.txt +22 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash.restparam/README.md +20 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash.restparam/index.js +67 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash.restparam/package.json +86 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash.union/LICENSE +47 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash.union/README.md +18 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash.union/index.js +1181 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash.union/package.json +74 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash.uniq/LICENSE +47 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash.uniq/README.md +18 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash.uniq/index.js +896 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash.uniq/package.json +74 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash.without/LICENSE +47 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash.without/README.md +18 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash.without/index.js +1051 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lodash.without/package.json +74 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lru-cache/LICENSE +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lru-cache/README.md +152 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/lru-cache/index.js +467 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/meant/.npmignore +37 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/meant/.travis.yml +16 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/meant/CHANGELOG.md +29 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/meant/LICENSE +21 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/meant/README.md +67 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/meant/index.js +49 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/meant/package.json +56 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/meant/test.js +11 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/mississippi/.npmignore +1 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/mississippi/index.js +9 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/mississippi/package.json +70 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/mississippi/readme.md +394 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/mkdirp/.travis.yml +8 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/mkdirp/LICENSE +21 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/mkdirp/README.markdown +100 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/mkdirp/bin/cmd.js +33 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/mkdirp/bin/usage.txt +12 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/mkdirp/examples/pow.js +6 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/mkdirp/index.js +98 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/mkdirp/node_modules/minimist/.travis.yml +4 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/mkdirp/node_modules/minimist/LICENSE +18 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/mkdirp/node_modules/minimist/example/parse.js +2 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/mkdirp/node_modules/minimist/index.js +187 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/mkdirp/node_modules/minimist/package.json +75 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/mkdirp/node_modules/minimist/readme.markdown +73 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/mkdirp/package.json +75 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/move-concurrently/LICENSE +14 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/move-concurrently/README.md +53 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/move-concurrently/move.js +84 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/.jshintrc +7 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/.npmignore +3 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/CHANGELOG.md +176 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/LICENSE +24 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/README.md +242 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/addon.gypi +133 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js +148 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/.npmignore +1 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/AUTHORS +12 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/DEPS +24 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/LICENSE +27 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/OWNERS +1 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/PRESUBMIT.py +137 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/buildbot/aosp_manifest.xml +466 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/buildbot/buildbot_run.py +136 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/buildbot/commit_queue/OWNERS +6 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/buildbot/commit_queue/README +3 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/buildbot/commit_queue/cq_config.json +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/codereview.settings +10 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/data/win/large-pdb-shim.cc +12 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp +8 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp.bat +5 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py +16 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/gyptest.py +274 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSNew.py +340 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSProject.py +208 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings.py +1096 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings_test.py +1483 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSToolFile.py +58 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUserFile.py +147 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUtil.py +270 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSVersion.py +443 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/__init__.py +548 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common.py +608 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common_test.py +72 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml.py +162 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml_test.py +103 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/flock_tool.py +54 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/__init__.py +0 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/analyzer.py +741 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/android.py +1095 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/cmake.py +1221 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/dump_dependency_json.py +99 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/eclipse.py +425 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypd.py +94 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypsh.py +56 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py +2220 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs.py +3494 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs_test.py +37 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja.py +2410 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja_test.py +47 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode.py +1300 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode_test.py +23 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input.py +2897 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input_test.py +90 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/mac_tool.py +610 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/msvs_emulation.py +1087 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/ninja_syntax.py +160 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/ordered_dict.py +289 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/simple_copy.py +46 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/win_tool.py +314 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py +1629 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_ninja.py +270 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcodeproj_file.py +2927 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xml_fix.py +69 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/samples/samples +81 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/samples/samples.bat +5 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/setup.py +19 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/tools/README +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/tools/Xcode/README +5 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/tools/Xcode/Specifications/gyp.pbfilespec +27 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/tools/Xcode/Specifications/gyp.xclangspec +226 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/tools/emacs/README +12 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/tools/emacs/gyp-tests.el +63 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/tools/emacs/gyp.el +275 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/tools/emacs/run-unit-tests.sh +7 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/tools/emacs/testdata/media.gyp +1105 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/tools/emacs/testdata/media.gyp.fontified +1107 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/tools/graphviz.py +100 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/tools/pretty_gyp.py +155 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/tools/pretty_sln.py +169 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/gyp/tools/pretty_vcproj.py +329 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/lib/Find-VS2017.cs +271 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/lib/build.js +266 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/lib/clean.js +22 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/lib/configure.js +523 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/lib/find-node-directory.js +61 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/lib/find-vs2017.js +46 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/lib/install.js +469 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/lib/list.js +33 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/lib/node-gyp.js +216 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/lib/process-release.js +155 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/lib/rebuild.js +14 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/lib/remove.js +52 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/package.json +89 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/node-gyp/src/win_delay_load_hook.cc +36 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/nopt/.npmignore +1 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/nopt/.travis.yml +8 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/nopt/CHANGELOG.md +58 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/nopt/LICENSE +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/nopt/README.md +213 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/nopt/bin/nopt.js +54 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/nopt/examples/my-program.js +30 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/nopt/lib/nopt.js +436 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/nopt/package.json +60 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/normalize-package-data/AUTHORS +4 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/normalize-package-data/LICENSE +30 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/normalize-package-data/README.md +106 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/normalize-package-data/lib/extract_description.js +14 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/normalize-package-data/lib/fixer.js +417 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/normalize-package-data/lib/make_warning.js +23 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/normalize-package-data/lib/normalize.js +39 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/normalize-package-data/lib/safe_format.js +9 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/normalize-package-data/lib/typos.json +25 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/normalize-package-data/lib/warning_messages.json +30 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-cache-filename/LICENSE +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-cache-filename/README.md +21 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-cache-filename/index.js +24 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-cache-filename/package.json +55 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-cache-filename/test.js +23 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-install-checks/CHANGELOG.md +10 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-install-checks/LICENSE +27 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-install-checks/README.md +27 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-install-checks/index.js +144 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-install-checks/package.json +63 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-lifecycle/CHANGELOG.md +67 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-lifecycle/LICENSE +235 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-lifecycle/README.md +50 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-lifecycle/index.js +448 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-lifecycle/lib/spawn.js +65 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-lifecycle/node-gyp-bin/node-gyp +6 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-lifecycle/node-gyp-bin/node-gyp.cmd +5 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-package-arg/LICENSE +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-package-arg/README.md +83 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-package-arg/npa.js +277 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-packlist/LICENSE +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-packlist/README.md +68 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-packlist/index.js +220 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-profile/LICENSE +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-profile/README.md +428 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-profile/index.js +260 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-registry-client/LICENSE +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-registry-client/README.md +357 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-registry-client/index.js +74 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-registry-client/lib/access.js +154 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-registry-client/lib/adduser.js +129 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-registry-client/lib/attempt.js +20 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-registry-client/lib/authify.js +26 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-registry-client/lib/deprecate.js +42 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-registry-client/lib/dist-tags/add.js +43 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-registry-client/lib/dist-tags/fetch.js +37 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-registry-client/lib/dist-tags/rm.js +38 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-registry-client/lib/dist-tags/set.js +39 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-registry-client/lib/dist-tags/update.js +39 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-registry-client/lib/fetch.js +85 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-registry-client/lib/get.js +22 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-registry-client/lib/initialize.js +91 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-registry-client/lib/logout.js +23 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-registry-client/lib/org.js +62 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-registry-client/lib/ping.js +21 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-registry-client/lib/publish.js +194 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-registry-client/lib/request.js +321 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-registry-client/lib/send-anonymous-CLI-metrics.js +19 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-registry-client/lib/star.js +51 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-registry-client/lib/stars.js +18 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-registry-client/lib/tag.js +23 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-registry-client/lib/team.js +105 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-registry-client/lib/unpublish.js +120 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-registry-client/lib/whoami.js +21 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-user-validate/LICENSE +27 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-user-validate/README.md +6 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npm-user-validate/npm-user-validate.js +57 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npmlog/CHANGELOG.md +49 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npmlog/LICENSE +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npmlog/README.md +216 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/npmlog/log.js +309 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/once/LICENSE +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/once/README.md +79 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/once/once.js +42 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/opener/LICENSE.txt +47 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/opener/README.md +57 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/opener/opener.js +60 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/osenv/.npmignore +13 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/osenv/.travis.yml +9 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/osenv/LICENSE +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/osenv/README.md +63 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/osenv/osenv.js +72 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/osenv/package.json +74 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/osenv/x.tap +39 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/pacote/CHANGELOG.md +919 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/pacote/LICENSE +21 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/pacote/README.md +201 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/pacote/extract.js +100 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/pacote/index.js +9 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/pacote/lib/extract-stream.js +50 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/pacote/lib/fetch.js +72 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/pacote/lib/fetchers/directory.js +71 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/pacote/lib/fetchers/file.js +74 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/pacote/lib/fetchers/git.js +172 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/pacote/lib/fetchers/hosted.js +3 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/pacote/lib/fetchers/range.js +3 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/pacote/lib/fetchers/registry/check-warning-header.js +39 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/pacote/lib/fetchers/registry/fetch.js +109 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/pacote/lib/fetchers/registry/index.js +27 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/pacote/lib/fetchers/registry/manifest.js +148 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/pacote/lib/fetchers/registry/pick-registry.js +17 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/pacote/lib/fetchers/registry/registry-key.js +16 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/pacote/lib/fetchers/registry/tarball.js +85 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/pacote/lib/fetchers/remote.js +30 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/pacote/lib/fetchers/tag.js +3 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/pacote/lib/fetchers/version.js +3 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/pacote/lib/finalize-manifest.js +250 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/pacote/lib/util/cache-key.js +6 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/pacote/lib/util/git.js +222 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/pacote/lib/util/gunzip-maybe.js +24 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/pacote/lib/util/opt-check.js +63 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/pacote/lib/util/pack-dir.js +44 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/pacote/lib/util/silentlog.js +13 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/pacote/manifest.js +38 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/pacote/prefetch.js +64 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/pacote/tarball.js +95 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/path-is-inside/LICENSE.txt +47 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/path-is-inside/lib/path-is-inside.js +28 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/promise-inflight/LICENSE +14 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/promise-inflight/README.md +34 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/promise-inflight/inflight.js +36 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/qrcode-terminal/.npmignore +2 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/qrcode-terminal/.travis.yml +3 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/qrcode-terminal/LICENSE +222 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/qrcode-terminal/README.md +81 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/qrcode-terminal/bin/qrcode-terminal.js +68 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/qrcode-terminal/example/basic.js +2 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/qrcode-terminal/example/basic.png +0 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/qrcode-terminal/example/callback.js +4 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/qrcode-terminal/example/small-qrcode.js +6 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/qrcode-terminal/lib/main.js +100 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/qrcode-terminal/package.json +76 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QR8bitByte.js +22 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRBitBuffer.js +38 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRErrorCorrectLevel.js +7 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRMaskPattern.js +10 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRMath.js +44 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRMode.js +6 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRPolynomial.js +66 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRRSBlock.js +298 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRUtil.js +272 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/index.js +462 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/query-string/index.js +210 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/query-string/license +9 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/query-string/readme.md +186 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/qw/LICENSE +14 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/qw/README.md +35 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/qw/qw.js +43 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/read/LICENSE +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/read/README.md +53 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/read/lib/read.js +113 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/read-cmd-shim/.npmignore +3 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/read-cmd-shim/README.md +36 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/read-cmd-shim/index.js +54 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/read-cmd-shim/package.json +60 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/read-installed/.npmignore +13 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/read-installed/.travis.yml +9 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/read-installed/LICENSE +16 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/read-installed/README.md +27 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/read-installed/package.json +67 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/read-installed/read-installed.js +407 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/read-package-json/LICENSE +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/read-package-json/README.md +151 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/read-package-json/read-json.js +440 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/read-package-tree/LICENSE +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/read-package-tree/README.md +68 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/read-package-tree/rpt.js +237 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/.npmignore +9 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/.travis.yml +65 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/LICENSE +47 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/README.md +57 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/duplex-browser.js +1 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/duplex.js +1 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/lib/_stream_duplex.js +124 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/lib/_stream_passthrough.js +47 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/lib/_stream_readable.js +1007 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/lib/_stream_transform.js +214 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/lib/_stream_writable.js +664 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/lib/internal/streams/BufferList.js +74 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/lib/internal/streams/destroy.js +72 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/node_modules/core-util-is/LICENSE +19 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/node_modules/core-util-is/README.md +3 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/node_modules/core-util-is/float.patch +604 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/node_modules/core-util-is/lib/util.js +107 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/node_modules/core-util-is/package.json +66 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/node_modules/core-util-is/test.js +68 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/node_modules/isarray/.npmignore +1 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/node_modules/isarray/.travis.yml +4 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/node_modules/isarray/Makefile +6 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/node_modules/isarray/README.md +60 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/node_modules/isarray/component.json +19 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/node_modules/isarray/index.js +5 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/node_modules/isarray/package.json +76 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/node_modules/isarray/test.js +20 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/node_modules/process-nextick-args/.travis.yml +12 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/node_modules/process-nextick-args/index.js +43 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/node_modules/process-nextick-args/license.md +19 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/node_modules/process-nextick-args/package.json +51 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/node_modules/process-nextick-args/readme.md +18 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/node_modules/process-nextick-args/test.js +24 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/node_modules/string_decoder/.npmignore +2 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/node_modules/string_decoder/LICENSE +48 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/node_modules/string_decoder/README.md +28 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/node_modules/string_decoder/lib/string_decoder.js +272 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/node_modules/string_decoder/package.json +56 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/node_modules/util-deprecate/History.md +16 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/node_modules/util-deprecate/LICENSE +24 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/node_modules/util-deprecate/README.md +53 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/node_modules/util-deprecate/browser.js +67 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/node_modules/util-deprecate/node.js +6 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/node_modules/util-deprecate/package.json +61 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/package.json +103 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/passthrough.js +1 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/readable-browser.js +7 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/readable.js +19 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/transform.js +1 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/writable-browser.js +1 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readable-stream/writable.js +8 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readdir-scoped-modules/.travis.yml +7 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readdir-scoped-modules/LICENSE +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readdir-scoped-modules/README.md +17 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readdir-scoped-modules/package.json +65 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/readdir-scoped-modules/readdir.js +71 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/request/CHANGELOG.md +674 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/request/LICENSE +55 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/request/README.md +1097 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/request/index.js +155 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/request/lib/auth.js +167 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/request/lib/cookies.js +38 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/request/lib/getProxyFromURI.js +79 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/request/lib/har.js +205 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/request/lib/helpers.js +66 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/request/lib/multipart.js +112 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/request/lib/oauth.js +148 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/request/lib/querystring.js +50 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/request/lib/redirect.js +154 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/request/lib/tunnel.js +175 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/request/request.js +1552 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/retry/.npmignore +2 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/retry/License +21 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/retry/Makefile +22 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/retry/Readme.md +215 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/retry/equation.gif +0 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/retry/example/dns.js +31 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/retry/example/stop.js +40 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/retry/index.js +1 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/retry/lib/retry.js +99 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/retry/lib/retry_operation.js +143 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/retry/package.json +61 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/rimraf/LICENSE +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/rimraf/README.md +101 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/rimraf/bin.js +50 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/rimraf/rimraf.js +364 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/safe-buffer/.travis.yml +7 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/safe-buffer/LICENSE +21 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/safe-buffer/README.md +584 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/safe-buffer/index.js +62 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/safe-buffer/package.json +68 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/safe-buffer/test.js +101 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/semver/LICENSE +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/semver/README.md +366 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/semver/bin/semver +133 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/semver/range.bnf +16 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/semver/semver.js +1296 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/sha/.npmignore +4 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/sha/LICENSE +46 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/sha/README.md +49 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/sha/index.js +107 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/sha/package.json +52 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/slide/LICENSE +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/slide/README.md +143 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/slide/index.js +1 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/slide/lib/async-map-ordered.js +65 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/slide/lib/async-map.js +54 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/slide/lib/bind-actor.js +16 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/slide/lib/chain.js +20 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/slide/lib/slide.js +3 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/slide/package.json +63 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/sorted-object/LICENSE.txt +47 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/sorted-object/lib/sorted-object.js +11 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/sorted-union-stream/.npmignore +1 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/sorted-union-stream/.travis.yml +5 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/sorted-union-stream/LICENSE +21 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/sorted-union-stream/README.md +80 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/sorted-union-stream/example.js +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/sorted-union-stream/index.js +59 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/sorted-union-stream/package.json +66 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/sorted-union-stream/test.js +154 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/ssri/CHANGELOG.md +190 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/ssri/LICENSE.md +16 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/ssri/README.md +462 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/ssri/index.js +334 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/strip-ansi/index.js +4 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/strip-ansi/license +9 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/strip-ansi/readme.md +39 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/tar/LICENSE +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/tar/README.md +883 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/tar/index.js +18 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/tar/lib/create.js +110 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/tar/lib/extract.js +127 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/tar/lib/header.js +272 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/tar/lib/high-level-opt.js +29 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/tar/lib/large-numbers.js +92 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/tar/lib/list.js +132 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/tar/lib/mkdir.js +207 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/tar/lib/pack.js +399 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/tar/lib/parse.js +415 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/tar/lib/pax.js +145 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/tar/lib/read-entry.js +94 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/tar/lib/replace.js +211 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/tar/lib/types.js +44 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/tar/lib/unpack.js +481 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/tar/lib/update.js +36 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/tar/lib/warn-mixin.js +14 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/tar/lib/winchars.js +23 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/tar/lib/write-entry.js +395 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/text-table/.travis.yml +4 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/text-table/LICENSE +18 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/text-table/example/align.js +8 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/text-table/example/center.js +8 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/text-table/example/dotalign.js +9 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/text-table/example/doubledot.js +11 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/text-table/example/table.js +6 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/text-table/index.js +86 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/text-table/package.json +78 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/text-table/readme.markdown +134 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/uid-number/LICENSE +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/uid-number/README.md +17 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/uid-number/get-uid-gid.js +24 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/uid-number/package.json +53 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/uid-number/uid-number.js +59 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/umask/.npmignore +28 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/umask/ChangeLog +9 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/umask/LICENSE +22 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/umask/README.md +78 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/umask/index.js +77 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/umask/package.json +60 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/unique-filename/.npmignore +5 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/unique-filename/README.md +33 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/unique-filename/coverage/__root__/index.html +73 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/unique-filename/coverage/__root__/index.js.html +69 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/unique-filename/coverage/base.css +182 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/unique-filename/coverage/index.html +73 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/unique-filename/coverage/prettify.css +1 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/unique-filename/coverage/prettify.js +1 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/unique-filename/coverage/sort-arrow-sprite.png +0 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/unique-filename/coverage/sorter.js +156 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/unique-filename/index.js +8 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/unique-filename/package.json +63 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/unpipe/HISTORY.md +4 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/unpipe/LICENSE +22 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/unpipe/README.md +43 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/unpipe/index.js +69 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/update-notifier/check.js +22 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/update-notifier/index.js +151 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/update-notifier/readme.md +184 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/uuid/.eslintrc.json +46 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/uuid/AUTHORS +5 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/uuid/HISTORY.md +28 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/uuid/LICENSE.md +21 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/uuid/README.md +227 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/uuid/bin/uuid +50 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/uuid/index.js +8 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/uuid/lib/bytesToUuid.js +23 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/uuid/lib/rng-browser.js +33 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/uuid/lib/rng.js +10 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/uuid/lib/sha1-browser.js +85 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/uuid/lib/sha1.js +21 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/uuid/package.json +82 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/uuid/v1.js +100 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/uuid/v4.js +29 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/uuid/v5.js +42 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/validate-npm-package-license/LICENSE +174 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/validate-npm-package-license/README.md +113 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/validate-npm-package-license/index.js +84 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-correct/LICENSE +57 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-correct/README.md +10 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-correct/index.js +237 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-correct/node_modules/spdx-license-ids/LICENSE +24 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-correct/node_modules/spdx-license-ids/README.md +55 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-correct/node_modules/spdx-license-ids/spdx-license-ids.json +334 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-correct/package.json +66 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-expression-parse/AUTHORS +3 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-expression-parse/LICENSE +22 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-expression-parse/README.md +83 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-expression-parse/index.js +5 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-expression-parse/parser.js +1357 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/validate-npm-package-license/package.json +66 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/validate-npm-package-name/.npmignore +1 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/validate-npm-package-name/.travis.yml +6 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/validate-npm-package-name/LICENSE +6 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/validate-npm-package-name/README.md +120 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/validate-npm-package-name/index.js +105 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/validate-npm-package-name/package.json +70 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/which/CHANGELOG.md +147 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/which/LICENSE +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/which/README.md +51 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/which/bin/which +52 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/which/which.js +135 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/worker-farm/.travis.yml +11 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/worker-farm/LICENSE.md +13 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/worker-farm/README.md +144 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/worker-farm/examples/basic/child.js +5 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/worker-farm/examples/basic/index.js +13 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/worker-farm/examples/pi/calc.js +22 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/worker-farm/examples/pi/index.js +41 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/worker-farm/index.d.ts +44 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/worker-farm/lib/child/index.js +52 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/worker-farm/lib/farm.js +339 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/worker-farm/lib/fork.js +32 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/worker-farm/lib/index.js +34 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/worker-farm/node_modules/errno/.npmignore +1 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/worker-farm/node_modules/errno/README.md +141 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/worker-farm/node_modules/errno/build.js +43 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/worker-farm/node_modules/errno/cli.js +20 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/worker-farm/node_modules/errno/custom.js +55 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/worker-farm/node_modules/errno/errno.js +313 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/worker-farm/node_modules/errno/package.json +60 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/worker-farm/node_modules/errno/test.js +31 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/worker-farm/node_modules/xtend/.npmignore +1 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/worker-farm/node_modules/xtend/LICENCE +19 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/worker-farm/node_modules/xtend/Makefile +4 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/worker-farm/node_modules/xtend/README.md +32 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/worker-farm/node_modules/xtend/immutable.js +19 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/worker-farm/node_modules/xtend/mutable.js +17 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/worker-farm/node_modules/xtend/package.json +43 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/worker-farm/node_modules/xtend/test.js +83 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/worker-farm/package.json +61 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/wrappy/LICENSE +15 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/wrappy/README.md +36 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/wrappy/wrappy.js +33 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/write-file-atomic/LICENSE +6 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/write-file-atomic/README.md +47 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/node_modules/write-file-atomic/index.js +134 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/package.json +265 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/scripts/changelog.js +101 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/scripts/clean-old.sh +165 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/scripts/dep-update +6 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/scripts/dev-dep-update +6 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/scripts/doc-build.sh +67 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/scripts/gen-changelog +7 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/scripts/index-build.js +58 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/scripts/install.sh +241 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/scripts/maketest +94 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/scripts/publish-tag.js +3 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/scripts/release.sh +36 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/scripts/relocate.sh +26 -0
- package/node-v8.11.1-linux-x64/lib/node_modules/npm/scripts/update-authors.sh +9 -0
- package/node-v8.11.1-linux-x64/share/doc/node/gdbinit +161 -0
- package/node-v8.11.1-linux-x64/share/doc/node/lldb_commands.py +72 -0
- package/node-v8.11.1-linux-x64/share/doc/node/lldbinit +31 -0
- package/node-v8.11.1-linux-x64/share/man/man1/node.1 +372 -0
- package/node-v8.11.1-linux-x64/share/systemtap/tapset/node.stp +146 -0
- package/node-v8.11.1-linux-x64.tar.xz +0 -0
- package/package.json +53 -0
|
@@ -0,0 +1,1615 @@
|
|
|
1
|
+
.TH "NPM\-CONFIG" "7" "February 2018" "" ""
|
|
2
|
+
.SH "NAME"
|
|
3
|
+
\fBnpm-config\fR \- More than you probably want to know about npm configuration
|
|
4
|
+
.SH DESCRIPTION
|
|
5
|
+
.P
|
|
6
|
+
npm gets its configuration values from the following sources, sorted by priority:
|
|
7
|
+
.SS Command Line Flags
|
|
8
|
+
.P
|
|
9
|
+
Putting \fB\-\-foo bar\fP on the command line sets the \fBfoo\fP configuration
|
|
10
|
+
parameter to \fB"bar"\fP\|\. A \fB\-\-\fP argument tells the cli parser to stop
|
|
11
|
+
reading flags\. Using \fB\-\-flag\fP without specifying any value will set
|
|
12
|
+
the value to \fBtrue\fP\|\.
|
|
13
|
+
.P
|
|
14
|
+
Example: \fB\-\-flag1 \-\-flag2\fP will set both configuration parameters
|
|
15
|
+
to \fBtrue\fP, while \fB\-\-flag1 \-\-flag2 bar\fP will set \fBflag1\fP to \fBtrue\fP,
|
|
16
|
+
and \fBflag2\fP to \fBbar\fP\|\. Finally, \fB\-\-flag1 \-\-flag2 \-\- bar\fP will set
|
|
17
|
+
both configuration parameters to \fBtrue\fP, and the \fBbar\fP is taken
|
|
18
|
+
as a command argument\.
|
|
19
|
+
.SS Environment Variables
|
|
20
|
+
.P
|
|
21
|
+
Any environment variables that start with \fBnpm_config_\fP will be
|
|
22
|
+
interpreted as a configuration parameter\. For example, putting
|
|
23
|
+
\fBnpm_config_foo=bar\fP in your environment will set the \fBfoo\fP
|
|
24
|
+
configuration parameter to \fBbar\fP\|\. Any environment configurations that
|
|
25
|
+
are not given a value will be given the value of \fBtrue\fP\|\. Config
|
|
26
|
+
values are case\-insensitive, so \fBNPM_CONFIG_FOO=bar\fP will work the
|
|
27
|
+
same\. However, please note that inside npm\-scripts \fI/misc/scripts\fR
|
|
28
|
+
npm will set its own environment variables and Node will prefer
|
|
29
|
+
those lowercase versions over any uppercase ones that you might set\.
|
|
30
|
+
For details see this issue \fIhttps://github\.com/npm/npm/issues/14528\fR\|\.
|
|
31
|
+
.P
|
|
32
|
+
Notice that you need to use underscores instead of dashes, so \fB\-\-allow\-same\-version\fP
|
|
33
|
+
would become \fBnpm_config_allow_same_version=true\fP\|\.
|
|
34
|
+
.SS npmrc Files
|
|
35
|
+
.P
|
|
36
|
+
The four relevant files are:
|
|
37
|
+
.RS 0
|
|
38
|
+
.IP \(bu 2
|
|
39
|
+
per\-project configuration file (\fB/path/to/my/project/\.npmrc\fP)
|
|
40
|
+
.IP \(bu 2
|
|
41
|
+
per\-user configuration file (defaults to \fB$HOME/\.npmrc\fP; configurable via CLI
|
|
42
|
+
option \fB\-\-userconfig\fP or environment variable \fB$NPM_CONFIG_USERCONFIG\fP)
|
|
43
|
+
.IP \(bu 2
|
|
44
|
+
global configuration file (defaults to \fB$PREFIX/etc/npmrc\fP; configurable via
|
|
45
|
+
CLI option \fB\-\-globalconfig\fP or environment variable \fB$NPM_CONFIG_GLOBALCONFIG\fP)
|
|
46
|
+
.IP \(bu 2
|
|
47
|
+
npm's built\-in configuration file (\fB/path/to/npm/npmrc\fP)
|
|
48
|
+
|
|
49
|
+
.RE
|
|
50
|
+
.P
|
|
51
|
+
See npm help 5 npmrc for more details\.
|
|
52
|
+
.SS Default Configs
|
|
53
|
+
.P
|
|
54
|
+
Run \fBnpm config ls \-l\fP to see a set of configuration parameters that are
|
|
55
|
+
internal to npm, and are defaults if nothing else is specified\.
|
|
56
|
+
.SH Shorthands and Other CLI Niceties
|
|
57
|
+
.P
|
|
58
|
+
The following shorthands are parsed on the command\-line:
|
|
59
|
+
.RS 0
|
|
60
|
+
.IP \(bu 2
|
|
61
|
+
\fB\-v\fP: \fB\-\-version\fP
|
|
62
|
+
.IP \(bu 2
|
|
63
|
+
\fB\-h\fP, \fB\-?\fP, \fB\-\-help\fP, \fB\-H\fP: \fB\-\-usage\fP
|
|
64
|
+
.IP \(bu 2
|
|
65
|
+
\fB\-s\fP, \fB\-\-silent\fP: \fB\-\-loglevel silent\fP
|
|
66
|
+
.IP \(bu 2
|
|
67
|
+
\fB\-q\fP, \fB\-\-quiet\fP: \fB\-\-loglevel warn\fP
|
|
68
|
+
.IP \(bu 2
|
|
69
|
+
\fB\-d\fP: \fB\-\-loglevel info\fP
|
|
70
|
+
.IP \(bu 2
|
|
71
|
+
\fB\-dd\fP, \fB\-\-verbose\fP: \fB\-\-loglevel verbose\fP
|
|
72
|
+
.IP \(bu 2
|
|
73
|
+
\fB\-ddd\fP: \fB\-\-loglevel silly\fP
|
|
74
|
+
.IP \(bu 2
|
|
75
|
+
\fB\-g\fP: \fB\-\-global\fP
|
|
76
|
+
.IP \(bu 2
|
|
77
|
+
\fB\-C\fP: \fB\-\-prefix\fP
|
|
78
|
+
.IP \(bu 2
|
|
79
|
+
\fB\-l\fP: \fB\-\-long\fP
|
|
80
|
+
.IP \(bu 2
|
|
81
|
+
\fB\-m\fP: \fB\-\-message\fP
|
|
82
|
+
.IP \(bu 2
|
|
83
|
+
\fB\-p\fP, \fB\-\-porcelain\fP: \fB\-\-parseable\fP
|
|
84
|
+
.IP \(bu 2
|
|
85
|
+
\fB\-reg\fP: \fB\-\-registry\fP
|
|
86
|
+
.IP \(bu 2
|
|
87
|
+
\fB\-f\fP: \fB\-\-force\fP
|
|
88
|
+
.IP \(bu 2
|
|
89
|
+
\fB\-desc\fP: \fB\-\-description\fP
|
|
90
|
+
.IP \(bu 2
|
|
91
|
+
\fB\-S\fP: \fB\-\-save\fP
|
|
92
|
+
.IP \(bu 2
|
|
93
|
+
\fB\-P\fP: \fB\-\-save\-prod\fP
|
|
94
|
+
.IP \(bu 2
|
|
95
|
+
\fB\-D\fP: \fB\-\-save\-dev\fP
|
|
96
|
+
.IP \(bu 2
|
|
97
|
+
\fB\-O\fP: \fB\-\-save\-optional\fP
|
|
98
|
+
.IP \(bu 2
|
|
99
|
+
\fB\-B\fP: \fB\-\-save\-bundle\fP
|
|
100
|
+
.IP \(bu 2
|
|
101
|
+
\fB\-E\fP: \fB\-\-save\-exact\fP
|
|
102
|
+
.IP \(bu 2
|
|
103
|
+
\fB\-y\fP: \fB\-\-yes\fP
|
|
104
|
+
.IP \(bu 2
|
|
105
|
+
\fB\-n\fP: \fB\-\-yes false\fP
|
|
106
|
+
.IP \(bu 2
|
|
107
|
+
\fBll\fP and \fBla\fP commands: \fBls \-\-long\fP
|
|
108
|
+
|
|
109
|
+
.RE
|
|
110
|
+
.P
|
|
111
|
+
If the specified configuration param resolves unambiguously to a known
|
|
112
|
+
configuration parameter, then it is expanded to that configuration
|
|
113
|
+
parameter\. For example:
|
|
114
|
+
.P
|
|
115
|
+
.RS 2
|
|
116
|
+
.nf
|
|
117
|
+
npm ls \-\-par
|
|
118
|
+
# same as:
|
|
119
|
+
npm ls \-\-parseable
|
|
120
|
+
.fi
|
|
121
|
+
.RE
|
|
122
|
+
.P
|
|
123
|
+
If multiple single\-character shorthands are strung together, and the
|
|
124
|
+
resulting combination is unambiguously not some other configuration
|
|
125
|
+
param, then it is expanded to its various component pieces\. For
|
|
126
|
+
example:
|
|
127
|
+
.P
|
|
128
|
+
.RS 2
|
|
129
|
+
.nf
|
|
130
|
+
npm ls \-gpld
|
|
131
|
+
# same as:
|
|
132
|
+
npm ls \-\-global \-\-parseable \-\-long \-\-loglevel info
|
|
133
|
+
.fi
|
|
134
|
+
.RE
|
|
135
|
+
.SH Per\-Package Config Settings
|
|
136
|
+
.P
|
|
137
|
+
When running scripts (see npm help 7 \fBnpm\-scripts\fP) the package\.json "config"
|
|
138
|
+
keys are overwritten in the environment if there is a config param of
|
|
139
|
+
\fB<name>[@<version>]:<key>\fP\|\. For example, if the package\.json has
|
|
140
|
+
this:
|
|
141
|
+
.P
|
|
142
|
+
.RS 2
|
|
143
|
+
.nf
|
|
144
|
+
{ "name" : "foo"
|
|
145
|
+
, "config" : { "port" : "8080" }
|
|
146
|
+
, "scripts" : { "start" : "node server\.js" } }
|
|
147
|
+
.fi
|
|
148
|
+
.RE
|
|
149
|
+
.P
|
|
150
|
+
and the server\.js is this:
|
|
151
|
+
.P
|
|
152
|
+
.RS 2
|
|
153
|
+
.nf
|
|
154
|
+
http\.createServer(\.\.\.)\.listen(process\.env\.npm_package_config_port)
|
|
155
|
+
.fi
|
|
156
|
+
.RE
|
|
157
|
+
.P
|
|
158
|
+
then the user could change the behavior by doing:
|
|
159
|
+
.P
|
|
160
|
+
.RS 2
|
|
161
|
+
.nf
|
|
162
|
+
npm config set foo:port 80
|
|
163
|
+
.fi
|
|
164
|
+
.RE
|
|
165
|
+
.P
|
|
166
|
+
See npm help 5 package\.json for more information\.
|
|
167
|
+
.SH Config Settings
|
|
168
|
+
.SS access
|
|
169
|
+
.RS 0
|
|
170
|
+
.IP \(bu 2
|
|
171
|
+
Default: \fBrestricted\fP
|
|
172
|
+
.IP \(bu 2
|
|
173
|
+
Type: Access
|
|
174
|
+
|
|
175
|
+
.RE
|
|
176
|
+
.P
|
|
177
|
+
When publishing scoped packages, the access level defaults to \fBrestricted\fP\|\. If
|
|
178
|
+
you want your scoped package to be publicly viewable (and installable) set
|
|
179
|
+
\fB\-\-access=public\fP\|\. The only valid values for \fBaccess\fP are \fBpublic\fP and
|
|
180
|
+
\fBrestricted\fP\|\. Unscoped packages \fIalways\fR have an access level of \fBpublic\fP\|\.
|
|
181
|
+
.SS allow\-same\-version
|
|
182
|
+
.RS 0
|
|
183
|
+
.IP \(bu 2
|
|
184
|
+
Default: false
|
|
185
|
+
.IP \(bu 2
|
|
186
|
+
Type: Boolean
|
|
187
|
+
|
|
188
|
+
.RE
|
|
189
|
+
.P
|
|
190
|
+
Prevents throwing an error when \fBnpm version\fP is used to set the new version
|
|
191
|
+
to the same value as the current version\.
|
|
192
|
+
.SS always\-auth
|
|
193
|
+
.RS 0
|
|
194
|
+
.IP \(bu 2
|
|
195
|
+
Default: false
|
|
196
|
+
.IP \(bu 2
|
|
197
|
+
Type: Boolean
|
|
198
|
+
|
|
199
|
+
.RE
|
|
200
|
+
.P
|
|
201
|
+
Force npm to always require authentication when accessing the registry,
|
|
202
|
+
even for \fBGET\fP requests\.
|
|
203
|
+
.SS also
|
|
204
|
+
.RS 0
|
|
205
|
+
.IP \(bu 2
|
|
206
|
+
Default: null
|
|
207
|
+
.IP \(bu 2
|
|
208
|
+
Type: String
|
|
209
|
+
|
|
210
|
+
.RE
|
|
211
|
+
.P
|
|
212
|
+
When "dev" or "development" and running local \fBnpm shrinkwrap\fP,
|
|
213
|
+
\fBnpm outdated\fP, or \fBnpm update\fP, is an alias for \fB\-\-dev\fP\|\.
|
|
214
|
+
.SS auth\-type
|
|
215
|
+
.RS 0
|
|
216
|
+
.IP \(bu 2
|
|
217
|
+
Default: \fB\|'legacy'\fP
|
|
218
|
+
.IP \(bu 2
|
|
219
|
+
Type: \fB\|'legacy'\fP, \fB\|'sso'\fP, \fB\|'saml'\fP, \fB\|'oauth'\fP
|
|
220
|
+
|
|
221
|
+
.RE
|
|
222
|
+
.P
|
|
223
|
+
What authentication strategy to use with \fBadduser\fP/\fBlogin\fP\|\.
|
|
224
|
+
.SS bin\-links
|
|
225
|
+
.RS 0
|
|
226
|
+
.IP \(bu 2
|
|
227
|
+
Default: \fBtrue\fP
|
|
228
|
+
.IP \(bu 2
|
|
229
|
+
Type: Boolean
|
|
230
|
+
|
|
231
|
+
.RE
|
|
232
|
+
.P
|
|
233
|
+
Tells npm to create symlinks (or \fB\|\.cmd\fP shims on Windows) for package
|
|
234
|
+
executables\.
|
|
235
|
+
.P
|
|
236
|
+
Set to false to have it not do this\. This can be used to work around
|
|
237
|
+
the fact that some file systems don't support symlinks, even on
|
|
238
|
+
ostensibly Unix systems\.
|
|
239
|
+
.SS browser
|
|
240
|
+
.RS 0
|
|
241
|
+
.IP \(bu 2
|
|
242
|
+
Default: OS X: \fB"open"\fP, Windows: \fB"start"\fP, Others: \fB"xdg\-open"\fP
|
|
243
|
+
.IP \(bu 2
|
|
244
|
+
Type: String
|
|
245
|
+
|
|
246
|
+
.RE
|
|
247
|
+
.P
|
|
248
|
+
The browser that is called by the \fBnpm docs\fP command to open websites\.
|
|
249
|
+
.SS ca
|
|
250
|
+
.RS 0
|
|
251
|
+
.IP \(bu 2
|
|
252
|
+
Default: The npm CA certificate
|
|
253
|
+
.IP \(bu 2
|
|
254
|
+
Type: String, Array or null
|
|
255
|
+
|
|
256
|
+
.RE
|
|
257
|
+
.P
|
|
258
|
+
The Certificate Authority signing certificate that is trusted for SSL
|
|
259
|
+
connections to the registry\. Values should be in PEM format (Windows calls it "Base\-64 encoded X\.509 (\.CER)") with newlines
|
|
260
|
+
replaced by the string "\\n"\. For example:
|
|
261
|
+
.P
|
|
262
|
+
.RS 2
|
|
263
|
+
.nf
|
|
264
|
+
ca="\-\-\-\-\-BEGIN CERTIFICATE\-\-\-\-\-\\nXXXX\\nXXXX\\n\-\-\-\-\-END CERTIFICATE\-\-\-\-\-"
|
|
265
|
+
.fi
|
|
266
|
+
.RE
|
|
267
|
+
.P
|
|
268
|
+
Set to \fBnull\fP to only allow "known" registrars, or to a specific CA cert
|
|
269
|
+
to trust only that specific signing authority\.
|
|
270
|
+
.P
|
|
271
|
+
Multiple CAs can be trusted by specifying an array of certificates:
|
|
272
|
+
.P
|
|
273
|
+
.RS 2
|
|
274
|
+
.nf
|
|
275
|
+
ca[]="\.\.\."
|
|
276
|
+
ca[]="\.\.\."
|
|
277
|
+
.fi
|
|
278
|
+
.RE
|
|
279
|
+
.P
|
|
280
|
+
See also the \fBstrict\-ssl\fP config\.
|
|
281
|
+
.SS cafile
|
|
282
|
+
.RS 0
|
|
283
|
+
.IP \(bu 2
|
|
284
|
+
Default: \fBnull\fP
|
|
285
|
+
.IP \(bu 2
|
|
286
|
+
Type: path
|
|
287
|
+
|
|
288
|
+
.RE
|
|
289
|
+
.P
|
|
290
|
+
A path to a file containing one or multiple Certificate Authority signing
|
|
291
|
+
certificates\. Similar to the \fBca\fP setting, but allows for multiple CA's, as
|
|
292
|
+
well as for the CA information to be stored in a file on disk\.
|
|
293
|
+
.SS cache
|
|
294
|
+
.RS 0
|
|
295
|
+
.IP \(bu 2
|
|
296
|
+
Default: Windows: \fB%AppData%\\npm\-cache\fP, Posix: \fB~/\.npm\fP
|
|
297
|
+
.IP \(bu 2
|
|
298
|
+
Type: path
|
|
299
|
+
|
|
300
|
+
.RE
|
|
301
|
+
.P
|
|
302
|
+
The location of npm's cache directory\. See npm help \fBnpm\-cache\fP
|
|
303
|
+
.SS cache\-lock\-stale
|
|
304
|
+
.RS 0
|
|
305
|
+
.IP \(bu 2
|
|
306
|
+
Default: 60000 (1 minute)
|
|
307
|
+
.IP \(bu 2
|
|
308
|
+
Type: Number
|
|
309
|
+
|
|
310
|
+
.RE
|
|
311
|
+
.P
|
|
312
|
+
The number of ms before cache folder lockfiles are considered stale\.
|
|
313
|
+
.SS cache\-lock\-retries
|
|
314
|
+
.RS 0
|
|
315
|
+
.IP \(bu 2
|
|
316
|
+
Default: 10
|
|
317
|
+
.IP \(bu 2
|
|
318
|
+
Type: Number
|
|
319
|
+
|
|
320
|
+
.RE
|
|
321
|
+
.P
|
|
322
|
+
Number of times to retry to acquire a lock on cache folder lockfiles\.
|
|
323
|
+
.SS cache\-lock\-wait
|
|
324
|
+
.RS 0
|
|
325
|
+
.IP \(bu 2
|
|
326
|
+
Default: 10000 (10 seconds)
|
|
327
|
+
.IP \(bu 2
|
|
328
|
+
Type: Number
|
|
329
|
+
|
|
330
|
+
.RE
|
|
331
|
+
.P
|
|
332
|
+
Number of ms to wait for cache lock files to expire\.
|
|
333
|
+
.SS cache\-max
|
|
334
|
+
.RS 0
|
|
335
|
+
.IP \(bu 2
|
|
336
|
+
Default: Infinity
|
|
337
|
+
.IP \(bu 2
|
|
338
|
+
Type: Number
|
|
339
|
+
|
|
340
|
+
.RE
|
|
341
|
+
.P
|
|
342
|
+
\fBDEPRECATED\fR: This option has been deprecated in favor of \fB\-\-prefer\-online\fP\|\.
|
|
343
|
+
.P
|
|
344
|
+
\fB\-\-cache\-max=0\fP is an alias for \fB\-\-prefer\-online\fP\|\.
|
|
345
|
+
.SS cache\-min
|
|
346
|
+
.RS 0
|
|
347
|
+
.IP \(bu 2
|
|
348
|
+
Default: 10
|
|
349
|
+
.IP \(bu 2
|
|
350
|
+
Type: Number
|
|
351
|
+
|
|
352
|
+
.RE
|
|
353
|
+
.P
|
|
354
|
+
\fBDEPRECATED\fR: This option has been deprecated in favor of \fB\-\-prefer\-offline\fP\|\.
|
|
355
|
+
.P
|
|
356
|
+
\fB\-\-cache\-min=9999 (or bigger)\fP is an alias for \fB\-\-prefer\-offline\fP\|\.
|
|
357
|
+
.SS cert
|
|
358
|
+
.RS 0
|
|
359
|
+
.IP \(bu 2
|
|
360
|
+
Default: \fBnull\fP
|
|
361
|
+
.IP \(bu 2
|
|
362
|
+
Type: String
|
|
363
|
+
|
|
364
|
+
.RE
|
|
365
|
+
.P
|
|
366
|
+
A client certificate to pass when accessing the registry\. Values should be in
|
|
367
|
+
PEM format (Windows calls it "Base\-64 encoded X\.509 (\.CER)") with newlines replaced by the string "\\n"\. For example:
|
|
368
|
+
.P
|
|
369
|
+
.RS 2
|
|
370
|
+
.nf
|
|
371
|
+
cert="\-\-\-\-\-BEGIN CERTIFICATE\-\-\-\-\-\\nXXXX\\nXXXX\\n\-\-\-\-\-END CERTIFICATE\-\-\-\-\-"
|
|
372
|
+
.fi
|
|
373
|
+
.RE
|
|
374
|
+
.P
|
|
375
|
+
It is \fInot\fR the path to a certificate file (and there is no "certfile" option)\.
|
|
376
|
+
.SS cidr
|
|
377
|
+
.RS 0
|
|
378
|
+
.IP \(bu 2
|
|
379
|
+
Default: \fBnull\fP
|
|
380
|
+
.IP \(bu 2
|
|
381
|
+
Type: String, Array, null
|
|
382
|
+
|
|
383
|
+
.RE
|
|
384
|
+
.P
|
|
385
|
+
This is a list of CIDR address to be used when configuring limited access tokens with the \fBnpm token create\fP command\.
|
|
386
|
+
.SS color
|
|
387
|
+
.RS 0
|
|
388
|
+
.IP \(bu 2
|
|
389
|
+
Default: true
|
|
390
|
+
.IP \(bu 2
|
|
391
|
+
Type: Boolean or \fB"always"\fP
|
|
392
|
+
|
|
393
|
+
.RE
|
|
394
|
+
.P
|
|
395
|
+
If false, never shows colors\. If \fB"always"\fP then always shows colors\.
|
|
396
|
+
If true, then only prints color codes for tty file descriptors\.
|
|
397
|
+
.SS depth
|
|
398
|
+
.RS 0
|
|
399
|
+
.IP \(bu 2
|
|
400
|
+
Default: Infinity
|
|
401
|
+
.IP \(bu 2
|
|
402
|
+
Type: Number
|
|
403
|
+
|
|
404
|
+
.RE
|
|
405
|
+
.P
|
|
406
|
+
The depth to go when recursing directories for \fBnpm ls\fP,
|
|
407
|
+
\fBnpm cache ls\fP, and \fBnpm outdated\fP\|\.
|
|
408
|
+
.P
|
|
409
|
+
For \fBnpm outdated\fP, a setting of \fBInfinity\fP will be treated as \fB0\fP
|
|
410
|
+
since that gives more useful information\. To show the outdated status
|
|
411
|
+
of all packages and dependents, use a large integer value,
|
|
412
|
+
e\.g\., \fBnpm outdated \-\-depth 9999\fP
|
|
413
|
+
.SS description
|
|
414
|
+
.RS 0
|
|
415
|
+
.IP \(bu 2
|
|
416
|
+
Default: true
|
|
417
|
+
.IP \(bu 2
|
|
418
|
+
Type: Boolean
|
|
419
|
+
|
|
420
|
+
.RE
|
|
421
|
+
.P
|
|
422
|
+
Show the description in \fBnpm search\fP
|
|
423
|
+
.SS dev
|
|
424
|
+
.RS 0
|
|
425
|
+
.IP \(bu 2
|
|
426
|
+
Default: false
|
|
427
|
+
.IP \(bu 2
|
|
428
|
+
Type: Boolean
|
|
429
|
+
|
|
430
|
+
.RE
|
|
431
|
+
.P
|
|
432
|
+
Install \fBdev\-dependencies\fP along with packages\.
|
|
433
|
+
.SS dry\-run
|
|
434
|
+
.RS 0
|
|
435
|
+
.IP \(bu 2
|
|
436
|
+
Default: false
|
|
437
|
+
.IP \(bu 2
|
|
438
|
+
Type: Boolean
|
|
439
|
+
|
|
440
|
+
.RE
|
|
441
|
+
.P
|
|
442
|
+
Indicates that you don't want npm to make any changes and that it should
|
|
443
|
+
only report what it would have done\. This can be passed into any of the
|
|
444
|
+
commands that modify your local installation, eg, \fBinstall\fP, \fBupdate\fP,
|
|
445
|
+
\fBdedupe\fP, \fBuninstall\fP\|\. This is NOT currently honored by network related
|
|
446
|
+
commands, eg \fBdist\-tags\fP, \fBowner\fP, \fBpublish\fP, etc\.
|
|
447
|
+
.SS editor
|
|
448
|
+
.RS 0
|
|
449
|
+
.IP \(bu 2
|
|
450
|
+
Default: \fBEDITOR\fP environment variable if set, or \fB"vi"\fP on Posix,
|
|
451
|
+
or \fB"notepad"\fP on Windows\.
|
|
452
|
+
.IP \(bu 2
|
|
453
|
+
Type: path
|
|
454
|
+
|
|
455
|
+
.RE
|
|
456
|
+
.P
|
|
457
|
+
The command to run for \fBnpm edit\fP or \fBnpm config edit\fP\|\.
|
|
458
|
+
.SS engine\-strict
|
|
459
|
+
.RS 0
|
|
460
|
+
.IP \(bu 2
|
|
461
|
+
Default: false
|
|
462
|
+
.IP \(bu 2
|
|
463
|
+
Type: Boolean
|
|
464
|
+
|
|
465
|
+
.RE
|
|
466
|
+
.P
|
|
467
|
+
If set to true, then npm will stubbornly refuse to install (or even
|
|
468
|
+
consider installing) any package that claims to not be compatible with
|
|
469
|
+
the current Node\.js version\.
|
|
470
|
+
.SS force
|
|
471
|
+
.RS 0
|
|
472
|
+
.IP \(bu 2
|
|
473
|
+
Default: false
|
|
474
|
+
.IP \(bu 2
|
|
475
|
+
Type: Boolean
|
|
476
|
+
|
|
477
|
+
.RE
|
|
478
|
+
.P
|
|
479
|
+
Makes various commands more forceful\.
|
|
480
|
+
.RS 0
|
|
481
|
+
.IP \(bu 2
|
|
482
|
+
lifecycle script failure does not block progress\.
|
|
483
|
+
.IP \(bu 2
|
|
484
|
+
publishing clobbers previously published versions\.
|
|
485
|
+
.IP \(bu 2
|
|
486
|
+
skips cache when requesting from the registry\.
|
|
487
|
+
.IP \(bu 2
|
|
488
|
+
prevents checks against clobbering non\-npm files\.
|
|
489
|
+
|
|
490
|
+
.RE
|
|
491
|
+
.SS fetch\-retries
|
|
492
|
+
.RS 0
|
|
493
|
+
.IP \(bu 2
|
|
494
|
+
Default: 2
|
|
495
|
+
.IP \(bu 2
|
|
496
|
+
Type: Number
|
|
497
|
+
|
|
498
|
+
.RE
|
|
499
|
+
.P
|
|
500
|
+
The "retries" config for the \fBretry\fP module to use when fetching
|
|
501
|
+
packages from the registry\.
|
|
502
|
+
.SS fetch\-retry\-factor
|
|
503
|
+
.RS 0
|
|
504
|
+
.IP \(bu 2
|
|
505
|
+
Default: 10
|
|
506
|
+
.IP \(bu 2
|
|
507
|
+
Type: Number
|
|
508
|
+
|
|
509
|
+
.RE
|
|
510
|
+
.P
|
|
511
|
+
The "factor" config for the \fBretry\fP module to use when fetching
|
|
512
|
+
packages\.
|
|
513
|
+
.SS fetch\-retry\-mintimeout
|
|
514
|
+
.RS 0
|
|
515
|
+
.IP \(bu 2
|
|
516
|
+
Default: 10000 (10 seconds)
|
|
517
|
+
.IP \(bu 2
|
|
518
|
+
Type: Number
|
|
519
|
+
|
|
520
|
+
.RE
|
|
521
|
+
.P
|
|
522
|
+
The "minTimeout" config for the \fBretry\fP module to use when fetching
|
|
523
|
+
packages\.
|
|
524
|
+
.SS fetch\-retry\-maxtimeout
|
|
525
|
+
.RS 0
|
|
526
|
+
.IP \(bu 2
|
|
527
|
+
Default: 60000 (1 minute)
|
|
528
|
+
.IP \(bu 2
|
|
529
|
+
Type: Number
|
|
530
|
+
|
|
531
|
+
.RE
|
|
532
|
+
.P
|
|
533
|
+
The "maxTimeout" config for the \fBretry\fP module to use when fetching
|
|
534
|
+
packages\.
|
|
535
|
+
.SS git
|
|
536
|
+
.RS 0
|
|
537
|
+
.IP \(bu 2
|
|
538
|
+
Default: \fB"git"\fP
|
|
539
|
+
.IP \(bu 2
|
|
540
|
+
Type: String
|
|
541
|
+
|
|
542
|
+
.RE
|
|
543
|
+
.P
|
|
544
|
+
The command to use for git commands\. If git is installed on the
|
|
545
|
+
computer, but is not in the \fBPATH\fP, then set this to the full path to
|
|
546
|
+
the git binary\.
|
|
547
|
+
.SS git\-tag\-version
|
|
548
|
+
.RS 0
|
|
549
|
+
.IP \(bu 2
|
|
550
|
+
Default: \fBtrue\fP
|
|
551
|
+
.IP \(bu 2
|
|
552
|
+
Type: Boolean
|
|
553
|
+
|
|
554
|
+
.RE
|
|
555
|
+
.P
|
|
556
|
+
Tag the commit when using the \fBnpm version\fP command\.
|
|
557
|
+
.SS commit\-hooks
|
|
558
|
+
.RS 0
|
|
559
|
+
.IP \(bu 2
|
|
560
|
+
Default: \fBtrue\fP
|
|
561
|
+
.IP \(bu 2
|
|
562
|
+
Type: Boolean
|
|
563
|
+
|
|
564
|
+
.RE
|
|
565
|
+
.P
|
|
566
|
+
Run git commit hooks when using the \fBnpm version\fP command\.
|
|
567
|
+
.SS global
|
|
568
|
+
.RS 0
|
|
569
|
+
.IP \(bu 2
|
|
570
|
+
Default: false
|
|
571
|
+
.IP \(bu 2
|
|
572
|
+
Type: Boolean
|
|
573
|
+
|
|
574
|
+
.RE
|
|
575
|
+
.P
|
|
576
|
+
Operates in "global" mode, so that packages are installed into the
|
|
577
|
+
\fBprefix\fP folder instead of the current working directory\. See
|
|
578
|
+
npm help 5 \fBnpm\-folders\fP for more on the differences in behavior\.
|
|
579
|
+
.RS 0
|
|
580
|
+
.IP \(bu 2
|
|
581
|
+
packages are installed into the \fB{prefix}/lib/node_modules\fP folder, instead of the
|
|
582
|
+
current working directory\.
|
|
583
|
+
.IP \(bu 2
|
|
584
|
+
bin files are linked to \fB{prefix}/bin\fP
|
|
585
|
+
.IP \(bu 2
|
|
586
|
+
man pages are linked to \fB{prefix}/share/man\fP
|
|
587
|
+
|
|
588
|
+
.RE
|
|
589
|
+
.SS globalconfig
|
|
590
|
+
.RS 0
|
|
591
|
+
.IP \(bu 2
|
|
592
|
+
Default: {prefix}/etc/npmrc
|
|
593
|
+
.IP \(bu 2
|
|
594
|
+
Type: path
|
|
595
|
+
|
|
596
|
+
.RE
|
|
597
|
+
.P
|
|
598
|
+
The config file to read for global config options\.
|
|
599
|
+
.SS global\-style
|
|
600
|
+
.RS 0
|
|
601
|
+
.IP \(bu 2
|
|
602
|
+
Default: false
|
|
603
|
+
.IP \(bu 2
|
|
604
|
+
Type: Boolean
|
|
605
|
+
|
|
606
|
+
.RE
|
|
607
|
+
.P
|
|
608
|
+
Causes npm to install the package into your local \fBnode_modules\fP folder with
|
|
609
|
+
the same layout it uses with the global \fBnode_modules\fP folder\. Only your
|
|
610
|
+
direct dependencies will show in \fBnode_modules\fP and everything they depend
|
|
611
|
+
on will be flattened in their \fBnode_modules\fP folders\. This obviously will
|
|
612
|
+
eliminate some deduping\. If used with \fBlegacy\-bundling\fP, \fBlegacy\-bundling\fP will be
|
|
613
|
+
preferred\.
|
|
614
|
+
.SS group
|
|
615
|
+
.RS 0
|
|
616
|
+
.IP \(bu 2
|
|
617
|
+
Default: GID of the current process
|
|
618
|
+
.IP \(bu 2
|
|
619
|
+
Type: String or Number
|
|
620
|
+
|
|
621
|
+
.RE
|
|
622
|
+
.P
|
|
623
|
+
The group to use when running package scripts in global mode as the root
|
|
624
|
+
user\.
|
|
625
|
+
.SS heading
|
|
626
|
+
.RS 0
|
|
627
|
+
.IP \(bu 2
|
|
628
|
+
Default: \fB"npm"\fP
|
|
629
|
+
.IP \(bu 2
|
|
630
|
+
Type: String
|
|
631
|
+
|
|
632
|
+
.RE
|
|
633
|
+
.P
|
|
634
|
+
The string that starts all the debugging log output\.
|
|
635
|
+
.SS https\-proxy
|
|
636
|
+
.RS 0
|
|
637
|
+
.IP \(bu 2
|
|
638
|
+
Default: null
|
|
639
|
+
.IP \(bu 2
|
|
640
|
+
Type: url
|
|
641
|
+
|
|
642
|
+
.RE
|
|
643
|
+
.P
|
|
644
|
+
A proxy to use for outgoing https requests\. If the \fBHTTPS_PROXY\fP or
|
|
645
|
+
\fBhttps_proxy\fP or \fBHTTP_PROXY\fP or \fBhttp_proxy\fP environment variables are set,
|
|
646
|
+
proxy settings will be honored by the underlying \fBrequest\fP library\.
|
|
647
|
+
.SS if\-present
|
|
648
|
+
.RS 0
|
|
649
|
+
.IP \(bu 2
|
|
650
|
+
Default: false
|
|
651
|
+
.IP \(bu 2
|
|
652
|
+
Type: Boolean
|
|
653
|
+
|
|
654
|
+
.RE
|
|
655
|
+
.P
|
|
656
|
+
If true, npm will not exit with an error code when \fBrun\-script\fP is invoked for
|
|
657
|
+
a script that isn't defined in the \fBscripts\fP section of \fBpackage\.json\fP\|\. This
|
|
658
|
+
option can be used when it's desirable to optionally run a script when it's
|
|
659
|
+
present and fail if the script fails\. This is useful, for example, when running
|
|
660
|
+
scripts that may only apply for some builds in an otherwise generic CI setup\.
|
|
661
|
+
.SS ignore\-prepublish
|
|
662
|
+
.RS 0
|
|
663
|
+
.IP \(bu 2
|
|
664
|
+
Default: false
|
|
665
|
+
.IP \(bu 2
|
|
666
|
+
Type: Boolean
|
|
667
|
+
|
|
668
|
+
.RE
|
|
669
|
+
.P
|
|
670
|
+
If true, npm will not run \fBprepublish\fP scripts\.
|
|
671
|
+
.SS ignore\-scripts
|
|
672
|
+
.RS 0
|
|
673
|
+
.IP \(bu 2
|
|
674
|
+
Default: false
|
|
675
|
+
.IP \(bu 2
|
|
676
|
+
Type: Boolean
|
|
677
|
+
|
|
678
|
+
.RE
|
|
679
|
+
.P
|
|
680
|
+
If true, npm does not run scripts specified in package\.json files\.
|
|
681
|
+
.SS init\-module
|
|
682
|
+
.RS 0
|
|
683
|
+
.IP \(bu 2
|
|
684
|
+
Default: ~/\.npm\-init\.js
|
|
685
|
+
.IP \(bu 2
|
|
686
|
+
Type: path
|
|
687
|
+
|
|
688
|
+
.RE
|
|
689
|
+
.P
|
|
690
|
+
A module that will be loaded by the \fBnpm init\fP command\. See the
|
|
691
|
+
documentation for the
|
|
692
|
+
init\-package\-json \fIhttps://github\.com/isaacs/init\-package\-json\fR module
|
|
693
|
+
for more information, or npm help init\.
|
|
694
|
+
.SS init\-author\-name
|
|
695
|
+
.RS 0
|
|
696
|
+
.IP \(bu 2
|
|
697
|
+
Default: ""
|
|
698
|
+
.IP \(bu 2
|
|
699
|
+
Type: String
|
|
700
|
+
|
|
701
|
+
.RE
|
|
702
|
+
.P
|
|
703
|
+
The value \fBnpm init\fP should use by default for the package author's name\.
|
|
704
|
+
.SS init\-author\-email
|
|
705
|
+
.RS 0
|
|
706
|
+
.IP \(bu 2
|
|
707
|
+
Default: ""
|
|
708
|
+
.IP \(bu 2
|
|
709
|
+
Type: String
|
|
710
|
+
|
|
711
|
+
.RE
|
|
712
|
+
.P
|
|
713
|
+
The value \fBnpm init\fP should use by default for the package author's email\.
|
|
714
|
+
.SS init\-author\-url
|
|
715
|
+
.RS 0
|
|
716
|
+
.IP \(bu 2
|
|
717
|
+
Default: ""
|
|
718
|
+
.IP \(bu 2
|
|
719
|
+
Type: String
|
|
720
|
+
|
|
721
|
+
.RE
|
|
722
|
+
.P
|
|
723
|
+
The value \fBnpm init\fP should use by default for the package author's homepage\.
|
|
724
|
+
.SS init\-license
|
|
725
|
+
.RS 0
|
|
726
|
+
.IP \(bu 2
|
|
727
|
+
Default: "ISC"
|
|
728
|
+
.IP \(bu 2
|
|
729
|
+
Type: String
|
|
730
|
+
|
|
731
|
+
.RE
|
|
732
|
+
.P
|
|
733
|
+
The value \fBnpm init\fP should use by default for the package license\.
|
|
734
|
+
.SS init\-version
|
|
735
|
+
.RS 0
|
|
736
|
+
.IP \(bu 2
|
|
737
|
+
Default: "1\.0\.0"
|
|
738
|
+
.IP \(bu 2
|
|
739
|
+
Type: semver
|
|
740
|
+
|
|
741
|
+
.RE
|
|
742
|
+
.P
|
|
743
|
+
The value that \fBnpm init\fP should use by default for the package
|
|
744
|
+
version number, if not already set in package\.json\.
|
|
745
|
+
.SS json
|
|
746
|
+
.RS 0
|
|
747
|
+
.IP \(bu 2
|
|
748
|
+
Default: false
|
|
749
|
+
.IP \(bu 2
|
|
750
|
+
Type: Boolean
|
|
751
|
+
|
|
752
|
+
.RE
|
|
753
|
+
.P
|
|
754
|
+
Whether or not to output JSON data, rather than the normal output\.
|
|
755
|
+
.P
|
|
756
|
+
This feature is currently experimental, and the output data structures for many
|
|
757
|
+
commands is either not implemented in JSON yet, or subject to change\. Only the
|
|
758
|
+
output from \fBnpm ls \-\-json\fP and \fBnpm search \-\-json\fP are currently valid\.
|
|
759
|
+
.SS key
|
|
760
|
+
.RS 0
|
|
761
|
+
.IP \(bu 2
|
|
762
|
+
Default: \fBnull\fP
|
|
763
|
+
.IP \(bu 2
|
|
764
|
+
Type: String
|
|
765
|
+
|
|
766
|
+
.RE
|
|
767
|
+
.P
|
|
768
|
+
A client key to pass when accessing the registry\. Values should be in PEM
|
|
769
|
+
format with newlines replaced by the string "\\n"\. For example:
|
|
770
|
+
.P
|
|
771
|
+
.RS 2
|
|
772
|
+
.nf
|
|
773
|
+
key="\-\-\-\-\-BEGIN PRIVATE KEY\-\-\-\-\-\\nXXXX\\nXXXX\\n\-\-\-\-\-END PRIVATE KEY\-\-\-\-\-"
|
|
774
|
+
.fi
|
|
775
|
+
.RE
|
|
776
|
+
.P
|
|
777
|
+
It is \fInot\fR the path to a key file (and there is no "keyfile" option)\.
|
|
778
|
+
.SS legacy\-bundling
|
|
779
|
+
.RS 0
|
|
780
|
+
.IP \(bu 2
|
|
781
|
+
Default: false
|
|
782
|
+
.IP \(bu 2
|
|
783
|
+
Type: Boolean
|
|
784
|
+
|
|
785
|
+
.RE
|
|
786
|
+
.P
|
|
787
|
+
Causes npm to install the package such that versions of npm prior to 1\.4,
|
|
788
|
+
such as the one included with node 0\.8, can install the package\. This
|
|
789
|
+
eliminates all automatic deduping\. If used with \fBglobal\-style\fP this option
|
|
790
|
+
will be preferred\.
|
|
791
|
+
.SS link
|
|
792
|
+
.RS 0
|
|
793
|
+
.IP \(bu 2
|
|
794
|
+
Default: false
|
|
795
|
+
.IP \(bu 2
|
|
796
|
+
Type: Boolean
|
|
797
|
+
|
|
798
|
+
.RE
|
|
799
|
+
.P
|
|
800
|
+
If true, then local installs will link if there is a suitable globally
|
|
801
|
+
installed package\.
|
|
802
|
+
.P
|
|
803
|
+
Note that this means that local installs can cause things to be
|
|
804
|
+
installed into the global space at the same time\. The link is only done
|
|
805
|
+
if one of the two conditions are met:
|
|
806
|
+
.RS 0
|
|
807
|
+
.IP \(bu 2
|
|
808
|
+
The package is not already installed globally, or
|
|
809
|
+
.IP \(bu 2
|
|
810
|
+
the globally installed version is identical to the version that is
|
|
811
|
+
being installed locally\.
|
|
812
|
+
|
|
813
|
+
.RE
|
|
814
|
+
.SS local\-address
|
|
815
|
+
.RS 0
|
|
816
|
+
.IP \(bu 2
|
|
817
|
+
Default: undefined
|
|
818
|
+
.IP \(bu 2
|
|
819
|
+
Type: IP Address
|
|
820
|
+
|
|
821
|
+
.RE
|
|
822
|
+
.P
|
|
823
|
+
The IP address of the local interface to use when making connections
|
|
824
|
+
to the npm registry\. Must be IPv4 in versions of Node prior to 0\.12\.
|
|
825
|
+
.SS loglevel
|
|
826
|
+
.RS 0
|
|
827
|
+
.IP \(bu 2
|
|
828
|
+
Default: "notice"
|
|
829
|
+
.IP \(bu 2
|
|
830
|
+
Type: String
|
|
831
|
+
.IP \(bu 2
|
|
832
|
+
Values: "silent", "error", "warn", "notice", "http", "timing", "info",
|
|
833
|
+
"verbose", "silly"
|
|
834
|
+
|
|
835
|
+
.RE
|
|
836
|
+
.P
|
|
837
|
+
What level of logs to report\. On failure, \fIall\fR logs are written to
|
|
838
|
+
\fBnpm\-debug\.log\fP in the current working directory\.
|
|
839
|
+
.P
|
|
840
|
+
Any logs of a higher level than the setting are shown\. The default is "notice"\.
|
|
841
|
+
.SS logstream
|
|
842
|
+
.RS 0
|
|
843
|
+
.IP \(bu 2
|
|
844
|
+
Default: process\.stderr
|
|
845
|
+
.IP \(bu 2
|
|
846
|
+
Type: Stream
|
|
847
|
+
|
|
848
|
+
.RE
|
|
849
|
+
.P
|
|
850
|
+
This is the stream that is passed to the
|
|
851
|
+
npmlog \fIhttps://github\.com/npm/npmlog\fR module at run time\.
|
|
852
|
+
.P
|
|
853
|
+
It cannot be set from the command line, but if you are using npm
|
|
854
|
+
programmatically, you may wish to send logs to somewhere other than
|
|
855
|
+
stderr\.
|
|
856
|
+
.P
|
|
857
|
+
If the \fBcolor\fP config is set to true, then this stream will receive
|
|
858
|
+
colored output if it is a TTY\.
|
|
859
|
+
.SS logs\-max
|
|
860
|
+
.RS 0
|
|
861
|
+
.IP \(bu 2
|
|
862
|
+
Default: 10
|
|
863
|
+
.IP \(bu 2
|
|
864
|
+
Type: Number
|
|
865
|
+
|
|
866
|
+
.RE
|
|
867
|
+
.P
|
|
868
|
+
The maximum number of log files to store\.
|
|
869
|
+
.SS long
|
|
870
|
+
.RS 0
|
|
871
|
+
.IP \(bu 2
|
|
872
|
+
Default: false
|
|
873
|
+
.IP \(bu 2
|
|
874
|
+
Type: Boolean
|
|
875
|
+
|
|
876
|
+
.RE
|
|
877
|
+
.P
|
|
878
|
+
Show extended information in \fBnpm ls\fP and \fBnpm search\fP\|\.
|
|
879
|
+
.SS maxsockets
|
|
880
|
+
.RS 0
|
|
881
|
+
.IP \(bu 2
|
|
882
|
+
Default: 50
|
|
883
|
+
.IP \(bu 2
|
|
884
|
+
Type: Number
|
|
885
|
+
|
|
886
|
+
.RE
|
|
887
|
+
.P
|
|
888
|
+
The maximum number of connections to use per origin (protocol/host/port
|
|
889
|
+
combination)\. Passed to the \fBhttp\fP \fBAgent\fP used to make the request\.
|
|
890
|
+
.SS message
|
|
891
|
+
.RS 0
|
|
892
|
+
.IP \(bu 2
|
|
893
|
+
Default: "%s"
|
|
894
|
+
.IP \(bu 2
|
|
895
|
+
Type: String
|
|
896
|
+
|
|
897
|
+
.RE
|
|
898
|
+
.P
|
|
899
|
+
Commit message which is used by \fBnpm version\fP when creating version commit\.
|
|
900
|
+
.P
|
|
901
|
+
Any "%s" in the message will be replaced with the version number\.
|
|
902
|
+
.SS metrics\-registry
|
|
903
|
+
.RS 0
|
|
904
|
+
.IP \(bu 2
|
|
905
|
+
Default: The value of \fBregistry\fP (which defaults to "https://registry\.npmjs\.org/")
|
|
906
|
+
.IP \(bu 2
|
|
907
|
+
Type: String
|
|
908
|
+
|
|
909
|
+
.RE
|
|
910
|
+
.P
|
|
911
|
+
The registry you want to send cli metrics to if \fBsend\-metrics\fP is true\.
|
|
912
|
+
.SS node\-options
|
|
913
|
+
.RS 0
|
|
914
|
+
.IP \(bu 2
|
|
915
|
+
Default: null
|
|
916
|
+
.IP \(bu 2
|
|
917
|
+
Type: String
|
|
918
|
+
|
|
919
|
+
.RE
|
|
920
|
+
.P
|
|
921
|
+
Options to pass through to Node\.js via the \fBNODE_OPTIONS\fP environment
|
|
922
|
+
variable\. This does not impact how npm itself is executed but it does
|
|
923
|
+
impact how lifecycle scripts are called\.
|
|
924
|
+
.SS node\-version
|
|
925
|
+
.RS 0
|
|
926
|
+
.IP \(bu 2
|
|
927
|
+
Default: process\.version
|
|
928
|
+
.IP \(bu 2
|
|
929
|
+
Type: semver or false
|
|
930
|
+
|
|
931
|
+
.RE
|
|
932
|
+
.P
|
|
933
|
+
The node version to use when checking a package's \fBengines\fP map\.
|
|
934
|
+
.SS offline
|
|
935
|
+
.RS 0
|
|
936
|
+
.IP \(bu 2
|
|
937
|
+
Default: false
|
|
938
|
+
.IP \(bu 2
|
|
939
|
+
Type: Boolean
|
|
940
|
+
|
|
941
|
+
.RE
|
|
942
|
+
.P
|
|
943
|
+
Force offline mode: no network requests will be done during install\. To allow
|
|
944
|
+
the CLI to fill in missing cache data, see \fB\-\-prefer\-offline\fP\|\.
|
|
945
|
+
.SS onload\-script
|
|
946
|
+
.RS 0
|
|
947
|
+
.IP \(bu 2
|
|
948
|
+
Default: false
|
|
949
|
+
.IP \(bu 2
|
|
950
|
+
Type: path
|
|
951
|
+
|
|
952
|
+
.RE
|
|
953
|
+
.P
|
|
954
|
+
A node module to \fBrequire()\fP when npm loads\. Useful for programmatic
|
|
955
|
+
usage\.
|
|
956
|
+
.SS only
|
|
957
|
+
.RS 0
|
|
958
|
+
.IP \(bu 2
|
|
959
|
+
Default: null
|
|
960
|
+
.IP \(bu 2
|
|
961
|
+
Type: String
|
|
962
|
+
|
|
963
|
+
.RE
|
|
964
|
+
.P
|
|
965
|
+
When "dev" or "development" and running local \fBnpm install\fP without any
|
|
966
|
+
arguments, only devDependencies (and their dependencies) are installed\.
|
|
967
|
+
.P
|
|
968
|
+
When "dev" or "development" and running local \fBnpm ls\fP, \fBnpm outdated\fP, or
|
|
969
|
+
\fBnpm update\fP, is an alias for \fB\-\-dev\fP\|\.
|
|
970
|
+
.P
|
|
971
|
+
When "prod" or "production" and running local \fBnpm install\fP without any
|
|
972
|
+
arguments, only non\-devDependencies (and their dependencies) are
|
|
973
|
+
installed\.
|
|
974
|
+
.P
|
|
975
|
+
When "prod" or "production" and running local \fBnpm ls\fP, \fBnpm outdated\fP, or
|
|
976
|
+
\fBnpm update\fP, is an alias for \fB\-\-production\fP\|\.
|
|
977
|
+
.SS optional
|
|
978
|
+
.RS 0
|
|
979
|
+
.IP \(bu 2
|
|
980
|
+
Default: true
|
|
981
|
+
.IP \(bu 2
|
|
982
|
+
Type: Boolean
|
|
983
|
+
|
|
984
|
+
.RE
|
|
985
|
+
.P
|
|
986
|
+
Attempt to install packages in the \fBoptionalDependencies\fP object\. Note
|
|
987
|
+
that if these packages fail to install, the overall installation
|
|
988
|
+
process is not aborted\.
|
|
989
|
+
.SS otp
|
|
990
|
+
.RS 0
|
|
991
|
+
.IP \(bu 2
|
|
992
|
+
Default: null
|
|
993
|
+
.IP \(bu 2
|
|
994
|
+
Type: Number
|
|
995
|
+
|
|
996
|
+
.RE
|
|
997
|
+
.P
|
|
998
|
+
This is a one\-time password from a two\-factor authenticator\. It's needed
|
|
999
|
+
when publishing or changing package permissions with \fBnpm access\fP\|\.
|
|
1000
|
+
.SS package\-lock
|
|
1001
|
+
.RS 0
|
|
1002
|
+
.IP \(bu 2
|
|
1003
|
+
Default: true
|
|
1004
|
+
.IP \(bu 2
|
|
1005
|
+
Type: Boolean
|
|
1006
|
+
|
|
1007
|
+
.RE
|
|
1008
|
+
.P
|
|
1009
|
+
If set to false, then ignore \fBpackage\-lock\.json\fP files when installing\. This
|
|
1010
|
+
will also prevent \fIwriting\fR \fBpackage\-lock\.json\fP if \fBsave\fP is true\.
|
|
1011
|
+
.P
|
|
1012
|
+
This option is an alias for \fB\-\-shrinkwrap\fP\|\.
|
|
1013
|
+
.SS package\-lock\-only
|
|
1014
|
+
.RS 0
|
|
1015
|
+
.IP \(bu 2
|
|
1016
|
+
Default: false
|
|
1017
|
+
.IP \(bu 2
|
|
1018
|
+
Type: Boolean
|
|
1019
|
+
|
|
1020
|
+
.RE
|
|
1021
|
+
.P
|
|
1022
|
+
If set to true, it will update only the \fBpackage\-json\fP,
|
|
1023
|
+
instead of checking \fBnode_modules\fP and downloading dependencies\.
|
|
1024
|
+
.SS parseable
|
|
1025
|
+
.RS 0
|
|
1026
|
+
.IP \(bu 2
|
|
1027
|
+
Default: false
|
|
1028
|
+
.IP \(bu 2
|
|
1029
|
+
Type: Boolean
|
|
1030
|
+
|
|
1031
|
+
.RE
|
|
1032
|
+
.P
|
|
1033
|
+
Output parseable results from commands that write to
|
|
1034
|
+
standard output\. For \fBnpm search\fP, this will be tab\-separated table format\.
|
|
1035
|
+
.SS prefer\-offline
|
|
1036
|
+
.RS 0
|
|
1037
|
+
.IP \(bu 2
|
|
1038
|
+
Default: false
|
|
1039
|
+
.IP \(bu 2
|
|
1040
|
+
Type: Boolean
|
|
1041
|
+
|
|
1042
|
+
.RE
|
|
1043
|
+
.P
|
|
1044
|
+
If true, staleness checks for cached data will be bypassed, but missing data
|
|
1045
|
+
will be requested from the server\. To force full offline mode, use \fB\-\-offline\fP\|\.
|
|
1046
|
+
.P
|
|
1047
|
+
This option is effectively equivalent to \fB\-\-cache\-min=9999999\fP\|\.
|
|
1048
|
+
.SS prefer\-online
|
|
1049
|
+
.RS 0
|
|
1050
|
+
.IP \(bu 2
|
|
1051
|
+
Default: false
|
|
1052
|
+
.IP \(bu 2
|
|
1053
|
+
Type: Boolean
|
|
1054
|
+
|
|
1055
|
+
.RE
|
|
1056
|
+
.P
|
|
1057
|
+
If true, staleness checks for cached data will be forced, making the CLI look
|
|
1058
|
+
for updates immediately even for fresh package data\.
|
|
1059
|
+
.SS prefix
|
|
1060
|
+
.RS 0
|
|
1061
|
+
.IP \(bu 2
|
|
1062
|
+
Default: see npm help 5 folders
|
|
1063
|
+
.IP \(bu 2
|
|
1064
|
+
Type: path
|
|
1065
|
+
|
|
1066
|
+
.RE
|
|
1067
|
+
.P
|
|
1068
|
+
The location to install global items\. If set on the command line, then
|
|
1069
|
+
it forces non\-global commands to run in the specified folder\.
|
|
1070
|
+
.SS production
|
|
1071
|
+
.RS 0
|
|
1072
|
+
.IP \(bu 2
|
|
1073
|
+
Default: false
|
|
1074
|
+
.IP \(bu 2
|
|
1075
|
+
Type: Boolean
|
|
1076
|
+
|
|
1077
|
+
.RE
|
|
1078
|
+
.P
|
|
1079
|
+
Set to true to run in "production" mode\.
|
|
1080
|
+
.RS 0
|
|
1081
|
+
.IP 1. 3
|
|
1082
|
+
devDependencies are not installed at the topmost level when running
|
|
1083
|
+
local \fBnpm install\fP without any arguments\.
|
|
1084
|
+
.IP 2. 3
|
|
1085
|
+
Set the NODE_ENV="production" for lifecycle scripts\.
|
|
1086
|
+
|
|
1087
|
+
.RE
|
|
1088
|
+
.SS progress
|
|
1089
|
+
.RS 0
|
|
1090
|
+
.IP \(bu 2
|
|
1091
|
+
Default: true, unless TRAVIS or CI env vars set\.
|
|
1092
|
+
.IP \(bu 2
|
|
1093
|
+
Type: Boolean
|
|
1094
|
+
|
|
1095
|
+
.RE
|
|
1096
|
+
.P
|
|
1097
|
+
When set to \fBtrue\fP, npm will display a progress bar during time intensive
|
|
1098
|
+
operations, if \fBprocess\.stderr\fP is a TTY\.
|
|
1099
|
+
.P
|
|
1100
|
+
Set to \fBfalse\fP to suppress the progress bar\.
|
|
1101
|
+
.SS proxy
|
|
1102
|
+
.RS 0
|
|
1103
|
+
.IP \(bu 2
|
|
1104
|
+
Default: null
|
|
1105
|
+
.IP \(bu 2
|
|
1106
|
+
Type: url
|
|
1107
|
+
|
|
1108
|
+
.RE
|
|
1109
|
+
.P
|
|
1110
|
+
A proxy to use for outgoing http requests\. If the \fBHTTP_PROXY\fP or
|
|
1111
|
+
\fBhttp_proxy\fP environment variables are set, proxy settings will be
|
|
1112
|
+
honored by the underlying \fBrequest\fP library\.
|
|
1113
|
+
.SS read\-only
|
|
1114
|
+
.RS 0
|
|
1115
|
+
.IP \(bu 2
|
|
1116
|
+
Default: false
|
|
1117
|
+
.IP \(bu 2
|
|
1118
|
+
Type: Boolean
|
|
1119
|
+
|
|
1120
|
+
.RE
|
|
1121
|
+
.P
|
|
1122
|
+
This is used to mark a token as unable to publish when configuring limited access tokens with the \fBnpm token create\fP command\.
|
|
1123
|
+
.SS rebuild\-bundle
|
|
1124
|
+
.RS 0
|
|
1125
|
+
.IP \(bu 2
|
|
1126
|
+
Default: true
|
|
1127
|
+
.IP \(bu 2
|
|
1128
|
+
Type: Boolean
|
|
1129
|
+
|
|
1130
|
+
.RE
|
|
1131
|
+
.P
|
|
1132
|
+
Rebuild bundled dependencies after installation\.
|
|
1133
|
+
.SS registry
|
|
1134
|
+
.RS 0
|
|
1135
|
+
.IP \(bu 2
|
|
1136
|
+
Default: https://registry\.npmjs\.org/
|
|
1137
|
+
.IP \(bu 2
|
|
1138
|
+
Type: url
|
|
1139
|
+
|
|
1140
|
+
.RE
|
|
1141
|
+
.P
|
|
1142
|
+
The base URL of the npm package registry\.
|
|
1143
|
+
.SS rollback
|
|
1144
|
+
.RS 0
|
|
1145
|
+
.IP \(bu 2
|
|
1146
|
+
Default: true
|
|
1147
|
+
.IP \(bu 2
|
|
1148
|
+
Type: Boolean
|
|
1149
|
+
|
|
1150
|
+
.RE
|
|
1151
|
+
.P
|
|
1152
|
+
Remove failed installs\.
|
|
1153
|
+
.SS save
|
|
1154
|
+
.RS 0
|
|
1155
|
+
.IP \(bu 2
|
|
1156
|
+
Default: false
|
|
1157
|
+
.IP \(bu 2
|
|
1158
|
+
Type: Boolean
|
|
1159
|
+
|
|
1160
|
+
.RE
|
|
1161
|
+
.P
|
|
1162
|
+
Save installed packages to a package\.json file as dependencies\.
|
|
1163
|
+
.P
|
|
1164
|
+
When used with the \fBnpm rm\fP command, it removes it from the \fBdependencies\fP
|
|
1165
|
+
object\.
|
|
1166
|
+
.P
|
|
1167
|
+
Only works if there is already a package\.json file present\.
|
|
1168
|
+
.SS save\-bundle
|
|
1169
|
+
.RS 0
|
|
1170
|
+
.IP \(bu 2
|
|
1171
|
+
Default: false
|
|
1172
|
+
.IP \(bu 2
|
|
1173
|
+
Type: Boolean
|
|
1174
|
+
|
|
1175
|
+
.RE
|
|
1176
|
+
.P
|
|
1177
|
+
If a package would be saved at install time by the use of \fB\-\-save\fP,
|
|
1178
|
+
\fB\-\-save\-dev\fP, or \fB\-\-save\-optional\fP, then also put it in the
|
|
1179
|
+
\fBbundleDependencies\fP list\.
|
|
1180
|
+
.P
|
|
1181
|
+
When used with the \fBnpm rm\fP command, it removes it from the
|
|
1182
|
+
bundledDependencies list\.
|
|
1183
|
+
.SS save\-prod
|
|
1184
|
+
.RS 0
|
|
1185
|
+
.IP \(bu 2
|
|
1186
|
+
Default: false
|
|
1187
|
+
.IP \(bu 2
|
|
1188
|
+
Type: Boolean
|
|
1189
|
+
|
|
1190
|
+
.RE
|
|
1191
|
+
.P
|
|
1192
|
+
Makes sure that a package will be saved into \fBdependencies\fP specifically\. This
|
|
1193
|
+
is useful if a package already exists in \fBdevDependencies\fP or
|
|
1194
|
+
\fBoptionalDependencies\fP, but you want to move it to be a production dep\. This is
|
|
1195
|
+
also the default behavior if \fB\-\-save\fP is true, and neither \fB\-\-save\-dev\fP or
|
|
1196
|
+
\fB\-\-save\-optional\fP are true\.
|
|
1197
|
+
.SS save\-dev
|
|
1198
|
+
.RS 0
|
|
1199
|
+
.IP \(bu 2
|
|
1200
|
+
Default: false
|
|
1201
|
+
.IP \(bu 2
|
|
1202
|
+
Type: Boolean
|
|
1203
|
+
|
|
1204
|
+
.RE
|
|
1205
|
+
.P
|
|
1206
|
+
Save installed packages to a package\.json file as \fBdevDependencies\fP\|\.
|
|
1207
|
+
.P
|
|
1208
|
+
When used with the \fBnpm rm\fP command, it removes it from the
|
|
1209
|
+
\fBdevDependencies\fP object\.
|
|
1210
|
+
.P
|
|
1211
|
+
Only works if there is already a package\.json file present\.
|
|
1212
|
+
.SS save\-exact
|
|
1213
|
+
.RS 0
|
|
1214
|
+
.IP \(bu 2
|
|
1215
|
+
Default: false
|
|
1216
|
+
.IP \(bu 2
|
|
1217
|
+
Type: Boolean
|
|
1218
|
+
|
|
1219
|
+
.RE
|
|
1220
|
+
.P
|
|
1221
|
+
Dependencies saved to package\.json using \fB\-\-save\fP, \fB\-\-save\-dev\fP or
|
|
1222
|
+
\fB\-\-save\-optional\fP will be configured with an exact version rather than
|
|
1223
|
+
using npm's default semver range operator\.
|
|
1224
|
+
.SS save\-optional
|
|
1225
|
+
.RS 0
|
|
1226
|
+
.IP \(bu 2
|
|
1227
|
+
Default: false
|
|
1228
|
+
.IP \(bu 2
|
|
1229
|
+
Type: Boolean
|
|
1230
|
+
|
|
1231
|
+
.RE
|
|
1232
|
+
.P
|
|
1233
|
+
Save installed packages to a package\.json file as
|
|
1234
|
+
optionalDependencies\.
|
|
1235
|
+
.P
|
|
1236
|
+
When used with the \fBnpm rm\fP command, it removes it from the
|
|
1237
|
+
\fBdevDependencies\fP object\.
|
|
1238
|
+
.P
|
|
1239
|
+
Only works if there is already a package\.json file present\.
|
|
1240
|
+
.SS save\-prefix
|
|
1241
|
+
.RS 0
|
|
1242
|
+
.IP \(bu 2
|
|
1243
|
+
Default: '^'
|
|
1244
|
+
.IP \(bu 2
|
|
1245
|
+
Type: String
|
|
1246
|
+
|
|
1247
|
+
.RE
|
|
1248
|
+
.P
|
|
1249
|
+
Configure how versions of packages installed to a package\.json file via
|
|
1250
|
+
\fB\-\-save\fP or \fB\-\-save\-dev\fP get prefixed\.
|
|
1251
|
+
.P
|
|
1252
|
+
For example if a package has version \fB1\.2\.3\fP, by default its version is
|
|
1253
|
+
set to \fB^1\.2\.3\fP which allows minor upgrades for that package, but after
|
|
1254
|
+
\fBnpm config set save\-prefix='~'\fP it would be set to \fB~1\.2\.3\fP which only allows
|
|
1255
|
+
patch upgrades\.
|
|
1256
|
+
.SS scope
|
|
1257
|
+
.RS 0
|
|
1258
|
+
.IP \(bu 2
|
|
1259
|
+
Default: the scope of the current project, if any, or ""
|
|
1260
|
+
.IP \(bu 2
|
|
1261
|
+
Type: String
|
|
1262
|
+
|
|
1263
|
+
.RE
|
|
1264
|
+
.P
|
|
1265
|
+
Associate an operation with a scope for a scoped registry\. Useful when logging
|
|
1266
|
+
in to a private registry for the first time:
|
|
1267
|
+
\fBnpm login \-\-scope=@organization \-\-registry=registry\.organization\.com\fP, which
|
|
1268
|
+
will cause \fB@organization\fP to be mapped to the registry for future installation
|
|
1269
|
+
of packages specified according to the pattern \fB@organization/package\fP\|\.
|
|
1270
|
+
.SS script\-shell
|
|
1271
|
+
.RS 0
|
|
1272
|
+
.IP \(bu 2
|
|
1273
|
+
Default: \fBnull\fP
|
|
1274
|
+
.IP \(bu 2
|
|
1275
|
+
Type: path
|
|
1276
|
+
|
|
1277
|
+
.RE
|
|
1278
|
+
.P
|
|
1279
|
+
The shell to use for scripts run with the \fBnpm run\fP command\.
|
|
1280
|
+
.SS scripts\-prepend\-node\-path
|
|
1281
|
+
.RS 0
|
|
1282
|
+
.IP \(bu 2
|
|
1283
|
+
Default: "warn\-only"
|
|
1284
|
+
.IP \(bu 2
|
|
1285
|
+
Type: Boolean, \fB"auto"\fP or \fB"warn\-only"\fP
|
|
1286
|
+
|
|
1287
|
+
.RE
|
|
1288
|
+
.P
|
|
1289
|
+
If set to \fBtrue\fP, add the directory in which the current \fBnode\fP executable
|
|
1290
|
+
resides to the \fBPATH\fP environment variable when running scripts,
|
|
1291
|
+
even if that means that \fBnpm\fP will invoke a different \fBnode\fP executable than
|
|
1292
|
+
the one which it is running\.
|
|
1293
|
+
.P
|
|
1294
|
+
If set to \fBfalse\fP, never modify \fBPATH\fP with that\.
|
|
1295
|
+
.P
|
|
1296
|
+
If set to \fB"warn\-only"\fP, never modify \fBPATH\fP but print a warning if \fBnpm\fP thinks
|
|
1297
|
+
that you may want to run it with \fBtrue\fP, e\.g\. because the \fBnode\fP executable
|
|
1298
|
+
in the \fBPATH\fP is not the one \fBnpm\fP was invoked with\.
|
|
1299
|
+
.P
|
|
1300
|
+
If set to \fBauto\fP, only add that directory to the \fBPATH\fP environment variable
|
|
1301
|
+
if the \fBnode\fP executable with which \fBnpm\fP was invoked and the one that is found
|
|
1302
|
+
first on the \fBPATH\fP are different\.
|
|
1303
|
+
.SS searchexclude
|
|
1304
|
+
.RS 0
|
|
1305
|
+
.IP \(bu 2
|
|
1306
|
+
Default: ""
|
|
1307
|
+
.IP \(bu 2
|
|
1308
|
+
Type: String
|
|
1309
|
+
|
|
1310
|
+
.RE
|
|
1311
|
+
.P
|
|
1312
|
+
Space\-separated options that limit the results from search\.
|
|
1313
|
+
.SS searchopts
|
|
1314
|
+
.RS 0
|
|
1315
|
+
.IP \(bu 2
|
|
1316
|
+
Default: ""
|
|
1317
|
+
.IP \(bu 2
|
|
1318
|
+
Type: String
|
|
1319
|
+
|
|
1320
|
+
.RE
|
|
1321
|
+
.P
|
|
1322
|
+
Space\-separated options that are always passed to search\.
|
|
1323
|
+
.SS searchlimit
|
|
1324
|
+
.RS 0
|
|
1325
|
+
.IP \(bu 2
|
|
1326
|
+
Default: 20
|
|
1327
|
+
.IP \(bu 2
|
|
1328
|
+
Type: Number
|
|
1329
|
+
|
|
1330
|
+
.RE
|
|
1331
|
+
.P
|
|
1332
|
+
Number of items to limit search results to\. Will not apply at all to legacy
|
|
1333
|
+
searches\.
|
|
1334
|
+
.SS searchstaleness
|
|
1335
|
+
.RS 0
|
|
1336
|
+
.IP \(bu 2
|
|
1337
|
+
Default: 900 (15 minutes)
|
|
1338
|
+
.IP \(bu 2
|
|
1339
|
+
Type: Number
|
|
1340
|
+
|
|
1341
|
+
.RE
|
|
1342
|
+
.P
|
|
1343
|
+
The age of the cache, in seconds, before another registry request is made if
|
|
1344
|
+
using legacy search endpoint\.
|
|
1345
|
+
.SS send\-metrics
|
|
1346
|
+
.RS 0
|
|
1347
|
+
.IP \(bu 2
|
|
1348
|
+
Default: false
|
|
1349
|
+
.IP \(bu 2
|
|
1350
|
+
Type: Boolean
|
|
1351
|
+
|
|
1352
|
+
.RE
|
|
1353
|
+
.P
|
|
1354
|
+
If true, success/failure metrics will be reported to the registry stored in
|
|
1355
|
+
\fBmetrics\-registry\fP\|\. These requests contain the number of successful and
|
|
1356
|
+
failing runs of the npm CLI and the time period overwhich those counts were
|
|
1357
|
+
gathered\. No identifying information is included in these requests\.
|
|
1358
|
+
.SS shell
|
|
1359
|
+
.RS 0
|
|
1360
|
+
.IP \(bu 2
|
|
1361
|
+
Default: SHELL environment variable, or "bash" on Posix, or "cmd" on
|
|
1362
|
+
Windows
|
|
1363
|
+
.IP \(bu 2
|
|
1364
|
+
Type: path
|
|
1365
|
+
|
|
1366
|
+
.RE
|
|
1367
|
+
.P
|
|
1368
|
+
The shell to run for the \fBnpm explore\fP command\.
|
|
1369
|
+
.SS shrinkwrap
|
|
1370
|
+
.RS 0
|
|
1371
|
+
.IP \(bu 2
|
|
1372
|
+
Default: true
|
|
1373
|
+
.IP \(bu 2
|
|
1374
|
+
Type: Boolean
|
|
1375
|
+
|
|
1376
|
+
.RE
|
|
1377
|
+
.P
|
|
1378
|
+
If set to false, then ignore \fBnpm\-shrinkwrap\.json\fP files when installing\. This
|
|
1379
|
+
will also prevent \fIwriting\fR \fBnpm\-shrinkwrap\.json\fP if \fBsave\fP is true\.
|
|
1380
|
+
.P
|
|
1381
|
+
This option is an alias for \fB\-\-package\-lock\fP\|\.
|
|
1382
|
+
.SS sign\-git\-tag
|
|
1383
|
+
.RS 0
|
|
1384
|
+
.IP \(bu 2
|
|
1385
|
+
Default: false
|
|
1386
|
+
.IP \(bu 2
|
|
1387
|
+
Type: Boolean
|
|
1388
|
+
|
|
1389
|
+
.RE
|
|
1390
|
+
.P
|
|
1391
|
+
If set to true, then the \fBnpm version\fP command will tag the version
|
|
1392
|
+
using \fB\-s\fP to add a signature\.
|
|
1393
|
+
.P
|
|
1394
|
+
Note that git requires you to have set up GPG keys in your git configs
|
|
1395
|
+
for this to work properly\.
|
|
1396
|
+
.SS sso\-poll\-frequency
|
|
1397
|
+
.RS 0
|
|
1398
|
+
.IP \(bu 2
|
|
1399
|
+
Default: 500
|
|
1400
|
+
.IP \(bu 2
|
|
1401
|
+
Type: Number
|
|
1402
|
+
|
|
1403
|
+
.RE
|
|
1404
|
+
.P
|
|
1405
|
+
When used with SSO\-enabled \fBauth\-type\fPs, configures how regularly the registry
|
|
1406
|
+
should be polled while the user is completing authentication\.
|
|
1407
|
+
.SS sso\-type
|
|
1408
|
+
.RS 0
|
|
1409
|
+
.IP \(bu 2
|
|
1410
|
+
Default: 'oauth'
|
|
1411
|
+
.IP \(bu 2
|
|
1412
|
+
Type: 'oauth', 'saml', or null
|
|
1413
|
+
|
|
1414
|
+
.RE
|
|
1415
|
+
.P
|
|
1416
|
+
If \fB\-\-auth\-type=sso\fP, the type of SSO type to use\.
|
|
1417
|
+
.SS strict\-ssl
|
|
1418
|
+
.RS 0
|
|
1419
|
+
.IP \(bu 2
|
|
1420
|
+
Default: true
|
|
1421
|
+
.IP \(bu 2
|
|
1422
|
+
Type: Boolean
|
|
1423
|
+
|
|
1424
|
+
.RE
|
|
1425
|
+
.P
|
|
1426
|
+
Whether or not to do SSL key validation when making requests to the
|
|
1427
|
+
registry via https\.
|
|
1428
|
+
.P
|
|
1429
|
+
See also the \fBca\fP config\.
|
|
1430
|
+
.SS tag
|
|
1431
|
+
.RS 0
|
|
1432
|
+
.IP \(bu 2
|
|
1433
|
+
Default: latest
|
|
1434
|
+
.IP \(bu 2
|
|
1435
|
+
Type: String
|
|
1436
|
+
|
|
1437
|
+
.RE
|
|
1438
|
+
.P
|
|
1439
|
+
If you ask npm to install a package and don't tell it a specific version, then
|
|
1440
|
+
it will install the specified tag\.
|
|
1441
|
+
.P
|
|
1442
|
+
Also the tag that is added to the package@version specified by the \fBnpm
|
|
1443
|
+
tag\fP command, if no explicit tag is given\.
|
|
1444
|
+
.SS tag\-version\-prefix
|
|
1445
|
+
.RS 0
|
|
1446
|
+
.IP \(bu 2
|
|
1447
|
+
Default: \fB"v"\fP
|
|
1448
|
+
.IP \(bu 2
|
|
1449
|
+
Type: String
|
|
1450
|
+
|
|
1451
|
+
.RE
|
|
1452
|
+
.P
|
|
1453
|
+
If set, alters the prefix used when tagging a new version when performing a
|
|
1454
|
+
version increment using \fBnpm\-version\fP\|\. To remove the prefix altogether, set it
|
|
1455
|
+
to the empty string: \fB""\fP\|\.
|
|
1456
|
+
.P
|
|
1457
|
+
Because other tools may rely on the convention that npm version tags look like
|
|
1458
|
+
\fBv1\.0\.0\fP, \fIonly use this property if it is absolutely necessary\fR\|\. In
|
|
1459
|
+
particular, use care when overriding this setting for public packages\.
|
|
1460
|
+
.SS timing
|
|
1461
|
+
.RS 0
|
|
1462
|
+
.IP \(bu 2
|
|
1463
|
+
Default: \fBfalse\fP
|
|
1464
|
+
.IP \(bu 2
|
|
1465
|
+
Type: Boolean
|
|
1466
|
+
|
|
1467
|
+
.RE
|
|
1468
|
+
.P
|
|
1469
|
+
If true, writes an \fBnpm\-debug\fP log to \fB_logs\fP and timing information to
|
|
1470
|
+
\fB_timing\.json\fP, both in your cache\. \fB_timing\.json\fP is a newline delimited
|
|
1471
|
+
list of JSON objects\. You can quickly view it with this
|
|
1472
|
+
json \fIhttps://www\.npmjs\.com/package/json\fR command line:
|
|
1473
|
+
\fBjson \-g < ~/\.npm/_timing\.json\fP\|\.
|
|
1474
|
+
.SS tmp
|
|
1475
|
+
.RS 0
|
|
1476
|
+
.IP \(bu 2
|
|
1477
|
+
Default: TMPDIR environment variable, or "/tmp"
|
|
1478
|
+
.IP \(bu 2
|
|
1479
|
+
Type: path
|
|
1480
|
+
|
|
1481
|
+
.RE
|
|
1482
|
+
.P
|
|
1483
|
+
Where to store temporary files and folders\. All temp files are deleted
|
|
1484
|
+
on success, but left behind on failure for forensic purposes\.
|
|
1485
|
+
.SS unicode
|
|
1486
|
+
.RS 0
|
|
1487
|
+
.IP \(bu 2
|
|
1488
|
+
Default: false on windows, true on mac/unix systems with a unicode locale
|
|
1489
|
+
.IP \(bu 2
|
|
1490
|
+
Type: Boolean
|
|
1491
|
+
|
|
1492
|
+
.RE
|
|
1493
|
+
.P
|
|
1494
|
+
When set to true, npm uses unicode characters in the tree output\. When
|
|
1495
|
+
false, it uses ascii characters to draw trees\.
|
|
1496
|
+
.SS unsafe\-perm
|
|
1497
|
+
.RS 0
|
|
1498
|
+
.IP \(bu 2
|
|
1499
|
+
Default: false if running as root, true otherwise
|
|
1500
|
+
.IP \(bu 2
|
|
1501
|
+
Type: Boolean
|
|
1502
|
+
|
|
1503
|
+
.RE
|
|
1504
|
+
.P
|
|
1505
|
+
Set to true to suppress the UID/GID switching when running package
|
|
1506
|
+
scripts\. If set explicitly to false, then installing as a non\-root user
|
|
1507
|
+
will fail\.
|
|
1508
|
+
.SS usage
|
|
1509
|
+
.RS 0
|
|
1510
|
+
.IP \(bu 2
|
|
1511
|
+
Default: false
|
|
1512
|
+
.IP \(bu 2
|
|
1513
|
+
Type: Boolean
|
|
1514
|
+
|
|
1515
|
+
.RE
|
|
1516
|
+
.P
|
|
1517
|
+
Set to show short usage output (like the \-H output)
|
|
1518
|
+
instead of complete help when doing npm help \fBnpm\-help\fP\|\.
|
|
1519
|
+
.SS user
|
|
1520
|
+
.RS 0
|
|
1521
|
+
.IP \(bu 2
|
|
1522
|
+
Default: "nobody"
|
|
1523
|
+
.IP \(bu 2
|
|
1524
|
+
Type: String or Number
|
|
1525
|
+
|
|
1526
|
+
.RE
|
|
1527
|
+
.P
|
|
1528
|
+
The UID to set to when running package scripts as root\.
|
|
1529
|
+
.SS userconfig
|
|
1530
|
+
.RS 0
|
|
1531
|
+
.IP \(bu 2
|
|
1532
|
+
Default: ~/\.npmrc
|
|
1533
|
+
.IP \(bu 2
|
|
1534
|
+
Type: path
|
|
1535
|
+
|
|
1536
|
+
.RE
|
|
1537
|
+
.P
|
|
1538
|
+
The location of user\-level configuration settings\.
|
|
1539
|
+
.SS umask
|
|
1540
|
+
.RS 0
|
|
1541
|
+
.IP \(bu 2
|
|
1542
|
+
Default: 022
|
|
1543
|
+
.IP \(bu 2
|
|
1544
|
+
Type: Octal numeric string in range 0000\.\.0777 (0\.\.511)
|
|
1545
|
+
|
|
1546
|
+
.RE
|
|
1547
|
+
.P
|
|
1548
|
+
The "umask" value to use when setting the file creation mode on files
|
|
1549
|
+
and folders\.
|
|
1550
|
+
.P
|
|
1551
|
+
Folders and executables are given a mode which is \fB0777\fP masked against
|
|
1552
|
+
this value\. Other files are given a mode which is \fB0666\fP masked against
|
|
1553
|
+
this value\. Thus, the defaults are \fB0755\fP and \fB0644\fP respectively\.
|
|
1554
|
+
.SS user\-agent
|
|
1555
|
+
.RS 0
|
|
1556
|
+
.IP \(bu 2
|
|
1557
|
+
Default: node/{process\.version} {process\.platform} {process\.arch}
|
|
1558
|
+
.IP \(bu 2
|
|
1559
|
+
Type: String
|
|
1560
|
+
|
|
1561
|
+
.RE
|
|
1562
|
+
.P
|
|
1563
|
+
Sets a User\-Agent to the request header
|
|
1564
|
+
.SS version
|
|
1565
|
+
.RS 0
|
|
1566
|
+
.IP \(bu 2
|
|
1567
|
+
Default: false
|
|
1568
|
+
.IP \(bu 2
|
|
1569
|
+
Type: boolean
|
|
1570
|
+
|
|
1571
|
+
.RE
|
|
1572
|
+
.P
|
|
1573
|
+
If true, output the npm version and exit successfully\.
|
|
1574
|
+
.P
|
|
1575
|
+
Only relevant when specified explicitly on the command line\.
|
|
1576
|
+
.SS versions
|
|
1577
|
+
.RS 0
|
|
1578
|
+
.IP \(bu 2
|
|
1579
|
+
Default: false
|
|
1580
|
+
.IP \(bu 2
|
|
1581
|
+
Type: boolean
|
|
1582
|
+
|
|
1583
|
+
.RE
|
|
1584
|
+
.P
|
|
1585
|
+
If true, output the npm version as well as node's \fBprocess\.versions\fP map, and
|
|
1586
|
+
exit successfully\.
|
|
1587
|
+
.P
|
|
1588
|
+
Only relevant when specified explicitly on the command line\.
|
|
1589
|
+
.SS viewer
|
|
1590
|
+
.RS 0
|
|
1591
|
+
.IP \(bu 2
|
|
1592
|
+
Default: "man" on Posix, "browser" on Windows
|
|
1593
|
+
.IP \(bu 2
|
|
1594
|
+
Type: path
|
|
1595
|
+
|
|
1596
|
+
.RE
|
|
1597
|
+
.P
|
|
1598
|
+
The program to use to view help content\.
|
|
1599
|
+
.P
|
|
1600
|
+
Set to \fB"browser"\fP to view html help content in the default web browser\.
|
|
1601
|
+
.SH SEE ALSO
|
|
1602
|
+
.RS 0
|
|
1603
|
+
.IP \(bu 2
|
|
1604
|
+
npm help config
|
|
1605
|
+
.IP \(bu 2
|
|
1606
|
+
npm help 5 npmrc
|
|
1607
|
+
.IP \(bu 2
|
|
1608
|
+
npm help 7 scripts
|
|
1609
|
+
.IP \(bu 2
|
|
1610
|
+
npm help 5 folders
|
|
1611
|
+
.IP \(bu 2
|
|
1612
|
+
npm help npm
|
|
1613
|
+
|
|
1614
|
+
.RE
|
|
1615
|
+
|