forked from dice-roller/rpg-dice-roller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 864 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
{
"name": "rpg-dice-roller",
"description": "A dice roller that accepts typical dice notation",
"author": "GreenImp <info@greenimp.co.uk> (http://greenimp.co.uk",
"version": "2.0.0",
"license": "MIT",
"main": "dice-roller.js",
"repository": {
"type": "git",
"url": "https://github.com/GreenImp/rpg-dice-roller.git"
},
"bugs": {
"url": "https://github.com/GreenImp/rpg-dice-roller/issues"
},
"homepage": "https://github.com/GreenImp/rpg-dice-roller",
"keywords": [
"dice",
"roller",
"notation",
"rpg",
"roll",
"pathfinder",
"d&d"
],
"devDependencies": {
"grunt": "^1.0.3",
"grunt-cli": "^1.2.0",
"grunt-contrib-jasmine": "^2.0.1",
"grunt-contrib-jshint": "^1.1.0",
"jshint": "^2.9.6"
},
"scripts": {
"test": "grunt ci"
},
"jshintConfig": {
"esversion": 6
}
}