-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 983 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 983 Bytes
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
{
"name": "mobilewright-monorepo",
"version": "0.0.1",
"description": "Mobile device automation framework inspired by Playwright",
"homepage": "https://mobilewright.dev",
"license": "Apache-2.0",
"engines": {
"node": ">=18"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "tsc -b",
"example": "npm run build && tsx",
"test": "playwright test --config=tests/mobilewright.config.ts",
"test:coverage": "npx c8 --include 'packages/*/src/**/*.ts' --exclude '**/*.test.ts' playwright test --config=tests/mobilewright.config.ts",
"lint": "tsc --noEmit && eslint ."
},
"devDependencies": {
"@mobilewright/test": "*",
"@playwright/test": "^1.58.2",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/node": "^22.19.15",
"@typescript-eslint/eslint-plugin": "^8.59.3",
"@typescript-eslint/parser": "^8.59.3",
"eslint": "^10.4.0",
"mobilewright": "*",
"tsx": "^4.0.0",
"typescript": "^5.7.0"
}
}