forked from panva/node-oidc-provider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.18 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
{
"name": "oidc-provider",
"version": "6.0.0-alpha.0",
"description": "OpenID Provider (OP) implementation for Node.js OpenID Connect servers.",
"keywords": [
"auth",
"authentication",
"basic",
"certified",
"config",
"connect",
"dynamic",
"express",
"hybrid",
"identity",
"implicit",
"koa",
"oauth",
"oauth2",
"oidc",
"openid",
"provider",
"server"
],
"homepage": "https://github.com/panva/node-oidc-provider",
"repository": "panva/node-oidc-provider",
"license": "MIT",
"author": "Filip Skokan <[email protected]>",
"files": [
"lib",
"docs/*.md"
],
"main": "lib/index.js",
"scripts": {
"coverage": "nyc node ./test/run",
"heroku-postbuild": "npm install mongodb@^3.0.0",
"lint": "eslint lib example test",
"lint-fix": "eslint lib example test --fix",
"test": "node ./test/run"
},
"dependencies": {
"@koa/cors": "^3.0.0",
"@panva/jose": "^0.11.2",
"base64url": "^3.0.1",
"debug": "^4.1.1",
"ejs": "^2.6.1",
"got": "^9.6.0",
"jsesc": "^2.5.2",
"koa": "^2.7.0",
"koa-compose": "^4.1.0",
"lodash": "^4.17.11",
"lru-cache": "^5.1.1",
"nanoid": "^2.0.1",
"object-hash": "^1.3.1",
"oidc-token-hash": "^3.0.2",
"raw-body": "^2.3.3"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"chai": "^4.2.0",
"clear-module": "^3.1.0",
"eslint": "^5.15.3",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"husky": "^1.3.1",
"koa-body": "^4.1.0",
"koa-ejs": "^4.2.0",
"koa-helmet": "^4.1.0",
"koa-mount": "^4.0.0",
"koa-router": "^7.4.0",
"mocha": "^6.0.2",
"moment": "^2.24.0",
"nock": "^10.0.6",
"nyc": "^13.3.0",
"sinon": "^7.3.0",
"supertest": "^4.0.2",
"timekeeper": "^2.2.0"
},
"engines": {
"node": ">=11.8.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"nyc": {
"cache": false,
"reporter": [
"lcov",
"text-summary"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}