{
  "name": "@mia-burton/nestjs-oauth2-server",
  "version": "0.3.1",
  "description": "NestJS oauth2 server by MiaBurton inspired by SWITCH IT CONSULTING",
  "author": "Switch IT - Consulting",
  "license": "MIT",
  "main": "dist/index.js",
  "types": "dist/index",
  "private": false,
  "keywords": [
    "nestjs",
    "oauth2",
    "server",
    "typescript",
    "web",
    "framework"
  ],
  "bugs": {
    "url": "https://github.com/mia-burton/nestjs-oauth2-server-module/issues"
  },
  "homepage": "https://github.com/mia-burton/nestjs-oauth2-server-module#readme",
  "contributors": [
    "Nicolas Macherey <nicolas.macherey@gmail.com>"
  ],
  "repository": {
    "type": "git",
    "url": "git@github.com:mia-burton/nestjs-oauth2-server-module.git"
  },
  "scripts": {
    "build": "./node_modules/.bin/rimraf dist && tsc -p tsconfig.json",
    "format": "prettier --write \"src/**/*.ts\"",
    "lint": "tslint -p tsconfig.json -c tslint.json",
    "test": "jest --runInBand --verbose ./test",
    "test:unit": "jest --runInBand --verbose ./test/unit",
    "test:watch": "jest --watch ./test",
    "test:cov": "jest --coverage --runInBand ./test",
    "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand ./test/e2e",
    "test:e2e": "jest --config ./test/jest-e2e.json --runInBand --verbose"
  },
  "dependencies": {
    "@nestjs/common": "^9.3.10",
    "@nestjs/core": "^9.3.10",
    "@nestjs/cqrs": "^9.0.3",
    "@nestjs/passport": "^9.0.3",
    "@nestjs/swagger": "^6.2.1",
    "@nestjs/typeorm": "^9.0.1",
    "class-transformer": "^0.5.1",
    "class-validator": "^0.14.0",
    "passport": "^0.6.0",
    "passport-http-bearer": "^1.0.1",
    "rimraf": "^4.4.0",
    "rxjs": "^7.8.0",
    "selfsigned": "^2.1.1"
  },
  "devDependencies": {
    "@nestjs/platform-express": "^9.3.10",
    "@nestjs/testing": "^9.3.10",
    "@types/chai": "^4.3.4",
    "@types/cucumber": "^7.0.0",
    "@types/express": "4.17.17",
    "@types/jest": "29.5.0",
    "@types/node": "18.15.3",
    "@types/supertest": "2.0.12",
    "cucumber": "^6.0.7",
    "gherkin-jest": "^0.24.0",
    "jest": "29.5.0",
    "nodemailer-stub": "^1.2.2",
    "pg": "^8.10.0",
    "prettier": "2.8.4",
    "supertest": "6.3.3",
    "ts-jest": "29.0.5",
    "ts-node": "10.9.1",
    "tsc-watch": "6.0.0",
    "tsconfig-paths": "4.1.2",
    "tslint": "6.1.3",
    "typeorm-fixtures-cli": "^3.0.2",
    "typescript": "^5.0.2"
  },
  "jest": {
    "moduleFileExtensions": [
      "js",
      "json",
      "ts"
    ],
    "rootDir": ".",
    "testRegex": ".spec.ts$",
    "transform": {
      "^.+\\.(t|j)s$": "ts-jest"
    },
    "collectCoverageFrom": [
      "src/**/*.ts"
    ],
    "testEnvironment": "node"
  }
}
