forked from reactiflux/discord-irc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.34 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.34 KB
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
{
"name": "discord-irc",
"private": true,
"version": "0.0.1",
"description": "Discord and IRC relay for U413",
"keywords": [
"discord",
"irc",
"gateway",
"bot",
"discord-irc",
"u413"
],
"engines": {
"node": ">=6.0.0"
},
"main": "dist/index.js",
"bin": "dist/index.js",
"repository": {
"type": "git",
"url": "git@github.com:U413/discord-irc.git"
},
"scripts": {
"start": "node dist/index.js",
"build": "babel lib --out-dir dist",
"prepare": "npm run build",
"lint": "eslint . --ignore-path .gitignore",
"test": "npm run lint"
},
"author": {
"name": "EnKrypt"
},
"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",
"eslint": "^4.8.0",
"eslint-config-airbnb-base": "^12.0.1",
"eslint-plugin-import": "^2.7.0",
"mocha": "^5.0.0",
"sinon": "^4.0.1",
"sinon-chai": "^2.8.0"
}
}