26 lines
836 B
JSON
26 lines
836 B
JSON
{
|
|
"name": "function-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": "npx pikku tests coverage",
|
|
"tsc": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@pikku/cucumber": "^0.12.5",
|
|
"@pikku/kysely-node-sqlite": "^0.12.2",
|
|
"@pikku/kysely-sqlite": "^0.12.6",
|
|
"@pikku/schema-cfworker": "^0.12.2"
|
|
},
|
|
"devDependencies": {
|
|
"@cucumber/cucumber": "^11.0.0",
|
|
"@types/node": "^22",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "~5.8.0"
|
|
}
|
|
}
|