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 version = '^' + packageFile.version;
var BASE_PACKAGE = { 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', repository: 'https://github.com/user/project',
license: 'MIT', license: 'MIT',
readme: 'README.md', readme: 'README.md',
dependencies: { dependencies: {
'bitcore-lib': '^' + bitcore.version, 'bitcore-lib': '^' + bitcore.version,
'bitcore-node': version 'bitcore-node-zcash': version
} }
}; };

View File

@ -1,11 +1,11 @@
{ {
"name": "bitcore-node", "name": "bitcore-node-zcash",
"description": "Full node with extended capabilities using Bitcore and Bitcoin Core", "description": "Full node with extended capabilities using Bitcore and Zcash",
"author": "BitPay <dev@bitpay.com>", "author": "BitPay <dev@bitpay.com>",
"version": "3.1.2", "version": "3.1.2",
"main": "./index.js", "main": "./index.js",
"repository": "git://github.com/bitpay/bitcore-node.git", "repository": "git://github.com/str4d/bitcore-node-zcash.git",
"homepage": "https://github.com/bitpay/bitcore-node", "homepage": "https://github.com/str4d/bitcore-node-zcash",
"bugs": { "bugs": {
"url": "https://github.com/bitpay/bitcore-node/issues" "url": "https://github.com/bitpay/bitcore-node/issues"
}, },
@ -24,6 +24,10 @@
{ {
"name": "Patrick Nagurny", "name": "Patrick Nagurny",
"email": "patrick@bitpay.com" "email": "patrick@bitpay.com"
},
{
"name": "Jack Grigg",
"email": "jack@z.cash"
} }
], ],
"bin": { "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" "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": [ "tags": [
"bitcoin", "zcash",
"bitcoind" "zcashd"
], ],
"dependencies": { "dependencies": {
"async": "^1.3.0", "async": "^1.3.0",