├── .commitlintrc.js ├── .eslintrc.js ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug.yml │ └── config.yml ├── actions │ ├── create-check │ │ └── action.yml │ └── install-latest-npm │ │ └── action.yml ├── dependabot.yml ├── matchers │ └── tap.json ├── settings.yml └── workflows │ ├── audit.yml │ ├── ci-release.yml │ ├── ci.yml │ ├── codeql-analysis.yml │ ├── post-dependabot.yml │ ├── pull-request.yml │ ├── release-integration.yml │ └── release.yml ├── .gitignore ├── .npmrc ├── .release-please-manifest.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── bin └── index.js ├── lib ├── dir.js ├── fetcher.js ├── file.js ├── git.js ├── index.js ├── registry.js ├── remote.js └── util │ ├── add-git-sha.js │ ├── cache-dir.js │ ├── is-package-bin.js │ ├── npm.js │ ├── protected.js │ ├── tar-create-options.js │ └── trailing-slashes.js ├── package.json ├── release-please-config.json ├── tap-snapshots └── test │ ├── bin.js.test.cjs │ ├── dir.js.test.cjs │ ├── fetcher.js-fake-sudo.test.cjs │ ├── fetcher.js.test.cjs │ ├── file.js.test.cjs │ ├── index.js.test.cjs │ ├── remote.js.test.cjs │ └── util │ └── npm.js.test.cjs └── test ├── bin.js ├── dir.js ├── fetcher.js ├── file.js ├── fixtures ├── abbrev-1.1.1.tgz ├── abbrev-manifest-file.json ├── abbrev-manifest-min.json ├── abbrev-packument-file.json ├── abbrev-packument-full.json ├── abbrev-packument-min.json ├── abbrev │ ├── LICENSE │ ├── README.md │ ├── abbrev.js │ └── package.json ├── bin-good.tgz ├── bin-good │ ├── package.json │ └── script.js ├── bin-missing.tgz ├── bin-missing │ └── package.json ├── bin-object.tgz ├── bin-object │ ├── package.json │ └── script.js ├── bin-string.tgz ├── bin-string │ ├── package.json │ └── script.js ├── npm-mock.js ├── prepare-requires-gitignore-1.2.3.tgz ├── prepare-requires-gitignore │ ├── .gitignore │ ├── index.js │ ├── package.json │ └── prepare.js ├── prepare-script │ ├── .gitignore │ ├── .npmignore │ ├── node_modules │ │ └── abbrev │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── abbrev.js │ │ │ └── package.json │ ├── package-lock.json │ ├── package.json │ └── prepare.js ├── sigstore │ ├── invalid-attestations.json │ ├── malformed-subject-attestations.json │ ├── mismatched-keyid-attestations.json │ ├── mismatched-subject-digest-attestations.json │ ├── mismatched-subject-name-attestations.json │ ├── no-keyid-attestations.json │ ├── unsupported-attestations.json │ └── valid-attestations.json ├── tnock.js └── weird-pkg.tgz ├── git.js ├── helpers ├── clean-snapshot.js └── script-mode.js ├── index.js ├── registry.js ├── remote.js └── util ├── add-git-sha.js ├── cache-dir.js ├── is-package-bin.js ├── npm.js └── tar-create-options.js /.commitlintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/.commitlintrc.js -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/actions/create-check/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/.github/actions/create-check/action.yml -------------------------------------------------------------------------------- /.github/actions/install-latest-npm/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/.github/actions/install-latest-npm/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/matchers/tap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/.github/matchers/tap.json -------------------------------------------------------------------------------- /.github/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/.github/settings.yml -------------------------------------------------------------------------------- /.github/workflows/audit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/.github/workflows/audit.yml -------------------------------------------------------------------------------- /.github/workflows/ci-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/.github/workflows/ci-release.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/post-dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/.github/workflows/post-dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/.github/workflows/pull-request.yml -------------------------------------------------------------------------------- /.github/workflows/release-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/.github/workflows/release-integration.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/.npmrc -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "21.0.4" 3 | } 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/bin/index.js -------------------------------------------------------------------------------- /lib/dir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/lib/dir.js -------------------------------------------------------------------------------- /lib/fetcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/lib/fetcher.js -------------------------------------------------------------------------------- /lib/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/lib/file.js -------------------------------------------------------------------------------- /lib/git.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/lib/git.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/lib/registry.js -------------------------------------------------------------------------------- /lib/remote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/lib/remote.js -------------------------------------------------------------------------------- /lib/util/add-git-sha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/lib/util/add-git-sha.js -------------------------------------------------------------------------------- /lib/util/cache-dir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/lib/util/cache-dir.js -------------------------------------------------------------------------------- /lib/util/is-package-bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/lib/util/is-package-bin.js -------------------------------------------------------------------------------- /lib/util/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/lib/util/npm.js -------------------------------------------------------------------------------- /lib/util/protected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/lib/util/protected.js -------------------------------------------------------------------------------- /lib/util/tar-create-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/lib/util/tar-create-options.js -------------------------------------------------------------------------------- /lib/util/trailing-slashes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/lib/util/trailing-slashes.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/package.json -------------------------------------------------------------------------------- /release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/release-please-config.json -------------------------------------------------------------------------------- /tap-snapshots/test/bin.js.test.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/tap-snapshots/test/bin.js.test.cjs -------------------------------------------------------------------------------- /tap-snapshots/test/dir.js.test.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/tap-snapshots/test/dir.js.test.cjs -------------------------------------------------------------------------------- /tap-snapshots/test/fetcher.js-fake-sudo.test.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/tap-snapshots/test/fetcher.js-fake-sudo.test.cjs -------------------------------------------------------------------------------- /tap-snapshots/test/fetcher.js.test.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/tap-snapshots/test/fetcher.js.test.cjs -------------------------------------------------------------------------------- /tap-snapshots/test/file.js.test.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/tap-snapshots/test/file.js.test.cjs -------------------------------------------------------------------------------- /tap-snapshots/test/index.js.test.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/tap-snapshots/test/index.js.test.cjs -------------------------------------------------------------------------------- /tap-snapshots/test/remote.js.test.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/tap-snapshots/test/remote.js.test.cjs -------------------------------------------------------------------------------- /tap-snapshots/test/util/npm.js.test.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/tap-snapshots/test/util/npm.js.test.cjs -------------------------------------------------------------------------------- /test/bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/bin.js -------------------------------------------------------------------------------- /test/dir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/dir.js -------------------------------------------------------------------------------- /test/fetcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fetcher.js -------------------------------------------------------------------------------- /test/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/file.js -------------------------------------------------------------------------------- /test/fixtures/abbrev-1.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/abbrev-1.1.1.tgz -------------------------------------------------------------------------------- /test/fixtures/abbrev-manifest-file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/abbrev-manifest-file.json -------------------------------------------------------------------------------- /test/fixtures/abbrev-manifest-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/abbrev-manifest-min.json -------------------------------------------------------------------------------- /test/fixtures/abbrev-packument-file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/abbrev-packument-file.json -------------------------------------------------------------------------------- /test/fixtures/abbrev-packument-full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/abbrev-packument-full.json -------------------------------------------------------------------------------- /test/fixtures/abbrev-packument-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/abbrev-packument-min.json -------------------------------------------------------------------------------- /test/fixtures/abbrev/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/abbrev/LICENSE -------------------------------------------------------------------------------- /test/fixtures/abbrev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/abbrev/README.md -------------------------------------------------------------------------------- /test/fixtures/abbrev/abbrev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/abbrev/abbrev.js -------------------------------------------------------------------------------- /test/fixtures/abbrev/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/abbrev/package.json -------------------------------------------------------------------------------- /test/fixtures/bin-good.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/bin-good.tgz -------------------------------------------------------------------------------- /test/fixtures/bin-good/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/bin-good/package.json -------------------------------------------------------------------------------- /test/fixtures/bin-good/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/bin-good/script.js -------------------------------------------------------------------------------- /test/fixtures/bin-missing.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/bin-missing.tgz -------------------------------------------------------------------------------- /test/fixtures/bin-missing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/bin-missing/package.json -------------------------------------------------------------------------------- /test/fixtures/bin-object.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/bin-object.tgz -------------------------------------------------------------------------------- /test/fixtures/bin-object/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/bin-object/package.json -------------------------------------------------------------------------------- /test/fixtures/bin-object/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/bin-object/script.js -------------------------------------------------------------------------------- /test/fixtures/bin-string.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/bin-string.tgz -------------------------------------------------------------------------------- /test/fixtures/bin-string/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/bin-string/package.json -------------------------------------------------------------------------------- /test/fixtures/bin-string/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/bin-string/script.js -------------------------------------------------------------------------------- /test/fixtures/npm-mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/npm-mock.js -------------------------------------------------------------------------------- /test/fixtures/prepare-requires-gitignore-1.2.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/prepare-requires-gitignore-1.2.3.tgz -------------------------------------------------------------------------------- /test/fixtures/prepare-requires-gitignore/.gitignore: -------------------------------------------------------------------------------- 1 | # just a file you can ignore 2 | -------------------------------------------------------------------------------- /test/fixtures/prepare-requires-gitignore/index.js: -------------------------------------------------------------------------------- 1 | console.log('this is fine') 2 | -------------------------------------------------------------------------------- /test/fixtures/prepare-requires-gitignore/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/prepare-requires-gitignore/package.json -------------------------------------------------------------------------------- /test/fixtures/prepare-requires-gitignore/prepare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/prepare-requires-gitignore/prepare.js -------------------------------------------------------------------------------- /test/fixtures/prepare-script/.gitignore: -------------------------------------------------------------------------------- 1 | index.js 2 | -------------------------------------------------------------------------------- /test/fixtures/prepare-script/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/prepare-script/.npmignore -------------------------------------------------------------------------------- /test/fixtures/prepare-script/node_modules/abbrev/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/prepare-script/node_modules/abbrev/LICENSE -------------------------------------------------------------------------------- /test/fixtures/prepare-script/node_modules/abbrev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/prepare-script/node_modules/abbrev/README.md -------------------------------------------------------------------------------- /test/fixtures/prepare-script/node_modules/abbrev/abbrev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/prepare-script/node_modules/abbrev/abbrev.js -------------------------------------------------------------------------------- /test/fixtures/prepare-script/node_modules/abbrev/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/prepare-script/node_modules/abbrev/package.json -------------------------------------------------------------------------------- /test/fixtures/prepare-script/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/prepare-script/package-lock.json -------------------------------------------------------------------------------- /test/fixtures/prepare-script/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/prepare-script/package.json -------------------------------------------------------------------------------- /test/fixtures/prepare-script/prepare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/prepare-script/prepare.js -------------------------------------------------------------------------------- /test/fixtures/sigstore/invalid-attestations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/sigstore/invalid-attestations.json -------------------------------------------------------------------------------- /test/fixtures/sigstore/malformed-subject-attestations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/sigstore/malformed-subject-attestations.json -------------------------------------------------------------------------------- /test/fixtures/sigstore/mismatched-keyid-attestations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/sigstore/mismatched-keyid-attestations.json -------------------------------------------------------------------------------- /test/fixtures/sigstore/mismatched-subject-digest-attestations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/sigstore/mismatched-subject-digest-attestations.json -------------------------------------------------------------------------------- /test/fixtures/sigstore/mismatched-subject-name-attestations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/sigstore/mismatched-subject-name-attestations.json -------------------------------------------------------------------------------- /test/fixtures/sigstore/no-keyid-attestations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/sigstore/no-keyid-attestations.json -------------------------------------------------------------------------------- /test/fixtures/sigstore/unsupported-attestations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/sigstore/unsupported-attestations.json -------------------------------------------------------------------------------- /test/fixtures/sigstore/valid-attestations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/sigstore/valid-attestations.json -------------------------------------------------------------------------------- /test/fixtures/tnock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/tnock.js -------------------------------------------------------------------------------- /test/fixtures/weird-pkg.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/fixtures/weird-pkg.tgz -------------------------------------------------------------------------------- /test/git.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/git.js -------------------------------------------------------------------------------- /test/helpers/clean-snapshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/helpers/clean-snapshot.js -------------------------------------------------------------------------------- /test/helpers/script-mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/helpers/script-mode.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/index.js -------------------------------------------------------------------------------- /test/registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/registry.js -------------------------------------------------------------------------------- /test/remote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/remote.js -------------------------------------------------------------------------------- /test/util/add-git-sha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/util/add-git-sha.js -------------------------------------------------------------------------------- /test/util/cache-dir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/util/cache-dir.js -------------------------------------------------------------------------------- /test/util/is-package-bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/util/is-package-bin.js -------------------------------------------------------------------------------- /test/util/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/util/npm.js -------------------------------------------------------------------------------- /test/util/tar-create-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/pacote/HEAD/test/util/tar-create-options.js --------------------------------------------------------------------------------