UNPKG

poker-ts

Version:

Texas Hold 'Em Poker table model with convenience features for running real games.

50 lines (49 loc) 1.22 kB
{ "name": "poker-ts", "version": "1.5.0", "description": "Texas Hold 'Em Poker table model with convenience features for running real games.", "main": "dist/index.js", "files": [ "dist" ], "scripts": { "build": "rimraf dist && tsc", "start": "node dist/index.js", "dev": "nodemon --exec ts-node src/index.ts --watch src", "test": "jest", "watch": "jest --watch", "lint": "tslint --project tsconfig.json", "coverage": "jest --coverage" }, "repository": { "type": "git", "url": "https://github.com/claudijo/poker-ts.git" }, "homepage": "https://github.com/claudijo/poker-ts", "bugs": { "url": "https://github.com/claudijo/poker-ts/issues" }, "keywords": [ "poker", "poker engine", "poker game", "poker game engine", "texas hold'em", "texas holdem", "hold'em", "holdem" ], "author": "Claudijo Borovic <claudijo.borovic@gmail.com>", "license": "MIT", "devDependencies": { "@types/jest": "^26.0.23", "@types/node": "^15.3.0", "jest": "^26.6.3", "nodemon": "^2.0.7", "rimraf": "^3.0.2", "ts-jest": "^26.5.6", "ts-node": "^9.1.1", "tslint": "^6.1.3", "typescript": "^4.2.4" } }