forked from node-inspector/node-inspector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.11 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
{
"name": "node-inspector",
"version": "0.8.0",
"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": "^4.0",
"serve-favicon": "^2.1.1",
"async": "~0.9",
"glob": "^3.2.1",
"rc": "~0.5.0",
"strong-data-uri": "~0.1.0",
"debug": "^1.0",
"ws": "~0.4.31",
"opener": "^1.3.0",
"yargs": "^1.2.1",
"which": "^1.0.5",
"v8-debug": "~0.1.0",
"v8-profiler": "~5.1.0",
"semver": "^3.0.1"
},
"devDependencies": {
"mocha": "^1.21",
"chai": "^1.9",
"jshint": "^2.4.4",
"fs-extra": "~0.8.1"
},
"preferGlobal": true,
"scripts": {
"pretest": "jshint .",
"test": "mocha"
}
}