forked from michaelowens/NodeJS-IRC-Bot
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
44 lines (44 loc) · 968 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
41
42
43
44
{
"name": "NodeJS-IRC-Bot",
"description": "An Open Source IRC Bot written with NodeJS",
"version": "0.0.7",
"author": "Michael Owens (http://www.michaelowens.nl)",
"contributors ": [{
"name": "Michael Owens",
"web": "http://www.michaelowens.nl"
},
{
"name": "Karl Tiedt",
"web": "http://www.twitter.com/ktiedt"
},
{
"name": "Markus M. May",
"email": "mmay@javafreedom.org",
"web": "http://www.javafreedom.org"
}],
"repository": {
"type": "git",
"url": "http://github.com/ktiedt/NodeJS-IRC-Bot"
},
"main": "bot.js",
"engines": {
"node": ">=0.8"
},
"dependencies": {
"pkgconfig": "0.0.4",
"optimist": "0.3.5",
"winston": "0.6.x"
},
"devDependencies": {
"should": "1.2.x",
"underscore": "*",
"mocha": "*"
},
"licenses": {
"type": "UNLICENSE",
"url": "http://unlicense.org/"
},
"scripts": {
"test": "mocha --reporter spec test/*.spec.js"
}
}