This repository has been archived by the owner on Feb 23, 2024. It is now read-only.
forked from playwright-community/jest-playwright
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.22 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@hover/jest-playwright-preset",
"version": "1.3.2",
"main": "index.js",
"description": "Running tests using Jest & Playwright.",
"license": "MIT",
"keywords": [
"jest",
"playwright",
"jest-playwright",
"jest-playwright-preset"
],
"author": "playwright-community",
"bugs": {
"url": "https://github.com/playwright-community/jest-playwright/issues"
},
"types": "./types/global.d.ts",
"repository": {
"url": "https://github.com/playwright-community/jest-playwright.git",
"type": "git"
},
"homepage": "https://github.com/playwright-community/jest-playwright#readme",
"scripts": {
"start": "npm run build -- --watch",
"build": "tsc",
"format": "prettier --write \"*.{js,md}\" \"src/**/*.js\"",
"lint": "tsc --noEmit && eslint . --ext .js,.ts",
"prepublishOnly": "npm run build",
"test": "npm run test:src && npm run test:e2e",
"test:src": "jest",
"test:e2e": "jest -c jest.config.e2e.js",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,ts,md}": [
"prettier --write"
],
"*.{js,ts}": "eslint --fix"
},
"dependencies": {
"expect-playwright": "^0.2.4",
"jest-circus": "^26.1.0",
"jest-environment-node": "^26.1.0",
"jest-process-manager": "^0.2.5",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"uuid": "^8.2.0"
},
"peerDependencies": {
"playwright": ">=1.2.0"
},
"devDependencies": {
"@types/debug": "4.1.5",
"@types/jest": "26.0.7",
"@types/jest-dev-server": "4.2.0",
"@types/node": "14.0.27",
"@types/rimraf": "^3.0.0",
"@types/uuid": "^8.0.0",
"@typescript-eslint/eslint-plugin": "3.7.1",
"@typescript-eslint/parser": "3.7.1",
"coveralls": "3.1.0",
"eslint": "7.5.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-prettier": "3.1.4",
"husky": "4.2.5",
"jest": "26.1.0",
"lint-staged": "10.2.11",
"playwright": ">=1.2.0",
"playwright-chromium": ">=1.2.0",
"prettier": "2.0.5",
"ts-jest": "26.1.4",
"typescript": "3.9.7"
}
}