Files
psf-memo-db/package.json
T

35 lines
864 B
JSON
Raw Normal View History

2026-06-02 16:44:51 -07:00
{
"name": "psf-memo-db",
"version": "1.0.0",
"description": "LevelDB REST API for Memo protocol indexing.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"test": "export SVC_ENV=test && c8 --reporter=text mocha --exit --timeout 15000 --recursive test/unit/",
"lint": "standard --env mocha --fix"
},
"author": "Chris Troutner",
"license": "MIT",
"dependencies": {
"dotenv": "17.2.3",
"kcors": "2.2.2",
"koa": "2.13.1",
"koa-bodyparser": "4.3.0",
"koa-convert": "2.0.0",
"koa-logger": "3.2.1",
"koa-router": "10.0.0",
"level": "7.0.1",
"shelljs": "0.10.0",
"winston": "3.3.3",
"winston-daily-rotate-file": "4.5.0"
},
"devDependencies": {
"c8": "10.1.3",
"chai": "4.3.0",
"mocha": "10.0.0",
"sinon": "9.2.4",
"standard": "17.0.0"
}
}