forked from brunoscopelliti/poker-holdem-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.25 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
{
"name": "poker-holdem-engine",
"version": "2.0.5",
"description": "Texas hold'em poker engine",
"main": "index.js",
"engines": {
"node": "6.0.0"
},
"browser": {
"winston": false
},
"scripts": {
"demo": "node demo/demo.js",
"test": "grunt unit"
},
"repository": {
"type": "git",
"url": "https://github.com/brunoscopelliti/poker-holdem-engine.git"
},
"keywords": [
"poker",
"texas",
"hold'em",
"poker",
"engine",
"poker",
"game"
],
"author": "Bruno Scopelliti",
"license": "MIT",
"bugs": {
"url": "https://github.com/brunoscopelliti/poker-holdem-engine/issues"
},
"homepage": "https://github.com/brunoscopelliti/poker-holdem-engine",
"dependencies": {
"chalk": "1.1.3",
"knuth-shuffle": "1.0.1",
"poker-combinations": "1.1.0",
"poker-deck": "1.0.0",
"poker-rank": "1.1.0",
"request": "2.81.0",
"winston": "2.3.1"
},
"devDependencies": {
"body-parser": "1.17.1",
"express": "4.15.2",
"grunt": "1.0.1",
"grunt-browserify": "5.0.0",
"grunt-contrib-connect": "1.0.2",
"grunt-contrib-watch": "1.0.0",
"grunt-eslint": "19.0.0",
"mongoose": "4.9.2",
"sinon": "2.1.0",
"tape": "4.6.3",
"tape-case": "2.2.0"
}
}