-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
43 lines (43 loc) · 1.17 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": "inspect-process",
"description": "Dead simple debugging for node.js using chrome-devtools.",
"author": "Jarid Margolin <jaridmargolin@gmail.com>",
"version": "0.5.0",
"homepage": "https://github.com/jaridmargolin/inspect-process",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jaridmargolin/inspect-process"
},
"bugs": {
"url": "https://github.com/jaridmargolin/inspect-process/issues"
},
"main": "lib/index.js",
"bin": {
"inspect": "bin/inspect.js"
},
"scripts": {
"test": "standard && mocha --no-timeouts",
"coverage": "istanbul cover ./node_modules/.bin/_mocha -- --no-timeouts",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"dependencies": {
"chromedriver": "^2.27.3",
"exit-hook": "^1.1.1",
"lodash": "^4.17.4",
"nodeflags": "^0.0.1",
"npmlog": "^4.0.2",
"portfinder-sync": "0.0.2",
"selenium-webdriver": "^3.1.0",
"which": "^1.2.12",
"yargs": "^8.0.1"
},
"devDependencies": {
"chai": "^4.0.2",
"coveralls": "^2.11.16",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"standard": "^10.0.0",
"test-console": "^1.0.0"
}
}