forked from ekmartin/slack-irc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.7 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
{
"name": "slack-irc",
"version": "3.8.7",
"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"
},
"engines": {
"node": ">=4"
},
"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",
"mocha": "mocha --compilers js:babel-core/register $(find test -name '*.test.js')",
"mocha:watch": "npm run mocha -- --watch --reporter min",
"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": {
"@slack/client": "3.6.0",
"check-env": "1.2.0",
"commander": "2.9.0",
"irc": "0.5.0",
"lodash": "^4.15.0",
"strip-json-comments": "2.0.1",
"winston": "2.2.0"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-eslint": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"eslint": "^3.6.0",
"eslint-config-airbnb-base": "^9.0.0",
"eslint-plugin-import": "^2.0.1",
"mocha": "^3.0.1",
"nyc": "^8.1.0",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0"
}
}