-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.01 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
{
"name": "wcag-reference",
"version": "0.9.2",
"description": "Gets a reference to the WCAG documents for you!",
"exports": "./index.js",
"type": "module",
"scripts": {
"test": "npm run lint && tsd",
"lint": "eslint ."
},
"repository": "Zauberbutter/wcag-reference",
"keywords": [
"wcag",
"reference",
"link",
"accessibility",
"a11y",
"axe",
"htmlcs",
"quickref",
"understanding",
"wcag2.0",
"wcag2.1",
"wcag2.2"
],
"license": "GPL 3",
"bugs": {
"url": "https://github.com/Zauberbutter/wcag-reference/issues"
},
"homepage": "https://github.com/Zauberbutter/wcag-reference#readme",
"devDependencies": {
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-xo": "^0.36.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-unicorn": "^32.0.1",
"got": "^11.8.2",
"jsdom": "^16.5.3",
"prettier": "^2.3.0",
"prettier-eslint": "^12.0.0",
"tsd": "^0.15.1"
},
"files": [
"index.js",
"index.d.ts",
"data/data.js"
],
"engines": {
"node": ">=12"
}
}