-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 1.1 KB
/
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
41
42
43
44
45
46
47
48
{
"name": "ircdjs",
"description": "An IRCD for Node",
"version": "0.0.17",
"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.8.x",
"npm": "1.1.x"
},
"dependencies": {
"carrier": ">= 0.0.3",
"bcrypt": ">= 0.4.0",
"winston": "0.6.1",
"commander": "git://github.com/visionmedia/commander.js.git",
"socketstream": "0.3.x",
"ss-coffee": "0.1.x",
"ss-jade": "0.1.x",
"ss-stylus": "0.1.x",
"ss-hogan": "0.1.x",
"everyauth": "",
"underscore": ""
},
"devDependencies": {
"mocha": "1.2.2",
"irc": "0.3.4"
},
"bin": {
"ircdjs-pwgen": "bin/pwgen.js",
"ircdjs": "bin/ircd.js"
},
"licenses": [
{
"type": "GPL",
"url": "http://github.com/alexyoung/ircd.js/raw/master/LICENSE"
}
]
}