forked from chame1eon/jnitrace
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 911 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 911 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
{
"name": "jnitrace",
"version": "3.0.8",
"description": "A tool for tracing use of the JNI in Android apps",
"private": true,
"main": "jnitrace/src/main.js",
"scripts": {
"prepare": "npm run build",
"build": "frida-compile jnitrace/src/main.ts -o jnitrace/build/jnitrace.js",
"watch": "frida-compile jnitrace/src/main.ts -o jnitrace/build/jnitrace.js -w",
"lint": "eslint jnitrace/src/**/*.ts"
},
"dependencies": {
"jnitrace-engine": "^1.0.8"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/runtime-corejs2": "^7.9.2",
"@types/frida-gum": "^15.2.0",
"@types/node": "^13.11.0",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"eslint": "^6.8.0",
"eslint-utils": "^2.0.0",
"frida-compile": "9.3.0"
}
}