-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
67 lines (67 loc) · 1.58 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
{
"name": "ios-uploader",
"version": "3.0.1",
"description": "Easy to use, cross-platform tool to upload an iOS app to itunes-connect.",
"keywords": [
"ipa",
"upload",
"ios"
],
"homepage": "https://github.com/simonnilsson/ios-uploader#readme",
"repository": "https://github.com/simonnilsson/ios-uploader",
"author": "Simon Nilsson <[email protected]>",
"license": "MIT",
"main": "./lib/index.js",
"bin": {
"ios-uploader": "./bin/cli.js"
},
"scripts": {
"start": "node bin/cli.js",
"build": "pkg --out-path build --compress Brotli .",
"lint": "eslint --max-warnings 0 ./bin/*.js ./lib/*.js",
"fix": "eslint --fix ./bin/*.js ./lib/*.js",
"test": "nyc --reporter=text mocha",
"coverage": "nyc --reporter=lcov mocha"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"async": "^3.2.5",
"axios": "^0.28.1",
"cli-progress": "^3.12.0",
"commander": "^12.1.0",
"concat-stream": "^2.0.0",
"pretty-bytes": "^5.6.0",
"simple-plist": "^1.3.1",
"yauzl": "^3.1.3"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.3.0",
"@yao-pkg/pkg": "^5.12.0",
"eslint": "^9.5.0",
"eslint-plugin-jsdoc": "^48.4.0",
"mocha": "^10.5.1",
"nock": "^13.5.4",
"nyc": "^17.0.0",
"sinon": "^18.0.0"
},
"files": [
"assets/",
"bin/",
"lib/"
],
"pkg": {
"scripts": [
"./bin/**/*.js",
"./lib/**/*.js"
],
"assets": "./assets/**/*",
"targets": [
"node18-win-x64",
"node18-macos-x64",
"node18-linux-x64",
"node18-alpine-x64"
]
}
}