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:
authorisaacs <i@izs.me>2020-07-11 04:19:53 +0300
committerisaacs <i@izs.me>2020-07-29 21:53:10 +0300
commite46400c9484f5c66a0ba405eeb8c1340594dbf05 (patch)
tree1c3c13d9024752c4b3dc129e2f86c7963544c5a4 /node_modules/cmd-shim/package.json
parent73657ae140810da50847d0ff729ddbab99ba5aac (diff)
update dependencies, refactor config loading to async
This removes a lot of very outdated dependencies, updates many to their modern (usually promisified) versions, and updates (or removes) code to account for the change. Several dependencies have been completely removed, and others a bit shuffled around, so that the node_modules folder can be bundled somewhat more optimally than it would have otherwise.
Diffstat (limited to 'node_modules/cmd-shim/package.json')
-rw-r--r--node_modules/cmd-shim/package.json48
1 files changed, 29 insertions, 19 deletions
diff --git a/node_modules/cmd-shim/package.json b/node_modules/cmd-shim/package.json
index 43a7b36a8..5a051901a 100644
--- a/node_modules/cmd-shim/package.json
+++ b/node_modules/cmd-shim/package.json
@@ -1,42 +1,47 @@
{
- "_from": "cmd-shim@3.0.3",
- "_id": "cmd-shim@3.0.3",
+ "_from": "cmd-shim@^4.0.1",
+ "_id": "cmd-shim@4.0.2",
"_inBundle": false,
- "_integrity": "sha512-DtGg+0xiFhQIntSBRzL2fRQBnmtAVwXIDo4Qq46HPpObYquxMaZS4sb82U9nH91qJrlosC1wa9gwr0QyL/HypA==",
+ "_integrity": "sha512-yuOHOon6oFX6kcxVl2jIkvPJsQ/yiKp9fd2dnuoBRZB9GEJ3USWAFCIqfB4xmFou93C3MjjhAprcDwrw+O29VA==",
"_location": "/cmd-shim",
- "_phantomChildren": {},
+ "_phantomChildren": {
+ "chownr": "2.0.0",
+ "infer-owner": "1.0.4",
+ "mkdirp": "1.0.4"
+ },
"_requested": {
- "type": "version",
+ "type": "range",
"registry": true,
- "raw": "cmd-shim@3.0.3",
+ "raw": "cmd-shim@^4.0.1",
"name": "cmd-shim",
"escapedName": "cmd-shim",
- "rawSpec": "3.0.3",
+ "rawSpec": "^4.0.1",
"saveSpec": null,
- "fetchSpec": "3.0.3"
+ "fetchSpec": "^4.0.1"
},
"_requiredBy": [
- "#USER",
- "/",
"/bin-links"
],
- "_resolved": "https://registry.npmjs.org/cmd-shim/-/cmd-shim-3.0.3.tgz",
- "_shasum": "2c35238d3df37d98ecdd7d5f6b8dc6b21cadc7cb",
- "_spec": "cmd-shim@3.0.3",
- "_where": "/Users/isaacs/dev/npm/cli",
+ "_resolved": "https://registry.npmjs.org/cmd-shim/-/cmd-shim-4.0.2.tgz",
+ "_shasum": "600c8b5962eea0cfd8cb809826b9584a59380c01",
+ "_spec": "cmd-shim@^4.0.1",
+ "_where": "/Users/isaacs/dev/npm/cli/node_modules/bin-links",
"bugs": {
"url": "https://github.com/npm/cmd-shim/issues"
},
"bundleDependencies": false,
"dependencies": {
"graceful-fs": "^4.1.2",
- "mkdirp": "~0.5.0"
+ "mkdirp-infer-owner": "^2.0.0"
},
"deprecated": false,
"description": "Used in npm for command line application support",
"devDependencies": {
"rimraf": "~2.2.8",
- "tap": "^12.7.0"
+ "tap": "^14.10.6"
+ },
+ "engines": {
+ "node": ">=10"
},
"files": [
"index.js",
@@ -53,8 +58,13 @@
"postpublish": "git push origin --follow-tags",
"postversion": "npm publish",
"preversion": "npm test",
- "snap": "TAP_SNAPSHOT=1 tap test/*.js --100",
- "test": "tap test/*.js --100"
+ "snap": "tap",
+ "test": "tap"
+ },
+ "tap": {
+ "before": "test/00-setup.js",
+ "after": "test/zz-cleanup.js",
+ "check-coverage": true
},
- "version": "3.0.3"
+ "version": "4.0.2"
}