-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.54 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
{
"name": "@devoxa/playwright-extra",
"description": "Extra utility functions for interacting with Playwright",
"version": "2.2.0",
"main": "dist/src/index.js",
"bin": {
"test-performance-metrics": "./dist/src/cli/test-performance-metrics.js"
},
"license": "MIT",
"repository": {
"url": "https://github.com/devoxa/playwright-extra"
},
"scripts": {
"test": "yarn test:type-check && yarn test:playwright",
"test:type-check": "tsc --noEmit",
"test:playwright": "sh clean.sh && playwright test",
"test:start-examples": "ts-node test-examples/index.ts",
"test:report": "playwright show-report --host 0.0.0.0",
"format": "prettier --ignore-path='.gitignore' --list-different --write .",
"format:check": "prettier --ignore-path='.gitignore' --check .",
"lint": "eslint '{src,tests}/**/*.ts'",
"build": "rm -rf dist/ && tsc",
"preversion": "yarn build"
},
"prettier": "@devoxa/prettier-config",
"dependencies": {
"@devoxa/flocky": "3.0.0",
"commander": "12.1.0"
},
"peerDependencies": {
"@playwright/test": ">=1.29",
"axe-playwright": ">=1.1"
},
"devDependencies": {
"@devoxa/eslint-config": "4.0.2",
"@devoxa/prettier-config": "2.0.3",
"@playwright/test": "1.49.1",
"@types/express": "4.17.21",
"@types/node": "20.9.5",
"axe-playwright": "2.0.3",
"eslint": "9.18.0",
"express": "4.21.2",
"prettier": "3.4.2",
"ts-node": "10.9.2",
"typescript": "5.7.3"
},
"publishConfig": {
"access": "public"
},
"volta": {
"node": "20.9.0"
}
}