forked from mcguinness/saml-idp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 807 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
{
"name": "saml-idp",
"description": "Sample Identity Provider (IdP) for testing SAML 2.0 Web Browser SSO Profile",
"version": "0.2.0",
"private": true,
"author": "Karl McGuinness",
"license": {
"type": "MIT",
"url": "https://github.com/mcguinness/saml-idp/blob/master/LICENSE"
},
"main": "./app.js",
"repository": {
"type": "git",
"url": "https://github.com/mcguinness/saml-idp"
},
"scripts": {
"start": "node app.js"
},
"engines": {
"node": ">=0.8.8"
},
"dependencies": {
"body-parser": "~1.10.2",
"cookie-parser": "~1.3.3",
"debug": "~2.1.1",
"express": "~4.11.1",
"extend": "^2.0.0",
"hbs": "~2.8.0",
"morgan": "~1.5.1",
"samlp": "https://github.com/mcguinness/node-samlp/tarball/master",
"yargs": "^1.3.3"
}
}