forked from gsdriver/blackjack-simulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 818 Bytes
/
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
{
"name": "blackjack-simulator",
"version": "1.0.2",
"description": "Simulation program to run multiple hands based on Basic Strategy",
"main": "simulator.js",
"dependencies": {
"knuth-shuffle": "^1.0.1",
"blackjack-strategy": "^1.3.0"
},
"devDependencies": {},
"scripts": {
"test": "node simulator.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gsdriver/blackjack-simulator.git"
},
"keywords": [
"blackjack",
"basic strategy",
"game"
],
"directories": {
"doc": ".",
"test": ".",
"lib": "."
},
"author": "Garrett Vargas <gsdriver@live.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gsdriver/blackjack-simulator/issues"
},
"homepage": "https://github.com/gsdriver/blackjack-simulator#readme"
}