2011-08-04 20:32:01 +00:00
|
|
|
{
|
|
|
|
"author": "Mark Cavage <mcavage@gmail.com>",
|
2012-01-06 17:06:24 +00:00
|
|
|
"contributors": [
|
2012-03-14 16:13:16 +00:00
|
|
|
"Craig Baker",
|
|
|
|
"Austin King <shout@ozten.com>",
|
2012-01-06 17:06:24 +00:00
|
|
|
"Mathieu Lecarme <mathieu@garambrogne.net>>",
|
|
|
|
"Trent Mick <trentm@gmail.com>",
|
2013-01-15 20:19:20 +00:00
|
|
|
"Yunong Xiao <yunong@joyent.com>",
|
2013-04-30 18:25:30 +00:00
|
|
|
"Denis Vuyka <denis.vuyka@gmail.com>",
|
2013-10-31 22:19:42 +00:00
|
|
|
"Pedro Palazón <kusorbox@gmail.com>",
|
2015-04-14 03:55:02 +00:00
|
|
|
"Patrick Mooney <patrick.f.mooney@gmail.com>",
|
|
|
|
"Matt Simerson <matt@tnpi.net>"
|
2012-01-06 17:06:24 +00:00
|
|
|
],
|
2011-08-04 20:32:01 +00:00
|
|
|
"name": "ldapjs",
|
2011-08-08 15:14:13 +00:00
|
|
|
"homepage": "http://ldapjs.org",
|
2011-08-04 20:32:01 +00:00
|
|
|
"description": "LDAP client and server APIs",
|
2015-10-23 01:58:19 +00:00
|
|
|
"version": "1.0.0",
|
2015-06-15 01:55:51 +00:00
|
|
|
"license": "MIT",
|
2011-08-04 20:32:01 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git://github.com/mcavage/node-ldapjs.git"
|
|
|
|
},
|
|
|
|
"main": "lib/index.js",
|
2011-10-18 23:26:38 +00:00
|
|
|
"directories": {
|
|
|
|
"bin": "./bin",
|
|
|
|
"lib": "./lib"
|
|
|
|
},
|
2011-08-04 20:32:01 +00:00
|
|
|
"engines": {
|
2013-01-31 01:06:40 +00:00
|
|
|
"node": ">=0.8"
|
2011-08-04 20:32:01 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2015-10-15 05:14:32 +00:00
|
|
|
"asn1": "0.2.3",
|
2015-11-12 04:36:21 +00:00
|
|
|
"assert-plus": "0.2.0",
|
2015-10-15 05:14:32 +00:00
|
|
|
"bunyan": "1.5.1",
|
|
|
|
"dashdash": "1.10.1",
|
2015-02-18 17:07:58 +00:00
|
|
|
"backoff": "2.4.1",
|
2015-06-15 02:22:10 +00:00
|
|
|
"ldap-filter": "0.2.2",
|
|
|
|
"once": "1.3.2",
|
|
|
|
"vasync": "1.6.3",
|
2015-02-18 17:07:58 +00:00
|
|
|
"verror": "1.6.0"
|
2011-08-08 15:14:13 +00:00
|
|
|
},
|
2014-04-02 03:02:11 +00:00
|
|
|
"optionalDependencies": {
|
2015-10-15 05:14:32 +00:00
|
|
|
"dtrace-provider": "0.6.0"
|
2014-04-02 03:02:11 +00:00
|
|
|
},
|
2011-08-04 20:32:01 +00:00
|
|
|
"devDependencies": {
|
2015-06-15 02:22:10 +00:00
|
|
|
"node-uuid": "1.4.3",
|
2014-07-08 19:31:57 +00:00
|
|
|
"faucet": "0.0.1",
|
2015-06-15 02:22:10 +00:00
|
|
|
"istanbul": "0.3.15",
|
|
|
|
"tape": "4.0.0"
|
2011-08-04 20:32:01 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
2014-07-08 19:31:57 +00:00
|
|
|
"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"
|
2011-08-04 20:32:01 +00:00
|
|
|
}
|
|
|
|
}
|