forked from frida/frida-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.49 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.49 KB
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
{
"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://www.frida.re",
"engines": {
"node": ">=8.0.0"
},
"main": "./dist",
"files": [
"dist/"
],
"dependencies": {
"bindings": "^1.5.0",
"minimatch": "^3.0.3",
"nan": "^2.13.2",
"prebuild-install": "^5.3.0"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.6",
"@types/node": "^10.14.6",
"chai": "^4.1.2",
"mocha": "^6.1.4",
"prebuild": "^8.2.1",
"ts-node": "^8.1.0",
"typescript": "^3.4.5"
},
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"watch": "tsc -w",
"install": "prebuild-install || node-gyp rebuild",
"prebuild": "prebuild --verbose --strip",
"test": "npm run prebuild && 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}"
},
"license": "LGPL-2.0 WITH WxWindows-exception-3.1",
"repository": {
"type": "git",
"url": "http://github.com/frida/frida-node.git"
},
"bugs": {
"url": "http://github.com/frida/frida-node/issues"
}
}