forked from guidepup/aria-at-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.4 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
{
"name": "@guidepup/aria-at-tests",
"version": "0.1.0",
"description": "Guidepup compatibility against https://github.com/w3c/aria-at test suite",
"main": "index.js",
"author": "Craig Morten <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/guidepup/aria-at-tests"
},
"bugs": {
"url": "https://github.com/guidepup/aria-at-tests/issues"
},
"homepage": "https://github.com/guidepup/aria-at-tests",
"keywords": [
"accessibility",
"a11y",
"aria-at",
"playwright",
"screen-reader",
"voiceover",
"nvda"
],
"scripts": {
"ci": "yarn lint",
"lint": "eslint . --ext .ts",
"lint:fix": "yarn lint --fix",
"test": "playwright test",
"test:generate": "ts-node src/generateTestSuitesCache.ts",
"test:install": "npx playwright install --with-deps webkit chromium firefox",
"test:report": "ts-node src/report.ts"
},
"dependencies": {
"@guidepup/guidepup": "^0.22.0",
"@guidepup/playwright": "^0.13.1",
"@playwright/test": "^1.41.1",
"csvtojson": "^2.0.10",
"playwright-merge-html-reports": "^0.2.8"
},
"devDependencies": {
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}