53 lines
1.4 KiB
JSON
53 lines
1.4 KiB
JSON
{
|
|
"author": "Mark Cavage <mcavage@gmail.com>",
|
|
"contributors": [
|
|
"Craig Baker",
|
|
"Austin King <shout@ozten.com>",
|
|
"Mathieu Lecarme <mathieu@garambrogne.net>>",
|
|
"Trent Mick <trentm@gmail.com>",
|
|
"Yunong Xiao <yunong@joyent.com>",
|
|
"Denis Vuyka <denis.vuyka@gmail.com>",
|
|
"Pedro Palazón <kusorbox@gmail.com>",
|
|
"Patrick Mooney <patrick.f.mooney@gmail.com>",
|
|
"Matt Simerson <matt@tnpi.net>"
|
|
],
|
|
"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": {
|
|
"abstract-logging": "^1.0.0",
|
|
"asn1": "0.2.3",
|
|
"assert-plus": "^1.0.0",
|
|
"backoff": "^2.5.0",
|
|
"ldap-filter": "^0.3.3",
|
|
"dashdash": "^1.14.0",
|
|
"once": "^1.4.0",
|
|
"vasync": "^1.6.4",
|
|
"verror": "^1.8.1"
|
|
},
|
|
"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"
|
|
}
|
|
}
|