forked from achingbrain/pm2-web
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.43 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
{
"name": "pm2-web",
"version": "2.1.3",
"description": "A web based monitor for PM2",
"preferGlobal": "true",
"main": "pm2-web.js",
"scripts": {
"integration": "istanbul cover nodeunit test/integration",
"test": "istanbul cover nodeunit test/unit",
"coveralls": "istanbul cover nodeunit test/unit && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "git://github.com/achingbrain/pm2-web.git"
},
"dependencies": {
"ansi-html": "~0.0.4",
"bufferutil": "^1.2.1",
"cjson": "^0.3",
"express": "^3.4.8",
"html-entities": "^1.0",
"jade": "^1.1",
"method-override": "^2.1.2",
"minimist": "^1.0",
"moment": "^2.5",
"mustache": "^2.1",
"passwd-user": "^1.2.1",
"pm2-interface": "^2.0",
"semver": "^5.0",
"underscore.string": "^3.2",
"wantsit": "^1.5.0",
"wildemitter": "^1.0",
"winston": "^1.0",
"ws": "^0.8",
"zepto-browserify": "^1.1.6-1"
},
"devDependencies": {
"grunt-browserify": "^4.0",
"grunt-contrib-watch": "^0.6",
"grunt-contrib-less": "^1.0",
"nodeunit": "^0.9",
"should": "^7.1",
"sinon": "^1.8",
"istanbul": "^0.3",
"coveralls": "^2.8",
"protractor": "^2.2",
"proxyquire": "^1.0",
"testsuite": "^1.0"
},
"bin": {
"pm2-web": "bin/pm2-web.sh"
},
"keywords": [
"pm2",
"monitor",
"web",
"ui",
"process"
]
}