-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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
{
"name": "node_monitor",
"description": "Remote Monitoring and Control Panels for Node.js",
"version": "0.1.2",
"main": "./lib/index.js",
"keywords": ["monitor", "node-monitor", "remote control", "monitoring", "control", "realtime", "dashboard", "control panels"],
"author": {
"name": "Loren West",
"email": "open_source@lorenwest.com",
"url": "http://github.com/lorenwest"
},
"homepage": "http://lorenwest.github.com/node_monitor/",
"repository": {
"type": "git",
"url": "git://github.com/lorenwest/node_monitor.git"
},
"bugs": {
"url": "https://github.com/lorenwest/node_monitor/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/lorenwest/node_monitor/blob/master/LICENSE"
}
],
"dependencies": {
"config": ">=0.4.17 <0.5.0",
"monitor": ">=0.4.3 <0.5.0",
"jsdom": ">=0.2.0 <0.3.0",
"jquery": ">=1.6.3 <1.7.0",
"connect": ">=1.7.2 <1.8.0",
"express": ">=2.5.4 <2.6.0",
"backbone-callbacks": ">=0.1.4 <0.2.0",
"xmlhttprequest": ">=1.4.2 <1.5.0"
},
"devDependencies": {
"grunt": ">=0.3.17"
},
"engines": { "node": ">= 0.6.0" },
"scripts": {
"test": "grunt test",
"install": "npm install ./nm-base",
"start": "node monitor"
}
}