-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
241 lines (241 loc) · 7.26 KB
/
package.json
File metadata and controls
241 lines (241 loc) · 7.26 KB
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
{
"name": "vscode-qlik",
"version": "0.0.0",
"publisher": "q-masters",
"author": "q-masters",
"engines": {
"vscode": "^1.45.1"
},
"license": "MIT",
"displayName": "vscode4qlik",
"description": "VSCode Extension for better Qlik App Development",
"categories": [
"Programming Languages",
"Debuggers",
"Other"
],
"keywords": [
"qlik",
"vscode"
],
"galleryBanner": {
"color": "#70B44B",
"theme": "dark"
},
"preview": false,
"main": "./dist/extension.js",
"activationEvents": [
"*"
],
"markdown": "github",
"qna": "https://github.com/q-masters/vscode-qlik/issues",
"icon": "vscode4qlik.png",
"repository": {
"type": "git",
"url": "https://github.com/q-masters/vscode-qlik.git"
},
"bugs": {
"url": "https://github.com/q-masters/vscode-qlik/issues"
},
"homepage": "https://github.com/q-masters/vscode-qlik",
"contributes": {
"commands": [
{
"command": "VsQlik.Connection.Create",
"title": "Connect to Qlik Server",
"category": "VsQlik"
},
{
"command": "VsQlik.Connection.Settings",
"title": "Show Connection Settings",
"category": "VsQlik"
},
{
"command": "VsQlik.Script.LoadData",
"title": "Run script and refresh app data from data sources",
"category": "VsQlik",
"icon": {
"light": "./projects/media/icons/load-data.light.svg",
"dark": "./projects/media/icons/load-data.dark.svg"
},
"enablement": "VsQlik.Script.DataLoadState != progressing"
},
{
"command": "VsQlik.Script.StopLoadData",
"title": "Cancel current reload data",
"category": "VsQlik",
"icon": {
"light": "./projects/media/icons/stop-load-data.light.svg",
"dark": "./projects/media/icons/stop-load-data.dark.svg"
},
"enablement": "VsQlik.Script.DataLoadState == progressing"
}
],
"configuration": [
{
"title": "Visual Studio Qlik",
"properties": {
"VsQlik.Developer": {
"title": "Settings for develop vsqlik extension",
"description": "vscode developer settings",
"type": "object"
},
"VsQlik.Logger": {
"title": "Settings for develop vsqlik extension",
"description": "vscode developer settings",
"type": "object",
"default": {
"vscodeOutputChannel": {
"level": "off"
},
"fileChannel": {
"level": "off",
"outDir": ""
}
}
},
"VsQlik.Servers": {
"title": "A list of file locations to load SSH FS configurations from",
"description": "Location of JSON files to load configs from",
"type": "array",
"items": true,
"default": [
{
"label": "Localhost",
"connection": {
"host": "127.0.0.1",
"path": null,
"port": null,
"secure": true,
"allowUntrusted": false,
"authorization": {
"strategy": 1,
"data": {
"domain": "",
"password": ""
}
}
},
"renderer": 1,
"display": {
"dimensions": true,
"measures": true,
"script": true,
"sheets": true,
"variables": true,
"visualization": true
}
}
]
}
}
}
],
"extensionPack": [
"q-masters.electron-vscode"
],
"extensionDependencies": [
"q-masters.electron-vscode"
],
"menus": {
"editor/title": [
{
"command": "VsQlik.Script.StopLoadData",
"group": "navigation",
"when": "resourceScheme == 'qix' && resourceFilename == 'main.qvs' && !isInDiffEditor"
},
{
"command": "VsQlik.Script.LoadData",
"group": "navigation",
"when": "resourceScheme == 'qix' && resourceFilename == 'main.qvs' && !isInDiffEditor"
}
],
"commandPalette": [
{
"command": "VsQlik.Script.LoadData",
"when": "resourceScheme == 'qix' && resourceFilename == 'main.qvs' && !isInDiffEditor"
}
]
},
"viewsContainers": {
"panel": [
{
"id": "vsqlik-load-data",
"title": "VsQlik Load Data",
"icon": ""
}
]
}
},
"scripts": {
"copyreadme": "copyfiles ../README.md ./README.md",
"clear": "rimraf ./out",
"compile": "npm run build -- --skipLibCheck",
"watch": "npm run build -- -watch -p ./",
"build": "npm run clear && npm run webpack",
"webpack": "webpack --config ./bin/webpack.conf.js",
"postinstall": "npm i --prefix ./projects/media/webview",
"postbuild": "npm run webview:build",
"webview:build": "npm run build --prefix ./projects/media/webview -- --prod",
"postwebview:build": "node ./bin/webapp-finalize.js",
"webview:dev": "npm start --prefix ./projects/media/webview -- --configuration browser",
"vscode:prepublish": "npm run build -- --mode=production && npm run copyreadme",
"lint": "npm run lint:extension && npm run lint:webview",
"lint:extension": "node bin/eslint-reporter './projects/extension/**/*.ts'",
"lint:webview": "npm run lint --prefix ./projects/media/webview",
"test": "mocha --reporter spec -r ts-node/register -r tsconfig-paths/register ./test/**/*.spec.ts",
"test:watch": "npm test -- --watch --watch-files test --watch-files extension --watch-files core",
"vsce:publish": "./node_modules/.bin/vsce publish",
"vsce:package": "./node_modules/.bin/vsce package",
"tsc": "tsc -p ./tsconfig.json"
},
"devDependencies": {
"@types/chai": "4.2.18",
"@types/enigma.js": "2.2.1",
"@types/node": "15.0.2",
"@types/node-fetch": "^2.5.10",
"@types/qlik-engineapi": "12.67.9",
"@types/request": "2.48.5",
"@types/sinon": "10.0.0",
"@types/triple-beam": "^1.3.2",
"@types/vscode": "1.45.1",
"@types/ws": "7.4.4",
"@typescript-eslint/eslint-plugin": "4.0.0",
"@typescript-eslint/parser": "3.10.1",
"chai": "4.3.4",
"chalk": "4.1.1",
"copy-webpack-plugin": "^8.1.1",
"copyfiles": "2.4.1",
"deepmerge": "4.2.2",
"electron": "^12.0.6",
"eslint": "7.26.0",
"html-loader": "2.1.2",
"minimist": "1.2.5",
"mocha": "8.4.0",
"rimraf": "3.0.2",
"sinon": "10.0.0",
"ts-loader": "9.1.2",
"ts-node": "9.1.1",
"tsconfig-paths": "3.9.0",
"tsconfig-paths-webpack-plugin": "3.5.1",
"tslint": "6.1.3",
"typescript": "4.2.4",
"vsce": "1.88.0",
"webpack": "^5.37.0",
"webpack-cli": "4.7.0"
},
"dependencies": {
"enigma.js": "2.7.3",
"lodash": "^4.17.21",
"node-fetch": "^2.6.1",
"object-hash": "2.1.1",
"reflect-metadata": "^0.1.13",
"request": "2.88.2",
"rxjs": "^7.5.1",
"tsyringe": "^4.5.0",
"winston": "^3.3.3",
"winston-transport": "^4.4.0",
"ws": "7.4.5",
"yaml": "1.10.2"
}
}