-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 905 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
{
"name": "fortigate-language-support",
"displayName": "FortiGate Language Support",
"description": "Syntax highlighting for FortiGate configuration",
"version": "1.1.7",
"publisher": "tinyboxvk",
"license": "MIT",
"homepage": "https://github.com/tinyboxvk/FortiGate-Language-Support",
"repository": {
"type": "git",
"url": "https://github.com/tinyboxvk/FortiGate-Language-Support"
},
"icon": "icon.png",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "fortigate",
"aliases": ["FortiGate", "fortigate", "fortios"],
"extensions": [".conf", ".fgt"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "fortigate",
"scopeName": "source.fortigate",
"path": "./syntaxes/fortigate.tmLanguage.json"
}]
}
}