simple-roundrobin
Version:
A simple round-robin tournament scheduler
33 lines (32 loc) • 724 B
JSON
{
"name": "simple-roundrobin",
"version": "2.0.1",
"description": "A simple round-robin tournament scheduler",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tmatijev/simple-roundrobin.git"
},
"keywords": [
"tournament",
"schedule",
"round-robin",
"sports"
],
"author": "Tomislav Matijevic",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.11.24",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
}
}