-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.38 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.38 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
{
"name": "accessibility-scanner",
"version": "0.0.0-development",
"description": "Finds potential accessibility gaps, files GitHub issues to track them, and attempts to fix them with Copilot",
"scripts": {
"test": "vitest run tests/*.test.ts .github/actions/**/tests/*.test.ts",
"lint": "eslint '.github/actions/**/src/**/*.ts' 'tests/**/*.ts' '.github/actions/**/tests/**/*.ts'",
"format": "prettier --write '.github/actions/**/src/**/*.ts' 'tests/**/*.ts' '.github/actions/**/tests/**/*.ts'",
"format:check": "prettier --check '.github/actions/**/src/**/*.ts' 'tests/**/*.ts' '.github/actions/**/tests/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/github/accessibility-scanner.git"
},
"author": "GitHub Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/github/accessibility-scanner/issues"
},
"homepage": "https://github.com/github/accessibility-scanner#readme",
"type": "module",
"prettier": "@github/prettier-config",
"devDependencies": {
"@actions/core": "^3.0.0",
"@github/prettier-config": "^0.0.6",
"@octokit/core": "^7.0.6",
"@octokit/plugin-throttling": "^11.0.3",
"@octokit/types": "^16.0.0",
"@types/node": "^25.3.3",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
}
}