UNPKG

poker-odds-calculator

Version:

A pre-flop and post-flop odds calculator for Texas Holdem

75 lines (74 loc) 1.79 kB
{ "name": "poker-odds-calculator", "version": "0.3.1", "description": "A pre-flop and post-flop odds calculator for Texas Holdem", "bin": { "poker-odds-calculator": "./dist/bin/poker-odds-calculator.js" }, "main": "./dist/index.js", "typings": "./dts/index.d.ts", "scripts": { "build": "rm -rf dist/* && rm -rf dts/* && tsc", "lint": "tslint --project tsconfig.json -e ./src/bin/*.ts ./src/{,**/}*.ts ./tests/{,**/}*.ts --format verbose", "test": "NODE_ENV=test mocha --recursive --timeout 4000 --compilers ts:ts-node/register --bail", "cover": "NODE_ENV=test nyc --report-dir coverage npm t" }, "repository": { "type": "git", "url": "git+https://github.com/rundef/node-poker-odds-calculator.git" }, "keywords": [ "poker", "odds", "equity" ], "author": "Mickael Burguet <www.rundef.com>", "license": "MIT", "engines": { "node": ">= 6.0.0", "npm": ">= 3" }, "dependencies": { "chalk": "^1.1.3", "commander": "^2.9.0", "lodash": "^4.17.4" }, "devDependencies": { "@ssense/tslint-config": "^4.0.0", "@types/chai": "^3.4.34", "@types/chalk": "^0.4.31", "@types/commander": "^2.3.31", "@types/lodash": "^4.14.52", "@types/mocha": "^2.2.37", "@types/node": "^7.0.0", "chai": "^3.5.0", "coveralls": "^3.0.2", "mocha": "^5.2.0", "nyc": "^13.0.1", "ts-node": "^7.0.0", "tslint": "^4.3.1", "tslint-microsoft-contrib": "^4.0.0", "typescript": "^2.1.5" }, "nyc": { "include": [ "src/*.ts" ], "exclude": [ "node_modules", "dts" ], "extension": [ ".ts" ], "require": [ "ts-node/register" ], "reporter": [ "json", "html", "lcov" ], "all": true } }