mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.2 KiB
57 lines
1.2 KiB
{
|
|
"name": "passport-openidconnect",
|
|
"version": "0.1.2",
|
|
"description": "OpenID Connect authentication strategy for Passport.",
|
|
"keywords": [
|
|
"passport",
|
|
"openid",
|
|
"openidconnect",
|
|
"auth",
|
|
"authn",
|
|
"authentication",
|
|
"identity"
|
|
],
|
|
"author": {
|
|
"name": "Jared Hanson",
|
|
"email": "jaredhanson@gmail.com",
|
|
"url": "https://www.jaredhanson.me/"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/jaredhanson/passport-openidconnect.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/jaredhanson/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.10.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"
|
|
}
|
|
}
|
|
|