UNPKG

ldap-async

Version:

A wrapper around ldapjs to provide promises, pooling, config by environment, and other conveniences.

64 lines (63 loc) 1.49 kB
{ "name": "ldap-async", "version": "1.3.6", "description": "A wrapper around ldapjs to provide promises, pooling, config by environment, and other conveniences.", "exports": { ".": { "require": "./dist/index.js", "import": "./dist-esm/index.js" }, "./client": { "require": "./dist/client.js", "import": "./dist-esm/client.js" } }, "types": "dist/index.d.ts", "typesVersions": { "*": { "client": ["./dist/client.d.ts"] } }, "scripts": { "prepublishOnly": "npm run build", "build": "rm -rf dist && tsc", "mocha": "mocha -r ts-node/register test/**/*.ts", "test": "./test.sh" }, "dependencies": { "ldapjs": "^2.3.1", "@types/ldapjs": "^2.2.0" }, "devDependencies": { "@types/chai": "^4.2.14", "@types/mocha": "^9.0.0", "@types/node": "^16.6.1", "chai": "^4.2.0", "eslint-config-standard-with-typescript": "^22.0.0", "image-size": "^1.0.1", "mocha": "^10.0.0", "ts-node": "^10.2.0", "typescript": "^4.3.5" }, "repository": { "type": "git", "url": "git+https://github.com/txstate-etc/ldap-async.git" }, "keywords": [ "ldap", "ldapjs", "activedirectory", "async", "pool" ], "author": "Nick Wing", "license": "MIT", "bugs": { "url": "https://github.com/txstate-etc/ldap-async/issues" }, "homepage": "https://github.com/txstate-etc/ldap-async#readme", "files": [ "dist/**/*", "dist-esm/**/*" ] }