-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.73 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
{
"name": "@dlenroc/appium-grid-plugin",
"version": "0.1.2",
"description": "Easy way to register an Appium server as a node in Selenium 4 Grid",
"keywords": [
"grid",
"appium",
"plugin"
],
"repository": "dlenroc/appium-grid-plugin",
"license": "MIT",
"author": "Corneliu Duplachi",
"type": "module",
"main": "dist/plugin.js",
"types": "src/plugin.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build"
},
"dependencies": {
"@appium/base-plugin": "^2.2.28",
"@appium/support": "^4.2.2",
"exit-hook": "^4.0.0",
"supertest": "^6.3.4",
"zeromq": "^6.0.0-beta.19"
},
"devDependencies": {
"@dlenroc/appium-roku-driver": "^0.11.1",
"@tsconfig/node20": "^20.1.2",
"@tsconfig/strictest": "^2.0.3",
"@types/supertest": "^6.0.2",
"typescript": "^5.4.2"
},
"peerDependencies": {
"appium": "^2.3.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"
},
"registration-secret": {
"type": "string",
"description": "Node registration secret",
"default": ""
},
"stereotype": {
"type": "string",
"description": "Node stereotype(s), ex: [{ \"appium:platformName\": \"Android\" }]",
"default": "{}"
}
}
}
}
}