-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
107 lines (107 loc) · 4.03 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "bananalyzer",
"version": "1.2.6",
"description": "A simple tool for windows 10, that downloads APKs from Google playstore, analyzes them, and lists all the Google and Huawei SDKs (kits) that are integrated, along with other metadata",
"author": "Younes Megaache",
"homepage": "https://github.com/megaacheyounes/bananalyzer",
"main": "build/index.js",
"types": "build/index.d.ts",
"displayName": "bananalyzer",
"scripts": {
"dev": "cross-env NODE_ENV=debug ts-node tests/dev.ts",
"start": "cross-env NODE_ENV=debug ts-node src/cli.ts list -k -r -d",
"start:package": "cross-env NODE_ENV=debug ts-node src/cli.ts package -r -k -d --name",
"start:apk": "cross-env NODE_ENV=debug ts-node src/cli.ts apk -k -d --path",
"start:apklist": "cross-env NODE_ENV=debug ts-node src/cli.ts apklist -k -r -d",
"start:help": "cross-env NODE_ENV=debug ts-node src/cli.ts help",
"start:version": "cross-env NODE_ENV=debug ts-node src/cli.ts version",
"devider_build_cli": " __________________ build cli exe __________________ ",
"build": "npm run clean && npm run copy-files && npm run build:cli && npm run build:exe",
"copy-files": "copyfiles \"instructions.txt\" \"example_apps.txt\" \"example_apklist.txt\" \"lib/AppCheck.jar\" \"lib/apktool.jar\" dist",
"clean": "rimraf dist esm build build_cli",
"build:cli": "ncc build src/cli.ts -o build_cli",
"build:exe": "pkg -t node16-win-x64 -C GZip -o dist/bananalyzer.exe --public build_cli/index.js ",
"devider_build_js": " __________________ build js for npm package __________________ ",
"build:npm": "npm run clean && npm run build:npm_src",
"build:npm_src": "tsc --target es5 ",
"devider_test": " __________________ test __________________ ",
"test": "jest --runInBand tests/all.test.ts",
"test:appDetailsScrapper": "jest tests/appDetailsScrapper --detectOpenHandles",
"test:downloader": "jest tests/downloader.test.ts",
"test:decompile": "jest tests/decompile.test",
"test:analyzer": "jest tests/analyzer.test.ts",
"test:parseManifest": "jest tests/parseManifest.test.ts",
"test:excelHelper": "jest tests/excelHelper.test.ts",
"test:tracking": "jest tests/analyzeTrackingSdk.test.ts",
"test:utils": "jest tests/utils.test.ts",
"install_no_chrome": "set PUPPETEER_SKIP_DOWNLOAD=true && yarn install"
},
"bin": "index.ts",
"keywords": [
"hms",
"gms",
"analyze",
"playstore",
"download",
"apk"
],
"license": "ISC",
"dependencies": {
"@esm2cjs/execa": "6.1.1-cjs.1",
"@types/semver": "^7.3.13",
"@types/xml2js": "^0.4.11",
"cli-meow-help": "^3.1.0",
"csv-parse": "^5.3.6",
"csv-parser": "^3.0.0",
"debug": "^4.3.4",
"decompress-zip": "^0.3.3",
"download-chromium": "^2.2.1",
"fs": "0.0.1-security",
"glob": "^8.1.0",
"got": "^11.8.6",
"is-plain-object": "^2.0.4",
"meow": "^9.0.0",
"micromatch": "^4.0.5",
"ncp": "^2.0.0",
"path": "^0.12.7",
"puppeteer": "^13.5.2",
"puppeteer-chromium-resolver": "^19.3.2",
"puppeteer-extra": "^3.2.3",
"puppeteer-extra-plugin-adblocker": "^2.12.0",
"puppeteer-extra-plugin-stealth": "^2.9.0",
"semver": "^7.3.8",
"xlsx": "^0.18.5",
"xml2js": "^0.4.23",
"yaml": "^2.2.1",
"yauzl": "^2.10.0"
},
"pkg": {
"assets": "node_modules/puppeteer-extra-plugin-stealth/**/*.*"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.1",
"@types/mkdirp": "^1.0.2",
"@types/mocha": "^9.1.1",
"@types/ncp": "^2.0.5",
"@types/node": "^17.0.45",
"@types/puppeteer": "^5.4.5",
"@types/rimraf": "^3.0.2",
"@vercel/ncc": "^0.36.1",
"cross-env": "^7.0.3",
"eslint": "^8.12.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.1.0",
"pkg": "^5.6.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"overrides": {
"clone-deep": "4.0.1"
}
}