forked from panva/openid-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 1.96 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
{
"name": "openid-client",
"version": "3.7.4",
"description": "OpenID Connect Relying Party (RP, Client) implementation for Node.js runtime, supports passportjs",
"keywords": [
"auth",
"authentication",
"basic",
"certified",
"client",
"connect",
"dynamic",
"electron",
"hybrid",
"identity",
"implicit",
"oauth",
"oauth2",
"oidc",
"openid",
"passport",
"relying party",
"strategy"
],
"homepage": "https://github.com/panva/node-openid-client",
"repository": "panva/node-openid-client",
"license": "MIT",
"author": "Filip Skokan <[email protected]>",
"files": [
"lib",
"types/index.d.ts"
],
"main": "lib/index.js",
"types": "types/index.d.ts",
"scripts": {
"coverage": "nyc mocha",
"lint": "eslint lib test && dtslint types",
"lint-fix": "eslint lib test --fix",
"test": "mocha"
},
"dependencies": {
"base64url": "^3.0.1",
"got": "^9.6.0",
"jose": "^1.10.2",
"lodash": "^4.17.15",
"lru-cache": "^5.1.1",
"make-error": "^1.3.5",
"object-hash": "^2.0.0",
"oidc-token-hash": "^3.0.2",
"p-any": "^2.1.0"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/got": "^9.6.7",
"@types/passport": "^1.0.1",
"chai": "^4.2.0",
"dtslint": "^1.0.2",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"husky": "^3.0.9",
"mocha": "^6.2.2",
"nock": "^11.6.0",
"nyc": "^14.1.1",
"readable-mock-req": "^0.2.2",
"sinon": "^7.5.0",
"timekeeper": "^2.2.0",
"typescript": "^3.6.4"
},
"engines": {
"node": "^10.13.0 || >=12.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"nyc": {
"reporter": [
"lcov",
"text-summary"
]
}
}