-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
64 lines (64 loc) · 1.61 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
{
"name": "apkup",
"version": "0.0.0-development",
"description": "Publish APKs to Google Play Store",
"main": "dist/index.js",
"bin": {
"apkup": "dist/cli/index.js"
},
"types": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "npm run build && npm prune",
"build": "tsc",
"docs": "typedoc --excludeExternals --exclude 'src/cli/*.ts' --entryPointStrategy expand --out docs src",
"test": "tslint --project tsconfig.json -c tslint.json 'src/**/*.ts'",
"test:audit": "npm audit --json | npm-audit-html --output reports/audit.html && npm audit",
"semantic-release": "semantic-release"
},
"repository": "eventOneHQ/apkup",
"keywords": [
"android",
"google",
"play",
"google play",
"mobile",
"apk"
],
"author": "eventOne Labs <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eventOneHQ/apkup/issues"
},
"homepage": "https://github.com/eventOneHQ/apkup",
"dependencies": {
"adbkit-apkreader": "^3.2.0",
"debug": "^4.3.1",
"googleapis": "^67.0.0",
"node-aab-parser": "^1.0.1",
"ora": "^5.3.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/node": "^16.11.10",
"@types/yargs": "^16.0.0",
"npm-audit-html": "^2.0.0-beta.1",
"semantic-release": "^17.3.8",
"tslint": "^6.1.3",
"tslint-config-standard": "^9.0.0",
"typedoc": "^0.22.10",
"typescript": "^4.5.2"
},
"release": {
"branches": [
{
"name": "next"
},
{
"name": "beta",
"channel": "beta",
"prerelease": true
}
]
}
}