forked from ekmartin/slack-irc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.09 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
{
"name": "slack-irc",
"version": "3.3.0",
"description": "Connects IRC and Slack channels by sending messages back and forth.",
"keywords": [
"slack",
"irc",
"gateway",
"bot",
"slack-irc"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "[email protected]:ekmartin/slack-irc.git"
},
"bugs": {
"url": "https://github.com/ekmartin/slack-irc/issues"
},
"scripts": {
"start": "node index.js",
"test": "make test"
},
"bin": {
"slack-irc": "./index.js"
},
"author": {
"name": "Martin Ek <[email protected]>"
},
"license": "MIT",
"dependencies": {
"body-parser": "~1.11.0",
"check-env": "~1.2.0",
"commander": "~2.6.0",
"irc": "~0.3.9",
"lodash": "~3.1.0",
"slack-client": "^1.4.0",
"winston": "~0.9.0"
},
"devDependencies": {
"chai": "~1.10.0",
"istanbul": "~0.3.5",
"jscs": "~1.10.0",
"jshint": "~2.6.0",
"mocha": "~2.1.0",
"mock-fs": "~2.3.2",
"nock": "~0.59.1",
"rewire": "^2.3.1",
"sinon": "~1.12.2",
"sinon-chai": "~2.6.0",
"supertest": "~0.15.0"
}
}