-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.17 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.17 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
82
83
84
85
86
87
{
"name": "@dlenroc/appium-html-driver",
"version": "0.3.2",
"description": "WebDriver for testing HTML applications",
"author": "Corneliu Duplachi",
"repository": "dlenroc/appium-html-driver",
"keywords": [
"html",
"appium",
"webdriver"
],
"license": "MIT",
"type": "module",
"main": "dist/server.js",
"browser": "dist/client.js",
"types": "src/server/index.ts",
"files": [
"src",
"dist"
],
"scripts": {
"build": "rollup -c",
"test": "tsx --test"
},
"engines": {
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
},
"appium": {
"driverName": "html",
"automationName": "html",
"platformNames": [
"html"
],
"mainClass": "Driver"
},
"browserslist": [
"Chrome >= 32",
"Firefox >= 29",
"Safari >= 8"
],
"dependencies": {
"@appium/base-driver": "^10.0.0-0",
"@appium/support": "^7.0.0-0",
"@babel/core": "^7.28.3",
"@babel/plugin-transform-object-assign": "^7.27.1",
"@babel/preset-env": "^7.28.3",
"request-ip": "^3.3.0",
"socket.io": "^4.8.1"
},
"devDependencies": {
"@appium/types": "^1.0.0-0",
"@eslint/js": "^9.33.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.4",
"@types/babel__core": "^7.20.5",
"@types/chai": "^5.2.2",
"@types/chai-as-promised": "^8.0.2",
"@types/chai-like": "^1.1.3",
"@types/chai-things": "^0.0.38",
"@types/cssesc": "^3.0.2",
"@types/express": "^5.0.3",
"@types/request-ip": "^0.0.41",
"chai": "^5.3.1",
"chai-as-promised": "^8.0.1",
"chai-like": "^1.1.3",
"chai-things": "^0.2.0",
"cssesc": "^3.0.0",
"eslint": "9.33.0",
"eslint-plugin-compat": "^6.0.2",
"playwright-chromium": "^1.54.2",
"rollup": "^4.46.3",
"scroll-into-view-if-needed": "^3.1.0",
"socket.io-client": "^4.8.1",
"tsx": "^4.20.4",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.1",
"url-shim": "^1.0.1",
"uuid": "^11.1.0",
"webdriverio": "^9.19.1"
},
"peerDependencies": {
"appium": "^2.3.0 || ^3.0.0-0"
}
}