UNPKG

quick-lru-ts

Version:

Simple “Least Recently Used” (LRU) cache

52 lines (51 loc) 932 B
{ "name": "quick-lru-ts", "version": "1.0.0", "description": "Simple “Least Recently Used” (LRU) cache", "license": "MIT", "repository": "greguintow/quick-lru-ts", "funding": "https://github.com/sponsors/sindresorhus", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "https://sindresorhus.com" }, "engines": { "node": ">=12" }, "scripts": { "build": "tsc -p tsconfig.json", "prepublish:npm": "npm run build", "publish:npm": "npm publish --access public", "//test": "xo && nyc ava && tsd", "test": "xo && ava && tsd" }, "keywords": [ "lru", "quick", "cache", "caching", "least", "recently", "used", "fast", "map", "hash", "buffer", "ts", "typescript" ], "devDependencies": { "ava": "^3.15.0", "nyc": "^15.1.0", "tsd": "^0.14.0", "typescript": "^4.5.4", "xo": "^0.37.1" }, "nyc": { "reporter": [ "text", "lcov" ] } }