poker-evaluator
Version:
A library to evaluate 3, 5, 6 or 7 card poker hands
35 lines (34 loc) • 762 B
JSON
{
"name": "poker-evaluator",
"version": "2.1.1",
"description": "A library to evaluate 3, 5, 6 or 7 card poker hands",
"main": "lib/poker-evaluator.js",
"prepublish": "tsc",
"scripts": {
"test": "jest",
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm test"
},
"files": [
"lib/**/*",
"data/*"
],
"keywords": [],
"author": "Sukhmai (https://github.com/Sukhmai)",
"homepage": "https://github.com/Sukhmai/poker-evaluator",
"license": "ISC",
"dependencies": {
"@types/node": "^13.1.6",
"tslib": "^1.10.0",
"typescript": "^3.7.4"
},
"engines": {
"node": ">= 0.6.0"
},
"devDependencies": {
"@types/jest": "^24.9.0",
"jest": "^24.9.0",
"ts-jest": "^24.3.0"
}
}