added cli-covarage tool and fixed more tests
This commit is contained in:
parent
b63e58784c
commit
b845a8eade
57 changed files with 11917 additions and 295 deletions
37
tools/coverage-cli/package.json
Normal file
37
tools/coverage-cli/package.json
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
{
|
||||
"name": "@stock-bot/coverage-cli",
|
||||
"version": "1.0.0",
|
||||
"description": "Custom coverage tool for Stock Bot with advanced reporting and exclusion capabilities",
|
||||
"type": "module",
|
||||
"bin": {
|
||||
"stock-bot-coverage": "./dist/index.js"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "bun build ./src/index.ts --outdir ./dist --target node",
|
||||
"dev": "bun run src/index.ts",
|
||||
"test": "bun test"
|
||||
},
|
||||
"dependencies": {
|
||||
"chalk": "^5.3.0",
|
||||
"commander": "^11.1.0",
|
||||
"glob": "^10.3.10",
|
||||
"handlebars": "^4.7.8",
|
||||
"lcov-parse": "^1.0.0",
|
||||
"table": "^6.8.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/glob": "^8.1.0",
|
||||
"@types/lcov-parse": "^1.0.0",
|
||||
"@types/node": "^20.10.5",
|
||||
"bun-types": "^1.0.18"
|
||||
},
|
||||
"keywords": [
|
||||
"coverage",
|
||||
"test",
|
||||
"cli",
|
||||
"bun",
|
||||
"reporting"
|
||||
],
|
||||
"author": "Stock Bot Team",
|
||||
"license": "MIT"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue