-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 889 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 889 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
27
28
29
30
31
32
{
"name": "accessibility-alt-text-bot",
"version": "1.0.0",
"description": "Reminds users to write alt texts in issues and prs.",
"main": "index.js",
"type": "module",
"scripts": {
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/github/accessibility-alt-text-bot.git"
},
"author": "kendallgassner",
"license": "ISC",
"bugs": {
"url": "https://github.com/github/accessibility-alt-text-bot/issues"
},
"homepage": "https://github.com/github/accessibility-alt-text-bot#readme",
"dependencies": {
"@github/markdownlint-github": "^0.8.3",
"js-yaml": "^5.4.2",
"markdown-it": "^15.0.2",
"markdownlint": "^0.41.1"
},
"devDependencies": {
"vitest": "^5.0.1"
},
"overrides": {
"postcss": "8.5.23"
}
}