-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 757 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 757 Bytes
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
{
"name": "hubot-roller",
"version": "0.2.3",
"description": "Flexible dice roller for Hubot",
"main": "src/index.js",
"scripts": {
"genparser": "pegjs src/die-parser.pegjs",
"test": "npm run genparser && mocha",
"prepare": "npm run genparser"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smashwilson/hubot-roll.git"
},
"keywords": [
"hubot",
"dice"
],
"author": "Ash Wilson <smashwilson@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/smashwilson/hubot-roll/issues"
},
"homepage": "https://github.com/smashwilson/hubot-roll#readme",
"dependencies": {
"pegjs": "^0.10.0"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^8.0.1"
}
}