mirror of
https://github.com/fullstack-cash/bch-api.git
synced 2026-09-21 16:52:04 -07:00
88 lines
2.4 KiB
JSON
88 lines
2.4 KiB
JSON
{
|
|
"name": "bch-api",
|
|
"version": "1.0.0",
|
|
"description": "REST API based on rest.bitcoin.com",
|
|
"author": "Chris Troutner <chris.troutner@gmail.com>",
|
|
"contributors": [
|
|
"Gabriel Cardona <gabriel@bitcoin.com>"
|
|
],
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"start": "node ./src/app.js",
|
|
"dev": "nodemon ./dist/app.js",
|
|
"test": "npm run test-v3",
|
|
"test-v2": "export NETWORK=testnet && nyc --reporter=text mocha --timeout 25000 test/v2/",
|
|
"test-v3": "export NETWORK=testnet && nyc --reporter=text mocha --timeout 25000 test/v3/",
|
|
"test:integration": "mocha test/v3/integration",
|
|
"coverage": "nyc report --reporter=text-lcov | coveralls",
|
|
"coverage:report": "export NETWORK=testnet && nyc --reporter=html mocha test/v2/",
|
|
"docs": "./node_modules/.bin/apidoc -i src/routes/v3 -o docs"
|
|
},
|
|
"engines": {
|
|
"node": ">=10.15.1"
|
|
},
|
|
"dependencies": {
|
|
"@chris.troutner/bch-js": "^1.3.0",
|
|
"apidoc": "^0.17.7",
|
|
"axios": "^0.19.0",
|
|
"body-parser": "^1.18.3",
|
|
"cookie-parser": "~1.4.3",
|
|
"cors": "^2.8.3",
|
|
"debug": "~4.1.1",
|
|
"dotenv": "^8.0.0",
|
|
"express": "^4.15.5",
|
|
"express-basic-auth": "^1.1.3",
|
|
"express-rate-limit": "^5.0.0",
|
|
"helmet": "^3.12.1",
|
|
"level": "^5.0.1",
|
|
"mkdirp": "^0.5.1",
|
|
"mocha": "^6.1.4",
|
|
"morgan": "^1.9.1",
|
|
"mqtt": "^3.0.0",
|
|
"passport": "^0.4.0",
|
|
"passport-anonymous": "^1.0.1",
|
|
"passport-http": "^0.3.0",
|
|
"pg": "^7.11.0",
|
|
"pg-hstore": "^2.3.2",
|
|
"slp-sdk": "^4.4.1",
|
|
"slpjs": "0.21.1",
|
|
"strftime": "^0.10.0",
|
|
"winston": "^3.2.1",
|
|
"winston-daily-rotate-file": "^3.8.0"
|
|
},
|
|
"devDependencies": {
|
|
"bignumber.js": "^9.0.0",
|
|
"chai": "^4.1.2",
|
|
"coveralls": "^3.0.2",
|
|
"eslint": "5.16.0",
|
|
"eslint-config-prettier": "^6.0.0",
|
|
"eslint-config-standard": "^13.0.1",
|
|
"eslint-plugin-prettier": "^3.1.0",
|
|
"eslint-plugin-standard": "^4.0.0",
|
|
"fs-extra": "^8.0.1",
|
|
"nock": "^11.1.0",
|
|
"node-mocks-http": "^1.7.0",
|
|
"nodemon": "^1.18.1",
|
|
"nyc": "^14.1.1",
|
|
"prettier": "^1.18.2",
|
|
"proxyquire": "^2.1.0",
|
|
"request": "^2.88.0",
|
|
"request-promise": "^4.2.2",
|
|
"semantic-release": "^15.13.19",
|
|
"sinon": "^7.3.2",
|
|
"typescript": "^3.1.4"
|
|
},
|
|
"release": {
|
|
"publish": [
|
|
{
|
|
"path": "@semantic-release/npm",
|
|
"npmPublish": false
|
|
}
|
|
]
|
|
},
|
|
"apidoc": {
|
|
"title": "bch-api",
|
|
"url": "localhost:3000"
|
|
}
|
|
}
|