Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use bitcore-lib as a peerDependency #500

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,11 @@ node_js:
- "v0.12.7"
- "v4"
script:
# Install peerDependencies on > npm3
# When all dependencies declare bitcore-lib as a peerDependency this can be bumped up, but this matches the current ecosystem version expected by dependencies
- if [ $(npm --version | sed 's/\..*//g') -ge 3 ]; then npm install bitcore-lib@^0.13.13; fi
- npm run regtest
- npm run test
- npm run jshint
after_success:
- npm run coveralls
- npm run coveralls
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
"dependencies": {
"async": "^1.3.0",
"bitcoind-rpc": "^0.6.0",
"bitcore-lib": "^0.13.13",
"body-parser": "^1.13.3",
"colors": "^1.1.2",
"commander": "^2.8.1",
Expand Down Expand Up @@ -78,5 +77,8 @@
"rimraf": "^2.4.2",
"sinon": "^1.15.4"
},
"peerDependencies": {
"bitcore-lib": "~0.13.13"
},
"license": "MIT"
}