forked from alexyoung/ircd.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 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
{
"name": "ircdjs",
"description": "An IRCD for Node",
"version": "0.0.13",
"homepage": "https://github.com/alexyoung/ircd.js",
"author": "Alex R. Young (http://alexyoung.org)",
"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.2.0"
},
"dependencies": {
"carrier": ">= 0.0.3",
"bcrypt": ">= 0.4.0",
"winston": "latest",
"commander": "latest"
},
"devDependencies": {
"nodeunit": "0.6.2",
"irc": "latest"
},
"bin": {
"ircdjs-pwgen": "bin/pwgen.js",
"ircdjs": "bin/ircd.js"
},
"licenses": [
{
"type": "GPL",
"url": "http://github.com/alexyoung/ircd.js/raw/master/LICENSE"
}
]
}