2017-07-04 11:43:45 +01:00
|
|
|
{
|
2017-07-09 16:52:37 +01:00
|
|
|
"name": "libp2p-in-the-browser",
|
|
|
|
"version": "0.1.0",
|
2017-07-05 12:12:51 +01:00
|
|
|
"description": "See other nodes in the network using WebRTC Star discovery mechanism",
|
2017-07-04 11:43:45 +01:00
|
|
|
"main": "src/index.js",
|
|
|
|
"scripts": {
|
2017-07-05 12:12:51 +01:00
|
|
|
"bundle": "browserify src/index.js > public/bundle.js",
|
2017-07-04 11:43:45 +01:00
|
|
|
"serve": "static public -p 9090 -H '{\"Cache-Control\": \"no-cache, must-revalidate\"}'",
|
|
|
|
"start": "npm run bundle && npm run serve"
|
|
|
|
},
|
|
|
|
"license": "MIT",
|
|
|
|
"devDependencies": {
|
2017-08-24 10:58:06 +01:00
|
|
|
"browserify": "^14.4.0",
|
2017-07-04 11:43:45 +01:00
|
|
|
"concat-stream": "^1.6.0",
|
|
|
|
"detect-dom-ready": "^1.0.2",
|
2017-07-09 16:52:37 +01:00
|
|
|
"node-static": "^0.7.9"
|
2017-07-04 11:43:45 +01:00
|
|
|
},
|
2017-07-09 16:52:37 +01:00
|
|
|
"dependencies": {
|
|
|
|
"detect-dom-ready": "^1.0.2",
|
2017-08-24 10:58:06 +01:00
|
|
|
"libp2p": "^0.11.0",
|
2017-07-09 16:52:37 +01:00
|
|
|
"libp2p-multiplex": "^0.4.4",
|
2017-08-24 10:58:06 +01:00
|
|
|
"libp2p-railing": "^0.6.1",
|
|
|
|
"libp2p-secio": "^0.7.1",
|
2017-07-09 16:52:37 +01:00
|
|
|
"libp2p-spdy": "^0.10.6",
|
2017-08-24 10:58:06 +01:00
|
|
|
"libp2p-webrtc-star": "^0.12.0",
|
|
|
|
"libp2p-websockets": "^0.10.1",
|
|
|
|
"peer-info": "^0.10.0"
|
2017-07-09 16:52:37 +01:00
|
|
|
}
|
2017-07-04 11:43:45 +01:00
|
|
|
}
|