-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.3 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
{
"name": "perch-language-support",
"displayName": "Perch Language Support",
"description": "Language Support for the Perch CMS Template files",
"version": "1.1.0",
"publisher": "lachieh",
"engines": {
"vscode": "^1.25.0"
},
"license": "MIT",
"author": {
"email": "[email protected]",
"name": "Lachlan Heywood",
"url": "http://hellotimber.com"
},
"repository": {
"type": "git",
"url": "https://github.com/lachieh/perch-language-support"
},
"bugs": {
"url": "https://github.com/lachieh/perch-language-support/issues"
},
"categories": [
"Programming Languages",
"Snippets"
],
"keywords": [
"snippet",
"perch",
"language"
],
"preview": false,
"homepage": "https://github.com/lachieh/perch-language-support",
"icon": "images/logo.png",
"galleryBanner": {
"color": "#9fc7dd"
},
"contributes": {
"grammars": [
{
"scopeName": "text.html.perch",
"injectTo": [
"text.html.basic",
"text.html.derivative",
"source.js"
],
"path": "./syntaxes/perch.tmLanguage.json"
}
]
}
}