forked from node-inspector/node-inspector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.24 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
{
"name": "node-inspector",
"version": "0.12.8",
"description": "Web Inspector based nodeJS debugger",
"homepage": "http://github.com/node-inspector/node-inspector",
"author": "Danny Coates <dannycoates@gmail.com>",
"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": {
"async": "~0.9",
"biased-opener": "~0.2.2",
"debug": "^2.2.0",
"express": "^4.12.3",
"glob": "^5.0.5",
"path-is-absolute": "^1.0.0",
"rc": "^1.0.1",
"semver": "^4.3.4",
"serve-favicon": "^2.1.1",
"strong-data-uri": "^1.0.0",
"v8-debug": "~0.7.1",
"v8-profiler": "~5.6.0",
"which": "^1.1.1",
"ws": "^1.0.1",
"yargs": "^3.9.0"
},
"devDependencies": {
"promise": "^7.0.3",
"mocha": "^1.21",
"chai": "^2.1",
"jshint": "^2.4.4",
"fs-extra": "~0.8.1"
},
"preferGlobal": true,
"scripts": {
"pretest": "jshint .",
"test": "mocha",
"generate-front-end": "node --harmony tools/generate-front-end"
}
}