forked from mdp/MachinePoker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 829 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 829 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
31
{
"name": "machine-poker",
"version": "0.5.1",
"description": "The library for Machine Poker Competitions",
"keywords": [
"competition",
"poker"
],
"repository": "git://github.com/mdp/MachinePoker.git",
"author": "Mark Percival <m@mdp.im> (http://markpercival.us)",
"scripts": {
"test": "rm -rf lib && coffee --compile -o lib/ src/ && mocha --no-colors --compilers coffee:coffee-script test/*_test.coffee",
"prepublish": "rm -rf lib && coffee --compile -o lib/ src/"
},
"devDependencies": {
"mocha": ">=0.0.0",
"coffee-script": ">=1.4.0"
},
"dependencies": {
"binions": ">=0.6.4",
"hoyle": ">=0.2.0",
"async": ">=0.1.22",
"request": ">=2.11.4",
"optimist": ">=0.3.5"
},
"main": "./lib/index.js",
"engines": {
"node": "0.8.x"
},
"license": "MIT"
}