forked from macacajs/macaca-chrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 921 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
{
"name": "macaca-chrome",
"version": "1.1.3",
"description": "macaca chrome driver",
"main": "./lib/macaca-chrome.js",
"scripts": {
"test": "nyc --reporter=lcov --reporter=text mocha",
"lint": "eslint --ext js,jsx --fix lib test",
"contributor": "git-contributor"
},
"repository": {
"type": "git",
"url": "[email protected]:macacajs/macaca-chrome.git"
},
"keywords": [
"macaca",
"chrome"
],
"files": [
"lib/**/*.js"
],
"license": "MIT",
"dependencies": {
"driver-base": "^0.1.0",
"macaca-chromedriver": "^1.2.3",
"macaca-utils": "^1.0.0",
"xlogger": "~1.0.0"
},
"devDependencies": {
"eslint": "^4.5.0",
"eslint-plugin-mocha": "^4.11.0",
"git-contributor": "^1.0.8",
"husky": "^1.3.1",
"mocha": "*",
"nyc": "^13.1.0",
"pre-commit": "*"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}