bitcore-node-zcash/package.json

62 lines
1.4 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"
},
{
"name": "Patrick Nagurny",
"email": "patrick@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",
2015-07-21 06:09:59 -07:00
"start": "node example",
2015-07-16 12:53:44 -07:00
"test": "NODE_ENV=test mocha --recursive",
"coverage": "istanbul cover _mocha -- --recursive"
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",
"chainlib": "^0.1.1",
"errno": "^0.1.2",
2015-07-16 12:53:44 -07:00
"async": "1.3.0",
"memdown": "^1.0.0"
2014-08-12 12:03:04 -07:00
},
"devDependencies": {
"benchmark": "1.0.0",
2015-07-10 07:34:15 -07:00
"bitcoin": "^2.3.2",
2015-07-21 13:40:12 -07:00
"bitcoind-rpc": "^0.3.0",
"bitcore": "^0.12.12",
2015-07-09 10:40:01 -07:00
"chai": "^3.0.0",
"mocha": "~1.16.2",
2015-07-21 13:40:12 -07:00
"proxyquire": "^1.3.1",
"rimraf": "^2.4.2",
2015-07-21 13:40:12 -07:00
"sinon": "^1.15.4"
2014-08-12 12:03:04 -07:00
}
}