forked from pebblecode/hapi-auth-saml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.38 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "hapi-auth-saml",
"version": "1.0.0",
"description": "SAML authentication scheme for Hapijs",
"keywords": [
"saml",
"hapi",
"node",
"login",
"authentication"
],
"repository": {
"type": "git",
"url": "https://github.com/jar349/hapi-auth-saml.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jar349/hapi-auth-saml/issues"
},
"homepage": "https://github.com/jar349/hapi-auth-saml",
"author": "John Ruiz <jruiz@johnruiz.com>",
"contributors": [
{
"name": "Richard Clayton",
"email": "saml-gives-me-indigestion@feel-the-burn.com"
},
{
"name": "John Ruiz",
"email": "jruiz@johnruiz.com"
},
{
"name": "Tu Tak Tran",
"email": "ttt@pebblecode.com"
},
{
"name": "Tane Piper",
"email": "tane@pebblecode.com"
}
],
"main": "index.js",
"scripts": {
"ping": "node examples/ping-federate.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">=4.x"
},
"devDependencies": {
"hapi": "^8.8.0",
"gulp": "^3.9.0",
"gulp-jshint": "^1.11.2",
"jshint-stylish": "^2.0.1"
},
"dependencies": {
"boom": "^2.8.0",
"lodash": "^3.10.0",
"q": "^1.4.1",
"xml-crypto": "^0.5.27",
"xml-encryption": "^0.7.2",
"xml2js": "^0.4.9",
"xmlbuilder": "^2.6.4",
"xmldom": "^0.1.19"
}
}