blob: 0d70a857fa8a2aa052becabeea219a32ed0e9259 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{
"name": "dice",
"version": "0.0.1",
"description": "Dice expression parser and evaluator",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/m-chrzan/dice.js.git"
},
"author": "Marcin Chrzanowski",
"license": "MIT",
"bugs": {
"url": "https://github.com/m-chrzan/dice.js/issues"
},
"homepage": "https://github.com/m-chrzan/dice.js#readme",
"devDependencies": {
"eslint": "^4.2.0",
"jest": "^20.0.4"
}
}
|