forked from microsoft/appcenter-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.1 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
{
"name": "appcenter-cli",
"version": "1.0.7",
"description": "Command line tool for Visual Studio App Center",
"keywords": [
"microsoft",
"appcenter",
"azure"
],
"homepage": "https://github.com/Microsoft/appcenter-cli#readme",
"engine": {
"node": ">=6.3.0"
},
"main": "dist/index.js",
"bin": {
"appcenter": "./bin/appcenter.js"
},
"preferGlobal": true,
"scripts": {
"build": "gulp build",
"test": "mocha --compilers ts:ts-node/register --recursive ./test/**/*-test.[tj]s",
"watch-test": "mocha --compilers ts:ts-node/register --recursive ./test/**/*-test.[tj]s --watch",
"autorest": "gulp autorest",
"clean": "gulp clean",
"prepublish": "gulp prepublish",
"download-swagger": "gulp download-swagger"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Microsoft/appcenter-cli.git"
},
"author": "Microsoft",
"license": "MIT",
"bugs": {
"url": "https://github.com/Microsoft/appcenter-cli/issues"
},
"devDependencies": {
"@types/async": "^2.0.42",
"@types/chai": "^4.0.4",
"@types/chai-as-promised": "^7.1.0",
"@types/chalk": "^0.4.31",
"@types/debug": "0.0.30",
"@types/glob": "^5.0.32",
"@types/inquirer": "0.0.35",
"@types/jsonwebtoken": "^7.2.3",
"@types/jszip": "^3.1.2",
"@types/lodash": "^4.14.74",
"@types/minimist": "^1.2.0",
"@types/mocha": "^2.2.43",
"@types/mock-require": "^1.3.3",
"@types/nock": "^8.2.1",
"@types/node": "^6.0.88",
"@types/node-fetch": "^1.6.7",
"@types/opener": "^1.4.0",
"@types/promises-a-plus": "0.0.27",
"@types/promptly": "^1.1.28",
"@types/qs": "^6.5.0",
"@types/request": "^2.0.3",
"@types/rimraf": "^2.0.2",
"@types/semver": "^5.3.33",
"@types/sinon": "^2.3.5",
"@types/temp": "^0.8.29",
"@types/which": "^1.0.28",
"@types/xml2js": "^0.4.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"gulp": "^3.9.1",
"gulp-clean": "^0.3.2",
"gulp-sourcemaps": "^2.2.0",
"gulp-typescript": "^3.0.2",
"mocha": "^3.0.2",
"mock-require": "^2.0.2",
"nock": "^8.0.0",
"run-sequence": "^1.2.2",
"sinon": "^1.17.6",
"ts-node": "^3.3.0",
"typescript": "^2.5.2"
},
"dependencies": {
"azure-storage": "^2.1.0",
"bplist": "0.0.4",
"chalk": "^1.1.3",
"cli-spinner": "^0.2.5",
"cli-table2": "^0.2.0",
"date-fns": "^1.28.5",
"debug": "^2.2.0",
"event-stream": "^3.3.4",
"glob": "^7.1.1",
"gradle-to-js": "^1.0.1",
"inquirer": "^3.1.0",
"iso8601-duration": "^1.0.6",
"jsonwebtoken": "^8.1.0",
"jszip": "^3.1.3",
"lodash": "^4.16.4",
"mdfind": "^1.0.0",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"ms-rest": "^1.15.0",
"omelette": "^0.4.0",
"opener": "^1.4.3",
"p-limit": "^1.0.0",
"plist": "^2.1.0",
"properties": "^1.2.1",
"qs": "^6.4.0",
"request": "^2.76.0",
"rimraf": "^2.5.4",
"rx-lite": "^4.0.8",
"semver": "^5.4.1",
"temp": "^0.8.3",
"uuid": "^3.0.1",
"which": "^1.3.0",
"wordwrap": "^1.0.0",
"xml2js": "^0.4.19",
"yazl": "^2.4.3"
}
}