-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
52 lines (52 loc) · 1.08 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
{
"name": "passport-microsoft",
"version": "2.1.0",
"license" : "MIT",
"description": "Microsoft [Graph] authentication strategy for Passport.",
"keywords": [
"passport",
"microsoft",
"graph",
"graph.microsoft.io",
"oauth",
"oauth 2.0",
"auth",
"api",
"authentication",
"sean fisher",
"seafish.io"
],
"repository": {
"type": "git",
"url": "git://github.com/seanfisher/passport-microsoft.git"
},
"author": {
"name": "Sean Fisher",
"email": "[email protected]",
"url": "https://seafish.io"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"main": "./lib/",
"dependencies": {
"passport-oauth2": "1.8.0"
},
"engines": {
"node": ">= 0.4.0"
},
"devDependencies": {
"chai": "^4.4.1",
"chai-passport-strategy": "^3.0.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"mocha": "^10.3.0"
},
"scripts": {
"test": "mocha --require ./test/bootstrap/node.js"
}
}