forked from panva/openid-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.61 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
{
"name": "openid-client",
"version": "1.12.0",
"description": "OpenID Connect Relying Party (RP, Client) implementation for Node.js servers, supports passportjs",
"main": "lib/index.js",
"scripts": {
"coverage": "nyc mocha",
"test": "mocha",
"lint": "eslint lib example test"
},
"repository": "panva/node-openid-client",
"engines": {
"node": ">=4"
},
"homepage": "https://github.com/panva/node-openid-client",
"keywords": [
"openid",
"connect",
"client",
"relying",
"party",
"oidc",
"auth",
"authentication",
"identity",
"oauth",
"passport",
"passportjs",
"strategy",
"certified",
"dynamic",
"config",
"basic",
"hybrid",
"implicit",
"oauth2"
],
"author": "Filip Skokan <[email protected]>",
"license": "MIT",
"files": [
"lib"
],
"devDependencies": {
"chai": "^4.0.0",
"co-mocha": "^1.1.3",
"eslint": "^3.0.0",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.0.1",
"koa": "^2.2.0",
"koa-body": "^2.0.0",
"koa-ejs": "^4.0.0",
"koa-router": "^7.1.1",
"koa-session": "^5.0.0",
"mocha": "^3.0.0",
"nock": "^9.0.14",
"nyc": "^11.0.1",
"readable-mock-req": "^0.2.2",
"sinon": "^2.1.0",
"timekeeper": "^1.0.0"
},
"dependencies": {
"base64url": "^2.0.0",
"create-error-class": "^3.0.2",
"got": "^7.0.0",
"lodash": "^4.13.1",
"lru-cache": "^4.0.1",
"node-jose": "^0.9.4",
"oidc-token-hash": "^1.0.0",
"uuid": "^3.0.0"
},
"nyc": {
"reporter": [
"lcov",
"text-summary"
]
}
}