-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 855 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 855 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
33
34
35
36
37
38
39
40
41
{
"name": "twd-runner",
"version": "0.1.1",
"description": "Cross-browser test runner for TWD tests using Playwright",
"type": "module",
"main": "src/index.js",
"bin": {
"twd-runner": "./bin/twd-runner.js"
},
"files": [
"bin",
"src",
"README.md"
],
"scripts": {
"test": "vitest",
"test:ci": "vitest --run --coverage",
"execute:cli": "node ./bin/twd-runner.js",
"lock:linux": "docker run --rm -v \"$PWD\":/app -w /app node:24 npm install --package-lock-only"
},
"keywords": [
"twd",
"testing",
"cli",
"playwright",
"cross-browser",
"browser-testing"
],
"author": "",
"license": "ISC",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"playwright": "^1.60.0"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.1.8",
"vitest": "^4.1.8"
}
}