bitcore-node-zcash/package.json

93 lines
2.4 KiB
JSON
Raw Normal View History

2014-08-12 12:03:04 -07:00
{
2016-08-27 19:10:11 -07:00
"name": "bitcore-node-zcash",
"description": "Full node with extended capabilities using Bitcore and Zcash",
"author": "BitPay <dev@bitpay.com>",
2016-07-28 07:59:12 -07:00
"version": "3.1.2",
2014-08-12 12:03:04 -07:00
"main": "./index.js",
2018-05-09 14:26:14 -07:00
"repository": "git://github.com/zcash-hackworks/bitcore-node-zcash.git",
"homepage": "https://github.com/zcash-hackworks/bitcore-node-zcash",
2014-08-12 12:03:04 -07:00
"bugs": {
2018-05-09 14:26:14 -07:00
"url": "https://github.com/zcash-hackworks/bitcore-node-zcash/issues"
2014-08-12 12:03:04 -07:00
},
"contributors": [
{
"name": "Christopher Jeffrey"
},
{
"name": "Braydon Fuller",
"email": "braydon@bitpay.com"
},
{
"name": "Chris Kleeschulte",
"email": "chrisk@bitpay.com"
},
{
"name": "Patrick Nagurny",
"email": "patrick@bitpay.com"
2016-08-27 19:10:11 -07:00
},
{
"name": "Jack Grigg",
"email": "jack@z.cash"
2018-05-07 23:37:20 -07:00
},
{
"name": "Simon Liu",
"email": "simon@z.cash"
},
{
"name": "Ian Munoz",
"email": "ian.org@gmail.com"
}
],
2015-10-17 05:15:25 -07:00
"bin": {
2016-08-29 20:42:10 -07:00
"bitcore-node": "./bin/bitcore-node"
2015-10-17 05:15:25 -07:00
},
2014-08-12 12:03:04 -07:00
"scripts": {
"test": "mocha -R spec --recursive",
"regtest": "./scripts/regtest",
"jshint": "jshint --reporter=node_modules/jshint-stylish ./lib",
"coverage": "istanbul cover _mocha -- --recursive",
"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"
2014-08-12 12:03:04 -07:00
},
"tags": [
2016-08-27 19:10:11 -07:00
"zcash",
"zcashd"
2014-08-12 12:03:04 -07:00
],
"dependencies": {
"async": "^1.3.0",
"bitcoind-rpc": "^0.6.0",
2018-09-18 09:41:35 -07:00
"bitcore-lib-zcash": "zcash-hackworks/bitcore-lib-zcash",
"body-parser": "^1.13.3",
"colors": "^1.1.2",
"commander": "^2.8.1",
"errno": "^0.1.4",
"express": "^4.13.3",
2015-10-18 13:31:33 -07:00
"liftoff": "^2.2.0",
2016-03-25 11:17:22 -07:00
"lru-cache": "^4.0.1",
2015-07-29 10:36:23 -07:00
"mkdirp": "0.5.0",
2015-08-28 13:06:26 -07:00
"npm": "^2.14.1",
"path-is-absolute": "^1.0.0",
"semver": "^5.0.1",
"socket.io": "^1.4.5",
"socket.io-client": "^1.4.5",
"zmq": "^2.14.0"
2014-08-12 12:03:04 -07:00
},
"optionalDependencies": {
"bufferutil": "~1.2.1",
"utf-8-validate": "~1.2.1"
},
2014-08-12 12:03:04 -07:00
"devDependencies": {
"benchmark": "1.0.0",
2016-04-07 13:22:54 -07:00
"bitcore-p2p": "^1.1.0",
2016-04-08 11:58:45 -07:00
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"istanbul": "^0.4.3",
"jshint": "^2.9.2",
"jshint-stylish": "^2.1.0",
2016-04-08 11:58:45 -07:00
"mocha": "^2.4.5",
2015-07-21 13:40:12 -07:00
"proxyquire": "^1.3.1",
"rimraf": "^2.4.2",
"sinon": "^1.15.4"
},
"license": "MIT"
2014-08-12 12:03:04 -07:00
}