-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.83 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
{
"name": "poc-anfora",
"version": "1.0.0",
"description": "PoC for AnForA on iOS devices.",
"repository": {
"type": "git",
"url": "git+https://github.com/miticollo/poc-anfora.git"
},
"keywords": [
"appium",
"frida",
"python",
"ios",
"mjpeg",
"quicktime"
],
"author": "Lorenzo Ferron",
"bugs": {
"url": "https://github.com/miticollo/test-appium/issues",
"email": "20024182@studenti.uniupo.it"
},
"scripts": {
"appium-latest": "if [[ \"$(uname)\" == 'Darwin' ]]; then export DEVELOPER_DIR=$npm_package_config_XCODE_LATEST; fi && npx appium server --session-override",
"appium-14.2": "if [[ \"$(uname)\" == 'Darwin' ]]; then export DEVELOPER_DIR=$npm_package_config_XCODE_14_2; fi && npx appium server --session-override",
"appium-dbg-latest": "if [[ \"$(uname)\" == 'Darwin' ]]; then export DEVELOPER_DIR=$npm_package_config_XCODE_LATEST; fi && npx appium server --log-level 'debug:error' --log-timestamp --local-timezone --session-override",
"appium-dbg-14.2": "if [[ \"$(uname)\" == 'Darwin' ]]; then export DEVELOPER_DIR=$npm_package_config_XCODE_14_2; fi && npx appium server --log-level 'debug:error' --log-timestamp --local-timezone --session-override",
"appium-win": "npx appium server --session-override",
"appium-dbg-win": "npx appium server --log-level 'debug:error' --log-timestamp --local-timezone --session-override"
},
"homepage": "https://github.com/miticollo/test-appium#readme",
"dependencies": {
"@appium/doctor": "^2.0.13",
"@types/frida-gum": "^18.3.1",
"@types/node": "^18.14.0",
"appium": "^2.0.0",
"appium-xcuitest-driver": "^4.30.9",
"frida-compile": "^16.1.8"
},
"config": {
"XCODE_LATEST": "/Applications/Xcode-15.0.0-Beta.5.app/Contents/Developer",
"XCODE_14_2": "/Applications/Xcode-14.2.0.app/Contents/Developer"
}
}