-
Notifications
You must be signed in to change notification settings - Fork 349
/
package.json
56 lines (56 loc) · 1.22 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
{
"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"
}
}