This repository was archived by the owner on Sep 10, 2024. It is now read-only.
forked from martynsmith/node-irc
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.34 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.34 KB
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
52
{
"name": "irc-upd",
"description": "An IRC client library for node",
"version": "0.11.0",
"author": "Edward Jones <throne3d@gmail.com>",
"scripts": {
"lint": "eslint .",
"posttest": "nyc report && npm run lint",
"save-coverage": "nyc report --reporter=lcov",
"test": "nyc --reporter=none mocha test/test-*.js"
},
"contributors": [
"Fionn Kelleher <me@fionn.co>",
"xAndy <xandy@hackerspace-bamberg.de>",
"Mischa Spiegelmock <revmischa@cpan.org>",
"Justin Gallardo <justin.gallardo@gmail.com>",
"Chris Nehren <cnehren@pobox.com>",
"Henri Niemeläinen <aivot-on@iki.fi>",
"Alex Miles <ghostaldev@gmail.com>",
"Simmo Saan <simmo.saan@gmail.com>",
"Martyn Smith <martyn@dollyfish.net.nz>"
],
"repository": {
"type": "git",
"url": "http://github.com/Throne3d/node-irc"
},
"bugs": {
"url": "http://github.com/Throne3d/node-irc/issues"
},
"main": "lib/irc",
"engines": {
"node": ">=0.10.0"
},
"license": "GPL-3.0",
"dependencies": {
"irc-colors": "^1.5.0"
},
"optionalDependencies": {
"chardet": "^1.2.1",
"iconv-lite": "^0.6.2"
},
"devDependencies": {
"ansi-color": "0.2.1",
"chai": "^4.3.4",
"coveralls": "^3.1.0",
"eslint": "^7.25.0",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"sinon": "^10.0.0"
}
}