forked from qawolf/qawolf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.33 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
{
"name": "qawolf",
"version": "2.6.1",
"description": "Create browser tests 10x faster",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build",
"LICENSE.md",
"README.md"
],
"engines": {
"node": ">=10.15.0"
},
"scripts": {
"build": "npm run clean && npm run build:tsc",
"build:tsc": "tsc -p tsconfig.json",
"clean": "rimraf build tmp",
"lint": "eslint --ext .ts,.tsx ./src",
"lint:fix": "eslint --ext .ts,.tsx --fix ./src",
"test": "jest",
"watch": "npm run clean && npm run watch:tsc",
"watch:tsc": "tsc -w -p tsconfig.json"
},
"license": "Apache-2.0",
"dependencies": {
"async-retry": "^1.3.3",
"axios": "^0.21.4"
},
"devDependencies": {
"@types/async-retry": "^1.4.3",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.4",
"playwright": "1.9.1",
"playwright-webkit": "1.9.1",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"bin": {
"qawolf": "./build/index.js"
}
}