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,1096 @@
|
|
|
1
|
+
# Copyright (c) 2012 Google Inc. All rights reserved.
|
|
2
|
+
# Use of this source code is governed by a BSD-style license that can be
|
|
3
|
+
# found in the LICENSE file.
|
|
4
|
+
|
|
5
|
+
r"""Code to validate and convert settings of the Microsoft build tools.
|
|
6
|
+
|
|
7
|
+
This file contains code to validate and convert settings of the Microsoft
|
|
8
|
+
build tools. The function ConvertToMSBuildSettings(), ValidateMSVSSettings(),
|
|
9
|
+
and ValidateMSBuildSettings() are the entry points.
|
|
10
|
+
|
|
11
|
+
This file was created by comparing the projects created by Visual Studio 2008
|
|
12
|
+
and Visual Studio 2010 for all available settings through the user interface.
|
|
13
|
+
The MSBuild schemas were also considered. They are typically found in the
|
|
14
|
+
MSBuild install directory, e.g. c:\Program Files (x86)\MSBuild
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
import sys
|
|
18
|
+
import re
|
|
19
|
+
|
|
20
|
+
# Dictionaries of settings validators. The key is the tool name, the value is
|
|
21
|
+
# a dictionary mapping setting names to validation functions.
|
|
22
|
+
_msvs_validators = {}
|
|
23
|
+
_msbuild_validators = {}
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
# A dictionary of settings converters. The key is the tool name, the value is
|
|
27
|
+
# a dictionary mapping setting names to conversion functions.
|
|
28
|
+
_msvs_to_msbuild_converters = {}
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
# Tool name mapping from MSVS to MSBuild.
|
|
32
|
+
_msbuild_name_of_tool = {}
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
class _Tool(object):
|
|
36
|
+
"""Represents a tool used by MSVS or MSBuild.
|
|
37
|
+
|
|
38
|
+
Attributes:
|
|
39
|
+
msvs_name: The name of the tool in MSVS.
|
|
40
|
+
msbuild_name: The name of the tool in MSBuild.
|
|
41
|
+
"""
|
|
42
|
+
|
|
43
|
+
def __init__(self, msvs_name, msbuild_name):
|
|
44
|
+
self.msvs_name = msvs_name
|
|
45
|
+
self.msbuild_name = msbuild_name
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
def _AddTool(tool):
|
|
49
|
+
"""Adds a tool to the four dictionaries used to process settings.
|
|
50
|
+
|
|
51
|
+
This only defines the tool. Each setting also needs to be added.
|
|
52
|
+
|
|
53
|
+
Args:
|
|
54
|
+
tool: The _Tool object to be added.
|
|
55
|
+
"""
|
|
56
|
+
_msvs_validators[tool.msvs_name] = {}
|
|
57
|
+
_msbuild_validators[tool.msbuild_name] = {}
|
|
58
|
+
_msvs_to_msbuild_converters[tool.msvs_name] = {}
|
|
59
|
+
_msbuild_name_of_tool[tool.msvs_name] = tool.msbuild_name
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
def _GetMSBuildToolSettings(msbuild_settings, tool):
|
|
63
|
+
"""Returns an MSBuild tool dictionary. Creates it if needed."""
|
|
64
|
+
return msbuild_settings.setdefault(tool.msbuild_name, {})
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
class _Type(object):
|
|
68
|
+
"""Type of settings (Base class)."""
|
|
69
|
+
|
|
70
|
+
def ValidateMSVS(self, value):
|
|
71
|
+
"""Verifies that the value is legal for MSVS.
|
|
72
|
+
|
|
73
|
+
Args:
|
|
74
|
+
value: the value to check for this type.
|
|
75
|
+
|
|
76
|
+
Raises:
|
|
77
|
+
ValueError if value is not valid for MSVS.
|
|
78
|
+
"""
|
|
79
|
+
|
|
80
|
+
def ValidateMSBuild(self, value):
|
|
81
|
+
"""Verifies that the value is legal for MSBuild.
|
|
82
|
+
|
|
83
|
+
Args:
|
|
84
|
+
value: the value to check for this type.
|
|
85
|
+
|
|
86
|
+
Raises:
|
|
87
|
+
ValueError if value is not valid for MSBuild.
|
|
88
|
+
"""
|
|
89
|
+
|
|
90
|
+
def ConvertToMSBuild(self, value):
|
|
91
|
+
"""Returns the MSBuild equivalent of the MSVS value given.
|
|
92
|
+
|
|
93
|
+
Args:
|
|
94
|
+
value: the MSVS value to convert.
|
|
95
|
+
|
|
96
|
+
Returns:
|
|
97
|
+
the MSBuild equivalent.
|
|
98
|
+
|
|
99
|
+
Raises:
|
|
100
|
+
ValueError if value is not valid.
|
|
101
|
+
"""
|
|
102
|
+
return value
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
class _String(_Type):
|
|
106
|
+
"""A setting that's just a string."""
|
|
107
|
+
|
|
108
|
+
def ValidateMSVS(self, value):
|
|
109
|
+
if not isinstance(value, basestring):
|
|
110
|
+
raise ValueError('expected string; got %r' % value)
|
|
111
|
+
|
|
112
|
+
def ValidateMSBuild(self, value):
|
|
113
|
+
if not isinstance(value, basestring):
|
|
114
|
+
raise ValueError('expected string; got %r' % value)
|
|
115
|
+
|
|
116
|
+
def ConvertToMSBuild(self, value):
|
|
117
|
+
# Convert the macros
|
|
118
|
+
return ConvertVCMacrosToMSBuild(value)
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
class _StringList(_Type):
|
|
122
|
+
"""A settings that's a list of strings."""
|
|
123
|
+
|
|
124
|
+
def ValidateMSVS(self, value):
|
|
125
|
+
if not isinstance(value, basestring) and not isinstance(value, list):
|
|
126
|
+
raise ValueError('expected string list; got %r' % value)
|
|
127
|
+
|
|
128
|
+
def ValidateMSBuild(self, value):
|
|
129
|
+
if not isinstance(value, basestring) and not isinstance(value, list):
|
|
130
|
+
raise ValueError('expected string list; got %r' % value)
|
|
131
|
+
|
|
132
|
+
def ConvertToMSBuild(self, value):
|
|
133
|
+
# Convert the macros
|
|
134
|
+
if isinstance(value, list):
|
|
135
|
+
return [ConvertVCMacrosToMSBuild(i) for i in value]
|
|
136
|
+
else:
|
|
137
|
+
return ConvertVCMacrosToMSBuild(value)
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
class _Boolean(_Type):
|
|
141
|
+
"""Boolean settings, can have the values 'false' or 'true'."""
|
|
142
|
+
|
|
143
|
+
def _Validate(self, value):
|
|
144
|
+
if value != 'true' and value != 'false':
|
|
145
|
+
raise ValueError('expected bool; got %r' % value)
|
|
146
|
+
|
|
147
|
+
def ValidateMSVS(self, value):
|
|
148
|
+
self._Validate(value)
|
|
149
|
+
|
|
150
|
+
def ValidateMSBuild(self, value):
|
|
151
|
+
self._Validate(value)
|
|
152
|
+
|
|
153
|
+
def ConvertToMSBuild(self, value):
|
|
154
|
+
self._Validate(value)
|
|
155
|
+
return value
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
class _Integer(_Type):
|
|
159
|
+
"""Integer settings."""
|
|
160
|
+
|
|
161
|
+
def __init__(self, msbuild_base=10):
|
|
162
|
+
_Type.__init__(self)
|
|
163
|
+
self._msbuild_base = msbuild_base
|
|
164
|
+
|
|
165
|
+
def ValidateMSVS(self, value):
|
|
166
|
+
# Try to convert, this will raise ValueError if invalid.
|
|
167
|
+
self.ConvertToMSBuild(value)
|
|
168
|
+
|
|
169
|
+
def ValidateMSBuild(self, value):
|
|
170
|
+
# Try to convert, this will raise ValueError if invalid.
|
|
171
|
+
int(value, self._msbuild_base)
|
|
172
|
+
|
|
173
|
+
def ConvertToMSBuild(self, value):
|
|
174
|
+
msbuild_format = (self._msbuild_base == 10) and '%d' or '0x%04x'
|
|
175
|
+
return msbuild_format % int(value)
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
class _Enumeration(_Type):
|
|
179
|
+
"""Type of settings that is an enumeration.
|
|
180
|
+
|
|
181
|
+
In MSVS, the values are indexes like '0', '1', and '2'.
|
|
182
|
+
MSBuild uses text labels that are more representative, like 'Win32'.
|
|
183
|
+
|
|
184
|
+
Constructor args:
|
|
185
|
+
label_list: an array of MSBuild labels that correspond to the MSVS index.
|
|
186
|
+
In the rare cases where MSVS has skipped an index value, None is
|
|
187
|
+
used in the array to indicate the unused spot.
|
|
188
|
+
new: an array of labels that are new to MSBuild.
|
|
189
|
+
"""
|
|
190
|
+
|
|
191
|
+
def __init__(self, label_list, new=None):
|
|
192
|
+
_Type.__init__(self)
|
|
193
|
+
self._label_list = label_list
|
|
194
|
+
self._msbuild_values = set(value for value in label_list
|
|
195
|
+
if value is not None)
|
|
196
|
+
if new is not None:
|
|
197
|
+
self._msbuild_values.update(new)
|
|
198
|
+
|
|
199
|
+
def ValidateMSVS(self, value):
|
|
200
|
+
# Try to convert. It will raise an exception if not valid.
|
|
201
|
+
self.ConvertToMSBuild(value)
|
|
202
|
+
|
|
203
|
+
def ValidateMSBuild(self, value):
|
|
204
|
+
if value not in self._msbuild_values:
|
|
205
|
+
raise ValueError('unrecognized enumerated value %s' % value)
|
|
206
|
+
|
|
207
|
+
def ConvertToMSBuild(self, value):
|
|
208
|
+
index = int(value)
|
|
209
|
+
if index < 0 or index >= len(self._label_list):
|
|
210
|
+
raise ValueError('index value (%d) not in expected range [0, %d)' %
|
|
211
|
+
(index, len(self._label_list)))
|
|
212
|
+
label = self._label_list[index]
|
|
213
|
+
if label is None:
|
|
214
|
+
raise ValueError('converted value for %s not specified.' % value)
|
|
215
|
+
return label
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
# Instantiate the various generic types.
|
|
219
|
+
_boolean = _Boolean()
|
|
220
|
+
_integer = _Integer()
|
|
221
|
+
# For now, we don't do any special validation on these types:
|
|
222
|
+
_string = _String()
|
|
223
|
+
_file_name = _String()
|
|
224
|
+
_folder_name = _String()
|
|
225
|
+
_file_list = _StringList()
|
|
226
|
+
_folder_list = _StringList()
|
|
227
|
+
_string_list = _StringList()
|
|
228
|
+
# Some boolean settings went from numerical values to boolean. The
|
|
229
|
+
# mapping is 0: default, 1: false, 2: true.
|
|
230
|
+
_newly_boolean = _Enumeration(['', 'false', 'true'])
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
def _Same(tool, name, setting_type):
|
|
234
|
+
"""Defines a setting that has the same name in MSVS and MSBuild.
|
|
235
|
+
|
|
236
|
+
Args:
|
|
237
|
+
tool: a dictionary that gives the names of the tool for MSVS and MSBuild.
|
|
238
|
+
name: the name of the setting.
|
|
239
|
+
setting_type: the type of this setting.
|
|
240
|
+
"""
|
|
241
|
+
_Renamed(tool, name, name, setting_type)
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
def _Renamed(tool, msvs_name, msbuild_name, setting_type):
|
|
245
|
+
"""Defines a setting for which the name has changed.
|
|
246
|
+
|
|
247
|
+
Args:
|
|
248
|
+
tool: a dictionary that gives the names of the tool for MSVS and MSBuild.
|
|
249
|
+
msvs_name: the name of the MSVS setting.
|
|
250
|
+
msbuild_name: the name of the MSBuild setting.
|
|
251
|
+
setting_type: the type of this setting.
|
|
252
|
+
"""
|
|
253
|
+
|
|
254
|
+
def _Translate(value, msbuild_settings):
|
|
255
|
+
msbuild_tool_settings = _GetMSBuildToolSettings(msbuild_settings, tool)
|
|
256
|
+
msbuild_tool_settings[msbuild_name] = setting_type.ConvertToMSBuild(value)
|
|
257
|
+
|
|
258
|
+
_msvs_validators[tool.msvs_name][msvs_name] = setting_type.ValidateMSVS
|
|
259
|
+
_msbuild_validators[tool.msbuild_name][msbuild_name] = (
|
|
260
|
+
setting_type.ValidateMSBuild)
|
|
261
|
+
_msvs_to_msbuild_converters[tool.msvs_name][msvs_name] = _Translate
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
def _Moved(tool, settings_name, msbuild_tool_name, setting_type):
|
|
265
|
+
_MovedAndRenamed(tool, settings_name, msbuild_tool_name, settings_name,
|
|
266
|
+
setting_type)
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
def _MovedAndRenamed(tool, msvs_settings_name, msbuild_tool_name,
|
|
270
|
+
msbuild_settings_name, setting_type):
|
|
271
|
+
"""Defines a setting that may have moved to a new section.
|
|
272
|
+
|
|
273
|
+
Args:
|
|
274
|
+
tool: a dictionary that gives the names of the tool for MSVS and MSBuild.
|
|
275
|
+
msvs_settings_name: the MSVS name of the setting.
|
|
276
|
+
msbuild_tool_name: the name of the MSBuild tool to place the setting under.
|
|
277
|
+
msbuild_settings_name: the MSBuild name of the setting.
|
|
278
|
+
setting_type: the type of this setting.
|
|
279
|
+
"""
|
|
280
|
+
|
|
281
|
+
def _Translate(value, msbuild_settings):
|
|
282
|
+
tool_settings = msbuild_settings.setdefault(msbuild_tool_name, {})
|
|
283
|
+
tool_settings[msbuild_settings_name] = setting_type.ConvertToMSBuild(value)
|
|
284
|
+
|
|
285
|
+
_msvs_validators[tool.msvs_name][msvs_settings_name] = (
|
|
286
|
+
setting_type.ValidateMSVS)
|
|
287
|
+
validator = setting_type.ValidateMSBuild
|
|
288
|
+
_msbuild_validators[msbuild_tool_name][msbuild_settings_name] = validator
|
|
289
|
+
_msvs_to_msbuild_converters[tool.msvs_name][msvs_settings_name] = _Translate
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
def _MSVSOnly(tool, name, setting_type):
|
|
293
|
+
"""Defines a setting that is only found in MSVS.
|
|
294
|
+
|
|
295
|
+
Args:
|
|
296
|
+
tool: a dictionary that gives the names of the tool for MSVS and MSBuild.
|
|
297
|
+
name: the name of the setting.
|
|
298
|
+
setting_type: the type of this setting.
|
|
299
|
+
"""
|
|
300
|
+
|
|
301
|
+
def _Translate(unused_value, unused_msbuild_settings):
|
|
302
|
+
# Since this is for MSVS only settings, no translation will happen.
|
|
303
|
+
pass
|
|
304
|
+
|
|
305
|
+
_msvs_validators[tool.msvs_name][name] = setting_type.ValidateMSVS
|
|
306
|
+
_msvs_to_msbuild_converters[tool.msvs_name][name] = _Translate
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
def _MSBuildOnly(tool, name, setting_type):
|
|
310
|
+
"""Defines a setting that is only found in MSBuild.
|
|
311
|
+
|
|
312
|
+
Args:
|
|
313
|
+
tool: a dictionary that gives the names of the tool for MSVS and MSBuild.
|
|
314
|
+
name: the name of the setting.
|
|
315
|
+
setting_type: the type of this setting.
|
|
316
|
+
"""
|
|
317
|
+
|
|
318
|
+
def _Translate(value, msbuild_settings):
|
|
319
|
+
# Let msbuild-only properties get translated as-is from msvs_settings.
|
|
320
|
+
tool_settings = msbuild_settings.setdefault(tool.msbuild_name, {})
|
|
321
|
+
tool_settings[name] = value
|
|
322
|
+
|
|
323
|
+
_msbuild_validators[tool.msbuild_name][name] = setting_type.ValidateMSBuild
|
|
324
|
+
_msvs_to_msbuild_converters[tool.msvs_name][name] = _Translate
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
def _ConvertedToAdditionalOption(tool, msvs_name, flag):
|
|
328
|
+
"""Defines a setting that's handled via a command line option in MSBuild.
|
|
329
|
+
|
|
330
|
+
Args:
|
|
331
|
+
tool: a dictionary that gives the names of the tool for MSVS and MSBuild.
|
|
332
|
+
msvs_name: the name of the MSVS setting that if 'true' becomes a flag
|
|
333
|
+
flag: the flag to insert at the end of the AdditionalOptions
|
|
334
|
+
"""
|
|
335
|
+
|
|
336
|
+
def _Translate(value, msbuild_settings):
|
|
337
|
+
if value == 'true':
|
|
338
|
+
tool_settings = _GetMSBuildToolSettings(msbuild_settings, tool)
|
|
339
|
+
if 'AdditionalOptions' in tool_settings:
|
|
340
|
+
new_flags = '%s %s' % (tool_settings['AdditionalOptions'], flag)
|
|
341
|
+
else:
|
|
342
|
+
new_flags = flag
|
|
343
|
+
tool_settings['AdditionalOptions'] = new_flags
|
|
344
|
+
_msvs_validators[tool.msvs_name][msvs_name] = _boolean.ValidateMSVS
|
|
345
|
+
_msvs_to_msbuild_converters[tool.msvs_name][msvs_name] = _Translate
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
def _CustomGeneratePreprocessedFile(tool, msvs_name):
|
|
349
|
+
def _Translate(value, msbuild_settings):
|
|
350
|
+
tool_settings = _GetMSBuildToolSettings(msbuild_settings, tool)
|
|
351
|
+
if value == '0':
|
|
352
|
+
tool_settings['PreprocessToFile'] = 'false'
|
|
353
|
+
tool_settings['PreprocessSuppressLineNumbers'] = 'false'
|
|
354
|
+
elif value == '1': # /P
|
|
355
|
+
tool_settings['PreprocessToFile'] = 'true'
|
|
356
|
+
tool_settings['PreprocessSuppressLineNumbers'] = 'false'
|
|
357
|
+
elif value == '2': # /EP /P
|
|
358
|
+
tool_settings['PreprocessToFile'] = 'true'
|
|
359
|
+
tool_settings['PreprocessSuppressLineNumbers'] = 'true'
|
|
360
|
+
else:
|
|
361
|
+
raise ValueError('value must be one of [0, 1, 2]; got %s' % value)
|
|
362
|
+
# Create a bogus validator that looks for '0', '1', or '2'
|
|
363
|
+
msvs_validator = _Enumeration(['a', 'b', 'c']).ValidateMSVS
|
|
364
|
+
_msvs_validators[tool.msvs_name][msvs_name] = msvs_validator
|
|
365
|
+
msbuild_validator = _boolean.ValidateMSBuild
|
|
366
|
+
msbuild_tool_validators = _msbuild_validators[tool.msbuild_name]
|
|
367
|
+
msbuild_tool_validators['PreprocessToFile'] = msbuild_validator
|
|
368
|
+
msbuild_tool_validators['PreprocessSuppressLineNumbers'] = msbuild_validator
|
|
369
|
+
_msvs_to_msbuild_converters[tool.msvs_name][msvs_name] = _Translate
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
fix_vc_macro_slashes_regex_list = ('IntDir', 'OutDir')
|
|
373
|
+
fix_vc_macro_slashes_regex = re.compile(
|
|
374
|
+
r'(\$\((?:%s)\))(?:[\\/]+)' % "|".join(fix_vc_macro_slashes_regex_list)
|
|
375
|
+
)
|
|
376
|
+
|
|
377
|
+
# Regular expression to detect keys that were generated by exclusion lists
|
|
378
|
+
_EXCLUDED_SUFFIX_RE = re.compile('^(.*)_excluded$')
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
def _ValidateExclusionSetting(setting, settings, error_msg, stderr=sys.stderr):
|
|
382
|
+
"""Verify that 'setting' is valid if it is generated from an exclusion list.
|
|
383
|
+
|
|
384
|
+
If the setting appears to be generated from an exclusion list, the root name
|
|
385
|
+
is checked.
|
|
386
|
+
|
|
387
|
+
Args:
|
|
388
|
+
setting: A string that is the setting name to validate
|
|
389
|
+
settings: A dictionary where the keys are valid settings
|
|
390
|
+
error_msg: The message to emit in the event of error
|
|
391
|
+
stderr: The stream receiving the error messages.
|
|
392
|
+
"""
|
|
393
|
+
# This may be unrecognized because it's an exclusion list. If the
|
|
394
|
+
# setting name has the _excluded suffix, then check the root name.
|
|
395
|
+
unrecognized = True
|
|
396
|
+
m = re.match(_EXCLUDED_SUFFIX_RE, setting)
|
|
397
|
+
if m:
|
|
398
|
+
root_setting = m.group(1)
|
|
399
|
+
unrecognized = root_setting not in settings
|
|
400
|
+
|
|
401
|
+
if unrecognized:
|
|
402
|
+
# We don't know this setting. Give a warning.
|
|
403
|
+
print >> stderr, error_msg
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
def FixVCMacroSlashes(s):
|
|
407
|
+
"""Replace macros which have excessive following slashes.
|
|
408
|
+
|
|
409
|
+
These macros are known to have a built-in trailing slash. Furthermore, many
|
|
410
|
+
scripts hiccup on processing paths with extra slashes in the middle.
|
|
411
|
+
|
|
412
|
+
This list is probably not exhaustive. Add as needed.
|
|
413
|
+
"""
|
|
414
|
+
if '$' in s:
|
|
415
|
+
s = fix_vc_macro_slashes_regex.sub(r'\1', s)
|
|
416
|
+
return s
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
def ConvertVCMacrosToMSBuild(s):
|
|
420
|
+
"""Convert the the MSVS macros found in the string to the MSBuild equivalent.
|
|
421
|
+
|
|
422
|
+
This list is probably not exhaustive. Add as needed.
|
|
423
|
+
"""
|
|
424
|
+
if '$' in s:
|
|
425
|
+
replace_map = {
|
|
426
|
+
'$(ConfigurationName)': '$(Configuration)',
|
|
427
|
+
'$(InputDir)': '%(RelativeDir)',
|
|
428
|
+
'$(InputExt)': '%(Extension)',
|
|
429
|
+
'$(InputFileName)': '%(Filename)%(Extension)',
|
|
430
|
+
'$(InputName)': '%(Filename)',
|
|
431
|
+
'$(InputPath)': '%(Identity)',
|
|
432
|
+
'$(ParentName)': '$(ProjectFileName)',
|
|
433
|
+
'$(PlatformName)': '$(Platform)',
|
|
434
|
+
'$(SafeInputName)': '%(Filename)',
|
|
435
|
+
}
|
|
436
|
+
for old, new in replace_map.iteritems():
|
|
437
|
+
s = s.replace(old, new)
|
|
438
|
+
s = FixVCMacroSlashes(s)
|
|
439
|
+
return s
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
def ConvertToMSBuildSettings(msvs_settings, stderr=sys.stderr):
|
|
443
|
+
"""Converts MSVS settings (VS2008 and earlier) to MSBuild settings (VS2010+).
|
|
444
|
+
|
|
445
|
+
Args:
|
|
446
|
+
msvs_settings: A dictionary. The key is the tool name. The values are
|
|
447
|
+
themselves dictionaries of settings and their values.
|
|
448
|
+
stderr: The stream receiving the error messages.
|
|
449
|
+
|
|
450
|
+
Returns:
|
|
451
|
+
A dictionary of MSBuild settings. The key is either the MSBuild tool name
|
|
452
|
+
or the empty string (for the global settings). The values are themselves
|
|
453
|
+
dictionaries of settings and their values.
|
|
454
|
+
"""
|
|
455
|
+
msbuild_settings = {}
|
|
456
|
+
for msvs_tool_name, msvs_tool_settings in msvs_settings.iteritems():
|
|
457
|
+
if msvs_tool_name in _msvs_to_msbuild_converters:
|
|
458
|
+
msvs_tool = _msvs_to_msbuild_converters[msvs_tool_name]
|
|
459
|
+
for msvs_setting, msvs_value in msvs_tool_settings.iteritems():
|
|
460
|
+
if msvs_setting in msvs_tool:
|
|
461
|
+
# Invoke the translation function.
|
|
462
|
+
try:
|
|
463
|
+
msvs_tool[msvs_setting](msvs_value, msbuild_settings)
|
|
464
|
+
except ValueError, e:
|
|
465
|
+
print >> stderr, ('Warning: while converting %s/%s to MSBuild, '
|
|
466
|
+
'%s' % (msvs_tool_name, msvs_setting, e))
|
|
467
|
+
else:
|
|
468
|
+
_ValidateExclusionSetting(msvs_setting,
|
|
469
|
+
msvs_tool,
|
|
470
|
+
('Warning: unrecognized setting %s/%s '
|
|
471
|
+
'while converting to MSBuild.' %
|
|
472
|
+
(msvs_tool_name, msvs_setting)),
|
|
473
|
+
stderr)
|
|
474
|
+
else:
|
|
475
|
+
print >> stderr, ('Warning: unrecognized tool %s while converting to '
|
|
476
|
+
'MSBuild.' % msvs_tool_name)
|
|
477
|
+
return msbuild_settings
|
|
478
|
+
|
|
479
|
+
|
|
480
|
+
def ValidateMSVSSettings(settings, stderr=sys.stderr):
|
|
481
|
+
"""Validates that the names of the settings are valid for MSVS.
|
|
482
|
+
|
|
483
|
+
Args:
|
|
484
|
+
settings: A dictionary. The key is the tool name. The values are
|
|
485
|
+
themselves dictionaries of settings and their values.
|
|
486
|
+
stderr: The stream receiving the error messages.
|
|
487
|
+
"""
|
|
488
|
+
_ValidateSettings(_msvs_validators, settings, stderr)
|
|
489
|
+
|
|
490
|
+
|
|
491
|
+
def ValidateMSBuildSettings(settings, stderr=sys.stderr):
|
|
492
|
+
"""Validates that the names of the settings are valid for MSBuild.
|
|
493
|
+
|
|
494
|
+
Args:
|
|
495
|
+
settings: A dictionary. The key is the tool name. The values are
|
|
496
|
+
themselves dictionaries of settings and their values.
|
|
497
|
+
stderr: The stream receiving the error messages.
|
|
498
|
+
"""
|
|
499
|
+
_ValidateSettings(_msbuild_validators, settings, stderr)
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
def _ValidateSettings(validators, settings, stderr):
|
|
503
|
+
"""Validates that the settings are valid for MSBuild or MSVS.
|
|
504
|
+
|
|
505
|
+
We currently only validate the names of the settings, not their values.
|
|
506
|
+
|
|
507
|
+
Args:
|
|
508
|
+
validators: A dictionary of tools and their validators.
|
|
509
|
+
settings: A dictionary. The key is the tool name. The values are
|
|
510
|
+
themselves dictionaries of settings and their values.
|
|
511
|
+
stderr: The stream receiving the error messages.
|
|
512
|
+
"""
|
|
513
|
+
for tool_name in settings:
|
|
514
|
+
if tool_name in validators:
|
|
515
|
+
tool_validators = validators[tool_name]
|
|
516
|
+
for setting, value in settings[tool_name].iteritems():
|
|
517
|
+
if setting in tool_validators:
|
|
518
|
+
try:
|
|
519
|
+
tool_validators[setting](value)
|
|
520
|
+
except ValueError, e:
|
|
521
|
+
print >> stderr, ('Warning: for %s/%s, %s' %
|
|
522
|
+
(tool_name, setting, e))
|
|
523
|
+
else:
|
|
524
|
+
_ValidateExclusionSetting(setting,
|
|
525
|
+
tool_validators,
|
|
526
|
+
('Warning: unrecognized setting %s/%s' %
|
|
527
|
+
(tool_name, setting)),
|
|
528
|
+
stderr)
|
|
529
|
+
|
|
530
|
+
else:
|
|
531
|
+
print >> stderr, ('Warning: unrecognized tool %s' % tool_name)
|
|
532
|
+
|
|
533
|
+
|
|
534
|
+
# MSVS and MBuild names of the tools.
|
|
535
|
+
_compile = _Tool('VCCLCompilerTool', 'ClCompile')
|
|
536
|
+
_link = _Tool('VCLinkerTool', 'Link')
|
|
537
|
+
_midl = _Tool('VCMIDLTool', 'Midl')
|
|
538
|
+
_rc = _Tool('VCResourceCompilerTool', 'ResourceCompile')
|
|
539
|
+
_lib = _Tool('VCLibrarianTool', 'Lib')
|
|
540
|
+
_manifest = _Tool('VCManifestTool', 'Manifest')
|
|
541
|
+
_masm = _Tool('MASM', 'MASM')
|
|
542
|
+
|
|
543
|
+
|
|
544
|
+
_AddTool(_compile)
|
|
545
|
+
_AddTool(_link)
|
|
546
|
+
_AddTool(_midl)
|
|
547
|
+
_AddTool(_rc)
|
|
548
|
+
_AddTool(_lib)
|
|
549
|
+
_AddTool(_manifest)
|
|
550
|
+
_AddTool(_masm)
|
|
551
|
+
# Add sections only found in the MSBuild settings.
|
|
552
|
+
_msbuild_validators[''] = {}
|
|
553
|
+
_msbuild_validators['ProjectReference'] = {}
|
|
554
|
+
_msbuild_validators['ManifestResourceCompile'] = {}
|
|
555
|
+
|
|
556
|
+
# Descriptions of the compiler options, i.e. VCCLCompilerTool in MSVS and
|
|
557
|
+
# ClCompile in MSBuild.
|
|
558
|
+
# See "c:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\1033\cl.xml" for
|
|
559
|
+
# the schema of the MSBuild ClCompile settings.
|
|
560
|
+
|
|
561
|
+
# Options that have the same name in MSVS and MSBuild
|
|
562
|
+
_Same(_compile, 'AdditionalIncludeDirectories', _folder_list) # /I
|
|
563
|
+
_Same(_compile, 'AdditionalOptions', _string_list)
|
|
564
|
+
_Same(_compile, 'AdditionalUsingDirectories', _folder_list) # /AI
|
|
565
|
+
_Same(_compile, 'AssemblerListingLocation', _file_name) # /Fa
|
|
566
|
+
_Same(_compile, 'BrowseInformationFile', _file_name)
|
|
567
|
+
_Same(_compile, 'BufferSecurityCheck', _boolean) # /GS
|
|
568
|
+
_Same(_compile, 'DisableLanguageExtensions', _boolean) # /Za
|
|
569
|
+
_Same(_compile, 'DisableSpecificWarnings', _string_list) # /wd
|
|
570
|
+
_Same(_compile, 'EnableFiberSafeOptimizations', _boolean) # /GT
|
|
571
|
+
_Same(_compile, 'EnablePREfast', _boolean) # /analyze Visible='false'
|
|
572
|
+
_Same(_compile, 'ExpandAttributedSource', _boolean) # /Fx
|
|
573
|
+
_Same(_compile, 'FloatingPointExceptions', _boolean) # /fp:except
|
|
574
|
+
_Same(_compile, 'ForceConformanceInForLoopScope', _boolean) # /Zc:forScope
|
|
575
|
+
_Same(_compile, 'ForcedIncludeFiles', _file_list) # /FI
|
|
576
|
+
_Same(_compile, 'ForcedUsingFiles', _file_list) # /FU
|
|
577
|
+
_Same(_compile, 'GenerateXMLDocumentationFiles', _boolean) # /doc
|
|
578
|
+
_Same(_compile, 'IgnoreStandardIncludePath', _boolean) # /X
|
|
579
|
+
_Same(_compile, 'MinimalRebuild', _boolean) # /Gm
|
|
580
|
+
_Same(_compile, 'OmitDefaultLibName', _boolean) # /Zl
|
|
581
|
+
_Same(_compile, 'OmitFramePointers', _boolean) # /Oy
|
|
582
|
+
_Same(_compile, 'PreprocessorDefinitions', _string_list) # /D
|
|
583
|
+
_Same(_compile, 'ProgramDataBaseFileName', _file_name) # /Fd
|
|
584
|
+
_Same(_compile, 'RuntimeTypeInfo', _boolean) # /GR
|
|
585
|
+
_Same(_compile, 'ShowIncludes', _boolean) # /showIncludes
|
|
586
|
+
_Same(_compile, 'SmallerTypeCheck', _boolean) # /RTCc
|
|
587
|
+
_Same(_compile, 'StringPooling', _boolean) # /GF
|
|
588
|
+
_Same(_compile, 'SuppressStartupBanner', _boolean) # /nologo
|
|
589
|
+
_Same(_compile, 'TreatWChar_tAsBuiltInType', _boolean) # /Zc:wchar_t
|
|
590
|
+
_Same(_compile, 'UndefineAllPreprocessorDefinitions', _boolean) # /u
|
|
591
|
+
_Same(_compile, 'UndefinePreprocessorDefinitions', _string_list) # /U
|
|
592
|
+
_Same(_compile, 'UseFullPaths', _boolean) # /FC
|
|
593
|
+
_Same(_compile, 'WholeProgramOptimization', _boolean) # /GL
|
|
594
|
+
_Same(_compile, 'XMLDocumentationFileName', _file_name)
|
|
595
|
+
|
|
596
|
+
_Same(_compile, 'AssemblerOutput',
|
|
597
|
+
_Enumeration(['NoListing',
|
|
598
|
+
'AssemblyCode', # /FA
|
|
599
|
+
'All', # /FAcs
|
|
600
|
+
'AssemblyAndMachineCode', # /FAc
|
|
601
|
+
'AssemblyAndSourceCode'])) # /FAs
|
|
602
|
+
_Same(_compile, 'BasicRuntimeChecks',
|
|
603
|
+
_Enumeration(['Default',
|
|
604
|
+
'StackFrameRuntimeCheck', # /RTCs
|
|
605
|
+
'UninitializedLocalUsageCheck', # /RTCu
|
|
606
|
+
'EnableFastChecks'])) # /RTC1
|
|
607
|
+
_Same(_compile, 'BrowseInformation',
|
|
608
|
+
_Enumeration(['false',
|
|
609
|
+
'true', # /FR
|
|
610
|
+
'true'])) # /Fr
|
|
611
|
+
_Same(_compile, 'CallingConvention',
|
|
612
|
+
_Enumeration(['Cdecl', # /Gd
|
|
613
|
+
'FastCall', # /Gr
|
|
614
|
+
'StdCall', # /Gz
|
|
615
|
+
'VectorCall'])) # /Gv
|
|
616
|
+
_Same(_compile, 'CompileAs',
|
|
617
|
+
_Enumeration(['Default',
|
|
618
|
+
'CompileAsC', # /TC
|
|
619
|
+
'CompileAsCpp'])) # /TP
|
|
620
|
+
_Same(_compile, 'DebugInformationFormat',
|
|
621
|
+
_Enumeration(['', # Disabled
|
|
622
|
+
'OldStyle', # /Z7
|
|
623
|
+
None,
|
|
624
|
+
'ProgramDatabase', # /Zi
|
|
625
|
+
'EditAndContinue'])) # /ZI
|
|
626
|
+
_Same(_compile, 'EnableEnhancedInstructionSet',
|
|
627
|
+
_Enumeration(['NotSet',
|
|
628
|
+
'StreamingSIMDExtensions', # /arch:SSE
|
|
629
|
+
'StreamingSIMDExtensions2', # /arch:SSE2
|
|
630
|
+
'AdvancedVectorExtensions', # /arch:AVX (vs2012+)
|
|
631
|
+
'NoExtensions', # /arch:IA32 (vs2012+)
|
|
632
|
+
# This one only exists in the new msbuild format.
|
|
633
|
+
'AdvancedVectorExtensions2', # /arch:AVX2 (vs2013r2+)
|
|
634
|
+
]))
|
|
635
|
+
_Same(_compile, 'ErrorReporting',
|
|
636
|
+
_Enumeration(['None', # /errorReport:none
|
|
637
|
+
'Prompt', # /errorReport:prompt
|
|
638
|
+
'Queue'], # /errorReport:queue
|
|
639
|
+
new=['Send'])) # /errorReport:send"
|
|
640
|
+
_Same(_compile, 'ExceptionHandling',
|
|
641
|
+
_Enumeration(['false',
|
|
642
|
+
'Sync', # /EHsc
|
|
643
|
+
'Async'], # /EHa
|
|
644
|
+
new=['SyncCThrow'])) # /EHs
|
|
645
|
+
_Same(_compile, 'FavorSizeOrSpeed',
|
|
646
|
+
_Enumeration(['Neither',
|
|
647
|
+
'Speed', # /Ot
|
|
648
|
+
'Size'])) # /Os
|
|
649
|
+
_Same(_compile, 'FloatingPointModel',
|
|
650
|
+
_Enumeration(['Precise', # /fp:precise
|
|
651
|
+
'Strict', # /fp:strict
|
|
652
|
+
'Fast'])) # /fp:fast
|
|
653
|
+
_Same(_compile, 'InlineFunctionExpansion',
|
|
654
|
+
_Enumeration(['Default',
|
|
655
|
+
'OnlyExplicitInline', # /Ob1
|
|
656
|
+
'AnySuitable'], # /Ob2
|
|
657
|
+
new=['Disabled'])) # /Ob0
|
|
658
|
+
_Same(_compile, 'Optimization',
|
|
659
|
+
_Enumeration(['Disabled', # /Od
|
|
660
|
+
'MinSpace', # /O1
|
|
661
|
+
'MaxSpeed', # /O2
|
|
662
|
+
'Full'])) # /Ox
|
|
663
|
+
_Same(_compile, 'RuntimeLibrary',
|
|
664
|
+
_Enumeration(['MultiThreaded', # /MT
|
|
665
|
+
'MultiThreadedDebug', # /MTd
|
|
666
|
+
'MultiThreadedDLL', # /MD
|
|
667
|
+
'MultiThreadedDebugDLL'])) # /MDd
|
|
668
|
+
_Same(_compile, 'StructMemberAlignment',
|
|
669
|
+
_Enumeration(['Default',
|
|
670
|
+
'1Byte', # /Zp1
|
|
671
|
+
'2Bytes', # /Zp2
|
|
672
|
+
'4Bytes', # /Zp4
|
|
673
|
+
'8Bytes', # /Zp8
|
|
674
|
+
'16Bytes'])) # /Zp16
|
|
675
|
+
_Same(_compile, 'WarningLevel',
|
|
676
|
+
_Enumeration(['TurnOffAllWarnings', # /W0
|
|
677
|
+
'Level1', # /W1
|
|
678
|
+
'Level2', # /W2
|
|
679
|
+
'Level3', # /W3
|
|
680
|
+
'Level4'], # /W4
|
|
681
|
+
new=['EnableAllWarnings'])) # /Wall
|
|
682
|
+
|
|
683
|
+
# Options found in MSVS that have been renamed in MSBuild.
|
|
684
|
+
_Renamed(_compile, 'EnableFunctionLevelLinking', 'FunctionLevelLinking',
|
|
685
|
+
_boolean) # /Gy
|
|
686
|
+
_Renamed(_compile, 'EnableIntrinsicFunctions', 'IntrinsicFunctions',
|
|
687
|
+
_boolean) # /Oi
|
|
688
|
+
_Renamed(_compile, 'KeepComments', 'PreprocessKeepComments', _boolean) # /C
|
|
689
|
+
_Renamed(_compile, 'ObjectFile', 'ObjectFileName', _file_name) # /Fo
|
|
690
|
+
_Renamed(_compile, 'OpenMP', 'OpenMPSupport', _boolean) # /openmp
|
|
691
|
+
_Renamed(_compile, 'PrecompiledHeaderThrough', 'PrecompiledHeaderFile',
|
|
692
|
+
_file_name) # Used with /Yc and /Yu
|
|
693
|
+
_Renamed(_compile, 'PrecompiledHeaderFile', 'PrecompiledHeaderOutputFile',
|
|
694
|
+
_file_name) # /Fp
|
|
695
|
+
_Renamed(_compile, 'UsePrecompiledHeader', 'PrecompiledHeader',
|
|
696
|
+
_Enumeration(['NotUsing', # VS recognized '' for this value too.
|
|
697
|
+
'Create', # /Yc
|
|
698
|
+
'Use'])) # /Yu
|
|
699
|
+
_Renamed(_compile, 'WarnAsError', 'TreatWarningAsError', _boolean) # /WX
|
|
700
|
+
|
|
701
|
+
_ConvertedToAdditionalOption(_compile, 'DefaultCharIsUnsigned', '/J')
|
|
702
|
+
|
|
703
|
+
# MSVS options not found in MSBuild.
|
|
704
|
+
_MSVSOnly(_compile, 'Detect64BitPortabilityProblems', _boolean)
|
|
705
|
+
_MSVSOnly(_compile, 'UseUnicodeResponseFiles', _boolean)
|
|
706
|
+
|
|
707
|
+
# MSBuild options not found in MSVS.
|
|
708
|
+
_MSBuildOnly(_compile, 'BuildingInIDE', _boolean)
|
|
709
|
+
_MSBuildOnly(_compile, 'CompileAsManaged',
|
|
710
|
+
_Enumeration([], new=['false',
|
|
711
|
+
'true'])) # /clr
|
|
712
|
+
_MSBuildOnly(_compile, 'CreateHotpatchableImage', _boolean) # /hotpatch
|
|
713
|
+
_MSBuildOnly(_compile, 'MultiProcessorCompilation', _boolean) # /MP
|
|
714
|
+
_MSBuildOnly(_compile, 'PreprocessOutputPath', _string) # /Fi
|
|
715
|
+
_MSBuildOnly(_compile, 'ProcessorNumber', _integer) # the number of processors
|
|
716
|
+
_MSBuildOnly(_compile, 'TrackerLogDirectory', _folder_name)
|
|
717
|
+
_MSBuildOnly(_compile, 'TreatSpecificWarningsAsErrors', _string_list) # /we
|
|
718
|
+
_MSBuildOnly(_compile, 'UseUnicodeForAssemblerListing', _boolean) # /FAu
|
|
719
|
+
|
|
720
|
+
# Defines a setting that needs very customized processing
|
|
721
|
+
_CustomGeneratePreprocessedFile(_compile, 'GeneratePreprocessedFile')
|
|
722
|
+
|
|
723
|
+
|
|
724
|
+
# Directives for converting MSVS VCLinkerTool to MSBuild Link.
|
|
725
|
+
# See "c:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\1033\link.xml" for
|
|
726
|
+
# the schema of the MSBuild Link settings.
|
|
727
|
+
|
|
728
|
+
# Options that have the same name in MSVS and MSBuild
|
|
729
|
+
_Same(_link, 'AdditionalDependencies', _file_list)
|
|
730
|
+
_Same(_link, 'AdditionalLibraryDirectories', _folder_list) # /LIBPATH
|
|
731
|
+
# /MANIFESTDEPENDENCY:
|
|
732
|
+
_Same(_link, 'AdditionalManifestDependencies', _file_list)
|
|
733
|
+
_Same(_link, 'AdditionalOptions', _string_list)
|
|
734
|
+
_Same(_link, 'AddModuleNamesToAssembly', _file_list) # /ASSEMBLYMODULE
|
|
735
|
+
_Same(_link, 'AllowIsolation', _boolean) # /ALLOWISOLATION
|
|
736
|
+
_Same(_link, 'AssemblyLinkResource', _file_list) # /ASSEMBLYLINKRESOURCE
|
|
737
|
+
_Same(_link, 'BaseAddress', _string) # /BASE
|
|
738
|
+
_Same(_link, 'CLRUnmanagedCodeCheck', _boolean) # /CLRUNMANAGEDCODECHECK
|
|
739
|
+
_Same(_link, 'DelayLoadDLLs', _file_list) # /DELAYLOAD
|
|
740
|
+
_Same(_link, 'DelaySign', _boolean) # /DELAYSIGN
|
|
741
|
+
_Same(_link, 'EmbedManagedResourceFile', _file_list) # /ASSEMBLYRESOURCE
|
|
742
|
+
_Same(_link, 'EnableUAC', _boolean) # /MANIFESTUAC
|
|
743
|
+
_Same(_link, 'EntryPointSymbol', _string) # /ENTRY
|
|
744
|
+
_Same(_link, 'ForceSymbolReferences', _file_list) # /INCLUDE
|
|
745
|
+
_Same(_link, 'FunctionOrder', _file_name) # /ORDER
|
|
746
|
+
_Same(_link, 'GenerateDebugInformation', _boolean) # /DEBUG
|
|
747
|
+
_Same(_link, 'GenerateMapFile', _boolean) # /MAP
|
|
748
|
+
_Same(_link, 'HeapCommitSize', _string)
|
|
749
|
+
_Same(_link, 'HeapReserveSize', _string) # /HEAP
|
|
750
|
+
_Same(_link, 'IgnoreAllDefaultLibraries', _boolean) # /NODEFAULTLIB
|
|
751
|
+
_Same(_link, 'IgnoreEmbeddedIDL', _boolean) # /IGNOREIDL
|
|
752
|
+
_Same(_link, 'ImportLibrary', _file_name) # /IMPLIB
|
|
753
|
+
_Same(_link, 'KeyContainer', _file_name) # /KEYCONTAINER
|
|
754
|
+
_Same(_link, 'KeyFile', _file_name) # /KEYFILE
|
|
755
|
+
_Same(_link, 'ManifestFile', _file_name) # /ManifestFile
|
|
756
|
+
_Same(_link, 'MapExports', _boolean) # /MAPINFO:EXPORTS
|
|
757
|
+
_Same(_link, 'MapFileName', _file_name)
|
|
758
|
+
_Same(_link, 'MergedIDLBaseFileName', _file_name) # /IDLOUT
|
|
759
|
+
_Same(_link, 'MergeSections', _string) # /MERGE
|
|
760
|
+
_Same(_link, 'MidlCommandFile', _file_name) # /MIDL
|
|
761
|
+
_Same(_link, 'ModuleDefinitionFile', _file_name) # /DEF
|
|
762
|
+
_Same(_link, 'OutputFile', _file_name) # /OUT
|
|
763
|
+
_Same(_link, 'PerUserRedirection', _boolean)
|
|
764
|
+
_Same(_link, 'Profile', _boolean) # /PROFILE
|
|
765
|
+
_Same(_link, 'ProfileGuidedDatabase', _file_name) # /PGD
|
|
766
|
+
_Same(_link, 'ProgramDatabaseFile', _file_name) # /PDB
|
|
767
|
+
_Same(_link, 'RegisterOutput', _boolean)
|
|
768
|
+
_Same(_link, 'SetChecksum', _boolean) # /RELEASE
|
|
769
|
+
_Same(_link, 'StackCommitSize', _string)
|
|
770
|
+
_Same(_link, 'StackReserveSize', _string) # /STACK
|
|
771
|
+
_Same(_link, 'StripPrivateSymbols', _file_name) # /PDBSTRIPPED
|
|
772
|
+
_Same(_link, 'SupportUnloadOfDelayLoadedDLL', _boolean) # /DELAY:UNLOAD
|
|
773
|
+
_Same(_link, 'SuppressStartupBanner', _boolean) # /NOLOGO
|
|
774
|
+
_Same(_link, 'SwapRunFromCD', _boolean) # /SWAPRUN:CD
|
|
775
|
+
_Same(_link, 'TurnOffAssemblyGeneration', _boolean) # /NOASSEMBLY
|
|
776
|
+
_Same(_link, 'TypeLibraryFile', _file_name) # /TLBOUT
|
|
777
|
+
_Same(_link, 'TypeLibraryResourceID', _integer) # /TLBID
|
|
778
|
+
_Same(_link, 'UACUIAccess', _boolean) # /uiAccess='true'
|
|
779
|
+
_Same(_link, 'Version', _string) # /VERSION
|
|
780
|
+
|
|
781
|
+
_Same(_link, 'EnableCOMDATFolding', _newly_boolean) # /OPT:ICF
|
|
782
|
+
_Same(_link, 'FixedBaseAddress', _newly_boolean) # /FIXED
|
|
783
|
+
_Same(_link, 'LargeAddressAware', _newly_boolean) # /LARGEADDRESSAWARE
|
|
784
|
+
_Same(_link, 'OptimizeReferences', _newly_boolean) # /OPT:REF
|
|
785
|
+
_Same(_link, 'RandomizedBaseAddress', _newly_boolean) # /DYNAMICBASE
|
|
786
|
+
_Same(_link, 'TerminalServerAware', _newly_boolean) # /TSAWARE
|
|
787
|
+
|
|
788
|
+
_subsystem_enumeration = _Enumeration(
|
|
789
|
+
['NotSet',
|
|
790
|
+
'Console', # /SUBSYSTEM:CONSOLE
|
|
791
|
+
'Windows', # /SUBSYSTEM:WINDOWS
|
|
792
|
+
'Native', # /SUBSYSTEM:NATIVE
|
|
793
|
+
'EFI Application', # /SUBSYSTEM:EFI_APPLICATION
|
|
794
|
+
'EFI Boot Service Driver', # /SUBSYSTEM:EFI_BOOT_SERVICE_DRIVER
|
|
795
|
+
'EFI ROM', # /SUBSYSTEM:EFI_ROM
|
|
796
|
+
'EFI Runtime', # /SUBSYSTEM:EFI_RUNTIME_DRIVER
|
|
797
|
+
'WindowsCE'], # /SUBSYSTEM:WINDOWSCE
|
|
798
|
+
new=['POSIX']) # /SUBSYSTEM:POSIX
|
|
799
|
+
|
|
800
|
+
_target_machine_enumeration = _Enumeration(
|
|
801
|
+
['NotSet',
|
|
802
|
+
'MachineX86', # /MACHINE:X86
|
|
803
|
+
None,
|
|
804
|
+
'MachineARM', # /MACHINE:ARM
|
|
805
|
+
'MachineEBC', # /MACHINE:EBC
|
|
806
|
+
'MachineIA64', # /MACHINE:IA64
|
|
807
|
+
None,
|
|
808
|
+
'MachineMIPS', # /MACHINE:MIPS
|
|
809
|
+
'MachineMIPS16', # /MACHINE:MIPS16
|
|
810
|
+
'MachineMIPSFPU', # /MACHINE:MIPSFPU
|
|
811
|
+
'MachineMIPSFPU16', # /MACHINE:MIPSFPU16
|
|
812
|
+
None,
|
|
813
|
+
None,
|
|
814
|
+
None,
|
|
815
|
+
'MachineSH4', # /MACHINE:SH4
|
|
816
|
+
None,
|
|
817
|
+
'MachineTHUMB', # /MACHINE:THUMB
|
|
818
|
+
'MachineX64']) # /MACHINE:X64
|
|
819
|
+
|
|
820
|
+
_Same(_link, 'AssemblyDebug',
|
|
821
|
+
_Enumeration(['',
|
|
822
|
+
'true', # /ASSEMBLYDEBUG
|
|
823
|
+
'false'])) # /ASSEMBLYDEBUG:DISABLE
|
|
824
|
+
_Same(_link, 'CLRImageType',
|
|
825
|
+
_Enumeration(['Default',
|
|
826
|
+
'ForceIJWImage', # /CLRIMAGETYPE:IJW
|
|
827
|
+
'ForcePureILImage', # /Switch="CLRIMAGETYPE:PURE
|
|
828
|
+
'ForceSafeILImage'])) # /Switch="CLRIMAGETYPE:SAFE
|
|
829
|
+
_Same(_link, 'CLRThreadAttribute',
|
|
830
|
+
_Enumeration(['DefaultThreadingAttribute', # /CLRTHREADATTRIBUTE:NONE
|
|
831
|
+
'MTAThreadingAttribute', # /CLRTHREADATTRIBUTE:MTA
|
|
832
|
+
'STAThreadingAttribute'])) # /CLRTHREADATTRIBUTE:STA
|
|
833
|
+
_Same(_link, 'DataExecutionPrevention',
|
|
834
|
+
_Enumeration(['',
|
|
835
|
+
'false', # /NXCOMPAT:NO
|
|
836
|
+
'true'])) # /NXCOMPAT
|
|
837
|
+
_Same(_link, 'Driver',
|
|
838
|
+
_Enumeration(['NotSet',
|
|
839
|
+
'Driver', # /Driver
|
|
840
|
+
'UpOnly', # /DRIVER:UPONLY
|
|
841
|
+
'WDM'])) # /DRIVER:WDM
|
|
842
|
+
_Same(_link, 'LinkTimeCodeGeneration',
|
|
843
|
+
_Enumeration(['Default',
|
|
844
|
+
'UseLinkTimeCodeGeneration', # /LTCG
|
|
845
|
+
'PGInstrument', # /LTCG:PGInstrument
|
|
846
|
+
'PGOptimization', # /LTCG:PGOptimize
|
|
847
|
+
'PGUpdate'])) # /LTCG:PGUpdate
|
|
848
|
+
_Same(_link, 'ShowProgress',
|
|
849
|
+
_Enumeration(['NotSet',
|
|
850
|
+
'LinkVerbose', # /VERBOSE
|
|
851
|
+
'LinkVerboseLib'], # /VERBOSE:Lib
|
|
852
|
+
new=['LinkVerboseICF', # /VERBOSE:ICF
|
|
853
|
+
'LinkVerboseREF', # /VERBOSE:REF
|
|
854
|
+
'LinkVerboseSAFESEH', # /VERBOSE:SAFESEH
|
|
855
|
+
'LinkVerboseCLR'])) # /VERBOSE:CLR
|
|
856
|
+
_Same(_link, 'SubSystem', _subsystem_enumeration)
|
|
857
|
+
_Same(_link, 'TargetMachine', _target_machine_enumeration)
|
|
858
|
+
_Same(_link, 'UACExecutionLevel',
|
|
859
|
+
_Enumeration(['AsInvoker', # /level='asInvoker'
|
|
860
|
+
'HighestAvailable', # /level='highestAvailable'
|
|
861
|
+
'RequireAdministrator'])) # /level='requireAdministrator'
|
|
862
|
+
_Same(_link, 'MinimumRequiredVersion', _string)
|
|
863
|
+
_Same(_link, 'TreatLinkerWarningAsErrors', _boolean) # /WX
|
|
864
|
+
|
|
865
|
+
|
|
866
|
+
# Options found in MSVS that have been renamed in MSBuild.
|
|
867
|
+
_Renamed(_link, 'ErrorReporting', 'LinkErrorReporting',
|
|
868
|
+
_Enumeration(['NoErrorReport', # /ERRORREPORT:NONE
|
|
869
|
+
'PromptImmediately', # /ERRORREPORT:PROMPT
|
|
870
|
+
'QueueForNextLogin'], # /ERRORREPORT:QUEUE
|
|
871
|
+
new=['SendErrorReport'])) # /ERRORREPORT:SEND
|
|
872
|
+
_Renamed(_link, 'IgnoreDefaultLibraryNames', 'IgnoreSpecificDefaultLibraries',
|
|
873
|
+
_file_list) # /NODEFAULTLIB
|
|
874
|
+
_Renamed(_link, 'ResourceOnlyDLL', 'NoEntryPoint', _boolean) # /NOENTRY
|
|
875
|
+
_Renamed(_link, 'SwapRunFromNet', 'SwapRunFromNET', _boolean) # /SWAPRUN:NET
|
|
876
|
+
|
|
877
|
+
_Moved(_link, 'GenerateManifest', '', _boolean)
|
|
878
|
+
_Moved(_link, 'IgnoreImportLibrary', '', _boolean)
|
|
879
|
+
_Moved(_link, 'LinkIncremental', '', _newly_boolean)
|
|
880
|
+
_Moved(_link, 'LinkLibraryDependencies', 'ProjectReference', _boolean)
|
|
881
|
+
_Moved(_link, 'UseLibraryDependencyInputs', 'ProjectReference', _boolean)
|
|
882
|
+
|
|
883
|
+
# MSVS options not found in MSBuild.
|
|
884
|
+
_MSVSOnly(_link, 'OptimizeForWindows98', _newly_boolean)
|
|
885
|
+
_MSVSOnly(_link, 'UseUnicodeResponseFiles', _boolean)
|
|
886
|
+
|
|
887
|
+
# MSBuild options not found in MSVS.
|
|
888
|
+
_MSBuildOnly(_link, 'BuildingInIDE', _boolean)
|
|
889
|
+
_MSBuildOnly(_link, 'ImageHasSafeExceptionHandlers', _boolean) # /SAFESEH
|
|
890
|
+
_MSBuildOnly(_link, 'LinkDLL', _boolean) # /DLL Visible='false'
|
|
891
|
+
_MSBuildOnly(_link, 'LinkStatus', _boolean) # /LTCG:STATUS
|
|
892
|
+
_MSBuildOnly(_link, 'PreventDllBinding', _boolean) # /ALLOWBIND
|
|
893
|
+
_MSBuildOnly(_link, 'SupportNobindOfDelayLoadedDLL', _boolean) # /DELAY:NOBIND
|
|
894
|
+
_MSBuildOnly(_link, 'TrackerLogDirectory', _folder_name)
|
|
895
|
+
_MSBuildOnly(_link, 'MSDOSStubFileName', _file_name) # /STUB Visible='false'
|
|
896
|
+
_MSBuildOnly(_link, 'SectionAlignment', _integer) # /ALIGN
|
|
897
|
+
_MSBuildOnly(_link, 'SpecifySectionAttributes', _string) # /SECTION
|
|
898
|
+
_MSBuildOnly(_link, 'ForceFileOutput',
|
|
899
|
+
_Enumeration([], new=['Enabled', # /FORCE
|
|
900
|
+
# /FORCE:MULTIPLE
|
|
901
|
+
'MultiplyDefinedSymbolOnly',
|
|
902
|
+
'UndefinedSymbolOnly'])) # /FORCE:UNRESOLVED
|
|
903
|
+
_MSBuildOnly(_link, 'CreateHotPatchableImage',
|
|
904
|
+
_Enumeration([], new=['Enabled', # /FUNCTIONPADMIN
|
|
905
|
+
'X86Image', # /FUNCTIONPADMIN:5
|
|
906
|
+
'X64Image', # /FUNCTIONPADMIN:6
|
|
907
|
+
'ItaniumImage'])) # /FUNCTIONPADMIN:16
|
|
908
|
+
_MSBuildOnly(_link, 'CLRSupportLastError',
|
|
909
|
+
_Enumeration([], new=['Enabled', # /CLRSupportLastError
|
|
910
|
+
'Disabled', # /CLRSupportLastError:NO
|
|
911
|
+
# /CLRSupportLastError:SYSTEMDLL
|
|
912
|
+
'SystemDlls']))
|
|
913
|
+
|
|
914
|
+
|
|
915
|
+
# Directives for converting VCResourceCompilerTool to ResourceCompile.
|
|
916
|
+
# See "c:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\1033\rc.xml" for
|
|
917
|
+
# the schema of the MSBuild ResourceCompile settings.
|
|
918
|
+
|
|
919
|
+
_Same(_rc, 'AdditionalOptions', _string_list)
|
|
920
|
+
_Same(_rc, 'AdditionalIncludeDirectories', _folder_list) # /I
|
|
921
|
+
_Same(_rc, 'Culture', _Integer(msbuild_base=16))
|
|
922
|
+
_Same(_rc, 'IgnoreStandardIncludePath', _boolean) # /X
|
|
923
|
+
_Same(_rc, 'PreprocessorDefinitions', _string_list) # /D
|
|
924
|
+
_Same(_rc, 'ResourceOutputFileName', _string) # /fo
|
|
925
|
+
_Same(_rc, 'ShowProgress', _boolean) # /v
|
|
926
|
+
# There is no UI in VisualStudio 2008 to set the following properties.
|
|
927
|
+
# However they are found in CL and other tools. Include them here for
|
|
928
|
+
# completeness, as they are very likely to have the same usage pattern.
|
|
929
|
+
_Same(_rc, 'SuppressStartupBanner', _boolean) # /nologo
|
|
930
|
+
_Same(_rc, 'UndefinePreprocessorDefinitions', _string_list) # /u
|
|
931
|
+
|
|
932
|
+
# MSBuild options not found in MSVS.
|
|
933
|
+
_MSBuildOnly(_rc, 'NullTerminateStrings', _boolean) # /n
|
|
934
|
+
_MSBuildOnly(_rc, 'TrackerLogDirectory', _folder_name)
|
|
935
|
+
|
|
936
|
+
|
|
937
|
+
# Directives for converting VCMIDLTool to Midl.
|
|
938
|
+
# See "c:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\1033\midl.xml" for
|
|
939
|
+
# the schema of the MSBuild Midl settings.
|
|
940
|
+
|
|
941
|
+
_Same(_midl, 'AdditionalIncludeDirectories', _folder_list) # /I
|
|
942
|
+
_Same(_midl, 'AdditionalOptions', _string_list)
|
|
943
|
+
_Same(_midl, 'CPreprocessOptions', _string) # /cpp_opt
|
|
944
|
+
_Same(_midl, 'ErrorCheckAllocations', _boolean) # /error allocation
|
|
945
|
+
_Same(_midl, 'ErrorCheckBounds', _boolean) # /error bounds_check
|
|
946
|
+
_Same(_midl, 'ErrorCheckEnumRange', _boolean) # /error enum
|
|
947
|
+
_Same(_midl, 'ErrorCheckRefPointers', _boolean) # /error ref
|
|
948
|
+
_Same(_midl, 'ErrorCheckStubData', _boolean) # /error stub_data
|
|
949
|
+
_Same(_midl, 'GenerateStublessProxies', _boolean) # /Oicf
|
|
950
|
+
_Same(_midl, 'GenerateTypeLibrary', _boolean)
|
|
951
|
+
_Same(_midl, 'HeaderFileName', _file_name) # /h
|
|
952
|
+
_Same(_midl, 'IgnoreStandardIncludePath', _boolean) # /no_def_idir
|
|
953
|
+
_Same(_midl, 'InterfaceIdentifierFileName', _file_name) # /iid
|
|
954
|
+
_Same(_midl, 'MkTypLibCompatible', _boolean) # /mktyplib203
|
|
955
|
+
_Same(_midl, 'OutputDirectory', _string) # /out
|
|
956
|
+
_Same(_midl, 'PreprocessorDefinitions', _string_list) # /D
|
|
957
|
+
_Same(_midl, 'ProxyFileName', _file_name) # /proxy
|
|
958
|
+
_Same(_midl, 'RedirectOutputAndErrors', _file_name) # /o
|
|
959
|
+
_Same(_midl, 'SuppressStartupBanner', _boolean) # /nologo
|
|
960
|
+
_Same(_midl, 'TypeLibraryName', _file_name) # /tlb
|
|
961
|
+
_Same(_midl, 'UndefinePreprocessorDefinitions', _string_list) # /U
|
|
962
|
+
_Same(_midl, 'WarnAsError', _boolean) # /WX
|
|
963
|
+
|
|
964
|
+
_Same(_midl, 'DefaultCharType',
|
|
965
|
+
_Enumeration(['Unsigned', # /char unsigned
|
|
966
|
+
'Signed', # /char signed
|
|
967
|
+
'Ascii'])) # /char ascii7
|
|
968
|
+
_Same(_midl, 'TargetEnvironment',
|
|
969
|
+
_Enumeration(['NotSet',
|
|
970
|
+
'Win32', # /env win32
|
|
971
|
+
'Itanium', # /env ia64
|
|
972
|
+
'X64'])) # /env x64
|
|
973
|
+
_Same(_midl, 'EnableErrorChecks',
|
|
974
|
+
_Enumeration(['EnableCustom',
|
|
975
|
+
'None', # /error none
|
|
976
|
+
'All'])) # /error all
|
|
977
|
+
_Same(_midl, 'StructMemberAlignment',
|
|
978
|
+
_Enumeration(['NotSet',
|
|
979
|
+
'1', # Zp1
|
|
980
|
+
'2', # Zp2
|
|
981
|
+
'4', # Zp4
|
|
982
|
+
'8'])) # Zp8
|
|
983
|
+
_Same(_midl, 'WarningLevel',
|
|
984
|
+
_Enumeration(['0', # /W0
|
|
985
|
+
'1', # /W1
|
|
986
|
+
'2', # /W2
|
|
987
|
+
'3', # /W3
|
|
988
|
+
'4'])) # /W4
|
|
989
|
+
|
|
990
|
+
_Renamed(_midl, 'DLLDataFileName', 'DllDataFileName', _file_name) # /dlldata
|
|
991
|
+
_Renamed(_midl, 'ValidateParameters', 'ValidateAllParameters',
|
|
992
|
+
_boolean) # /robust
|
|
993
|
+
|
|
994
|
+
# MSBuild options not found in MSVS.
|
|
995
|
+
_MSBuildOnly(_midl, 'ApplicationConfigurationMode', _boolean) # /app_config
|
|
996
|
+
_MSBuildOnly(_midl, 'ClientStubFile', _file_name) # /cstub
|
|
997
|
+
_MSBuildOnly(_midl, 'GenerateClientFiles',
|
|
998
|
+
_Enumeration([], new=['Stub', # /client stub
|
|
999
|
+
'None'])) # /client none
|
|
1000
|
+
_MSBuildOnly(_midl, 'GenerateServerFiles',
|
|
1001
|
+
_Enumeration([], new=['Stub', # /client stub
|
|
1002
|
+
'None'])) # /client none
|
|
1003
|
+
_MSBuildOnly(_midl, 'LocaleID', _integer) # /lcid DECIMAL
|
|
1004
|
+
_MSBuildOnly(_midl, 'ServerStubFile', _file_name) # /sstub
|
|
1005
|
+
_MSBuildOnly(_midl, 'SuppressCompilerWarnings', _boolean) # /no_warn
|
|
1006
|
+
_MSBuildOnly(_midl, 'TrackerLogDirectory', _folder_name)
|
|
1007
|
+
_MSBuildOnly(_midl, 'TypeLibFormat',
|
|
1008
|
+
_Enumeration([], new=['NewFormat', # /newtlb
|
|
1009
|
+
'OldFormat'])) # /oldtlb
|
|
1010
|
+
|
|
1011
|
+
|
|
1012
|
+
# Directives for converting VCLibrarianTool to Lib.
|
|
1013
|
+
# See "c:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\1033\lib.xml" for
|
|
1014
|
+
# the schema of the MSBuild Lib settings.
|
|
1015
|
+
|
|
1016
|
+
_Same(_lib, 'AdditionalDependencies', _file_list)
|
|
1017
|
+
_Same(_lib, 'AdditionalLibraryDirectories', _folder_list) # /LIBPATH
|
|
1018
|
+
_Same(_lib, 'AdditionalOptions', _string_list)
|
|
1019
|
+
_Same(_lib, 'ExportNamedFunctions', _string_list) # /EXPORT
|
|
1020
|
+
_Same(_lib, 'ForceSymbolReferences', _string) # /INCLUDE
|
|
1021
|
+
_Same(_lib, 'IgnoreAllDefaultLibraries', _boolean) # /NODEFAULTLIB
|
|
1022
|
+
_Same(_lib, 'IgnoreSpecificDefaultLibraries', _file_list) # /NODEFAULTLIB
|
|
1023
|
+
_Same(_lib, 'ModuleDefinitionFile', _file_name) # /DEF
|
|
1024
|
+
_Same(_lib, 'OutputFile', _file_name) # /OUT
|
|
1025
|
+
_Same(_lib, 'SuppressStartupBanner', _boolean) # /NOLOGO
|
|
1026
|
+
_Same(_lib, 'UseUnicodeResponseFiles', _boolean)
|
|
1027
|
+
_Same(_lib, 'LinkTimeCodeGeneration', _boolean) # /LTCG
|
|
1028
|
+
_Same(_lib, 'TargetMachine', _target_machine_enumeration)
|
|
1029
|
+
|
|
1030
|
+
# TODO(jeanluc) _link defines the same value that gets moved to
|
|
1031
|
+
# ProjectReference. We may want to validate that they are consistent.
|
|
1032
|
+
_Moved(_lib, 'LinkLibraryDependencies', 'ProjectReference', _boolean)
|
|
1033
|
+
|
|
1034
|
+
_MSBuildOnly(_lib, 'DisplayLibrary', _string) # /LIST Visible='false'
|
|
1035
|
+
_MSBuildOnly(_lib, 'ErrorReporting',
|
|
1036
|
+
_Enumeration([], new=['PromptImmediately', # /ERRORREPORT:PROMPT
|
|
1037
|
+
'QueueForNextLogin', # /ERRORREPORT:QUEUE
|
|
1038
|
+
'SendErrorReport', # /ERRORREPORT:SEND
|
|
1039
|
+
'NoErrorReport'])) # /ERRORREPORT:NONE
|
|
1040
|
+
_MSBuildOnly(_lib, 'MinimumRequiredVersion', _string)
|
|
1041
|
+
_MSBuildOnly(_lib, 'Name', _file_name) # /NAME
|
|
1042
|
+
_MSBuildOnly(_lib, 'RemoveObjects', _file_list) # /REMOVE
|
|
1043
|
+
_MSBuildOnly(_lib, 'SubSystem', _subsystem_enumeration)
|
|
1044
|
+
_MSBuildOnly(_lib, 'TrackerLogDirectory', _folder_name)
|
|
1045
|
+
_MSBuildOnly(_lib, 'TreatLibWarningAsErrors', _boolean) # /WX
|
|
1046
|
+
_MSBuildOnly(_lib, 'Verbose', _boolean)
|
|
1047
|
+
|
|
1048
|
+
|
|
1049
|
+
# Directives for converting VCManifestTool to Mt.
|
|
1050
|
+
# See "c:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\1033\mt.xml" for
|
|
1051
|
+
# the schema of the MSBuild Lib settings.
|
|
1052
|
+
|
|
1053
|
+
# Options that have the same name in MSVS and MSBuild
|
|
1054
|
+
_Same(_manifest, 'AdditionalManifestFiles', _file_list) # /manifest
|
|
1055
|
+
_Same(_manifest, 'AdditionalOptions', _string_list)
|
|
1056
|
+
_Same(_manifest, 'AssemblyIdentity', _string) # /identity:
|
|
1057
|
+
_Same(_manifest, 'ComponentFileName', _file_name) # /dll
|
|
1058
|
+
_Same(_manifest, 'GenerateCatalogFiles', _boolean) # /makecdfs
|
|
1059
|
+
_Same(_manifest, 'InputResourceManifests', _string) # /inputresource
|
|
1060
|
+
_Same(_manifest, 'OutputManifestFile', _file_name) # /out
|
|
1061
|
+
_Same(_manifest, 'RegistrarScriptFile', _file_name) # /rgs
|
|
1062
|
+
_Same(_manifest, 'ReplacementsFile', _file_name) # /replacements
|
|
1063
|
+
_Same(_manifest, 'SuppressStartupBanner', _boolean) # /nologo
|
|
1064
|
+
_Same(_manifest, 'TypeLibraryFile', _file_name) # /tlb:
|
|
1065
|
+
_Same(_manifest, 'UpdateFileHashes', _boolean) # /hashupdate
|
|
1066
|
+
_Same(_manifest, 'UpdateFileHashesSearchPath', _file_name)
|
|
1067
|
+
_Same(_manifest, 'VerboseOutput', _boolean) # /verbose
|
|
1068
|
+
|
|
1069
|
+
# Options that have moved location.
|
|
1070
|
+
_MovedAndRenamed(_manifest, 'ManifestResourceFile',
|
|
1071
|
+
'ManifestResourceCompile',
|
|
1072
|
+
'ResourceOutputFileName',
|
|
1073
|
+
_file_name)
|
|
1074
|
+
_Moved(_manifest, 'EmbedManifest', '', _boolean)
|
|
1075
|
+
|
|
1076
|
+
# MSVS options not found in MSBuild.
|
|
1077
|
+
_MSVSOnly(_manifest, 'DependencyInformationFile', _file_name)
|
|
1078
|
+
_MSVSOnly(_manifest, 'UseFAT32Workaround', _boolean)
|
|
1079
|
+
_MSVSOnly(_manifest, 'UseUnicodeResponseFiles', _boolean)
|
|
1080
|
+
|
|
1081
|
+
# MSBuild options not found in MSVS.
|
|
1082
|
+
_MSBuildOnly(_manifest, 'EnableDPIAwareness', _boolean)
|
|
1083
|
+
_MSBuildOnly(_manifest, 'GenerateCategoryTags', _boolean) # /category
|
|
1084
|
+
_MSBuildOnly(_manifest, 'ManifestFromManagedAssembly',
|
|
1085
|
+
_file_name) # /managedassemblyname
|
|
1086
|
+
_MSBuildOnly(_manifest, 'OutputResourceManifests', _string) # /outputresource
|
|
1087
|
+
_MSBuildOnly(_manifest, 'SuppressDependencyElement', _boolean) # /nodependency
|
|
1088
|
+
_MSBuildOnly(_manifest, 'TrackerLogDirectory', _folder_name)
|
|
1089
|
+
|
|
1090
|
+
|
|
1091
|
+
# Directives for MASM.
|
|
1092
|
+
# See "$(VCTargetsPath)\BuildCustomizations\masm.xml" for the schema of the
|
|
1093
|
+
# MSBuild MASM settings.
|
|
1094
|
+
|
|
1095
|
+
# Options that have the same name in MSVS and MSBuild.
|
|
1096
|
+
_Same(_masm, 'UseSafeExceptionHandlers', _boolean) # /safeseh
|