-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.7 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
60
61
{
"name": "apca-check",
"description": "Axe rules to check against APCA bronze and silver+ conformance levels.",
"version": "0.1.1",
"type": "module",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/StackExchange/apca-check.git"
},
"license": "MIT",
"files": [
"dist"
],
"keywords": [
"accessibility",
"a11y",
"axe",
"axe-core",
"apca"
],
"scripts": {
"build": "tsc",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"test": "web-test-runner",
"test:watch": "web-test-runner --watch",
"release": "npm run build && changeset publish"
},
"dependencies": {
"apca-w3": "^0.1.9"
},
"peerDependencies": {
"axe-core": "^4.0.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.10",
"@open-wc/testing": "^4.0.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@types/apca-w3": "^0.1.3",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@web/dev-server-esbuild": "^1.0.3",
"@web/dev-server-rollup": "^0.6.4",
"@web/test-runner": "^0.19.0",
"@web/test-runner-playwright": "^0.11.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
}
}