-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.53 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.53 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
{
"name": "testurio-monorepo",
"version": "0.6.1",
"private": true,
"description": "Testurio monorepo - Declarative E2E/integration testing framework",
"author": "Damir Yusipov",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/udamir/testurio.git"
},
"bugs": {
"url": "https://github.com/udamir/testurio/issues"
},
"homepage": "https://github.com/udamir/testurio#readme",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "pnpm -r build",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"prepublish": "pnpm run test:run && pnpm -r run prepublish",
"publish:all": "pnpm -r run prepublish && pnpm -r publish --access public",
"docs:dev": "cd docs-site && npm run dev",
"docs:build": "cd docs-site && npm run build",
"docs:preview": "cd docs-site && npm run preview"
},
"devDependencies": {
"@biomejs/biome": "^2.4.7",
"@testcontainers/mongodb": "^11.12.0",
"@testcontainers/postgresql": "^11.12.0",
"@testcontainers/rabbitmq": "^11.12.0",
"@testcontainers/redis": "^11.12.0",
"@testcontainers/redpanda": "^11.12.0",
"@types/node": "^25.5.0",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^4.1.0",
"ioredis": "^5.10.0",
"testcontainers": "^11.12.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.1.0",
"zod": "^4.3.6"
}
}