-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathpackage.json
81 lines (81 loc) · 2.25 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": "jest-playwright-preset",
"version": "1.5.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 \"*.{ts,md}\" \"src/**/*.ts\"",
"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",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,ts,md}": [
"prettier --write"
],
"*.{js,ts}": "eslint --fix"
},
"dependencies": {
"expect-playwright": "^0.3.4",
"jest-circus": "^26.6.3",
"jest-environment-node": "^26.6.2",
"jest-process-manager": "^0.3.1",
"jest-runner": "^26.6.3",
"nyc": "^15.1.0",
"playwright-core": ">=1.2.0",
"rimraf": "^3.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/debug": "4.1.5",
"@types/jest": "26.0.23",
"@types/jest-dev-server": "4.2.0",
"@types/node": "15.0.1",
"@types/rimraf": "^3.0.0",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"coveralls": "3.1.0",
"eslint": "7.25.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettier": "3.4.0",
"husky": "6.0.0",
"jest": "26.6.3",
"lint-staged": "10.5.4",
"playwright": ">=1.2.0",
"playwright-chromium": ">=1.2.0",
"prettier": "2.2.1",
"ts-jest": "26.5.5",
"typescript": "4.2.4"
}
}