-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
48 lines (48 loc) · 950 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
41
42
43
44
45
46
47
48
{
"name": "hubot-rules",
"description": "A hubot script that explains the rules",
"version": "0.0.0-development",
"publishConfig": {
"access": "public"
},
"author": "Josh Nichols <[email protected]>",
"license": "MIT",
"keywords": [
"hubot",
"hubot-scripts"
],
"engines": {
"node": ">= 18",
"npm": ">= 9"
},
"repository": {
"type": "git",
"url": "https://github.com/hubotio/hubot-rules.git"
},
"bugs": {
"url": "https://github.com/hubotio/hubot-rules/issues"
},
"main": "index.js",
"files": [
"index.js",
"src"
],
"scripts": {
"pretest": "standard",
"test": "node --test",
"coverage": "node --test --experimental-test-coverage"
},
"peerDependencies": {
"hubot": ">= 9 || 0.0.0-development"
},
"devDependencies": {
"standard": "^17.1.0"
},
"release": {
"branches": [
"main",
"next"
],
"dryRun": false
}
}