This repository was archived by the owner on Feb 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.45 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.45 KB
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
59
60
61
62
63
64
65
66
67
{
"name": "test-juggler",
"version": "3.0.2",
"description": "E2E test automation framework by Devbridge",
"main": "index.js",
"scripts": {
"lint": "eslint **/*.js --fix",
"test": "jest",
"postinstall": "node ./post-install.js",
"release": "release-it"
},
"jest": {
"preset": "jest-playwright-preset"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/devbridge/test-juggler.git"
},
"author": "",
"license": "ISC",
"homepage": "https://github.com/devbridge/test-juggler",
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"async-retry": "^1.0.0",
"axios": "^0.21.1",
"fs-extra": "^9.1.0",
"gently-copy": "^3.0.0",
"jest": "^26.6.0",
"jest-image-snapshot": "^4.0.0",
"jest-junit": "^12.0.0",
"jest-playwright-preset": "^1.5.0",
"playwright": "^1.10.0",
"xml2js": "^0.4.23"
},
"devDependencies": {
"eslint": "^7.0.0",
"eslint-plugin-jest": "^24.0.0",
"eslint-plugin-jest-playwright": "^0.2.1",
"husky": "^6.0.0",
"release-it": "^14.5.0"
},
"release-it": {
"hooks": {
"before:init": [
"npx eslint **/*.js",
"npm run test"
]
},
"github": {
"release": true
}
},
"keywords": [
"testing",
"automation",
"e2e",
"playwright",
"jest"
]
}