This repository has been archived by the owner on Nov 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 224
/
package.json
80 lines (80 loc) · 2.23 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
{
"name": "passionfruit",
"version": "0.7.2",
"description": "Inject to iOS App",
"main": "app.js",
"engines": {
"node": ">= 12.0"
},
"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://git@github.com/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"
],
"author": "CodeColorist",
"license": "MIT",
"bugs": {
"url": "https://github.com/chaitin/passionfruit/issues"
},
"homepage": "https://github.com/chaitin/passionfruit#readme",
"dependencies": {
"colors": "^1.4.0",
"frida": "^14.0.8",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-compress": "^5.0.1",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.1",
"koa-router": "^10.0.0",
"koa-send": "^5.0.1",
"plist": "^3.0.1",
"promise.prototype.finally": "^3.1.2",
"socket.io": "^2.2.0",
"socket.io-stream": "^0.9.1",
"sqlite3": "^5.0.0",
"vue-loader-plugin": "^1.3.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/runtime": "^7.12.5",
"babelify": "^10.0.0",
"cross-env": "^7.0.2",
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-vue": "^7.1.0",
"frida-compile": "^9.5.2",
"macho": "^1.4.0",
"nodemon": "^2.0.6"
}
}