-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
44 lines (44 loc) · 1017 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
41
42
43
44
{
"author": "Troy Goode <[email protected]> (https://github.com/troygoode/)",
"name": "shuffle",
"version": "0.2.5",
"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": "[email protected]",
"web": "https://github.com/troygoode/"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/TroyGoode/node-shuffle/issues"
},
"main": "./src/index.js",
"directories": {
"lib": "./src"
},
"engines": {
"node": ">=0.4.0"
},
"dependencies": {},
"devDependencies": {
"mocha": "^8.2.1",
"should": "^13.2.3"
},
"scripts": {
"test": "mocha",
"start": "node example/blackjack.js"
}
}