-
-
Notifications
You must be signed in to change notification settings - Fork 766
/
package.json
99 lines (99 loc) · 2.16 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
{
"name": "oidc-provider",
"version": "8.5.3",
"description": "OAuth 2.0 Authorization Server implementation for Node.js with OpenID Connect",
"keywords": [
"appauth",
"auth",
"authentication",
"authorization",
"basic",
"certified",
"ciba",
"config",
"connect",
"device flow",
"dpop",
"dynamic",
"express",
"fapi",
"fastify",
"hapi",
"hybrid",
"identity",
"implicit",
"jar",
"jarm",
"koa",
"mtls",
"oauth 2.0",
"oauth 2.1",
"oauth",
"oauth2",
"oidc",
"openid",
"par",
"pkce",
"provider",
"server"
],
"homepage": "https://github.com/panva/node-oidc-provider",
"repository": "panva/node-oidc-provider",
"funding": {
"url": "https://github.com/sponsors/panva"
},
"license": "MIT",
"author": "Filip Skokan <[email protected]>",
"type": "module",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"ci": "node ./test/ci",
"format": "eslint lib example certification test docs --fix",
"heroku-postbuild": "npm install mongodb@^4.3.0 openid-client@^5.0.0",
"test": "node ./test/run"
},
"dependencies": {
"@koa/cors": "^5.0.0",
"@koa/router": "^13.1.0",
"debug": "^4.3.7",
"eta": "^3.5.0",
"got": "^13.0.0",
"jose": "^5.9.6",
"jsesc": "^3.0.2",
"koa": "^2.15.3",
"nanoid": "^5.0.8",
"object-hash": "^3.0.0",
"oidc-token-hash": "^5.0.3",
"quick-lru": "^7.0.0",
"raw-body": "^3.0.0"
},
"devDependencies": {
"@fastify/middie": "^8.3.3",
"@hapi/hapi": "^21.3.12",
"@koa/ejs": "^5.1.0",
"base64url": "^3.0.1",
"chai": "^5.1.2",
"clear-module": "^4.1.2",
"connect": "^3.7.0",
"desm": "^1.3.1",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.31.0",
"express": "^4.21.1",
"fastify": "^4.28.1",
"helmet": "^7.2.0",
"koa-body": "^6.0.1",
"koa-mount": "^4.0.0",
"lodash": "^4.17.21",
"mocha": "^10.7.3",
"moment": "^2.30.1",
"nock": "^13.5.5",
"selfsigned": "^2.4.1",
"sinon": "^18.0.1",
"supertest": "^7.0.0",
"timekeeper": "^2.3.1"
}
}