forked from shellscape/mocha-chrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 993 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
{
"name": "mocha-chrome",
"version": "0.1.1",
"description": "☕ Run Mocha tests using headless Google Chrome",
"main": "index.js",
"scripts": {
"bdd": "mocha test/test.js --timeout 10000",
"lint": "eslint index.js test/*.js",
"test": "npm run lint && npm run bdd"
},
"bin": {
"mocha-chrome": "./bin/mocha-chrome"
},
"engines": {
"node": ">= 7.6.0"
},
"repository": "shellscape/mocha-chrome",
"author": {
"name": "Andrew Powell",
"email": "[email protected]",
"url": "shellscape.org"
},
"license": "MIT",
"dependencies": {
"chalk": "^2.0.1",
"chrome-launcher": "^0.4.0",
"chrome-remote-interface": "^0.24.2",
"chrome-unmirror": "^0.1.0",
"deep-assign": "^2.0.0",
"loglevel": "^1.4.1",
"meow": "^3.7.0",
"nanobus": "^4.2.0"
},
"devDependencies": {
"chai": "^4.1.0",
"eslint": "^4.3.0",
"eslint-config-shellscape": "^1.0.0",
"express": "^4.15.4",
"mocha": "^3.5.0"
}
}