forked from kiwiirc/kiwibnc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
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.0",
"amqplib": "^0.10.3",
"bcrypt": "^5.1.0",
"better-sqlite3": "^8.0.1",
"commander": "^10.0.0",
"fs-extra": "^11.1.0",
"http-proxy": "^1.18.1",
"ip-cidr": "^3.0.11",
"irc-framework": "^4.13.0",
"keyvals": "^1.0.0",
"knex": "^2.4.2",
"koa": "^2.14.1",
"koa-body": "^6.0.1",
"koa-mount": "^4.0.0",
"koa-static": "^5.0.0",
"lodash": "^4.17.21",
"lru-cache": "^7.14.1",
"minimatch": "^6.1.6",
"mysql": "^2.18.1",
"node-cleanup": "^2.1.2",
"parse-duration": "^1.0.2",
"pg": "^8.9.0",
"readline-sync": "^1.4.10",
"rpc-over-ipc": "^1.0.0",
"strftime": "^0.10.1",
"toml": "^3.0.0",
"unzipper": "^0.10.11",
"uuid": "^9.0.0",
"ws": "^8.12.0"
},
"devDependencies": {
"jest": "^29.4.1"
},
"scripts": {
"test": "jest",
"start": "node src/server.js"
},
"bin": {
"kiwibnc": "src/server.js"
},
"author": "Darren Whitlen <[email protected]>",
"license": "Apache-2.0"
}