forked from ldapjs/node-ldapjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.43 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
{
"author": "Mark Cavage <[email protected]>",
"contributors": [
"Craig Baker",
"Austin King <[email protected]>",
"Mathieu Lecarme <[email protected]>>",
"Trent Mick <[email protected]>",
"Yunong Xiao <[email protected]>",
"Denis Vuyka <[email protected]>",
"Pedro Palazón <[email protected]>",
"Patrick Mooney <[email protected]>",
"Matt Simerson <[email protected]>"
],
"name": "ldapjs",
"homepage": "http://ldapjs.org",
"description": "LDAP client and server APIs",
"version": "1.0.2",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/mcavage/node-ldapjs.git"
},
"main": "lib/index.js",
"directories": {
"bin": "./bin",
"lib": "./lib"
},
"engines": {
"node": ">=0.10"
},
"dependencies": {
"asn1": "0.2.3",
"assert-plus": "^1.0.0",
"bunyan": "^1.8.3",
"dashdash": "^1.14.0",
"backoff": "^2.5.0",
"ldap-filter": "0.2.2",
"once": "^1.4.0",
"vasync": "^1.6.4",
"verror": "^1.8.1"
},
"optionalDependencies": {
"dtrace-provider": "~0.8"
},
"devDependencies": {
"node-uuid": "^1.4.7",
"faucet": "0.0.1",
"istanbul": "^0.4.5",
"tape": "^4.6.2"
},
"scripts": {
"report": "./node_modules/.bin/istanbul report html && open ./coverage/lcov-report/index.html",
"test": "./node_modules/.bin/istanbul cover --print none test/test.js | ./node_modules/.bin/faucet"
}
}