-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
53 lines (53 loc) · 931 Bytes
/
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
{
"name": "Handlebars",
"description": "Handlebars Visual Studio Code",
"version": "0.4.1",
"publisher": "andrejunges",
"engines": {
"vscode": "^0.10.1"
},
"icon": "images/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/andrejunges/vscode-handlebars"
},
"galleryBanner": {
"color": "#0F6378",
"theme": "dark"
},
"categories": [
"Languages",
"Snippets"
],
"contributes": {
"languages": [
{
"id": "handlebars",
"aliases": [
"Handlebars",
"handlebars"
],
"extensions": [
".handlebars",
".hbr",
".hbs",
".tpl"
],
"configuration": "./handlebars.configuration.json"
}
],
"grammars": [
{
"language": "handlebars",
"scopeName": "text.html.handlebars",
"path": "./syntaxes/handlebars.tmLanguage"
}
],
"snippets": [
{
"language": "handlebars",
"path": "./snippets/snippets.json"
}
]
}
}