-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
133 lines (133 loc) · 3.68 KB
/
Copy pathpackage.json
File metadata and controls
133 lines (133 loc) · 3.68 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
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "a11y-shiftleft-cli",
"version": "0.8.1",
"description": "Visual accessibility audit CLI for web apps using axe, Playwright, Lighthouse, and WCAG metadata.",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/olboyarshinova/a11y-shiftleft-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/olboyarshinova/a11y-shiftleft-cli.git"
},
"bugs": {
"url": "https://github.com/olboyarshinova/a11y-shiftleft-cli/issues"
},
"keywords": [
"accessibility",
"a11y",
"wcag",
"wcag22",
"axe",
"playwright",
"visual-report",
"eslint",
"github-actions",
"ci",
"developer-tools"
],
"bin": {
"a11y-shiftleft": "bin/cli.js",
"a11y-shiftleft-cli": "bin/cli.js"
},
"workspaces": [
"packages/*"
],
"files": [
"bin/",
"dist/",
"scripts/post-a11y-comment.js",
"scripts/verify-fixtures.js",
"scripts/analyze-metrics.js",
"scripts/collect-adoption-metrics.js",
"scripts/collect-adoption-snapshot.js",
"scripts/clean-dist.js",
"examples/",
"data/",
"docs/",
"CHANGELOG.md",
"LICENSE",
"README.md",
"package.json"
],
"engines": {
"node": ">=18"
},
"scripts": {
"demo": "vite --host localhost",
"build:demo": "vite build",
"clean:dist": "node scripts/clean-dist.js",
"build": "npm run clean:dist && tsc",
"build:test": "tsc -p tsconfig.test.json",
"test": "npm run build && npm run build:test && node --test \"dist-test/**/*.test.js\"",
"test:fixtures": "node scripts/verify-fixtures.js",
"analyze:metrics": "node scripts/analyze-metrics.js",
"collect:adoption": "node scripts/collect-adoption-metrics.js",
"collect:adoption:snapshot": "node scripts/collect-adoption-snapshot.js",
"prepack": "npm test",
"audit": "node bin/cli.js audit",
"check": "node bin/cli.js check",
"explore": "node bin/cli.js explore",
"init": "node bin/cli.js init",
"ci": "node bin/cli.js ci",
"doctor": "node bin/cli.js doctor",
"dashboard": "node bin/cli.js dashboard",
"keyboard": "node bin/cli.js keyboard",
"watch": "node bin/cli.js watch",
"ticket": "node bin/cli.js ticket",
"pr-comment": "node bin/cli.js pr-comment",
"post-a11y-comment": "node scripts/post-a11y-comment.js"
},
"dependencies": {
"@axe-core/playwright": "^4.10.2",
"@octokit/rest": "^21.1.1",
"commander": "^12.1.0",
"csv-parse": "^6.2.1",
"csv-stringify": "^6.5.2",
"eslint": "^9.17.0",
"playwright": "^1.49.1"
},
"peerDependencies": {
"@angular-eslint/eslint-plugin-template": ">=19",
"@angular-eslint/template-parser": ">=19",
"eslint-plugin-jsx-a11y": ">=6",
"eslint-plugin-vue": ">=9",
"lighthouse": ">=12"
},
"peerDependenciesMeta": {
"@angular-eslint/eslint-plugin-template": {
"optional": true
},
"@angular-eslint/template-parser": {
"optional": true
},
"eslint-plugin-jsx-a11y": {
"optional": true
},
"eslint-plugin-vue": {
"optional": true
},
"lighthouse": {
"optional": true
}
},
"devDependencies": {
"@angular-eslint/eslint-plugin": "^19.0.2",
"@angular-eslint/eslint-plugin-template": "^21.4.0",
"@angular-eslint/template-parser": "^21.4.0",
"@types/node": "^22.19.19",
"@vitejs/plugin-react": "^4.3.4",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-vue": "^9.32.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^5.9.3",
"vite": "^6.0.5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue,html}": [
"a11y-shiftleft check --static --out reports"
]
}
}