-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
121 lines (121 loc) · 3.95 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
{
"name": "alrunner",
"displayName": "ALRunner",
"description": "Can run AL objects and a bit more",
"version": "3.3.3",
"publisher": "tfenster",
"repository": "https://github.com/tfenster/ALRunner",
"engines": {
"vscode": "^1.62.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.runSelection",
"onCommand:extension.runFirstObject",
"onCommand:extension.publishAndRunSelection",
"onCommand:extension.publishAndRunFirstObject",
"onCommand:extension.generateAPIClient",
"onCommand:extension.generateObjectsFromURL",
"onCommand:extension.generateObjectsFromEditor",
"onCommand:extension.goAzure",
"onCommand:extension.convertXlf",
"onCommand:extension.exportDiagnostics",
"workspaceContains:initializeme.alrunner"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.runSelection",
"title": "ALRunner: Run selection"
},
{
"command": "extension.runFirstObject",
"title": "ALRunner: Run object on first line"
},
{
"command": "extension.publishAndRunSelection",
"title": "ALRunner: Publish and run selection"
},
{
"command": "extension.publishAndRunFirstObject",
"title": "ALRunner: Publish and run object on first line"
},
{
"command": "extension.generateObjectsFromURL",
"title": "ALRunner: Generate objects by parsing a JSON object from a URL"
},
{
"command": "extension.generateObjectsFromEditor",
"title": "ALRunner: Generate objects by parsing a JSON object in the current selection"
},
{
"command": "extension.goAzure",
"title": "ALRunner: Go API on Azure!"
},
{
"command": "extension.generateAPIClient",
"title": "ALRunner: Generate an API client for Business Central"
},
{
"command": "extension.convertXlf",
"title": "ALRunner: Convert generated xlf to real one"
},
{
"command": "extension.exportDiagnostics",
"title": "ALRunner: Export diagnostics"
}
],
"keybindings": [
{
"command": "extension.runSelection",
"key": "alt+r",
"mac": "cmd+r",
"when": "editorTextFocus"
},
{
"command": "extension.runFirstObject",
"key": "shift+alt+r",
"mac": "shift+cmd+r",
"when": "editorTextFocus"
},
{
"command": "extension.publishAndRunSelection",
"key": "alt+p",
"mac": "cmd+p",
"when": "editorTextFocus"
},
{
"command": "extension.publishAndRunFirstObject",
"key": "shift+alt+p",
"mac": "shift+cmd+p",
"when": "editorTextFocus"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "^6.14.6",
"mocha": "^5.2.0",
"typescript": "^4.0.0",
"@types/vscode": "^1.30.0"
},
"dependencies": {
"azure-arm-resource": "^3.1.0-preview",
"download-file": "^0.1.5",
"ms-rest": "^2.5.0",
"ms-rest-azure": "^2.6.0",
"opn": "^4.0.2",
"request": "^2.83.0"
},
"extensionDependencies": [
"humao.rest-client"
]
}