Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 86a6c25

Browse files
committedOct 27, 2016
chore: update dependencies
1 parent 4314815 commit 86a6c25

File tree

3 files changed

+14
-13
lines changed

3 files changed

+14
-13
lines changed
 

‎package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@
1717
"coverage-publish": "aegir-coverage publish"
1818
},
1919
"dependencies": {
20-
"async": "^2.0.1",
21-
"babel-runtime": "^6.11.6",
20+
"async": "^2.1.2",
21+
"babel-runtime": "^6.18.0",
2222
"bl": "^1.1.2",
2323
"bs58": "^3.0.0",
2424
"detect-node": "^2.0.3",
2525
"flatmap": "0.0.3",
26-
"glob": "^7.0.5",
26+
"glob": "^7.1.1",
2727
"ipfs-block": "^0.3.0",
28-
"ipfs-merkle-dag": "^0.7.1",
28+
"ipld-dag-pb": "^0.1.2",
2929
"is-ipfs": "^0.2.0",
3030
"isstream": "^0.1.2",
3131
"multiaddr": "^2.0.2",
@@ -34,7 +34,7 @@
3434
"peer-id": "^0.7.0",
3535
"peer-info": "^0.7.1",
3636
"promisify-es6": "^1.0.1",
37-
"qs": "^6.2.1",
37+
"qs": "^6.3.0",
3838
"streamifier": "^0.1.1",
3939
"tar-stream": "^1.5.2",
4040
"wreck": "^10.0.0"
@@ -47,17 +47,17 @@
4747
"url": "https://github.com/ipfs/js-ipfs-api"
4848
},
4949
"devDependencies": {
50-
"aegir": "^8.0.0",
50+
"aegir": "^8.1.2",
5151
"chai": "^3.5.0",
5252
"gulp": "^3.9.1",
53-
"hapi": "^15.0.2",
53+
"hapi": "^15.2.0",
5454
"interface-ipfs-core": "^0.15.0",
5555
"ipfsd-ctl": "^0.16.0",
5656
"pre-commit": "^1.1.3",
57-
"socket.io": "^1.4.8",
58-
"socket.io-client": "^1.4.8",
57+
"socket.io": "^1.5.1",
58+
"socket.io-client": "^1.5.1",
5959
"stream-equal": "^0.1.8",
60-
"stream-http": "^2.3.1"
60+
"stream-http": "^2.4.0"
6161
},
6262
"pre-commit": [
6363
"lint",

‎src/api/object.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
'use strict'
22

3-
const DAGNode = require('ipfs-merkle-dag').DAGNode
4-
const DAGLink = require('ipfs-merkle-dag').DAGLink
3+
const dagPB = require('ipld-dag-pb')
4+
const DAGNode = dagPB.DAGNode
5+
const DAGLink = dagPB.DAGLink
56
const promisify = require('promisify-es6')
67
const bs58 = require('bs58')
78
const bl = require('bl')

‎src/get-dagnode.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict'
22

3-
const DAGNode = require('ipfs-merkle-dag').DAGNode
3+
const DAGNode = require('ipld-dag-pb').DAGNode
44
const bl = require('bl')
55
const parallel = require('async/parallel')
66

0 commit comments

Comments
 (0)
This repository has been archived.