forked from chaitin/passionfruit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.45 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
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "passionfruit",
"version": "0.4.10",
"description": "Inject to iOS App",
"main": "app.js",
"engines": {
"node": ">= 7.10.1"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
[
"es2015",
{
"loose": true
}
]
],
"plugins": [
"transform-runtime"
]
}
]
]
},
"scripts": {
"prepare": "pushd gui && npm install && popd && npm run compile",
"prepublishOnly": "cd gui && npm run build",
"lint": "npm run lint:agent && npm run lint:server && npm run lint:frontend",
"lint:agent": "eslint agent/app",
"lint:server": "eslint *.js && eslint lib",
"lint:frontend": "eslint gui/src",
"dev": "node scripts/dev-all.js",
"compile": "node scripts/compile.js compile",
"watch": "node scripts/compile.js watch",
"postinstall": "node scripts/post-install.js",
"start": "cross-env NODE_ENV=development nodemon ."
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/chaitin/passionfruit.git"
},
"keywords": [
"iOS",
"frida"
],
"bin": "bin/cli.js",
"files": [
"gui/index.html",
"gui/static",
"lib/",
"bin/",
"scripts/post-install.js",
"agent/*.bundle.js",
"agent/*.bundle.bin"
],
"author": "CodeColorist",
"license": "MIT",
"bugs": {
"url": "https://github.com/chaitin/passionfruit/issues"
},
"homepage": "https://github.com/chaitin/passionfruit#readme",
"dependencies": {
"colors": "^1.3.1",
"frida": "^12.2.14",
"frida-compile": "^8.0.0",
"koa": "^2.5.2",
"koa-bodyparser": "^4.2.1",
"koa-compress": "^3.0.0",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.0",
"koa-router": "^7.4.0",
"koa-send": "^5.0.0",
"plist": "^3.0.1",
"promise.prototype.finally": "^3.1.0",
"socket.io": "^2.1.1",
"socket.io-stream": "^0.9.1",
"sqlite3": "^4.0.2"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-runtime": "^6.26.0",
"babel-core": "^6.26.3",
"babelify": "^8.0.0",
"cross-env": "^5.2.0",
"eslint": "^5.2.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-vue": "^4.7.0",
"fatmacho": "^0.1.1",
"macho": "^1.2.1",
"nodemon": "^1.18.3"
}
}