This repository has been archived by the owner on Jul 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: porting to new aegir * chore: adding missing dep * feat: add global timeout to avoid touching interface-stream-muxer * fix: use Buffer.from * chore: timeout * fix: timeouts
- Loading branch information
Showing
4 changed files
with
30 additions
and
24 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
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,16 @@ | |
"description": "multiplex implementation wrapper that is compatible with libp2p Stream Muxer expected interface", | ||
"main": "src/index.js", | ||
"scripts": { | ||
"lint": "gulp lint", | ||
"build": "gulp build", | ||
"test": "gulp test", | ||
"test:node": "gulp test:node", | ||
"test:browser": "gulp test:browser", | ||
"release": "gulp release", | ||
"release-minor": "gulp release --type minor", | ||
"release-major": "gulp release --type major", | ||
"coverage": "gulp coverage", | ||
"coverage-publish": "aegir-coverage publish" | ||
"lint": "aegir lint", | ||
"build": "aegir build", | ||
"test": "aegir test -t node -t browser", | ||
"test:node": "aegir test -t node", | ||
"test:browser": "aegir test -t browser", | ||
"release": "aegir release -t node -t browser", | ||
"release-minor": "aegir release --type minor -t node -t browser", | ||
"release-major": "aegir release --type major -t node -t browser", | ||
"coverage": "aegir coverage", | ||
"coverage-publish": "aegir coverage --provider coveralls" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
|
@@ -29,7 +29,7 @@ | |
}, | ||
"homepage": "https://github.com/libp2p/js-libp2p-multiplex#readme", | ||
"devDependencies": { | ||
"aegir": "^11.0.2", | ||
"aegir": "^12.2.0", | ||
"chai": "^4.1.2", | ||
"dirty-chai": "^2.0.1", | ||
"interface-stream-muxer": "~0.5.7", | ||
|
@@ -44,6 +44,7 @@ | |
"pull-catch": "^1.0.0", | ||
"pull-stream": "^3.6.0", | ||
"pull-stream-to-stream": "^1.3.4", | ||
"pump": "^2.0.0", | ||
"stream-to-pull-stream": "^1.7.2" | ||
}, | ||
"contributors": [ | ||
|
@@ -55,4 +56,4 @@ | |
"Victor Bjelkholm <[email protected]>", | ||
"greenkeeperio-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
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