-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.18 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
73
74
75
76
77
78
79
80
81
{
"name": "@dlenroc/appium-grid-plugin",
"version": "0.3.3",
"description": "A plugin for registering Appium as a node in Selenium Grid 4",
"keywords": [
"grid",
"appium",
"plugin"
],
"repository": "dlenroc/appium-grid-plugin",
"license": "MIT",
"author": "Corneliu Duplachi",
"type": "module",
"main": "./dist/GridPlugin.js",
"types": "./dist/GridPlugin.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "pkgroll --clean-dist --sourcemap"
},
"dependencies": {
"@appium/base-plugin": "^3.0.2",
"@appium/support": "^7.0.1",
"@types/express": "^5.0.3",
"@types/lodash.ismatch": "^4.4.9",
"@types/supertest": "^6.0.3",
"exit-hook": "^4.0.0",
"lodash.ismatch": "^4.4.0",
"supertest": "^7.1.4",
"systeminformation": "^5.27.8",
"zeromq": "^6.5.0"
},
"devDependencies": {
"@dlenroc/appium-roku-driver": "^0.13.1",
"@tsconfig/node20": "^20.1.6",
"@tsconfig/strictest": "^2.0.5",
"pkgroll": "^2.15.4",
"typescript": "^5.9.2"
},
"peerDependencies": {
"appium": "^2.3.0 || ^3.0.0"
},
"engines": {
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
},
"appium": {
"pluginName": "grid",
"mainClass": "GridPlugin",
"schema": {
"type": "object",
"properties": {
"external-url": {
"type": "string",
"description": "Node external URL",
"default": "http://127.0.0.1:4723"
},
"publish-events": {
"type": "string",
"description": "Connection string for publishing events to the Selenium Grid Event Bus via ZeroMQ's PUB socket",
"default": "tcp://127.0.0.1:4443"
},
"stereotype": {
"appiumCliTransformer": "json",
"type": "string",
"description": "Node stereotype(s), ex: [{ \"appium:platformName\": \"Android\" }]"
},
"heartbeat-period": {
"type": "number",
"description": "Node heartbeat period in milliseconds",
"default": 60000
},
"session-timeout": {
"type": "number",
"description": "Node session timeout in milliseconds",
"default": 300000
}
}
}
}
}