-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.78 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.78 KB
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
{
"name": "testaro",
"version": "72.1.2",
"description": "Run 1000 web accessibility tests from 11 tools and get a standardized report",
"main": "index.js",
"scripts": {
"build:nameComputation": "esbuild src/nameComputation.js --bundle --format=iife --global-name=computeAccessibleName --outfile=dist/nameComputation.js",
"build": "npm run build:nameComputation",
"deps": "npm update && npx playwright install && npm run build",
"tests": "node validation/executors/tests",
"test": "node validation/executors/test",
"run": "node validation/executors/run",
"dirWatch": "node validation/executors/dirWatch",
"netWatch": "node validation/executors/netWatch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jrpool/testaro.git"
},
"keywords": [
"accessibility",
"a11y",
"testing",
"automation"
],
"author": "Jonathan Pool <jonathan.pool@jpdev.pro>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jrpool/testaro/issues"
},
"homepage": "https://github.com/jrpool/testaro#readme",
"dependencies": {
"@blazediff/core": "*",
"@qualweb/core": "*",
"@qualweb/act-rules": "*",
"@qualweb/wcag-techniques": "*",
"@qualweb/best-practices": "*",
"@siteimprove/alfa-act": "*",
"@siteimprove/alfa-playwright": "*",
"@siteimprove/alfa-rules": "*",
"accessibility-checker": "*",
"aria-query": "*",
"aslint-testaro": "*",
"axe-playwright": "*",
"dotenv": "*",
"playwright": "*",
"playwright-dompath": "*",
"playwright-extra": "*",
"playwright-extra-plugin-stealth": "*",
"pngjs": "*",
"puppeteer-extra-plugin-stealth": "*",
"vnu-jar": "*"
},
"devDependencies": {
"dom-accessibility-api": "*",
"esbuild": "*",
"eslint": "*"
}
}