-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 958 Bytes
/
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
{
"name": "cabal-irc",
"version": "1.0.0",
"description": "Connect to Cabal using an IRC client.",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test $(npm bin)/tape test.js",
"start": "node cli.js --db=./testdb --key=${CABAL_KEY}",
"debug": "NODE_ENV=test node --inspect-brk test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cabal-club/cabal-irc.git"
},
"keywords": [
"p2p",
"cabal",
"chat",
"irc"
],
"author": "Karissa McKelvey",
"bugs": {
"url": "https://github.com/cabal-club/cabal-irc/issues"
},
"homepage": "https://github.com/cabal-club/cabal-irc#readme",
"dependencies": {
"cabal-core": "^4.0.0",
"debug": "^4.1.0",
"irc-protocol": "^1.0.1",
"irc-upd": "^0.10.0",
"minimist": "^1.2.0"
},
"devDependencies": {
"irc-client": "0.0.2",
"random-access-memory": "^3.0.0",
"tap-spec": "^5.0.0",
"tape": "^4.9.0"
}
}