-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.18 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.18 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
{
"name": "verdaccio-server",
"version": "1.0.25",
"description": "local npm registry proxy server",
"main": "index.js",
"scripts": {
"start": "node cli start",
"stop": "node cli stop",
"stop-all": "node stop-all",
"list": "node cli list",
"show": "node cli show",
"service-install": "node cli service-install",
"service-uninstall": "node cli service-uninstall",
"service-start": "node cli service-start",
"service-stop": "node cli service-stop",
"service-restart": "node cli service-restart",
"service-status": "node cli service-status"
},
"bin": {
"verdaccio-server": "cli"
},
"repository": {
"type": "git",
"url": "https://github.com/boringame/verdaccio-server.git"
},
"keywords": [
"verdaccio",
"sinopia",
"npm",
"nodejs",
"typescript",
"javascript"
],
"author": "boringame@qq.com",
"license": "ISC",
"dependencies": {
"forever": "^0.15.3",
"shelljs": "^0.7.8",
"verdaccio": "^3.7.1",
"winsw": "^0.0.1",
"yargs": "^10.0.3"
},
"devDependencies": {
"@types/node": "^8.0.47",
"@types/shelljs": "^0.7.5",
"@types/yargs": "^8.0.2",
"typescript": "^2.5.3"
}
}