forked from reactiflux/discord-irc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.66 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.7.1",
"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.20.0",
"discord.js": "11.4.2",
"irc-colors": "1.5.0",
"irc-formatting": "1.0.0-rc3",
"irc-upd": "0.10.0",
"lodash": "^4.17.11",
"simple-markdown": "0.4.4",
"strip-json-comments": "3.0.1",
"winston": "3.2.1"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-preset-node6": "^11.0.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^4.2.0",
"coveralls": "^3.0.4",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^12.0.1",
"eslint-plugin-import": "^2.17.3",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"sinon": "^4.5.0",
"sinon-chai": "^2.8.0"
}
}