UNPKG

pg-cache

Version:

PostgreSQL connection pool LRU cache manager

53 lines (52 loc) 1.35 kB
{ "name": "pg-cache", "version": "1.1.1", "author": "Dan Lynch <pyramation@gmail.com>", "description": "PostgreSQL connection pool LRU cache manager", "main": "index.js", "module": "esm/index.js", "types": "index.d.ts", "homepage": "https://github.com/launchql/launchql", "license": "MIT", "publishConfig": { "access": "public", "directory": "dist" }, "repository": { "type": "git", "url": "https://github.com/launchql/launchql" }, "bugs": { "url": "https://github.com/launchql/launchql/issues" }, "scripts": { "copy": "copyfiles -f ../../LICENSE README.md package.json dist", "clean": "rimraf dist/**", "prepare": "npm run build", "build": "npm run clean; tsc; tsc -p tsconfig.esm.json; npm run copy", "build:dev": "npm run clean; tsc --declarationMap; tsc -p tsconfig.esm.json; npm run copy", "lint": "eslint . --fix", "test": "jest", "test:watch": "jest --watch" }, "dependencies": { "@launchql/logger": "^1.1.0", "@launchql/types": "^2.3.0", "lru-cache": "^11.1.0", "pg": "^8.16.0", "pg-env": "^1.1.0" }, "devDependencies": { "@types/pg": "^8.15.2" }, "keywords": [ "postgresql", "pg", "pool", "cache", "lru", "connection", "launchql" ], "gitHead": "245029576886f5ac650aa5e8fa8cd8d5f47c258f" }