code-push-itspar 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,107 @@
1
+ {
2
+ "name": "code-push-itspar",
3
+ "version": "1.0.0",
4
+ "description": "Management CLI for CodePush - deploy mobile app updates over-the-air",
5
+ "main": "./script/cli.js",
6
+ "scripts": {
7
+ "start": "node ./bin/script/cli.js",
8
+ "build": "tsc && cp -r ./script/patch-scripts ./bin/script && cd bsdiff && make clean && make && cd ..",
9
+ "build:watch": "tsc --watch",
10
+ "prettier": "prettier --write \"./**/*.ts\"",
11
+ "lint": "npx eslint ./script/**/*.ts",
12
+ "lint:fix": "npx eslint ./script/**/*.ts --fix",
13
+ "debug": "node --inspect-brk ./bin/script/cli.js",
14
+ "exec:clean": "npm install && npm run build && npm install -g",
15
+ "exec": "npm run build && npm run build && npm install -g",
16
+ "prepare": "npm run build",
17
+ "prepack": "npm run build",
18
+ "test": "echo \"No tests specified\" && exit 0",
19
+ "local:install": "npm run build && npm install -g",
20
+ "local:link": "npm run build && npm link"
21
+ },
22
+ "bin": {
23
+ "codepush": "./bin/script/cli.js",
24
+ "code-push-itspar": "./bin/script/cli.js"
25
+ },
26
+ "files": [
27
+ "bin/**/*",
28
+ "bsdiff/bsdiff43",
29
+ "README.md",
30
+ "LICENSE.txt"
31
+ ],
32
+ "repository": {
33
+ "type": "git",
34
+ "url": "git+https://github.com/itspar/codepush-cli.git"
35
+ },
36
+ "keywords": [
37
+ "codepush",
38
+ "codepush",
39
+ "code-push",
40
+ "react-native",
41
+ "mobile",
42
+ "ota",
43
+ "over-the-air",
44
+ "deployment",
45
+ "cli",
46
+ "update",
47
+ "itspar"
48
+ ],
49
+ "author": "ITSpar",
50
+ "license": "MIT",
51
+ "bugs": {
52
+ "url": "https://github.com/itspar/codepush-cli/issues"
53
+ },
54
+ "homepage": "https://github.com/itspar/codepush-cli#readme",
55
+ "engines": {
56
+ "node": ">=14.0.0",
57
+ "npm": ">=6.0.0"
58
+ },
59
+ "dependencies": {
60
+ "backslash": "^0.2.0",
61
+ "buffer-equal-constant-time": "^1.0.1",
62
+ "chalk": "^4.1.2",
63
+ "cli-table": "^0.3.11",
64
+ "email-validator": "^2.0.4",
65
+ "gradle-to-js": "2.0.1",
66
+ "jsonwebtoken": "^9.0.3",
67
+ "moment": "^2.29.4",
68
+ "opener": "^1.5.2",
69
+ "parse-duration": "1.1.0",
70
+ "plist": "^3.0.6",
71
+ "progress": "^2.0.3",
72
+ "prompt": "^1.3.0",
73
+ "properties": "^1.2.1",
74
+ "q": "~1.5.1",
75
+ "recursive-fs": "2.1.0",
76
+ "rimraf": "^2.5.1",
77
+ "semver": "^7.5.3",
78
+ "simctl": "^2.0.3",
79
+ "slash": "1.0.0",
80
+ "superagent": "^8.0.9",
81
+ "temp": "^0.9.4",
82
+ "which": "^1.2.7",
83
+ "wordwrap": "1.0.0",
84
+ "xcode": "^3.0.1",
85
+ "xml2js": "^0.6.0",
86
+ "yargs": "^17.7.2",
87
+ "yazl": "^2.5.1"
88
+ },
89
+ "devDependencies": {
90
+ "@types/express": "^4.17.17",
91
+ "@types/jest": "^29.5.2",
92
+ "@types/mocha": "^10.0.1",
93
+ "@types/node": "^20.3.1",
94
+ "@types/q": "^1.5.5",
95
+ "@types/sinon": "^10.0.15",
96
+ "@typescript-eslint/eslint-plugin": "^6.21.0",
97
+ "@typescript-eslint/parser": "^6.0.0",
98
+ "eslint": "^8.45.0",
99
+ "express": "^4.19.2",
100
+ "mkdirp": "^3.0.1",
101
+ "prettier": "^2.8.8",
102
+ "sinon": "15.1.2",
103
+ "superagent-mock": "^4.0.0",
104
+ "typescript": "^5.1.3",
105
+ "which": "^3.0.1"
106
+ }
107
+ }