{
  "name": "jwt-blacklist",
  "version": "0.1.2",
  "description": "Blacklist jwt token by bloom filter.",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "build": "tsc",
    "prepublish": "npm run build",
    "test": "jest --forceExit"
  },
  "devDependencies": {
    "@types/jest": "^26.0.4",
    "@types/jsonwebtoken": "^8.5.0",
    "@types/node": "^13.13.13",
    "@types/redis": "^2.8.25",
    "@typescript-eslint/eslint-plugin": "^3.6.1",
    "@typescript-eslint/parser": "^3.6.1",
    "eslint": "^7.4.0",
    "eslint-config-prettier": "^6.10.0",
    "eslint-plugin-import": "^2.20.1",
    "jest": "^26.1.0",
    "prettier": "^2.0.5",
    "ts-jest": "^26.1.3",
    "typescript": "^3.9.7"
  },
  "author": "ducpham6677@gmail.com",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://gitlab.com/daginx/jwt-blacklist.git"
  },
  "bugs": {
    "url": "https://gitlab.com/daginx/jwt-blacklist/-/issues"
  },
  "dependencies": {
    "bloomxx": "git+https://github.com/daginx/xx-bloom.git",
    "jsonwebtoken": "^8.5.1",
    "redis": "^3.0.2"
  },
  "homepage": "https://gitlab.com/daginx/jwt-blacklist",
  "keywords": [
    "jsonwebtoken",
    "blacklist",
    "revoke"
  ],
  "jest": {
    "moduleFileExtensions": [
      "js",
      "json",
      "ts",
      "node"
    ],
    "transform": {
      "^.+\\.(t|j)s$": "ts-jest"
    },
    "testEnvironment": "node",
    "testPathIgnorePatterns": [
      "<rootDir>/dist/"
    ]
  }
}
