forked from chancejs/chancejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.1 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
45
46
47
48
49
50
51
{
"name": "chance",
"main": "./chance.js",
"version": "0.6.4",
"description": "Chance - Utility library to generate anything random",
"homepage": "http://chancejs.com",
"author": "Victor Quinn <mail@victorquinn.com>",
"bugs": {
"url": "https://github.com/victorquinn/chancejs/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/victorquinn/chancejs.git"
},
"licenses": [
{
"type": "MIT",
"url": "http://chancejs.com/license/"
}
],
"devDependencies": {
"grunt": "0.4.5",
"grunt-contrib-jshint": "0.10.0",
"grunt-mocha-phantomjs": "0.5.0",
"grunt-contrib-uglify": "0.5.0",
"grunt-contrib-watch": "0.6.1",
"grunt-shell": "0.7.0",
"mocha-phantomjs": "3.5.0",
"uglify-js": "1.2.6",
"grunt-bump": "0.0.11"
},
"scripts": {
"test": "./node_modules/mocha-phantomjs/bin/mocha-phantomjs test/runner.html"
},
"keywords": [
"chance",
"random",
"generator",
"test",
"mersenne",
"name",
"address",
"dice"
],
"spm": {
"main": "chance.js",
"ignore": [
"test"
]
}
}