chore: revert async dep change (#97)

* chore: revert async dep change

* chore: update async to 2.6.3
This commit is contained in:
Jacob Heun 2019-07-23 13:32:46 +01:00 committed by GitHub
parent 0bce8f7a87
commit 8bcd9a880e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -34,14 +34,14 @@
},
"homepage": "https://github.com/libp2p/js-peer-id",
"devDependencies": {
"aegir": "^18.2.2",
"aegir": "^20.0.0",
"bundlesize": "~0.17.1",
"chai": "^4.2.0",
"dirty-chai": "^2.0.1"
},
"dependencies": {
"libp2p-crypto": "~0.16.1",
"async": "^3.0.1",
"async": "^2.6.3",
"class-is": "^1.1.0",
"multihashes": "~0.4.15"
},

View File

@ -9,5 +9,6 @@ PeerId.create((err, id) => {
throw err
}
// eslint-disable-next-line
console.log(JSON.stringify(id.toJSON(), null, 2))
})