This repository has been archived by the owner on Jul 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
81 lines (81 loc) · 2.61 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
{
"name": "appium-dashboard",
"version": "v2.0.3",
"description": "Appium plugin to view session execution details via detailed dashboard",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"sequelize:migrate": "sequelize-cli db:migrate",
"sequelize:migrate:undo": "sequelize-cli db:migrate:undo",
"clean:cache": "node ./scripts/cleanup-cache-dir.js",
"postinstall": "(node ./scripts/is-prod.js || tsc) && npm run sequelize:migrate",
"i": "tsc && (appium plugin uninstall appium-dashboard || exit 0) && appium plugin install --source=local $(pwd)",
"start-appium": "appium --use-plugins=appium-dashboard --relaxed-security"
},
"repository": {
"type": "git",
"url": "git+https://sudharsan-selvaraj@github.com/sudharsan-selvaraj/appium-dashboard-plugin.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sudharsan-selvaraj/appium-dashboard-plugin/issues"
},
"homepage": "https://github.com/sudharsan-selvaraj/appium-dashboard-plugin#readme",
"appium": {
"pluginName": "appium-dashboard",
"mainClass": "AppiumDashboardPlugin"
},
"dependencies": {
"@appium/base-plugin": "^1.8.1",
"@appium/support": "^2.55.4",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"appium-adb": "^9.0.0",
"appium-base-driver": "^7.10.1",
"appium-ios-device": "^2.0.0",
"appium-ios-simulator": "^4.0.0",
"appium-remote-debugger": "9.0.0",
"async-lock": "^1.3.0",
"async-wait-until": "^2.0.12",
"asyncbox": "^2.9.2",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"chrome-remote-interface": "^0.31.1",
"circular-json": "^0.5.9",
"cors": "^2.8.5",
"debug": "^4.3.2",
"express": "^4.17.1",
"get-port": "^5.1.1",
"http-status": "^1.5.0",
"lodash": "^4.17.21",
"lokijs": "^1.5.12",
"mjpeg-proxy": "^0.3.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.6.5",
"sequelize-cli": "^6.2.0",
"sequelize-typescript": "^2.1.0",
"sqlite3": "^5.1.7",
"typedi": "^0.10.0",
"uuid": "^8.3.2",
"vm2": "^3.9.8",
"webdriverio": "^7.16.15",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/async-lock": "^1.1.3",
"@types/bluebird": "^3.5.36",
"@types/chrome-remote-interface": "^0.31.4",
"@types/express": "^4.17.13",
"@types/lodash": "^4.14.178",
"@types/lokijs": "^1.5.7",
"@types/node": "^16.10.2",
"@types/node-fetch": "^3.0.3",
"@types/teen_process": "^1.16.0",
"@types/uuid": "^8.3.1",
"typescript": "^4.4.4"
},
"peerDependencies": {
"appium": "^2.0.0-beta.46"
}
}