UNPKG

koatty_store

Version:
106 lines (105 loc) 3.14 kB
{ "name": "koatty_store", "version": "1.8.0", "description": "Cache store for koatty.", "scripts": { "build": "npm run build:js && npm run build:dts && npm run build:doc && npm run build:cp", "build:cp": "node scripts/postBuild && npx copyfiles package.json LICENSE README.md dist/", "build:js": "npx rollup --bundleConfigAsCjs -c .rollup.config.js", "build:doc": "npx api-documenter markdown --input temp --output docs/api", "build:dts": "npx tsc && npx api-extractor run --local --verbose", "eslint": "eslint --ext .ts,.js ./", "prepublishOnly": "npm test && npm run build", "prerelease": "npm test && npm run build", "pub": "git push --follow-tags origin && npm publish", "release": "standard-version", "release:pre": "npm run release -- --prerelease", "release:major": "npm run release -- --release-as major", "release:minor": "npm run release -- --release-as minor", "test": "npm run eslint && jest --passWithNoTests" }, "main": "./dist/index.js", "exports": { "require": "./dist/index.js", "import": "./dist/index.mjs", "types": "./dist/index.d.ts" }, "repository": { "type": "git", "url": "git+https://github.com/koatty/koatty_store.git" }, "keywords": [ "web", "typescript", "framework", "mvc", "koa2", "restful", "agile", "koatty_store", "koatty" ], "engines": { "node": ">10.0.0" }, "author": { "name": "richenlin", "email": "richenlin@gmail.com" }, "license": "BSD-3-Clause", "bugs": { "url": "https://github.com/koatty/koatty_store/issues" }, "homepage": "https://github.com/koatty/koatty_store", "maintainers": [ { "name": "richenlin", "email": "richenlin@gmail.com" } ], "devDependencies": { "@commitlint/cli": "^19.x.x", "@commitlint/config-conventional": "^19.x.x", "@microsoft/api-documenter": "^7.x.x", "@microsoft/api-extractor": "^7.x.x", "@rollup/plugin-commonjs": "^28.x.x", "@rollup/plugin-json": "^6.x.x", "@rollup/plugin-node-resolve": "^15.x.x", "@types/jest": "^29.x.x", "@types/koa": "^2.x.x", "@types/lodash": "^4.x.x", "@types/lru-cache": "^7.10.9", "@types/node": "^22.x.x", "@typescript-eslint/eslint-plugin": "^8.x.x", "@typescript-eslint/parser": "^8.x.x", "conventional-changelog-cli": "^5.x.x", "copyfiles": "^2.x.x", "del-cli": "^6.x.x", "eslint": "^8.x.x", "eslint-plugin-jest": "^28.x.x", "husky": "^4.x.x", "jest": "^29.x.x", "jest-html-reporters": "^3.x.x", "reflect-metadata": "^0.x.x", "rollup": "^4.x.x", "rollup-plugin-delete": "^2.x.x", "rollup-plugin-typescript2": "^0.x.x", "standard-version": "^9.x.x", "ts-jest": "^29.x.x", "ts-node": "^10.x.x", "tslib": "^2.x.x", "typescript": "^5.x.x" }, "dependencies": { "generic-pool": "^3.9.0", "ioredis": "^5.4.2", "koatty_lib": "^1.x.x", "koatty_logger": "^2.x.x", "lodash": "^4.17.21", "lru-cache": "^11.1.0" }, "peerDependencies": { "koatty_lib": "^1.x.x", "koatty_logger": "^2.x.x" } }