-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.88 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.88 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
71
72
73
74
75
76
77
78
79
80
{
"name": "@testingbot/cli",
"version": "1.0.5",
"description": "CLI tool to run Espresso, XCUITest and Maestro tests on TestingBot's cloud infrastructure",
"main": "dist/index.js",
"bin": {
"testingbot": "dist/index.js"
},
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=20"
},
"scripts": {
"lint": "prettier --check '**/*.{js,ts}' && eslint src/",
"build": "tsc",
"clean": "rm -rf dist",
"start": "node dist/index.js",
"format": "prettier --write '**/*.{js,ts}'",
"test": "jest"
},
"keywords": [
"testingbot",
"mobile-testing",
"espresso",
"xcuitest",
"maestro",
"android",
"ios",
"test-automation",
"cloud-testing",
"cli",
"real-devices",
"emulators",
"simulators"
],
"author": "TestingBot",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/testingbot/testingbotctl.git"
},
"homepage": "https://testingbot.com",
"bugs": {
"url": "https://github.com/testingbot/testingbotctl/issues"
},
"dependencies": {
"archiver": "^7.0.1",
"axios": "^1.13.2",
"commander": "^14.0.2",
"file-type": "^21.1.1",
"form-data": "^4.0.5",
"glob": "^13.0.0",
"js-yaml": "^4.1.1",
"picocolors": "^1.1.1",
"progress-stream": "^2.0.0",
"socket.io-client": "^4.8.1",
"tracer": "^1.3.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tsconfig/node20": "^20.1.8",
"@types/archiver": "^7.0.0",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.4.0",
"@types/progress-stream": "^2.0.5",
"babel-jest": "^30.3.0",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"jest": "^30.3.0",
"prettier": "^3.7.4",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1"
}
}