-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.79 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
{
"$schema": "https://json.schemastore.org/package",
"private": true,
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"test": "ava \"**/automated*\" \"**/assisted*\"",
"strict": "ava \"**/automated*\" \"**/assisted*\" -- --strict",
"testAssisted": "ava \"**/assisted*\"",
"strictAssisted": "ava \"**/assisted*\" -- --strict",
"testAutomated": "ava \"**/automated*\"",
"strictAutomated": "ava \"**/automated*\" -- --strict",
"fixtures": "node scripts/scrape.js",
"summary": "node scripts/summary.js"
},
"type": "module",
"dependencies": {
"@siteimprove/alfa-act": "^0.97.0",
"@siteimprove/alfa-array": "^0.97.0",
"@siteimprove/alfa-css": "^0.97.0",
"@siteimprove/alfa-device": "^0.97.0",
"@siteimprove/alfa-dom": "^0.97.0",
"@siteimprove/alfa-future": "^0.97.0",
"@siteimprove/alfa-hash": "^0.97.0",
"@siteimprove/alfa-http": "^0.97.0",
"@siteimprove/alfa-iterable": "^0.97.0",
"@siteimprove/alfa-json-ld": "^0.97.0",
"@siteimprove/alfa-map": "^0.97.0",
"@siteimprove/alfa-option": "^0.97.0",
"@siteimprove/alfa-rules": "^0.97.0",
"@siteimprove/alfa-scraper": "^0.76.2",
"@siteimprove/alfa-set": "^0.97.0",
"@siteimprove/alfa-web": "^0.97.0",
"jsonld": "^8.1.0"
},
"devDependencies": {
"@types/jsdom": "^21.0.0",
"@types/jsonld": "^1.5.8",
"@types/node": "^22.0.0",
"act-tools": "github:act-rules/act-tools",
"ava": "^6.0.0",
"axios": "^1.6.0",
"jsdom": "^25.0.0",
"prettier": "^3.0.0",
"source-map-support": "^0.5.21",
"typescript": "^5.0.0"
},
"ava": {
"verbose": true,
"environmentVariables": {
"NODE_OPTIONS": ""
},
"files": [
"test/**/*.spec.js"
],
"timeout": "30s"
},
"packageManager": "[email protected]"
}