bitcore-node-zcash/package.json

76 lines
1.9 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>",
2015-08-26 07:49:54 -07:00
"version": "0.2.0-dev",
"lastBuild": "0.2.0-beta.4",
2014-08-12 12:03:04 -07:00
"main": "./index.js",
"bin": "./cli/bitcore-node.js",
2015-07-31 08:40:15 -07:00
"repository": "git://github.com/bitpay/bitcore-node.git",
"homepage": "https://github.com/bitpay/bitcore-node.js",
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"
}
],
2014-08-12 12:03:04 -07:00
"scripts": {
"install": "./bin/install",
"build": "./bin/build",
2015-08-05 13:31:48 -07:00
"clean": "./bin/clean",
"package": "node bin/package.js",
"upload": "node bin/upload.js",
"start": "node bin/start.js",
2015-08-31 06:00:00 -07:00
"test": "NODE_ENV=test mocha -R spec --recursive",
"coverage": "istanbul cover _mocha -- --recursive",
"libbitcoind": "node bin/start-libbitcoind.js"
2014-08-12 12:03:04 -07:00
},
"tags": [
"bitcoin",
"bitcoind"
],
"dependencies": {
"async": "^1.3.0",
"bindings": "^1.2.1",
2015-08-19 09:20:20 -07:00
"bitcore": "^0.13.0",
"colors": "^1.1.2",
"commander": "^2.8.1",
"errno": "^0.1.4",
"leveldown": "^1.4.1",
"levelup": "^1.2.1",
"liftoff": "^2.1.0",
2015-07-29 10:36:23 -07:00
"memdown": "^1.0.0",
"mkdirp": "0.5.0",
"nan": "1.3.0",
2015-08-28 13:06:26 -07:00
"npm": "^2.14.1",
"semver": "^5.0.1",
2015-08-28 13:06:26 -07:00
"socket.io": "^1.3.6",
"socket.io-client": "^1.3.6"
2014-08-12 12:03:04 -07:00
},
"devDependencies": {
2015-08-03 15:41:15 -07:00
"aws-sdk": "~2.0.0-rc.15",
"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",
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
}
}