node-ldapjs/package.json

60 lines
1.7 KiB
JSON
Raw Normal View History

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",
2023-08-16 16:46:31 +00:00
"version": "3.0.5",
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-08-16 11:41:36 +00:00
"@ldapjs/asn1": "^2.0.0",
"@ldapjs/attribute": "^1.0.0",
"@ldapjs/change": "^1.0.0",
"@ldapjs/controls": "^2.1.0",
2023-08-16 11:41:36 +00:00
"@ldapjs/dn": "^1.1.0",
"@ldapjs/filter": "^2.1.1",
"@ldapjs/messages": "^1.3.0",
2023-02-22 17:28:36 +00:00
"@ldapjs/protocol": "^1.2.1",
"abstract-logging": "^2.0.1",
2016-10-19 03:25:14 +00:00
"assert-plus": "^1.0.0",
"backoff": "^2.5.0",
"once": "^1.4.0",
2023-02-22 17:28:36 +00:00
"vasync": "^2.2.1",
"verror": "^1.10.1"
2011-08-08 15:14:13 +00:00
},
2011-08-04 20:32:01 +00:00
"devDependencies": {
"@fastify/pre-commit": "^2.0.2",
2023-07-04 12:41:18 +00:00
"eslint": "^8.44.0",
2023-02-22 17:28:36 +00:00
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-node": "^11.1.0",
2023-02-22 17:28:36 +00:00
"eslint-plugin-promise": "6.1.1",
2020-12-13 08:06:45 +00:00
"front-matter": "^4.0.2",
"get-port": "^5.1.1",
2023-02-22 17:28:36 +00:00
"highlight.js": "^11.7.0",
"marked": "^4.2.12",
2023-07-04 12:41:18 +00:00
"tap": "^16.3.7"
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'",
2023-08-03 14:18:50 +00:00
"test:integration:local": "docker-compose up -d --wait && 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"
},
"pre-commit": [
"lint:ci",
"test"
]
2011-08-04 20:32:01 +00:00
}