-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 1.99 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 1.99 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
88
89
{
"name": "appium-harmonyos-driver",
"version": "1.0.1",
"description": "Appium bridge to HarmonyDriver",
"keywords": [
"appium",
"harmony",
"harmonyos",
"HarmonyDriver"
],
"author": "Appium Contributors",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/zhihu/appium-harmonyos-driver.git"
},
"bugs": {
"url": "https://github.com/zhihu/appium-harmonyos-driver/issues"
},
"engines": {
"node": "^20.19.0 || ^22.12.0 || >=24.0.0",
"npm": ">=10"
},
"prettier": {
"bracketSpacing": false,
"printWidth": 100,
"singleQuote": true
},
"main": "./build/index.js",
"bin": {},
"directories": {
"lib": "lib"
},
"appium": {
"driverName": "harmonyos",
"automationName": "harmonyos",
"platformNames": [
"harmonyos"
],
"mainClass": "HarmonyDriver",
"doctor": {
"checks": [
"./build/lib/doctor/hdc-home-check.js"
]
}
},
"files": [
"index.js",
"lib",
"build/index.js",
"build/lib",
"LICENSE"
],
"scripts": {
"build": "tsc -b",
"dev": "npm run build -- --watch",
"clean": "npm run build -- --clean",
"format": "prettier -w ./lib",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix"
},
"dependencies": {
"@appium/support": "^7.0.0-rc.1",
"appium-chromedriver": "^8.0.0",
"asyncbox": "^3.0.0",
"lodash": "^4.17.4",
"lru-cache": "^10.0.1",
"moment": "^2.30.1",
"hypium-driver": "^6.0.7201"
},
"devDependencies": {
"@appium/eslint-config-appium-ts": "^2.0.0-rc.1",
"@appium/tsconfig": "^1.0.0-rc.1",
"@appium/types": "^1.0.0-rc.1",
"@types/bluebird": "^3.5.38",
"@types/lodash": "^4.14.196",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.7",
"mocha": "^10.0.0",
"prettier": "^3.0.1",
"rimraf": "^5.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.4.2",
"webdriverio": "^8.0.2"
},
"peerDependencies": {
"appium": "^3.0.0-rc.2"
}
}