84 lines
2.2 KiB
JSON
84 lines
2.2 KiB
JSON
{
|
|
"name": "bitcore-node",
|
|
"description": "Full node with extended capabilities using Bitcore and Bitcoin Core",
|
|
"engines": {
|
|
"node": ">=8.2.0"
|
|
},
|
|
"author": "BitPay <dev@bitpay.com>",
|
|
"version": "5.0.0",
|
|
"main": "./index.js",
|
|
"repository": "git://github.com/bitpay/bitcore-node.git",
|
|
"homepage": "https://github.com/bitpay/bitcore-node",
|
|
"bugs": {
|
|
"url": "https://github.com/bitpay/bitcore-node/issues"
|
|
},
|
|
"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"
|
|
}
|
|
],
|
|
"bin": {
|
|
"bitcore-node": "./bin/bitcore-node"
|
|
},
|
|
"scripts": {
|
|
"test": "mocha -R spec --recursive",
|
|
"jshint": "jshint --reporter=node_modules/jshint-stylish ./lib",
|
|
"coverage": "istanbul cover _mocha -- --recursive",
|
|
"coveralls": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- --recursive -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
|
|
},
|
|
"tags": [
|
|
"bitcoin",
|
|
"bitcoind",
|
|
"bcoin",
|
|
"bitcoin full node",
|
|
"bitcoin index",
|
|
"block explorer",
|
|
"wallet backend"
|
|
],
|
|
"dependencies": {
|
|
"async": "^2.5.0",
|
|
"bcoin": "bcoin-org/bcoin#886008a1822ce1da7fa8395ee7db4bcc1750a28a",
|
|
"bitcoind-rpc": "^0.6.0",
|
|
"bitcore-lib": "bitpay/bitcore-lib#transitional",
|
|
"bitcore-p2p": "bitpay/bitcore-p2p#bcoin",
|
|
"body-parser": "^1.13.3",
|
|
"colors": "^1.1.2",
|
|
"commander": "^2.8.1",
|
|
"errno": "^0.1.4",
|
|
"express": "^4.13.3",
|
|
"leveldown": "",
|
|
"levelup": "",
|
|
"liftoff": "^2.2.0",
|
|
"lodash": "^4.17.4",
|
|
"lru-cache": "^4.0.2",
|
|
"mkdirp": "0.5.0",
|
|
"path-is-absolute": "^1.0.0",
|
|
"socket.io": "^1.4.5",
|
|
"socket.io-client": "^1.4.5"
|
|
},
|
|
"devDependencies": {
|
|
"chai": "^3.5.0",
|
|
"coveralls": "^2.11.9",
|
|
"istanbul": "^0.4.3",
|
|
"jshint": "^2.9.2",
|
|
"jshint-stylish": "^2.1.0",
|
|
"mocha": "",
|
|
"proxyquire": "^1.3.1",
|
|
"rimraf": "^2.4.2",
|
|
"sinon": "^1.15.4"
|
|
},
|
|
"license": "MIT"
|
|
}
|