-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (34 loc) · 736 Bytes
/
package.json
File metadata and controls
40 lines (34 loc) · 736 Bytes
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
{
"name" : "myldap",
"version" : "1.0.0",
"author" : "Jan Michael Auer <jan.auer@me.com>",
"description" : "A LDAP server with configurable backends",
"contributors" : [
{
"name" : "Martin Prebio",
"email" : "martin.prebio@gmail.com"
},
{
"name" : "Jakob Etzel",
"email" : "jakob.etzel@gmail.com"
}
],
"bin" : {
"myldap" : "./bin/myldap",
"myldapd" : "./bin/myldapd"
},
"scripts" : {
"start" : "bin/myldapd start config.json",
"stop" : "bin/myldapd stop",
"restart" : "bin/myldapd restart"
},
"main" : "./lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/cyber-tron/node-myldap.git"
},
"dependencies" : {
"ldapjs" : "latest",
"mysql" : "latest"
}
}