{
  "name": "redis-rank",
  "version": "2.2.3",
  "description": "Manage real-time leaderboards using Redis",
  "keywords": [
    "redis",
    "rank",
    "ranking",
    "score",
    "scoring",
    "scoreboard",
    "leaderboard",
    "highscore",
    "promises"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mlomb/redis-rank.git"
  },
  "homepage": "https://github.com/mlomb/redis-rank",
  "bugs": "https://github.com/mlomb/redis-rank/issues",
  "author": "Martin Emiliano Lombardo <to@mlomb.me>",
  "license": "MIT",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "/dist"
  ],
  "scripts": {
    "build": "tsc",
    "publish": "npm run test && npm run build && npm publish",
    "test": "jest --coverage --verbose --runInBand",
    "dev": "nodemon --exec \"npm run test\" --watch lib --watch tests -e ts,tsx"
  },
  "devDependencies": {
    "@types/jest": "^29.5.14",
    "@types/node": "^22.14.0",
    "codecov": "^3.8.3",
    "ioredis": "^5.6.0",
    "jest": "^29.7.0",
    "nodemon": "^3.1.9",
    "ts-jest": "^29.3.1",
    "typescript": "^5.8.2"
  },
  "peerDependencies": {
    "ioredis": ">=5.x"
  },
  "jest": {
    "roots": [
      "<rootDir>/tests"
    ],
    "transform": {
      "^.+\\.ts$": "ts-jest"
    }
  }
}
