UNPKG

@darlean/fs-persistence-suite

Version:

File System Persistence Suite that uses a physical or shared file system to persist data.

69 lines (68 loc) 2.51 kB
{ "name": "@darlean/fs-persistence-suite", "version": "2.0.0-alpha.15", "description": "File System Persistence Suite that uses a physical or shared file system to persist data.", "main": "lib/index.js", "types": "lib/index.d.ts", "homepage": "https://darlean.io", "repository": { "type": "git", "url": "https://gitlab.com/darlean/javascript/repo.git", "directory": "suites/fs-persistence-suite" }, "engines": { "node": ">= 18.0.0" }, "scripts": { "build": "shx rm -rf lib/* && tsc", "run": "node lib/index.js", "format": "prettier --write \"src/**/*.ts\"", "lint": "npx eslint ./src --ext .js,.jsx,.ts,.tsx", "update-deps": "npm install @darlean/base@latest && npm install @darlean/utils@latest", "prepublish": "npm run build", "prepublishOnly": "npm run build && npm run lint", "preversion": "npm run format && npm install && npm run update-deps && npm run lint && npm run build", "version": "git add -A src && git add package.json && git add ../../package-lock.json && git -C ../.. tag fs-persistence-suite-%npm_package_version%", "postversion": "git commit -m \"Version upgrade to fs-persistence-suite-%npm_package_version%\" && git push && git push --tags", "precommit": "npm run format && npm run lint && npm run build", "npm:version:alpha": "npm version prerelease --preid=alpha --git-tag-version=false", "npm:publish": "npm publish --access=public", "doc": "npx typedoc --skipErrorChecking --json typedoc-out.json & npx docgen typedoc-out.json ./docs/" }, "keywords": [ "Darlean", "File System Persistence", "Suite" ], "author": "Theo van der Donk", "license": "Apache-2.0", "devDependencies": { "@types/better-sqlite3": "^7.6.8", "@types/jest": "^29.5.11", "@types/node": "^18.19.4", "@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/parser": "^5.62.0", "eslint": "^8.56.0", "jest": "^29.7.0", "jest-standard-reporter": "^2.0.0", "prettier": "^2.8.8", "shx": "^0.3.4", "ts-jest": "^29.1.1", "typedoc": "^0.23.28", "typescript": "^4.9.5" }, "files": [ "lib/**/*", "NOTICE" ], "typedoc": { "entryPoint": "./src/index.ts", "tsconfig": "./tsconfig.json" }, "dependencies": { "@darlean/base": "^2.0.0-alpha.19", "@darlean/utils": "^2.0.0-alpha.0", "better-sqlite3": "^9.2.2", "threads": "^1.7.0" } }