UNPKG

json-file-database

Version:

Lightweight Database on NodeJS by JSON Files

46 lines (45 loc) 873 B
{ "name": "json-file-database", "version": "2.0.3", "description": "Lightweight Database on NodeJS by JSON Files", "author": "kifuan", "license": "MIT", "files": [ "dist" ], "keywords": [ "lightweight", "node", "database", "json" ], "main": "dist/src/index.js", "typings": "dist/src/index.d.ts", "scripts": { "test": "ava", "build": "tsc", "lint": "eslint .", "docs": "typedoc --out docs src/index.ts", "lint:fix": "eslint . --fix" }, "devDependencies": { "@antfu/eslint-config": "^0.29.4", "@types/node": "^17.0.45", "ava": "^4.3.3", "eslint": "^8.57.0", "ts-node": "^10.9.2", "typedoc": "^0.23.28", "typescript": "^4.9.5" }, "ava": { "extensions": [ "ts" ], "require": [ "ts-node/register" ], "files": [ "test/*.test.ts" ] } }