-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 889 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 889 Bytes
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
{
"name": "a11y-form-tester",
"version": "0.1.2",
"description": "",
"type": "module",
"bin": {
"a11y-form-tester": "bin/a11y-form-tester.cjs"
},
"main": "./dist/cli.mjs",
"exports": {
".": "./dist/cli.mjs"
},
"files": [
"dist",
"bin"
],
"scripts": {
"build": "tsup",
"dev": "tsx src/cli.ts test/fixtures/*.html --report report.html",
"test": "vitest run"
},
"keywords": [],
"author": "badhri17",
"license": "MIT",
"dependencies": {
"@axe-core/playwright": "^4.10.1",
"chalk": "^5.4.1",
"commander": "^13.1.0",
"fast-glob": "^3.3.3",
"handlebars": "^4.7.8",
"playwright": "^1.52.0"
},
"devDependencies": {
"@rollup/plugin-inject": "^5.0.5",
"@types/node": "^22.15.17",
"axe-core": "^4.10.3",
"tsup": "^8.4.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitest": "^3.1.3"
}
}