@dancastillo/cache
Version:
In memory cache for node.js
58 lines (57 loc) • 1.34 kB
JSON
{
"name": "@dancastillo/cache",
"version": "1.1.1",
"private": false,
"description": "In memory cache for node.js",
"type": "module",
"types": "cache.d.ts",
"exports": {
"require": "./cache.cjs",
"import": "./cache.js"
},
"files": [
"lib",
"cache.js",
"cache.d.ts",
"cache.cjs"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"test": "npm run lint && npm run test:unit && npm run test:typescript",
"test:unit": "c8 --100 node --test",
"test:typescript": "tsd",
"test:smoke": "smoker smoke",
"smoke": "node ./cache.js",
"build:cjs": "rollup --config .rollup.config.js && standard --fix cache.cjs"
},
"keywords": [
"simple",
"in-memory",
"cache",
"node.js"
],
"responsibility": {
"type": "git",
"url": "git+https://github.com/dancastillo/cache.git"
},
"tsd": {
"directory": "test/types"
},
"author": "Dan Castillo <dancastillo99@gmail.com> (https://github.com/dancastillo)",
"license": "MIT",
"homepage": "https://github.com/dancastillo/cache#readme",
"devDependencies": {
"c8": "^10.1.2",
"midnight-smoker": "^8.0.0",
"rollup": "^4.3.0",
"standard": "^17.0.0",
"tsd": "^0.31.0"
},
"dependencies": {
"ajv": "^8.12.0"
}
}