-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 970 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
45
46
{
"name": "bixby-ldap",
"version": "0.0.0",
"description": "LDAP components for Bixby.js.",
"author": {
"name": "Jared Hanson",
"email": "jaredhanson@gmail.com",
"url": "http://www.jaredhanson.net/"
},
"repository": {
"type": "git",
"url": "git://github.com/bixbyjs/bixby-ldap.git"
},
"bugs": {
"url": "http://github.com/bixbyjs/bixby-ldap/issues"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
],
"main": "./app",
"assembly": {
"namespace": "ldap",
"components": [
"main",
"classes/inetorgperson",
"classes/organizationalperson",
"classes/person",
"classes/unix/posixaccount"
]
},
"dependencies": {
"ldapjs": "^1.0.1"
},
"devDependencies": {
"make-node": "^0.3.0",
"mocha": "^3.4.2",
"chai": "^4.0.2"
},
"scripts": {
"test": "node_modules/.bin/mocha test/*.test.js"
}
}