-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1018 Bytes
/
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
{
"name": "@mlhacks/passport-mlh-oauth2",
"version": "4.0.0",
"description": "MyMLH v4 OAuth 2.0 authentication strategy for Passport",
"main": "./lib/index.js",
"type": "module",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "mocha --reporter spec test/*.test.js",
"coverage": "nyc npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/MLH/passport-mlh-oauth2"
},
"keywords": [
"passport",
"mlh",
"mymlh",
"auth",
"authn",
"authentication",
"identity",
"oauth",
"oauth2"
],
"author": "Major League Hacking",
"license": "MIT",
"bugs": {
"url": "https://github.com/mlh/passport-mlh-oauth2/issues"
},
"homepage": "https://my.mlh.io/",
"dependencies": {
"passport-oauth2": "^1.8.0"
},
"devDependencies": {
"chai": "^5.1.2",
"mocha": "^10.8.2",
"nock": "^13.5.6",
"nyc": "^15.1.0",
"sinon": "^19.0.2"
},
"engines": {
"node": ">= 14.0.0"
}
}