forked from martynsmith/node-irc
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.57 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": "funsocietyirc-client",
"description": "An ehanced IRC client library for node, forked from node-irc",
"version": "0.1.20",
"author": "Dave Richer <dave@[email protected]>",
"scripts": {
"test": "./node_modules/faucet/bin/cmd.js test/test-*.js",
"lint": "./node_modules/jscs/bin/jscs --preset=node-style-guide */*.js",
"lint-fix": "./node_modules/jscs/bin/jscs --preset=node-style-guide */*.js --fix"
},
"contributors": [
"Martyn Smith <[email protected]>",
"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]>",
"Blay <[email protected]>",
"Dave Richer <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/funsocietyirc/node-irc"
},
"bugs": {
"mail": "[email protected]",
"url": "https://github.com/funsocietyirc/node-irc/issues"
},
"main": "lib/irc",
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
},
"license": "GPL-3.0",
"tonicExample": "const ircClient = require('funsocietyirc-client')",
"dependencies": {
"iconv-lite": "^0.5.0",
"irc-colors": "^1.5.0",
"jschardet": "https://github.com/dfoody/jschardet.git",
"lodash": "^4.17.11"
},
"devDependencies": {
"ansi-color": "^0.2.1",
"faucet": "0.0.1",
"jscs": "^3.0.7",
"tape": "^4.11.0"
}
}