-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
101 lines (101 loc) · 3.11 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-tizen-tv-driver-monorepo",
"version": "0.0.0",
"private": true,
"description": "Tizen TV support for Appium",
"keywords": [
"appium",
"tizen",
"testing",
"automation",
"mobile",
"mobile testing"
],
"homepage": "https://github.com/headspinio/appium-tizen-tv-driver#readme",
"bugs": {
"url": "https://github.com/headspinio/appium-tizen-tv-driver/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/headspinio/appium-tizen-tv-driver.git"
},
"license": "Apache-2.0",
"author": "Jonathan Lipps <[email protected]>",
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "npm run rebuild",
"preversion": "run-s rebuild",
"prepublishOnly": "run-s rebuild",
"clean": "run-s clean:packages clean:distfiles clean:nx",
"clean:distfiles": "tsc -b --clean",
"clean:packages": "lerna run clean",
"clean:workspaces": "lerna clean -y",
"clean:nx": "npx nx reset",
"test": "run-s lint test:packages",
"test:ci": "npm run --workspaces test:ci",
"test:packages": "npm run --workspaces test",
"test:smoke": "smoker --all test:smoke",
"test:types": "lerna run test:types",
"test:e2e": "lerna run test:e2e",
"dev": "tsc -b --watch",
"build": "tsc -b",
"rebuild": "run-s clean build",
"reinstall": "run-s clean:workspaces ci",
"ci": "npm ci",
"lint": "eslint .",
"tunnel:base": "ssh -N -L $npm_config_port:$npm_config_device:$npm_config_port -F $npm_config_sshconfig $npm_config_user@$npm_config_host",
"tunnel:wss": "npm run tunnel:base --port=8002",
"tunnel:sdb": "npm run tunnel:base --port=26101",
"sdb:local:connect": "sdb connect $npm_config_device:$npm_config_port",
"sdb:local:disconnect": "sdb disconnect",
"sdb:remote:disconnect": "ssh -F $npm_config_sshconfig $npm_config_user@$npm_config_host $npm_config_path/sdb disconnect",
"tunnel": "run-p tunnel:wss tunnel:sdb"
},
"prettier": {
"bracketSpacing": false,
"printWidth": 100,
"singleQuote": true
},
"devDependencies": {
"@appium/eslint-config-appium": "8.0.5",
"@appium/eslint-config-appium-ts": "0.3.3",
"@appium/tsconfig": "0.3.1",
"@humanwhocodes/env": "2.2.2",
"@types/bluebird": "3.5.38",
"@types/debug": "4.1.8",
"@types/jquery": "3.5.17",
"@types/lodash": "4.14.197",
"@types/mocha": "10.0.1",
"@types/node": "18.17.12",
"@types/sinon": "10.0.16",
"@types/teen_process": "2.0.4",
"@types/yargs": "17.0.24",
"appium": "2.1.3",
"conventional-changelog-conventionalcommits": "7.0.2",
"cross-env": "7.0.3",
"get-port": "5.1.1",
"lerna": "7.4.2",
"midnight-smoker": "8.0.0",
"mocha": "11.0.1",
"npm-run-all": "4.1.5",
"prettier": "3.4.2",
"rewiremock": "3.14.5",
"sinon": "19.0.2",
"ts-node": "10.9.2",
"tsd": "0.31.2",
"typescript": "5.7.2",
"unexpected": "13.2.1",
"unexpected-eventemitter": "2.4.0",
"unexpected-sinon": "11.1.0",
"webdriverio": "8.41.0"
},
"engines": {
"node": ">=14",
"npm": ">=8"
},
"overrides": {
"@phenomnomnominal/tsquery": "5.0.1"
}
}