forked from panva/node-oidc-provider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 2.38 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
{
"name": "oidc-provider",
"version": "7.13.0",
"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]>",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"ci": "node ./test/ci",
"heroku-postbuild": "npm install mongodb@^4.3.0 openid-client@^5.0.0",
"format": "eslint lib example certification test --fix",
"test": "node ./test/run"
},
"dependencies": {
"@koa/cors": "^3.3.0",
"cacheable-lookup": "^6.0.4",
"debug": "^4.3.4",
"ejs": "^3.1.8",
"got": "^11.8.5",
"jose": "^4.10.3",
"jsesc": "^3.0.2",
"koa": "^2.13.4",
"koa-compose": "^4.1.0",
"nanoid": "^3.3.4",
"object-hash": "^3.0.0",
"oidc-token-hash": "^5.0.1",
"paseto": "^2.1.3",
"quick-lru": "^5.1.1",
"raw-body": "^2.5.1"
},
"optionalDependencies": {
"paseto3": "npm:paseto@^3.1.0"
},
"devDependencies": {
"@fastify/middie": "^8.0.0",
"@hapi/hapi": "^20.2.2",
"@koa/ejs": "^5.0.0",
"babel-eslint": "^10.1.0",
"base64url": "^3.0.1",
"chai": "^4.3.6",
"clear-module": "^4.1.2",
"connect": "^3.7.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.26.0",
"express": "^4.18.1",
"fastify": "^4.9.2",
"helmet": "^5.1.0",
"jose2": "npm:jose@^2.0.6",
"koa-body": "^4.2.0",
"koa-mount": "^4.0.0",
"koa-router": "^10.1.1",
"lodash": "^4.17.21",
"mocha": "^9.2.2",
"moment": "^2.29.4",
"nock": "^13.2.8",
"selfsigned": "^2.0.1",
"sinon": "^12.0.1",
"supertest": "^6.3.1",
"timekeeper": "^2.2.0"
},
"engines": {
"node": "12 || 14 || 16 || 18"
}
}