forked from node-saml/passport-saml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.14 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
{
"name": "passport-saml",
"version": "0.31.0",
"license": "MIT",
"keywords": [
"saml",
"adfs",
"sso",
"shibboleth"
],
"description": "SAML 2.0 authentication strategy for Passport",
"author": {
"name": "Henri Bergius",
"email": "henri.bergius@iki.fi",
"url": "http://bergie.iki.fi"
},
"contributors": [
"Michael Bosworth",
"Herbert Vojčík",
"Peter Loer",
"Mark Stosberg",
"Jan Cajthaml <jan.cajthaml@gmail.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/bergie/passport-saml.git"
},
"main": "./lib/passport-saml",
"dependencies": {
"passport-strategy": "*",
"q": "^1.5.0",
"xml-crypto": "^0.10.1",
"xml-encryption": "^0.11.0",
"xml2js": "0.4.x",
"xmlbuilder": "^9.0.4",
"xmldom": "0.1.x"
},
"devDependencies": {
"body-parser": "^1.17.1",
"express": "^4.16.2",
"jshint": "*",
"mocha": "*",
"passport": "0.4.x",
"request": "^2.83.0",
"should": "*",
"sinon": "^2.1.0"
},
"engines": {
"node": ">= 4"
},
"scripts": {
"test": "mocha",
"jshint": "./node_modules/.bin/jshint lib"
}
}