forked from ekmartin/slack-irc
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.46 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
{
"name": "slack-irc",
"version": "3.7.5",
"description": "Connects IRC and Slack channels by sending messages back and forth.",
"keywords": [
"slack",
"irc",
"gateway",
"bot",
"slack-irc"
],
"main": "dist/index.js",
"bin": "dist/index.js",
"repository": {
"type": "git",
"url": "[email protected]:ekmartin/slack-irc.git"
},
"bugs": {
"url": "https://github.com/ekmartin/slack-irc/issues"
},
"scripts": {
"start": "node dist/index.js",
"build": "babel lib --out-dir dist",
"prepublish": "npm run build",
"lint": "eslint . --ignore-path .gitignore",
"coverage": "nyc --require babel-core/register _mocha -- $(find test -name '*.test.js') && nyc report --reporter=cobertura",
"test": "npm run lint && npm run coverage"
},
"author": {
"name": "Martin Ek <[email protected]>"
},
"license": "MIT",
"dependencies": {
"check-env": "~1.2.0",
"commander": "~2.9.0",
"irc": "~0.4.0",
"lodash": "~3.10.1",
"slack-client": "~1.5.0",
"strip-json-comments": "~2.0.0",
"winston": "~2.1.1"
},
"devDependencies": {
"babel-cli": "~6.4.0",
"babel-core": "~6.4.0",
"babel-eslint": "~5.0.0-beta4",
"babel-preset-es2015": "~6.3.13",
"babel-preset-stage-0": "~6.3.13",
"chai": "~3.4.1",
"eslint": "~1.10.2",
"eslint-config-airbnb": "~3.1.0",
"istanbul": "~0.4.1",
"mocha": "~2.3.4",
"nyc": "~5.3.0",
"sinon": "~1.17.2",
"sinon-chai": "~2.8.0"
}
}