forked from Throne3d/node-irc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.34 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
52
{
"name": "irc-upd",
"description": "An IRC client library for node",
"version": "0.11.0",
"author": "Edward Jones <[email protected]>",
"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 <[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]>",
"Martyn Smith <[email protected]>"
],
"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"
}
}