mirror of
https://github.com/fluencelabs/js-libp2p-secio
synced 2025-03-15 01:40:51 +00:00
chore: update aegir
This commit is contained in:
parent
e30f57b8f0
commit
49f6acd507
21
package.json
21
package.json
@ -25,12 +25,12 @@
|
||||
"author": "Friedel Ziegelmayer <dignifiedquire@gmail.com>",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"async": "^2.1.4",
|
||||
"debug": "^2.6.1",
|
||||
"interface-connection": "~0.3.1",
|
||||
"libp2p-crypto": "~0.8.2",
|
||||
"multihashing-async": "~0.4.2",
|
||||
"peer-id": "~0.8.2",
|
||||
"async": "^2.1.5",
|
||||
"debug": "^2.6.3",
|
||||
"interface-connection": "~0.3.2",
|
||||
"libp2p-crypto": "~0.8.6",
|
||||
"multihashing-async": "~0.4.4",
|
||||
"peer-id": "~0.8.4",
|
||||
"protocol-buffers": "^3.2.1",
|
||||
"pull-defer": "^0.2.2",
|
||||
"pull-handshake": "^1.1.4",
|
||||
@ -38,12 +38,13 @@
|
||||
"pull-stream": "^3.5.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"aegir": "^10.0.0",
|
||||
"aegir": "^11.0.0",
|
||||
"benchmark": "^2.1.3",
|
||||
"chai": "^3.5.0",
|
||||
"dirty-chai": "^1.2.2",
|
||||
"gulp": "^3.9.1",
|
||||
"libp2p-websockets": "~0.9.2",
|
||||
"multistream-select": "^0.13.4",
|
||||
"libp2p-websockets": "~0.9.4",
|
||||
"multistream-select": "^0.13.5",
|
||||
"pre-commit": "^1.2.2",
|
||||
"pull-goodbye": "0.0.1",
|
||||
"pull-pair": "^1.1.0"
|
||||
@ -70,4 +71,4 @@
|
||||
"Richard Littauer <richard.littauer@gmail.com>",
|
||||
"greenkeeperio-bot <support@greenkeeper.io>"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
/* eslint-env mocha */
|
||||
'use strict'
|
||||
|
||||
const expect = require('chai').expect
|
||||
const chai = require('chai')
|
||||
const dirtyChai = require('dirty-chai')
|
||||
const expect = chai.expect
|
||||
chai.use(dirtyChai)
|
||||
const multiaddr = require('multiaddr')
|
||||
const pull = require('pull-stream')
|
||||
const pullGoodbye = require('pull-goodbye')
|
||||
@ -40,7 +43,7 @@ describe('secio browser <-> nodejs', () => {
|
||||
const s = pullGoodbye({
|
||||
source: pull.values([message]),
|
||||
sink: pull.collect((err, results) => {
|
||||
expect(err).to.not.exist
|
||||
expect(err).to.not.exist()
|
||||
expect(results).to.be.eql([message])
|
||||
done()
|
||||
})
|
||||
|
@ -3,7 +3,10 @@
|
||||
'use strict'
|
||||
|
||||
const pair = require('pull-pair/duplex')
|
||||
const expect = require('chai').expect
|
||||
const chai = require('chai')
|
||||
const dirtyChai = require('dirty-chai')
|
||||
const expect = chai.expect
|
||||
chai.use(dirtyChai)
|
||||
const PeerId = require('peer-id')
|
||||
const crypto = require('libp2p-crypto')
|
||||
const parallel = require('async/parallel')
|
||||
@ -40,7 +43,7 @@ describe('libp2p-secio', () => {
|
||||
pull(
|
||||
remote,
|
||||
pull.collect((err, chunks) => {
|
||||
expect(err).to.not.exist
|
||||
expect(err).to.not.exist()
|
||||
expect(chunks).to.be.eql([new Buffer('hello world')])
|
||||
done()
|
||||
})
|
||||
@ -69,7 +72,7 @@ describe('libp2p-secio', () => {
|
||||
pull(
|
||||
local,
|
||||
pull.collect((err, chunks) => {
|
||||
expect(err).to.not.exist
|
||||
expect(err).to.not.exist()
|
||||
expect(chunks).to.be.eql([new Buffer('hello world')])
|
||||
done()
|
||||
})
|
||||
|
@ -1,7 +1,10 @@
|
||||
/* eslint-env mocha */
|
||||
'use strict'
|
||||
|
||||
const expect = require('chai').expect
|
||||
const chai = require('chai')
|
||||
const dirtyChai = require('dirty-chai')
|
||||
const expect = chai.expect
|
||||
chai.use(dirtyChai)
|
||||
|
||||
const support = require('../src/support')
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user