{ "name": "ipfs-bch-wallet-service", "version": "3.1.0", "description": "IPFS and REST service providing blockchain access needed by a wallet. ", "main": "index.js", "type": "module", "scripts": { "start": "node index.js", "test": "npm run test:all", "test:all": "export SVC_ENV=test && c8 --reporter=text mocha --exit --timeout 15000 --recursive test/unit test/e2e/automated/", "test:unit": "export SVC_ENV=test && mocha --exit --timeout 15000 --recursive test/unit/", "test:e2e:auto": "export SVC_ENV=test && mocha --exit --timeout 30000 test/e2e/automated/", "test:integration": "export SVC_ENV=test && mocha --timeout 30000 --recursive test/integration/", "test:temp": "export SVC_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": "c8 report --reporter=text-lcov | coveralls", "coverage:report": "export SVC_ENV=test && c8 --reporter=html mocha --exit --timeout 15000 --recursive test/unit/ test/e2e/automated/" }, "author": "Chris Troutner ", "license": "MIT", "apidoc": { "title": "ipfs-bch-wallet-service", "url": "localhost:5000" }, "repository": "Permissionless-Software-Foundation/ipfs-bch-wallet-service", "dependencies": { "@chainsafe/libp2p-gossipsub": "11.0.1", "@chainsafe/libp2p-noise": "14.1.0", "@chainsafe/libp2p-yamux": "6.0.1", "@helia/unixfs": "3.0.1", "@libp2p/bootstrap": "10.0.7", "@libp2p/circuit-relay-v2": "1.0.13", "@libp2p/identify": "1.0.6", "@libp2p/keychain": "4.0.7", "@libp2p/logger": "4.0.5", "@libp2p/mplex": "10.0.16", "@libp2p/tcp": "9.0.7", "@libp2p/webrtc": "4.0.17", "@psf/bch-js": "6.7.3", "axios": "0.27.2", "bcryptjs": "2.4.3", "blockstore-fs": "1.1.8", "datastore-fs": "9.1.6", "glob": "7.1.6", "helia": "2.1.0", "helia-coord": "1.5.6", "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", "libp2p": "1.2.1", "line-reader": "0.4.0", "minimal-slp-wallet": "5.11.1", "mongoose": "5.13.14", "node-fetch": "npm:@achingbrain/node-fetch@2.6.7", "nodemailer": "6.7.5", "passport-local": "1.0.0", "public-ip": "6.0.1", "winston": "3.3.3", "winston-daily-rotate-file": "4.5.0" }, "devDependencies": { "apidoc": "0.51.1", "c8": "7.12.0", "chai": "4.3.0", "coveralls": "3.1.0", "husky": "4.3.8", "lodash.clonedeep": "4.5.0", "mocha": "10.0.0", "semantic-release": "19.0.3", "sinon": "9.2.4", "standard": "17.0.0", "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" ] } }