-
Notifications
You must be signed in to change notification settings - Fork 255
/
package.json
56 lines (56 loc) · 1.22 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
{
"name": "nrm",
"version": "1.5.0",
"description": "npm registry manager can help you easy and fast switch between different npm registries, now include: cnpm, taobao, nj(nodejitsu), edunpm",
"bin": {
"nrm": "cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pana/nrm.git"
},
"files": [
"cli.js",
"actions.js",
"constants.js",
"helpers.js",
"process.js",
"registries.json"
],
"scripts": {
"star": "npm star nrm",
"test": "jest",
"test:watch": "jest --watch",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"format": "prettier . --write"
},
"keywords": [
"npm",
"registry"
],
"author": "Pana",
"license": "MIT",
"bugs": {
"url": "https://github.com/Pana/nrm/issues"
},
"homepage": "https://github.com/Pana/nrm",
"dependencies": {
"@inquirer/select": "^4.0.2",
"chalk": "^4.1.2",
"commander": "^8.3.0",
"ini": "^2.0.0",
"open": "^8.4.2",
"undici": "5.28.2"
},
"devDependencies": {
"@changesets/cli": "^2.27.8",
"coffee": "^5.4.0",
"jest": "^27.4.0",
"mock-fs": "^5.4.1",
"prettier": "^3.3.3"
},
"engines": {
"node": ">=18"
}
}