This repository has been archived by the owner on Jul 1, 2018. It is now read-only.
forked from adrhumphreys/vscode-silverstripe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.48 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
52
53
54
55
56
57
58
59
60
{
"name": "silverstripe",
"displayName": "SilverStripe",
"description": "Syntax highlighter for SilverStripe template files (.ss)",
"icon": "images/icon.png",
"version": "0.0.3",
"publisher": "adrian",
"author": "adrian",
"license": "MIT",
"bugs": {
"url": "https://github.com/adrhumphreys/vscode-silverstripe/issues",
"email": "[email protected]"
},
"engines": {
"vscode": "^1.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/adrhumphreys/vscode-silverstripe.git"
},
"categories": [
"Languages",
"Snippets"
],
"keywords": [
"php",
"silverstripe",
"html",
"template"
],
"contributes": {
"languages": [
{
"id": "SilverStripe",
"aliases": [
"HTML(SilverStripe)",
"SilverStripe"
],
"extensions": [".ss"]
}
],
"grammars": [
{
"language": "SilverStripe",
"scopeName": "text.html.ss",
"path": "./syntax/silverstripe.tmLanguage"
}
],
"snippets": [
{
"language": "SilverStripe",
"path": "./snippets/silverstripe-ss.json"
},
{
"language": "php",
"path" : "./snippets/silverstripe-php.json"
}
]
}
}