Bumped version.

This commit is contained in:
Chris Kleeschulte 2017-11-06 19:17:20 -05:00
parent 2ef46aa5fc
commit 3c44ba45a1
No known key found for this signature in database
GPG Key ID: 33195D27EF6BDB7F
3 changed files with 56 additions and 2 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "insight-api",
"version": "5.0.0-beta.33",
"version": "5.0.0-beta.34",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,7 +1,7 @@
{
"name": "insight-api",
"description": "A Bitcoin blockchain REST and web socket API service for Bitcore Node.",
"version": "5.0.0-beta.33",
"version": "5.0.0-beta.34",
"repository": "git://github.com/bitpay/insight-api.git",
"bugs": {
"url": "https://github.com/bitpay/insight-api/issues"

54
package.json-e Normal file
View File

@ -0,0 +1,54 @@
{
"name": "insight-api",
"description": "A Bitcoin blockchain REST and web socket API service for Bitcore Node.",
"version": "5.0.0-beta.33",
"repository": "git://github.com/bitpay/insight-api.git",
"bugs": {
"url": "https://github.com/bitpay/insight-api/issues"
},
"homepage": "https://github.com/bitpay/insight-api",
"license": "MIT",
"keywords": [
"insight",
"insight api",
"blockchain",
"bitcoin api",
"blockchain api",
"json",
"bitcore"
],
"engines": {
"node": ">=8.2.0"
},
"scripts": {
"test": "NODE_ENV=test mocha -R spec --recursive",
"regtest": "mocha -R spec regtest",
"perf": "mocha -R spec perf"
},
"main": "lib",
"bitcoreNode": "lib",
"dependencies": {
"JSONStream": "^1.3.1",
"async": "*",
"bcoin": "bcoin-org/bcoin#886008a1822ce1da7fa8395ee7db4bcc1750a28a",
"bitcore-lib": "5.0.0-beta.1",
"bitcore-message": "^1.0.1",
"body-parser": "^1.13.3",
"compression": "^1.6.1",
"lodash": "^2.4.1",
"lru-cache": "^4.1.1",
"morgan": "^1.7.0",
"request": "^2.64.0"
},
"devDependencies": {
"bitcoind-rpc": "^0.7.0",
"bitcore-p2p": "5.0.0-beta.2",
"chai": "^3.5.0",
"mkdirp": "^0.5.1",
"mocha": "^2.4.5",
"proxyquire": "^1.7.2",
"rimraf": "^2.6.1",
"should": "^8.3.1",
"sinon": "^1.10.3"
}
}