{ "name": "ipfs-bch-wallet-consumer", "version": "1.0.0", "description": "A (local) REST API that proxies BCH wallet services delivered over IPFS (global).", "main": "index.js", "scripts": { "start": "node index.js", "test": "npm run test:all", "test:all": "export CONSUMER_ENV=test && nyc --reporter=text mocha --exit --timeout 15000 --recursive test/unit test/e2e/automated/", "test:unit": "export CONSUMER_ENV=test && mocha --exit --timeout 15000 --recursive test/unit/", "test:e2e:auto": "export CONSUMER_ENV=test && mocha --exit --timeout 15000 test/e2e/automated/", "test:temp": "export CONSUMER_ENV=test && mocha --exit --timeout 15000 -g '#rate-limit' test/unit/json-rpc/", "lint": "standard --env mocha --fix", "docs": "./node_modules/.bin/apidoc -i src/ -o docs", "coverage": "nyc report --reporter=text-lcov | coveralls", "coverage:report": "export CONSUMER_ENV=test && nyc --reporter=html mocha --exit --timeout 15000 --recursive test/unit/ test/e2e/automated/" }, "author": "Chris Troutner ", "license": "MIT", "apidoc": { "title": "ipfs-bch-wallet-consumer", "url": "localhost:5000" }, "repository": "Permissionless-Software-Foundation/ipfs-bch-wallet-consumer", "dependencies": { "@psf/bch-js": "6.4.1", "axios": "0.27.2", "bcryptjs": "2.4.3", "glob": "7.1.6", "ipfs": "0.62.3", "ipfs-coord": "8.0.2", "ipfs-http-client": "55.0.0", "jsonrpc-lite": "2.2.0", "jsonwebtoken": "8.5.1", "jwt-bch-lib": "1.3.0", "kcors": "2.2.2", "koa": "2.13.1", "koa-bodyparser": "4.3.0", "koa-convert": "2.0.0", "koa-generic-session": "2.1.1", "koa-logger": "3.2.1", "koa-mount": "4.0.0", "koa-passport": "4.1.3", "koa-router": "10.0.0", "koa-static": "5.0.0", "koa2-ratelimit": "0.9.1", "line-reader": "0.4.0", "mongoose": "5.13.14", "node-fetch": "npm:@achingbrain/node-fetch@2.6.7", "nodemailer": "6.7.5", "passport-local": "1.0.0", "public-ip": "4.0.4", "semver": "^7.3.5", "winston": "3.3.3", "winston-daily-rotate-file": "4.5.0" }, "devDependencies": { "apidoc": "0.51.1", "chai": "4.3.0", "coveralls": "3.1.0", "eslint": "7.19.0", "eslint-config-prettier": "7.2.0", "eslint-config-standard": "16.0.2", "eslint-plugin-node": "11.1.0", "eslint-plugin-prettier": "3.3.1", "eslint-plugin-standard": "4.0.0", "husky": "4.3.8", "lodash.clonedeep": "4.5.0", "mocha": "10.0.0", "nyc": "15.1.0", "semantic-release": "19.0.3", "sinon": "9.2.4", "standard": "16.0.3", "uuid": "8.3.2" }, "release": { "publish": [ { "path": "@semantic-release/npm", "npmPublish": false } ] }, "husky": { "hooks": { "pre-commit": "npm run lint" } }, "standard": { "ignore": [ "/test/unit/mocks/**/*.js" ] } }