This repository has been archived by the owner on Aug 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: replace protocol-buffers with protons (#42)
* feat: replace protocol-buffers with protons Ref ipfs/js-ipfs#991 * feat: upgrade to aegir@12
- Loading branch information
1 parent
52fdf7b
commit 4ac25c9
Showing
5 changed files
with
21 additions
and
22 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 |
---|---|---|
|
@@ -40,3 +40,4 @@ test/test-data/go-ipfs-repo/LOG.old | |
|
||
# while testing npm5 | ||
package-lock.json | ||
yarn.lock |
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,15 @@ | |
"description": "libp2p Identify Protocol", | ||
"main": "src/index.js", | ||
"scripts": { | ||
"lint": "aegir-lint", | ||
"build": "aegir-build", | ||
"test": "aegir-test", | ||
"test:node": "aegir-test --env node", | ||
"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" | ||
"lint": "aegir lint", | ||
"build": "aegir build", | ||
"test": "aegir test", | ||
"test:node": "aegir test -t node", | ||
"test:browser": "aegir test -t browser", | ||
"release": "aegir release", | ||
"release-minor": "aegir release --type minor", | ||
"release-major": "aegir release --type major", | ||
"coverage": "aegir coverage" | ||
}, | ||
"pre-commit": [ | ||
"lint", | ||
|
@@ -38,17 +37,17 @@ | |
}, | ||
"homepage": "https://github.com/libp2p/js-libp2p-identify#readme", | ||
"devDependencies": { | ||
"aegir": "^11.0.2", | ||
"aegir": "^12.0.6", | ||
"chai": "^4.1.2", | ||
"dirty-chai": "^2.0.1", | ||
"pre-commit": "^1.2.2", | ||
"pull-pair": "^1.1.0" | ||
}, | ||
"dependencies": { | ||
"multiaddr": "^3.0.0", | ||
"multiaddr": "^3.0.1", | ||
"peer-id": "~0.10.0", | ||
"peer-info": "~0.11.0", | ||
"protocol-buffers": "^3.2.1", | ||
"protons": "^1.0.0", | ||
"pull-length-prefixed": "^1.3.0", | ||
"pull-stream": "^3.6.0" | ||
}, | ||
|
@@ -58,4 +57,4 @@ | |
"Greenkeeper <[email protected]>", | ||
"Richard Littauer <[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