-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1022 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": "croupier",
"description": "Random number generator",
"version": "0.0.1",
"homepage": "https://github.com/croupier-lib/croupier-js",
"author": {
"name": "Sergio Arbeo",
"email": "[email protected]",
"url": "http://twitter.com/Serabe"
},
"repository": {
"type": "git",
"url": "[email protected]:croupier-lib/croupier-js.git"
},
"bugs": {
"url": "https://github.com/croupier-lib/croupier-js/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/croupier-lib/croupier-js/blob/master/LICENSE-MIT"
}
],
"main": "lib/croupier",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "grunt test"
},
"dependencies": {
"commander": "~2.0.0"
},
"devDependencies": {
"grunt-coffeelint": "~0.0.7",
"grunt-contrib-nodeunit": "~0.2.0",
"grunt-contrib-watch": "~0.4.0",
"grunt-contrib-coffee": "~0.7.0",
"grunt-exec": "~0.4.2",
"grunt": "~0.4.1"
},
"keywords": ["distribution", "random"]
}