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,973 @@
|
|
|
1
|
+
/* asn1t.h */
|
|
2
|
+
/*
|
|
3
|
+
* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL project
|
|
4
|
+
* 2000.
|
|
5
|
+
*/
|
|
6
|
+
/* ====================================================================
|
|
7
|
+
* Copyright (c) 2000-2005 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_ASN1T_H
|
|
60
|
+
# define HEADER_ASN1T_H
|
|
61
|
+
|
|
62
|
+
# include <stddef.h>
|
|
63
|
+
# include <openssl/e_os2.h>
|
|
64
|
+
# include <openssl/asn1.h>
|
|
65
|
+
|
|
66
|
+
# ifdef OPENSSL_BUILD_SHLIBCRYPTO
|
|
67
|
+
# undef OPENSSL_EXTERN
|
|
68
|
+
# define OPENSSL_EXTERN OPENSSL_EXPORT
|
|
69
|
+
# endif
|
|
70
|
+
|
|
71
|
+
/* ASN1 template defines, structures and functions */
|
|
72
|
+
|
|
73
|
+
#ifdef __cplusplus
|
|
74
|
+
extern "C" {
|
|
75
|
+
#endif
|
|
76
|
+
|
|
77
|
+
# ifndef OPENSSL_EXPORT_VAR_AS_FUNCTION
|
|
78
|
+
|
|
79
|
+
/* Macro to obtain ASN1_ADB pointer from a type (only used internally) */
|
|
80
|
+
# define ASN1_ADB_ptr(iptr) ((const ASN1_ADB *)(iptr))
|
|
81
|
+
|
|
82
|
+
/* Macros for start and end of ASN1_ITEM definition */
|
|
83
|
+
|
|
84
|
+
# define ASN1_ITEM_start(itname) \
|
|
85
|
+
OPENSSL_GLOBAL const ASN1_ITEM itname##_it = {
|
|
86
|
+
|
|
87
|
+
# define ASN1_ITEM_end(itname) \
|
|
88
|
+
};
|
|
89
|
+
|
|
90
|
+
# else
|
|
91
|
+
|
|
92
|
+
/* Macro to obtain ASN1_ADB pointer from a type (only used internally) */
|
|
93
|
+
# define ASN1_ADB_ptr(iptr) ((const ASN1_ADB *)(iptr()))
|
|
94
|
+
|
|
95
|
+
/* Macros for start and end of ASN1_ITEM definition */
|
|
96
|
+
|
|
97
|
+
# define ASN1_ITEM_start(itname) \
|
|
98
|
+
const ASN1_ITEM * itname##_it(void) \
|
|
99
|
+
{ \
|
|
100
|
+
static const ASN1_ITEM local_it = {
|
|
101
|
+
|
|
102
|
+
# define ASN1_ITEM_end(itname) \
|
|
103
|
+
}; \
|
|
104
|
+
return &local_it; \
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
# endif
|
|
108
|
+
|
|
109
|
+
/* Macros to aid ASN1 template writing */
|
|
110
|
+
|
|
111
|
+
# define ASN1_ITEM_TEMPLATE(tname) \
|
|
112
|
+
static const ASN1_TEMPLATE tname##_item_tt
|
|
113
|
+
|
|
114
|
+
# define ASN1_ITEM_TEMPLATE_END(tname) \
|
|
115
|
+
;\
|
|
116
|
+
ASN1_ITEM_start(tname) \
|
|
117
|
+
ASN1_ITYPE_PRIMITIVE,\
|
|
118
|
+
-1,\
|
|
119
|
+
&tname##_item_tt,\
|
|
120
|
+
0,\
|
|
121
|
+
NULL,\
|
|
122
|
+
0,\
|
|
123
|
+
#tname \
|
|
124
|
+
ASN1_ITEM_end(tname)
|
|
125
|
+
|
|
126
|
+
/* This is a ASN1 type which just embeds a template */
|
|
127
|
+
|
|
128
|
+
/*-
|
|
129
|
+
* This pair helps declare a SEQUENCE. We can do:
|
|
130
|
+
*
|
|
131
|
+
* ASN1_SEQUENCE(stname) = {
|
|
132
|
+
* ... SEQUENCE components ...
|
|
133
|
+
* } ASN1_SEQUENCE_END(stname)
|
|
134
|
+
*
|
|
135
|
+
* This will produce an ASN1_ITEM called stname_it
|
|
136
|
+
* for a structure called stname.
|
|
137
|
+
*
|
|
138
|
+
* If you want the same structure but a different
|
|
139
|
+
* name then use:
|
|
140
|
+
*
|
|
141
|
+
* ASN1_SEQUENCE(itname) = {
|
|
142
|
+
* ... SEQUENCE components ...
|
|
143
|
+
* } ASN1_SEQUENCE_END_name(stname, itname)
|
|
144
|
+
*
|
|
145
|
+
* This will create an item called itname_it using
|
|
146
|
+
* a structure called stname.
|
|
147
|
+
*/
|
|
148
|
+
|
|
149
|
+
# define ASN1_SEQUENCE(tname) \
|
|
150
|
+
static const ASN1_TEMPLATE tname##_seq_tt[]
|
|
151
|
+
|
|
152
|
+
# define ASN1_SEQUENCE_END(stname) ASN1_SEQUENCE_END_name(stname, stname)
|
|
153
|
+
|
|
154
|
+
# define ASN1_SEQUENCE_END_name(stname, tname) \
|
|
155
|
+
;\
|
|
156
|
+
ASN1_ITEM_start(tname) \
|
|
157
|
+
ASN1_ITYPE_SEQUENCE,\
|
|
158
|
+
V_ASN1_SEQUENCE,\
|
|
159
|
+
tname##_seq_tt,\
|
|
160
|
+
sizeof(tname##_seq_tt) / sizeof(ASN1_TEMPLATE),\
|
|
161
|
+
NULL,\
|
|
162
|
+
sizeof(stname),\
|
|
163
|
+
#stname \
|
|
164
|
+
ASN1_ITEM_end(tname)
|
|
165
|
+
|
|
166
|
+
# define ASN1_NDEF_SEQUENCE(tname) \
|
|
167
|
+
ASN1_SEQUENCE(tname)
|
|
168
|
+
|
|
169
|
+
# define ASN1_NDEF_SEQUENCE_cb(tname, cb) \
|
|
170
|
+
ASN1_SEQUENCE_cb(tname, cb)
|
|
171
|
+
|
|
172
|
+
# define ASN1_SEQUENCE_cb(tname, cb) \
|
|
173
|
+
static const ASN1_AUX tname##_aux = {NULL, 0, 0, 0, cb, 0}; \
|
|
174
|
+
ASN1_SEQUENCE(tname)
|
|
175
|
+
|
|
176
|
+
# define ASN1_BROKEN_SEQUENCE(tname) \
|
|
177
|
+
static const ASN1_AUX tname##_aux = {NULL, ASN1_AFLG_BROKEN, 0, 0, 0, 0}; \
|
|
178
|
+
ASN1_SEQUENCE(tname)
|
|
179
|
+
|
|
180
|
+
# define ASN1_SEQUENCE_ref(tname, cb, lck) \
|
|
181
|
+
static const ASN1_AUX tname##_aux = {NULL, ASN1_AFLG_REFCOUNT, offsetof(tname, references), lck, cb, 0}; \
|
|
182
|
+
ASN1_SEQUENCE(tname)
|
|
183
|
+
|
|
184
|
+
# define ASN1_SEQUENCE_enc(tname, enc, cb) \
|
|
185
|
+
static const ASN1_AUX tname##_aux = {NULL, ASN1_AFLG_ENCODING, 0, 0, cb, offsetof(tname, enc)}; \
|
|
186
|
+
ASN1_SEQUENCE(tname)
|
|
187
|
+
|
|
188
|
+
# define ASN1_NDEF_SEQUENCE_END(tname) \
|
|
189
|
+
;\
|
|
190
|
+
ASN1_ITEM_start(tname) \
|
|
191
|
+
ASN1_ITYPE_NDEF_SEQUENCE,\
|
|
192
|
+
V_ASN1_SEQUENCE,\
|
|
193
|
+
tname##_seq_tt,\
|
|
194
|
+
sizeof(tname##_seq_tt) / sizeof(ASN1_TEMPLATE),\
|
|
195
|
+
NULL,\
|
|
196
|
+
sizeof(tname),\
|
|
197
|
+
#tname \
|
|
198
|
+
ASN1_ITEM_end(tname)
|
|
199
|
+
|
|
200
|
+
# define ASN1_BROKEN_SEQUENCE_END(stname) ASN1_SEQUENCE_END_ref(stname, stname)
|
|
201
|
+
|
|
202
|
+
# define ASN1_SEQUENCE_END_enc(stname, tname) ASN1_SEQUENCE_END_ref(stname, tname)
|
|
203
|
+
|
|
204
|
+
# define ASN1_SEQUENCE_END_cb(stname, tname) ASN1_SEQUENCE_END_ref(stname, tname)
|
|
205
|
+
|
|
206
|
+
# define ASN1_SEQUENCE_END_ref(stname, tname) \
|
|
207
|
+
;\
|
|
208
|
+
ASN1_ITEM_start(tname) \
|
|
209
|
+
ASN1_ITYPE_SEQUENCE,\
|
|
210
|
+
V_ASN1_SEQUENCE,\
|
|
211
|
+
tname##_seq_tt,\
|
|
212
|
+
sizeof(tname##_seq_tt) / sizeof(ASN1_TEMPLATE),\
|
|
213
|
+
&tname##_aux,\
|
|
214
|
+
sizeof(stname),\
|
|
215
|
+
#stname \
|
|
216
|
+
ASN1_ITEM_end(tname)
|
|
217
|
+
|
|
218
|
+
# define ASN1_NDEF_SEQUENCE_END_cb(stname, tname) \
|
|
219
|
+
;\
|
|
220
|
+
ASN1_ITEM_start(tname) \
|
|
221
|
+
ASN1_ITYPE_NDEF_SEQUENCE,\
|
|
222
|
+
V_ASN1_SEQUENCE,\
|
|
223
|
+
tname##_seq_tt,\
|
|
224
|
+
sizeof(tname##_seq_tt) / sizeof(ASN1_TEMPLATE),\
|
|
225
|
+
&tname##_aux,\
|
|
226
|
+
sizeof(stname),\
|
|
227
|
+
#stname \
|
|
228
|
+
ASN1_ITEM_end(tname)
|
|
229
|
+
|
|
230
|
+
/*-
|
|
231
|
+
* This pair helps declare a CHOICE type. We can do:
|
|
232
|
+
*
|
|
233
|
+
* ASN1_CHOICE(chname) = {
|
|
234
|
+
* ... CHOICE options ...
|
|
235
|
+
* ASN1_CHOICE_END(chname)
|
|
236
|
+
*
|
|
237
|
+
* This will produce an ASN1_ITEM called chname_it
|
|
238
|
+
* for a structure called chname. The structure
|
|
239
|
+
* definition must look like this:
|
|
240
|
+
* typedef struct {
|
|
241
|
+
* int type;
|
|
242
|
+
* union {
|
|
243
|
+
* ASN1_SOMETHING *opt1;
|
|
244
|
+
* ASN1_SOMEOTHER *opt2;
|
|
245
|
+
* } value;
|
|
246
|
+
* } chname;
|
|
247
|
+
*
|
|
248
|
+
* the name of the selector must be 'type'.
|
|
249
|
+
* to use an alternative selector name use the
|
|
250
|
+
* ASN1_CHOICE_END_selector() version.
|
|
251
|
+
*/
|
|
252
|
+
|
|
253
|
+
# define ASN1_CHOICE(tname) \
|
|
254
|
+
static const ASN1_TEMPLATE tname##_ch_tt[]
|
|
255
|
+
|
|
256
|
+
# define ASN1_CHOICE_cb(tname, cb) \
|
|
257
|
+
static const ASN1_AUX tname##_aux = {NULL, 0, 0, 0, cb, 0}; \
|
|
258
|
+
ASN1_CHOICE(tname)
|
|
259
|
+
|
|
260
|
+
# define ASN1_CHOICE_END(stname) ASN1_CHOICE_END_name(stname, stname)
|
|
261
|
+
|
|
262
|
+
# define ASN1_CHOICE_END_name(stname, tname) ASN1_CHOICE_END_selector(stname, tname, type)
|
|
263
|
+
|
|
264
|
+
# define ASN1_CHOICE_END_selector(stname, tname, selname) \
|
|
265
|
+
;\
|
|
266
|
+
ASN1_ITEM_start(tname) \
|
|
267
|
+
ASN1_ITYPE_CHOICE,\
|
|
268
|
+
offsetof(stname,selname) ,\
|
|
269
|
+
tname##_ch_tt,\
|
|
270
|
+
sizeof(tname##_ch_tt) / sizeof(ASN1_TEMPLATE),\
|
|
271
|
+
NULL,\
|
|
272
|
+
sizeof(stname),\
|
|
273
|
+
#stname \
|
|
274
|
+
ASN1_ITEM_end(tname)
|
|
275
|
+
|
|
276
|
+
# define ASN1_CHOICE_END_cb(stname, tname, selname) \
|
|
277
|
+
;\
|
|
278
|
+
ASN1_ITEM_start(tname) \
|
|
279
|
+
ASN1_ITYPE_CHOICE,\
|
|
280
|
+
offsetof(stname,selname) ,\
|
|
281
|
+
tname##_ch_tt,\
|
|
282
|
+
sizeof(tname##_ch_tt) / sizeof(ASN1_TEMPLATE),\
|
|
283
|
+
&tname##_aux,\
|
|
284
|
+
sizeof(stname),\
|
|
285
|
+
#stname \
|
|
286
|
+
ASN1_ITEM_end(tname)
|
|
287
|
+
|
|
288
|
+
/* This helps with the template wrapper form of ASN1_ITEM */
|
|
289
|
+
|
|
290
|
+
# define ASN1_EX_TEMPLATE_TYPE(flags, tag, name, type) { \
|
|
291
|
+
(flags), (tag), 0,\
|
|
292
|
+
#name, ASN1_ITEM_ref(type) }
|
|
293
|
+
|
|
294
|
+
/* These help with SEQUENCE or CHOICE components */
|
|
295
|
+
|
|
296
|
+
/* used to declare other types */
|
|
297
|
+
|
|
298
|
+
# define ASN1_EX_TYPE(flags, tag, stname, field, type) { \
|
|
299
|
+
(flags), (tag), offsetof(stname, field),\
|
|
300
|
+
#field, ASN1_ITEM_ref(type) }
|
|
301
|
+
|
|
302
|
+
/* used when the structure is combined with the parent */
|
|
303
|
+
|
|
304
|
+
# define ASN1_EX_COMBINE(flags, tag, type) { \
|
|
305
|
+
(flags)|ASN1_TFLG_COMBINE, (tag), 0, NULL, ASN1_ITEM_ref(type) }
|
|
306
|
+
|
|
307
|
+
/* implicit and explicit helper macros */
|
|
308
|
+
|
|
309
|
+
# define ASN1_IMP_EX(stname, field, type, tag, ex) \
|
|
310
|
+
ASN1_EX_TYPE(ASN1_TFLG_IMPLICIT | ex, tag, stname, field, type)
|
|
311
|
+
|
|
312
|
+
# define ASN1_EXP_EX(stname, field, type, tag, ex) \
|
|
313
|
+
ASN1_EX_TYPE(ASN1_TFLG_EXPLICIT | ex, tag, stname, field, type)
|
|
314
|
+
|
|
315
|
+
/* Any defined by macros: the field used is in the table itself */
|
|
316
|
+
|
|
317
|
+
# ifndef OPENSSL_EXPORT_VAR_AS_FUNCTION
|
|
318
|
+
# define ASN1_ADB_OBJECT(tblname) { ASN1_TFLG_ADB_OID, -1, 0, #tblname, (const ASN1_ITEM *)&(tblname##_adb) }
|
|
319
|
+
# define ASN1_ADB_INTEGER(tblname) { ASN1_TFLG_ADB_INT, -1, 0, #tblname, (const ASN1_ITEM *)&(tblname##_adb) }
|
|
320
|
+
# else
|
|
321
|
+
# define ASN1_ADB_OBJECT(tblname) { ASN1_TFLG_ADB_OID, -1, 0, #tblname, tblname##_adb }
|
|
322
|
+
# define ASN1_ADB_INTEGER(tblname) { ASN1_TFLG_ADB_INT, -1, 0, #tblname, tblname##_adb }
|
|
323
|
+
# endif
|
|
324
|
+
/* Plain simple type */
|
|
325
|
+
# define ASN1_SIMPLE(stname, field, type) ASN1_EX_TYPE(0,0, stname, field, type)
|
|
326
|
+
|
|
327
|
+
/* OPTIONAL simple type */
|
|
328
|
+
# define ASN1_OPT(stname, field, type) ASN1_EX_TYPE(ASN1_TFLG_OPTIONAL, 0, stname, field, type)
|
|
329
|
+
|
|
330
|
+
/* IMPLICIT tagged simple type */
|
|
331
|
+
# define ASN1_IMP(stname, field, type, tag) ASN1_IMP_EX(stname, field, type, tag, 0)
|
|
332
|
+
|
|
333
|
+
/* IMPLICIT tagged OPTIONAL simple type */
|
|
334
|
+
# define ASN1_IMP_OPT(stname, field, type, tag) ASN1_IMP_EX(stname, field, type, tag, ASN1_TFLG_OPTIONAL)
|
|
335
|
+
|
|
336
|
+
/* Same as above but EXPLICIT */
|
|
337
|
+
|
|
338
|
+
# define ASN1_EXP(stname, field, type, tag) ASN1_EXP_EX(stname, field, type, tag, 0)
|
|
339
|
+
# define ASN1_EXP_OPT(stname, field, type, tag) ASN1_EXP_EX(stname, field, type, tag, ASN1_TFLG_OPTIONAL)
|
|
340
|
+
|
|
341
|
+
/* SEQUENCE OF type */
|
|
342
|
+
# define ASN1_SEQUENCE_OF(stname, field, type) \
|
|
343
|
+
ASN1_EX_TYPE(ASN1_TFLG_SEQUENCE_OF, 0, stname, field, type)
|
|
344
|
+
|
|
345
|
+
/* OPTIONAL SEQUENCE OF */
|
|
346
|
+
# define ASN1_SEQUENCE_OF_OPT(stname, field, type) \
|
|
347
|
+
ASN1_EX_TYPE(ASN1_TFLG_SEQUENCE_OF|ASN1_TFLG_OPTIONAL, 0, stname, field, type)
|
|
348
|
+
|
|
349
|
+
/* Same as above but for SET OF */
|
|
350
|
+
|
|
351
|
+
# define ASN1_SET_OF(stname, field, type) \
|
|
352
|
+
ASN1_EX_TYPE(ASN1_TFLG_SET_OF, 0, stname, field, type)
|
|
353
|
+
|
|
354
|
+
# define ASN1_SET_OF_OPT(stname, field, type) \
|
|
355
|
+
ASN1_EX_TYPE(ASN1_TFLG_SET_OF|ASN1_TFLG_OPTIONAL, 0, stname, field, type)
|
|
356
|
+
|
|
357
|
+
/* Finally compound types of SEQUENCE, SET, IMPLICIT, EXPLICIT and OPTIONAL */
|
|
358
|
+
|
|
359
|
+
# define ASN1_IMP_SET_OF(stname, field, type, tag) \
|
|
360
|
+
ASN1_IMP_EX(stname, field, type, tag, ASN1_TFLG_SET_OF)
|
|
361
|
+
|
|
362
|
+
# define ASN1_EXP_SET_OF(stname, field, type, tag) \
|
|
363
|
+
ASN1_EXP_EX(stname, field, type, tag, ASN1_TFLG_SET_OF)
|
|
364
|
+
|
|
365
|
+
# define ASN1_IMP_SET_OF_OPT(stname, field, type, tag) \
|
|
366
|
+
ASN1_IMP_EX(stname, field, type, tag, ASN1_TFLG_SET_OF|ASN1_TFLG_OPTIONAL)
|
|
367
|
+
|
|
368
|
+
# define ASN1_EXP_SET_OF_OPT(stname, field, type, tag) \
|
|
369
|
+
ASN1_EXP_EX(stname, field, type, tag, ASN1_TFLG_SET_OF|ASN1_TFLG_OPTIONAL)
|
|
370
|
+
|
|
371
|
+
# define ASN1_IMP_SEQUENCE_OF(stname, field, type, tag) \
|
|
372
|
+
ASN1_IMP_EX(stname, field, type, tag, ASN1_TFLG_SEQUENCE_OF)
|
|
373
|
+
|
|
374
|
+
# define ASN1_IMP_SEQUENCE_OF_OPT(stname, field, type, tag) \
|
|
375
|
+
ASN1_IMP_EX(stname, field, type, tag, ASN1_TFLG_SEQUENCE_OF|ASN1_TFLG_OPTIONAL)
|
|
376
|
+
|
|
377
|
+
# define ASN1_EXP_SEQUENCE_OF(stname, field, type, tag) \
|
|
378
|
+
ASN1_EXP_EX(stname, field, type, tag, ASN1_TFLG_SEQUENCE_OF)
|
|
379
|
+
|
|
380
|
+
# define ASN1_EXP_SEQUENCE_OF_OPT(stname, field, type, tag) \
|
|
381
|
+
ASN1_EXP_EX(stname, field, type, tag, ASN1_TFLG_SEQUENCE_OF|ASN1_TFLG_OPTIONAL)
|
|
382
|
+
|
|
383
|
+
/* EXPLICIT using indefinite length constructed form */
|
|
384
|
+
# define ASN1_NDEF_EXP(stname, field, type, tag) \
|
|
385
|
+
ASN1_EXP_EX(stname, field, type, tag, ASN1_TFLG_NDEF)
|
|
386
|
+
|
|
387
|
+
/* EXPLICIT OPTIONAL using indefinite length constructed form */
|
|
388
|
+
# define ASN1_NDEF_EXP_OPT(stname, field, type, tag) \
|
|
389
|
+
ASN1_EXP_EX(stname, field, type, tag, ASN1_TFLG_OPTIONAL|ASN1_TFLG_NDEF)
|
|
390
|
+
|
|
391
|
+
/* Macros for the ASN1_ADB structure */
|
|
392
|
+
|
|
393
|
+
# define ASN1_ADB(name) \
|
|
394
|
+
static const ASN1_ADB_TABLE name##_adbtbl[]
|
|
395
|
+
|
|
396
|
+
# ifndef OPENSSL_EXPORT_VAR_AS_FUNCTION
|
|
397
|
+
|
|
398
|
+
# define ASN1_ADB_END(name, flags, field, app_table, def, none) \
|
|
399
|
+
;\
|
|
400
|
+
static const ASN1_ADB name##_adb = {\
|
|
401
|
+
flags,\
|
|
402
|
+
offsetof(name, field),\
|
|
403
|
+
app_table,\
|
|
404
|
+
name##_adbtbl,\
|
|
405
|
+
sizeof(name##_adbtbl) / sizeof(ASN1_ADB_TABLE),\
|
|
406
|
+
def,\
|
|
407
|
+
none\
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
# else
|
|
411
|
+
|
|
412
|
+
# define ASN1_ADB_END(name, flags, field, app_table, def, none) \
|
|
413
|
+
;\
|
|
414
|
+
static const ASN1_ITEM *name##_adb(void) \
|
|
415
|
+
{ \
|
|
416
|
+
static const ASN1_ADB internal_adb = \
|
|
417
|
+
{\
|
|
418
|
+
flags,\
|
|
419
|
+
offsetof(name, field),\
|
|
420
|
+
app_table,\
|
|
421
|
+
name##_adbtbl,\
|
|
422
|
+
sizeof(name##_adbtbl) / sizeof(ASN1_ADB_TABLE),\
|
|
423
|
+
def,\
|
|
424
|
+
none\
|
|
425
|
+
}; \
|
|
426
|
+
return (const ASN1_ITEM *) &internal_adb; \
|
|
427
|
+
} \
|
|
428
|
+
void dummy_function(void)
|
|
429
|
+
|
|
430
|
+
# endif
|
|
431
|
+
|
|
432
|
+
# define ADB_ENTRY(val, template) {val, template}
|
|
433
|
+
|
|
434
|
+
# define ASN1_ADB_TEMPLATE(name) \
|
|
435
|
+
static const ASN1_TEMPLATE name##_tt
|
|
436
|
+
|
|
437
|
+
/*
|
|
438
|
+
* This is the ASN1 template structure that defines a wrapper round the
|
|
439
|
+
* actual type. It determines the actual position of the field in the value
|
|
440
|
+
* structure, various flags such as OPTIONAL and the field name.
|
|
441
|
+
*/
|
|
442
|
+
|
|
443
|
+
struct ASN1_TEMPLATE_st {
|
|
444
|
+
unsigned long flags; /* Various flags */
|
|
445
|
+
long tag; /* tag, not used if no tagging */
|
|
446
|
+
unsigned long offset; /* Offset of this field in structure */
|
|
447
|
+
# ifndef NO_ASN1_FIELD_NAMES
|
|
448
|
+
const char *field_name; /* Field name */
|
|
449
|
+
# endif
|
|
450
|
+
ASN1_ITEM_EXP *item; /* Relevant ASN1_ITEM or ASN1_ADB */
|
|
451
|
+
};
|
|
452
|
+
|
|
453
|
+
/* Macro to extract ASN1_ITEM and ASN1_ADB pointer from ASN1_TEMPLATE */
|
|
454
|
+
|
|
455
|
+
# define ASN1_TEMPLATE_item(t) (t->item_ptr)
|
|
456
|
+
# define ASN1_TEMPLATE_adb(t) (t->item_ptr)
|
|
457
|
+
|
|
458
|
+
typedef struct ASN1_ADB_TABLE_st ASN1_ADB_TABLE;
|
|
459
|
+
typedef struct ASN1_ADB_st ASN1_ADB;
|
|
460
|
+
|
|
461
|
+
struct ASN1_ADB_st {
|
|
462
|
+
unsigned long flags; /* Various flags */
|
|
463
|
+
unsigned long offset; /* Offset of selector field */
|
|
464
|
+
STACK_OF(ASN1_ADB_TABLE) **app_items; /* Application defined items */
|
|
465
|
+
const ASN1_ADB_TABLE *tbl; /* Table of possible types */
|
|
466
|
+
long tblcount; /* Number of entries in tbl */
|
|
467
|
+
const ASN1_TEMPLATE *default_tt; /* Type to use if no match */
|
|
468
|
+
const ASN1_TEMPLATE *null_tt; /* Type to use if selector is NULL */
|
|
469
|
+
};
|
|
470
|
+
|
|
471
|
+
struct ASN1_ADB_TABLE_st {
|
|
472
|
+
long value; /* NID for an object or value for an int */
|
|
473
|
+
const ASN1_TEMPLATE tt; /* item for this value */
|
|
474
|
+
};
|
|
475
|
+
|
|
476
|
+
/* template flags */
|
|
477
|
+
|
|
478
|
+
/* Field is optional */
|
|
479
|
+
# define ASN1_TFLG_OPTIONAL (0x1)
|
|
480
|
+
|
|
481
|
+
/* Field is a SET OF */
|
|
482
|
+
# define ASN1_TFLG_SET_OF (0x1 << 1)
|
|
483
|
+
|
|
484
|
+
/* Field is a SEQUENCE OF */
|
|
485
|
+
# define ASN1_TFLG_SEQUENCE_OF (0x2 << 1)
|
|
486
|
+
|
|
487
|
+
/*
|
|
488
|
+
* Special case: this refers to a SET OF that will be sorted into DER order
|
|
489
|
+
* when encoded *and* the corresponding STACK will be modified to match the
|
|
490
|
+
* new order.
|
|
491
|
+
*/
|
|
492
|
+
# define ASN1_TFLG_SET_ORDER (0x3 << 1)
|
|
493
|
+
|
|
494
|
+
/* Mask for SET OF or SEQUENCE OF */
|
|
495
|
+
# define ASN1_TFLG_SK_MASK (0x3 << 1)
|
|
496
|
+
|
|
497
|
+
/*
|
|
498
|
+
* These flags mean the tag should be taken from the tag field. If EXPLICIT
|
|
499
|
+
* then the underlying type is used for the inner tag.
|
|
500
|
+
*/
|
|
501
|
+
|
|
502
|
+
/* IMPLICIT tagging */
|
|
503
|
+
# define ASN1_TFLG_IMPTAG (0x1 << 3)
|
|
504
|
+
|
|
505
|
+
/* EXPLICIT tagging, inner tag from underlying type */
|
|
506
|
+
# define ASN1_TFLG_EXPTAG (0x2 << 3)
|
|
507
|
+
|
|
508
|
+
# define ASN1_TFLG_TAG_MASK (0x3 << 3)
|
|
509
|
+
|
|
510
|
+
/* context specific IMPLICIT */
|
|
511
|
+
# define ASN1_TFLG_IMPLICIT ASN1_TFLG_IMPTAG|ASN1_TFLG_CONTEXT
|
|
512
|
+
|
|
513
|
+
/* context specific EXPLICIT */
|
|
514
|
+
# define ASN1_TFLG_EXPLICIT ASN1_TFLG_EXPTAG|ASN1_TFLG_CONTEXT
|
|
515
|
+
|
|
516
|
+
/*
|
|
517
|
+
* If tagging is in force these determine the type of tag to use. Otherwise
|
|
518
|
+
* the tag is determined by the underlying type. These values reflect the
|
|
519
|
+
* actual octet format.
|
|
520
|
+
*/
|
|
521
|
+
|
|
522
|
+
/* Universal tag */
|
|
523
|
+
# define ASN1_TFLG_UNIVERSAL (0x0<<6)
|
|
524
|
+
/* Application tag */
|
|
525
|
+
# define ASN1_TFLG_APPLICATION (0x1<<6)
|
|
526
|
+
/* Context specific tag */
|
|
527
|
+
# define ASN1_TFLG_CONTEXT (0x2<<6)
|
|
528
|
+
/* Private tag */
|
|
529
|
+
# define ASN1_TFLG_PRIVATE (0x3<<6)
|
|
530
|
+
|
|
531
|
+
# define ASN1_TFLG_TAG_CLASS (0x3<<6)
|
|
532
|
+
|
|
533
|
+
/*
|
|
534
|
+
* These are for ANY DEFINED BY type. In this case the 'item' field points to
|
|
535
|
+
* an ASN1_ADB structure which contains a table of values to decode the
|
|
536
|
+
* relevant type
|
|
537
|
+
*/
|
|
538
|
+
|
|
539
|
+
# define ASN1_TFLG_ADB_MASK (0x3<<8)
|
|
540
|
+
|
|
541
|
+
# define ASN1_TFLG_ADB_OID (0x1<<8)
|
|
542
|
+
|
|
543
|
+
# define ASN1_TFLG_ADB_INT (0x1<<9)
|
|
544
|
+
|
|
545
|
+
/*
|
|
546
|
+
* This flag means a parent structure is passed instead of the field: this is
|
|
547
|
+
* useful is a SEQUENCE is being combined with a CHOICE for example. Since
|
|
548
|
+
* this means the structure and item name will differ we need to use the
|
|
549
|
+
* ASN1_CHOICE_END_name() macro for example.
|
|
550
|
+
*/
|
|
551
|
+
|
|
552
|
+
# define ASN1_TFLG_COMBINE (0x1<<10)
|
|
553
|
+
|
|
554
|
+
/*
|
|
555
|
+
* This flag when present in a SEQUENCE OF, SET OF or EXPLICIT causes
|
|
556
|
+
* indefinite length constructed encoding to be used if required.
|
|
557
|
+
*/
|
|
558
|
+
|
|
559
|
+
# define ASN1_TFLG_NDEF (0x1<<11)
|
|
560
|
+
|
|
561
|
+
/* This is the actual ASN1 item itself */
|
|
562
|
+
|
|
563
|
+
struct ASN1_ITEM_st {
|
|
564
|
+
char itype; /* The item type, primitive, SEQUENCE, CHOICE
|
|
565
|
+
* or extern */
|
|
566
|
+
long utype; /* underlying type */
|
|
567
|
+
const ASN1_TEMPLATE *templates; /* If SEQUENCE or CHOICE this contains
|
|
568
|
+
* the contents */
|
|
569
|
+
long tcount; /* Number of templates if SEQUENCE or CHOICE */
|
|
570
|
+
const void *funcs; /* functions that handle this type */
|
|
571
|
+
long size; /* Structure size (usually) */
|
|
572
|
+
# ifndef NO_ASN1_FIELD_NAMES
|
|
573
|
+
const char *sname; /* Structure name */
|
|
574
|
+
# endif
|
|
575
|
+
};
|
|
576
|
+
|
|
577
|
+
/*-
|
|
578
|
+
* These are values for the itype field and
|
|
579
|
+
* determine how the type is interpreted.
|
|
580
|
+
*
|
|
581
|
+
* For PRIMITIVE types the underlying type
|
|
582
|
+
* determines the behaviour if items is NULL.
|
|
583
|
+
*
|
|
584
|
+
* Otherwise templates must contain a single
|
|
585
|
+
* template and the type is treated in the
|
|
586
|
+
* same way as the type specified in the template.
|
|
587
|
+
*
|
|
588
|
+
* For SEQUENCE types the templates field points
|
|
589
|
+
* to the members, the size field is the
|
|
590
|
+
* structure size.
|
|
591
|
+
*
|
|
592
|
+
* For CHOICE types the templates field points
|
|
593
|
+
* to each possible member (typically a union)
|
|
594
|
+
* and the 'size' field is the offset of the
|
|
595
|
+
* selector.
|
|
596
|
+
*
|
|
597
|
+
* The 'funcs' field is used for application
|
|
598
|
+
* specific functions.
|
|
599
|
+
*
|
|
600
|
+
* For COMPAT types the funcs field gives a
|
|
601
|
+
* set of functions that handle this type, this
|
|
602
|
+
* supports the old d2i, i2d convention.
|
|
603
|
+
*
|
|
604
|
+
* The EXTERN type uses a new style d2i/i2d.
|
|
605
|
+
* The new style should be used where possible
|
|
606
|
+
* because it avoids things like the d2i IMPLICIT
|
|
607
|
+
* hack.
|
|
608
|
+
*
|
|
609
|
+
* MSTRING is a multiple string type, it is used
|
|
610
|
+
* for a CHOICE of character strings where the
|
|
611
|
+
* actual strings all occupy an ASN1_STRING
|
|
612
|
+
* structure. In this case the 'utype' field
|
|
613
|
+
* has a special meaning, it is used as a mask
|
|
614
|
+
* of acceptable types using the B_ASN1 constants.
|
|
615
|
+
*
|
|
616
|
+
* NDEF_SEQUENCE is the same as SEQUENCE except
|
|
617
|
+
* that it will use indefinite length constructed
|
|
618
|
+
* encoding if requested.
|
|
619
|
+
*
|
|
620
|
+
*/
|
|
621
|
+
|
|
622
|
+
# define ASN1_ITYPE_PRIMITIVE 0x0
|
|
623
|
+
|
|
624
|
+
# define ASN1_ITYPE_SEQUENCE 0x1
|
|
625
|
+
|
|
626
|
+
# define ASN1_ITYPE_CHOICE 0x2
|
|
627
|
+
|
|
628
|
+
# define ASN1_ITYPE_COMPAT 0x3
|
|
629
|
+
|
|
630
|
+
# define ASN1_ITYPE_EXTERN 0x4
|
|
631
|
+
|
|
632
|
+
# define ASN1_ITYPE_MSTRING 0x5
|
|
633
|
+
|
|
634
|
+
# define ASN1_ITYPE_NDEF_SEQUENCE 0x6
|
|
635
|
+
|
|
636
|
+
/*
|
|
637
|
+
* Cache for ASN1 tag and length, so we don't keep re-reading it for things
|
|
638
|
+
* like CHOICE
|
|
639
|
+
*/
|
|
640
|
+
|
|
641
|
+
struct ASN1_TLC_st {
|
|
642
|
+
char valid; /* Values below are valid */
|
|
643
|
+
int ret; /* return value */
|
|
644
|
+
long plen; /* length */
|
|
645
|
+
int ptag; /* class value */
|
|
646
|
+
int pclass; /* class value */
|
|
647
|
+
int hdrlen; /* header length */
|
|
648
|
+
};
|
|
649
|
+
|
|
650
|
+
/* Typedefs for ASN1 function pointers */
|
|
651
|
+
|
|
652
|
+
typedef ASN1_VALUE *ASN1_new_func(void);
|
|
653
|
+
typedef void ASN1_free_func(ASN1_VALUE *a);
|
|
654
|
+
typedef ASN1_VALUE *ASN1_d2i_func(ASN1_VALUE **a, const unsigned char **in,
|
|
655
|
+
long length);
|
|
656
|
+
typedef int ASN1_i2d_func(ASN1_VALUE *a, unsigned char **in);
|
|
657
|
+
|
|
658
|
+
typedef int ASN1_ex_d2i(ASN1_VALUE **pval, const unsigned char **in, long len,
|
|
659
|
+
const ASN1_ITEM *it, int tag, int aclass, char opt,
|
|
660
|
+
ASN1_TLC *ctx);
|
|
661
|
+
|
|
662
|
+
typedef int ASN1_ex_i2d(ASN1_VALUE **pval, unsigned char **out,
|
|
663
|
+
const ASN1_ITEM *it, int tag, int aclass);
|
|
664
|
+
typedef int ASN1_ex_new_func(ASN1_VALUE **pval, const ASN1_ITEM *it);
|
|
665
|
+
typedef void ASN1_ex_free_func(ASN1_VALUE **pval, const ASN1_ITEM *it);
|
|
666
|
+
|
|
667
|
+
typedef int ASN1_ex_print_func(BIO *out, ASN1_VALUE **pval,
|
|
668
|
+
int indent, const char *fname,
|
|
669
|
+
const ASN1_PCTX *pctx);
|
|
670
|
+
|
|
671
|
+
typedef int ASN1_primitive_i2c(ASN1_VALUE **pval, unsigned char *cont,
|
|
672
|
+
int *putype, const ASN1_ITEM *it);
|
|
673
|
+
typedef int ASN1_primitive_c2i(ASN1_VALUE **pval, const unsigned char *cont,
|
|
674
|
+
int len, int utype, char *free_cont,
|
|
675
|
+
const ASN1_ITEM *it);
|
|
676
|
+
typedef int ASN1_primitive_print(BIO *out, ASN1_VALUE **pval,
|
|
677
|
+
const ASN1_ITEM *it, int indent,
|
|
678
|
+
const ASN1_PCTX *pctx);
|
|
679
|
+
|
|
680
|
+
typedef struct ASN1_COMPAT_FUNCS_st {
|
|
681
|
+
ASN1_new_func *asn1_new;
|
|
682
|
+
ASN1_free_func *asn1_free;
|
|
683
|
+
ASN1_d2i_func *asn1_d2i;
|
|
684
|
+
ASN1_i2d_func *asn1_i2d;
|
|
685
|
+
} ASN1_COMPAT_FUNCS;
|
|
686
|
+
|
|
687
|
+
typedef struct ASN1_EXTERN_FUNCS_st {
|
|
688
|
+
void *app_data;
|
|
689
|
+
ASN1_ex_new_func *asn1_ex_new;
|
|
690
|
+
ASN1_ex_free_func *asn1_ex_free;
|
|
691
|
+
ASN1_ex_free_func *asn1_ex_clear;
|
|
692
|
+
ASN1_ex_d2i *asn1_ex_d2i;
|
|
693
|
+
ASN1_ex_i2d *asn1_ex_i2d;
|
|
694
|
+
ASN1_ex_print_func *asn1_ex_print;
|
|
695
|
+
} ASN1_EXTERN_FUNCS;
|
|
696
|
+
|
|
697
|
+
typedef struct ASN1_PRIMITIVE_FUNCS_st {
|
|
698
|
+
void *app_data;
|
|
699
|
+
unsigned long flags;
|
|
700
|
+
ASN1_ex_new_func *prim_new;
|
|
701
|
+
ASN1_ex_free_func *prim_free;
|
|
702
|
+
ASN1_ex_free_func *prim_clear;
|
|
703
|
+
ASN1_primitive_c2i *prim_c2i;
|
|
704
|
+
ASN1_primitive_i2c *prim_i2c;
|
|
705
|
+
ASN1_primitive_print *prim_print;
|
|
706
|
+
} ASN1_PRIMITIVE_FUNCS;
|
|
707
|
+
|
|
708
|
+
/*
|
|
709
|
+
* This is the ASN1_AUX structure: it handles various miscellaneous
|
|
710
|
+
* requirements. For example the use of reference counts and an informational
|
|
711
|
+
* callback. The "informational callback" is called at various points during
|
|
712
|
+
* the ASN1 encoding and decoding. It can be used to provide minor
|
|
713
|
+
* customisation of the structures used. This is most useful where the
|
|
714
|
+
* supplied routines *almost* do the right thing but need some extra help at
|
|
715
|
+
* a few points. If the callback returns zero then it is assumed a fatal
|
|
716
|
+
* error has occurred and the main operation should be abandoned. If major
|
|
717
|
+
* changes in the default behaviour are required then an external type is
|
|
718
|
+
* more appropriate.
|
|
719
|
+
*/
|
|
720
|
+
|
|
721
|
+
typedef int ASN1_aux_cb(int operation, ASN1_VALUE **in, const ASN1_ITEM *it,
|
|
722
|
+
void *exarg);
|
|
723
|
+
|
|
724
|
+
typedef struct ASN1_AUX_st {
|
|
725
|
+
void *app_data;
|
|
726
|
+
int flags;
|
|
727
|
+
int ref_offset; /* Offset of reference value */
|
|
728
|
+
int ref_lock; /* Lock type to use */
|
|
729
|
+
ASN1_aux_cb *asn1_cb;
|
|
730
|
+
int enc_offset; /* Offset of ASN1_ENCODING structure */
|
|
731
|
+
} ASN1_AUX;
|
|
732
|
+
|
|
733
|
+
/* For print related callbacks exarg points to this structure */
|
|
734
|
+
typedef struct ASN1_PRINT_ARG_st {
|
|
735
|
+
BIO *out;
|
|
736
|
+
int indent;
|
|
737
|
+
const ASN1_PCTX *pctx;
|
|
738
|
+
} ASN1_PRINT_ARG;
|
|
739
|
+
|
|
740
|
+
/* For streaming related callbacks exarg points to this structure */
|
|
741
|
+
typedef struct ASN1_STREAM_ARG_st {
|
|
742
|
+
/* BIO to stream through */
|
|
743
|
+
BIO *out;
|
|
744
|
+
/* BIO with filters appended */
|
|
745
|
+
BIO *ndef_bio;
|
|
746
|
+
/* Streaming I/O boundary */
|
|
747
|
+
unsigned char **boundary;
|
|
748
|
+
} ASN1_STREAM_ARG;
|
|
749
|
+
|
|
750
|
+
/* Flags in ASN1_AUX */
|
|
751
|
+
|
|
752
|
+
/* Use a reference count */
|
|
753
|
+
# define ASN1_AFLG_REFCOUNT 1
|
|
754
|
+
/* Save the encoding of structure (useful for signatures) */
|
|
755
|
+
# define ASN1_AFLG_ENCODING 2
|
|
756
|
+
/* The Sequence length is invalid */
|
|
757
|
+
# define ASN1_AFLG_BROKEN 4
|
|
758
|
+
|
|
759
|
+
/* operation values for asn1_cb */
|
|
760
|
+
|
|
761
|
+
# define ASN1_OP_NEW_PRE 0
|
|
762
|
+
# define ASN1_OP_NEW_POST 1
|
|
763
|
+
# define ASN1_OP_FREE_PRE 2
|
|
764
|
+
# define ASN1_OP_FREE_POST 3
|
|
765
|
+
# define ASN1_OP_D2I_PRE 4
|
|
766
|
+
# define ASN1_OP_D2I_POST 5
|
|
767
|
+
# define ASN1_OP_I2D_PRE 6
|
|
768
|
+
# define ASN1_OP_I2D_POST 7
|
|
769
|
+
# define ASN1_OP_PRINT_PRE 8
|
|
770
|
+
# define ASN1_OP_PRINT_POST 9
|
|
771
|
+
# define ASN1_OP_STREAM_PRE 10
|
|
772
|
+
# define ASN1_OP_STREAM_POST 11
|
|
773
|
+
# define ASN1_OP_DETACHED_PRE 12
|
|
774
|
+
# define ASN1_OP_DETACHED_POST 13
|
|
775
|
+
|
|
776
|
+
/* Macro to implement a primitive type */
|
|
777
|
+
# define IMPLEMENT_ASN1_TYPE(stname) IMPLEMENT_ASN1_TYPE_ex(stname, stname, 0)
|
|
778
|
+
# define IMPLEMENT_ASN1_TYPE_ex(itname, vname, ex) \
|
|
779
|
+
ASN1_ITEM_start(itname) \
|
|
780
|
+
ASN1_ITYPE_PRIMITIVE, V_##vname, NULL, 0, NULL, ex, #itname \
|
|
781
|
+
ASN1_ITEM_end(itname)
|
|
782
|
+
|
|
783
|
+
/* Macro to implement a multi string type */
|
|
784
|
+
# define IMPLEMENT_ASN1_MSTRING(itname, mask) \
|
|
785
|
+
ASN1_ITEM_start(itname) \
|
|
786
|
+
ASN1_ITYPE_MSTRING, mask, NULL, 0, NULL, sizeof(ASN1_STRING), #itname \
|
|
787
|
+
ASN1_ITEM_end(itname)
|
|
788
|
+
|
|
789
|
+
/* Macro to implement an ASN1_ITEM in terms of old style funcs */
|
|
790
|
+
|
|
791
|
+
# define IMPLEMENT_COMPAT_ASN1(sname) IMPLEMENT_COMPAT_ASN1_type(sname, V_ASN1_SEQUENCE)
|
|
792
|
+
|
|
793
|
+
# define IMPLEMENT_COMPAT_ASN1_type(sname, tag) \
|
|
794
|
+
static const ASN1_COMPAT_FUNCS sname##_ff = { \
|
|
795
|
+
(ASN1_new_func *)sname##_new, \
|
|
796
|
+
(ASN1_free_func *)sname##_free, \
|
|
797
|
+
(ASN1_d2i_func *)d2i_##sname, \
|
|
798
|
+
(ASN1_i2d_func *)i2d_##sname, \
|
|
799
|
+
}; \
|
|
800
|
+
ASN1_ITEM_start(sname) \
|
|
801
|
+
ASN1_ITYPE_COMPAT, \
|
|
802
|
+
tag, \
|
|
803
|
+
NULL, \
|
|
804
|
+
0, \
|
|
805
|
+
&sname##_ff, \
|
|
806
|
+
0, \
|
|
807
|
+
#sname \
|
|
808
|
+
ASN1_ITEM_end(sname)
|
|
809
|
+
|
|
810
|
+
# define IMPLEMENT_EXTERN_ASN1(sname, tag, fptrs) \
|
|
811
|
+
ASN1_ITEM_start(sname) \
|
|
812
|
+
ASN1_ITYPE_EXTERN, \
|
|
813
|
+
tag, \
|
|
814
|
+
NULL, \
|
|
815
|
+
0, \
|
|
816
|
+
&fptrs, \
|
|
817
|
+
0, \
|
|
818
|
+
#sname \
|
|
819
|
+
ASN1_ITEM_end(sname)
|
|
820
|
+
|
|
821
|
+
/* Macro to implement standard functions in terms of ASN1_ITEM structures */
|
|
822
|
+
|
|
823
|
+
# define IMPLEMENT_ASN1_FUNCTIONS(stname) IMPLEMENT_ASN1_FUNCTIONS_fname(stname, stname, stname)
|
|
824
|
+
|
|
825
|
+
# define IMPLEMENT_ASN1_FUNCTIONS_name(stname, itname) IMPLEMENT_ASN1_FUNCTIONS_fname(stname, itname, itname)
|
|
826
|
+
|
|
827
|
+
# define IMPLEMENT_ASN1_FUNCTIONS_ENCODE_name(stname, itname) \
|
|
828
|
+
IMPLEMENT_ASN1_FUNCTIONS_ENCODE_fname(stname, itname, itname)
|
|
829
|
+
|
|
830
|
+
# define IMPLEMENT_STATIC_ASN1_ALLOC_FUNCTIONS(stname) \
|
|
831
|
+
IMPLEMENT_ASN1_ALLOC_FUNCTIONS_pfname(static, stname, stname, stname)
|
|
832
|
+
|
|
833
|
+
# define IMPLEMENT_ASN1_ALLOC_FUNCTIONS(stname) \
|
|
834
|
+
IMPLEMENT_ASN1_ALLOC_FUNCTIONS_fname(stname, stname, stname)
|
|
835
|
+
|
|
836
|
+
# define IMPLEMENT_ASN1_ALLOC_FUNCTIONS_pfname(pre, stname, itname, fname) \
|
|
837
|
+
pre stname *fname##_new(void) \
|
|
838
|
+
{ \
|
|
839
|
+
return (stname *)ASN1_item_new(ASN1_ITEM_rptr(itname)); \
|
|
840
|
+
} \
|
|
841
|
+
pre void fname##_free(stname *a) \
|
|
842
|
+
{ \
|
|
843
|
+
ASN1_item_free((ASN1_VALUE *)a, ASN1_ITEM_rptr(itname)); \
|
|
844
|
+
}
|
|
845
|
+
|
|
846
|
+
# define IMPLEMENT_ASN1_ALLOC_FUNCTIONS_fname(stname, itname, fname) \
|
|
847
|
+
stname *fname##_new(void) \
|
|
848
|
+
{ \
|
|
849
|
+
return (stname *)ASN1_item_new(ASN1_ITEM_rptr(itname)); \
|
|
850
|
+
} \
|
|
851
|
+
void fname##_free(stname *a) \
|
|
852
|
+
{ \
|
|
853
|
+
ASN1_item_free((ASN1_VALUE *)a, ASN1_ITEM_rptr(itname)); \
|
|
854
|
+
}
|
|
855
|
+
|
|
856
|
+
# define IMPLEMENT_ASN1_FUNCTIONS_fname(stname, itname, fname) \
|
|
857
|
+
IMPLEMENT_ASN1_ENCODE_FUNCTIONS_fname(stname, itname, fname) \
|
|
858
|
+
IMPLEMENT_ASN1_ALLOC_FUNCTIONS_fname(stname, itname, fname)
|
|
859
|
+
|
|
860
|
+
# define IMPLEMENT_ASN1_ENCODE_FUNCTIONS_fname(stname, itname, fname) \
|
|
861
|
+
stname *d2i_##fname(stname **a, const unsigned char **in, long len) \
|
|
862
|
+
{ \
|
|
863
|
+
return (stname *)ASN1_item_d2i((ASN1_VALUE **)a, in, len, ASN1_ITEM_rptr(itname));\
|
|
864
|
+
} \
|
|
865
|
+
int i2d_##fname(stname *a, unsigned char **out) \
|
|
866
|
+
{ \
|
|
867
|
+
return ASN1_item_i2d((ASN1_VALUE *)a, out, ASN1_ITEM_rptr(itname));\
|
|
868
|
+
}
|
|
869
|
+
|
|
870
|
+
# define IMPLEMENT_ASN1_NDEF_FUNCTION(stname) \
|
|
871
|
+
int i2d_##stname##_NDEF(stname *a, unsigned char **out) \
|
|
872
|
+
{ \
|
|
873
|
+
return ASN1_item_ndef_i2d((ASN1_VALUE *)a, out, ASN1_ITEM_rptr(stname));\
|
|
874
|
+
}
|
|
875
|
+
|
|
876
|
+
/*
|
|
877
|
+
* This includes evil casts to remove const: they will go away when full ASN1
|
|
878
|
+
* constification is done.
|
|
879
|
+
*/
|
|
880
|
+
# define IMPLEMENT_ASN1_ENCODE_FUNCTIONS_const_fname(stname, itname, fname) \
|
|
881
|
+
stname *d2i_##fname(stname **a, const unsigned char **in, long len) \
|
|
882
|
+
{ \
|
|
883
|
+
return (stname *)ASN1_item_d2i((ASN1_VALUE **)a, in, len, ASN1_ITEM_rptr(itname));\
|
|
884
|
+
} \
|
|
885
|
+
int i2d_##fname(const stname *a, unsigned char **out) \
|
|
886
|
+
{ \
|
|
887
|
+
return ASN1_item_i2d((ASN1_VALUE *)a, out, ASN1_ITEM_rptr(itname));\
|
|
888
|
+
}
|
|
889
|
+
|
|
890
|
+
# define IMPLEMENT_ASN1_DUP_FUNCTION(stname) \
|
|
891
|
+
stname * stname##_dup(stname *x) \
|
|
892
|
+
{ \
|
|
893
|
+
return ASN1_item_dup(ASN1_ITEM_rptr(stname), x); \
|
|
894
|
+
}
|
|
895
|
+
|
|
896
|
+
# define IMPLEMENT_ASN1_PRINT_FUNCTION(stname) \
|
|
897
|
+
IMPLEMENT_ASN1_PRINT_FUNCTION_fname(stname, stname, stname)
|
|
898
|
+
|
|
899
|
+
# define IMPLEMENT_ASN1_PRINT_FUNCTION_fname(stname, itname, fname) \
|
|
900
|
+
int fname##_print_ctx(BIO *out, stname *x, int indent, \
|
|
901
|
+
const ASN1_PCTX *pctx) \
|
|
902
|
+
{ \
|
|
903
|
+
return ASN1_item_print(out, (ASN1_VALUE *)x, indent, \
|
|
904
|
+
ASN1_ITEM_rptr(itname), pctx); \
|
|
905
|
+
}
|
|
906
|
+
|
|
907
|
+
# define IMPLEMENT_ASN1_FUNCTIONS_const(name) \
|
|
908
|
+
IMPLEMENT_ASN1_FUNCTIONS_const_fname(name, name, name)
|
|
909
|
+
|
|
910
|
+
# define IMPLEMENT_ASN1_FUNCTIONS_const_fname(stname, itname, fname) \
|
|
911
|
+
IMPLEMENT_ASN1_ENCODE_FUNCTIONS_const_fname(stname, itname, fname) \
|
|
912
|
+
IMPLEMENT_ASN1_ALLOC_FUNCTIONS_fname(stname, itname, fname)
|
|
913
|
+
|
|
914
|
+
/* external definitions for primitive types */
|
|
915
|
+
|
|
916
|
+
DECLARE_ASN1_ITEM(ASN1_BOOLEAN)
|
|
917
|
+
DECLARE_ASN1_ITEM(ASN1_TBOOLEAN)
|
|
918
|
+
DECLARE_ASN1_ITEM(ASN1_FBOOLEAN)
|
|
919
|
+
DECLARE_ASN1_ITEM(ASN1_SEQUENCE)
|
|
920
|
+
DECLARE_ASN1_ITEM(CBIGNUM)
|
|
921
|
+
DECLARE_ASN1_ITEM(BIGNUM)
|
|
922
|
+
DECLARE_ASN1_ITEM(LONG)
|
|
923
|
+
DECLARE_ASN1_ITEM(ZLONG)
|
|
924
|
+
|
|
925
|
+
DECLARE_STACK_OF(ASN1_VALUE)
|
|
926
|
+
|
|
927
|
+
/* Functions used internally by the ASN1 code */
|
|
928
|
+
|
|
929
|
+
int ASN1_item_ex_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
|
|
930
|
+
void ASN1_item_ex_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
|
|
931
|
+
int ASN1_template_new(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt);
|
|
932
|
+
int ASN1_primitive_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
|
|
933
|
+
|
|
934
|
+
void ASN1_template_free(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt);
|
|
935
|
+
int ASN1_template_d2i(ASN1_VALUE **pval, const unsigned char **in, long len,
|
|
936
|
+
const ASN1_TEMPLATE *tt);
|
|
937
|
+
int ASN1_item_ex_d2i(ASN1_VALUE **pval, const unsigned char **in, long len,
|
|
938
|
+
const ASN1_ITEM *it, int tag, int aclass, char opt,
|
|
939
|
+
ASN1_TLC *ctx);
|
|
940
|
+
|
|
941
|
+
int ASN1_item_ex_i2d(ASN1_VALUE **pval, unsigned char **out,
|
|
942
|
+
const ASN1_ITEM *it, int tag, int aclass);
|
|
943
|
+
int ASN1_template_i2d(ASN1_VALUE **pval, unsigned char **out,
|
|
944
|
+
const ASN1_TEMPLATE *tt);
|
|
945
|
+
void ASN1_primitive_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
|
|
946
|
+
|
|
947
|
+
int asn1_ex_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype,
|
|
948
|
+
const ASN1_ITEM *it);
|
|
949
|
+
int asn1_ex_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len,
|
|
950
|
+
int utype, char *free_cont, const ASN1_ITEM *it);
|
|
951
|
+
|
|
952
|
+
int asn1_get_choice_selector(ASN1_VALUE **pval, const ASN1_ITEM *it);
|
|
953
|
+
int asn1_set_choice_selector(ASN1_VALUE **pval, int value,
|
|
954
|
+
const ASN1_ITEM *it);
|
|
955
|
+
|
|
956
|
+
ASN1_VALUE **asn1_get_field_ptr(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt);
|
|
957
|
+
|
|
958
|
+
const ASN1_TEMPLATE *asn1_do_adb(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt,
|
|
959
|
+
int nullerr);
|
|
960
|
+
|
|
961
|
+
int asn1_do_lock(ASN1_VALUE **pval, int op, const ASN1_ITEM *it);
|
|
962
|
+
|
|
963
|
+
void asn1_enc_init(ASN1_VALUE **pval, const ASN1_ITEM *it);
|
|
964
|
+
void asn1_enc_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
|
|
965
|
+
int asn1_enc_restore(int *len, unsigned char **out, ASN1_VALUE **pval,
|
|
966
|
+
const ASN1_ITEM *it);
|
|
967
|
+
int asn1_enc_save(ASN1_VALUE **pval, const unsigned char *in, int inlen,
|
|
968
|
+
const ASN1_ITEM *it);
|
|
969
|
+
|
|
970
|
+
#ifdef __cplusplus
|
|
971
|
+
}
|
|
972
|
+
#endif
|
|
973
|
+
#endif
|