source: frontend/node_modules/axe-core/package.json

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 6.5 KB
Line 
1{
2 "name": "axe-core",
3 "description": "Accessibility engine for automated Web UI testing",
4 "version": "4.11.4",
5 "license": "MPL-2.0",
6 "engines": {
7 "node": ">=4"
8 },
9 "contributors": [
10 {
11 "name": "David Sturley",
12 "organization": "Deque Systems, Inc.",
13 "url": "http://deque.com/"
14 },
15 {
16 "name": "Dylan Barrell",
17 "email": "dylan@barrell.com",
18 "organization": "Deque Systems, Inc.",
19 "url": "http://deque.com/"
20 },
21 {
22 "name": "Wilco Fiers",
23 "organization": "Deque Systems, Inc.",
24 "url": "http://deque.com/"
25 },
26 {
27 "name": "Dian Fay",
28 "organization": "Deque Systems, Inc.",
29 "url": "http://deque.com/"
30 },
31 {
32 "name": "Marcy Sutton",
33 "organization": "Deque Systems, Inc.",
34 "url": "http://deque.com/"
35 },
36 {
37 "name": "Ava Gaiety Wroten",
38 "organization": "Deque Systems, Inc.",
39 "url": "http://deque.com/"
40 }
41 ],
42 "homepage": "https://www.deque.com/axe/",
43 "repository": {
44 "type": "git",
45 "url": "https://github.com/dequelabs/axe-core.git"
46 },
47 "keywords": [
48 "Accessibility",
49 "a11y",
50 "testing",
51 "unit",
52 "tdd",
53 "bdd",
54 "axe"
55 ],
56 "main": "axe.js",
57 "typings": "axe.d.ts",
58 "files": [
59 "axe.js",
60 "axe.min.js",
61 "axe.d.ts",
62 "sri-history.json",
63 "locales/",
64 "LICENSE-3RD-PARTY.txt"
65 ],
66 "standard-version": {
67 "scripts": {
68 "postbump": "npm ci && npm run sri-update && git add doc/rule-descriptions.md"
69 },
70 "skip": {
71 "tag": true
72 }
73 },
74 "scripts": {
75 "start": "http-server -a \"\" -p 9876 --silent",
76 "develop": "grunt dev --force",
77 "api-docs": "jsdoc --configure .jsdoc.json",
78 "build": "grunt",
79 "patch": "npx patch-package",
80 "unpatch": "npx patch-package --reverse",
81 "eslint": "eslint --color --format stylish '{lib,test,build,doc}/**/*.js' 'Gruntfile.js' '.github/bin/*.mjs'",
82 "test": "npm run test:tsc && run-s \"test:unit:* -- {@}\" --",
83 "test:tsc": "tsc",
84 "test:unit": "karma start test/karma.conf.js",
85 "test:debug": "npm run test:unit -- --no-single-run --browsers=ChromeDebugging",
86 "test:unit:core": "npm run test:unit -- testDirs=core",
87 "test:unit:commons": "npm run test:unit -- testDirs=commons",
88 "test:unit:rule-matches": "npm run test:unit -- testDirs=rule-matches",
89 "test:unit:checks": "npm run test:unit -- testDirs=checks",
90 "test:unit:api": "npm run test:unit -- testDirs=api",
91 "test:unit:integration": "npm run test:unit -- testDirs=integration",
92 "test:unit:virtual-rules": "npm run test:unit -- testDirs=virtual-rules",
93 "integration": "node test/integration/full/test-webdriver.js",
94 "integration:apg": "mocha --fail-zero test/aria-practices/*.spec.js",
95 "integration:chrome": "npm run integration -- browser=Chrome",
96 "integration:firefox": "npm run integration -- browser=Firefox",
97 "test:integration": "npm run test:integration:chrome",
98 "test:integration:chrome": "start-server-and-test 9876 integration:chrome",
99 "test:integration:firefox": "start-server-and-test 9876 integration:firefox",
100 "test:examples": "node ./doc/examples/test-examples",
101 "test:act": "mocha --fail-zero test/act-rules/*.spec.js",
102 "test:apg": "start-server-and-test 9876 integration:apg",
103 "test:locales": "mocha test/test-locales.js",
104 "test:virtual-rules": "mocha test/test-virtual-rules.js",
105 "test:rule-help-version": "mocha test/test-rule-help-version.js",
106 "test:node": "node test/node/node.js",
107 "test:jsdom": "mocha test/node/jsdom.js",
108 "version": "echo \"use 'npm run release' to bump axe-core version\" && exit 1",
109 "release": "git fetch origin --tags --force && standard-version -a",
110 "rule-gen": "node build/rule-generator",
111 "sri-update": "grunt build && node build/sri-update && git add sri-history.json",
112 "sri-validate": "node build/sri-update --validate",
113 "fmt": "prettier --write .",
114 "fmt:check": "prettier --check .",
115 "prepare": "husky && npm run patch",
116 "prebuild": "node ./build/check-node-version.js",
117 "pretest": "node ./build/check-node-version.js",
118 "postbuild": "prettier --write ./locales/_template.json ./doc/rule-descriptions.md"
119 },
120 "devDependencies": {
121 "@axe-core/webdriverjs": "^4.10.2",
122 "@babel/core": "^7.20.12",
123 "@babel/plugin-proposal-object-rest-spread": "^7.20.7",
124 "@babel/preset-env": "^7.20.2",
125 "@babel/runtime-corejs3": "^7.20.7",
126 "@deque/dot": "^1.1.5",
127 "@types/node": "^4.9.5",
128 "aria-practices": "github:w3c/aria-practices#ce0336bd82d7d3651abcbde86af644197ddbc629",
129 "aria-query": "^5.1.3",
130 "chai": "^4.3.7",
131 "chalk": "^4.x",
132 "chromedriver": "latest",
133 "clean-jsdoc-theme": "^4.2.17",
134 "clone": "^2.1.2",
135 "colorjs.io": "0.4.3",
136 "conventional-commits-parser": "^5.0.0",
137 "core-js": "^3.27.1",
138 "css-selector-parser": "^1.4.1",
139 "emoji-regex": "^10.2.1",
140 "es6-promise": "^4.2.8",
141 "esbuild": "^0.10.x",
142 "eslint": "^9.2.0",
143 "eslint-config-prettier": "^10.0.1",
144 "eslint-plugin-mocha-no-only": "^1.2.0",
145 "execa": "5.x",
146 "glob": "^10.3.10",
147 "globals": "^17.1.0",
148 "grunt": "^1.5.3",
149 "grunt-babel": "^8.0.0",
150 "grunt-bytesize": "^0.2.0",
151 "grunt-contrib-clean": "^2.0.1",
152 "grunt-contrib-concat": "^2.1.0",
153 "grunt-contrib-uglify": "^5.2.2",
154 "grunt-contrib-watch": "^1.1.0",
155 "html-entities": "^2.4.0",
156 "http-server": "^14.1.1",
157 "husky": "^9.0.7",
158 "inquirer": "^8.2.5",
159 "jquery": "^4.0.0",
160 "jsdoc": "^4.0.2",
161 "jsdom": "^28.1.0",
162 "karma": "^6.4.1",
163 "karma-chai": "^0.1.0",
164 "karma-chrome-launcher": "^3.1.1",
165 "karma-firefox-launcher": "^2.1.2",
166 "karma-ie-launcher": "^1.0.0",
167 "karma-mocha": "^2.0.1",
168 "karma-sinon": "^1.0.5",
169 "karma-spec-reporter": "^0.0.36",
170 "lint-staged": "^16.1.0",
171 "memoizee": "^0.4.15",
172 "mocha": "^11.1.0",
173 "node-notifier": "^10.0.1",
174 "npm-run-all": "^4.1.5",
175 "outdent": "^0.8.0",
176 "patch-package": "^8.0.0",
177 "prettier": "^3.0.3",
178 "revalidator": "^0.3.1",
179 "selenium-webdriver": "^4.7.1",
180 "serve-handler": "^6.1.5",
181 "sinon": "^21.0.0",
182 "sri-toolbox": "^0.2.0",
183 "standard-version": "^9.5.0",
184 "start-server-and-test": "^2.0.1",
185 "typedarray": "^0.0.7",
186 "typescript": "^5.2.2",
187 "uglify-js": "^3.17.4",
188 "wcag-act-rules": "github:w3c/wcag-act-rules#5adb55d19eb2cd7fb23213b2d1acedf9004dc063",
189 "weakmap-polyfill": "^2.0.4"
190 },
191 "lint-staged": {
192 "*.{md,json,ts,html}": [
193 "prettier --write"
194 ],
195 "*.{js,mjs}": [
196 "prettier --write",
197 "eslint --fix"
198 ]
199 }
200}
Note: See TracBrowser for help on using the repository browser.