Skip to content
This repository has been archived by the owner on Aug 11, 2021. It is now read-only.

Commit

Permalink
chore: update deps (#48)
Browse files Browse the repository at this point in the history
Also removes the `multihashes` dep in favour of the one exported from
`multihashing-async` and removes `chai`/`dirty-chai` in favour of the
one exported by `aegir`.
  • Loading branch information
achingbrain authored Jun 9, 2020
1 parent 4737422 commit 3b4b7e8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 11 deletions.
9 changes: 3 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,11 @@
},
"homepage": "https://github.com/ipld/js-ipld-raw#readme",
"dependencies": {
"cids": "~0.8.0",
"cids": "^0.8.1",
"multicodec": "^1.0.1",
"multihashing-async": "~0.8.1"
"multihashing-async": "^0.8.1"
},
"devDependencies": {
"aegir": "^22.0.0",
"chai": "^4.2.0",
"dirty-chai": "^2.0.1",
"multihashes": "~0.4.19"
"aegir": "^22.0.0"
}
}
7 changes: 2 additions & 5 deletions test/index.spec.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
'use strict'
/* eslint-env mocha */
const chai = require('chai')
const dirtyChai = require('dirty-chai')
const expect = chai.expect
chai.use(dirtyChai)
const { expect } = require('aegir/utils/chai')

const ipldRaw = require('../src/index')
const resolver = ipldRaw.resolver
const multihash = require('multihashes')
const multihash = require('multihashing-async').multihash
const multicodec = require('multicodec')

describe('raw codec', () => {
Expand Down

0 comments on commit 3b4b7e8

Please sign in to comment.