forked from slackapi/hubot-slack
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
48 lines (48 loc) · 983 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-friends/hubot-slack",
"version": "0.0.0-development",
"description": "A new Slack adapter for Hubot",
"homepage": "https://github.com/hubot-friends/hubot-slack#readme",
"main": "./index.mjs",
"scripts": {
"test": "node --test",
"test:watch": "node --test --watch"
},
"keywords": [
"hubot",
"adapter",
"slack"
],
"author": "Joey Guerra",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hubot-friends/hubot-slack.git"
},
"bugs": {
"url": "https://github.com/hubot-friends/hubot-slack/issues"
},
"dependencies": {
"@slack/socket-mode": "^1.3.2",
"@slack/web-api": "^6.11.2"
},
"peerDependencies": {
"hubot": ">= 11"
},
"engines": {
"node": ">= 18"
},
"devDependencies": {
"pino-pretty": "^10.0.1"
},
"release": {
"branches": [
"main",
"next"
],
"dryRun": false
},
"publishConfig": {
"access": "public"
}
}