-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.48 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
{
"name": "appium-webos-driver",
"description": "webOS support for Appium",
"keywords": [
"appium",
"webos",
"testing",
"automation",
"mobile",
"mobile testing"
],
"version": "0.1.0-1",
"author": "Sharky Study <sharky.study@gmail.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/sharkyStudy/appium-webos-driver.git"
},
"bugs": {
"url": "https://github.com/sharkyStudy/appium-webos-driver/issues"
},
"engines": {
"node": ">=8",
"npm": ">=6.9.0"
},
"main": "./build/index.js",
"bin": {},
"directories": {
"lib": "lib"
},
"files": [
"index.js",
"lib",
"build/index.js",
"build/lib"
],
"dependencies": {
"@babel/runtime": "^7.0.0",
"appium-ares": "0.0.1",
"appium-base-driver": "^7.2.3",
"appium-support": "^2.8.0",
"asyncbox": "^2.8.0",
"bluebird": "^3.4.7",
"child_process": "^1.0.2",
"chrome-remote-interface": "^0.29.0",
"chrome-remote-interface-extra": "^1.1.1",
"fancy-log": "^1.3.2",
"got": "^11.8.1",
"jimp": "^0.16.1",
"lodash": "^4.17.9",
"minify": "^7.0.1",
"promise-ws": "^1.0.0-1",
"puppeteer": "1.4.0",
"puppeteer-core": "^1.4.0",
"rxjs": "^6.6.3",
"selenium": "^2.20.0",
"selenium-webdriver": "^4.0.0-alpha.8",
"source-map-support": "^0.5.9",
"string-minify": "^1.0.1",
"teen_process": "^1.9.0",
"ws": "^7.4.2",
"ws-promise": "^2.0.4",
"yargs": "^16.2.0"
},
"scripts": {
"clean": "rm -rf node_modules && rm -f package-lock.json && npm install",
"prepare": "gulp prepublish",
"test": "gulp once",
"watch": "gulp watch",
"build": "gulp transpile",
"mocha": "mocha",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"precommit-test": "REPORTER=dot gulp once",
"lint": "gulp eslint",
"lint:fix": "gulp eslint --fix"
},
"pre-commit": [
"precommit-msg"
],
"devDependencies": {
"ajv": "^8.0.2",
"appium-gulp-plugins": "^5.5.0",
"babel-eslint": "^10.0.0",
"eslint": "^7.22.0",
"eslint-config-appium": "^4.7.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-mocha": "^8.1.0",
"eslint-plugin-promise": "^4.0.0",
"gulp": "^4.0.2",
"pre-commit": "^1.1.3"
},
"homepage": "https://github.com/sharkyStudy/appium-webos-driver#readme",
"appium": {
"driverName": "WebOS",
"automationName": "WebOS",
"platformNames": [
"webos"
],
"mainClass": "WebOSDriver"
}
}