{
	"name": "@authing/node-oidc-provider",
	"version": "1.7.0",
	"description": "OpenID Provider (OP) implementation for Node.js OpenID Connect servers.",
	"keywords": [
		"auth",
		"authentication",
		"basic",
		"certified",
		"config",
		"connect",
		"dynamic",
		"express",
		"hybrid",
		"identity",
		"implicit",
		"koa",
		"oauth",
		"oauth2",
		"oidc",
		"openid",
		"provider",
		"server"
	],
	"homepage": "https://github.com/panva/node-oidc-provider",
	"repository": "panva/node-oidc-provider",
	"license": "MIT",
	"author": "Filip Skokan <panva.ip@gmail.com>",
	"files": [ "lib" ],
	"main": "lib/index.js",
	"scripts": {
		"coverage": "nyc node ./test/run",
		"heroku-postbuild": "npm install mongodb@^3.0.0",
		"lint": "eslint lib example test",
		"lint-fix": "eslint lib example test --fix",
		"test": "node ./test/run"
	},
	"dependencies": {
		"@koa/cors": "^2.2.2",
		"base64url": "^3.0.1",
		"debug": "^4.1.0",
		"delegates": "^1.0.0",
		"ejs": "^2.6.1",
		"got": "^9.3.2",
		"jsesc": "^2.5.2",
		"koa": "^2.6.2",
		"koa-compose": "^4.1.0",
		"lodash": "^4.17.11",
		"lru-cache": "^5.1.1",
		"nanoid": "^2.0.0",
		"node-jose": "^1.1.0",
		"object-hash": "^1.3.1",
		"oidc-token-hash": "^3.0.1",
		"raw-body": "^2.3.3",
		"semver": "^5.6.0",
		"uuid": "^3.3.2"
	},
	"devDependencies": {
		"@commitlint/cli": "^7.5.2",
		"@commitlint/config-conventional": "^7.1.2",
		"chai": "^4.2.0",
		"clear-module": "^3.0.0",
		"eslint": "^5.9.0",
		"eslint-config-airbnb-base": "^13.1.0",
		"eslint-plugin-import": "^2.14.0",
		"husky": "^1.2.0",
		"koa-body": "^4.0.8",
		"koa-ejs": "^4.1.2",
		"koa-helmet": "^4.0.0",
		"koa-mount": "^4.0.0",
		"koa-router": "^7.4.0",
		"mocha": "^5.2.0",
		"moment": "^2.22.2",
		"nock": "^10.0.2",
		"nyc": "^13.3.0",
		"sinon": "^7.1.1",
		"supertest": "^3.3.0",
		"timekeeper": "^2.1.2"
	},
	"engines": {
		"node": ">=8.9.0"
	},
	"commitlint": {
		"extends": [ "@commitlint/config-conventional" ]
	},
	"nyc": {
		"reporter": [ "lcov", "text-summary" ]
	},
	"husky": {
		"hooks": {
			"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
		}
	}
}
