forked from codeKonami/poker-hand
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 801 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 801 Bytes
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
{
"name": "poker-hand-evaluator",
"version": "1.0.1",
"description": "Poker Texas Holdem Hand Evaluator using Cactus Kev's algorithm",
"keywords": "poker, evaluator, Cactus Kev, algorithm, texas holdem",
"main": "index.js",
"scripts": {
"dev": "nodemon example/index.js",
"test": "jest && node test/complete.js",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "https://github.com/codeKonami/poker-hand.git"
},
"author": {
"name": "codeKonami",
"email": "thomas.foricher@gmail.com"
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.2.1",
"babel-preset-es2015": "^6.22.0",
"jest": "^22.3.0",
"nodemon": "^1.15.1",
"webpack": "^3.11.0"
}
}