forked from peter-spireng/passport-saml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.05 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
{
"name": "passport-saml",
"version": "0.0.7",
"licenses": [{
"type": "MIT",
"url": "https://github.com/bergie/passport-saml/raw/master/LICENSE"
}],
"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"
],
"repository" : {
"type" : "git",
"url" : "https://github.com/bergie/passport-saml.git"
},
"main": "./lib/passport-saml",
"dependencies": {
"passport": "0.2.x",
"xml2js": "0.4.x",
"xml-crypto": "0.0.x",
"xmldom": "0.1.x",
"xmlbuilder": "~2.2"
},
"devDependencies": {
"express": "3.x",
"body-parser": "*",
"ejs": "0.7.x",
"jshint": "*",
"request": "*",
"should": "*",
"mocha": "*"
},
"engines": {
"node": ">= 0.8.0"
},
"scripts" : {
"test": "mocha",
"jshint": "./node_modules/.bin/jshint lib"
}
}