-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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
{
"name": "rtc-mesh",
"version": "1.0.0",
"description": "A synchronized, distributed P2P mesh data structure using WebRTC data channels",
"main": "index.js",
"scripts": {
"test": "browserify test/all.js | broth start-$BROWSER | tap-spec",
"gendocs": "gendocs > README.md"
},
"repository": {
"type": "git",
"url": "/~https://github.com/rtc-io/rtc-mesh.git"
},
"keywords": [
"webrtc",
"rtc.io",
"mesh",
"scuttlebutt",
"p2p"
],
"author": "Damon Oehlman <damon.oehlman@nicta.com.au>",
"license": "Apache 2.0",
"bugs": {
"url": "/~https://github.com/rtc-io/rtc-mesh/issues"
},
"homepage": "/~https://github.com/rtc-io/rtc-mesh",
"dependencies": {
"async": "^0.9.0",
"cog": "^1.0.0",
"rtc-dcstream": "^2.0.0",
"scuttlebutt": "~5.6.8",
"through": "~2.3.4"
},
"devDependencies": {
"broth": "^2.0.0",
"browserify": "^9.0.3",
"crdt": "^3",
"crel": "^2.1.8",
"rtc-quickconnect": "^4.2.1",
"rtc-switchboard": "^2.2.1",
"tap-spec": "^2.2.2",
"tape": "^3.5.0",
"travis-multirunner": "^2.1.0",
"uuid": "^2.0.1"
}
}