-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 918 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
{
"name": "vscode-bnf",
"displayName": "BNF & EBNF Highlighting",
"description": "BNF for Visual Studio Code",
"version": "0.0.1",
"publisher": "Vallentin",
"engines": {
"vscode": "^1.32.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Vallentin/vscode-bnf.git"
},
"homepage": "https://github.com/Vallentin/vscode-bnf",
"bugs": {
"url": "https://github.com/Vallentin/vscode-bnf/issues"
},
"categories": [
"Programming Languages"
],
"keywords": [
"bnf",
"ebnf",
"syntax-highlighting"
],
"license": "MIT",
"contributes": {
"languages": [
{
"id": "bnf",
"aliases": [
"BNF",
"bnf",
"ebnf"
],
"extensions": [
".bnf",
".ebnf"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "bnf",
"scopeName": "source.bnf",
"path": "./syntaxes/bnf.tmLanguage.json"
}
]
}
}