forked from AzureAD/microsoft-authentication-library-for-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.29 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.29 KB
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": "passport-azure-ad",
"version": "4.3.4",
"license": "MIT",
"keywords": [
"azure active directory",
"aad",
"adfs",
"sso",
"oidc",
"bearer",
"shibboleth"
],
"description": "OIDC and Bearer Passport strategies for Azure Active Directory",
"author": {
"name": "azuread",
"email": "nugetaad@microsoft.com",
"url": "http://microsoft.com/"
},
"repository": {
"type": "git",
"url": "git@github.com:AzureAD/microsoft-authentication-library-for-js.git"
},
"main": "./lib",
"devDependencies": {
"chai": "2.x.x",
"chai-passport-strategy": "1.x.x",
"eslint": "^7.32.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-security": "^1.4.0",
"grunt": "^1.0.1",
"grunt-contrib-nodeunit": "^3.0.0",
"grunt-mocha-test": "^0.12.7",
"mocha": "^5.2.0",
"nodeunit": "^0.11.3"
},
"dependencies": {
"async": "^3.2.3",
"base64url": "^3.0.0",
"bunyan": "^1.8.14",
"cache-manager": "^3.6.1",
"https-proxy-agent": "^5.0.0",
"jws": "^3.1.3",
"lodash": "^4.11.2",
"node-jose": "^2.0.0",
"oauth": "0.9.15",
"passport": "^0.6.0",
"valid-url": "^1.0.6"
},
"scripts": {
"test": "grunt run_tests",
"lint": "eslint lib/**"
},
"engines": {
"node": ">= 8.0.0"
}
}