docudb
Version:
Document-based NoSQL database for NodeJS
68 lines (67 loc) • 1.7 kB
JSON
{
"name": "docudb",
"version": "0.0.0",
"description": "Document-based NoSQL database for NodeJS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "tsc && mocha dist/tests/**/*.js",
"test:mocha": "npm run build && mocha",
"lint": "ts-standard",
"lint:fix": "ts-standard --fix",
"lint:check": "ts-standard --verbose"
},
"files": [
"dist"
],
"keywords": [
"database",
"nosql",
"document-database",
"chunks",
"compression",
"nodejs"
],
"author": "Daniel Cerón Claros",
"license": "MIT",
"engines": {
"node": ">=22.15.0",
"typescript": ">=5.8.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielxceron/DocuDB.git"
},
"bugs": {
"url": "https://github.com/danielxceron/DocuDB/issues"
},
"homepage": "https://github.com/danielxceron/DocuDB#readme",
"devDependencies": {
"@types/chai": "^5.2.2",
"@types/mocha": "^10.0.10",
"@types/node": "^22.15.20",
"chai": "^5.2.0",
"mocha": "^11.3.0",
"ts-standard": "^12.0.2",
"typescript": "^5.8.3"
},
"eslintConfig": {
"extends": "./node_modules/ts-standard/eslintrc.json",
"parserOptions": {
"project": "./tsconfig.json"
},
"ignorePatterns": [
"dist/**/*"
],
"rules": {
"@typescript-eslint/no-unused-expressions": "off",
"@typescript-eslint/no-dynamic-delete": "off",
"no-template-curly-in-string": "off",
"no-control-regex": "off",
"no-useless-escape": "off"
}
}
}