pacote 11.3.5 → 12.0.3

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.
Files changed (2) hide show
  1. package/lib/git.js +1 -1
  2. package/package.json +5 -5
package/lib/git.js CHANGED
@@ -50,7 +50,7 @@ class GitFetcher extends Fetcher {
50
50
  // use hosted.tarball() when we shell to RemoteFetcher later
51
51
  this.resolved = this.spec.hosted
52
52
  ? repoUrl(this.spec.hosted, { noCommittish: false })
53
- : this.spec.fetchSpec + '#' + this.spec.gitCommittish
53
+ : this.spec.rawSpec
54
54
  } else
55
55
  this.resolvedSha = ''
56
56
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pacote",
3
- "version": "11.3.5",
3
+ "version": "12.0.3",
4
4
  "description": "JavaScript package downloader",
5
5
  "author": "Isaac Z. Schlueter <i@izs.me> (https://izs.me)",
6
6
  "bin": {
@@ -36,7 +36,7 @@
36
36
  "@npmcli/git": "^2.1.0",
37
37
  "@npmcli/installed-package-contents": "^1.0.6",
38
38
  "@npmcli/promise-spawn": "^1.2.0",
39
- "@npmcli/run-script": "^1.8.2",
39
+ "@npmcli/run-script": "^2.0.0",
40
40
  "cacache": "^15.0.5",
41
41
  "chownr": "^2.0.0",
42
42
  "fs-minipass": "^2.1.0",
@@ -44,9 +44,9 @@
44
44
  "minipass": "^3.1.3",
45
45
  "mkdirp": "^1.0.3",
46
46
  "npm-package-arg": "^8.0.1",
47
- "npm-packlist": "^2.1.4",
47
+ "npm-packlist": "^3.0.0",
48
48
  "npm-pick-manifest": "^6.0.0",
49
- "npm-registry-fetch": "^11.0.0",
49
+ "npm-registry-fetch": "^12.0.0",
50
50
  "promise-retry": "^2.0.1",
51
51
  "read-package-json-fast": "^2.0.1",
52
52
  "rimraf": "^3.0.2",
@@ -54,7 +54,7 @@
54
54
  "tar": "^6.1.0"
55
55
  },
56
56
  "engines": {
57
- "node": ">=10"
57
+ "node": "^12.13.0 || ^14.15.0 || >=16"
58
58
  },
59
59
  "repository": "git@github.com:npm/pacote"
60
60
  }