2025-11-09 16:16:37 -08:00
|
|
|
{
|
|
|
|
|
"name": "psf-bch-api",
|
2025-11-16 10:28:40 -08:00
|
|
|
"version": "7.0.0",
|
2025-11-16 10:25:55 -08:00
|
|
|
"main": "psf-bch-api.js",
|
2025-11-09 16:16:37 -08:00
|
|
|
"type": "module",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"start": "node bin/server.js",
|
|
|
|
|
"docs": "./node_modules/.bin/apidoc -i src/ -o docs",
|
|
|
|
|
"lint": "standard --env mocha --fix",
|
|
|
|
|
"test": "npm run lint && TEST=unit c8 mocha 'test/unit/**/*.js' --exit",
|
|
|
|
|
"test:integration": "mocha --timeout 25000 'test/integration/**/*.js' --exit",
|
|
|
|
|
"coverage": "c8 --reporter=html mocha 'test/unit/**/*.js' --exit"
|
|
|
|
|
},
|
|
|
|
|
"author": "Chris Troutner <chris.troutner@gmail.com>",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"description": "REST API proxy to Bitcoin Cash infrastructure",
|
|
|
|
|
"dependencies": {
|
2025-11-26 11:00:08 -08:00
|
|
|
"@psf/bch-js": "/home/trout/work/psf/code/api-dev/bch-js",
|
2025-11-09 19:18:39 -08:00
|
|
|
"axios": "1.7.7",
|
2025-11-09 16:16:37 -08:00
|
|
|
"cors": "2.8.5",
|
|
|
|
|
"dotenv": "16.3.1",
|
|
|
|
|
"express": "5.1.0",
|
2025-11-26 14:30:41 -08:00
|
|
|
"minimal-slp-wallet": "/home/trout/work/psf/code/api-dev/minimal-slp-wallet",
|
2025-11-17 10:05:23 -08:00
|
|
|
"psffpp": "1.2.0",
|
2025-11-15 17:03:02 -08:00
|
|
|
"slp-token-media": "1.2.10",
|
2025-11-09 16:16:37 -08:00
|
|
|
"winston": "3.11.0",
|
2025-11-09 21:42:00 -08:00
|
|
|
"winston-daily-rotate-file": "4.7.1",
|
|
|
|
|
"x402-bch-express": "1.1.1"
|
2025-11-09 16:16:37 -08:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"apidoc": "1.2.0",
|
|
|
|
|
"c8": "10.1.3",
|
|
|
|
|
"chai": "6.2.0",
|
|
|
|
|
"mocha": "11.7.4",
|
|
|
|
|
"sinon": "21.0.0",
|
|
|
|
|
"standard": "17.1.2"
|
|
|
|
|
},
|
|
|
|
|
"apidoc": {
|
|
|
|
|
"title": "psf-bch-api",
|
|
|
|
|
"url": "http://localhost:3070"
|
|
|
|
|
}
|
|
|
|
|
}
|