forked from troygoode/node-shuffle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"author": "Troy Goode <troygoode@gmail.com> (https://github.com/troygoode/)",
"name": "shuffle",
"version": "0.2.3",
"description": "node.js package for shuffling and dealing decks of cards (or anything else you'd like to shuffle)",
"keywords": ["shuffle", "random", "cards", "games"],
"homepage": "https://github.com/troygoode/node-shuffle/",
"repository": {
"type": "git",
"url": "git://github.com/troygoode/node-shuffle.git"
},
"contributors": [
{
"name": "Troy Goode",
"email": "troygoode@gmail.com",
"web": "https://github.com/troygoode/"
}
],
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"bugs": {
"url": "https://github.com/TroyGoode/node-shuffle/issues"
},
"main": "./lib/index.js",
"directories": {
"lib": "./lib"
},
"engines": {
"node": ">=0.4.0"
},
"dependencies": {},
"devDependencies": {
"mocha": "latest",
"should": "latest"
},
"scripts": {
"test": "mocha",
"start": "node example/blackjack.js"
}
}