-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.03 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
{
"name": "@testingbot/eas-workflow",
"description": "Run Maestro tests on TestingBot from EAS Workflows",
"author": "TestingBot",
"version": "1.2.0",
"main": "dist/index.js",
"bin": {
"testingbot-eas-workflow": "dist/index.js"
},
"files": [
"dist"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/testingbot/testingbot-eas.git"
},
"homepage": "https://testingbot.com/support/app-automate/maestro/ci-cd/expo-eas",
"keywords": [
"testingbot",
"maestro",
"eas",
"expo",
"eas-workflows",
"mobile-testing",
"e2e"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "ncc build src/index.ts -o dist --minify",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"format": "prettier --write ."
},
"devDependencies": {
"@types/node": "^22.10.0",
"@vercel/ncc": "^0.38.3",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"vite": "^8.2.2",
"vitest": "^5.0.0"
},
"packageManager": "pnpm@9.12.3"
}