-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 969 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
{
"name": "chance-deck",
"version": "0.1.0",
"description": "Chance.js mixin for deck (playing cards) related functions",
"main": "index.js",
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"test": "istanbul cover --print detail test/*.js",
"posttest": "istanbul check-coverage --statement 100 --branch 100"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leesei/chance-deck.git"
},
"files": [
"index.js"
],
"keywords": [
"chance",
"chancejs",
"chancejs-mixin",
"deck",
"deal",
"playing cards"
],
"author": "leesei <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/leesei/chance-deck/issues"
},
"homepage": "https://github.com/leesei/chance-deck#readme",
"devDependencies": {
"chance": "^1.0.1",
"istanbul": "^0.4.2",
"lodash.union": "^4.2.0",
"tape": "^4.4.0"
},
"peerDependencies": {
"chance": "^1.0.1"
}
}