-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 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
{
"name": "strong-debugger",
"version": "1.0.0",
"description": "DevTools Remote Debugging Protocol provider for Node.js and io.js",
"keywords": [
"StrongLoop",
"Debugger",
"Chrome Developer Tools",
"DevTools"
],
"repository": {
"type": "git",
"url": "https://github.com/strongloop/strong-debugger"
},
"main": "index.js",
"gypfile": true,
"scripts": {
"install": "node-gyp rebuild",
"instrument": "istanbul instrument --output backend.cov --no-compact --preserve-comments backend",
"pretest": "jscs . && jshint . && npm run instrument",
"test": "tap test/lab/*.test.js test/*.test.js",
"coverage": "nyc tap test/lab/*.test.js test/*.test.js"
},
"license": "SEE LICENSE IN LICENSE.md",
"dependencies": {
"bindings": "^1.2.1",
"nan": "^2.0.5"
},
"devDependencies": {
"bluebird": "^2.9.26",
"chai": "^2.3.0",
"debug": "^2.2.0",
"dirty-chai": "^1.2.1",
"istanbul": "~0.3.20",
"jscs": "^2.1.1",
"jshint": "^2.6.0",
"newline-json": "^0.1.1",
"nyc": "^3.2.2",
"split": "^1.0.0",
"tap": "^1.2.0",
"ws": "^0.8.0"
}
}