-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.92 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
{
"$schema": "http://json.schemastore.org/package",
"private": true,
"name": "@siteimprove/alfa-integrations",
"homepage": "https://alfa.siteimprove.com",
"license": "MIT",
"description": "Command Line Interface, and tools integrations for Alfa (Siteimprove's accessibility conformance testing tool)",
"repository": {
"type": "git",
"url": "https://github.com/siteimprove/alfa-integrations.git"
},
"bugs": "https://github.com/siteimprove/alfa/issues",
"scripts": {
"build": "node --max-old-space-size=8192 scripts/build.mjs --pretty",
"clean": "node scripts/clean.mjs --pretty",
"test": "node scripts/test.mjs --pretty",
"test:other": "yarn workspaces foreach --all --exclude @siteimprove/alfa-integrations run test",
"watch": "node scripts/watch.mjs --pretty",
"extract": "node scripts/api-extractor.mjs --pretty",
"document": "api-documenter generate -i docs/data/api -o docs/api",
"dependency-graph": "package-dependency-graph --config config/package-dependency-graph.cts --exclude-node_modules --graphviz --dot docs/dependency-graph.dot --png docs/dependency-graph.png",
"knip": "knip --config config/knip.ts"
},
"engines": {
"node": ">=20.0.0"
},
"type": "module",
"workspaces": [
"packages/*"
],
"//": [
"knip 5.7.0 has a regression flagging nearly everything as unused",
"See https://github.com/webpro-nl/knip/issues/672"
],
"devDependencies": {
"@changesets/cli": "^2.27.12",
"@microsoft/api-documenter": "^7.25.3",
"@microsoft/api-extractor": "^7.47.0",
"@siteimprove/alfa-cli": "workspace:^0.78.0",
"@siteimprove/alfa-toolchain": "^0.99.0",
"@types/async": "^3.2.5",
"@types/node": "^20.14.9",
"async": "^3.2.1",
"execa": "^9.1.0",
"knip": "^5.29.2",
"minimist": "^1.2.6",
"package-dependency-graph": "^1.14.4",
"prettier": "^2.7.1",
"typescript": "^5.5.2"
},
"packageManager": "[email protected]"
}