feat: Feature 1.1 — Odds API integration complete, 28 tests passing

This commit is contained in:
Kev
2026-03-21 08:31:15 -04:00
parent f70db389e2
commit 00409fd6cd
16 changed files with 6896 additions and 6 deletions
+37
View File
@@ -0,0 +1,37 @@
{
"name": "betonblk",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"test": "jest --verbose",
"test:unit": "jest tests/unit --verbose",
"test:integration": "jest tests/integration --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kev3109/betonblk.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/kev3109/betonblk/issues"
},
"homepage": "https://github.com/kev3109/betonblk#readme",
"dependencies": {
"axios": "^1.13.6",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"ioredis": "^5.10.1"
},
"devDependencies": {
"jest": "^30.3.0",
"supertest": "^7.2.2"
}
}