-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.1 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
{
"name": "macaca-puppeteer",
"version": "13.0.0",
"description": "macaca puppeteer driver",
"keywords": [
"puppeteer",
"macaca"
],
"main": "./lib/macaca-puppeteer",
"files": [
"lib/**/*.js"
],
"repository": {
"type": "git",
"url": "git://github.com/macacajs/macaca-puppeteer.git"
},
"dependencies": {
"driver-base": "^0.1.0",
"macaca-utils": "~1.0.0",
"puppeteer": "13.5.2",
"selenium-atoms": "~1.0.1",
"webdriver-dfn-error-code": "^1.0.3",
"xlogger": "^1.0.0"
},
"devDependencies": {
"eslint": "7",
"eslint-config-egg": "^11.0.1",
"git-contributor": "1",
"husky": "^4.0.10",
"jsdoc": "^3.4.0",
"minami": "^1.1.1",
"mocha": "7",
"nyc": "^13.1.0"
},
"scripts": {
"test": "nyc --reporter=lcov --reporter=text mocha",
"lint": "eslint --fix lib test",
"clean": "rm -rf ./docs",
"doc": "npm run clean && jsdoc -c ./jsdoc.json",
"ci": "npm run lint && npm run test",
"contributor": "git-contributor"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"license": "MIT"
}