Zcash-ify package

This commit is contained in:
Jack Grigg 2016-08-28 14:10:11 +12:00
parent 639fdc941e
commit 0a9d654ca7
2 changed files with 12 additions and 8 deletions

View File

@ -14,13 +14,13 @@ var defaultBaseConfig = require('./default-base-config');
var version = '^' + packageFile.version;
var BASE_PACKAGE = {
description: 'A full Bitcoin node build with Bitcore',
description: 'A full Zcash node build with Bitcore',
repository: 'https://github.com/user/project',
license: 'MIT',
readme: 'README.md',
dependencies: {
'bitcore-lib': '^' + bitcore.version,
'bitcore-node': version
'bitcore-node-zcash': version
}
};

View File

@ -1,11 +1,11 @@
{
"name": "bitcore-node",
"description": "Full node with extended capabilities using Bitcore and Bitcoin Core",
"name": "bitcore-node-zcash",
"description": "Full node with extended capabilities using Bitcore and Zcash",
"author": "BitPay <dev@bitpay.com>",
"version": "3.1.2",
"main": "./index.js",
"repository": "git://github.com/bitpay/bitcore-node.git",
"homepage": "https://github.com/bitpay/bitcore-node",
"repository": "git://github.com/str4d/bitcore-node-zcash.git",
"homepage": "https://github.com/str4d/bitcore-node-zcash",
"bugs": {
"url": "https://github.com/bitpay/bitcore-node/issues"
},
@ -24,6 +24,10 @@
{
"name": "Patrick Nagurny",
"email": "patrick@bitpay.com"
},
{
"name": "Jack Grigg",
"email": "jack@z.cash"
}
],
"bin": {
@ -40,8 +44,8 @@
"coveralls": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- --recursive -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"tags": [
"bitcoin",
"bitcoind"
"zcash",
"zcashd"
],
"dependencies": {
"async": "^1.3.0",