25 lines
763 B
JSON
25 lines
763 B
JSON
{
|
|
"name": "tests",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"type": "module",
|
|
"description": "Function test harness — Cucumber over in-process Pikku RPC with stubbed services.",
|
|
"scripts": {
|
|
"test": "node --env-file=.env.test node_modules/.bin/cucumber-js --config tests/cucumber.mjs --tags 'not @skip'",
|
|
"test:tag": "node --env-file=.env.test node_modules/.bin/cucumber-js --config tests/cucumber.mjs --tags",
|
|
"coverage": "pikku tests coverage",
|
|
"tsc": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@pikku/cucumber": "0.12.9",
|
|
"@pikku/kysely-node-sqlite": "^0.12.3"
|
|
},
|
|
"devDependencies": {
|
|
"@cucumber/cucumber": "^11.0.0",
|
|
"@types/node": "^22",
|
|
"c8": "^10.0.0",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "~5.8.0"
|
|
}
|
|
}
|