-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #41 from ipfs/webcrypto
Async Crypto Endeavour
- Loading branch information
Showing
24 changed files
with
1,246 additions
and
813 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 |
---|---|---|
|
@@ -27,6 +27,5 @@ build/Release | |
node_modules | ||
|
||
dist | ||
lib | ||
|
||
test/test-repo-for* | ||
test/test-repo-for* |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,10 @@ | |
"name": "ipfs-bitswap", | ||
"version": "0.7.1", | ||
"description": "Node.js implementation of the Bitswap data exchange protocol used by IPFS", | ||
"main": "lib/index.js", | ||
"jsnext:main": "src/index.js", | ||
"main": "src/index.js", | ||
"browser": { | ||
"libp2p-ipfs": false | ||
}, | ||
"scripts": { | ||
"test": "aegir-test", | ||
"test:browser": "aegir-test browser", | ||
|
@@ -33,38 +35,39 @@ | |
}, | ||
"homepage": "https://github.com/ipfs/js-ipfs-bitswap#readme", | ||
"devDependencies": { | ||
"aegir": "^8.0.1", | ||
"aegir": "^9.1.1", | ||
"buffer-loader": "0.0.1", | ||
"chai": "^3.5.0", | ||
"fs-pull-blob-store": "^0.4.1", | ||
"idb-pull-blob-store": "^0.4.0", | ||
"interface-pull-blob-store": "^0.5.0", | ||
"ipfs-repo": "^0.9.0", | ||
"libp2p-ipfs": "^0.14.1", | ||
"lodash": "^4.16.2", | ||
"idb-pull-blob-store": "^0.5.1", | ||
"interface-pull-blob-store": "^0.6.0", | ||
"ipfs-repo": "^0.11.1", | ||
"libp2p-ipfs": "^0.15.0", | ||
"lodash": "^4.16.6", | ||
"multiaddr": "^2.0.3", | ||
"ncp": "^2.0.0", | ||
"peer-book": "^0.3.0", | ||
"peer-id": "^0.7.0", | ||
"peer-info": "^0.7.1", | ||
"peer-id": "^0.8.0", | ||
"peer-info": "^0.8.0", | ||
"rimraf": "^2.5.4", | ||
"safe-buffer": "^5.0.1" | ||
}, | ||
"dependencies": { | ||
"async": "^2.1.0", | ||
"debug": "^2.3.1", | ||
"async": "^2.1.2", | ||
"cids": "^0.2.0", | ||
"debug": "^2.3.2", | ||
"heap": "^0.2.6", | ||
"ipfs-block": "^0.3.0", | ||
"ipfs-block": "^0.5.0", | ||
"lodash.debounce": "^4.0.8", | ||
"lodash.isequalwith": "^4.4.0", | ||
"lodash.isundefined": "^3.0.1", | ||
"multihashes": "^0.2.2", | ||
"protocol-buffers": "^3.1.6", | ||
"protocol-buffers": "^3.1.8", | ||
"pull-defer": "^0.2.2", | ||
"pull-generate": "^2.2.0", | ||
"pull-length-prefixed": "^1.2.0", | ||
"pull-paramap": "^1.1.6", | ||
"pull-paramap": "^1.2.0", | ||
"pull-pushable": "^2.0.1", | ||
"pull-stream": "^3.4.5" | ||
"pull-stream": "^3.5.0" | ||
}, | ||
"contributors": [ | ||
"David Dias <[email protected]>", | ||
|
@@ -74,4 +77,4 @@ | |
"greenkeeperio-bot <[email protected]>", | ||
"npmcdn-to-unpkg-bot <[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
Oops, something went wrong.