bitcore-node-zcash/package.json

33 lines
772 B
JSON
Raw Normal View History

2014-08-12 12:03:04 -07:00
{
"name": "bitcoind.js",
"description": "Node binding for bitcoind",
"author": "Christopher Jeffrey",
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/chjj/bitcoind.js.git",
"homepage": "https://github.com/chjj/bitcoind.js",
"bugs": {
"url": "https://github.com/chjj/bitcoind.js/issues"
},
"scripts": {
2014-12-09 13:30:20 -08:00
"preinstall": "./bin/build-libbitcoind remote",
2015-07-07 14:36:25 -07:00
"start": "export LD_LIBRARY_PATH=`./platform/os.sh osdir` && node example"
2014-08-12 12:03:04 -07:00
},
"tags": [
"bitcoin",
"bitcoind"
],
"dependencies": {
2014-09-25 10:59:36 -07:00
"nan": "1.3.0",
"mkdirp": "0.5.0",
"tiny": "0.0.10"
2014-08-12 12:03:04 -07:00
},
"devDependencies": {
2014-09-25 15:22:48 -07:00
"mocha": "~1.16.2",
2014-10-16 13:53:47 -07:00
"optimist": "0.6.0",
"rimraf": "2.2.8",
"async": "1.2.1",
"benchmark": "1.0.0"
2014-08-12 12:03:04 -07:00
}
}