forked from jaredhanson/passport-openidconnect
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
57 lines (57 loc) · 1.71 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
{
"name": "@govtechsg/passport-openidconnect",
"version": "1.0.3",
"description": "OpenID Connect authentication strategy for Passport.",
"keywords": [
"auth",
"authn",
"authentication",
"identity",
"openid",
"openidconnect",
"passport",
"techpass"
],
"bugs": {
"url": "https://github.com/GovTechSG/passport-openidconnect/issues"
},
"homepage": "https://github.com/GovTechSG/passport-openidconnect#readme",
"repository": {
"type": "git",
"url": "git://github.com/GovTechSG/passport-openidconnect.git"
},
"license": "MIT",
"author": "Jared Hanson <[email protected]> (http://www.jaredhanson.net/)",
"main": "./lib",
"types": "./lib/index.d.ts",
"scripts": {
"test": "mocha --reporter spec --require test/bootstrap/node test/*.test.js test/**/*.test.js",
"coverage": "nyc mocha --reporter min --require test/bootstrap/node test/*.test.js test/**/*.test.js",
"lint": "./node_modules/.bin/eslint ./lib",
"prettify": "./node_modules/.bin/prettier --write ./lib/**/* ./test/**/*"
},
"dependencies": {
"oauth": "^0.10.0",
"passport-strategy": "^1.0.0"
},
"devDependencies": {
"chai": "^2.0.0",
"chai-passport-strategy": "^3.0.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"jws": "^4.0.0",
"mocha": "^10.2.0",
"nyc": "^17.1.0",
"prettier": "^3.3.3",
"sinon": "^1.17.6"
},
"engines": {
"node": ">= 0.6.0"
},
"licenses": [
{
"type": "MIT",
"url": "https://opensource.org/licenses/MIT"
}
]
}