{
  "name": "koa-jwt",
  "version": "3.3.0",
  "description": "Koa JWT authentication middleware.",
  "types": "types/index.d.ts",
  "keywords": [
    "auth",
    "authn",
    "authentication",
    "authz",
    "authorization",
    "http",
    "jwt",
    "json",
    "middleware",
    "token",
    "oauth",
    "koa"
  ],
  "repository": {
    "type": "git",
    "url": "git://github.com/koajs/jwt.git"
  },
  "bugs": {
    "url": "https://github.com/koajs/jwt/issues"
  },
  "homepage": "https://github.com/koajs/jwt",
  "author": {
    "name": "Stian Grytøyr",
    "email": "stian@grytoyr.net",
    "url": "http://stian.grytoyr.net/"
  },
  "license": "MIT",
  "main": "./lib",
  "nyc": {
    "reporter": [
      "lcov",
      "text-summary"
    ],
    "report-dir": "./coverage"
  },
  "dependencies": {
    "jsonwebtoken": "7.4.1",
    "koa-unless": "1.0.0"
  },
  "devDependencies": {
    "koa": "^2.0.1",
    "mocha": "3.2.0",
    "chai": "latest",
    "nyc": "10.1.2",
    "supertest": "3.0.0"
  },
  "engines": {
    "node": ">= 7.6.0"
  },
  "scripts": {
    "test": "nyc npm run test-only",
    "test-only": "mocha --reporter spec test/test.js"
  }
}