This repository was archived by the owner on Dec 20, 2025. It is now read-only.
forked from nanjingboy/nvmw
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.19 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.19 KB
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
{
"name": "@jchip/nvm",
"description": "nvm: a universal node.js version manager for Windows (no admin) and Unix",
"version": "1.9.0",
"author": "Tom.Huang <hzlhu.dargon@gmail.com>",
"contributors": [
"Joel Chen <joel123@gmail.com>"
],
"main": "install.sh",
"license": "MIT",
"scripts": {
"build": "webpack",
"test:run": "vitest run",
"test": "xrun -s build test:run",
"test:unit": "xrun -s build && vitest run --exclude 'test/e2e/**'",
"test:e2e": "xrun -s build && vitest run test/e2e",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"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": "vitest run --coverage"
},
"publishConfig": {
"registry": "https://registry.npmjs.com/",
"access": "public"
},
"prettier": {
"printWidth": 100
},
"dependencies": {
"chalker": "^1.2.0",
"extract-zip": "^2.0.1",
"fd-slicer": "github: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",
"semver": "^7.7.3",
"tar": "^4.4.10",
"xaa": "^1.6.2"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@xarc/module-dev": "^5.0.0",
"@xarc/run": "^2.2.0",
"babel-loader": "^9.1.3",
"prettier": "^1.19.1",
"tsx": "^4.20.6",
"vitest": "^3.2.4",
"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": "git+https://github.com/jchip/nvm.git"
},
"opfs": {
"mkdirp": true,
"rimraf": true,
"bluebird": false
}
}