forked from intuit/accessibility-snippets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.39 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "accessibility-snippets",
"displayName": "accessibility-snippets",
"description": "snippets to help create accessible code",
"author": {
"name": "Kendall Gassner",
"email": "[email protected]"
},
"version": "0.10.0",
"icon": "media/hand-intuit-logo.png",
"engines": {
"vscode": "^1.53.0"
},
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "css",
"path": "./snippets/css-snippets.code-snippets"
},
{
"language": "typescriptreact",
"path": "./snippets/react-snippets.code-snippets"
},
{
"language": "javascriptreact",
"path": "./snippets/react-snippets.code-snippets"
}
]
},
"scripts": {
"release": "auto shipit -vv",
"labelCheck": "auto pr-check"
},
"publisher": "accessibility-snippets",
"devDependencies": {
"@auto-it/all-contributors": "^10.16.6",
"@auto-it/vscode": "^10.16.6",
"auto": "^10.16.6"
},
"repository": {
"type": "git",
"url": "https://github.com/intuit/accessibility-snippets.git"
},
"auto": {
"plugins": [
"npm",
"all-contributors",
"vscode"
]
}
}