cache-layer
Version:
An abstraction for cache providers, it exposes a common interface for diferente ways of cache
49 lines (48 loc) • 1.36 kB
JSON
{
"name": "cache-layer",
"version": "1.0.23",
"description": "An abstraction for cache providers, it exposes a common interface for diferente ways of cache",
"main": "index.js",
"scripts": {
"build": "tsc && node setup.js",
"dist": "rm dist -rf && npm run build && cd dist && npm publish",
"test": "mocha -b -w --recursive --require ts-node/register --watch-extensions ts \"tests/setup.ts\"",
"test:unit:pipeline": "mocha -b --require ts-node/register --watch-extensions ts \"tests/setup.ts\""
},
"author": "Albo Vieira",
"homepage": "https://github.com/albovieira/cache-layer#readme",
"repository": {
"type": "git",
"url": "https://github.com/albovieira/cache-layer.git"
},
"keywords": [
"cache",
"cache-manager",
"abstraction",
"abstract",
"memcache",
"memcached",
"redis",
"cache-provider"
],
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/mocha": "^5.2.6",
"@types/ms": "^0.7.31",
"@types/node": "^11.13.0",
"chai": "^4.1.2",
"fs-extra": "^7.0.1",
"mocha": "^6.0.2",
"source-map-support": "^0.5.11",
"ts-node": "^6.0.5",
"typescript": "^2.8.3"
},
"dependencies": {
"ioredis": "^4.9.0",
"memcached": "^2.2.2",
"memory-cache": "^0.2.0",
"ms": "^2.1.2",
"reflect-metadata": "^0.1.13"
}
}