forked from jaredhanson/passport-openidconnect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.28 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
{
"name": "@mstrhakr/passport-openidconnect",
"version": "0.1.2",
"description": "Development fork",
"keywords": [
"passport",
"openid",
"openidconnect",
"auth",
"authn",
"authentication",
"identity"
],
"author": "Jared Hanson <[email protected]> (https://www.jaredhanson.me/)",
"repository": {
"type": "git",
"url": "git://github.com/mstrhakr/passport-openidconnect.git"
},
"bugs": {
"url": "https://github.com/mstrhakr/passport-openidconnect/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/jaredhanson"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://opensource.org/licenses/MIT"
}
],
"main": "./lib",
"dependencies": {
"oauth": "0.9.x",
"passport-strategy": "1.x.x"
},
"devDependencies": {
"chai": "2.x.x",
"chai-passport-strategy": "3.x.x",
"jws": "^4.0.0",
"make-node": "0.3.x",
"mocha": "2.x.x",
"proxyquire": "^1.7.10",
"sinon": "^1.17.6"
},
"engines": {
"node": ">= 0.6.0"
},
"scripts": {
"test": "mocha --require ./test/bootstrap/node --recursive"
},
"homepage": "https://github.com/mstrhakr/passport-openidconnect#readme",
"directories": {
"lib": "lib",
"test": "test"
}
}