-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
43 lines (43 loc) · 1.13 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
{
"name": "mustache",
"displayName": "Mustache",
"description": "Syntax highlighting for mustache",
"version": "1.1.1",
"publisher": "dawhite",
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Languages"
],
"repository": {
"type": "git",
"url": "https://github.com/danwhite85/vscode-mustache-syntax-highlighting"
},
"contributes": {
"languages": [{
"id": "mustache",
"aliases": [
"Mustache (HTML)",
"mustache"
],
"extensions": [
".mustache",
".mst",
".mu",
".stache"
],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "mustache",
"scopeName": "source.mustache",
"path": "./syntaxes/mustache.tmLanguage"
}]
},
"__metadata": {
"id": "a831e395-d150-46aa-8644-3027af1c5b36",
"publisherId": "5c25604e-7ca1-444e-9299-4d05580629a8",
"publisherDisplayName": "Dan White"
}
}