This repository has been archived by the owner on Nov 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
343 lines (343 loc) · 12.4 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
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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
{
"name": "vscode-appcenter",
"displayName": "App Center",
"description": "Visual Studio App Center tools and services.",
"version": "0.1.11",
"publisher": "vsmobile",
"icon": "images/icon.png",
"engines": {
"vscode": "^1.21.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-appcenter.git"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-appcenter/issues"
},
"homepage": "https://github.com/Microsoft/vscode-appcenter/blob/master/README.md",
"categories": [
"Other"
],
"keywords": [
"app-center",
"react-native",
"code",
"push"
],
"activationEvents": [
"*"
],
"main": "./src/extension/extension",
"contributes": {
"commands": [
{
"command": "appcenter.showPortalMenu",
"title": "Portal",
"category": "App Center"
},
{
"command": "appcenter.whoAmI",
"title": "Who Am I",
"category": "App Center"
},
{
"command": "appcenter.login",
"title": "Login",
"category": "App Center"
},
{
"command": "appcenter.menu",
"title": "Show Menu",
"category": "App Center"
},
{
"command": "appcenter.start",
"title": "Start a New Project",
"category": "App Center"
},
{
"command": "appcenter.setCurrentApp",
"title": "Set Current App",
"category": "App Center"
},
{
"command": "appcenter.getCurrentApp",
"title": "Get Current App",
"category": "App Center"
},
{
"command": "appcenter.createNewApp",
"title": "Create New App",
"category": "App Center"
},
{
"command": "appcenter.simulateCrashes",
"title": "Simulate App Center Crash",
"category": "App Center"
},
{
"command": "appcenter.installSDK",
"title": "Install SDK",
"category": "App Center"
},
{
"command": "appcenter.settings.loginToAnotherAccount",
"title": "Login to Another App Center Account",
"category": "App Center Settings"
},
{
"command": "appcenter.settings.switchAccount",
"title": "Switch App Center Account",
"category": "App Center Settings"
},
{
"command": "appcenter.settings.logout",
"title": "Logout from App Center",
"category": "App Center Settings"
},
{
"command": "appcenter.settings.vsts.login",
"title": "Login to Another VSTS Account",
"category": "App Center Settings"
},
{
"command": "appcenter.settings.vsts.switchAccount",
"title": "Switch VSTS Account",
"category": "App Center Settings"
},
{
"command": "appcenter.settings.vsts.logout",
"title": "Logout from VSTS",
"category": "App Center Settings"
},
{
"command": "appcenter.settings.showStatusBar",
"title": "Show Status Bar",
"category": "App Center Settings"
},
{
"command": "appcenter.settings.hideStatusBar",
"title": "Hide Status Bar",
"category": "App Center Settings"
},
{
"command": "appcenter.codePush.setCurrentDeployment",
"title": "Set Current Deployment",
"category": "App Center Code Push"
},
{
"command": "appcenter.codePush.releaseReact",
"title": "Release React Native",
"category": "App Center Code Push"
},
{
"command": "appcenter.codePush.switchMandatoryPropForRelease",
"title": "Switch Code Push Release Mandatory Property",
"category": "App Center Code Push"
},
{
"command": "appcenter.codePush.setTargetBinaryVersion",
"title": "Set Code Push Release Target Binary Verison",
"category": "App Center Code Push"
},
{
"command": "appcenter.codePush.linkCodePush",
"title": "Link Code Push",
"category": "App Center Code Push"
},
{
"command": "appcenter.test.showMenu",
"title": "Show UI Tests Menu",
"category": "App Center Test"
},
{
"command": "appcenter.test.runUITests",
"title": "Run UI Tests",
"category": "App Center Test"
},
{
"command": "appcenter.test.runUITestsAsync",
"title": "Run UI Tests Asynchronously",
"category": "App Center Test"
},
{
"command": "appcenter.test.viewResults",
"title": "View UI Tests Results",
"category": "App Center Test"
}
],
"configuration": {
"type": "object",
"title": "App Center Configuration",
"properties": {
"appcenter.demoAppGitRepo": {
"description": "RN Demo App GH Repository",
"type": "string",
"default": "https://github.com/Microsoft/appcenter-sampleapp-react-native.git"
},
"appcenter.portalEndpoint": {
"description": "App Center Portal",
"type": "string",
"default": "https://appcenter.ms"
},
"appcenter.loginendpoint": {
"description": "Endpoint to login to App Center",
"type": "string",
"default": "https://appcenter.ms/cli-login"
},
"appcenter.api.endpoint": {
"description": "API Endpoint to App Center",
"type": "string",
"default": "https://api.appcenter.ms"
},
"appcenter.api.distribitiongrouptestersname": {
"description": "App Center Distribution Group Testers Name",
"type": "string",
"default": "Beta Testers"
},
"appcenter.api.createtestersdistibutiongroup": {
"description": "Configure if we should create new testers distribution group",
"type": "boolean",
"default": "true"
},
"appcenter.api.connectrepotobuildservice": {
"description": "Configure if we should connect repo to build service",
"type": "boolean",
"default": "true"
},
"appcenter.api.configurebranchandstartnewbuild": {
"description": "Configure branch and start new build",
"type": "boolean",
"default": "false"
},
"appcenter.api.defaultbranchname": {
"description": "App Center Default Branch Name",
"type": "string",
"default": "master"
},
"appcenter.api.createiosapp": {
"description": "Create iOS App In App Center",
"type": "boolean",
"default": "true"
},
"appcenter.api.createandroidapp": {
"description": "Create Android App In App Center",
"type": "boolean",
"default": "true"
},
"appcenter.logLevel": {
"description": "Logging level in extension",
"type": "enum",
"enum": [
"Trace",
"Debug",
"Info",
"Warning",
"Error",
"None"
],
"default": "Info"
},
"appcenter.crashes": {
"description": "Enable menu items to work with App Center Crashes",
"type": "boolean",
"default": false
},
"appcenter.linkTwoApps": {
"description": "Make user choose both iOS and Android apps when linking SDKs",
"type": "boolean",
"default": false
},
"appcenter.environment": {
"description": "Environment to configure App Center endpoints",
"type": "enum",
"enum": [
"prod",
"staging",
"int"
],
"default": "prod"
},
"appcenter.showStatusBar": {
"description": "Enable this if you want the status bar with app name/user name always be shown in the bottom left corner of the window",
"type": "boolean",
"default": true
},
"appcenter.telemetryEnabled": {
"description": "Allow extension to collect usage data and send it to Microsoft",
"type": "boolean",
"default": true
},
"appcenter.codePushMixinPath": {
"description": "Relative path to a folder that will be included in CodePush releases for this project",
"type": "string",
"default": ""
},
"appcenter.codePushRNBundleDevFlag": {
"description": "If false, warnings are disabled and the bundle is minified",
"type": "boolean",
"default": true
}
}
}
},
"scripts": {
"vscode:prepublish": "gulp",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "tslint --project tsconfig.json -e src/*.d.ts -t verbose",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "./node_modules/.bin/mocha --reporter spec",
"integrationTest": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^7.0.62",
"@types/rimraf": "^2.0.2",
"gulp": "^3.9.1",
"gulp-sourcemaps": "^2.6.4",
"gulp-tslint": "^8.1.3",
"gulp-typescript": "^4.0.2",
"mock-fs": "^4.5.0",
"tslint": "^5.9.1",
"tslint-microsoft-contrib": "^5.0.3",
"typescript": "^2.8.3",
"vscode": "^1.1.21"
},
"dependencies": {
"btoa": "^1.2.1",
"chalk": "^2.4.1",
"date-fns": "^1.29.0",
"del": "^3.0.0",
"event-stream": "3.3.4",
"git-url-parse": "^8.3.1",
"gradle-to-js": "^1.1.0",
"gulp-mocha": "^5.0.0",
"jsonwebtoken": "^8.2.1",
"lodash": "^4.17.10",
"mkdirp": "^0.5.1",
"moment": "^2.22.1",
"ms-rest": "^2.3.7",
"node-fetch": "^2.1.2",
"node-jsxml": "^0.9.0",
"node-noop": "^1.0.0",
"open": "0.0.5",
"opener": "^1.4.3",
"plist": "^3.0.1",
"properties": "^1.2.1",
"rimraf": "^2.6.2",
"run-sequence": "^2.2.1",
"rx-lite": "^4.0.8",
"sandbox": "^0.8.6",
"semver": "^5.5.0",
"should": "^13.2.1",
"simple-git": "^1.92.0",
"sinon": "^4.5.0",
"temp": "^0.8.3",
"test": "^0.6.0",
"ts-md5": "^1.2.4",
"xml2js": "^0.4.19",
"yazl": "^2.4.3"
}
}