mirror of https://github.com/buster-so/buster.git
35 lines
1012 B
JSON
35 lines
1012 B
JSON
{
|
|
"name": "@buster/test-utils",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"module": "src/index.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./src/index.ts",
|
|
"default": "./src/index.ts"
|
|
},
|
|
"./*": {
|
|
"types": "./src/*",
|
|
"default": "./src/*"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"prebuild": "tsx scripts/validate-env.ts",
|
|
"build": "tsc",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "biome check --write",
|
|
"test": "vitest run",
|
|
"test:unit": "DATABASE_URL=postgresql://test:test@localhost:5432/test vitest run --exclude '**/*.int.test.ts' --exclude '**/*.integration.test.ts' --passWithNoTests",
|
|
"test:integration": "vitest run **/*.int.test.ts **/*.integration.test.ts",
|
|
"test:watch": "vitest watch",
|
|
"test:coverage": "vitest run --coverage"
|
|
},
|
|
"dependencies": {
|
|
"@buster/database": "workspace:*",
|
|
"@buster/env-utils": "workspace:*",
|
|
"@buster/typescript-config": "workspace:*",
|
|
"@buster/vitest-config": "workspace:*",
|
|
"uuid": "catalog:"
|
|
}
|
|
}
|