forked from FruitieX/teleirc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.05 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.05 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
{
"name": "teleirc",
"description": "Telegram <-> IRC gateway",
"preferGlobal": true,
"bin": {
"teleirc": "bin/teleirc"
},
"scripts": {
"prestart": "npm install",
"start": "node bin/teleirc",
"test": "NODE_ENV=test ./node_modules/mocha/bin/mocha",
"join-tg": "node src/join-tg.js"
},
"version": "0.4.7",
"license": "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": {
"git-rev-sync": "^1.6.0",
"imgur": "^0.2.0",
"irc": "^0.5.0",
"irc-colors": "^1.2.1",
"lodash": "^4.12.0",
"mkdirp": "^0.5.1",
"node-static": "^0.7.7",
"node-telegram-bot-api": "^0.27.0",
"os-homedir": "^1.0.1",
"string.prototype.startswith": "^0.2.0",
"winston": "^2.2.0",
"yargs": "^4.7.0"
},
"devDependencies": {
"jscs": "^3.0.3",
"mocha": "^2.4.5",
"mocha-jscs": "^5.0.0",
"mocha-jshint": "^2.3.1"
}
}