-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.85 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.85 KB
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
{
"name": "@srcpush/code-push-cli",
"version": "0.0.2",
"description": "Management CLI for the CodePush service",
"main": "./script/cli.js",
"scripts": {
"start": "node ./bin/script/cli.js",
"build": "tsc",
"prettier": "prettier --write \"./**/*.ts\"",
"lint": "npx eslint ./script/**/*.ts",
"lint:fix": "npx eslint ./script/**/*.ts --fix"
},
"bin": {
"srcpush": "./bin/script/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/srcpush/code-push-cli"
},
"private": false,
"publishConfig": {
"access": "public"
},
"author": "Microsoft",
"contributors": [
"Microsoft",
"Source Push"
],
"dependencies": {
"backslash": "^0.2.0",
"chalk": "^4.1.2",
"cli-table": "^0.3.11",
"email-validator": "^2.0.4",
"gradle-to-js": "2.0.1",
"jsonwebtoken": "^9.0.2",
"moment": "^2.29.4",
"opener": "^1.5.2",
"parse-duration": "1.1.0",
"plist": "^3.0.6",
"progress": "^2.0.3",
"prompt": "^1.3.0",
"properties": "^1.2.1",
"q": "~1.5.1",
"recursive-fs": "2.1.0",
"rimraf": "^2.5.1",
"semver": "^7.5.3",
"simctl": "^2.0.3",
"slash": "1.0.0",
"superagent": "^8.0.9",
"temp": "^0.9.4",
"which": "^1.2.7",
"wordwrap": "1.0.0",
"xcode": "^3.0.1",
"xml2js": "^0.6.0",
"yargs": "^17.7.2",
"yazl": "^2.5.1"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/mocha": "^10.0.1",
"@types/node": "^20.3.1",
"@types/q": "^1.5.5",
"@types/sinon": "^10.0.15",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.45.0",
"express": "^4.19.2",
"mkdirp": "^3.0.1",
"prettier": "^2.8.8",
"sinon": "15.1.2",
"superagent-mock": "^4.0.0",
"typescript": "^5.1.3",
"which": "^3.0.1"
}
}