forked from reactiflux/discord-irc
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.65 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
66
{
"name": "discord-irc",
"version": "2.6.2",
"description": "Connects IRC and Discord channels by sending messages back and forth.",
"keywords": [
"discord",
"irc",
"gateway",
"bot",
"discord-irc",
"reactiflux"
],
"engines": {
"node": ">=6.0.0"
},
"main": "dist/index.js",
"bin": "dist/index.js",
"repository": {
"type": "git",
"url": "[email protected]:reactiflux/discord-irc.git"
},
"bugs": {
"url": "https://github.com/reactiflux/discord-irc/issues"
},
"scripts": {
"start": "node dist/index.js",
"build": "babel lib --out-dir dist",
"prepare": "npm run build",
"lint": "eslint . --ignore-path .gitignore",
"coverage": "nyc --require babel-core/register _mocha -- test/*.test.js",
"report": "nyc report --reporter=text-lcov | coveralls",
"test": "npm run lint && npm run coverage"
},
"author": {
"name": "Reactiflux"
},
"license": "MIT",
"dependencies": {
"check-env": "1.3.0",
"commander": "2.18.0",
"discord.js": "11.4.2",
"irc-colors": "1.4.3",
"irc-formatting": "1.0.0-rc3",
"irc-upd": "0.10.0",
"lodash": "^4.17.4",
"simple-markdown": "0.4.2",
"strip-json-comments": "2.0.1",
"winston": "3.1.0"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-eslint": "^8.0.1",
"babel-preset-node6": "^11.0.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^4.0.2",
"coveralls": "^3.0.0",
"eslint": "^4.8.0",
"eslint-config-airbnb-base": "^12.0.1",
"eslint-plugin-import": "^2.7.0",
"mocha": "^5.0.0",
"nyc": "^13.0.1",
"sinon": "^4.0.1",
"sinon-chai": "^2.8.0"
}
}