-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1018 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1018 Bytes
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
{
"name": "@mishguru/jadx-node",
"version": "3.1.0",
"description": "A wrapper around Jadx for decompiling Java dex files",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"jadx-node": "./bin/jadx-node"
},
"scripts": {
"clean": "pkg-clean",
"build": "pkg-build",
"lint": "pkg-lint",
"tidy": "pkg-tidy",
"test": "pkg-test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mishguruorg/jadx-node.git"
},
"author": "Mish Guru <dev@mish.guru>",
"license": "ISC",
"bugs": {
"url": "https://github.com/mishguruorg/jadx-node/issues"
},
"homepage": "https://github.com/mishguruorg/jadx-node#readme",
"devDependencies": {
"@stayradiated/pkg": "4.4.0",
"@types/luxon": "1.24.4",
"@types/sinon": "9.0.5",
"@types/yargs": "15.0.5",
"stu": "3.2.0"
},
"dependencies": {
"chalk": "4.1.0",
"execa": "4.0.3",
"luxon": "1.25.0",
"ora": "5.1.0",
"tempy": "0.7.0",
"yargs": "16.0.3"
}
}