forked from nowsecure/r2frida
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.39 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.39 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
67
68
69
70
71
72
{
"name": "r2frida-agent",
"version": "2.5.0",
"description": "Agent for frida:// io plugin",
"private": true,
"main": "src/agent/index.js",
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
[
"es2015",
{
"loose": true
}
]
],
"plugins": [
"transform-runtime"
]
}
]
]
},
"scripts": {
"lint": "semistandard src/agent/*.js",
"prepublish": "npm run build",
"build": "frida-compile src/agent -o src/_agent.js",
"watch": "frida-compile src/agent -o src/_agent.js -w"
},
"license": "LGPL-3.0",
"dependencies": {
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-runtime": "^6.26.0",
"frida-compile": "5.3.7",
"mjolner": "^2.0.0"
},
"devDependencies": {
"semistandard": "^12.0.0"
},
"semistandard": {
"globals": [
"DebugSymbol",
"File",
"Frida",
"hexdump",
"Instruction",
"Interceptor",
"Java",
"Memory",
"Module",
"NativeCallback",
"NativeFunction",
"NativePointer",
"NULL",
"ObjC",
"Process",
"recv",
"Script",
"Socket",
"Stalker",
"Thread",
"ptr",
"rpc",
"send",
"uint64"
]
}
}