-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.23 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
{
"name": "nodegod",
"description": "Web interface supervising node apps with dashboard and restart on file changes and exits by Harald Rudell",
"author": "Harald Rudell <harald@allgoodapps.com> (http://www.haraldrudell.com)",
"keywords": [
"app",
"management",
"forever",
"supervisor",
"node",
"sysadmin",
"tools",
"operations"
],
"version": "0.3.3",
"contributors": [
{
"name": "Harald Rudell",
"email": "harald@allgoodapps.com",
"web": "http://www.haraldrudell.com"
}
],
"devDependencies": {
"mochawrapper": ">= 0.0.34"
},
"dependencies": {
"request": ">= 2.12.1",
"socket.io": ">= 0.9.13",
"ejsinbrowser": ">= 0.0.2",
"ejs": "*",
"express": "< 3",
"greatjson": ">= 0.0.8",
"apprunner": ">= 0.2.5",
"haraldops": ">= 0.1.9",
"haraldutil": ">= 0.1.15"
},
"repository": {
"type": "git",
"url": "https://haraldrudell@github.com/haraldrudell/nodegod.git"
},
"scripts": {
"start": "node app",
"test": "mocha --ui exports --reporter spec",
"monitor": "mocha --ui exports --reporter min --watch",
"debugtest": "mocha --debug-brk --ui exports --reporter spec",
"coverage": "mochacoverage",
"changelog": "git log --format=\"%ad %s\" --date=short"
},
"engines": {"node": ">= 0.8.0"}
}