-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 890 Bytes
/
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
{
"name": "@double-great/accessibility-scan-action",
"version": "0.5.0",
"description": "Scan a website for accessibility issues using axe-core rules engine and Accessibility Insights",
"main": "dist/index.js",
"type": "module",
"scripts": {
"pretest": "eslint .",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"build": "tsc"
},
"author": "@double-great",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/jest": "^29.5.14",
"eslint": "^9.18.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"accessibility-insights-report": "^6.0.0",
"accessibility-insights-scan": "^3.1.0",
"inversify": "^6.2.1"
}
}