forked from panva/node-oidc-provider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 1.85 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
{
"author": "Filip Skokan <[email protected]>",
"homepage": "https://github.com/panva/node-oidc-provider",
"dependencies": {
"base64url": "^2.0.0",
"buffer-equals-constant": "^1.0.0",
"cookies": "^0.6.2",
"debug": "^2.4.4",
"ejs": "^2.5.2",
"got": "^6.1.1",
"http-errors": "^1.4.0",
"kcors": "^1.2.1",
"koa": "^1.0.0",
"koa-compose": "^2.3.0",
"koa-router": "^5.2.3",
"lodash": "^4.5.0",
"lru-cache": "^4.0.0",
"node-jose": "^0.9.0",
"oidc-token-hash": "^1.0.0",
"raw-body": "^2.1.7",
"uuid": "^3.0.0",
"valid-url": "^1.0.9"
},
"description": "OpenID Provider (OP) implementation for Node.js OpenID Connect servers.",
"devDependencies": {
"chai": "^3.5.0",
"co-mocha": "^1.1.2",
"cookiejar": "*",
"eslint": "^3.0.0",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.0.1",
"istanbul": "^0.4.3",
"koa-body": "^1.2.1",
"koa-ejs": "^3.0.0",
"koa-mount": "^1.3.0",
"koa-rewrite": "^1.1.1",
"mocha": "^3.0.0",
"mocha-generators": "^1.2.0",
"moment": "^2.14.1",
"nock": "^9.0.2",
"sinon": "^1.17.3",
"supertest": "^3.0.0"
},
"main": "lib/index.js",
"name": "oidc-provider",
"repository": "panva/node-oidc-provider",
"engines": {
"node": ">=4"
},
"license": "MIT",
"keywords": [
"openid",
"connect",
"provider",
"certified",
"server",
"dynamic",
"config",
"basic",
"hybrid",
"implicit",
"oidc",
"auth",
"authentication",
"identity",
"oauth",
"oauth2",
"express",
"koa"
],
"scripts": {
"coverage": "make coverage",
"test": "make test",
"lint": "eslint lib example test",
"lint-fix": "eslint lib example test --fix",
"heroku-postbuild": "npm install mongodb"
},
"version": "1.11.0",
"files": [
"lib"
]
}