-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 586 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 586 Bytes
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
{
"name": "@accessibility-everywhere/cli",
"version": "1.0.0",
"description": "Command-line tool for accessibility scanning",
"main": "src/cli.js",
"type": "module",
"bin": {
"a11y-scan": "src/cli.js",
"accessibility-scan": "src/cli.js"
},
"scripts": {
"start": "node src/cli.js",
"test": "jest"
},
"dependencies": {
"@accessibility-everywhere/scanner": "^1.0.0",
"commander": "^11.1.0",
"chalk": "^4.1.2",
"ora": "^5.4.1",
"cli-table3": "^0.6.3",
"fs-extra": "^11.2.0"
},
"devDependencies": {
"jest": "^29.7.0"
}
}