-
Notifications
You must be signed in to change notification settings - Fork 3.8k
/
package.json
51 lines (51 loc) · 1.19 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
50
51
{
"name": "hubot",
"version": "0.0.0-development",
"author": "hubot",
"keywords": [
"github",
"hubot",
"campfire",
"bot"
],
"description": "A simple helpful robot for your Company",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hubotio/hubot.git"
},
"dependencies": {
"connect-multiparty": "^2.2.0",
"express": "^4.19.2",
"express-basic-auth": "^1.2.1",
"pino": "^8.11.0"
},
"devDependencies": {
"standard": "^17.1.0"
},
"engines": {
"node": ">= 18",
"npm": ">= 9"
},
"main": "./index.mjs",
"bin": {
"hubot": "./bin/hubot"
},
"scripts": {
"start": "bin/hubot",
"gen": "bin/hubot --create myhubot",
"pretest": "standard",
"test": "node --test",
"test:smoke": "node src/**/*.js",
"test:e2e": "bin/e2e-test.sh",
"build:local": "npx @hubot-friends/sfab --folder ./docs --destination ./_site --verbose --serve /hubot/ --watch-path ./docs --scripts ./sfab-hooks",
"build": "npx @hubot-friends/sfab --folder ./docs --destination ./_site --verbose --scripts ./sfab-hooks"
},
"release": {
"branches": [
"main",
"next"
],
"dryRun": false
}
}