forked from ekmartin/slack-irc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.77 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
{
"name": "slack-irc",
"version": "3.11.3",
"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": "git@github.com: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')",
"report": "nyc report --reporter=text-lcov | coveralls",
"test": "npm run lint && npm run coverage"
},
"author": {
"name": "Martin Ek <mail@ekmartin.no>"
},
"license": "MIT",
"dependencies": {
"@slack/client": "3.13.0",
"check-env": "1.3.0",
"commander": "2.20.0",
"irc-upd": "0.10.0",
"lodash": "^4.17.11",
"strip-json-comments": "3.0.1",
"winston": "3.2.1"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^4.2.0",
"coveralls": "^3.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.17.3",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0"
}
}