forked from panva/node-oidc-provider
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
116 lines (116 loc) · 2.66 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "oidc-provider",
"version": "6.27.4",
"description": "OAuth 2.0 Authorization Server implementation for Node.js with OpenID Connect",
"keywords": [
"auth",
"authentication",
"authorization",
"basic",
"certified",
"config",
"connect",
"dynamic",
"express",
"fapi",
"fastify",
"hapi",
"hybrid",
"identity",
"implicit",
"koa",
"oauth 2.0",
"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",
"types/index.d.ts"
],
"funding": "https://github.com/sponsors/panva",
"main": "lib/index.js",
"types": "types/index.d.ts",
"scripts": {
"ci": "node ./test/ci",
"coverage": "nyc node ./test/run",
"heroku-postbuild": "npm install mongodb@^3.0.0 openid-client@^3.0.0",
"lint": "eslint lib example certification test",
"lint-ts": "npx typescript@~3.6.0 --build types",
"lint-fix": "eslint lib example certification test --fix",
"test": "node ./test/run"
},
"dependencies": {
"@koa/cors": "^3.0.0",
"@types/koa": "^2.11.0",
"debug": "^4.1.1",
"ejs": "^3.0.1",
"got": "^9.6.0",
"jose": "^1.27.1",
"jsesc": "^3.0.1",
"koa": "^2.11.0",
"koa-compose": "^4.1.0",
"lru-cache": "^5.1.1",
"nanoid": "^3.1.3",
"object-hash": "^2.0.1",
"oidc-token-hash": "^5.0.0",
"raw-body": "^2.4.1"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@hapi/hapi": "^18.4.0",
"base64url": "^3.0.1",
"chai": "^4.2.0",
"clear-module": "^4.0.0",
"connect": "^3.7.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.21.2",
"express": "^4.17.1",
"fastify": "^2.12.0",
"https-pem": "^2.0.0",
"husky": "^4.2.1",
"koa-body": "^4.1.1",
"koa-ejs": "^4.3.0",
"koa-helmet": "^5.2.0",
"koa-mount": "^4.0.0",
"koa-router": "^7.4.0",
"lodash": "^4.17.15",
"mocha": "^8.0.1",
"moment": "^2.24.0",
"nock": "^12.0.1",
"nyc": "^15.0.0",
"paseto": "^1.0.5",
"sinon": "^9.0.0",
"supertest": "^4.0.2",
"timekeeper": "^2.2.0"
},
"engines": {
"node": "^10.13.0 || >=12.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"nyc": {
"cache": false,
"reporter": [
"lcov",
"text-summary"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}