bitcore-node-zcash/package.json

81 lines
2.1 KiB
JSON
Raw Normal View History

2014-08-12 12:03:04 -07:00
{
2015-07-31 08:40:15 -07:00
"name": "bitcore-node",
"description": "Full node with extended capabilities using Bitcore and Bitcoin Core",
"author": "BitPay <dev@bitpay.com>",
2016-04-08 08:31:22 -07:00
"version": "2.1.1-dev",
2014-08-12 12:03:04 -07:00
"main": "./index.js",
2015-07-31 08:40:15 -07:00
"repository": "git://github.com/bitpay/bitcore-node.git",
2016-01-19 11:49:17 -08:00
"homepage": "https://github.com/bitpay/bitcore-node",
2014-08-12 12:03:04 -07:00
"bugs": {
2015-07-31 08:40:15 -07:00
"url": "https://github.com/bitpay/bitcore-node/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"
}
],
2015-10-17 05:15:25 -07:00
"bin": {
"bitcore-node": "./bin/bitcore-node",
"bitcoind": "./bin/bitcoind"
2015-10-17 05:15:25 -07:00
},
2014-08-12 12:03:04 -07:00
"scripts": {
2016-04-25 13:04:49 -07:00
"preinstall": "./scripts/download",
"verify": "./scripts/download --skip-bitcoin-download --verify-bitcoin-download",
"test": "mocha -R spec --recursive",
"regtest": "./scripts/regtest",
"jshint": "jshint --reporter=node_modules/jshint-stylish ./lib",
"coverage": "istanbul cover _mocha -- --recursive"
2014-08-12 12:03:04 -07:00
},
"tags": [
"bitcoin",
"bitcoind"
],
"dependencies": {
"async": "^1.3.0",
"bitcoind-rpc": "braydonf/bitcoind-rpc#594d9aa0bee54ab247578785bd2acd16a8c012e6",
2016-03-25 11:17:22 -07:00
"bitcore-lib": "^0.13.13",
"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",
"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
}