54 lines
1.3 KiB
JSON
54 lines
1.3 KiB
JSON
{
|
|
"originalAuthor": "Mark Cavage <mcavage@gmail.com>",
|
|
"name": "ldapjs",
|
|
"homepage": "http://ldapjs.org",
|
|
"description": "LDAP client and server APIs",
|
|
"version": "2.1.0",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/ldapjs/node-ldapjs.git"
|
|
},
|
|
"main": "lib/index.js",
|
|
"directories": {
|
|
"lib": "./lib"
|
|
},
|
|
"engines": {
|
|
"node": ">=10.13.0"
|
|
},
|
|
"dependencies": {
|
|
"abstract-logging": "^1.0.0",
|
|
"asn1": "^0.2.4",
|
|
"assert-plus": "^1.0.0",
|
|
"backoff": "^2.5.0",
|
|
"ldap-filter": "^0.3.3",
|
|
"once": "^1.4.0",
|
|
"vasync": "^2.2.0",
|
|
"verror": "^1.8.1"
|
|
},
|
|
"devDependencies": {
|
|
"get-port": "^5.1.1",
|
|
"husky": "^3.0.4",
|
|
"snazzy": "^8.0.0",
|
|
"standard": "^14.0.2",
|
|
"tap": "14.10.1",
|
|
"uuid": "^3.3.3"
|
|
},
|
|
"scripts": {
|
|
"test": "tap --no-cov",
|
|
"test:ci": "tap --coverage-report=lcovonly",
|
|
"test:cov": "tap",
|
|
"test:cov:html": "tap --coverage-report=html",
|
|
"test:watch": "tap -n -w --no-coverage-report",
|
|
"test:integration": "tap --no-cov 'test-integration/**/*.test.js'",
|
|
"test:integration:local": "docker-compose up -d && npm run test:integration && docker-compose down",
|
|
"lint": "standard | snazzy",
|
|
"lint:ci": "standard"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "npm run lint && npm run test"
|
|
}
|
|
}
|
|
}
|