-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 957 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
{
"name": "dice-notation-js",
"version": "1.0.3",
"description": "A dice notation parser and roller.",
"main": "dice.js",
"scripts": {
"test": "mocha test.js",
"test-travis": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec ./test.js",
"lint": "jshint dice.js",
"build": "terser -c -m -o dist/dice.min.js ./dice.js"
},
"files": [
"dice.js"
],
"author": "Chapel",
"license": "MIT",
"devDependencies": {
"coveralls": "^3.0.5",
"istanbul": "^0.4.5",
"jshint": "^2.12.0",
"mocha": "^6.2.0",
"seedrandom": "^3.0.1",
"terser": "^4.8.0"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/ChapelR/dice-notation.git"
},
"keywords": [
"dice",
"dice-roller",
"rpg",
"parser"
],
"bugs": {
"url": "https://github.com/ChapelR/dice-notation/issues"
},
"homepage": "https://github.com/ChapelR/dice-notation#readme"
}