{ "author": "Mark Cavage ", "contributors": [ "Craig Baker", "Austin King ", "Mathieu Lecarme >", "Trent Mick ", "Yunong Xiao ", "Denis Vuyka ", "Pedro Palazón ", "Patrick Mooney ", "Matt Simerson " ], "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.4", "assert-plus": "^1.0.0", "backoff": "^2.5.0", "dashdash": "^1.14.0", "ldap-filter": "^0.3.3", "once": "^1.4.0", "vasync": "^2.2.0", "verror": "^1.8.1" }, "devDependencies": { "husky": "^3.0.4", "snazzy": "^8.0.0", "standard": "^14.0.2", "tap": "^14.6.1", "uuid": "^3.3.3" }, "scripts": { "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'", "lint": "standard 'examples/**/*.js' 'lib/**/*.js' 'test/**/*.js' | snazzy", "lint:ci": "standard 'examples/**/*.js' 'lib/**/*.js' 'test/**/*.js'" }, "husky": { "hooks": { "pre-commit": "npm run lint && npm run test" } } }