Skip to content
This repository has been archived by the owner on Mar 10, 2020. It is now read-only.

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddias committed Oct 27, 2016
1 parent 4314815 commit 86a6c25
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 13 deletions.
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@
"coverage-publish": "aegir-coverage publish"
},
"dependencies": {
"async": "^2.0.1",
"babel-runtime": "^6.11.6",
"async": "^2.1.2",
"babel-runtime": "^6.18.0",
"bl": "^1.1.2",
"bs58": "^3.0.0",
"detect-node": "^2.0.3",
"flatmap": "0.0.3",
"glob": "^7.0.5",
"glob": "^7.1.1",
"ipfs-block": "^0.3.0",
"ipfs-merkle-dag": "^0.7.1",
"ipld-dag-pb": "^0.1.2",
"is-ipfs": "^0.2.0",
"isstream": "^0.1.2",
"multiaddr": "^2.0.2",
Expand All @@ -34,7 +34,7 @@
"peer-id": "^0.7.0",
"peer-info": "^0.7.1",
"promisify-es6": "^1.0.1",
"qs": "^6.2.1",
"qs": "^6.3.0",
"streamifier": "^0.1.1",
"tar-stream": "^1.5.2",
"wreck": "^10.0.0"
Expand All @@ -47,17 +47,17 @@
"url": "https://github.com/ipfs/js-ipfs-api"
},
"devDependencies": {
"aegir": "^8.0.0",
"aegir": "^8.1.2",
"chai": "^3.5.0",
"gulp": "^3.9.1",
"hapi": "^15.0.2",
"hapi": "^15.2.0",
"interface-ipfs-core": "^0.15.0",
"ipfsd-ctl": "^0.16.0",
"pre-commit": "^1.1.3",
"socket.io": "^1.4.8",
"socket.io-client": "^1.4.8",
"socket.io": "^1.5.1",
"socket.io-client": "^1.5.1",
"stream-equal": "^0.1.8",
"stream-http": "^2.3.1"
"stream-http": "^2.4.0"
},
"pre-commit": [
"lint",
Expand Down
5 changes: 3 additions & 2 deletions src/api/object.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
'use strict'

const DAGNode = require('ipfs-merkle-dag').DAGNode
const DAGLink = require('ipfs-merkle-dag').DAGLink
const dagPB = require('ipld-dag-pb')
const DAGNode = dagPB.DAGNode
const DAGLink = dagPB.DAGLink
const promisify = require('promisify-es6')
const bs58 = require('bs58')
const bl = require('bl')
Expand Down
2 changes: 1 addition & 1 deletion src/get-dagnode.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict'

const DAGNode = require('ipfs-merkle-dag').DAGNode
const DAGNode = require('ipld-dag-pb').DAGNode
const bl = require('bl')
const parallel = require('async/parallel')

Expand Down

0 comments on commit 86a6c25

Please sign in to comment.