forked from FruitieX/teleirc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 868 Bytes
/
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
{
"name": "teleirc",
"description": "Telegram <-> IRC gateway",
"preferGlobal": true,
"bin": {
"teleirc": "teleirc.js"
},
"scripts": {
"prestart": "npm install",
"start": "node teleirc.js",
"test": "NODE_ENV=test ./node_modules/mocha/bin/mocha"
},
"version": "0.4.0",
"licenses": [
{
"type": "MIT"
}
],
"repository": [
{
"type": "git",
"url": "https://github.com/FruitieX/teleirc.git"
}
],
"bugs": "https://github.com/FruitieX/teleirc/issues",
"homepage": "https://github.com/FruitieX/teleirc",
"dependencies": {
"irc": "~0.3.12",
"lodash": "^3.10.1",
"mkdirp": "^0.5.1",
"node-static": "^0.7.7",
"node-telegram-bot-api": "^0.15.0"
},
"devDependencies": {
"jscs": "^2.2.1",
"mocha": "^2.3.3",
"mocha-jscs": "^4.0.0",
"mocha-jshint": "^2.2.3"
}
}