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",
|
2022-06-08 01:06:42 +00:00
|
|
|
"version": "2.3.3",
|
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",
|
|
|
|
"dependencies": {
|
2023-02-21 18:28:58 +00:00
|
|
|
"@ldapjs/asn1": "2.0.0-rc.4",
|
|
|
|
"@ldapjs/attribute": "1.0.0-rc.5",
|
|
|
|
"@ldapjs/change": "1.0.0-rc.3",
|
|
|
|
"@ldapjs/controls": "2.0.0-rc.1",
|
|
|
|
"@ldapjs/dn": "1.0.0-rc.1",
|
|
|
|
"@ldapjs/filter": "2.0.0-rc.5",
|
2023-02-21 18:57:48 +00:00
|
|
|
"@ldapjs/messages": "1.0.0-rc.3",
|
2022-06-06 02:01:40 +00:00
|
|
|
"@ldapjs/protocol": "^1.0.0",
|
2020-07-21 23:03:09 +00:00
|
|
|
"abstract-logging": "^2.0.0",
|
2016-10-19 03:25:14 +00:00
|
|
|
"assert-plus": "^1.0.0",
|
|
|
|
"backoff": "^2.5.0",
|
|
|
|
"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": {
|
2022-03-27 17:12:16 +00:00
|
|
|
"@fastify/pre-commit": "^2.0.2",
|
|
|
|
"eslint": "8.12.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",
|
2022-03-27 17:12:16 +00:00
|
|
|
"eslint-plugin-promise": "6.0.0",
|
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-06-05 07:01:50 +00:00
|
|
|
"highlight.js": "^11.0.1",
|
2021-11-06 07:04:14 +00:00
|
|
|
"marked": "^4.0.0",
|
2022-03-27 17:12:16 +00:00
|
|
|
"tap": "16.0.1"
|
2011-08-04 20:32:01 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
2022-03-27 15:58:36 +00:00
|
|
|
"test": "tap --no-cov -R terse",
|
|
|
|
"test:ci": "tap --coverage-report=lcovonly -R terse",
|
|
|
|
"test:cov": "tap -R terse",
|
|
|
|
"test:cov:html": "tap --coverage-report=html -R terse",
|
|
|
|
"test:watch": "tap -n -w --no-coverage-report -R terse",
|
|
|
|
"test:integration": "tap --no-cov -R terse 'test-integration/**/*.test.js'",
|
2019-11-16 15:48:00 +00:00
|
|
|
"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
|
|
|
},
|
2022-03-27 17:12:16 +00:00
|
|
|
"pre-commit": [
|
|
|
|
"lint:ci",
|
|
|
|
"test"
|
|
|
|
]
|
2011-08-04 20:32:01 +00:00
|
|
|
}
|