-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 1.1 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
{
"name": "testing",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"frida": "frida-compile src/index.ts -o dist/script.js",
"frida-watch": "frida-compile src/index.ts -o dist/script.js --watch",
"gen-proto-to-ts": "pbjs -t static-module -o types/binexport2.js proto/binexport2.proto && pbts -o types/binexport2.d.ts types/binexport2.js",
"test": "jest",
"test-watch": "jest --watch",
"test-watch-mem": "export NODE_OPTIONS=--max_old_space_size=4096; npm run test-watch",
"export-funcs": "export NODE_OPTIONS=--max_old_space_size=4096; ts-node scripts/idaExpoertGetNeeded.ts",
"generate-ida-structs": "python scripts/header-parse.py > src/honIdaStructs.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@flatten-js/interval-tree": "^1.0.12",
"@types/frida-gum": "^17.1.1",
"@types/node": "^13.13.21",
"eventbus-ts": "^1.1.2",
"frida-compile": "^10.2.5",
"protobufjs": "^6.10.1"
},
"devDependencies": {
"@types/jest": "^24.9.1",
"jest": "^24.9.0",
"ts-jest": "^24.3.0",
"ts-node": "^8.10.2"
}
}