rhizome/package.json

55 lines
1.3 KiB
JSON

{
"name": "rhizome-node",
"version": "0.1.0",
"description": "Rhizomatic database engine node",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "eslint",
"test": "jest",
"coverage": "./scripts/coverage.sh",
"example-app": "node dist/examples/app.js"
},
"jest": {
"testEnvironment": "node",
"preset": "ts-jest",
"roots": [
"./__tests__/"
],
"testMatch": [
"**/__tests__/**/*"
]
},
"author": "Taliesin (Ladd) <ladd@dgov.io>",
"license": "Unlicense",
"dependencies": {
"debug": "^4.4.0",
"express": "^4.21.2",
"json-logic-js": "^2.0.5",
"level": "^9.0.0",
"microtime": "^3.1.1",
"object-hash": "^3.0.0",
"showdown": "^2.1.0",
"util": "./util/",
"zeromq": "^6.1.2"
},
"devDependencies": {
"@types/bluebird": "^3.5.42",
"@types/debug": "^4.1.12",
"@types/json-logic-js": "^2.0.8",
"@types/microtime": "^2.1.2",
"@types/object-hash": "^3.0.6",
"@eslint/js": "^9.17.0",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@types/showdown": "^2.0.6",
"eslint": "^9.17.0",
"eslint-config-airbnb-base-typescript": "^1.1.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
}
}