-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
49 lines (49 loc) · 1.13 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
{
"name": "kiwibnc",
"version": "1.0.1",
"description": "Multi user IRC bouncer",
"main": "src/server.js",
"dependencies": {
"@koa/router": "^12.0.1",
"amqplib": "^0.10.3",
"bcrypt": "^5.1.1",
"better-sqlite3": "^8.7.0",
"commander": "^10.0.1",
"fs-extra": "^11.2.0",
"http-proxy": "^1.18.1",
"ip-cidr": "^3.1.0",
"irc-framework": "^4.13.1",
"keyvals": "^1.0.0",
"knex": "^2.5.1",
"koa": "^2.15.0",
"koa-body": "^6.0.1",
"koa-mount": "^4.0.0",
"koa-static": "^5.0.0",
"lodash": "^4.17.21",
"lru-cache": "^5.1.1",
"minimatch": "^6.2.0",
"mysql": "^2.18.1",
"node-cleanup": "^2.1.2",
"parse-duration": "^1.1.0",
"pg": "^8.11.3",
"readline-sync": "^1.4.10",
"rpc-over-ipc": "^1.0.0",
"strftime": "^0.10.2",
"toml": "^3.0.0",
"unzipper": "^0.10.14",
"uuid": "^9.0.1",
"ws": "^8.16.0"
},
"devDependencies": {
"jest": "^29.7.0"
},
"scripts": {
"test": "jest",
"start": "node src/server.js"
},
"bin": {
"kiwibnc": "src/server.js"
},
"author": "Darren Whitlen <[email protected]>",
"license": "Apache-2.0"
}