-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.12 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": "saml-forward-proxy",
"version": "0.1.13",
"description": "Proxy SAML 2 Requests to another IdP",
"scripts": {
"start": "nodemon app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/geordielad/saml-forward-proxy.git"
},
"keywords": [
"Tableau",
"SAML"
],
"author": "Robin Cottiss <rcottiss@tableau.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/geordielad/saml-forward-proxy/issues"
},
"homepage": "https://github.com/geordielad/saml-forward-proxy#readme",
"dependencies": {
"body-parser": "^1.17.2",
"cookie-parser": "^1.4.3",
"errorhandler": "^1.5.0",
"express": "^4.15.3",
"express-session": "^1.15.3",
"jade": "^1.11.0",
"morgan": "^1.8.2",
"nodemon": "^1.11.0",
"passport": "^0.3.2",
"passport-saml": "^0.15.0",
"saml-encoder-decoder-js": "^1.0.1",
"xml2js": "^0.4.17",
"xml2js-xpath": "^0.8.0"
},
"engines": {
"node": ">= 0.10.0"
},
"files": [
"LICENSE",
"README.md",
"app.js",
"app/",
"config/"
]
}