{
    "name": "nestjs-rate-limit",
    "version": "1.1.1",
    "description": "A configurable rate limiter for NestJS supporting Express and Fastify",
    "repository": {
        "type": "git",
        "url": "git+https://github.com/acal11/nestjs-rate-limit"
    },
    "keywords": [
        "nestjs",
        "nest",
        "rate",
        "limit",
        "fastify",
        "express"
    ],
    "author": "Andre Callus <andrecallus@outlook.com>",
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/acal11/nestjs-rate-limit"
    },
    "homepage": "https://github.com/acal11/nestjs-rate-limit#readme",
    "publishConfig": {
        "access": "public"
    },
    "directories": {
        "lib": "lib"
    },
    "scripts": {
        "prebuild": "rimraf dist/",
        "build": "tsc -p tsconfig.json",
        "test": "jest --passWithNoTests .spec.ts",
        "prepublishOnly": "npm run build",
        "release": "np --no-cleanup"
    },
    "husky": {
        "hooks": {
            "commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
            "pre-commit": "lint-staged",
            "pre-push": "npm test"
        }
    },
    "lint-staged": {
        "*.ts": [
            "jest --bail —-findRelatedTests",
            "prettier --write",
            "git add -f"
        ]
    },
    "dependencies": {
        "rate-limiter-flexible": "^2.1.7"
    },
    "devDependencies": {
        "@commitlint/cli": "^11.0.0",
        "@commitlint/config-conventional": "^11.0.0",
        "@nestjs/common": "^7.0.0",
        "@nestjs/core": "^7.0.0",
        "@types/jest": "^26.0.4",
        "husky": "^4.2.5",
        "jest": "^26.2.2",
        "lint-staged": "^10.2.11",
        "np": "^7.0.0",
        "prettier": "^2.0.5",
        "reflect-metadata": "^0.1.13",
        "rimraf": "^3.0.2",
        "rxjs": "^6.5.2",
        "ts-jest": "^26.1.4",
        "ts-node": "^9.0.0",
        "typescript": "^4.0.2"
    },
    "peerDependencies": {
        "@nestjs/common": "^7.0.0",
        "@nestjs/core": "^7.0.0"
    }
}
