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,1055 @@
|
|
|
1
|
+
/* x509v3.h */
|
|
2
|
+
/*
|
|
3
|
+
* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL project
|
|
4
|
+
* 1999.
|
|
5
|
+
*/
|
|
6
|
+
/* ====================================================================
|
|
7
|
+
* Copyright (c) 1999-2004 The OpenSSL Project. All rights reserved.
|
|
8
|
+
*
|
|
9
|
+
* Redistribution and use in source and binary forms, with or without
|
|
10
|
+
* modification, are permitted provided that the following conditions
|
|
11
|
+
* are met:
|
|
12
|
+
*
|
|
13
|
+
* 1. Redistributions of source code must retain the above copyright
|
|
14
|
+
* notice, this list of conditions and the following disclaimer.
|
|
15
|
+
*
|
|
16
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
|
17
|
+
* notice, this list of conditions and the following disclaimer in
|
|
18
|
+
* the documentation and/or other materials provided with the
|
|
19
|
+
* distribution.
|
|
20
|
+
*
|
|
21
|
+
* 3. All advertising materials mentioning features or use of this
|
|
22
|
+
* software must display the following acknowledgment:
|
|
23
|
+
* "This product includes software developed by the OpenSSL Project
|
|
24
|
+
* for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
|
|
25
|
+
*
|
|
26
|
+
* 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
|
|
27
|
+
* endorse or promote products derived from this software without
|
|
28
|
+
* prior written permission. For written permission, please contact
|
|
29
|
+
* licensing@OpenSSL.org.
|
|
30
|
+
*
|
|
31
|
+
* 5. Products derived from this software may not be called "OpenSSL"
|
|
32
|
+
* nor may "OpenSSL" appear in their names without prior written
|
|
33
|
+
* permission of the OpenSSL Project.
|
|
34
|
+
*
|
|
35
|
+
* 6. Redistributions of any form whatsoever must retain the following
|
|
36
|
+
* acknowledgment:
|
|
37
|
+
* "This product includes software developed by the OpenSSL Project
|
|
38
|
+
* for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
|
|
39
|
+
*
|
|
40
|
+
* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
|
|
41
|
+
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
42
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
43
|
+
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
|
|
44
|
+
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
45
|
+
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
46
|
+
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
47
|
+
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
48
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
49
|
+
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
50
|
+
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
|
51
|
+
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
52
|
+
* ====================================================================
|
|
53
|
+
*
|
|
54
|
+
* This product includes cryptographic software written by Eric Young
|
|
55
|
+
* (eay@cryptsoft.com). This product includes software written by Tim
|
|
56
|
+
* Hudson (tjh@cryptsoft.com).
|
|
57
|
+
*
|
|
58
|
+
*/
|
|
59
|
+
#ifndef HEADER_X509V3_H
|
|
60
|
+
# define HEADER_X509V3_H
|
|
61
|
+
|
|
62
|
+
# include <openssl/bio.h>
|
|
63
|
+
# include <openssl/x509.h>
|
|
64
|
+
# include <openssl/conf.h>
|
|
65
|
+
|
|
66
|
+
#ifdef __cplusplus
|
|
67
|
+
extern "C" {
|
|
68
|
+
#endif
|
|
69
|
+
|
|
70
|
+
# ifdef OPENSSL_SYS_WIN32
|
|
71
|
+
/* Under Win32 these are defined in wincrypt.h */
|
|
72
|
+
# undef X509_NAME
|
|
73
|
+
# undef X509_CERT_PAIR
|
|
74
|
+
# undef X509_EXTENSIONS
|
|
75
|
+
# endif
|
|
76
|
+
|
|
77
|
+
/* Forward reference */
|
|
78
|
+
struct v3_ext_method;
|
|
79
|
+
struct v3_ext_ctx;
|
|
80
|
+
|
|
81
|
+
/* Useful typedefs */
|
|
82
|
+
|
|
83
|
+
typedef void *(*X509V3_EXT_NEW)(void);
|
|
84
|
+
typedef void (*X509V3_EXT_FREE) (void *);
|
|
85
|
+
typedef void *(*X509V3_EXT_D2I)(void *, const unsigned char **, long);
|
|
86
|
+
typedef int (*X509V3_EXT_I2D) (void *, unsigned char **);
|
|
87
|
+
typedef STACK_OF(CONF_VALUE) *
|
|
88
|
+
(*X509V3_EXT_I2V) (const struct v3_ext_method *method, void *ext,
|
|
89
|
+
STACK_OF(CONF_VALUE) *extlist);
|
|
90
|
+
typedef void *(*X509V3_EXT_V2I)(const struct v3_ext_method *method,
|
|
91
|
+
struct v3_ext_ctx *ctx,
|
|
92
|
+
STACK_OF(CONF_VALUE) *values);
|
|
93
|
+
typedef char *(*X509V3_EXT_I2S)(const struct v3_ext_method *method,
|
|
94
|
+
void *ext);
|
|
95
|
+
typedef void *(*X509V3_EXT_S2I)(const struct v3_ext_method *method,
|
|
96
|
+
struct v3_ext_ctx *ctx, const char *str);
|
|
97
|
+
typedef int (*X509V3_EXT_I2R) (const struct v3_ext_method *method, void *ext,
|
|
98
|
+
BIO *out, int indent);
|
|
99
|
+
typedef void *(*X509V3_EXT_R2I)(const struct v3_ext_method *method,
|
|
100
|
+
struct v3_ext_ctx *ctx, const char *str);
|
|
101
|
+
|
|
102
|
+
/* V3 extension structure */
|
|
103
|
+
|
|
104
|
+
struct v3_ext_method {
|
|
105
|
+
int ext_nid;
|
|
106
|
+
int ext_flags;
|
|
107
|
+
/* If this is set the following four fields are ignored */
|
|
108
|
+
ASN1_ITEM_EXP *it;
|
|
109
|
+
/* Old style ASN1 calls */
|
|
110
|
+
X509V3_EXT_NEW ext_new;
|
|
111
|
+
X509V3_EXT_FREE ext_free;
|
|
112
|
+
X509V3_EXT_D2I d2i;
|
|
113
|
+
X509V3_EXT_I2D i2d;
|
|
114
|
+
/* The following pair is used for string extensions */
|
|
115
|
+
X509V3_EXT_I2S i2s;
|
|
116
|
+
X509V3_EXT_S2I s2i;
|
|
117
|
+
/* The following pair is used for multi-valued extensions */
|
|
118
|
+
X509V3_EXT_I2V i2v;
|
|
119
|
+
X509V3_EXT_V2I v2i;
|
|
120
|
+
/* The following are used for raw extensions */
|
|
121
|
+
X509V3_EXT_I2R i2r;
|
|
122
|
+
X509V3_EXT_R2I r2i;
|
|
123
|
+
void *usr_data; /* Any extension specific data */
|
|
124
|
+
};
|
|
125
|
+
|
|
126
|
+
typedef struct X509V3_CONF_METHOD_st {
|
|
127
|
+
char *(*get_string) (void *db, char *section, char *value);
|
|
128
|
+
STACK_OF(CONF_VALUE) *(*get_section) (void *db, char *section);
|
|
129
|
+
void (*free_string) (void *db, char *string);
|
|
130
|
+
void (*free_section) (void *db, STACK_OF(CONF_VALUE) *section);
|
|
131
|
+
} X509V3_CONF_METHOD;
|
|
132
|
+
|
|
133
|
+
/* Context specific info */
|
|
134
|
+
struct v3_ext_ctx {
|
|
135
|
+
# define CTX_TEST 0x1
|
|
136
|
+
int flags;
|
|
137
|
+
X509 *issuer_cert;
|
|
138
|
+
X509 *subject_cert;
|
|
139
|
+
X509_REQ *subject_req;
|
|
140
|
+
X509_CRL *crl;
|
|
141
|
+
X509V3_CONF_METHOD *db_meth;
|
|
142
|
+
void *db;
|
|
143
|
+
/* Maybe more here */
|
|
144
|
+
};
|
|
145
|
+
|
|
146
|
+
typedef struct v3_ext_method X509V3_EXT_METHOD;
|
|
147
|
+
|
|
148
|
+
DECLARE_STACK_OF(X509V3_EXT_METHOD)
|
|
149
|
+
|
|
150
|
+
/* ext_flags values */
|
|
151
|
+
# define X509V3_EXT_DYNAMIC 0x1
|
|
152
|
+
# define X509V3_EXT_CTX_DEP 0x2
|
|
153
|
+
# define X509V3_EXT_MULTILINE 0x4
|
|
154
|
+
|
|
155
|
+
typedef BIT_STRING_BITNAME ENUMERATED_NAMES;
|
|
156
|
+
|
|
157
|
+
typedef struct BASIC_CONSTRAINTS_st {
|
|
158
|
+
int ca;
|
|
159
|
+
ASN1_INTEGER *pathlen;
|
|
160
|
+
} BASIC_CONSTRAINTS;
|
|
161
|
+
|
|
162
|
+
typedef struct PKEY_USAGE_PERIOD_st {
|
|
163
|
+
ASN1_GENERALIZEDTIME *notBefore;
|
|
164
|
+
ASN1_GENERALIZEDTIME *notAfter;
|
|
165
|
+
} PKEY_USAGE_PERIOD;
|
|
166
|
+
|
|
167
|
+
typedef struct otherName_st {
|
|
168
|
+
ASN1_OBJECT *type_id;
|
|
169
|
+
ASN1_TYPE *value;
|
|
170
|
+
} OTHERNAME;
|
|
171
|
+
|
|
172
|
+
typedef struct EDIPartyName_st {
|
|
173
|
+
ASN1_STRING *nameAssigner;
|
|
174
|
+
ASN1_STRING *partyName;
|
|
175
|
+
} EDIPARTYNAME;
|
|
176
|
+
|
|
177
|
+
typedef struct GENERAL_NAME_st {
|
|
178
|
+
# define GEN_OTHERNAME 0
|
|
179
|
+
# define GEN_EMAIL 1
|
|
180
|
+
# define GEN_DNS 2
|
|
181
|
+
# define GEN_X400 3
|
|
182
|
+
# define GEN_DIRNAME 4
|
|
183
|
+
# define GEN_EDIPARTY 5
|
|
184
|
+
# define GEN_URI 6
|
|
185
|
+
# define GEN_IPADD 7
|
|
186
|
+
# define GEN_RID 8
|
|
187
|
+
int type;
|
|
188
|
+
union {
|
|
189
|
+
char *ptr;
|
|
190
|
+
OTHERNAME *otherName; /* otherName */
|
|
191
|
+
ASN1_IA5STRING *rfc822Name;
|
|
192
|
+
ASN1_IA5STRING *dNSName;
|
|
193
|
+
ASN1_TYPE *x400Address;
|
|
194
|
+
X509_NAME *directoryName;
|
|
195
|
+
EDIPARTYNAME *ediPartyName;
|
|
196
|
+
ASN1_IA5STRING *uniformResourceIdentifier;
|
|
197
|
+
ASN1_OCTET_STRING *iPAddress;
|
|
198
|
+
ASN1_OBJECT *registeredID;
|
|
199
|
+
/* Old names */
|
|
200
|
+
ASN1_OCTET_STRING *ip; /* iPAddress */
|
|
201
|
+
X509_NAME *dirn; /* dirn */
|
|
202
|
+
ASN1_IA5STRING *ia5; /* rfc822Name, dNSName,
|
|
203
|
+
* uniformResourceIdentifier */
|
|
204
|
+
ASN1_OBJECT *rid; /* registeredID */
|
|
205
|
+
ASN1_TYPE *other; /* x400Address */
|
|
206
|
+
} d;
|
|
207
|
+
} GENERAL_NAME;
|
|
208
|
+
|
|
209
|
+
typedef STACK_OF(GENERAL_NAME) GENERAL_NAMES;
|
|
210
|
+
|
|
211
|
+
typedef struct ACCESS_DESCRIPTION_st {
|
|
212
|
+
ASN1_OBJECT *method;
|
|
213
|
+
GENERAL_NAME *location;
|
|
214
|
+
} ACCESS_DESCRIPTION;
|
|
215
|
+
|
|
216
|
+
typedef STACK_OF(ACCESS_DESCRIPTION) AUTHORITY_INFO_ACCESS;
|
|
217
|
+
|
|
218
|
+
typedef STACK_OF(ASN1_OBJECT) EXTENDED_KEY_USAGE;
|
|
219
|
+
|
|
220
|
+
DECLARE_STACK_OF(GENERAL_NAME)
|
|
221
|
+
DECLARE_ASN1_SET_OF(GENERAL_NAME)
|
|
222
|
+
|
|
223
|
+
DECLARE_STACK_OF(ACCESS_DESCRIPTION)
|
|
224
|
+
DECLARE_ASN1_SET_OF(ACCESS_DESCRIPTION)
|
|
225
|
+
|
|
226
|
+
typedef struct DIST_POINT_NAME_st {
|
|
227
|
+
int type;
|
|
228
|
+
union {
|
|
229
|
+
GENERAL_NAMES *fullname;
|
|
230
|
+
STACK_OF(X509_NAME_ENTRY) *relativename;
|
|
231
|
+
} name;
|
|
232
|
+
/* If relativename then this contains the full distribution point name */
|
|
233
|
+
X509_NAME *dpname;
|
|
234
|
+
} DIST_POINT_NAME;
|
|
235
|
+
/* All existing reasons */
|
|
236
|
+
# define CRLDP_ALL_REASONS 0x807f
|
|
237
|
+
|
|
238
|
+
# define CRL_REASON_NONE -1
|
|
239
|
+
# define CRL_REASON_UNSPECIFIED 0
|
|
240
|
+
# define CRL_REASON_KEY_COMPROMISE 1
|
|
241
|
+
# define CRL_REASON_CA_COMPROMISE 2
|
|
242
|
+
# define CRL_REASON_AFFILIATION_CHANGED 3
|
|
243
|
+
# define CRL_REASON_SUPERSEDED 4
|
|
244
|
+
# define CRL_REASON_CESSATION_OF_OPERATION 5
|
|
245
|
+
# define CRL_REASON_CERTIFICATE_HOLD 6
|
|
246
|
+
# define CRL_REASON_REMOVE_FROM_CRL 8
|
|
247
|
+
# define CRL_REASON_PRIVILEGE_WITHDRAWN 9
|
|
248
|
+
# define CRL_REASON_AA_COMPROMISE 10
|
|
249
|
+
|
|
250
|
+
struct DIST_POINT_st {
|
|
251
|
+
DIST_POINT_NAME *distpoint;
|
|
252
|
+
ASN1_BIT_STRING *reasons;
|
|
253
|
+
GENERAL_NAMES *CRLissuer;
|
|
254
|
+
int dp_reasons;
|
|
255
|
+
};
|
|
256
|
+
|
|
257
|
+
typedef STACK_OF(DIST_POINT) CRL_DIST_POINTS;
|
|
258
|
+
|
|
259
|
+
DECLARE_STACK_OF(DIST_POINT)
|
|
260
|
+
DECLARE_ASN1_SET_OF(DIST_POINT)
|
|
261
|
+
|
|
262
|
+
struct AUTHORITY_KEYID_st {
|
|
263
|
+
ASN1_OCTET_STRING *keyid;
|
|
264
|
+
GENERAL_NAMES *issuer;
|
|
265
|
+
ASN1_INTEGER *serial;
|
|
266
|
+
};
|
|
267
|
+
|
|
268
|
+
/* Strong extranet structures */
|
|
269
|
+
|
|
270
|
+
typedef struct SXNET_ID_st {
|
|
271
|
+
ASN1_INTEGER *zone;
|
|
272
|
+
ASN1_OCTET_STRING *user;
|
|
273
|
+
} SXNETID;
|
|
274
|
+
|
|
275
|
+
DECLARE_STACK_OF(SXNETID)
|
|
276
|
+
DECLARE_ASN1_SET_OF(SXNETID)
|
|
277
|
+
|
|
278
|
+
typedef struct SXNET_st {
|
|
279
|
+
ASN1_INTEGER *version;
|
|
280
|
+
STACK_OF(SXNETID) *ids;
|
|
281
|
+
} SXNET;
|
|
282
|
+
|
|
283
|
+
typedef struct NOTICEREF_st {
|
|
284
|
+
ASN1_STRING *organization;
|
|
285
|
+
STACK_OF(ASN1_INTEGER) *noticenos;
|
|
286
|
+
} NOTICEREF;
|
|
287
|
+
|
|
288
|
+
typedef struct USERNOTICE_st {
|
|
289
|
+
NOTICEREF *noticeref;
|
|
290
|
+
ASN1_STRING *exptext;
|
|
291
|
+
} USERNOTICE;
|
|
292
|
+
|
|
293
|
+
typedef struct POLICYQUALINFO_st {
|
|
294
|
+
ASN1_OBJECT *pqualid;
|
|
295
|
+
union {
|
|
296
|
+
ASN1_IA5STRING *cpsuri;
|
|
297
|
+
USERNOTICE *usernotice;
|
|
298
|
+
ASN1_TYPE *other;
|
|
299
|
+
} d;
|
|
300
|
+
} POLICYQUALINFO;
|
|
301
|
+
|
|
302
|
+
DECLARE_STACK_OF(POLICYQUALINFO)
|
|
303
|
+
DECLARE_ASN1_SET_OF(POLICYQUALINFO)
|
|
304
|
+
|
|
305
|
+
typedef struct POLICYINFO_st {
|
|
306
|
+
ASN1_OBJECT *policyid;
|
|
307
|
+
STACK_OF(POLICYQUALINFO) *qualifiers;
|
|
308
|
+
} POLICYINFO;
|
|
309
|
+
|
|
310
|
+
typedef STACK_OF(POLICYINFO) CERTIFICATEPOLICIES;
|
|
311
|
+
|
|
312
|
+
DECLARE_STACK_OF(POLICYINFO)
|
|
313
|
+
DECLARE_ASN1_SET_OF(POLICYINFO)
|
|
314
|
+
|
|
315
|
+
typedef struct POLICY_MAPPING_st {
|
|
316
|
+
ASN1_OBJECT *issuerDomainPolicy;
|
|
317
|
+
ASN1_OBJECT *subjectDomainPolicy;
|
|
318
|
+
} POLICY_MAPPING;
|
|
319
|
+
|
|
320
|
+
DECLARE_STACK_OF(POLICY_MAPPING)
|
|
321
|
+
|
|
322
|
+
typedef STACK_OF(POLICY_MAPPING) POLICY_MAPPINGS;
|
|
323
|
+
|
|
324
|
+
typedef struct GENERAL_SUBTREE_st {
|
|
325
|
+
GENERAL_NAME *base;
|
|
326
|
+
ASN1_INTEGER *minimum;
|
|
327
|
+
ASN1_INTEGER *maximum;
|
|
328
|
+
} GENERAL_SUBTREE;
|
|
329
|
+
|
|
330
|
+
DECLARE_STACK_OF(GENERAL_SUBTREE)
|
|
331
|
+
|
|
332
|
+
struct NAME_CONSTRAINTS_st {
|
|
333
|
+
STACK_OF(GENERAL_SUBTREE) *permittedSubtrees;
|
|
334
|
+
STACK_OF(GENERAL_SUBTREE) *excludedSubtrees;
|
|
335
|
+
};
|
|
336
|
+
|
|
337
|
+
typedef struct POLICY_CONSTRAINTS_st {
|
|
338
|
+
ASN1_INTEGER *requireExplicitPolicy;
|
|
339
|
+
ASN1_INTEGER *inhibitPolicyMapping;
|
|
340
|
+
} POLICY_CONSTRAINTS;
|
|
341
|
+
|
|
342
|
+
/* Proxy certificate structures, see RFC 3820 */
|
|
343
|
+
typedef struct PROXY_POLICY_st {
|
|
344
|
+
ASN1_OBJECT *policyLanguage;
|
|
345
|
+
ASN1_OCTET_STRING *policy;
|
|
346
|
+
} PROXY_POLICY;
|
|
347
|
+
|
|
348
|
+
typedef struct PROXY_CERT_INFO_EXTENSION_st {
|
|
349
|
+
ASN1_INTEGER *pcPathLengthConstraint;
|
|
350
|
+
PROXY_POLICY *proxyPolicy;
|
|
351
|
+
} PROXY_CERT_INFO_EXTENSION;
|
|
352
|
+
|
|
353
|
+
DECLARE_ASN1_FUNCTIONS(PROXY_POLICY)
|
|
354
|
+
DECLARE_ASN1_FUNCTIONS(PROXY_CERT_INFO_EXTENSION)
|
|
355
|
+
|
|
356
|
+
struct ISSUING_DIST_POINT_st {
|
|
357
|
+
DIST_POINT_NAME *distpoint;
|
|
358
|
+
int onlyuser;
|
|
359
|
+
int onlyCA;
|
|
360
|
+
ASN1_BIT_STRING *onlysomereasons;
|
|
361
|
+
int indirectCRL;
|
|
362
|
+
int onlyattr;
|
|
363
|
+
};
|
|
364
|
+
|
|
365
|
+
/* Values in idp_flags field */
|
|
366
|
+
/* IDP present */
|
|
367
|
+
# define IDP_PRESENT 0x1
|
|
368
|
+
/* IDP values inconsistent */
|
|
369
|
+
# define IDP_INVALID 0x2
|
|
370
|
+
/* onlyuser true */
|
|
371
|
+
# define IDP_ONLYUSER 0x4
|
|
372
|
+
/* onlyCA true */
|
|
373
|
+
# define IDP_ONLYCA 0x8
|
|
374
|
+
/* onlyattr true */
|
|
375
|
+
# define IDP_ONLYATTR 0x10
|
|
376
|
+
/* indirectCRL true */
|
|
377
|
+
# define IDP_INDIRECT 0x20
|
|
378
|
+
/* onlysomereasons present */
|
|
379
|
+
# define IDP_REASONS 0x40
|
|
380
|
+
|
|
381
|
+
# define X509V3_conf_err(val) ERR_add_error_data(6, "section:", val->section, \
|
|
382
|
+
",name:", val->name, ",value:", val->value);
|
|
383
|
+
|
|
384
|
+
# define X509V3_set_ctx_test(ctx) \
|
|
385
|
+
X509V3_set_ctx(ctx, NULL, NULL, NULL, NULL, CTX_TEST)
|
|
386
|
+
# define X509V3_set_ctx_nodb(ctx) (ctx)->db = NULL;
|
|
387
|
+
|
|
388
|
+
# define EXT_BITSTRING(nid, table) { nid, 0, ASN1_ITEM_ref(ASN1_BIT_STRING), \
|
|
389
|
+
0,0,0,0, \
|
|
390
|
+
0,0, \
|
|
391
|
+
(X509V3_EXT_I2V)i2v_ASN1_BIT_STRING, \
|
|
392
|
+
(X509V3_EXT_V2I)v2i_ASN1_BIT_STRING, \
|
|
393
|
+
NULL, NULL, \
|
|
394
|
+
table}
|
|
395
|
+
|
|
396
|
+
# define EXT_IA5STRING(nid) { nid, 0, ASN1_ITEM_ref(ASN1_IA5STRING), \
|
|
397
|
+
0,0,0,0, \
|
|
398
|
+
(X509V3_EXT_I2S)i2s_ASN1_IA5STRING, \
|
|
399
|
+
(X509V3_EXT_S2I)s2i_ASN1_IA5STRING, \
|
|
400
|
+
0,0,0,0, \
|
|
401
|
+
NULL}
|
|
402
|
+
|
|
403
|
+
# define EXT_END { -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}
|
|
404
|
+
|
|
405
|
+
/* X509_PURPOSE stuff */
|
|
406
|
+
|
|
407
|
+
# define EXFLAG_BCONS 0x1
|
|
408
|
+
# define EXFLAG_KUSAGE 0x2
|
|
409
|
+
# define EXFLAG_XKUSAGE 0x4
|
|
410
|
+
# define EXFLAG_NSCERT 0x8
|
|
411
|
+
|
|
412
|
+
# define EXFLAG_CA 0x10
|
|
413
|
+
/* Really self issued not necessarily self signed */
|
|
414
|
+
# define EXFLAG_SI 0x20
|
|
415
|
+
# define EXFLAG_V1 0x40
|
|
416
|
+
# define EXFLAG_INVALID 0x80
|
|
417
|
+
# define EXFLAG_SET 0x100
|
|
418
|
+
# define EXFLAG_CRITICAL 0x200
|
|
419
|
+
# define EXFLAG_PROXY 0x400
|
|
420
|
+
|
|
421
|
+
# define EXFLAG_INVALID_POLICY 0x800
|
|
422
|
+
# define EXFLAG_FRESHEST 0x1000
|
|
423
|
+
/* Self signed */
|
|
424
|
+
# define EXFLAG_SS 0x2000
|
|
425
|
+
|
|
426
|
+
# define KU_DIGITAL_SIGNATURE 0x0080
|
|
427
|
+
# define KU_NON_REPUDIATION 0x0040
|
|
428
|
+
# define KU_KEY_ENCIPHERMENT 0x0020
|
|
429
|
+
# define KU_DATA_ENCIPHERMENT 0x0010
|
|
430
|
+
# define KU_KEY_AGREEMENT 0x0008
|
|
431
|
+
# define KU_KEY_CERT_SIGN 0x0004
|
|
432
|
+
# define KU_CRL_SIGN 0x0002
|
|
433
|
+
# define KU_ENCIPHER_ONLY 0x0001
|
|
434
|
+
# define KU_DECIPHER_ONLY 0x8000
|
|
435
|
+
|
|
436
|
+
# define NS_SSL_CLIENT 0x80
|
|
437
|
+
# define NS_SSL_SERVER 0x40
|
|
438
|
+
# define NS_SMIME 0x20
|
|
439
|
+
# define NS_OBJSIGN 0x10
|
|
440
|
+
# define NS_SSL_CA 0x04
|
|
441
|
+
# define NS_SMIME_CA 0x02
|
|
442
|
+
# define NS_OBJSIGN_CA 0x01
|
|
443
|
+
# define NS_ANY_CA (NS_SSL_CA|NS_SMIME_CA|NS_OBJSIGN_CA)
|
|
444
|
+
|
|
445
|
+
# define XKU_SSL_SERVER 0x1
|
|
446
|
+
# define XKU_SSL_CLIENT 0x2
|
|
447
|
+
# define XKU_SMIME 0x4
|
|
448
|
+
# define XKU_CODE_SIGN 0x8
|
|
449
|
+
# define XKU_SGC 0x10
|
|
450
|
+
# define XKU_OCSP_SIGN 0x20
|
|
451
|
+
# define XKU_TIMESTAMP 0x40
|
|
452
|
+
# define XKU_DVCS 0x80
|
|
453
|
+
# define XKU_ANYEKU 0x100
|
|
454
|
+
|
|
455
|
+
# define X509_PURPOSE_DYNAMIC 0x1
|
|
456
|
+
# define X509_PURPOSE_DYNAMIC_NAME 0x2
|
|
457
|
+
|
|
458
|
+
typedef struct x509_purpose_st {
|
|
459
|
+
int purpose;
|
|
460
|
+
int trust; /* Default trust ID */
|
|
461
|
+
int flags;
|
|
462
|
+
int (*check_purpose) (const struct x509_purpose_st *, const X509 *, int);
|
|
463
|
+
char *name;
|
|
464
|
+
char *sname;
|
|
465
|
+
void *usr_data;
|
|
466
|
+
} X509_PURPOSE;
|
|
467
|
+
|
|
468
|
+
# define X509_PURPOSE_SSL_CLIENT 1
|
|
469
|
+
# define X509_PURPOSE_SSL_SERVER 2
|
|
470
|
+
# define X509_PURPOSE_NS_SSL_SERVER 3
|
|
471
|
+
# define X509_PURPOSE_SMIME_SIGN 4
|
|
472
|
+
# define X509_PURPOSE_SMIME_ENCRYPT 5
|
|
473
|
+
# define X509_PURPOSE_CRL_SIGN 6
|
|
474
|
+
# define X509_PURPOSE_ANY 7
|
|
475
|
+
# define X509_PURPOSE_OCSP_HELPER 8
|
|
476
|
+
# define X509_PURPOSE_TIMESTAMP_SIGN 9
|
|
477
|
+
|
|
478
|
+
# define X509_PURPOSE_MIN 1
|
|
479
|
+
# define X509_PURPOSE_MAX 9
|
|
480
|
+
|
|
481
|
+
/* Flags for X509V3_EXT_print() */
|
|
482
|
+
|
|
483
|
+
# define X509V3_EXT_UNKNOWN_MASK (0xfL << 16)
|
|
484
|
+
/* Return error for unknown extensions */
|
|
485
|
+
# define X509V3_EXT_DEFAULT 0
|
|
486
|
+
/* Print error for unknown extensions */
|
|
487
|
+
# define X509V3_EXT_ERROR_UNKNOWN (1L << 16)
|
|
488
|
+
/* ASN1 parse unknown extensions */
|
|
489
|
+
# define X509V3_EXT_PARSE_UNKNOWN (2L << 16)
|
|
490
|
+
/* BIO_dump unknown extensions */
|
|
491
|
+
# define X509V3_EXT_DUMP_UNKNOWN (3L << 16)
|
|
492
|
+
|
|
493
|
+
/* Flags for X509V3_add1_i2d */
|
|
494
|
+
|
|
495
|
+
# define X509V3_ADD_OP_MASK 0xfL
|
|
496
|
+
# define X509V3_ADD_DEFAULT 0L
|
|
497
|
+
# define X509V3_ADD_APPEND 1L
|
|
498
|
+
# define X509V3_ADD_REPLACE 2L
|
|
499
|
+
# define X509V3_ADD_REPLACE_EXISTING 3L
|
|
500
|
+
# define X509V3_ADD_KEEP_EXISTING 4L
|
|
501
|
+
# define X509V3_ADD_DELETE 5L
|
|
502
|
+
# define X509V3_ADD_SILENT 0x10
|
|
503
|
+
|
|
504
|
+
DECLARE_STACK_OF(X509_PURPOSE)
|
|
505
|
+
|
|
506
|
+
DECLARE_ASN1_FUNCTIONS(BASIC_CONSTRAINTS)
|
|
507
|
+
|
|
508
|
+
DECLARE_ASN1_FUNCTIONS(SXNET)
|
|
509
|
+
DECLARE_ASN1_FUNCTIONS(SXNETID)
|
|
510
|
+
|
|
511
|
+
int SXNET_add_id_asc(SXNET **psx, char *zone, char *user, int userlen);
|
|
512
|
+
int SXNET_add_id_ulong(SXNET **psx, unsigned long lzone, char *user,
|
|
513
|
+
int userlen);
|
|
514
|
+
int SXNET_add_id_INTEGER(SXNET **psx, ASN1_INTEGER *izone, char *user,
|
|
515
|
+
int userlen);
|
|
516
|
+
|
|
517
|
+
ASN1_OCTET_STRING *SXNET_get_id_asc(SXNET *sx, char *zone);
|
|
518
|
+
ASN1_OCTET_STRING *SXNET_get_id_ulong(SXNET *sx, unsigned long lzone);
|
|
519
|
+
ASN1_OCTET_STRING *SXNET_get_id_INTEGER(SXNET *sx, ASN1_INTEGER *zone);
|
|
520
|
+
|
|
521
|
+
DECLARE_ASN1_FUNCTIONS(AUTHORITY_KEYID)
|
|
522
|
+
|
|
523
|
+
DECLARE_ASN1_FUNCTIONS(PKEY_USAGE_PERIOD)
|
|
524
|
+
|
|
525
|
+
DECLARE_ASN1_FUNCTIONS(GENERAL_NAME)
|
|
526
|
+
GENERAL_NAME *GENERAL_NAME_dup(GENERAL_NAME *a);
|
|
527
|
+
int GENERAL_NAME_cmp(GENERAL_NAME *a, GENERAL_NAME *b);
|
|
528
|
+
|
|
529
|
+
ASN1_BIT_STRING *v2i_ASN1_BIT_STRING(X509V3_EXT_METHOD *method,
|
|
530
|
+
X509V3_CTX *ctx,
|
|
531
|
+
STACK_OF(CONF_VALUE) *nval);
|
|
532
|
+
STACK_OF(CONF_VALUE) *i2v_ASN1_BIT_STRING(X509V3_EXT_METHOD *method,
|
|
533
|
+
ASN1_BIT_STRING *bits,
|
|
534
|
+
STACK_OF(CONF_VALUE) *extlist);
|
|
535
|
+
|
|
536
|
+
STACK_OF(CONF_VALUE) *i2v_GENERAL_NAME(X509V3_EXT_METHOD *method,
|
|
537
|
+
GENERAL_NAME *gen,
|
|
538
|
+
STACK_OF(CONF_VALUE) *ret);
|
|
539
|
+
int GENERAL_NAME_print(BIO *out, GENERAL_NAME *gen);
|
|
540
|
+
|
|
541
|
+
DECLARE_ASN1_FUNCTIONS(GENERAL_NAMES)
|
|
542
|
+
|
|
543
|
+
STACK_OF(CONF_VALUE) *i2v_GENERAL_NAMES(X509V3_EXT_METHOD *method,
|
|
544
|
+
GENERAL_NAMES *gen,
|
|
545
|
+
STACK_OF(CONF_VALUE) *extlist);
|
|
546
|
+
GENERAL_NAMES *v2i_GENERAL_NAMES(const X509V3_EXT_METHOD *method,
|
|
547
|
+
X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval);
|
|
548
|
+
|
|
549
|
+
DECLARE_ASN1_FUNCTIONS(OTHERNAME)
|
|
550
|
+
DECLARE_ASN1_FUNCTIONS(EDIPARTYNAME)
|
|
551
|
+
int OTHERNAME_cmp(OTHERNAME *a, OTHERNAME *b);
|
|
552
|
+
void GENERAL_NAME_set0_value(GENERAL_NAME *a, int type, void *value);
|
|
553
|
+
void *GENERAL_NAME_get0_value(GENERAL_NAME *a, int *ptype);
|
|
554
|
+
int GENERAL_NAME_set0_othername(GENERAL_NAME *gen,
|
|
555
|
+
ASN1_OBJECT *oid, ASN1_TYPE *value);
|
|
556
|
+
int GENERAL_NAME_get0_otherName(GENERAL_NAME *gen,
|
|
557
|
+
ASN1_OBJECT **poid, ASN1_TYPE **pvalue);
|
|
558
|
+
|
|
559
|
+
char *i2s_ASN1_OCTET_STRING(X509V3_EXT_METHOD *method,
|
|
560
|
+
ASN1_OCTET_STRING *ia5);
|
|
561
|
+
ASN1_OCTET_STRING *s2i_ASN1_OCTET_STRING(X509V3_EXT_METHOD *method,
|
|
562
|
+
X509V3_CTX *ctx, char *str);
|
|
563
|
+
|
|
564
|
+
DECLARE_ASN1_FUNCTIONS(EXTENDED_KEY_USAGE)
|
|
565
|
+
int i2a_ACCESS_DESCRIPTION(BIO *bp, ACCESS_DESCRIPTION *a);
|
|
566
|
+
|
|
567
|
+
DECLARE_ASN1_FUNCTIONS(CERTIFICATEPOLICIES)
|
|
568
|
+
DECLARE_ASN1_FUNCTIONS(POLICYINFO)
|
|
569
|
+
DECLARE_ASN1_FUNCTIONS(POLICYQUALINFO)
|
|
570
|
+
DECLARE_ASN1_FUNCTIONS(USERNOTICE)
|
|
571
|
+
DECLARE_ASN1_FUNCTIONS(NOTICEREF)
|
|
572
|
+
|
|
573
|
+
DECLARE_ASN1_FUNCTIONS(CRL_DIST_POINTS)
|
|
574
|
+
DECLARE_ASN1_FUNCTIONS(DIST_POINT)
|
|
575
|
+
DECLARE_ASN1_FUNCTIONS(DIST_POINT_NAME)
|
|
576
|
+
DECLARE_ASN1_FUNCTIONS(ISSUING_DIST_POINT)
|
|
577
|
+
|
|
578
|
+
int DIST_POINT_set_dpname(DIST_POINT_NAME *dpn, X509_NAME *iname);
|
|
579
|
+
|
|
580
|
+
int NAME_CONSTRAINTS_check(X509 *x, NAME_CONSTRAINTS *nc);
|
|
581
|
+
|
|
582
|
+
DECLARE_ASN1_FUNCTIONS(ACCESS_DESCRIPTION)
|
|
583
|
+
DECLARE_ASN1_FUNCTIONS(AUTHORITY_INFO_ACCESS)
|
|
584
|
+
|
|
585
|
+
DECLARE_ASN1_ITEM(POLICY_MAPPING)
|
|
586
|
+
DECLARE_ASN1_ALLOC_FUNCTIONS(POLICY_MAPPING)
|
|
587
|
+
DECLARE_ASN1_ITEM(POLICY_MAPPINGS)
|
|
588
|
+
|
|
589
|
+
DECLARE_ASN1_ITEM(GENERAL_SUBTREE)
|
|
590
|
+
DECLARE_ASN1_ALLOC_FUNCTIONS(GENERAL_SUBTREE)
|
|
591
|
+
|
|
592
|
+
DECLARE_ASN1_ITEM(NAME_CONSTRAINTS)
|
|
593
|
+
DECLARE_ASN1_ALLOC_FUNCTIONS(NAME_CONSTRAINTS)
|
|
594
|
+
|
|
595
|
+
DECLARE_ASN1_ALLOC_FUNCTIONS(POLICY_CONSTRAINTS)
|
|
596
|
+
DECLARE_ASN1_ITEM(POLICY_CONSTRAINTS)
|
|
597
|
+
|
|
598
|
+
GENERAL_NAME *a2i_GENERAL_NAME(GENERAL_NAME *out,
|
|
599
|
+
const X509V3_EXT_METHOD *method,
|
|
600
|
+
X509V3_CTX *ctx, int gen_type, char *value,
|
|
601
|
+
int is_nc);
|
|
602
|
+
|
|
603
|
+
# ifdef HEADER_CONF_H
|
|
604
|
+
GENERAL_NAME *v2i_GENERAL_NAME(const X509V3_EXT_METHOD *method,
|
|
605
|
+
X509V3_CTX *ctx, CONF_VALUE *cnf);
|
|
606
|
+
GENERAL_NAME *v2i_GENERAL_NAME_ex(GENERAL_NAME *out,
|
|
607
|
+
const X509V3_EXT_METHOD *method,
|
|
608
|
+
X509V3_CTX *ctx, CONF_VALUE *cnf,
|
|
609
|
+
int is_nc);
|
|
610
|
+
void X509V3_conf_free(CONF_VALUE *val);
|
|
611
|
+
|
|
612
|
+
X509_EXTENSION *X509V3_EXT_nconf_nid(CONF *conf, X509V3_CTX *ctx, int ext_nid,
|
|
613
|
+
char *value);
|
|
614
|
+
X509_EXTENSION *X509V3_EXT_nconf(CONF *conf, X509V3_CTX *ctx, char *name,
|
|
615
|
+
char *value);
|
|
616
|
+
int X509V3_EXT_add_nconf_sk(CONF *conf, X509V3_CTX *ctx, char *section,
|
|
617
|
+
STACK_OF(X509_EXTENSION) **sk);
|
|
618
|
+
int X509V3_EXT_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section,
|
|
619
|
+
X509 *cert);
|
|
620
|
+
int X509V3_EXT_REQ_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section,
|
|
621
|
+
X509_REQ *req);
|
|
622
|
+
int X509V3_EXT_CRL_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section,
|
|
623
|
+
X509_CRL *crl);
|
|
624
|
+
|
|
625
|
+
X509_EXTENSION *X509V3_EXT_conf_nid(LHASH_OF(CONF_VALUE) *conf,
|
|
626
|
+
X509V3_CTX *ctx, int ext_nid,
|
|
627
|
+
char *value);
|
|
628
|
+
X509_EXTENSION *X509V3_EXT_conf(LHASH_OF(CONF_VALUE) *conf, X509V3_CTX *ctx,
|
|
629
|
+
char *name, char *value);
|
|
630
|
+
int X509V3_EXT_add_conf(LHASH_OF(CONF_VALUE) *conf, X509V3_CTX *ctx,
|
|
631
|
+
char *section, X509 *cert);
|
|
632
|
+
int X509V3_EXT_REQ_add_conf(LHASH_OF(CONF_VALUE) *conf, X509V3_CTX *ctx,
|
|
633
|
+
char *section, X509_REQ *req);
|
|
634
|
+
int X509V3_EXT_CRL_add_conf(LHASH_OF(CONF_VALUE) *conf, X509V3_CTX *ctx,
|
|
635
|
+
char *section, X509_CRL *crl);
|
|
636
|
+
|
|
637
|
+
int X509V3_add_value_bool_nf(char *name, int asn1_bool,
|
|
638
|
+
STACK_OF(CONF_VALUE) **extlist);
|
|
639
|
+
int X509V3_get_value_bool(CONF_VALUE *value, int *asn1_bool);
|
|
640
|
+
int X509V3_get_value_int(CONF_VALUE *value, ASN1_INTEGER **aint);
|
|
641
|
+
void X509V3_set_nconf(X509V3_CTX *ctx, CONF *conf);
|
|
642
|
+
void X509V3_set_conf_lhash(X509V3_CTX *ctx, LHASH_OF(CONF_VALUE) *lhash);
|
|
643
|
+
# endif
|
|
644
|
+
|
|
645
|
+
char *X509V3_get_string(X509V3_CTX *ctx, char *name, char *section);
|
|
646
|
+
STACK_OF(CONF_VALUE) *X509V3_get_section(X509V3_CTX *ctx, char *section);
|
|
647
|
+
void X509V3_string_free(X509V3_CTX *ctx, char *str);
|
|
648
|
+
void X509V3_section_free(X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *section);
|
|
649
|
+
void X509V3_set_ctx(X509V3_CTX *ctx, X509 *issuer, X509 *subject,
|
|
650
|
+
X509_REQ *req, X509_CRL *crl, int flags);
|
|
651
|
+
|
|
652
|
+
int X509V3_add_value(const char *name, const char *value,
|
|
653
|
+
STACK_OF(CONF_VALUE) **extlist);
|
|
654
|
+
int X509V3_add_value_uchar(const char *name, const unsigned char *value,
|
|
655
|
+
STACK_OF(CONF_VALUE) **extlist);
|
|
656
|
+
int X509V3_add_value_bool(const char *name, int asn1_bool,
|
|
657
|
+
STACK_OF(CONF_VALUE) **extlist);
|
|
658
|
+
int X509V3_add_value_int(const char *name, ASN1_INTEGER *aint,
|
|
659
|
+
STACK_OF(CONF_VALUE) **extlist);
|
|
660
|
+
char *i2s_ASN1_INTEGER(X509V3_EXT_METHOD *meth, ASN1_INTEGER *aint);
|
|
661
|
+
ASN1_INTEGER *s2i_ASN1_INTEGER(X509V3_EXT_METHOD *meth, char *value);
|
|
662
|
+
char *i2s_ASN1_ENUMERATED(X509V3_EXT_METHOD *meth, ASN1_ENUMERATED *aint);
|
|
663
|
+
char *i2s_ASN1_ENUMERATED_TABLE(X509V3_EXT_METHOD *meth,
|
|
664
|
+
ASN1_ENUMERATED *aint);
|
|
665
|
+
int X509V3_EXT_add(X509V3_EXT_METHOD *ext);
|
|
666
|
+
int X509V3_EXT_add_list(X509V3_EXT_METHOD *extlist);
|
|
667
|
+
int X509V3_EXT_add_alias(int nid_to, int nid_from);
|
|
668
|
+
void X509V3_EXT_cleanup(void);
|
|
669
|
+
|
|
670
|
+
const X509V3_EXT_METHOD *X509V3_EXT_get(X509_EXTENSION *ext);
|
|
671
|
+
const X509V3_EXT_METHOD *X509V3_EXT_get_nid(int nid);
|
|
672
|
+
int X509V3_add_standard_extensions(void);
|
|
673
|
+
STACK_OF(CONF_VALUE) *X509V3_parse_list(const char *line);
|
|
674
|
+
void *X509V3_EXT_d2i(X509_EXTENSION *ext);
|
|
675
|
+
void *X509V3_get_d2i(STACK_OF(X509_EXTENSION) *x, int nid, int *crit,
|
|
676
|
+
int *idx);
|
|
677
|
+
int X509V3_EXT_free(int nid, void *ext_data);
|
|
678
|
+
|
|
679
|
+
X509_EXTENSION *X509V3_EXT_i2d(int ext_nid, int crit, void *ext_struc);
|
|
680
|
+
int X509V3_add1_i2d(STACK_OF(X509_EXTENSION) **x, int nid, void *value,
|
|
681
|
+
int crit, unsigned long flags);
|
|
682
|
+
|
|
683
|
+
char *hex_to_string(const unsigned char *buffer, long len);
|
|
684
|
+
unsigned char *string_to_hex(const char *str, long *len);
|
|
685
|
+
int name_cmp(const char *name, const char *cmp);
|
|
686
|
+
|
|
687
|
+
void X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent,
|
|
688
|
+
int ml);
|
|
689
|
+
int X509V3_EXT_print(BIO *out, X509_EXTENSION *ext, unsigned long flag,
|
|
690
|
+
int indent);
|
|
691
|
+
int X509V3_EXT_print_fp(FILE *out, X509_EXTENSION *ext, int flag, int indent);
|
|
692
|
+
|
|
693
|
+
int X509V3_extensions_print(BIO *out, char *title,
|
|
694
|
+
STACK_OF(X509_EXTENSION) *exts,
|
|
695
|
+
unsigned long flag, int indent);
|
|
696
|
+
|
|
697
|
+
int X509_check_ca(X509 *x);
|
|
698
|
+
int X509_check_purpose(X509 *x, int id, int ca);
|
|
699
|
+
int X509_supported_extension(X509_EXTENSION *ex);
|
|
700
|
+
int X509_PURPOSE_set(int *p, int purpose);
|
|
701
|
+
int X509_check_issued(X509 *issuer, X509 *subject);
|
|
702
|
+
int X509_check_akid(X509 *issuer, AUTHORITY_KEYID *akid);
|
|
703
|
+
int X509_PURPOSE_get_count(void);
|
|
704
|
+
X509_PURPOSE *X509_PURPOSE_get0(int idx);
|
|
705
|
+
int X509_PURPOSE_get_by_sname(char *sname);
|
|
706
|
+
int X509_PURPOSE_get_by_id(int id);
|
|
707
|
+
int X509_PURPOSE_add(int id, int trust, int flags,
|
|
708
|
+
int (*ck) (const X509_PURPOSE *, const X509 *, int),
|
|
709
|
+
char *name, char *sname, void *arg);
|
|
710
|
+
char *X509_PURPOSE_get0_name(X509_PURPOSE *xp);
|
|
711
|
+
char *X509_PURPOSE_get0_sname(X509_PURPOSE *xp);
|
|
712
|
+
int X509_PURPOSE_get_trust(X509_PURPOSE *xp);
|
|
713
|
+
void X509_PURPOSE_cleanup(void);
|
|
714
|
+
int X509_PURPOSE_get_id(X509_PURPOSE *);
|
|
715
|
+
|
|
716
|
+
STACK_OF(OPENSSL_STRING) *X509_get1_email(X509 *x);
|
|
717
|
+
STACK_OF(OPENSSL_STRING) *X509_REQ_get1_email(X509_REQ *x);
|
|
718
|
+
void X509_email_free(STACK_OF(OPENSSL_STRING) *sk);
|
|
719
|
+
STACK_OF(OPENSSL_STRING) *X509_get1_ocsp(X509 *x);
|
|
720
|
+
/* Flags for X509_check_* functions */
|
|
721
|
+
|
|
722
|
+
/*
|
|
723
|
+
* Always check subject name for host match even if subject alt names present
|
|
724
|
+
*/
|
|
725
|
+
# define X509_CHECK_FLAG_ALWAYS_CHECK_SUBJECT 0x1
|
|
726
|
+
/* Disable wildcard matching for dnsName fields and common name. */
|
|
727
|
+
# define X509_CHECK_FLAG_NO_WILDCARDS 0x2
|
|
728
|
+
/* Wildcards must not match a partial label. */
|
|
729
|
+
# define X509_CHECK_FLAG_NO_PARTIAL_WILDCARDS 0x4
|
|
730
|
+
/* Allow (non-partial) wildcards to match multiple labels. */
|
|
731
|
+
# define X509_CHECK_FLAG_MULTI_LABEL_WILDCARDS 0x8
|
|
732
|
+
/* Constraint verifier subdomain patterns to match a single labels. */
|
|
733
|
+
# define X509_CHECK_FLAG_SINGLE_LABEL_SUBDOMAINS 0x10
|
|
734
|
+
/*
|
|
735
|
+
* Match reference identifiers starting with "." to any sub-domain.
|
|
736
|
+
* This is a non-public flag, turned on implicitly when the subject
|
|
737
|
+
* reference identity is a DNS name.
|
|
738
|
+
*/
|
|
739
|
+
# define _X509_CHECK_FLAG_DOT_SUBDOMAINS 0x8000
|
|
740
|
+
|
|
741
|
+
int X509_check_host(X509 *x, const char *chk, size_t chklen,
|
|
742
|
+
unsigned int flags, char **peername);
|
|
743
|
+
int X509_check_email(X509 *x, const char *chk, size_t chklen,
|
|
744
|
+
unsigned int flags);
|
|
745
|
+
int X509_check_ip(X509 *x, const unsigned char *chk, size_t chklen,
|
|
746
|
+
unsigned int flags);
|
|
747
|
+
int X509_check_ip_asc(X509 *x, const char *ipasc, unsigned int flags);
|
|
748
|
+
|
|
749
|
+
ASN1_OCTET_STRING *a2i_IPADDRESS(const char *ipasc);
|
|
750
|
+
ASN1_OCTET_STRING *a2i_IPADDRESS_NC(const char *ipasc);
|
|
751
|
+
int a2i_ipadd(unsigned char *ipout, const char *ipasc);
|
|
752
|
+
int X509V3_NAME_from_section(X509_NAME *nm, STACK_OF(CONF_VALUE) *dn_sk,
|
|
753
|
+
unsigned long chtype);
|
|
754
|
+
|
|
755
|
+
void X509_POLICY_NODE_print(BIO *out, X509_POLICY_NODE *node, int indent);
|
|
756
|
+
DECLARE_STACK_OF(X509_POLICY_NODE)
|
|
757
|
+
|
|
758
|
+
# ifndef OPENSSL_NO_RFC3779
|
|
759
|
+
|
|
760
|
+
typedef struct ASRange_st {
|
|
761
|
+
ASN1_INTEGER *min, *max;
|
|
762
|
+
} ASRange;
|
|
763
|
+
|
|
764
|
+
# define ASIdOrRange_id 0
|
|
765
|
+
# define ASIdOrRange_range 1
|
|
766
|
+
|
|
767
|
+
typedef struct ASIdOrRange_st {
|
|
768
|
+
int type;
|
|
769
|
+
union {
|
|
770
|
+
ASN1_INTEGER *id;
|
|
771
|
+
ASRange *range;
|
|
772
|
+
} u;
|
|
773
|
+
} ASIdOrRange;
|
|
774
|
+
|
|
775
|
+
typedef STACK_OF(ASIdOrRange) ASIdOrRanges;
|
|
776
|
+
DECLARE_STACK_OF(ASIdOrRange)
|
|
777
|
+
|
|
778
|
+
# define ASIdentifierChoice_inherit 0
|
|
779
|
+
# define ASIdentifierChoice_asIdsOrRanges 1
|
|
780
|
+
|
|
781
|
+
typedef struct ASIdentifierChoice_st {
|
|
782
|
+
int type;
|
|
783
|
+
union {
|
|
784
|
+
ASN1_NULL *inherit;
|
|
785
|
+
ASIdOrRanges *asIdsOrRanges;
|
|
786
|
+
} u;
|
|
787
|
+
} ASIdentifierChoice;
|
|
788
|
+
|
|
789
|
+
typedef struct ASIdentifiers_st {
|
|
790
|
+
ASIdentifierChoice *asnum, *rdi;
|
|
791
|
+
} ASIdentifiers;
|
|
792
|
+
|
|
793
|
+
DECLARE_ASN1_FUNCTIONS(ASRange)
|
|
794
|
+
DECLARE_ASN1_FUNCTIONS(ASIdOrRange)
|
|
795
|
+
DECLARE_ASN1_FUNCTIONS(ASIdentifierChoice)
|
|
796
|
+
DECLARE_ASN1_FUNCTIONS(ASIdentifiers)
|
|
797
|
+
|
|
798
|
+
typedef struct IPAddressRange_st {
|
|
799
|
+
ASN1_BIT_STRING *min, *max;
|
|
800
|
+
} IPAddressRange;
|
|
801
|
+
|
|
802
|
+
# define IPAddressOrRange_addressPrefix 0
|
|
803
|
+
# define IPAddressOrRange_addressRange 1
|
|
804
|
+
|
|
805
|
+
typedef struct IPAddressOrRange_st {
|
|
806
|
+
int type;
|
|
807
|
+
union {
|
|
808
|
+
ASN1_BIT_STRING *addressPrefix;
|
|
809
|
+
IPAddressRange *addressRange;
|
|
810
|
+
} u;
|
|
811
|
+
} IPAddressOrRange;
|
|
812
|
+
|
|
813
|
+
typedef STACK_OF(IPAddressOrRange) IPAddressOrRanges;
|
|
814
|
+
DECLARE_STACK_OF(IPAddressOrRange)
|
|
815
|
+
|
|
816
|
+
# define IPAddressChoice_inherit 0
|
|
817
|
+
# define IPAddressChoice_addressesOrRanges 1
|
|
818
|
+
|
|
819
|
+
typedef struct IPAddressChoice_st {
|
|
820
|
+
int type;
|
|
821
|
+
union {
|
|
822
|
+
ASN1_NULL *inherit;
|
|
823
|
+
IPAddressOrRanges *addressesOrRanges;
|
|
824
|
+
} u;
|
|
825
|
+
} IPAddressChoice;
|
|
826
|
+
|
|
827
|
+
typedef struct IPAddressFamily_st {
|
|
828
|
+
ASN1_OCTET_STRING *addressFamily;
|
|
829
|
+
IPAddressChoice *ipAddressChoice;
|
|
830
|
+
} IPAddressFamily;
|
|
831
|
+
|
|
832
|
+
typedef STACK_OF(IPAddressFamily) IPAddrBlocks;
|
|
833
|
+
DECLARE_STACK_OF(IPAddressFamily)
|
|
834
|
+
|
|
835
|
+
DECLARE_ASN1_FUNCTIONS(IPAddressRange)
|
|
836
|
+
DECLARE_ASN1_FUNCTIONS(IPAddressOrRange)
|
|
837
|
+
DECLARE_ASN1_FUNCTIONS(IPAddressChoice)
|
|
838
|
+
DECLARE_ASN1_FUNCTIONS(IPAddressFamily)
|
|
839
|
+
|
|
840
|
+
/*
|
|
841
|
+
* API tag for elements of the ASIdentifer SEQUENCE.
|
|
842
|
+
*/
|
|
843
|
+
# define V3_ASID_ASNUM 0
|
|
844
|
+
# define V3_ASID_RDI 1
|
|
845
|
+
|
|
846
|
+
/*
|
|
847
|
+
* AFI values, assigned by IANA. It'd be nice to make the AFI
|
|
848
|
+
* handling code totally generic, but there are too many little things
|
|
849
|
+
* that would need to be defined for other address families for it to
|
|
850
|
+
* be worth the trouble.
|
|
851
|
+
*/
|
|
852
|
+
# define IANA_AFI_IPV4 1
|
|
853
|
+
# define IANA_AFI_IPV6 2
|
|
854
|
+
|
|
855
|
+
/*
|
|
856
|
+
* Utilities to construct and extract values from RFC3779 extensions,
|
|
857
|
+
* since some of the encodings (particularly for IP address prefixes
|
|
858
|
+
* and ranges) are a bit tedious to work with directly.
|
|
859
|
+
*/
|
|
860
|
+
int v3_asid_add_inherit(ASIdentifiers *asid, int which);
|
|
861
|
+
int v3_asid_add_id_or_range(ASIdentifiers *asid, int which,
|
|
862
|
+
ASN1_INTEGER *min, ASN1_INTEGER *max);
|
|
863
|
+
int v3_addr_add_inherit(IPAddrBlocks *addr,
|
|
864
|
+
const unsigned afi, const unsigned *safi);
|
|
865
|
+
int v3_addr_add_prefix(IPAddrBlocks *addr,
|
|
866
|
+
const unsigned afi, const unsigned *safi,
|
|
867
|
+
unsigned char *a, const int prefixlen);
|
|
868
|
+
int v3_addr_add_range(IPAddrBlocks *addr,
|
|
869
|
+
const unsigned afi, const unsigned *safi,
|
|
870
|
+
unsigned char *min, unsigned char *max);
|
|
871
|
+
unsigned v3_addr_get_afi(const IPAddressFamily *f);
|
|
872
|
+
int v3_addr_get_range(IPAddressOrRange *aor, const unsigned afi,
|
|
873
|
+
unsigned char *min, unsigned char *max,
|
|
874
|
+
const int length);
|
|
875
|
+
|
|
876
|
+
/*
|
|
877
|
+
* Canonical forms.
|
|
878
|
+
*/
|
|
879
|
+
int v3_asid_is_canonical(ASIdentifiers *asid);
|
|
880
|
+
int v3_addr_is_canonical(IPAddrBlocks *addr);
|
|
881
|
+
int v3_asid_canonize(ASIdentifiers *asid);
|
|
882
|
+
int v3_addr_canonize(IPAddrBlocks *addr);
|
|
883
|
+
|
|
884
|
+
/*
|
|
885
|
+
* Tests for inheritance and containment.
|
|
886
|
+
*/
|
|
887
|
+
int v3_asid_inherits(ASIdentifiers *asid);
|
|
888
|
+
int v3_addr_inherits(IPAddrBlocks *addr);
|
|
889
|
+
int v3_asid_subset(ASIdentifiers *a, ASIdentifiers *b);
|
|
890
|
+
int v3_addr_subset(IPAddrBlocks *a, IPAddrBlocks *b);
|
|
891
|
+
|
|
892
|
+
/*
|
|
893
|
+
* Check whether RFC 3779 extensions nest properly in chains.
|
|
894
|
+
*/
|
|
895
|
+
int v3_asid_validate_path(X509_STORE_CTX *);
|
|
896
|
+
int v3_addr_validate_path(X509_STORE_CTX *);
|
|
897
|
+
int v3_asid_validate_resource_set(STACK_OF(X509) *chain,
|
|
898
|
+
ASIdentifiers *ext, int allow_inheritance);
|
|
899
|
+
int v3_addr_validate_resource_set(STACK_OF(X509) *chain,
|
|
900
|
+
IPAddrBlocks *ext, int allow_inheritance);
|
|
901
|
+
|
|
902
|
+
# endif /* OPENSSL_NO_RFC3779 */
|
|
903
|
+
|
|
904
|
+
/* BEGIN ERROR CODES */
|
|
905
|
+
/*
|
|
906
|
+
* The following lines are auto generated by the script mkerr.pl. Any changes
|
|
907
|
+
* made after this point may be overwritten when the script is next run.
|
|
908
|
+
*/
|
|
909
|
+
void ERR_load_X509V3_strings(void);
|
|
910
|
+
|
|
911
|
+
/* Error codes for the X509V3 functions. */
|
|
912
|
+
|
|
913
|
+
/* Function codes. */
|
|
914
|
+
# define X509V3_F_A2I_GENERAL_NAME 164
|
|
915
|
+
# define X509V3_F_ASIDENTIFIERCHOICE_CANONIZE 161
|
|
916
|
+
# define X509V3_F_ASIDENTIFIERCHOICE_IS_CANONICAL 162
|
|
917
|
+
# define X509V3_F_COPY_EMAIL 122
|
|
918
|
+
# define X509V3_F_COPY_ISSUER 123
|
|
919
|
+
# define X509V3_F_DO_DIRNAME 144
|
|
920
|
+
# define X509V3_F_DO_EXT_CONF 124
|
|
921
|
+
# define X509V3_F_DO_EXT_I2D 135
|
|
922
|
+
# define X509V3_F_DO_EXT_NCONF 151
|
|
923
|
+
# define X509V3_F_DO_I2V_NAME_CONSTRAINTS 148
|
|
924
|
+
# define X509V3_F_GNAMES_FROM_SECTNAME 156
|
|
925
|
+
# define X509V3_F_HEX_TO_STRING 111
|
|
926
|
+
# define X509V3_F_I2S_ASN1_ENUMERATED 121
|
|
927
|
+
# define X509V3_F_I2S_ASN1_IA5STRING 149
|
|
928
|
+
# define X509V3_F_I2S_ASN1_INTEGER 120
|
|
929
|
+
# define X509V3_F_I2V_AUTHORITY_INFO_ACCESS 138
|
|
930
|
+
# define X509V3_F_NOTICE_SECTION 132
|
|
931
|
+
# define X509V3_F_NREF_NOS 133
|
|
932
|
+
# define X509V3_F_POLICY_SECTION 131
|
|
933
|
+
# define X509V3_F_PROCESS_PCI_VALUE 150
|
|
934
|
+
# define X509V3_F_R2I_CERTPOL 130
|
|
935
|
+
# define X509V3_F_R2I_PCI 155
|
|
936
|
+
# define X509V3_F_S2I_ASN1_IA5STRING 100
|
|
937
|
+
# define X509V3_F_S2I_ASN1_INTEGER 108
|
|
938
|
+
# define X509V3_F_S2I_ASN1_OCTET_STRING 112
|
|
939
|
+
# define X509V3_F_S2I_ASN1_SKEY_ID 114
|
|
940
|
+
# define X509V3_F_S2I_SKEY_ID 115
|
|
941
|
+
# define X509V3_F_SET_DIST_POINT_NAME 158
|
|
942
|
+
# define X509V3_F_STRING_TO_HEX 113
|
|
943
|
+
# define X509V3_F_SXNET_ADD_ID_ASC 125
|
|
944
|
+
# define X509V3_F_SXNET_ADD_ID_INTEGER 126
|
|
945
|
+
# define X509V3_F_SXNET_ADD_ID_ULONG 127
|
|
946
|
+
# define X509V3_F_SXNET_GET_ID_ASC 128
|
|
947
|
+
# define X509V3_F_SXNET_GET_ID_ULONG 129
|
|
948
|
+
# define X509V3_F_V2I_ASIDENTIFIERS 163
|
|
949
|
+
# define X509V3_F_V2I_ASN1_BIT_STRING 101
|
|
950
|
+
# define X509V3_F_V2I_AUTHORITY_INFO_ACCESS 139
|
|
951
|
+
# define X509V3_F_V2I_AUTHORITY_KEYID 119
|
|
952
|
+
# define X509V3_F_V2I_BASIC_CONSTRAINTS 102
|
|
953
|
+
# define X509V3_F_V2I_CRLD 134
|
|
954
|
+
# define X509V3_F_V2I_EXTENDED_KEY_USAGE 103
|
|
955
|
+
# define X509V3_F_V2I_GENERAL_NAMES 118
|
|
956
|
+
# define X509V3_F_V2I_GENERAL_NAME_EX 117
|
|
957
|
+
# define X509V3_F_V2I_IDP 157
|
|
958
|
+
# define X509V3_F_V2I_IPADDRBLOCKS 159
|
|
959
|
+
# define X509V3_F_V2I_ISSUER_ALT 153
|
|
960
|
+
# define X509V3_F_V2I_NAME_CONSTRAINTS 147
|
|
961
|
+
# define X509V3_F_V2I_POLICY_CONSTRAINTS 146
|
|
962
|
+
# define X509V3_F_V2I_POLICY_MAPPINGS 145
|
|
963
|
+
# define X509V3_F_V2I_SUBJECT_ALT 154
|
|
964
|
+
# define X509V3_F_V3_ADDR_VALIDATE_PATH_INTERNAL 160
|
|
965
|
+
# define X509V3_F_V3_GENERIC_EXTENSION 116
|
|
966
|
+
# define X509V3_F_X509V3_ADD1_I2D 140
|
|
967
|
+
# define X509V3_F_X509V3_ADD_VALUE 105
|
|
968
|
+
# define X509V3_F_X509V3_EXT_ADD 104
|
|
969
|
+
# define X509V3_F_X509V3_EXT_ADD_ALIAS 106
|
|
970
|
+
# define X509V3_F_X509V3_EXT_CONF 107
|
|
971
|
+
# define X509V3_F_X509V3_EXT_FREE 165
|
|
972
|
+
# define X509V3_F_X509V3_EXT_I2D 136
|
|
973
|
+
# define X509V3_F_X509V3_EXT_NCONF 152
|
|
974
|
+
# define X509V3_F_X509V3_GET_SECTION 142
|
|
975
|
+
# define X509V3_F_X509V3_GET_STRING 143
|
|
976
|
+
# define X509V3_F_X509V3_GET_VALUE_BOOL 110
|
|
977
|
+
# define X509V3_F_X509V3_PARSE_LIST 109
|
|
978
|
+
# define X509V3_F_X509_PURPOSE_ADD 137
|
|
979
|
+
# define X509V3_F_X509_PURPOSE_SET 141
|
|
980
|
+
|
|
981
|
+
/* Reason codes. */
|
|
982
|
+
# define X509V3_R_BAD_IP_ADDRESS 118
|
|
983
|
+
# define X509V3_R_BAD_OBJECT 119
|
|
984
|
+
# define X509V3_R_BN_DEC2BN_ERROR 100
|
|
985
|
+
# define X509V3_R_BN_TO_ASN1_INTEGER_ERROR 101
|
|
986
|
+
# define X509V3_R_CANNOT_FIND_FREE_FUNCTION 168
|
|
987
|
+
# define X509V3_R_DIRNAME_ERROR 149
|
|
988
|
+
# define X509V3_R_DISTPOINT_ALREADY_SET 160
|
|
989
|
+
# define X509V3_R_DUPLICATE_ZONE_ID 133
|
|
990
|
+
# define X509V3_R_ERROR_CONVERTING_ZONE 131
|
|
991
|
+
# define X509V3_R_ERROR_CREATING_EXTENSION 144
|
|
992
|
+
# define X509V3_R_ERROR_IN_EXTENSION 128
|
|
993
|
+
# define X509V3_R_EXPECTED_A_SECTION_NAME 137
|
|
994
|
+
# define X509V3_R_EXTENSION_EXISTS 145
|
|
995
|
+
# define X509V3_R_EXTENSION_NAME_ERROR 115
|
|
996
|
+
# define X509V3_R_EXTENSION_NOT_FOUND 102
|
|
997
|
+
# define X509V3_R_EXTENSION_SETTING_NOT_SUPPORTED 103
|
|
998
|
+
# define X509V3_R_EXTENSION_VALUE_ERROR 116
|
|
999
|
+
# define X509V3_R_ILLEGAL_EMPTY_EXTENSION 151
|
|
1000
|
+
# define X509V3_R_ILLEGAL_HEX_DIGIT 113
|
|
1001
|
+
# define X509V3_R_INCORRECT_POLICY_SYNTAX_TAG 152
|
|
1002
|
+
# define X509V3_R_INVALID_ASNUMBER 162
|
|
1003
|
+
# define X509V3_R_INVALID_ASRANGE 163
|
|
1004
|
+
# define X509V3_R_INVALID_BOOLEAN_STRING 104
|
|
1005
|
+
# define X509V3_R_INVALID_EXTENSION_STRING 105
|
|
1006
|
+
# define X509V3_R_INVALID_INHERITANCE 165
|
|
1007
|
+
# define X509V3_R_INVALID_IPADDRESS 166
|
|
1008
|
+
# define X509V3_R_INVALID_MULTIPLE_RDNS 161
|
|
1009
|
+
# define X509V3_R_INVALID_NAME 106
|
|
1010
|
+
# define X509V3_R_INVALID_NULL_ARGUMENT 107
|
|
1011
|
+
# define X509V3_R_INVALID_NULL_NAME 108
|
|
1012
|
+
# define X509V3_R_INVALID_NULL_VALUE 109
|
|
1013
|
+
# define X509V3_R_INVALID_NUMBER 140
|
|
1014
|
+
# define X509V3_R_INVALID_NUMBERS 141
|
|
1015
|
+
# define X509V3_R_INVALID_OBJECT_IDENTIFIER 110
|
|
1016
|
+
# define X509V3_R_INVALID_OPTION 138
|
|
1017
|
+
# define X509V3_R_INVALID_POLICY_IDENTIFIER 134
|
|
1018
|
+
# define X509V3_R_INVALID_PROXY_POLICY_SETTING 153
|
|
1019
|
+
# define X509V3_R_INVALID_PURPOSE 146
|
|
1020
|
+
# define X509V3_R_INVALID_SAFI 164
|
|
1021
|
+
# define X509V3_R_INVALID_SECTION 135
|
|
1022
|
+
# define X509V3_R_INVALID_SYNTAX 143
|
|
1023
|
+
# define X509V3_R_ISSUER_DECODE_ERROR 126
|
|
1024
|
+
# define X509V3_R_MISSING_VALUE 124
|
|
1025
|
+
# define X509V3_R_NEED_ORGANIZATION_AND_NUMBERS 142
|
|
1026
|
+
# define X509V3_R_NO_CONFIG_DATABASE 136
|
|
1027
|
+
# define X509V3_R_NO_ISSUER_CERTIFICATE 121
|
|
1028
|
+
# define X509V3_R_NO_ISSUER_DETAILS 127
|
|
1029
|
+
# define X509V3_R_NO_POLICY_IDENTIFIER 139
|
|
1030
|
+
# define X509V3_R_NO_PROXY_CERT_POLICY_LANGUAGE_DEFINED 154
|
|
1031
|
+
# define X509V3_R_NO_PUBLIC_KEY 114
|
|
1032
|
+
# define X509V3_R_NO_SUBJECT_DETAILS 125
|
|
1033
|
+
# define X509V3_R_ODD_NUMBER_OF_DIGITS 112
|
|
1034
|
+
# define X509V3_R_OPERATION_NOT_DEFINED 148
|
|
1035
|
+
# define X509V3_R_OTHERNAME_ERROR 147
|
|
1036
|
+
# define X509V3_R_POLICY_LANGUAGE_ALREADY_DEFINED 155
|
|
1037
|
+
# define X509V3_R_POLICY_PATH_LENGTH 156
|
|
1038
|
+
# define X509V3_R_POLICY_PATH_LENGTH_ALREADY_DEFINED 157
|
|
1039
|
+
# define X509V3_R_POLICY_SYNTAX_NOT_CURRENTLY_SUPPORTED 158
|
|
1040
|
+
# define X509V3_R_POLICY_WHEN_PROXY_LANGUAGE_REQUIRES_NO_POLICY 159
|
|
1041
|
+
# define X509V3_R_SECTION_NOT_FOUND 150
|
|
1042
|
+
# define X509V3_R_UNABLE_TO_GET_ISSUER_DETAILS 122
|
|
1043
|
+
# define X509V3_R_UNABLE_TO_GET_ISSUER_KEYID 123
|
|
1044
|
+
# define X509V3_R_UNKNOWN_BIT_STRING_ARGUMENT 111
|
|
1045
|
+
# define X509V3_R_UNKNOWN_EXTENSION 129
|
|
1046
|
+
# define X509V3_R_UNKNOWN_EXTENSION_NAME 130
|
|
1047
|
+
# define X509V3_R_UNKNOWN_OPTION 120
|
|
1048
|
+
# define X509V3_R_UNSUPPORTED_OPTION 117
|
|
1049
|
+
# define X509V3_R_UNSUPPORTED_TYPE 167
|
|
1050
|
+
# define X509V3_R_USER_TOO_LONG 132
|
|
1051
|
+
|
|
1052
|
+
#ifdef __cplusplus
|
|
1053
|
+
}
|
|
1054
|
+
#endif
|
|
1055
|
+
#endif
|