forked from chame1eon/jnitrace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 911 Bytes
/
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
{
"name": "jnitrace",
"version": "3.0.1",
"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.2"
},
"devDependencies": {
"@types/frida-gum": "^13.0.0",
"@types/node": "^12.0.4",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"eslint": "^6.1.0",
"eslint-utils": ">=1.4.1",
"frida-compile": "9.0.4",
"@babel/core": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/runtime-corejs2": "^7.5.5"
}
}