-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
53 lines (53 loc) · 1.19 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-client",
"version": "0.3.3",
"description": "Use Slack as your IRC client",
"author": "Axel Eirola <[email protected]>",
"license": "ISC",
"homepage": "https://github.com/aeirola/slack-irc-client",
"repository": {
"type": "git",
"url": "https://github.com/aeirola/slack-irc-client"
},
"bugs": {
"url": "https://github.com/aeirola/slack-irc-client/issues"
},
"keywords": [
"slack",
"irc"
],
"bin": "./bin/server.js",
"scripts": {
"test": "eslint bin/ lib/ test/ && mocha",
"start": "node ./bin/server.js",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"dependencies": {
"@slack/client": "^3.5.0",
"gravatar": "^1.5.2",
"irc": "^0.5.0",
"lodash": "^4.6.1",
"promise": "^7.1.1",
"require-reload": "0.2.2",
"winston": "^2.2.0",
"yargs": "^4.3.2"
},
"preferGlobal": true,
"private": false,
"directories": {
"bin": "./bin",
"lib": "./lib"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^2.1.0",
"mocha": "^2.4.5",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0"
},
"engines": {
"node": ">= 0.10.x",
"npm": ">= 2.0.x"
}
}