57 lines
1.2 KiB
JSON
57 lines
1.2 KiB
JSON
{
|
|
"name": "apk-mitm",
|
|
"description": "A CLI application that automatically prepares Android APK files for HTTPS inspection",
|
|
"main": "dist/index.js",
|
|
"repository": "shroudedcode/apk-mitm",
|
|
"keywords": [
|
|
"cli",
|
|
"reverse engineering",
|
|
"android",
|
|
"apk",
|
|
"mitm",
|
|
"certificate pinning"
|
|
],
|
|
"version": "1.3.0",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "tsc",
|
|
"watch": "tsc --watch",
|
|
"format": "prettier --write .",
|
|
"lint": "prettier --check ."
|
|
},
|
|
"bin": "bin/apk-mitm",
|
|
"files": [
|
|
"bin",
|
|
"dist"
|
|
],
|
|
"engines": {
|
|
"node": ">=14"
|
|
},
|
|
"dependencies": {
|
|
"@tybys/cross-zip": "^3.1.0",
|
|
"chalk": "^4.1.0",
|
|
"env-paths": "^2.2.1",
|
|
"escape-string-regexp": "^4.0.0",
|
|
"execa": "^5.0.0",
|
|
"follow-redirects": "^1.13.3",
|
|
"globby": "^11.0.3",
|
|
"listr": "^0.14.3",
|
|
"rxjs": "^7.1.0",
|
|
"tempy": "^1.0.1",
|
|
"xml-js": "^1.6.11",
|
|
"yargs-parser": "^20.2.7"
|
|
},
|
|
"devDependencies": {
|
|
"@types/follow-redirects": "^1.13.0",
|
|
"@types/listr": "^0.14.2",
|
|
"@types/node": "14.14.41",
|
|
"@types/yargs-parser": "^20.2.0",
|
|
"prettier": "^2.2.1",
|
|
"typescript": "^4.2.4"
|
|
},
|
|
"resolutions": {
|
|
"**/rxjs": "^7.1.0"
|
|
}
|
|
}
|