-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
112 lines (112 loc) · 2.85 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "appium-lg-webos-driver",
"version": "0.4.0",
"description": "LG WebOS support for Appium",
"keywords": [
"appium",
"LG",
"WebOS",
"testing",
"automation"
],
"homepage": "https://github.com/headspinio/appium-lg-webos-driver#readme",
"bugs": {
"url": "https://github.com/headspinio/appium-lg-webos-driver/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/headspinio/appium-lg-webos-driver.git"
},
"license": "Apache-2.0",
"author": "Jonathan Lipps <jlipps@headspin.io>",
"types": "./build/lib/index.d.ts",
"main": "index.js",
"bin": {},
"directories": {
"lib": "lib"
},
"files": [
"index.js",
"lib",
"build/lib",
"!build/tsconfig.tsbuildinfo"
],
"scripts": {
"build": "tsc -b",
"clean": "npm run build -- --clean",
"dev": "npm run build -- --watch",
"fix": "npm run lint -- --fix",
"install-driver": "appium driver install --source=local .",
"lint": "eslint .",
"reinstall": "npm run clean && npm ci",
"prepare": "npm run build",
"test": "npm run test:unit",
"test:e2e": "mocha --timeout 40s --slow 10s \"./test/e2e/**/*.spec.js\"",
"test:unit": "mocha --timeout 5s \"./test/unit/**/*.spec.js\""
},
"prettier": {
"bracketSpacing": false,
"printWidth": 100,
"singleQuote": true
},
"dependencies": {
"@humanwhocodes/env": "^2.2.0",
"@types/ws": "^8.5.3",
"appium-chromedriver": "^5.6.38",
"bluebird": "^3.7.2",
"env-paths": "2.2.1",
"get-port": "^5.1.1",
"got": "^11.8.6",
"lodash": "^4.17.21",
"slugify": "1.6.5",
"teen_process": "^1.9.0",
"ws": "^8.8.1"
},
"devDependencies": {
"@appium/eslint-config-appium": "^6.0.2",
"@appium/tsconfig": "0.2.4",
"@appium/types": "0.10.0",
"@types/bluebird": "^3.5.36",
"@types/chai": "^4.3.1",
"@types/chai-as-promised": "^7.1.5",
"@types/lodash": "^4.14.182",
"@types/mocha": "^9.1.1",
"@types/node": "18.14.6",
"@types/sinon-chai": "^3.2.8",
"@types/teen_process": "^1.16.1",
"appium": "2.0.0-beta.56",
"axios": "^0.27.2",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"eslint": "^7.24.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-promise": "^6.0.0",
"mocha": "10.1.0",
"npm-run-all": "^4.1.5",
"prettier": "2.7.1",
"rewiremock": "3.14.3",
"rimraf": "^3.0.2",
"sinon": "^14.0.0",
"sinon-chai": "^3.7.0",
"ts-node": "10.9.1",
"type-fest": "3.6.0",
"typescript": "4.9.5",
"webdriverio": "7.25.1"
},
"peerDependencies": {
"appium": "^2.0.0-beta.40"
},
"engines": {
"node": "^16.13.0 || >=18.0.0",
"npm": ">=8"
},
"appium": {
"driverName": "webos",
"automationName": "webOS",
"platformNames": [
"LGTV"
],
"mainClass": "WebOSDriver"
}
}