-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
165 lines (165 loc) · 4.26 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
{
"name": "hets-ide",
"publisher": "spechub",
"displayName": "Hets IDE",
"description": "Hets IDE can display the development graph of an opened specification file.",
"version": "0.0.5",
"icon": "resources/icon.png",
"keywords": [
"hets",
"dol",
"spechub",
"casl",
"owl"
],
"bugs": {
"url": "https://github.com/spechub/Hets-IDE/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/spechub/Hets-IDE.git"
},
"homepage": "https://github.com/spechub/Hets-IDE",
"engines": {
"vscode": "^1.40.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./dist/extension/extension.js",
"contributes": {
"commands": [
{
"command": "hets-ide.loadFile",
"title": "Hets IDE: Load development graph for File"
},
{
"command": "hets-ide.prove",
"title": "Hets IDE: Prove selected Node"
}
],
"keybindings": [
{
"command": "hets-ide.loadFile",
"key": "ctrl+alt+g"
},
{
"command": "hets-ide.prove",
"key": "ctrl+alt+p"
}
],
"configuration": {
"type": "object",
"title": "Hets-IDE",
"properties": {
"hets-ide.server.hostname": {
"type": "string",
"default": "localhost",
"description": "The hostname (or ip address) Hets is running on."
},
"hets-ide.server.port": {
"type": "number",
"default": 8000,
"description": "The port Hets is listening on."
},
"hets-ide.server.container-name": {
"type": "string",
"default": "spechub2/hets",
"description": "The name of the Docker container to be used when running the Hets server."
},
"hets-ide.prover.timeout": {
"type": "number",
"default": 5,
"description": "The time until proving is stopped in seconds."
},
"hets-ide.prover.commands": {
"type": "string",
"default": "auto/full-theories/full-signatures",
"description": "Additional commands that can be applied to the graph."
}
}
},
"languages": [
{
"id": "dol",
"extensions": [
".dol"
]
},
{
"id": "casl",
"extensions": [
".casl"
]
},
{
"id": "het",
"extensions": [
".het"
]
}
],
"grammars": [
{
"language": "dol",
"scopeName": "source.dol",
"path": "./syntaxes/dol.tmGrammar.json"
},
{
"language": "casl",
"scopeName": "source.dol",
"path": "./syntaxes/dol.tmGrammar.json"
},
{
"language": "het",
"scopeName": "source.dol",
"path": "./syntaxes/dol.tmGrammar.json"
}
],
"taskDefinitions": [
{
"type": "hets-server"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "npm run compile:extension && npm run compile:webview",
"compile:extension": "webpack --config webpack.config.js --mode production",
"compile:webview": "webpack --config webpack.webview.config.js --mode production",
"compile-dev": "npm run compile-dev:extension && npm run compile-dev:webview",
"compile-dev:extension": "webpack --config webpack.config.js --mode development",
"compile-dev:webview": "webpack --config webpack.webview.config.js --mode development",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/d3": "^4.13.0",
"@types/dagre-d3": "^0.4.37",
"@types/react": "^16.3.14",
"@types/react-dom": "^16.0.5",
"@types/react-redux": "^6.0.0",
"@types/request": "^2.48.1",
"@types/request-promise-native": "^1.0.16",
"@types/vscode": "^1.40.0",
"ts-loader": "^5.4.3",
"tslint": "^5.12.1",
"typescript": "^3.3.1",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"vsce": "^1.63.0"
},
"dependencies": {
"d3": "^4.13.0",
"dagre": "^0.8.2",
"dagre-d3": "^0.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.7"
}
}