forked from ngokevin/pokery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 884 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
35
36
37
38
39
40
{
"name": "pokery",
"version": "0.4.1",
"description": "Poker library for poker crunchers.",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/ngokevin/pokery.git"
},
"author": "Kevin Ngo <[email protected]>",
"license": "GPLv2.0",
"bugs": {
"url": "https://github.com/ngokevin/pokery/issues"
},
"keywords": [
"poker",
"holdem",
"cruncher",
"hand"
],
"scripts": {
"compile": "babel --stage 1 -d lib/ src",
"postinstall": "npm run compile",
"prepublish": "npm run compile",
"test": "npm run compile && mocha $(find lib -name '*.test.js')"
},
"devDependencies": {
"babel": "^5.8.3",
"chai": "^3.2.0",
"chai-things": "^0.2.0",
"mocha": "^2.2.5"
},
"dependencies": {
"lodash": "^3.10.0",
"yargs": "^3.15.0"
},
"bin": {
"pokery": "./bin/pokery"
}
}