forked from sixty4k/st2-zonefile
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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
{
"name": "vscode-zonefile",
"displayName": "vscode-zonefile",
"description": "Bind Zone File syntax highlighting",
"version": "0.0.4",
"publisher": "Compilenix",
"author": {
"email": "Compilenix@gmail.com",
"name": "Compilenix",
"url": "https://compilenix.org/"
},
"contributors": [
{
"email": "pcfens@wm.edu",
"name": "Phil Fenstermacher",
"url": "https://github.com/pcfens"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/compilenix/vscode-zonefile"
},
"bugs": {
"url": "https://github.com/compilenix/vscode-zonefile/issues"
},
"engines": {
"vscode": "^1.15.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "zone",
"aliases": ["Bind9 DNS Zone", "zone"],
"extensions": [".zone", ".signed", ".db", ".dns"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "zone",
"scopeName": "text.zone_file",
"path": "./syntaxes/zone.tmLanguage.json"
}]
}
}