-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
125 lines (125 loc) · 3.24 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
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@headspinio/appium-roku-driver",
"version": "2.7.0",
"description": "Appium driver for Roku channels",
"keywords": [
"appium",
"roku"
],
"bugs": {
"url": "https://github.com/headspinio/appium-roku-driver/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/headspinio/appium-roku-driver.git"
},
"license": "Apache-2.0",
"author": "Headspin, Inc.",
"main": "./index.js",
"types": "build/lib/driver.d.ts",
"bin": {
"appium-roku-remote": "./build/lib/remote.js"
},
"directories": {
"lib": "lib"
},
"files": [
"index.js",
"lib",
"build/lib"
],
"scripts": {
"build": "run-p \"build:*\"",
"build:distfiles": "babel lib --out-dir=build/lib --copy-files",
"build:types": "tsc -b",
"clean": "run-p \"clean:*\"",
"clean:distfiles": "rimraf \"./build/**/*.js\"",
"clean:types": "tsc -b --clean",
"dev": "run-p dev:distfiles dev:types",
"dev:distfiles": "npm run build:distfiles -- --watch",
"dev:types": "npm run build:types -- --watch",
"fix": "npm run lint -- --fix",
"lint": "eslint .",
"reinstall": "npm run clean && npm ci",
"prepare": "npm run build:distfiles && npm run build:types || true",
"test": "npm run test:unit",
"test:e2e": "mocha --timeout 40s --slow 10s \"./test/functional/**/*.spec.js\"",
"test:unit": "mocha \"./test/unit/**/*.spec.js\""
},
"prettier": {
"bracketSpacing": false,
"printWidth": 100,
"singleQuote": true
},
"dependencies": {
"@appium/types": "0.14.2",
"@tsconfig/node14": "14.1.2",
"@xmldom/xmldom": "0.9.0",
"asyncbox": "3.0.0",
"axios": "1.7.9",
"blessed": "0.1.81",
"jimp": "0.22.10",
"js2xmlparser": "5.0.0",
"lodash": "4.17.21",
"lru-cache": "7.18.3",
"source-map-support": "0.5.21",
"xml2js": "0.6.2",
"xpath": "0.0.33",
"yargs": "17.7.2"
},
"devDependencies": {
"@appium/eslint-config-appium": "8.0.5",
"@babel/cli": "7.26.4",
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/register": "7.25.9",
"@types/babel__register": "7.17.3",
"@types/bluebird": "3.5.42",
"@types/chai": "4.3.20",
"@types/chai-as-promised": "7.1.8",
"@types/lodash": "4.17.13",
"@types/mocha": "10.0.10",
"@types/request-promise": "4.1.51",
"@types/sinon-chai": "3.2.12",
"@types/teen_process": "2.0.4",
"@types/xml2js": "0.4.14",
"babel-plugin-source-map-support": "2.2.0",
"bluebird": "3.7.2",
"chai": "4.5.0",
"chai-as-promised": "7.1.2",
"eslint": "9.21.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-mocha": "10.5.0",
"eslint-plugin-promise": "7.2.1",
"mocha": "10.8.2",
"npm-run-all2": "6.2.6",
"prettier": "3.4.2",
"rimraf": "5.0.10",
"sinon": "18.0.1",
"sinon-chai": "3.7.0",
"type-fest": "3.13.1",
"typescript": "5.7.2",
"webdriverio": "8.40.6"
},
"peerDependencies": {
"appium": "^2.0.0"
},
"engines": {
"node": ">=14",
"npm": ">=7"
},
"publishConfig": {
"access": "public"
},
"appium": {
"driverName": "roku",
"automationName": "Roku",
"platformNames": [
"Roku"
],
"mainClass": "RokuDriver"
},
"overrides": {
"jpeg-js": "0.4.4"
}
}