2024-12-21 21:16:18 -06:00
|
|
|
{
|
|
|
|
"name": "rhizome-node",
|
2024-12-27 13:43:43 -06:00
|
|
|
"version": "0.1.0",
|
2024-12-21 21:16:18 -06:00
|
|
|
"description": "Rhizomatic database engine node",
|
|
|
|
"scripts": {
|
2024-12-24 13:41:31 -06:00
|
|
|
"build": "tsc",
|
|
|
|
"build:watch": "tsc --watch",
|
2024-12-21 21:16:18 -06:00
|
|
|
"lint": "eslint",
|
2024-12-26 15:59:03 -06:00
|
|
|
"test": "jest",
|
2024-12-27 13:43:43 -06:00
|
|
|
"coverage": "./scripts/coverage.sh",
|
|
|
|
"example-app": "node dist/examples/app.js"
|
2024-12-22 14:00:51 -06:00
|
|
|
},
|
|
|
|
"jest": {
|
|
|
|
"testEnvironment": "node",
|
2024-12-27 13:57:13 -06:00
|
|
|
"preset": "ts-jest",
|
2024-12-29 14:35:30 -06:00
|
|
|
"roots": [
|
|
|
|
"./__tests__/"
|
|
|
|
],
|
|
|
|
"testMatch": [
|
|
|
|
"**/__tests__/**/*"
|
|
|
|
]
|
2024-12-21 21:16:18 -06:00
|
|
|
},
|
2024-12-27 13:43:43 -06:00
|
|
|
"author": "Taliesin (Ladd) <ladd@dgov.io>",
|
2024-12-21 21:16:18 -06:00
|
|
|
"license": "Unlicense",
|
|
|
|
"dependencies": {
|
2024-12-23 17:29:38 -06:00
|
|
|
"debug": "^4.4.0",
|
2024-12-21 21:16:18 -06:00
|
|
|
"express": "^4.21.2",
|
|
|
|
"json-logic-js": "^2.0.5",
|
|
|
|
"level": "^9.0.0",
|
2024-12-29 14:35:30 -06:00
|
|
|
"microtime": "^3.1.1",
|
2024-12-22 14:38:01 -06:00
|
|
|
"object-hash": "^3.0.0",
|
2024-12-23 17:29:38 -06:00
|
|
|
"showdown": "^2.1.0",
|
2024-12-29 14:35:30 -06:00
|
|
|
"util": "./util/",
|
|
|
|
"zeromq": "^6.1.2"
|
2024-12-21 21:16:18 -06:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-12-29 14:35:30 -06:00
|
|
|
"@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",
|
2024-12-21 21:16:18 -06:00
|
|
|
"@eslint/js": "^9.17.0",
|
|
|
|
"@types/express": "^5.0.0",
|
2024-12-22 14:00:51 -06:00
|
|
|
"@types/jest": "^29.5.14",
|
2024-12-21 21:16:18 -06:00
|
|
|
"@types/node": "^22.10.2",
|
2024-12-23 17:29:38 -06:00
|
|
|
"@types/showdown": "^2.0.6",
|
2024-12-21 21:16:18 -06:00
|
|
|
"eslint": "^9.17.0",
|
|
|
|
"eslint-config-airbnb-base-typescript": "^1.1.0",
|
2024-12-22 14:00:51 -06:00
|
|
|
"jest": "^29.7.0",
|
|
|
|
"ts-jest": "^29.2.5",
|
2024-12-21 21:16:18 -06:00
|
|
|
"typescript": "^5.7.2",
|
|
|
|
"typescript-eslint": "^8.18.0"
|
|
|
|
}
|
|
|
|
}
|