-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 909 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
{
"name": "vscode-yacc",
"displayName": "Bison & Yacc",
"description": "Syntax highlighting for Bison and Yacc in VSCode",
"version": "1.0.1",
"publisher": "se2dev",
"author": {
"name": "SE2Dev"
},
"repository": {
"type": "git",
"url": "https://github.com/SE2Dev/vscode-yacc.git"
},
"engines": {
"vscode": "^0.10.6"
},
"categories": [
"Languages"
],
"contributes": {
"languages": [
{
"id": "yacc",
"aliases": [
"Yacc",
"yacc"
],
"extensions": [
".y",
".yy",
".ypp",
".yxx",
".y++",
".bison",
".BISON"
],
"configuration": "./yacc.configuration.json"
}
],
"grammars": [
{
"language": "yacc",
"scopeName": "source.yacc",
"path": "./syntaxes/yacc.json"
}
]
}
}