-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 992 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
{
"name": "rtc-scamp",
"version": "0.0.4",
"author": "Chat-Wane <grumpy.chat.wane@gmail.com>",
"description": "Gossip-based dissemination protocol using the SCAMP membership management that automatically scales with the global size of the network without global knowledges.",
"main": "./lib/network.js",
"repository": {
"type": "git",
"url": "https://github.com/chat-wane/rtc-SCAMP.git"
},
"keywords": [
"gossip",
"broadcast",
"scamp",
"webrtc"
],
"scripts": {
"debug": "browserify -r ./lib/network.js:rtc-scamp --debug > build/rtc-scamp.bundle.debug.js",
"build": "browserify -r ./lib/network.js:rtc-scamp | uglifyjs > build/rtc-scamp.bundle.js"
},
"dependencies": {
"rtc-scamp-mbr": "0.0.x",
"bounded-broadcast-definition": "0.0.x",
"p2pnetwork": "0.1.x"
},
"bundledDependencies": [
"rtc-scamp-mbr",
"bounded-broadcast-definition",
"p2pnetwork"
],
"license": "MIT",
"engines": {
"node": ">=0.10.35"
}
}