forked from DanialK/PassportJS-Authentication
-
-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
48 lines (48 loc) · 983 Bytes
/
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-example",
"version": "0.0.1",
"description": "Example for PassportJS SAML strategy",
"author": {
"name": "Gerard Braad",
"email": "[email protected]",
"url": "http://gbraad.nl"
},
"contributors": [
{
"name": "Christian Kuster",
"email": "[email protected]"
}
],
"keywords": [
"saml",
"sso"
],
"repository": {
"type": "git",
"url": "https://github.com/gbraad/passport-saml-example.git"
},
"scripts": {
"start": "nodemon app.js",
"test": "",
"postinstall": "bower install"
},
"dependencies": {
"body-parser": "1.15.1",
"cookie-parser": "1.4.3",
"errorhandler": "1.4.3",
"express": "4.13.4",
"express-session": "1.13.0",
"jade": "1.11.0",
"morgan": "1.7.0",
"nodemon": "1.9.2",
"passport": "0.3.2",
"passport-saml": "^1.3.3"
},
"devDependencies": {
"bower": "1.7.9"
},
"engines": {
"node": ">= 4.0.0"
},
"license": "MIT"
}