forked from mcguinness/saml-idp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 929 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
{
"name": "saml-idp",
"description": "Test Identity Provider (IdP) for SAML 2.0 Web Browser SSO Profile",
"version": "1.0.0",
"private": false,
"author": "Karl McGuinness",
"keywords": [
"saml",
"idp",
"okta"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mcguinness/saml-idp"
},
"bugs": {
"url": "https://github.com/mcguinness/saml-idp/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.1",
"cookie-parser": "~1.4.3",
"debug": "~3.0.1",
"express": "~4.15.4",
"express-session": "^1.15.6",
"extend": "^3.0.1",
"hbs": "~4.0.1",
"morgan": "~1.8.2",
"samlp": "3.3.2",
"yargs": "^9.0.1"
},
"devDependencies": {
"bower": "^1.8.2"
}
}