Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGar <gar+gh@danger.computer>2022-08-18 17:15:35 +0300
committerLuke Karrys <luke@lukekarrys.com>2022-08-22 21:14:50 +0300
commit3a212d7177bac622224175aac3e223bef1e447a6 (patch)
tree9f745d2524841460517769496c62e2d36642b43c
parent8ab12dc32b26db770b868cf694cedab38f4e7460 (diff)
chore: add fs-minipass to devDependencies
It's used in tests so it needs to be in the manifest
-rw-r--r--DEPENDENCIES.md2
-rw-r--r--package-lock.json4
-rw-r--r--package.json2
3 files changed, 7 insertions, 1 deletions
diff --git a/DEPENDENCIES.md b/DEPENDENCIES.md
index 92b0b8584..c602e479b 100644
--- a/DEPENDENCIES.md
+++ b/DEPENDENCIES.md
@@ -86,6 +86,7 @@ graph LR;
normalize-package-data-->semver;
npm-->abbrev;
npm-->cacache;
+ npm-->fs-minipass;
npm-->hosted-git-info;
npm-->ini;
npm-->init-package-json;
@@ -472,6 +473,7 @@ graph LR;
npm-->columnify;
npm-->docs;
npm-->fastest-levenshtein;
+ npm-->fs-minipass;
npm-->glob;
npm-->graceful-fs;
npm-->hosted-git-info;
diff --git a/package-lock.json b/package-lock.json
index 44a4a360c..e6c6ff741 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -166,6 +166,7 @@
"devDependencies": {
"@npmcli/eslint-config": "^3.1.0",
"@npmcli/template-oss": "3.5.0",
+ "fs-minipass": "^2.1.0",
"licensee": "^8.2.0",
"nock": "^13.2.4",
"spawk": "^1.7.1",
@@ -3359,8 +3360,9 @@
},
"node_modules/fs-minipass": {
"version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz",
+ "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==",
"inBundle": true,
- "license": "ISC",
"dependencies": {
"minipass": "^3.0.0"
},
diff --git a/package.json b/package.json
index cb36e55f4..f841d9749 100644
--- a/package.json
+++ b/package.json
@@ -145,6 +145,7 @@
"cli-table3",
"columnify",
"fastest-levenshtein",
+ "fs-minipass",
"glob",
"graceful-fs",
"hosted-git-info",
@@ -203,6 +204,7 @@
"devDependencies": {
"@npmcli/eslint-config": "^3.1.0",
"@npmcli/template-oss": "3.5.0",
+ "fs-minipass": "^2.1.0",
"licensee": "^8.2.0",
"nock": "^13.2.4",
"spawk": "^1.7.1",