node-ldapjs/package.json

53 lines
1.4 KiB
JSON
Raw Normal View History

2011-08-04 20:32:01 +00:00
{
"author": "Mark Cavage <mcavage@gmail.com>",
2012-01-06 17:06:24 +00:00
"contributors": [
"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>",
"Yunong Xiao <yunong@joyent.com>",
2013-04-30 18:25:30 +00:00
"Denis Vuyka <denis.vuyka@gmail.com>",
"Pedro Palazón <kusorbox@gmail.com>",
"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",
2018-01-11 18:36:08 +00:00
"version": "1.0.2",
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": {
2016-10-19 03:25:14 +00:00
"node": ">=0.10"
2011-08-04 20:32:01 +00:00
},
"dependencies": {
2016-11-03 17:59:40 +00:00
"abstract-logging": "^1.0.0",
2019-08-27 13:15:48 +00:00
"asn1": "^0.2.4",
2016-10-19 03:25:14 +00:00
"assert-plus": "^1.0.0",
"backoff": "^2.5.0",
2016-11-03 17:59:40 +00:00
"dashdash": "^1.14.0",
2019-08-27 13:08:00 +00:00
"ldap-filter": "^0.3.3",
2016-10-19 03:25:14 +00:00
"once": "^1.4.0",
2019-08-27 13:15:48 +00:00
"vasync": "^2.2.0",
2016-10-19 03:25:14 +00:00
"verror": "^1.8.1"
2011-08-08 15:14:13 +00:00
},
2011-08-04 20:32:01 +00:00
"devDependencies": {
2019-08-27 13:08:00 +00:00
"tap": "^14.6.1",
"uuid": "^3.3.3"
2011-08-04 20:32:01 +00:00
},
"scripts": {
2019-08-27 13:08:00 +00:00
"test": "tap --no-cov 'test/**/*.test.js'",
"test:cov": "tap 'test/**/*.test.js'",
"test:cov:html": "tap --coverage-report=html 'test/**/*.test.js'",
"test:watch": "tap -n -w --no-coverage-report 'test/**/*.test.js'"
2011-08-04 20:32:01 +00:00
}
}