{
  "name": "lib-oauth-tooling",
  "version": "2.4.1",
  "description": "A simple typescript based oauth tooling library",
  "main": "./lib/src/index.js",
  "typings": "./lib/src/index.d.ts",
  "license": "MIT",
  "keywords": [
    "zalando",
    "oauth2",
    "express",
    "node",
    "service",
    "rest",
    "typescript"
  ],
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "files": [
    "lib",
    "README.md",
    "LICENSE",
    "package.json"
  ],
  "engines": {
    "node": ">=6.0"
  },
  "dependencies": {
    "body-parser": "1.17.2",
    "btoa": "1.1.2",
    "form-urlencoded": "2.0.4",
    "http-status": "1.0.1",
    "nock": "9.0.14",
    "node-fetch": "1.7.1",
    "q": "1.5.0",
    "uuid": "3.1.0"
  },
  "devDependencies": {
    "@types/body-parser": "1.16.4",
    "@types/chai": "4.0.1",
    "@types/chai-as-promised": "0.0.31",
    "@types/express": "4.0.36",
    "@types/http-status": "0.2.29",
    "@types/lolex": "1.5.31",
    "@types/mocha": "2.2.41",
    "@types/nock": "8.2.1",
    "@types/node-fetch": "1.6.7",
    "@types/q": "1.0.2",
    "@types/uuid": "3.4.0",
    "chai": "4.1.0",
    "chai-as-promised": "7.1.1",
    "coveralls": "2.13.1",
    "express": "4.15.3",
    "lolex": "1.6.0",
    "mocha": "3.4.2",
    "nyc": "11.0.3",
    "tslint": "5.5.0",
    "typescript": "2.4.2"
  },
  "scripts": {
    "test": "npm run build && mocha lib/test lib/integration-test --recursive",
    "unit-test": "npm run build && mocha lib/test --recursive",
    "integration-test": "npm run build && mocha lib/integration-test --recursive",
    "test:coverage": "nyc npm run test",
    "coverage": "npm run test:coverage && nyc report --reporter=text-lcov | coveralls",
    "tslint": "tslint --type-check --project ./tsconfig.json 'src/**/*.ts' 'test/**/*.ts' 'integration-test/**/*.ts'",
    "build": "rm -rf lib && tsc"
  },
  "nyc": {
    "lines": 90,
    "statements": 90,
    "functions": 90,
    "branches": 90,
    "exclude": [
      "coverage/**/*.js",
      "lib/integration-test/**/*",
      "lib/src/index.js",
      "lib/test/**/*",
      "lib/src/types"
    ],
    "reporter": [
      "lcov",
      "text",
      "text-summary"
    ],
    "cache": true,
    "all": true,
    "check-coverage": true,
    "report-dir": "./coverage"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/zalando-incubator/lib-oauth-tooling.git"
  },
  "maintainers": [
    "Jörg Dotzki <joerg.dotzki@zalando.de>",
    "Markus Görlich <markus.goerlich@zalando.de>",
    "Bastian Sieker <bastian.sieker@zalando.de>"
  ],
  "contributors": [
    {
      "name": "Jörg Dotzki",
      "email": "joerg.dotzki@zalando.de",
      "url": "https://github.com/ISO50"
    },
    {
      "name": "Alexander Dellagi",
      "email": "alexander.dellagi@zalando.de"
    },
    {
      "name": "Bastian Sieker",
      "email": "bastian.sieker@zalando.de",
      "url": "https://github.com/bzums"
    },
    {
      "name": "Markus Görlich",
      "email": "markus.goerlich@zalando.de",
      "url": "https://github.com/retro64"
    },
    {
      "name": "Matthias Achatz",
      "email": "matthias.achatz@zalando.de"
    }
  ]
}
