-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
62 lines (62 loc) · 1.21 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
{
"name": "passport-ldap",
"version": "0.0.3",
"description": "LDAP authentication strategy for Passport.",
"author": {
"name": "Paul Dixon",
"email": "[email protected]",
"url": "http://www.mintbridge.co.uk/"
},
"contributors": [
{
"name":"Matteo Brunati"
},
{
"name":"Jongwook Park",
"email":"[email protected]"
},
{
"name":"Paul Dixon",
"email":"[email protected]"
},
{
"name": "Enzo Martin",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git://github.com/mintbridge/passport-ldap.git"
},
"bugs": {
"url": "http://github.com/mintbridge/passport-ldap/issues"
},
"main": "./lib/passport-ldap",
"dependencies": {
"pkginfo": "0.2.x",
"ldapjs": "0.6.3"
},
"devDependencies": {
"vows": "0.6.x"
},
"scripts": {
"test": "NODE_PATH=lib node_modules/.bin/vows test/*-test.js"
},
"engines": {
"node": ">= 0.4.0"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"keywords": [
"passport",
"ldap",
"auth",
"authn",
"authentication",
"identity"
]
}