-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
44 lines (44 loc) · 1.04 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
{
"name": "@acot/acot-preset-axe",
"version": "0.0.19",
"description": "An axe rule set for acot.",
"keywords": [
"acot",
"acot-preset",
"axe"
],
"homepage": "https://github.com/acot-a11y/acot/tree/main/packages/acot-preset-axe",
"bugs": {
"url": "https://github.com/acot-a11y/acot/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/acot-a11y/acot.git",
"directory": "packages/acot-preset-axe"
},
"license": "MIT",
"author": "wadackel <[email protected]>",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"!**/__mocks__",
"!**/__tests__"
],
"scripts": {
"acot": "node ../cli/lib/bin.js",
"build": "tsc",
"docgen": "yarn acot preset docgen README.md",
"serve": "yarn acot preset serve --watch",
"test": "yarn acot preset test --port 1235"
},
"dependencies": {
"@acot/cli": "0.0.19",
"@acot/core": "0.0.19",
"@sinclair/typebox": "^0.23.2",
"axe-core": "^4.1.1"
},
"publishConfig": {
"access": "public"
}
}