-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.51 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.51 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
{
"name": "html5-boilerplate",
"displayName": "HTML Boilerplate",
"publisher": "sidthesloth",
"description": "A basic HTML5 boilerplate snippet generator.",
"version": "1.1.1",
"license": "MIT",
"icon": "images/icon.png",
"galleryBanner": {
"color": "#505050",
"theme": "dark"
},
"engines": {
"vscode": "^0.10.x"
},
"homepage": "https://github.com/sidthesloth92/vsc_html5_boilerplate/blob/master/README.md",
"bugs": {
"url": "https://github.com/sidthesloth92/vsc_html5_boilerplate/issues",
"email": "sidthesloth92@hotmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/sidthesloth92/vsc_html5_boilerplate.git"
},
"categories": [
"Snippets"
],
"keywords": [
"html",
"html5",
"snippet",
"snippets",
"boilerplate"
],
"contributes": {
"snippets": [
{
"language": "html",
"path": "./snippets/html.json"
},
{
"language": "php",
"path": "./snippets/html.json"
},
{
"language": "ruby",
"path": "./snippets/html.json"
},
{
"language": "njk",
"path": "./snippets/html.json"
},
{
"language": "django-html",
"path": "./snippets/html.json"
}
]
}
}