This repository has been archived by the owner on Aug 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* more fixes for merkledag changes * fix some more tests * next aegir * ready for the next level * ready * chore: update deps
- Loading branch information
1 parent
8721317
commit 7563ae8
Showing
49 changed files
with
71 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,4 +30,3 @@ build/Release | |
node_modules | ||
|
||
dist | ||
lib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,17 +2,19 @@ | |
"name": "ipfs-unixfs-engine", | ||
"version": "0.12.0", | ||
"description": "JavaScript implementation of the unixfs Engine used by IPFS", | ||
"main": "lib/index.js", | ||
"jsnext:main": "src/index.js", | ||
"main": "src/index.js", | ||
"browser": { | ||
"fs": false | ||
}, | ||
"scripts": { | ||
"lint": "aegir-lint", | ||
"build": "aegir-build", | ||
"test": "PHANTOM=off aegir-test", | ||
"test": "aegir-test", | ||
"test:node": "aegir-test --env node", | ||
"test:browser": "PHANTOM=off aegir-test --env browser", | ||
"release": "PHANTOM=off aegir-release", | ||
"release-minor": "PHANTOM=off aegir-release --type minor", | ||
"release-major": "PHANTOM=off aegir-release --type major", | ||
"test:browser": "aegir-test --env browser", | ||
"release": "aegir-release", | ||
"release-minor": "aegir-release --type minor", | ||
"release-major": "aegir-release --type major", | ||
"coverage": "aegir-coverage", | ||
"coverage-publish": "aegir-coverage publish" | ||
}, | ||
|
@@ -32,36 +34,37 @@ | |
"bugs": { | ||
"url": "https://github.com/ipfs/js-ipfs-unixfs-engine/issues" | ||
}, | ||
"homepage": "https://github.com/ipfs/js-ipfs-unixfs-engineg#readme", | ||
"engines": { | ||
"node": ">=4.0.0" | ||
}, | ||
"homepage": "https://github.com/ipfs/js-ipfs-unixfs-engine#readme", | ||
"devDependencies": { | ||
"aegir": "^8.1.2", | ||
"aegir": "^9.1.0", | ||
"buffer-loader": "0.0.1", | ||
"chai": "^3.5.0", | ||
"fs-pull-blob-store": "^0.4.1", | ||
"idb-pull-blob-store": "^0.5.1", | ||
"ipfs-block-service": "^0.6.0", | ||
"ipfs-repo": "^0.10.0", | ||
"ipfs-repo": "^0.11.0", | ||
"ncp": "^2.0.0", | ||
"pre-commit": "^1.1.3", | ||
"pull-zip": "^2.0.1", | ||
"raw-loader": "^0.5.1", | ||
"rimraf": "^2.5.4", | ||
"run-series": "^1.1.4" | ||
"rimraf": "^2.5.4" | ||
}, | ||
"dependencies": { | ||
"async": "^2.1.2", | ||
"cids": "^0.2.0", | ||
"ipfs-unixfs": "^0.1.4", | ||
"ipld-dag-pb": "^0.1.3", | ||
"ipld-resolver": "^0.1.1", | ||
"ipfs-unixfs": "^0.1.5", | ||
"ipld-dag-pb": "^0.8.0", | ||
"ipld-resolver": "^0.2.0", | ||
"is-ipfs": "^0.2.1", | ||
"multihashes": "^0.2.2", | ||
"pull-block": "^1.0.2", | ||
"pull-paramap": "^1.2.0", | ||
"pull-pushable": "^2.0.1", | ||
"pull-stream": "^3.4.5", | ||
"pull-stream": "^3.5.0", | ||
"pull-traverse": "^1.0.3", | ||
"pull-write": "^1.1.1", | ||
"run-parallel": "^1.1.6" | ||
"pull-write": "^1.1.1" | ||
}, | ||
"contributors": [ | ||
"David Dias <[email protected]>", | ||
|
@@ -73,4 +76,4 @@ | |
"jbenet <[email protected]>", | ||
"nginnever <[email protected]>" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters