-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 872 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 872 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
33
34
35
36
37
38
39
40
41
42
43
{
"name": "hubot-help",
"description": "A hubot script to show available hubot commands",
"version": "0.0.0-development",
"author": "Josh Nichols <josh@technicalpickles.com>",
"license": "MIT",
"keywords": [
"hubot",
"hubot-scripts"
],
"engines": {
"node": ">= 18"
},
"repository": {
"type": "git",
"url": "https://github.com/hubotio/hubot-help.git"
},
"bugs": {
"url": "https://github.com/hubotio/hubot-help/issues"
},
"main": "index.js",
"scripts": {
"pretest": "standard",
"test": "node --test",
"coverage": "node --test --experimental-test-coverage"
},
"files": [
"index.js",
"src"
],
"peerDependencies": {
"hubot": ">= 9 || 0.0.0-development"
},
"devDependencies": {
"standard": "^17.1.0"
},
"release": {
"branches": [
"main"
],
"dryRun": false
}
}