mirror of
https://github.com/fluencelabs/js-peer-id
synced 2025-07-05 03:41:49 +00:00
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
8f4027b136 | |||
90835484fe | |||
8bcd9a880e |
@ -1,3 +1,8 @@
|
|||||||
|
<a name="0.12.4"></a>
|
||||||
|
## [0.12.4](https://github.com/libp2p/js-peer-id/compare/v0.12.3...v0.12.4) (2019-07-23)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a name="0.12.3"></a>
|
<a name="0.12.3"></a>
|
||||||
## [0.12.3](https://github.com/libp2p/js-peer-id/compare/v0.12.2...v0.12.3) (2019-07-11)
|
## [0.12.3](https://github.com/libp2p/js-peer-id/compare/v0.12.2...v0.12.3) (2019-07-11)
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "peer-id",
|
"name": "peer-id",
|
||||||
"version": "0.12.3",
|
"version": "0.12.4",
|
||||||
"description": "IPFS Peer Id implementation in Node.js",
|
"description": "IPFS Peer Id implementation in Node.js",
|
||||||
"leadMaintainer": "Pedro Teixeira <i@pgte.me>",
|
"leadMaintainer": "Pedro Teixeira <i@pgte.me>",
|
||||||
"main": "src/index.js",
|
"main": "src/index.js",
|
||||||
@ -34,14 +34,14 @@
|
|||||||
},
|
},
|
||||||
"homepage": "https://github.com/libp2p/js-peer-id",
|
"homepage": "https://github.com/libp2p/js-peer-id",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"aegir": "^18.2.2",
|
"aegir": "^20.0.0",
|
||||||
"bundlesize": "~0.17.1",
|
"bundlesize": "~0.17.1",
|
||||||
"chai": "^4.2.0",
|
"chai": "^4.2.0",
|
||||||
"dirty-chai": "^2.0.1"
|
"dirty-chai": "^2.0.1"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"libp2p-crypto": "~0.16.1",
|
"libp2p-crypto": "~0.16.1",
|
||||||
"async": "^3.0.1",
|
"async": "^2.6.3",
|
||||||
"class-is": "^1.1.0",
|
"class-is": "^1.1.0",
|
||||||
"multihashes": "~0.4.15"
|
"multihashes": "~0.4.15"
|
||||||
},
|
},
|
||||||
@ -55,6 +55,7 @@
|
|||||||
"David Dias <mail@daviddias.me>",
|
"David Dias <mail@daviddias.me>",
|
||||||
"Friedel Ziegelmayer <dignifiedquire@gmail.com>",
|
"Friedel Ziegelmayer <dignifiedquire@gmail.com>",
|
||||||
"Hugo Dias <hugomrdias@gmail.com>",
|
"Hugo Dias <hugomrdias@gmail.com>",
|
||||||
|
"Jacob Heun <jacobheun@gmail.com>",
|
||||||
"Maciej Krüger <mkg20001@gmail.com>",
|
"Maciej Krüger <mkg20001@gmail.com>",
|
||||||
"Michael Garvin <gar+gh@danger.computer>",
|
"Michael Garvin <gar+gh@danger.computer>",
|
||||||
"Pedro Teixeira <i@pgte.me>",
|
"Pedro Teixeira <i@pgte.me>",
|
||||||
|
@ -9,5 +9,6 @@ PeerId.create((err, id) => {
|
|||||||
throw err
|
throw err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// eslint-disable-next-line
|
||||||
console.log(JSON.stringify(id.toJSON(), null, 2))
|
console.log(JSON.stringify(id.toJSON(), null, 2))
|
||||||
})
|
})
|
||||||
|
Reference in New Issue
Block a user