forked from macacajs/macaca-playwright
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.31 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
{
"name": "macaca-playwright",
"version": "1.5.3",
"description": "Macaca Playwright driver",
"keywords": [
"playwright",
"macaca"
],
"files": [
"dist/**/*.js"
],
"main": "./dist/lib/macaca-playwright.js",
"repository": {
"type": "git",
"url": "https://github.com/macacajs/macaca-playwright"
},
"dependencies": {
"driver-base": "^0.1.4",
"kleur": "^4.1.4",
"lodash": "^4.17.21",
"mkdirp": "^1.0.4",
"playwright": "^1.21.0",
"selenium-atoms": "^1.0.4",
"webdriver-dfn-error-code": "^1.0.4",
"xlogger": "^1.0.6"
},
"devDependencies": {
"@types/node": "^18.7.14",
"eslint": "7",
"eslint-config-egg": "^11.0.1",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-mocha": "^4.11.0",
"git-contributor": "1",
"husky": "^1.3.1",
"macaca-ecosystem": "1",
"mocha": "^4.0.1",
"nyc": "^13.1.0",
"power-assert": "^1.6.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
},
"scripts": {
"test": "nyc --reporter=lcov --reporter=text mocha --require ts-node/register",
"lint": "eslint --ext js,ts --fix lib test",
"prepublishOnly": "npm run build",
"build": "sh ./build.sh",
"contributor": "git-contributor"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"license": "MIT"
}