-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
54 lines (54 loc) · 1.42 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
{
"name": "@reversense/interruptor",
"version": "1.0.12",
"description": "A Frida-based library for hook system call (and interrupts) and produce strace-like output ",
"main": "index.js",
"type": "module",
"files": [
"src/**/*.d.ts",
"src/**/*.js",
"*.d.ts",
"*.js"
],
"scripts": {
"build": "npx tsc",
"test": "mocha -r ts-node/register ./test/**/*.ts",
"clean": "rm src/**/*.js src/**/*.d.ts",
"pack-x64": "npx webpack --config webpack.android.x64.config.js",
"pack-arm64": "npx webpack --config webpack.android.arm64.config.js",
"pack-aarch32": "npx webpack --config webpack.android.aarch32.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FrenchYeti/interruptor.git"
},
"keywords": [
"frida",
"strace",
"syscall",
"hook",
"drcov",
"coverage"
],
"author": "Georges-Bastien Michel (@FrenchYeti) <[email protected]>",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/FrenchYeti/interruptor/issues"
},
"homepage": "https://github.com/FrenchYeti/interruptor#readme",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.0",
"@types/node": "^17.0.10",
"chai": "^4.3.7",
"mocha": "^10.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.5.4"
},
"dependencies": {
"@types/frida-gum": "^17.3.0"
},
"directories": {
"example": "examples"
}
}