UNPKG

boltcache

Version:

A high-performance, asynchronous caching library with pluggable storage backends.

49 lines 959 B
{ "name": "boltcache", "version": "1.0.2", "description": "A high-performance, asynchronous caching library with pluggable storage backends.", "keywords": [ "cache", "caching", "asynchronous", "performance", "memory", "redis", "memcached", "lru", "fifo", "eviction" ], "main": "app.js", "files": [ "index.js", "LICENSE", "README.md" ], "scripts": { "start": "node index.js", "dev": "nodemon index.js", "test": "jest" }, "jest": { "testMatch": [ "**/__tests__/**/*.js", "**/?(*.)+(spec|test).js" ] }, "repository": { "type": "git", "url": "https://github.com/OmkarBhosale06/boltcache.git" }, "author": "Your Name <your.email@example.com>", "license": "MIT", "dependencies": { "events": "^3.3.0", "memcached": "^2.2.2", "node-cache": "^5.1.2" }, "devDependencies": { "jest": "^29.7.0", "nodemon": "^3.1.9" } }