forked from libp2p/js-libp2p-kad-dht
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0ca9708
commit 2d6e499
Showing
14 changed files
with
160 additions
and
131 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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
environment: | ||
matrix: | ||
- nodejs_version: "6" | ||
- nodejs_version: "8" | ||
|
||
# cache: | ||
# - node_modules | ||
|
||
platform: | ||
- x64 | ||
|
||
install: | ||
- ps: Install-Product node $env:nodejs_version $env:platform | ||
- npm install | ||
|
||
test_script: | ||
- node --version | ||
- npm --version | ||
- npm test | ||
|
||
build: off | ||
|
||
version: "{build}" |
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 |
---|---|---|
|
@@ -4,16 +4,14 @@ | |
"description": "JavaScript implementation of the Kad-DHT for libp2p", | ||
"main": "src/index.js", | ||
"scripts": { | ||
"lint": "aegir-lint", | ||
"test": "aegir-test --env node", | ||
"test:node": "aegir-test node", | ||
"test:browser": "aegir-test browser", | ||
"build": "aegir-build", | ||
"docs": "aegir-docs", | ||
"release": "aegir-release --docs --env node", | ||
"release-minor": "aegir-release --type minor --docs --env node", | ||
"release-major": "aegir-release --type major --docs --env node", | ||
"coverage": "aegir-coverage", | ||
"lint": "aegir lint", | ||
"test": "aegir test --target node", | ||
"build": "aegir build", | ||
"docs": "aegir docs", | ||
"release": "aegir release --docs", | ||
"release-minor": "aegir release --type minor --docs", | ||
"release-major": "aegir release --type major --docs", | ||
"coverage": "aegir coverage", | ||
"coverage-publish": "aegir-coverage publish" | ||
}, | ||
"browser": { | ||
|
@@ -41,40 +39,40 @@ | |
}, | ||
"homepage": "https://github.com/libp2p/js-libp2p-kad-dht", | ||
"dependencies": { | ||
"async": "^2.5.0", | ||
"async": "^2.6.0", | ||
"base32.js": "^0.1.0", | ||
"cids": "~0.5.1", | ||
"debug": "^3.0.1", | ||
"cids": "~0.5.2", | ||
"debug": "^3.1.0", | ||
"hashlru": "^2.2.0", | ||
"heap": "^0.2.6", | ||
"interface-datastore": "^0.3.0", | ||
"interface-datastore": "~0.4.1", | ||
"k-bucket": "^3.3.0", | ||
"libp2p-crypto": "~0.10.3", | ||
"libp2p-record": "~0.5.1", | ||
"multihashing-async": "~0.4.6", | ||
"peer-id": "~0.10.1", | ||
"multihashing-async": "~0.4.7", | ||
"peer-id": "~0.10.2", | ||
"peer-info": "~0.11.0", | ||
"priorityqueue": "^0.2.0", | ||
"protons": "^1.0.0", | ||
"pull-length-prefixed": "^1.3.0", | ||
"pull-stream": "^3.6.0", | ||
"pull-stream": "^3.6.1", | ||
"safe-buffer": "^5.1.1", | ||
"varint": "^5.0.0", | ||
"xor-distance": "^1.0.0" | ||
}, | ||
"devDependencies": { | ||
"aegir": "^11.0.2", | ||
"aegir": "^12.1.3", | ||
"chai": "^4.1.2", | ||
"datastore-level": "^0.6.0", | ||
"datastore-level": "~0.7.0", | ||
"dirty-chai": "^2.0.1", | ||
"interface-connection": "~0.3.2", | ||
"libp2p-multiplex": "~0.5.0", | ||
"libp2p-swarm": "~0.32.3", | ||
"libp2p-tcp": "~0.11.0", | ||
"libp2p-swarm": "~0.33.1", | ||
"libp2p-tcp": "~0.11.1", | ||
"lodash": "^4.17.4", | ||
"lodash.random": "^3.2.0", | ||
"lodash.range": "^3.2.0", | ||
"peer-book": "~0.5.0", | ||
"peer-book": "~0.5.1", | ||
"pre-commit": "^1.2.2", | ||
"safe-buffer": "^5.1.1" | ||
}, | ||
|
@@ -83,4 +81,4 @@ | |
"Friedel Ziegelmayer <[email protected]>", | ||
"Pedro Teixeira <[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
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
Oops, something went wrong.