-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 2.5 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
{
"name": "@guidepup/playwright",
"version": "0.14.2",
"description": "Screen reader driver for Playwright tests.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"author": "Craig Morten <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/guidepup/guidepup-playwright"
},
"bugs": {
"url": "https://github.com/guidepup/guidepup-playwright/issues"
},
"homepage": "https://github.com/guidepup/guidepup-playwright",
"keywords": [
"playwright",
"screen reader",
"screen-reader",
"accessibility",
"a11y",
"voiceover",
"nvda",
"guidepup"
],
"scripts": {
"build": "yarn clean && yarn compile",
"ci": "yarn clean && yarn lint && yarn build",
"clean": "rimraf lib test-results recordings",
"compile": "tsc",
"lint": "eslint . --ext .ts",
"lint:fix": "yarn lint --fix",
"prepublish": "yarn build",
"pretest": "npx playwright install chromium firefox webkit",
"test:nvda": "yarn test:nvda:chromium && yarn test:nvda:firefox",
"test:voiceover": "yarn test:voiceover:chromium && yarn test:voiceover:firefox && yarn test:voiceover:webkit",
"test:nvda:chromium": "playwright test --config ./examples/playwright-nvda/chromium.config.ts ./examples/playwright-nvda/tests/chromium/",
"test:nvda:firefox": "playwright test --config ./examples/playwright-nvda/firefox.config.ts ./examples/playwright-nvda/tests/firefox/",
"test:voiceover:chromium": "playwright test --config ./examples/playwright-voiceover/chromium.config.ts ./examples/playwright-voiceover/tests/chromium/",
"test:voiceover:firefox": "playwright test --config ./examples/playwright-voiceover/firefox.config.ts ./examples/playwright-voiceover/tests/firefox/",
"test:voiceover:webkit": "playwright test --config ./examples/playwright-voiceover/webkit.config.ts ./examples/playwright-voiceover/tests/webkit/"
},
"devDependencies": {
"@guidepup/guidepup": "^0.24.0",
"@guidepup/record": "^0.1.0",
"@playwright/test": "^1.47.1",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typedoc": "^0.26.7",
"typescript": "^5.6.2"
},
"peerDependencies": {
"@guidepup/guidepup": ">=0.22.1",
"@playwright/test": "^1.40.1"
},
"resolutions": {
"strip-ansi": "6.0.1",
"string-width": "4.1.0"
}
}