1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {
- "name": "lru_map",
- "version": "0.4.1",
- "description": "Finite key-value map using the Least Recently Used (LRU) algorithm where the most recently used objects are keept in the map while less recently used items are evicted to make room for new ones.",
- "main": "dist/lru.js",
- "types": "lru.d.ts",
- "typings": "lru.d.ts",
- "scripts": {
- "test": "npm run build && node test.js && echo 'Verifying TypeScript definition...' && tsc --noEmit",
- "build": "esbuild --minify --sourcemap --target=es2016 --outfile=dist/lru.js lru.js",
- "prepublishOnly": "npm test",
- "benchmark": "node --expose-gc benchmark.js"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/rsms/js-lru.git"
- },
- "files": [
- "README.md",
- "lru.d.ts",
- "dist/lru.js",
- "dist/lru.js.map",
- ".gitignore"
- ],
- "keywords": [
- "cache",
- "lru",
- "buffer",
- "map"
- ],
- "author": "Rasmus Andersson <me@rsms.me>",
- "license": "MIT",
- "bugs": {
- "url": "https://github.com/rsms/js-lru/issues"
- },
- "homepage": "https://github.com/rsms/js-lru#readme",
- "devDependencies": {
- "esbuild": "^0.5.26",
- "typescript": "^3.9.7"
- }
- }
|