forked from ttsukagoshi/axe-scan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.63 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
{
"name": "axe-scan",
"version": "2.0.1",
"description": "A CLI tool to test web accessibility on multiple web pages based on a list of URLs in a text file.",
"type": "module",
"engines": {
"node": ">=16.0.0"
},
"exports": "./build/src/index.js",
"main": "build/src/index.js",
"bin": {
"axe-scan": "build/src/index.js"
},
"files": [
"docs",
"build/src"
],
"scripts": {
"build": "npx tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ttsukagoshi/axe-scan.git"
},
"keywords": [
"a11y",
"axe-core",
"cli",
"puppeteer",
"web-accessibility-tool"
],
"author": "ttsukagoshi",
"license": "MIT",
"bugs": {
"url": "https://github.com/ttsukagoshi/axe-scan/issues"
},
"homepage": "https://github.com/ttsukagoshi/axe-scan#readme",
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@types/inquirer": "^9.0.3",
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.59.2",
"babel-jest": "^29.5.0",
"babel-plugin-transform-import-meta": "^2.2.0",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
},
"dependencies": {
"@axe-core/puppeteer": "^4.7.3",
"commander": "^11.0.0",
"csv-parse": "^5.4.0",
"inquirer": "^9.2.7",
"loud-rejection": "^2.2.0",
"ora": "^6.3.0",
"read-pkg-up": "^10.0.0"
}
}