-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
49 lines (49 loc) · 1.11 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
{
"name": "roll",
"version": "1.3.2",
"author": "Troy Goode <[email protected]> (https://github.com/troygoode/)",
"description": "node.js package for rolling dice and adding modifiers. ex: 2d6+1",
"keywords": [
"roll",
"random",
"dice",
"games",
"rpg",
"role playing"
],
"homepage": "https://github.com/troygoode/node-roll/",
"repository": {
"type": "git",
"url": "git://github.com/troygoode/node-roll.git"
},
"contributors": [
{
"name": "Troy Goode",
"email": "[email protected]",
"web": "https://github.com/troygoode/"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/TroyGoode/node-roll/issues"
},
"main": "./src/index.js",
"engines": {
"node": ">=4"
},
"devDependencies": {
"prettier": "^3.3.3",
"mocha": "^10.7.0",
"should": "^13.2.3"
},
"scripts": {
"test": "./node_modules/.bin/_mocha",
"prettier": "./node_modules/.bin/prettier package.json bin/roll \"{example,src,test}/**/*.js\" --write"
},
"bin": {
"roll": "bin/roll"
},
"dependencies": {
"minimist": "^1.2.8"
}
}