forked from slackapi/hubot-slack
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
91 lines (91 loc) · 1.88 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "hubot-slack",
"version": "4.7.2",
"description": "A Slack adapter for hubot",
"main": "./slack",
"scripts": {
"test": "npm run mocha && istanbul report text-summary lcov",
"codecov": "codecov",
"mocha": "mocha --require coffeescript/register --require coffee-coverage/register-istanbul --reporter spec test/*.coffee"
},
"keywords": [
"hubot",
"tinyspeck",
"adapter",
"slack"
],
"author": "Slack Technologies, Inc.",
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/slackapi/hubot-slack.git"
},
"bugs": {
"url": "https://github.com/slackapi/hubot-slack/issues"
},
"dependencies": {
"@slack/client": "3.16.1-sec.2",
"bluebird": "^3.5.1",
"lodash": "^4.17.10"
},
"peerDependencies": {
"hubot": ">= 2.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"codecov": "^3.2.0",
"coffee-coverage": "^2.0.0",
"coffeescript": "^1.12.7",
"hubot": ">= 2.19.0",
"istanbul": "^0.4.3",
"mocha": "^4.1.0",
"mockery": "^2.1.0",
"should": "^8.0.0"
},
"engines": {
"node": ">= 0.12",
"npm": ">= 2.0.0"
},
"contributors": [
{
"name": "Myles Grant",
"email": "[email protected]"
},
{
"name": "Evan Solomon"
},
{
"name": "Jon Dalberg"
},
{
"name": "Patrick Connolly"
},
{
"name": "Chip Hayner",
"email": "[email protected]"
},
{
"name": "Eric Lindvall",
"email": "[email protected]"
},
{
"email": "[email protected]",
"name": "D.E. Goodman-Wilson"
},
{
"email": "[email protected]",
"name": "John Agan"
},
{
"email": "[email protected]",
"name": "Ankur Oberoi"
},
{
"email": "[email protected]",
"name": "Shane DeWael"
},
{
"name": "Siôn le Roux"
}
]
}