{
  "name": "sso-oidc",
  "version": "0.1.0",
  "license": "Apache-2.0",
  "description": "Utility to instrument Single Sign-on (SSO) for Node.js and Express",
  "author": "Eric Liu (https://github.com/metonym)",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "scripts": {
    "develop": "nodemon",
    "build": "tsc -p tsconfig.prod.json",
    "test": "jest --coverage",
    "test:tdd": "jest --watch",
    "prepublishOnly": "yarn build"
  },
  "dependencies": {
    "node-fetch": "^2.6.0"
  },
  "peerDependencies": {
    "body-parser": "^1.19.x",
    "cookie-session": "^1.3.x",
    "express": "^4.17.x"
  },
  "devDependencies": {
    "@commitlint/cli": "^8.3.5",
    "@commitlint/config-conventional": "^8.3.4",
    "@types/body-parser": "^1.17.1",
    "@types/cookie-session": "^2.0.38",
    "@types/dotenv": "^8.2.0",
    "@types/express": "^4.17.2",
    "@types/jest": "^25.1.1",
    "@types/node-fetch": "^2.5.4",
    "body-parser": "^1.19.0",
    "cookie-session": "^1.4.0",
    "dotenv": "^8.2.0",
    "express": "^4.17.1",
    "husky": "^4.2.1",
    "jest": "^25.1.0",
    "lint-staged": "^10.0.7",
    "nodemon": "^2.0.2",
    "prettier": "^1.19.1",
    "pretty-quick": "^2.0.1",
    "ts-jest": "^25.2.0",
    "ts-node": "^8.6.2",
    "tslint": "^6.0.0",
    "tslint-config-prettier": "^1.18.0",
    "typescript": "^3.7.5"
  },
  "engines": {
    "node": ">=10",
    "yarn": ">=1"
  },
  "nodemonConfig": {
    "exec": "ts-node src/app/server.ts",
    "ext": "ts",
    "watch": [
      "src"
    ]
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged && pretty-quick --staged",
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  },
  "lint-staged": {
    "*.{ts}": [
      "tslint --fix -p ."
    ]
  },
  "prettier": {
    "printWidth": 100,
    "tabWidth": 2,
    "semi": true,
    "singleQuote": true
  },
  "jest": {
    "preset": "ts-jest"
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/ibm/sso-oidc.git"
  },
  "homepage": "https://github.com/ibm/sso-oidc",
  "keywords": [
    "single sign-on",
    "sso",
    "openid connect",
    "oidc",
    "spa"
  ],
  "files": [
    "lib"
  ],
  "bugs": "https://github.com/ibm/sso-oidc/issues"
}
