-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.62 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.62 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
{
"name": "testfold",
"version": "0.3.0",
"description": "Unified test runner with Jest and Playwright support, parallel execution, and detailed failure reporting",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"testfold": "./dist/cli/index.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "tsx watch src/cli/index.ts",
"build": "tsc",
"test": "node tests/scripts/run-all-tests.js",
"test:unit": "node tests/scripts/run-unit-tests.js",
"test:integration": "node tests/scripts/run-integration-tests.js",
"lint": "eslint src tests",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepublishOnly": "npm run build"
},
"keywords": [
"test",
"runner",
"jest",
"playwright",
"testing",
"parallel",
"reporter"
],
"author": "Mike",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/witqq/testfold.git"
},
"homepage": "https://github.com/witqq/testfold#readme",
"bugs": {
"url": "https://github.com/witqq/testfold/issues"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"dotenv": "^16.4.5",
"minimist": "^1.2.8",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/minimist": "^1.2.5",
"@types/node": "^20.10.0",
"eslint": "^9.15.0",
"jest": "^29.7.0",
"prettier": "^3.4.0",
"ts-jest": "^29.2.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"typescript-eslint": "^8.15.0"
}
}