forked from bmarkovic/vscode-haproxy-syntax
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1003 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
44
45
46
47
48
49
50
51
52
{
"name": "haproxy",
"displayName": "HAProxy",
"description": "HAProxy Configuration Syntax Highlighter and Snippets",
"version": "0.1.2",
"publisher": "bmarkovic",
"engines": {
"vscode": "^1.32.3"
},
"categories": [
"Languages",
"Snippets"
],
"contributes": {
"languages": [
{
"id": "haproxy",
"aliases": [
"HAProxy",
"haproxy",
"Haproxy"
],
"extensions": [
"haproxy.cfg"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "haproxy",
"scopeName": "source.haproxy",
"path": "./syntaxes/Haproxy.tmLanguage"
}
],
"snippets": [
{
"language": "haproxy",
"path": "./snippets/snippets.json"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/bmarkovic/vscode-haproxy.git"
},
"__metadata": {
"id": "9e9271b1-9234-4261-a069-c256db50fb2c",
"publisherDisplayName": "Bojan Markovic",
"publisherId": "d46cf0bb-cd24-4a08-b329-3d53317f53d7"
}
}