Compare commits

...

6 Commits

Author SHA1 Message Date
cbb7290a97 chore: release version v0.5.3 2017-02-10 19:28:41 -08:00
63b10c01e3 chore: update contributors 2017-02-10 19:28:41 -08:00
11c21b6999 fix: use async.setImmediate 2017-02-10 19:28:34 -08:00
109ee51d7b chore: release version v0.5.2 2017-02-09 10:18:38 -08:00
09182b43bf chore: update contributors 2017-02-09 10:18:38 -08:00
a130ab2dc1 chore: ^ to ~ 2017-02-09 10:16:51 -08:00
2 changed files with 10 additions and 9 deletions

View File

@ -1,6 +1,6 @@
{
"name": "libp2p",
"version": "0.5.1",
"version": "0.5.3",
"description": "JavaScript Skeleton for libp2p bundles",
"main": "src/index.js",
"scripts": {
@ -32,20 +32,20 @@
"bugs": {
"url": "https://github.com/libp2p/js-libp2p/issues"
},
"homepage": "https://github.com/diasdavid/js-libp2p",
"homepage": "https://github.com/libp2p/js-libp2p",
"devDependencies": {
"chai": "^3.5.0",
"aegir": "^9.4.0",
"aegir": "^10.0.0",
"pre-commit": "^1.2.2"
},
"dependencies": {
"libp2p-ping": "^0.3.0",
"libp2p-swarm": "^0.26.13",
"libp2p-ping": "~0.3.1",
"libp2p-swarm": "~0.26.16",
"mafmt": "^2.1.6",
"multiaddr": "^2.2.0",
"peer-book": "^0.3.0",
"peer-id": "^0.8.1",
"peer-info": "^0.8.2"
"multiaddr": "^2.2.1",
"peer-book": "~0.3.1",
"peer-id": "~0.8.2",
"peer-info": "~0.8.3"
},
"contributors": [
"David Dias <daviddias.p@gmail.com>",

View File

@ -9,6 +9,7 @@ const mafmt = require('mafmt')
const EE = require('events').EventEmitter
const assert = require('assert')
const Ping = require('libp2p-ping')
const setImmediate = require('async/setImmediate')
exports = module.exports