-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
45 lines (45 loc) · 980 Bytes
/
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": "jsinspector",
"version": "2.0.4",
"description": "JS Web Inspector",
"main": "index.js",
"scripts": {
"test": "node test",
"start": "node bin/jsinspector server"
},
"bin": {
"insp": "./bin/jsinspector",
"jsinspector": "./bin/jsinspector"
},
"repository": {
"type": "git",
"url": "https://github.com/switer/jsinspector.git"
},
"keywords": [
"web",
"remote",
"inspector"
],
"author": "switer",
"license": "MIT",
"bugs": {
"url": "https://github.com/switer/jsinspector/issues"
},
"homepage": "https://github.com/switer/jsinspector",
"dependencies": {
"body-parser": "^1.2.0",
"commander": "^2.8.1",
"compression": "^1.0.2",
"cookie-parser": "^1.3.5",
"ejs": "^1.0.0",
"express": "^4.3.1",
"jsondiffpatch": "^0.1.5",
"logfmt": "^1.1.2",
"node-uuid": "^1.4.3",
"socket.io": "^1.3.5",
"uglify-js": "^2.4.23"
},
"engines": {
"node": "0.10.x"
}
}