2011-08-04 20:32:01 +00:00
|
|
|
{
|
2019-08-27 21:22:26 +00:00
|
|
|
"originalAuthor": "Mark Cavage <mcavage@gmail.com>",
|
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",
|
2021-05-27 19:23:01 +00:00
|
|
|
"version": "2.3.0",
|
2015-06-15 01:55:51 +00:00
|
|
|
"license": "MIT",
|
2011-08-04 20:32:01 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2019-08-27 21:22:26 +00:00
|
|
|
"url": "git://github.com/ldapjs/node-ldapjs.git"
|
2011-08-04 20:32:01 +00:00
|
|
|
},
|
|
|
|
"main": "lib/index.js",
|
2011-10-18 23:26:38 +00:00
|
|
|
"directories": {
|
|
|
|
"lib": "./lib"
|
|
|
|
},
|
2011-08-04 20:32:01 +00:00
|
|
|
"engines": {
|
2019-09-15 12:36:17 +00:00
|
|
|
"node": ">=10.13.0"
|
2011-08-04 20:32:01 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-07-21 23:03:09 +00:00
|
|
|
"abstract-logging": "^2.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",
|
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": {
|
2021-02-24 22:06:13 +00:00
|
|
|
"eslint": "^7.20.0",
|
2020-12-05 23:52:52 +00:00
|
|
|
"eslint-config-standard": "^16.0.2",
|
|
|
|
"eslint-plugin-import": "^2.22.1",
|
|
|
|
"eslint-plugin-node": "^11.1.0",
|
2021-02-24 22:06:13 +00:00
|
|
|
"eslint-plugin-promise": "^4.3.1",
|
2020-12-13 08:06:45 +00:00
|
|
|
"front-matter": "^4.0.2",
|
2020-05-20 21:20:06 +00:00
|
|
|
"get-port": "^5.1.1",
|
2021-02-24 22:06:13 +00:00
|
|
|
"highlight.js": "^10.6.0",
|
2020-07-22 10:07:06 +00:00
|
|
|
"husky": "^4.2.5",
|
2021-02-13 08:03:08 +00:00
|
|
|
"marked": "^2.0.0",
|
2021-05-08 07:06:14 +00:00
|
|
|
"tap": "15.0.9"
|
2011-08-04 20:32:01 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
2019-08-28 23:15:09 +00:00
|
|
|
"test": "tap --no-cov",
|
2019-09-15 12:36:17 +00:00
|
|
|
"test:ci": "tap --coverage-report=lcovonly",
|
2019-08-28 23:15:09 +00:00
|
|
|
"test:cov": "tap",
|
|
|
|
"test:cov:html": "tap --coverage-report=html",
|
|
|
|
"test:watch": "tap -n -w --no-coverage-report",
|
2019-11-16 15:48:00 +00:00
|
|
|
"test:integration": "tap --no-cov 'test-integration/**/*.test.js'",
|
|
|
|
"test:integration:local": "docker-compose up -d && npm run test:integration && docker-compose down",
|
2020-12-06 17:08:59 +00:00
|
|
|
"lint": "eslint . --fix",
|
2020-12-13 08:06:45 +00:00
|
|
|
"lint:ci": "eslint .",
|
2020-12-13 16:58:24 +00:00
|
|
|
"docs": "node scripts/build-docs.js"
|
2019-08-27 21:11:49 +00:00
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
2020-12-06 17:08:59 +00:00
|
|
|
"pre-commit": "npm run lint:ci && npm run test"
|
2019-08-27 21:11:49 +00:00
|
|
|
}
|
2011-08-04 20:32:01 +00:00
|
|
|
}
|
|
|
|
}
|