forked from mcguinness/saml-idp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.17 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
{
"name": "saml-proxy",
"description": "SAML 2.0 Proxy allows modification/mediation of requests/responses",
"version": "1.1.0",
"private": false,
"author": "Patrick Vinograd",
"keywords": [
"saml",
"idp",
"okta"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/patrickvinograd/saml-proxy"
},
"bugs": {
"url": "https://github.com/patrickvinograd/saml-proxy/issues"
},
"main": "./app.js",
"scripts": {
"start": "node app.js",
"prepare": "bower install"
},
"bin": "./bin/run.js",
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"body-parser": "~1.18.3",
"cookie-parser": "~1.4.3",
"debug": "~3.1.0",
"express": "~4.16.3",
"express-session": "^1.15.6",
"extend": "^3.0.1",
"hbs": "~4.0.1",
"morgan": "~1.9.0",
"passport": "^0.4.0",
"passport-wsfed-saml2": "edpaget/passport-wsfed-saml2#auth-demo",
"samlp": "edpaget/node-samlp#auth-demo",
"underscore": "^1.9.0",
"xml-formatter": "^1.0.1",
"xmldom": "^0.1.27",
"request": "^2.87.0",
"xml2js": "^0.4.19",
"yargs": "^11.0.0"
},
"devDependencies": {
"bower": "^1.8.4"
}
}