{
  "name": "@neoskop/redis-promise-cache",
  "version": "0.4.2",
  "description": "Store promises and synchrone values in redis",
  "keywords": [
    "promise",
    "redis",
    "cache",
    "typescript"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/neoskop/redis-promise-cache"
  },
  "bugs": {
    "url": "https://github.com/neoskop/redis-promise-cache/issues"
  },
  "scripts": {
    "prebuild": "yarn test",
    "build": "tsc",
    "test": "jest --reporters jest-spec-reporter",
    "test:watch": "jest --watch --reporters jest-spec-reporter",
    "test:cov": "jest --coverage --reporters jest-spec-reporter --coverage-reporters html --coverage-reporters lcov",
    "test:debug": "node --inspect-brk -r ts-node/register node_modules/.bin/jest --runInBand",
    "coveralls": "cat coverage/lcov.info | coveralls",
    "publish-next": "npm run build && npm publish --tag next",
    "publish-latest-only": "npm run build && npm publish",
    "publish-latest": "npm run publish-latest-only && npm dist-tag add @neoskop/redis-promise-cache@`jq '.version' package.json -r` next"
  },
  "author": "Mark Wecke <wecke@neoskop.de>",
  "license": "MIT",
  "main": "dist/index.js",
  "typings": "dist/index.d.ts",
  "devDependencies": {
    "@types/ioredis": ">=4.14.3",
    "@types/jest": "27.4.0",
    "@types/node": "^17.0.13",
    "coveralls": "3.1.1",
    "ioredis": ">=4.14.1",
    "jest": "27.4.7",
    "jest-spec-reporter": "1.0.17",
    "rxjs": "6.6.7",
    "ts-jest": "27.1.3",
    "ts-node": "10.4.0",
    "tslib": ">=1.10.0",
    "typescript": "^4.5.5"
  },
  "peerDependencies": {
    "@types/ioredis": ">=4.14.3",
    "ioredis": ">=4.14.1",
    "rxjs": ">= 6.0.0 < 7.0.0",
    "tslib": ">=1.10.0"
  }
}