-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.05 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
{
"name": "timoideas-snippets",
"displayName": "Timoideas - Snippets",
"description": "Snippets para Javascript, CSS, HTML, GRAPQL",
"version": "0.1.3",
"engines": {
"vscode": "^1.12.0"
},
"icon": "images/icon.png",
"publisher": "FernandoTimo",
"author": {
"name": "Fernando Timo"
},
"license": "MIT",
"homepage": "https://github.com/FernandoTimo/vsCode-Themes/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/FernandoTimo/vsCode-Themes"
},
"bugs": {
"url": "https://github.com/FernandoTimo/vsCode-Themes/issues"
},
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "javascript",
"path": "./snippets/javascript.code-snippets"
},
{
"language": "css",
"path": "./snippets/css.code-snippets"
},
{
"language": "html",
"path": "./snippets/html.code-snippets"
},
{
"language": "gql",
"path": "./snippets/graphql.code-snippets"
}
]
}
}