-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
56 lines (56 loc) · 1.22 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
{
"name": "hapi-auth-saml",
"version": "1.0.0",
"description": "SAML authentication scheme for Hapijs",
"keywords": [
"saml",
"hapi",
"node",
"login",
"authentication"
],
"repository": {
"type": "git",
"url": "[email protected]:pebblecode/hapi-auth-saml.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/pebblecode/hapi-auth-saml/issues"
},
"homepage": "https://github.com/pebblecode/hapi-auth-saml",
"author": "Pebble{code} <[email protected]>",
"contributors": [
{
"name": "Tu Tak Tran",
"email": "[email protected]"
},
{
"name": "Tane Piper",
"email": "[email protected]"
}
],
"main": "index.js",
"scripts": {
"ping": "node examples/ping-federate.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">=0.12.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"
}
}