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 12
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 (#5)
* feat: replace protocol-buffers with protons Ref ipfs/js-ipfs#991 * feat: upgrade to aegir@12 * chore: fix coverage command
- Loading branch information
1 parent
71bfe60
commit 8774a4f
Showing
10 changed files
with
33 additions
and
39 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,6 @@ test/test-data/go-ipfs-repo/LOG.old | |
|
||
# while testing npm5 | ||
package-lock.json | ||
yarn.lock | ||
|
||
docs |
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,17 +4,16 @@ | |
"description": "libp2p record implementation", | ||
"main": "src/index.js", | ||
"scripts": { | ||
"test": "aegir-test", | ||
"lint": "aegir-lint", | ||
"test:node": "aegir-test node", | ||
"test:browser": "aegir-test browser", | ||
"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" | ||
"test": "aegir test", | ||
"lint": "aegir lint", | ||
"test:node": "aegir test -t node", | ||
"test:browser": "aegir test -t browser -t webworker", | ||
"build": "aegir build", | ||
"docs": "aegir docs", | ||
"release": "aegir release", | ||
"release-minor": "aegir release --type minor", | ||
"release-major": "aegir release --type major", | ||
"coverage": "aegir coverage" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
|
@@ -38,12 +37,11 @@ | |
}, | ||
"homepage": "https://github.com/libp2p/js-libp2p-record", | ||
"devDependencies": { | ||
"aegir": "^11.0.2", | ||
"aegir": "^12.0.6", | ||
"chai": "^4.1.2", | ||
"dirty-chai": "^2.0.1", | ||
"libp2p-crypto": "~0.10.0", | ||
"pre-commit": "^1.2.2", | ||
"safe-buffer": "^5.1.1" | ||
"libp2p-crypto": "~0.10.2", | ||
"pre-commit": "^1.2.2" | ||
}, | ||
"dependencies": { | ||
"async": "^2.5.0", | ||
|
@@ -52,11 +50,10 @@ | |
"multihashes": "~0.4.9", | ||
"multihashing-async": "~0.4.6", | ||
"peer-id": "~0.10.0", | ||
"protocol-buffers": "^3.2.1", | ||
"safe-buffer": "^5.1.1" | ||
"protons": "^1.0.0" | ||
}, | ||
"contributors": [ | ||
"David Dias <[email protected]>", | ||
"Friedel Ziegelmayer <[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
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