-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
198 lines (198 loc) · 5.76 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
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
{
"name": "vscode-electricimp",
"displayName": "Electric Imp Squirrel",
"description": "Electric Imp Application Development",
"version": "1.0.0",
"publisher": "electricimp",
"icon": "modern_nut.png",
"license": "MIT",
"engines": {
"vscode": "^1.28.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"electric imp",
"electricimp",
"imp"
],
"activationEvents": [
"onCommand:imp.auth.creds",
"onCommand:imp.workspace.project.new",
"onCommand:imp.workspace.project.deploy",
"onCommand:imp.logstream.add",
"onCommand:imp.logstream.remove",
"onCommand:imp.device.add",
"onCommand:imp.device.remove",
"onCommand:imp.device.agenturl",
"onCommand:imp.show.commands",
"onLanguage:squirrel"
],
"main": "./src/extension",
"contributes": {
"commands": [
{
"command": "imp.auth.creds",
"title": "imp: Auth User Password"
},
{
"command": "imp.workspace.project.new",
"title": "imp: New Project"
},
{
"command": "imp.workspace.project.deploy",
"title": "imp: Deploy Project"
},
{
"command": "imp.logstream.add",
"title": "imp: Start Device Logs"
},
{
"command": "imp.logstream.remove",
"title": "imp: Stop Device Logs"
},
{
"command": "imp.logstream.pause",
"title": "imp: Pause Logs"
},
{
"command": "imp.logstream.clean",
"title": "imp: Clear Logs"
},
{
"command": "imp.device.add",
"title": "imp: Add Device to current DG"
},
{
"command": "imp.device.remove",
"title": "imp: Remove Device from current DG"
},
{
"command": "imp.device.agenturl",
"title": "imp: Get agent URL"
},
{
"command": "imp.show.commands",
"title": "imp: Show All Commands...",
"description": "Shows all commands from the imp extension in the quick pick"
}
],
"keybindings": [
{
"command": "imp.show.commands",
"key": "ctrl+shift+c",
"mac": "ctrl+shift+c"
},
{
"command": "imp.workspace.project.new",
"key": "ctrl+shift+y",
"mac": "ctrl+shift+y"
},
{
"command": "imp.workspace.project.deploy",
"key": "ctrl+shift+x",
"mac": "ctrl+shift+x"
}
],
"languages": [
{
"id": "squirrel",
"aliases": [
"Squirrel",
"squirrel"
],
"extensions": [
".nut"
],
"configuration": "./language-configuration.json"
},
{
"id": "Log",
"aliases": [
"log"
],
"extensions": [
".log"
],
"configuration": "./log.configuration.json",
"mimetypes": [
"log",
"text/log",
"text/x-log",
"text/x-code-output",
"x-code-output"
]
}
],
"grammars": [
{
"language": "squirrel",
"scopeName": "source.squirrel",
"path": "./syntaxes/nut.tmLanguage"
},
{
"language": "Log",
"scopeName": "stream.log",
"path": "./syntaxes/log.tmLanguage"
}
],
"snippets": [
{
"language": "squirrel",
"path": "./snippets/electric-imp-squirrel-completions.json"
},
{
"language": "squirrel",
"path": "./snippets/squirrelSnippets.json"
}
]
},
"scripts": {
"preinstall": "npx npm-force-resolutions",
"postinstall": "node ./node_modules/vscode/bin/install",
"lint": "./node_modules/.bin/eslint src/",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^8.10.25",
"acorn": "^7.1.1",
"ajv": "^5.0.0",
"diff": "^4.0.2",
"eslint": "^4.11.0",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"fstream": "^1.0.12",
"https-proxy-agent": "^5.0.0",
"js-yaml": "^3.13.1",
"lodash": "^4.17.15",
"minimist": "^1.2.5",
"tar": "^6.0.1",
"typescript": "^2.6.1",
"vscode": "^1.1.37"
},
"dependencies": {
"Builder": "^4.2.1",
"colors": "^1.4.0",
"imp-central-api": "^1.7.0",
"is-reachable": "^3.1.0",
"strftime": "^0.10.0",
"upath": "^2.0.1",
"valid-url": "^1.0.9"
},
"repository": {
"type": "git",
"url": "https://github.com/electricimp/vscode.git"
},
"resolutions": {
"https-proxy-agent": "2.2.3",
"acorn": "5.7.4",
"minimist": "0.2.1",
"lodash": "4.17.12",
"diff": "3.5.0",
"js-yaml": "3.13.1",
"fstream": "1.0.12",
"tar": "2.2.2"
}
}