2021-07-13 12:34:51 -07:00
|
|
|
{
|
2021-07-13 16:42:39 -07:00
|
|
|
"name": "ipfs-bch-wallet-service",
|
2024-04-03 09:55:48 -07:00
|
|
|
"version": "3.1.0",
|
2021-07-13 16:42:39 -07:00
|
|
|
"description": "IPFS and REST service providing blockchain access needed by a wallet. ",
|
2021-07-13 12:34:51 -07:00
|
|
|
"main": "index.js",
|
2022-09-08 08:58:39 -07:00
|
|
|
"type": "module",
|
2021-07-13 12:34:51 -07:00
|
|
|
"scripts": {
|
|
|
|
|
"start": "node index.js",
|
2025-05-23 07:26:51 -07:00
|
|
|
"test": "npm run test:unit",
|
2022-09-16 08:38:53 -07:00
|
|
|
"test:all": "export SVC_ENV=test && c8 --reporter=text mocha --exit --timeout 15000 --recursive test/unit test/e2e/automated/",
|
2023-05-12 15:25:58 -07:00
|
|
|
"test:unit": "export SVC_ENV=test && c8 --reporter=text mocha --exit --timeout 15000 --recursive test/unit/",
|
2021-04-09 08:39:53 -07:00
|
|
|
"test:e2e:auto": "export SVC_ENV=test && mocha --exit --timeout 15000 test/e2e/automated/",
|
2025-05-28 20:52:25 -04:00
|
|
|
"start:e2e:server": "export SVC_ENV=test && node index.js",
|
2021-07-13 12:34:51 -07:00
|
|
|
"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",
|
2022-09-16 08:38:53 -07:00
|
|
|
"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/"
|
2021-07-13 12:34:51 -07:00
|
|
|
},
|
|
|
|
|
"author": "Chris Troutner <chris.troutner@gmail.com>",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"apidoc": {
|
2021-07-13 16:42:39 -07:00
|
|
|
"title": "ipfs-bch-wallet-service",
|
2021-07-13 12:34:51 -07:00
|
|
|
"url": "localhost:5000"
|
|
|
|
|
},
|
2021-07-13 16:42:39 -07:00
|
|
|
"repository": "Permissionless-Software-Foundation/ipfs-bch-wallet-service",
|
2021-07-13 12:34:51 -07:00
|
|
|
"dependencies": {
|
2022-06-19 13:19:31 -07:00
|
|
|
"axios": "0.27.2",
|
2021-10-12 09:56:52 -07:00
|
|
|
"bcryptjs": "2.4.3",
|
|
|
|
|
"glob": "7.1.6",
|
2026-03-06 20:05:04 -08:00
|
|
|
"helia-coord": "2.0.3",
|
2021-10-12 09:56:52 -07:00
|
|
|
"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",
|
2021-12-29 16:59:32 -08:00
|
|
|
"koa2-ratelimit": "0.9.1",
|
2021-10-12 09:56:52 -07:00
|
|
|
"line-reader": "0.4.0",
|
2026-01-28 17:06:02 -07:00
|
|
|
"minimal-slp-wallet": "7.1.4",
|
2022-06-19 13:19:31 -07:00
|
|
|
"mongoose": "5.13.14",
|
2021-10-12 09:56:52 -07:00
|
|
|
"node-fetch": "npm:@achingbrain/node-fetch@2.6.7",
|
2022-06-19 13:19:31 -07:00
|
|
|
"nodemailer": "6.7.5",
|
2021-10-12 09:56:52 -07:00
|
|
|
"passport-local": "1.0.0",
|
2024-01-27 09:26:50 -08:00
|
|
|
"public-ip": "6.0.1",
|
2021-10-12 09:56:52 -07:00
|
|
|
"winston": "3.3.3",
|
|
|
|
|
"winston-daily-rotate-file": "4.5.0"
|
2021-07-13 12:34:51 -07:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2022-06-19 13:19:31 -07:00
|
|
|
"apidoc": "0.51.1",
|
2022-09-16 08:38:53 -07:00
|
|
|
"c8": "7.12.0",
|
2021-10-12 09:56:52 -07:00
|
|
|
"chai": "4.3.0",
|
|
|
|
|
"coveralls": "3.1.0",
|
|
|
|
|
"husky": "4.3.8",
|
2022-07-08 08:46:05 -07:00
|
|
|
"lodash.clonedeep": "4.5.0",
|
2022-06-19 13:19:31 -07:00
|
|
|
"mocha": "10.0.0",
|
|
|
|
|
"semantic-release": "19.0.3",
|
2021-10-12 09:56:52 -07:00
|
|
|
"sinon": "9.2.4",
|
2022-09-08 08:58:39 -07:00
|
|
|
"standard": "17.0.0",
|
2021-10-12 09:56:52 -07:00
|
|
|
"uuid": "8.3.2"
|
2021-07-13 12:34:51 -07:00
|
|
|
},
|
|
|
|
|
"release": {
|
|
|
|
|
"publish": [
|
|
|
|
|
{
|
|
|
|
|
"path": "@semantic-release/npm",
|
|
|
|
|
"npmPublish": false
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"husky": {
|
|
|
|
|
"hooks": {
|
|
|
|
|
"pre-commit": "npm run lint"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"standard": {
|
|
|
|
|
"ignore": [
|
|
|
|
|
"/test/unit/mocks/**/*.js"
|
|
|
|
|
]
|
2026-02-02 18:25:18 -07:00
|
|
|
},
|
|
|
|
|
"overrides": {
|
|
|
|
|
"@multiformats/multiaddr-to-uri": "10.1.2",
|
|
|
|
|
"@multiformats/multiaddr-matcher": "1.6.0",
|
2026-02-11 13:23:57 -07:00
|
|
|
"@libp2p/utils": "6.7.1",
|
2026-02-02 18:25:18 -07:00
|
|
|
"helia": {
|
|
|
|
|
"libp2p": "2.7.2",
|
|
|
|
|
"@libp2p/upnp-nat": "3.0.0"
|
|
|
|
|
}
|
2021-07-13 12:34:51 -07:00
|
|
|
}
|
|
|
|
|
}
|