-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
58 lines (58 loc) · 1.25 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
55
56
57
58
{
"name": "webdriver-server",
"version": "1.3.1",
"description": "webdriver server",
"keywords": [
"webdriver",
"testing",
"ui automation",
"test framework"
],
"main": "index.js",
"files": [
"lib/**/*.js"
],
"repository": {
"type": "git",
"url": "[email protected]:macacajs/webdriver-server.git"
},
"dependencies": {
"adm-zip": "~0.4.7",
"boom": "~3.1.2",
"chalk": "~1.1.1",
"co": "~4.6.0",
"detect-port": "~0.1.4",
"download": "~7.1.0",
"koa": "~1.1.2",
"koa-bodyparser": "~2.0.1",
"koa-cors": "^0.0.16",
"koa-router": "~5.4.0",
"macaca-cli": "*",
"progress": "~2.0.0",
"temp": "~0.8.3",
"webdriver-dfn-error-code": "~1.0.0",
"xlogger": "~1.0.4",
"xutil": "~1.0.0"
},
"devDependencies": {
"eslint": "8",
"eslint-config-egg": "^7.1.0",
"eslint-config-prettier": "^4.1.0",
"git-contributor": "1",
"husky": "^8.0.1",
"mocha": "*",
"nyc": "^11.7.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"scripts": {
"test": "nyc --reporter=lcov --reporter=text mocha",
"lint": "eslint . --fix",
"ci": "npm run lint && npm run test",
"contributor": "git-contributor"
},
"license": "MIT"
}