-
-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
87 lines (87 loc) · 1.91 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "frida",
"version": "0.0.0",
"authors": [
"Frida Developers"
],
"description": "Inject JavaScript to explore native apps on Windows, Mac, Linux, iOS and Android",
"keywords": [
"debugger",
"tracer",
"instrumentation",
"hooking",
"inject",
"windows",
"macos",
"linux",
"ios",
"iphone",
"ipad",
"android"
],
"homepage": "https://frida.re",
"engines": {
"node": ">=16 || 14 >=14.17"
},
"main": "./dist",
"files": [
"BSDmakefile",
"Makefile",
"configure",
"configure.bat",
"dist/",
"make.bat",
"meson.build",
"meson.options",
"tsconfig.json",
"lib/",
"releng/*.py",
"releng/*.toml",
"releng/devkit-assets/",
"releng/meson-scripts/",
"releng/meson/meson.py",
"releng/meson/mesonbuild/",
"releng/tomlkit/tomlkit/",
"scripts/",
"src/",
"subprojects/frida-core.wrap",
"subprojects/nan.wrap",
"subprojects/packagefiles/",
"test/"
],
"dependencies": {
"bindings": "^1.5.0",
"minimatch": "^9.0.3",
"nan": "^2.18.0",
"prebuild-install": "^7.1.1"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/mocha": "^10.0.3",
"@types/node": "^20.8.8",
"chai": "^4.3.4",
"mocha": "^10.0.0",
"ts-node": "^10.0.0",
"typescript": "^5.2.2"
},
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"watch": "tsc -w",
"install": "node scripts/install.js",
"test": "node --expose-gc node_modules/mocha/bin/_mocha -r ts-node/register test/*.ts"
},
"binary": {
"host": "https://github.com",
"remote_path": "frida/frida/releases/download/{version}",
"module_path": "build"
},
"license": "LGPL-2.0 WITH WxWindows-exception-3.1",
"repository": {
"type": "git",
"url": "https://github.com/frida/frida-node.git"
},
"bugs": {
"url": "https://github.com/frida/frida-node/issues"
}
}