This repository has been archived by the owner on Jul 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
63 lines (63 loc) · 1.52 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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "peerbot",
"description": "Message seeding utility for friends p2p chat.",
"version": "0.1.1",
"author": "MOOSE Team",
"bin": {
"peerbot": "./bin/cli.js"
},
"bugs": {
"url": "https://github.com/moose-team/peerbot/issues"
},
"dependencies": {
"end-of-stream": "^1.1.0",
"friends-swarm": "^1.0.0",
"ghsign": "^1.2.2",
"hyperlog": "^3.3.1",
"leveldown": "maxogden/leveldown#newnan",
"levelup": "^0.19.0",
"minimist": "^1.1.1",
"node-gyp": "^1.0.3",
"protocol-buffers": "^3.0.0",
"request": "^2.55.0",
"shelljs": "^0.4.0",
"signalhub": "^3.3.0",
"silence-chromium": "^1.1.0",
"single-line-log": "^0.4.1",
"subleveldown": "^2.0.0",
"through2": "^0.6.5",
"webrtc-swarm": "^1.2.0"
},
"devDependencies": {
"standard": "*"
},
"homepage": "https://github.com/moose-team/peerbot",
"keywords": [
"bot",
"chat",
"communication",
"crypto",
"discussion",
"friends",
"irc",
"mad science",
"p2p",
"peer-to-peer",
"replication",
"slack",
"team chat",
"webrtc"
],
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/moose-team/peerbot.git"
},
"scripts": {
"postinstall": "npm run rebuild-leveldb",
"rebuild-leveldb": "cd node_modules/leveldown && set HOME=~/.electron-gyp && node-gyp rebuild --target=0.25.1 --arch=x64 --dist-url=https://atom.io/download/atom-shell",
"start": "electron-spawn .",
"test": "standard"
}
}