-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
126 lines (126 loc) · 2.69 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "eventb",
"displayName": "Event-B Language Support",
"icon": "icon.jpg",
"publisher": "GlgCorp",
"description": "Event-B compiler, autocompletion, syntax highlighting, and snippets",
"version": "3.1.2",
"repository": {
"type": "git",
"url": "https://github.com/glg-corp/eventb-vscode-extension"
},
"engines": {
"vscode": "^1.33.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:eventb-machine",
"onLanguage:eventb-context",
"onCommand:eventb.initProject"
],
"main": "./client/src/extension",
"contributes": {
"languages": [
{
"id": "eventb-context",
"aliases": [
"Event-B Context File"
],
"extensions": [
".bc"
],
"configuration": "./language-configuration.json"
},
{
"id": "eventb-machine",
"aliases": [
"Event-B Machine file"
],
"extensions": [
".bm"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "eventb-machine",
"scopeName": "source.eventb.machine",
"path": "./syntaxes/eventb-machine.tmLanguage.json"
},
{
"language": "eventb-context",
"scopeName": "source.eventb.context",
"path": "./syntaxes/eventb-context.tmLanguage.json"
}
],
"snippets": [
{
"language": "eventb-machine",
"path": "./snippets/eventb-machine.json"
},
{
"language": "eventb-context",
"path": "./snippets/eventb-context.json"
}
],
"commands": [
{
"command": "eventb.compileCurrentFile",
"title": "Compile current file to XML",
"category": "Event-B"
},
{
"command": "eventb.initProject",
"title": "New Project",
"category": "Event-B"
},
{
"command": "eventb.openInRodin",
"title": "Open in Rodin Platform",
"category": "Event-B"
}
],
"keybindings": [
{
"command": "eventb.compileCurrentFile",
"when": "editorLangId == eventb-machine || editorLangId == eventb-context",
"key": "f5"
}
],
"menus": {
"commandPalette": [
{
"command": "eventb.compileCurrentFile",
"when": "editorLangId == eventb-machine || editorLangId == eventb-context"
},
{
"command": "eventb.openInRodin",
"when": "eventb:project_loaded"
}
]
},
"configuration": {
"type": "object",
"title": "Event-B",
"properties": {
"eventb.pathToRodinExecutable": {
"type": "string",
"default": "rodin",
"description": "Path to the rodin executable.",
"scope": "window"
}
}
}
},
"__metadata": {
"id": "2973ccc1-039d-45e5-8984-3e5c6cac9c66",
"publisherDisplayName": "GlgCorp",
"publisherId": "582ccdb4-052f-4ad2-b2a1-774d495b25e8"
},
"dependencies": {
"xmlbuilder": "^14.0.0"
}
}