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
|
{
"name": "dicebag",
"version": "0.0.1",
"description": "Dice expression parser and roller",
"keywords": [ "dice", "random", "rpg", "tabletop", "roll", "roller" ],
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint ."
},
"bin": {
"dicebag": "./bin/dicebag.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/m-chrzan/dicebag.git"
},
"author": "Marcin Chrzanowski",
"license": "MIT",
"bugs": {
"url": "https://github.com/m-chrzan/dicebag/issues"
},
"homepage": "https://github.com/m-chrzan/dicebag#readme",
"devDependencies": {
"eslint": "^4.2.0",
"jest": "^20.0.4"
}
}
|