forked from danroot/SAML2-metadata-config
-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
91 lines (91 loc) · 1.91 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "passport-saml-metadata",
"version": "4.0.0",
"description": "SAML2 metadata loader",
"author": {
"name": "Jonathon Hill",
"email": "[email protected]"
},
"contributors": [
{
"name": "Michael Rotmanov",
"url": "http://www.leachim2k.de"
},
{
"name": "Ian Cervantez",
"url": "https://github.com/TigerC10"
},
{
"name": "Mardari Igor",
"url": "https://7code.ro"
},
{
"name": "Eric Vinson",
"url": "https://github.com/esvinson"
},
{
"name": "Rafael Maeuer",
"url": "https://rafaelmaeuer.de"
},
{
"name": "Barry Morrison",
"url": "http://www.barrymorrison.com"
},
{
"name": "Oliver Lockwood",
"url": "http://www.oliverlockwood.com/index.html"
},
{
"name": "Sol Redfern",
"url": "https://github.com/Tsuesun"
}
],
"license": "MIT",
"keywords": [
"node",
"passport",
"SAML",
"SAML2",
"passport-saml",
"passport-wsfed-saml2",
"metadata"
],
"repository": {
"url": "https://github.com/compwright/passport-saml-metadata"
},
"type": "module",
"engines": {
"node": ">= 16"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"@node-saml/node-saml": "^5.0.0",
"@xmldom/xmldom": "^0.8.6",
"axios": "^1.2.1",
"debug": "^4.3.4",
"lodash": "^4.17.21",
"xpath": "^0.0.34"
},
"devDependencies": {
"axios-mock-adapter": "^1.21.2",
"eslint": "^8.30.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "latest",
"standard-version": "latest",
"unbuild": "latest"
}
}