forked from nanjingboy/nvmw
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
127 lines (127 loc) · 2.67 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@jchip/nvm",
"description": "nvm: a universal node.js version manager for Windows (no admin) and Unix",
"version": "1.6.4",
"author": "Tom.Huang <hzlhu.dargon@gmail.com>",
"contributors": [
"Joel Chen <joel123@gmail.com>"
],
"main": "install.sh",
"license": "MIT",
"scripts": {
"test": "xrun xarc/test-only",
"preversion": "echo Do not run npm version, run xrun version --major,minor,patch && exit 1",
"prepublishOnly": "echo Do not run npm publish, run xrun release && exit 1",
"preinstall": "node bin/no-npm-install.js",
"coverage": "xrun xarc/test-cov"
},
"publishConfig": {
"registry": "https://registry.npmjs.com/",
"access": "public"
},
"prettier": {
"printWidth": 100
},
"dependencies": {
"chalker": "^1.2.0",
"extract-zip": "^2.0.1",
"fd-slicer": "jchip/node-fd-slicer",
"lodash": "^4.17.20",
"mkdirp": "^0.5.6",
"needle": "^3.2.0",
"nix-clap": "^1.3.12",
"opfs": "^1.1.1",
"rimraf": "^2.6.3",
"tar": "^4.4.10",
"xaa": "^1.6.2"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/sinon": "^9.0.10",
"@types/sinon-chai": "^3.2.5",
"@xarc/module-dev": "^4.1.0",
"@xarc/run": "^1.1.1",
"babel-loader": "^9.1.3",
"chai": "^4.3.4",
"mocha": "^9.1.0",
"nyc": "^15.1.0",
"prettier": "^1.19.1",
"sinon": "^9.2.2",
"sinon-chai": "^3.5.0",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.9.1",
"webpack-cli": "^5.1.4",
"zipit": "^2.0.0"
},
"keywords": [
"Node",
"version",
"manager",
"unix",
"*nix",
"windows",
"nvm",
"windows nvm",
"nvm windows",
"no admin nvm",
"universal",
"universal nvm"
],
"files": [
"bin",
"dist",
"install.sh",
"install.ps1",
"check-registry.js"
],
"repository": {
"type": "git",
"url": "https://github.com/jchip/nvm.git"
},
"nyc": {
"all": true,
"reporter": [
"lcov",
"text",
"text-summary"
],
"exclude": [
"*clap.js",
"*clap.ts",
".eslintrc.js",
"coverage",
"dist",
"docs",
"gulpfile.js",
"test",
"xrun*.js",
"xrun*.ts"
],
"check-coverage": true,
"statements": 0,
"branches": 0,
"functions": 0,
"lines": 0,
"cache": true,
"extends": []
},
"opfs": {
"mkdirp": true,
"rimraf": true,
"bluebird": false
},
"mocha": {
"require": [
"@xarc/module-dev/config/test/setup.js"
],
"recursive": true
},
"@xarc/module-dev": {
"features": [
"mocha"
]
}
}