forked from martynsmith/node-irc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.3 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
49
50
51
{
"name": "irc",
"description": "An IRC client library for node",
"version": "0.4.0",
"author": "Martyn Smith <[email protected]>",
"scripts": {
"test": "./node_modules/faucet/bin/cmd.js test/test-*.js",
"lint": "./node_modules/jscs/bin/jscs --preset=airbnb */*.js"
},
"contributors": [
"Fionn Kelleher <[email protected]>",
"xAndy <[email protected]>",
"Mischa Spiegelmock <[email protected]>",
"Justin Gallardo <[email protected]>",
"Chris Nehren <[email protected]>",
"Henri Niemeläinen <[email protected]>",
"Alex Miles <[email protected]>",
"Simmo Saan <[email protected]>"
],
"repository": {
"type": "git",
"url": "http://github.com/martynsmith/node-irc"
},
"bugs": {
"mail": "[email protected]",
"url": "http://github.com/martynsmith/node-irc/issues"
},
"main": "lib/irc",
"engines": {
"node": ">=0.10.0"
},
"licenses": [
{
"type": "GPL",
"url": "http://github.com/martynsmith/node-irc/raw/master/COPYING"
}
],
"dependencies": {
"irc-colors": "^1.1.0"
},
"optionalDependencies": {
"iconv": "~2.1.6",
"node-icu-charset-detector": "~0.1.2"
},
"devDependencies": {
"ansi-color": "0.2.1",
"faucet": "0.0.1",
"jscs": "1.9.0",
"tape": "^3.0.3"
}
}