bitcore-node-zcash/package.json

51 lines
1.2 KiB
JSON
Raw Normal View History

2014-08-12 12:03:04 -07:00
{
"name": "bitcoind.js",
"description": "Node binding for bitcoind",
"author": "BitPay <dev@bitpay.com>",
2014-12-09 15:15:28 -08:00
"version": "0.0.8",
2014-08-12 12:03:04 -07:00
"main": "./index.js",
"repository": "git://github.com/bitpay/bitcoind.js.git",
"homepage": "https://github.com/bitpay/bitcoind.js",
2014-08-12 12:03:04 -07:00
"bugs": {
"url": "https://github.com/bitpay/bitcoind.js/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"
}
],
2014-08-12 12:03:04 -07:00
"scripts": {
2015-07-09 08:06:34 -07:00
"preinstall": "./bin/build-libbitcoind",
"install": "./bin/build-bindings",
"start": "export LD_LIBRARY_PATH=`./platform/os.sh osdir` && node example",
"debug_install": "./bin/build-libbitcoind debug && ./bin/build-bindings debug"
2014-08-12 12:03:04 -07:00
},
"tags": [
"bitcoin",
"bitcoind"
],
"dependencies": {
2015-07-09 09:50:09 -07:00
"bindings": "^1.2.1",
"mkdirp": "0.5.0",
2015-07-09 09:50:09 -07:00
"nan": "1.3.0",
"tiny": "0.0.10"
2014-08-12 12:03:04 -07:00
},
"devDependencies": {
"async": "1.2.1",
"benchmark": "1.0.0",
2015-07-10 07:34:15 -07:00
"bitcoin": "^2.3.2",
"bitcore": "^0.12.12",
2015-07-09 10:40:01 -07:00
"chai": "^3.0.0",
"mocha": "~1.16.2",
"sinon": "^1.15.4"
2014-08-12 12:03:04 -07:00
}
}