-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
59 lines (59 loc) · 1.44 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "poker-odds-calc",
"version": "0.0.14",
"description": "Fastest and most accurate node module for calculating odds of poker games Texas Hold'em, Texas Shortdeck/Sixplus and Omaha.",
"license": "MIT",
"dependencies": {
"@types/argv": "0.0.4",
"argv": "0.0.2",
"lodash": "^4.17.20",
"typescript": "^4.0.3"
},
"devDependencies": {
"@types/es6-shim": "^0.31.41",
"@types/lodash": "^4.14.161",
"@types/mocha": "^5.2.5",
"@types/node": "^10.17.35",
"mocha": "^6.2.3",
"ts-node": "^8.10.2",
"tslint": "^5.20.1"
},
"bin": {
"poker-odds-calc": "./dist/lib/bin/poker-odds-calc.js"
},
"engines": {
"node": ">=6.0.0"
},
"main": "./dist/index.js",
"typings": "./dts/index.d.ts",
"scripts": {
"build": "rm -rf dist/* && rm -rf dts/* && tsc",
"test": "mocha ./dist/test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/siavashg87/poker-odds-calc.git"
},
"keywords": [
"poker",
"odds",
"odds calculator",
"texas hold'em",
"texas holdem",
"shortdeck texas hold'em",
"6+ texas hold'em",
"six plus texas hold'em",
"omaha",
"omaha hi",
"hand equity",
"equity"
],
"bugs": {
"url": "https://github.com/siavashg87/poker-odds-calc/issues"
},
"homepage": "https://github.com/siavashg87/poker-odds-calc#readme",
"directories": {
"test": "test"
},
"author": "Siavash Goudarzi <[email protected]>"
}