-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 919 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
{
"name": "riot-tag",
"displayName": "Riot-Tag",
"description": "Riot Tag Syntax Highlighting for Riot.js HTML,JADE and Coffeescript",
"version": "0.1.8",
"icon": "images/icon.png",
"publisher": "crisward",
"engines": {
"vscode": "^0.10.6"
},
"repository": {
"type": "git",
"url": "https://github.com/crisward/riot-tag"
},
"categories": [
"Languages"
],
"homepage": "https://github.com/crisward/riot-tag",
"bugs": {
"url": "https://github.com/crisward/riot-tag/issues"
},
"contributes": {
"languages": [
{
"id": "riot",
"aliases": [
"Riot"
],
"extensions": [
".tag"
],
"configuration": "./riot.configuration.json"
}
],
"grammars": [
{
"language": "riot",
"scopeName": "source.jade.riot",
"path": "./syntaxes/riot.tmLanguage"
}
]
}
}