forked from w3c/aria-practices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.84 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "aria-practices",
"version": "0.0.0",
"description": "This repository maintains the WAI-ARIA Authoring Practices Guide. This is developed by the [ARIA Working Group](http://www.w3.org/WAI/ARIA/). The staff contact is [Michael Cooper](http://www.w3.org/People/cooper/). Please do not provide commit access to this repository without coordination.",
"main": "index.js",
"directories": {
"example": "examples"
},
"scripts": {
"fix": "npm run lint:es -- --fix && npm run lint:css -- --fix",
"htmlhint": "htmlhint \"**/*.html\" -i \"common/**/*.html\" -f unix",
"lint": "npm run lint:es && npm run lint:css && npm run lint:html && npm run lint:spelling",
"lint:css": "stylelint **/*.css",
"lint:es": "eslint . --report-unused-disable-directives",
"lint:js": "npm run lint:es",
"lint:html": "npm run htmlhint && npm run vnu-jar",
"lint:spelling": "cspell \"**/*.*\"",
"reference-tables": "node scripts/reference-tables.js",
"regression": "ava --timeout=1m",
"regression-report": "node test/util/report",
"test": "npm run lint && npm run regression",
"vnu-jar": "java -jar node_modules/vnu-jar/build/dist/vnu.jar --errors-only --filterfile .vnurc --no-langdetect --skip-non-html aria-practices.html examples/",
"create-gh-project": "node ./scripts/create-gh-project.js",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"repository": {
"type": "git",
"url": "git+https://github.com/w3c/aria-practices.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/w3c/aria-practices/issues"
},
"homepage": "https://github.com/w3c/aria-practices#readme",
"devDependencies": {
"ava": "^3.15.0",
"babel-eslint": "^10.1.0",
"cheerio": "^1.0.0-rc.5",
"cspell": "^5.2.4",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-ava": "^11.0.0",
"eslint-plugin-jsdoc": "^32.1.0",
"eslint-plugin-prettier": "^3.3.1",
"geckodriver": "^1.22.1",
"glob": "^7.1.6",
"htmlhint": "^0.14.2",
"htmlparser2": "^6.0.0",
"husky": "^5.1.1",
"lint-staged": "^10.5.4",
"npm-merge-driver": "^2.3.6",
"pinst": "^2.1.4",
"prettier": "^2.2.1",
"selenium-webdriver": "^4.0.0-beta.1",
"stylelint": "^13.11.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-prettier": "^1.1.2",
"vnu-jar": "^21.2.5"
},
"lint-staged": {
"*.css": [
"stylelint --fix",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
],
"examples/**/*.html": [
"npm run reference-tables",
"git add examples/index.html"
]
},
"ava": {
"files": [
"test/tests/*"
]
},
"dependencies": {
"@octokit/rest": "^18.2.0",
"dotenv": "^8.2.0"
}
}