-
Notifications
You must be signed in to change notification settings - Fork 235
/
package.json
158 lines (158 loc) · 4.78 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
{
"name": "appcenter-cli",
"version": "3.0.2",
"description": "Command line tool for Visual Studio App Center",
"keywords": [
"microsoft",
"appcenter",
"azure"
],
"homepage": "https://github.com/microsoft/appcenter-cli#readme",
"engine": {
"node": ">=18.0.0"
},
"main": "dist/index.js",
"bin": {
"appcenter": "./bin/appcenter.js"
},
"preferGlobal": true,
"scripts": {
"build": "npm run lint && npm run compile",
"lint": "eslint \"bin/**/*.js\" \"src/**/*.ts\" \"scripts/**/*.js\" \"test/**/*.ts\"",
"lint-fix": "npm run lint -- --fix",
"test": "npm run lint && mocha --require ts-node/register ./test/**/*-test.[tj]s --timeout 4000",
"test:ci": "mocha --require ts-node/register --reporter mocha-junit-reporter ./test/**/*-test.[tj]s --timeout 4000",
"test:debugger": "mocha --inspect --require ts-node/register ./test/**/*-test.[tj]s --timeout 4000",
"functional": "pwsh test/functional/Invoke-FunctionalTests.ps1 -Token $AC_API_TOKEN -Environment int",
"watch-test": "mocha --require ts-node/register ./test/**/*-test.[tj]s --watch",
"autorest:clean": "rimraf src/util/apis/generated",
"autorest": "npm run autorest:clean && node scripts/autorest.js",
"autorest:gen": "node --max-old-space-size=16384 node_modules/autorest/dist/app.js --debug swagger/readme.md",
"clean": "gulp clean",
"compile": "gulp build:raw",
"prepublishOnly": "npm run lint && gulp prepublish",
"download-swagger": "gulp download-swagger",
"prettier": "prettier --write \"**/*.+(js|ts)\""
},
"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"
},
"files": [
"package-lock.json",
"bin",
"dist"
],
"devDependencies": {
"@types/chai": "4.2.22",
"@types/chai-as-promised": "7.1.4",
"@types/debug": "4.1.7",
"@types/from2": "2.3.1",
"@types/glob": "7.2.0",
"@types/inquirer": "8.1.3",
"@types/jsonwebtoken": "8.5.6",
"@types/lodash": "4.14.182",
"@types/minimist": "1.2.2",
"@types/mkdirp": "1.0.2",
"@types/mocha": "9.0.0",
"@types/mock-require": "2.0.0",
"@types/node": "16.*",
"@types/node-fetch": "2.6.1",
"@types/opener": "1.4.0",
"@types/pumpify": "1.4.1",
"@types/qs": "6.9.7",
"@types/request": "2.48.7",
"@types/rimraf": "3.0.2",
"@types/semver": "7.3.9",
"@types/sinon": "10.0.6",
"@types/split2": "3.2.1",
"@types/temp": "0.9.1",
"@types/through2": "2.0.36",
"@types/unzipper": "0.10.5",
"@types/uuid": "8.0.0",
"@types/which": "2.0.1",
"@types/wordwrap": "1.0.1",
"@types/xml2js": "0.4.9",
"@types/xmldom": "0.1.31",
"@types/yazl": "2.4.2",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"autorest": "3.6.3",
"chai": "4.3.4",
"chai-as-promised": "7.1.1",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-security": "1.4.0",
"fast-xml-parser": "4.2.4",
"gulp": "4.0.2",
"gulp-clean": "0.4.0",
"gulp-sourcemaps": "3.0.0",
"gulp-typescript": "5.0.1",
"mocha": "9.2.0",
"mocha-junit-reporter": "2.0.2",
"mock-require": "3.0.3",
"nock": "13.2.1",
"prettier": "2.5.1",
"sinon": "11.1.2",
"ts-node": "9.1.1",
"typemoq": "2.1.0",
"typescript": "4.3.5"
},
"dependencies": {
"@azure/core-client": "^1.7.2",
"@azure/core-rest-pipeline": "^1.10.3",
"@azure/ms-rest-js": "^2.7.0",
"@azure/storage-blob": "^12.14.0",
"@xmldom/xmldom": "0.8.7",
"abort-controller": "3.0.0",
"appcenter-file-upload-client": "0.1.0",
"appcenter-file-upload-client-node": "1.2.12",
"bplist": "0.0.4",
"chalk": "4.1.2",
"cli-spinner": "0.2.10",
"cli-table3": "0.6.2",
"date-fns": "2.29.3",
"debug": "4.3.4",
"es5-ext": "^0.10.64",
"from2": "2.3.0",
"glob": "7.2.0",
"gradle-to-js": "2.0.1",
"inquirer": "8.2.0",
"iso8601-duration": "1.3.0",
"jsonwebtoken": "9.0.0",
"jszip": "3.8.0",
"lodash": "4.17.21",
"minimist": "1.2.6",
"mkdirp": "1.0.4",
"node-fetch": "~2.7.0",
"omelette": "0.4.17",
"opener": "1.5.2",
"p-limit": "3.1.0",
"plist": "3.0.6",
"properties": "1.2.1",
"pumpify": "2.0.1",
"qs": "6.11.0",
"rimraf": "3.0.2",
"rxjs": "6.6.7",
"semver": "^7.6.0",
"split2": "3.2.2",
"strip-ansi": "6.0.0",
"temp": "0.9.4",
"through2": "4.0.2",
"unzipper": "0.10.11",
"update-notifier": "6.0.2",
"uuid": "7.0.3",
"webpack-cli": "4.9.2",
"which": "2.0.2",
"wordwrap": "1.0.0",
"xcode": "3.0.1",
"xml2js": "^0.5.0",
"yazl": "2.5.1"
}
}