test-fixture-factory
Version:
A minimal library for creating and managing test fixtures using Vitest, enabling structured, repeatable, and efficient testing processes.
49 lines • 1.12 kB
JSON
{
"name": "test-fixture-factory",
"version": "2.0.2",
"engines": {
"node": ">=24.0.0"
},
"description": "A minimal library for creating and managing test fixtures using Vitest, enabling structured, repeatable, and efficient testing processes.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"keywords": [
"dependency-management",
"factory",
"fixture",
"javascript",
"lifecycle-management",
"mocking",
"test",
"test-automation",
"test-data",
"test-factory",
"test-fixtures",
"testing",
"typescript",
"unit-testing",
"vitest",
"zero-dependencies"
],
"author": {
"name": "George Czabania"
},
"license": "MIT",
"type": "module",
"devDependencies": {
"@biomejs/biome": "2.2.2",
"@types/node": "24.3.0",
"knip": "5.63.0",
"tsup": "8.5.0",
"typescript": "5.9.2",
"vitest": "3.2.4"
},
"scripts": {
"build": "tsup",
"test": "vitest --watch=false",
"tidy": "biome check --fix --unsafe",
"tidy:check": "biome check",
"tsc": "tsc --incremental",
"knip": "knip"
}
}