-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: migrate out of protocol-buffers and into protons
* feat: upgrade to new aegir * feat: replace protocol-buffers with protons Ref ipfs/js-ipfs#991 * chore: fix travis config
- Loading branch information
1 parent
c1070e0
commit 32deddc
Showing
5 changed files
with
26 additions
and
31 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 |
---|---|---|
|
@@ -33,3 +33,6 @@ node_modules | |
.node_repl_history | ||
|
||
dist | ||
|
||
package-lock.js | ||
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
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 |
---|---|---|
|
@@ -7,16 +7,15 @@ | |
"fs": false | ||
}, | ||
"scripts": { | ||
"test": "aegir-test", | ||
"test:node": "aegir-test node", | ||
"test:browser": "aegir-test browser", | ||
"build": "aegir-build", | ||
"lint": "aegir-lint", | ||
"release": "aegir-release", | ||
"release-minor": "aegir-release --minor", | ||
"release-major": "aegir-release --major", | ||
"coverage": "aegir-coverage", | ||
"coverage-publish": "aegir-coverage publish" | ||
"test": "aegir test", | ||
"test:node": "aegir test -t node", | ||
"test:browser": "aegir test -t browser -t webworker", | ||
"build": "aegir build", | ||
"lint": "aegir lint", | ||
"release": "aegir release", | ||
"release-minor": "aegir release --type minor", | ||
"release-major": "aegir release --type major", | ||
"coverage": "aegir coverage" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
|
@@ -31,19 +30,19 @@ | |
"url": "https://github.com/ipfs/js-ipfs-unixfs/issues" | ||
}, | ||
"engines": { | ||
"node": ">=4.0.0", | ||
"node": ">=6.0.0", | ||
"npm": ">=3.0.0" | ||
}, | ||
"homepage": "https://github.com/ipfs/js-ipfs-unixfs#readme", | ||
"devDependencies": { | ||
"aegir": "^11.0.2", | ||
"chai": "^4.0.2", | ||
"dirty-chai": "^2.0.0", | ||
"aegir": "^12.0.4", | ||
"chai": "^4.1.2", | ||
"dirty-chai": "^2.0.1", | ||
"pre-commit": "^1.2.2", | ||
"safe-buffer": "^5.1.0" | ||
"safe-buffer": "^5.1.1" | ||
}, | ||
"dependencies": { | ||
"protocol-buffers": "^3.2.1" | ||
"protons": "^1.0.0" | ||
}, | ||
"pre-commit": [ | ||
"lint", | ||
|
@@ -57,4 +56,4 @@ | |
"Pedro Teixeira <[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