Files
2026-06-21 18:23:51 +02:00

28 lines
883 B
JSON

{
"name": "tests",
"version": "0.0.1",
"private": true,
"description": "Function test harness — Cucumber over in-process Pikku RPC with stubbed services.",
"type": "module",
"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/ai-vercel": "^0.12.6",
"@pikku/cucumber": "^0.12.4",
"@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",
"c8": "^10.0.0",
"tsx": "^4.21.0",
"typescript": "~5.8.0"
}
}