-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
40 lines (40 loc) · 926 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": "ircdjs",
"description": "An IRCD for Node",
"version": "0.0.22",
"homepage": "https://github.com/alexyoung/ircd.js",
"author": "Alex R. Young (http://alexyoung.org)",
"main" : "./lib/server.js",
"directories": {
"lib": "./lib",
"man": "./doc/man"
},
"scripts": {
"test": "make test"
},
"keywords": ["irc", "ircd", "daemons", "servers", "chat"],
"repository": "git://github.com/alexyoung/ircd.js.git",
"engines": {
"node": ">= 0.10.3"
},
"dependencies": {
"carrier": ">= 0.1.13",
"bcrypt": ">= 0.8.0",
"winston": "0.7.3",
"commander": "git://github.com/tj/commander.js.git"
},
"devDependencies": {
"mocha": "1.21.4",
"irc": "0.3.5"
},
"bin": {
"ircdjs-pwgen": "bin/pwgen.js",
"ircdjs": "bin/ircd.js"
},
"licenses": [
{
"type": "GPL",
"url": "http://github.com/alexyoung/ircd.js/raw/master/LICENSE"
}
]
}