-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.53 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
{
"name": "@testingbot/mobilewright-driver",
"version": "0.4.0",
"description": "TestingBot driver for Mobilewright — run mobilewright tests on TestingBot's device cloud",
"homepage": "https://testingbot.com",
"license": "Apache-2.0",
"engines": {
"node": ">=20.19"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/testingbot/mobilewright-testingbot.git"
},
"files": [
"dist",
"CHANGELOG.md"
],
"keywords": [
"mobilewright",
"testingbot",
"appium",
"webdriver",
"mobile",
"testing",
"ios",
"android"
],
"peerDependencies": {
"@mobilewright/protocol": ">=0.0.53 <0.1.0",
"testingbot-tunnel-launcher": ">=1.1.0"
},
"dependencies": {
"debug": "^4.4.0",
"fast-xml-parser": "^5.11.0"
},
"devDependencies": {
"@mobilewright/protocol": "0.0.53",
"@types/debug": "^4.1.12",
"@types/node": "^20.17.0",
"typescript": "^5.6.0",
"vitest": "^4.1.10"
},
"peerDependenciesMeta": {
"testingbot-tunnel-launcher": {
"optional": true
}
},
"bin": {
"mobilewright-driver": "dist/cli.js"
},
"publishConfig": {
"access": "public"
}
}