-
Notifications
You must be signed in to change notification settings - Fork 908
Expand file tree
/
Copy pathpackage.json
More file actions
194 lines (194 loc) · 6.97 KB
/
Copy pathpackage.json
File metadata and controls
194 lines (194 loc) · 6.97 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
{
"name": "axe-core",
"description": "Accessibility engine for automated Web UI testing",
"version": "4.12.1",
"license": "MPL-2.0",
"packageManager": "pnpm@11.17.0",
"engines": {
"node": ">=4"
},
"contributors": [
{
"name": "David Sturley",
"organization": "Deque Systems, Inc.",
"url": "http://deque.com/"
},
{
"name": "Dylan Barrell",
"email": "dylan@barrell.com",
"organization": "Deque Systems, Inc.",
"url": "http://deque.com/"
},
{
"name": "Wilco Fiers",
"organization": "Deque Systems, Inc.",
"url": "http://deque.com/"
},
{
"name": "Dian Fay",
"organization": "Deque Systems, Inc.",
"url": "http://deque.com/"
},
{
"name": "Marcy Sutton",
"organization": "Deque Systems, Inc.",
"url": "http://deque.com/"
},
{
"name": "Ava Gaiety Wroten",
"organization": "Deque Systems, Inc.",
"url": "http://deque.com/"
}
],
"homepage": "https://www.deque.com/axe/",
"repository": {
"type": "git",
"url": "https://github.com/dequelabs/axe-core.git"
},
"keywords": [
"Accessibility",
"a11y",
"testing",
"unit",
"tdd",
"bdd",
"axe"
],
"main": "axe.js",
"typings": "axe.d.ts",
"files": [
"axe.js",
"axe.min.js",
"axe.d.ts",
"sri-history.json",
"locales/",
"LICENSE-3RD-PARTY.txt",
"gather-internals.js"
],
"commit-and-tag-version": {
"scripts": {
"postbump": "pnpm ci && pnpm run sri-update && git add doc/rule-descriptions.md"
},
"skip": {
"tag": true
}
},
"scripts": {
"start": "http-server -a \"\" -p 9876 --silent",
"develop": "node build/run-build.mjs --watch",
"api-docs": "jsdoc --configure .jsdoc.json",
"build": "node build/run-build.mjs",
"translate": "node build/run-build.mjs translate",
"eslint": "eslint --color --format stylish '{lib,test}/**/*.{js,mjs}' 'build/**/*.mjs' 'doc/**/*.{js,mjs}' '.github/bin/*.mjs'",
"test": "pnpm run test:tsc && run-s \"test:unit:* -- {@}\" --",
"test:tsc": "tsc",
"test:unit": "web-test-runner --config test/wtr.config.mjs",
"test:debug": "web-test-runner --config test/wtr.debug.config.mjs --manual",
"build:integration-tests": "node build/generate-integration-tests.js",
"test:unit:core": "web-test-runner --config test/wtr.config.mjs --files 'test/core/**/*.js'",
"test:unit:commons": "web-test-runner --config test/wtr.config.mjs --files 'test/commons/**/*.js'",
"test:unit:rule-matches": "web-test-runner --config test/wtr.config.mjs --files 'test/rule-matches/**/*.js'",
"test:unit:checks": "web-test-runner --config test/wtr.config.mjs --files 'test/checks/**/*.js'",
"test:unit:api": "web-test-runner --config test/wtr.config.mjs --files 'test/integration/api/**/*.js'",
"test:unit:integration": "web-test-runner --config test/wtr.config.mjs --files 'tmp/integration-tests/**/*.test.js'",
"test:unit:virtual-rules": "web-test-runner --config test/wtr.config.mjs --files 'test/integration/virtual-rules/**/*.js'",
"test:unit:gather-internals": "web-test-runner --config test/wtr.config.mjs --files 'test/gather-internals/**/*.js'",
"integration": "node test/integration/full/test-webdriver.js",
"integration:apg": "mocha --fail-zero test/aria-practices/*.spec.js",
"integration:chrome": "pnpm run integration -- browser=Chrome",
"integration:firefox": "pnpm run integration -- browser=Firefox",
"test:integration": "pnpm run test:integration:chrome",
"test:integration:chrome": "start-server-and-test 9876 integration:chrome",
"test:integration:firefox": "start-server-and-test 9876 integration:firefox",
"test:examples": "node ./doc/examples/test-examples",
"test:act": "mocha --fail-zero test/act-rules/*.spec.js",
"test:apg": "start-server-and-test 9876 integration:apg",
"test:locales": "mocha test/test-locales.js",
"test:virtual-rules": "mocha test/test-virtual-rules.js",
"test:rule-help-version": "mocha test/test-rule-help-version.js",
"test:node": "node test/node/node.js",
"test:jsdom": "mocha test/node/jsdom.js",
"version": "echo \"use 'pnpm run release' to bump axe-core version\" && exit 1",
"release": "git fetch origin --tags --force && commit-and-tag-version -a",
"rule-gen": "node build/rule-generator.mjs",
"sri-update": "pnpm run build && node build/sri-update.mjs && git add sri-history.json",
"sri-validate": "node build/sri-update.mjs --validate",
"codemod:modernize-tests": "node build/codemods/modernize-test-files.mjs",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"prepare": "husky",
"prebuild": "node ./build/check-node-version.mjs",
"pretest": "node ./build/check-node-version.mjs",
"pretest:unit:integration": "pnpm run build:integration-tests",
"test:build": "node --test build/run-build/*.test.mjs",
"validate": "node build/run-build.mjs validate",
"postbuild": "prettier --write ./locales/_template.json ./doc/rule-descriptions.md"
},
"devDependencies": {
"@axe-core/webdriverjs": "^4.10.2",
"@babel/core": "^7.20.12",
"@babel/plugin-transform-object-rest-spread": "^7.29.7",
"@babel/preset-env": "^7.20.2",
"@babel/runtime-corejs3": "^7.20.7",
"@deque/dot": "^1.1.5",
"@types/node": "^4.9.5",
"@web/test-runner": "^1.0.0",
"aria-practices": "github:w3c/aria-practices#18c1a2fca626f7aeb33270e23ae9b18833e2164d",
"aria-query": "^5.1.3",
"chai": "^4.3.7",
"chalk": "^4.x",
"chokidar": "^4.0.3",
"chromedriver": "latest",
"clean-jsdoc-theme": "^4.2.17",
"clone": "^2.1.2",
"colorjs.io": "0.4.3",
"commit-and-tag-version": "^13.1.0",
"conventional-commits-parser": "^5.0.0",
"core-js": "^3.27.1",
"core-js-pure": "^3.27.1",
"css-selector-parser": "^1.4.1",
"emoji-regex": "^10.2.1",
"es6-promise": "^4.2.8",
"esbuild": "^0.10.x",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-mocha-no-only": "^1.2.0",
"execa": "5.x",
"glob": "^13.0.6",
"globals": "^17.1.0",
"html-entities": "^2.4.0",
"http-server": "^14.1.1",
"husky": "^9.0.7",
"inquirer": "^8.2.5",
"jquery": "^4.0.0",
"jsdoc": "^4.0.2",
"jsdom": "^29.0.2",
"lint-staged": "^17.0.7",
"memoizee": "^0.4.15",
"mocha": "^11.1.0",
"node-notifier": "^10.0.1",
"npm-run-all": "^4.1.5",
"outdent": "^0.8.0",
"prettier": "^3.0.3",
"revalidator": "^0.3.1",
"selenium-webdriver": "^4.7.1",
"serve-handler": "^6.1.5",
"sinon": "^22.0.0",
"sri-toolbox": "^0.2.0",
"start-server-and-test": "^3.0.2",
"typedarray": "^0.0.7",
"typescript": "^6.0.3",
"uglify-js": "^3.17.4",
"wcag-act-rules": "github:w3c/wcag-act-rules#5adb55d19eb2cd7fb23213b2d1acedf9004dc063",
"weakmap-polyfill": "^2.0.4"
},
"lint-staged": {
"*.{md,json,ts,html}": [
"prettier --write"
],
"*.{js,mjs}": [
"prettier --write",
"eslint --fix"
]
}
}