-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
93 lines (93 loc) · 2.38 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "npminstall",
"version": "7.12.0",
"description": "Make npm install fast and handy.",
"main": "lib/index.js",
"files": [
"lib",
"bin",
"node-gyp-bin"
],
"bin": {
"npminstall": "bin/install.js",
"npmlink": "bin/link.js",
"npmuninstall": "bin/uninstall.js",
"npmupdate": "bin/update.js"
},
"scripts": {
"contributor": "git-contributor",
"test": "npm run lint && egg-bin test -t 2000000 -p",
"test-local": "npm run test-local-single -- -p",
"test-local-single": "npm run clean && npm_china=true local=true egg-bin test -t 2000000",
"cov": "egg-bin cov -t 2000000",
"cov-debug": "cross-env NODE_DEBUG=npminstall* egg-bin cov -t 2000000",
"lint": "eslint . --fix",
"ci": "npm run lint && npm run cov",
"clean": "rm -rf test/fixtures/.tmp*"
},
"dependencies": {
"@npmcli/arborist": "^6.1.3",
"@zkochan/cmd-shim": "^5.4.0",
"await-event": "^2.1.0",
"bin-links": "^2.3.0",
"binary-mirror-config": "^1.19.0",
"bug-versions": "^1.90.0",
"bytes": "^3.1.0",
"cacheable-lookup": "^6.1.0",
"chalk": "^2.4.2",
"destroy": "^1.0.4",
"detect-libc": "^2.0.1",
"execa": "^5.1.1",
"fs-extra": "^7.0.1",
"globby": "^11.1.0",
"minimatch": "^3.0.4",
"minimist": "^1.2.0",
"moment": "^2.24.0",
"ms": "^2.1.1",
"node-gyp": "^9.0.0",
"node-homedir": "^1.1.1",
"normalize-package-data": "^5.0.0",
"npm-normalize-package-bin": "^3.0.0",
"npm-package-arg": "^8.1.5",
"ora": "^4.0.5",
"p-map": "^2.1.0",
"pacote": "^15.0.0",
"rc": "^1.2.8",
"semver": "^7.0.0",
"tar": "^6.0.0",
"urllib": "^3.0.3"
},
"devDependencies": {
"assert-file": "^1.0.0",
"coffee": "^5.5.0",
"cross-env": "^7.0.3",
"egg-bin": "^6.1.2",
"eslint": "^8.31.0",
"eslint-config-egg": "^12.1.0",
"git-contributor": "^2.0.0",
"mm": "^3.2.1"
},
"homepage": "https://github.com/cnpm/npminstall",
"repository": {
"type": "git",
"url": "git://github.com/cnpm/npminstall.git"
},
"bugs": {
"url": "https://github.com/cnpm/npminstall/issues"
},
"publishConfig": {
"tag": "latest"
},
"keywords": [
"npminstall",
"npm install",
"yarn",
"pnpm",
"fastest npm install"
],
"engines": {
"node": ">=14.18.0"
},
"author": "fengmk2 <[email protected]> (https://github.com/fengmk2)",
"license": "MIT"
}