forked from hubotio/hubot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.14 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
52
53
54
55
56
57
58
{
"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": {
"async": "^3.2.4",
"cline": "^0.8.2",
"coffeescript": "^2.7.0",
"connect-multiparty": "^2.2.0",
"express": "^4.18.2",
"express-basic-auth": "^1.2.1",
"optparse": "^1.0.5",
"pino": "^8.11.0"
},
"devDependencies": {
"chai": "^4.3.7",
"is-circular": "^1.0.2",
"mocha": "^10.2.0",
"mockery": "^2.1.0",
"semantic-release": "^21.0.1",
"sinon": "^15.0.4",
"sinon-chai": "^3.7.0",
"standard": "^17.0.0"
},
"engines": {
"node": "> 4.0.0",
"npm": "> 2.0.0"
},
"main": "./index",
"bin": {
"hubot": "./bin/hubot"
},
"scripts": {
"start": "bin/hubot",
"pretest": "standard",
"test": "mocha --exit",
"test:smoke": "node src/**/*.js"
},
"release": {
"branches": [
"main",
"next"
],
"dryRun": false
}
}