{
  "name": "@omnile/oauth2server",
  "version": "1.0.1",
  "description": "An OAuth 2 implementation from the Omnile Team.",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "scripts": {
    "test": "mocha --compilers ts:ts-node/register 'test/**.spec.ts'",
    "watch-test": "mocha -w --compilers ts:ts-node/register 'test/*.spec.ts'",
    "run": "ts-node ./src/types/index.ts",
    "prepublish": "npm run build",
    "build": "tsc -p ./ --outDir dist/",
    "document": "npm run typedoc; npm run nyc",
    "typedoc": "typedoc --out './docs/typedoc' './src/types';",
    "nyc": "nyc --reporter=html npm test",
    "couscous": "bin/couscous.sh",
    "document-and-publish": "bin/document.sh"
  },
  "nyc": {
    "extension": [
      ".ts",
      ".tsx"
    ],
    "exclude": [
      ".couscous",
      ".nyc_output",
      "**/*.d.ts",
      "**/*.js",
      "node_modules",
      "dist",
      "test",
      "coverage"
    ],
    "reporter": [
      "html"
    ],
    "report-dir": "./docs/coverage",
    "all": true
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Omnile/oauth2server.git"
  },
  "keywords": [
    "Oauth2Server",
    "Oauth",
    "Oauth2",
    "auth",
    "JWT"
  ],
  "authors": [
    "Ariama Victor (ovac4u) <iamovac@gmail.com>",
    "Bright Antwi Boasiako <bright@omnile.com>"
  ],
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/Omnile/oauth2server/issues"
  },
  "homepage": "https://github.com/Omnile/oauth2server#readme",
  "devDependencies": {
    "@types/chai": "^4.1.4",
    "@types/crypto-js": "^3.1.43",
    "@types/es6-promise": "^3.3.0",
    "@types/jsonwebtoken": "^7.2.8",
    "@types/mocha": "^2.2.41",
    "@types/node": "^9.6.31",
    "chai": "^4.0.2",
    "mocha": "^5.2.0",
    "nyc": "^11.9.0",
    "ts-node": "^3.1.0",
    "typescript": "^2.9.2"
  },
  "dependencies": {
    "crypto-js": "^3.1.9-1",
    "jsonwebtoken": "^8.3.0",
    "moment": "^2.22.2"
  }
}
