-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.15 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.15 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
{
"name": "proxy-multi-registries",
"version": "1.1.0",
"description": "Reverse proxy of multiple registries with priorities",
"bin": "./bin/server.js",
"main": "./bin/server.js",
"scripts": {
"start": "node .",
"lint": "eslint -c eslint.config.js **/*.js && tsc --noEmit --project tsconfig.json",
"test": "exit 0"
},
"keywords": [],
"author": "Xu Yiming <xuyiming.open@outlook.com>",
"license": "ISC",
"dependencies": {
"node-fetch": "^2.6.12",
"validate-npm-package-name": "^4.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/node": "ts5.7",
"@types/node-fetch": "ts5.7",
"@types/validate-npm-package-name": "ts5.7",
"@types/yargs": "ts5.7",
"eslint": "^9.19.0",
"globals": "^15.14.0",
"typescript": "~5.7.2"
},
"bundleDependencies": [
"node-fetch",
"validate-npm-package-name",
"yargs"
],
"repository": {
"type": "git",
"url": "https://github.com/xymopen/proxy-multi-registries.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": ">= 10.3.0"
}
}