forked from node-inspector/node-inspector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1 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
{
"name": "node-inspector",
"version": "0.7.4",
"description": "Web Inspector based nodeJS debugger",
"homepage": "http://github.com/node-inspector/node-inspector",
"author": "Danny Coates <[email protected]>",
"keywords": [
"debug",
"debugger",
"inspector",
"profiler"
],
"repository": {
"type": "git",
"url": "http://github.com/node-inspector/node-inspector.git"
},
"engines": {
"node": ">=0.8.0"
},
"bin": {
"node-inspector": "./bin/inspector.js",
"node-debug": "./bin/node-debug.js"
},
"dependencies": {
"express": "~3.5",
"async": "~0.4",
"glob": "~3.2.1",
"rc": "~0.3.0",
"strong-data-uri": "~0.1.0",
"debug": "~0.8",
"ws": "~0.4.31",
"opener": "~1.3.0",
"yargs": "~1.1.2",
"which": "~1.0.5"
},
"devDependencies": {
"mocha": "latest",
"chai": "latest",
"jshint": "^2.4.4",
"fs-extra": "~0.8.1"
},
"preferGlobal": true,
"scripts": {
"pretest": "jshint .",
"test": "mocha"
}
}