-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
{
"name": "xcode-build-tools",
"version": "4.18.5",
"description": "A few bash scripts to help with building ios apps",
"main": "index.js",
"scripts": {
"test": "standard"
},
"keywords": [
"xcode",
"ios",
"build"
],
"author": "Fred Cox <mcfedr@gmail.com>",
"license": "MIT",
"bin": {
"add-keys": "./add-keys.js",
"create-ipa": "./create-ipa.js",
"remove-keys": "./remove-keys.js",
"upload-ipa": "./upload-ipa.js",
"upload-apk": "./upload-apk.js",
"find-identity-name": "./find-identity-name.js",
"dev-version-xcode": "./dev-version-xcode.js",
"create-release": "./create-release.js",
"ensure-login-keychain": "./ensure-login-keychain.js"
},
"dependencies": {
"commander": "^3.0.0",
"cpr": "^3.0.1",
"del": "^5.0.0",
"form-data": "^2.5.0",
"moment": "^2.24.0",
"node-fetch": "^3.1.1",
"winston": "^3.2.1"
},
"devDependencies": {
"standard": "^13.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ekreative/xcode-build-tools.git"
},
"bugs": {
"url": "https://github.com/ekreative/xcode-build-tools/issues"
},
"homepage": "https://github.com/ekreative/xcode-build-tools#readme"
}