-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.35 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
{
"name": "ragel",
"displayName": "Ragel Support",
"description": "Syntax highlighting, snippets support for Ragel State Machine Compiler",
"version": "0.0.1",
"publisher": "pnck",
"engines": {
"vscode": "^0.10.0"
},
"keywords": [
"language",
"ragel",
"highlight",
"syntax"
],
"homepage": "https://github.com/pnck/vsc_extension_ragel",
"repository": {
"type": "git",
"url": "https://github.com/pnck/vsc_extension_ragel.git"
},
"bugs": {
"url": "https://github.com/pnck/vsc_extension_ragel/issues",
"email": "[email protected]"
},
"categories": [
"Programming Languages",
"Snippets"
],
"contributes": {
"languages": [
{
"id": "ragel",
"aliases": [
"Ragel",
"ragel"
],
"extensions": [
".rl",
".ragel"
],
"configuration": "./ragel-configuration.json"
}
],
"grammars": [
{
"language": "ragel",
"scopeName": "source.ragel",
"path": "./syntaxes/ragel.tmLanguage.json"
}
],
"snippets": [
{
"language": "ragel",
"path": "./snippets/ragel-snippets.json"
}
]
}
}