forked from slackapi/hubot-slack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.73 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
{
"name": "hubot-slack",
"version": "4.0.2",
"description": "A Slack adapter for hubot",
"main": "./slack",
"scripts": {
"test": "npm run mocha && istanbul report text-summary lcov",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"mocha": "mocha --compilers coffee:coffee-script/register --require coffee-coverage/register-istanbul --reporter spec test"
},
"keywords": [
"hubot",
"tinyspeck",
"adapter",
"slack"
],
"author": "Slack Technologies, Inc.",
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/slackhq/hubot-slack.git"
},
"bugs": {
"url": "https://github.com/slackhq/hubot-slack/issues"
},
"dependencies": {
"@slack/client": "^3.4.0",
"lodash": "^3.10.1"
},
"devDependencies": {
"hubot": "~2.11",
"coffee-coverage": "^1.0.1",
"coffee-script": "~1.7.1",
"coveralls": "^2.11.9",
"grunt": "~0.4.1",
"grunt-cli": "^0.1.13",
"grunt-contrib-watch": "~0.5.3",
"grunt-release": "~0.6.0",
"grunt-shell": "~0.5.0",
"istanbul": "^0.4.3",
"mocha": "~1.13.0",
"should": "~2.0.2"
},
"engines": {
"node": ">= 0.10.x",
"npm": ">= 1.1.x"
},
"contributors": [
{
"name": "Myles Grant",
"email": "myles@tinyspeck.com"
},
{
"name": "Evan Solomon"
},
{
"name": "Jon Dalberg"
},
{
"name": "Patrick Connolly"
},
{
"name": "Chip Hayner",
"email": "chayner@centresource.com"
},
{
"name": "Eric Lindvall",
"email": "eric@papertrailapp.com"
},
{
"email": "don@slack-corp.com",
"name": "D.E. Goodman-Wilson"
},
{
"email": "jagan@slack-corp.com",
"name": "John Agan"
}
]
}