package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "originalAuthor": "Mark Cavage <mcavage@gmail.com>",
  3. "name": "ldapjs",
  4. "homepage": "http://ldapjs.org",
  5. "description": "LDAP client and server APIs",
  6. "version": "3.0.7",
  7. "license": "MIT",
  8. "repository": {
  9. "type": "git",
  10. "url": "git://github.com/ldapjs/node-ldapjs.git"
  11. },
  12. "main": "lib/index.js",
  13. "dependencies": {
  14. "@ldapjs/asn1": "^2.0.0",
  15. "@ldapjs/attribute": "^1.0.0",
  16. "@ldapjs/change": "^1.0.0",
  17. "@ldapjs/controls": "^2.1.0",
  18. "@ldapjs/dn": "^1.1.0",
  19. "@ldapjs/filter": "^2.1.1",
  20. "@ldapjs/messages": "^1.3.0",
  21. "@ldapjs/protocol": "^1.2.1",
  22. "abstract-logging": "^2.0.1",
  23. "assert-plus": "^1.0.0",
  24. "backoff": "^2.5.0",
  25. "once": "^1.4.0",
  26. "vasync": "^2.2.1",
  27. "verror": "^1.10.1"
  28. },
  29. "devDependencies": {
  30. "@fastify/pre-commit": "^2.0.2",
  31. "eslint": "^8.44.0",
  32. "eslint-config-standard": "^17.0.0",
  33. "eslint-plugin-import": "^2.27.5",
  34. "eslint-plugin-n": "^16.0.0",
  35. "eslint-plugin-node": "^11.1.0",
  36. "eslint-plugin-promise": "6.1.1",
  37. "front-matter": "^4.0.2",
  38. "get-port": "^5.1.1",
  39. "highlight.js": "^11.7.0",
  40. "marked": "^4.2.12",
  41. "tap": "^16.3.7"
  42. },
  43. "scripts": {
  44. "test": "tap --no-cov -R terse",
  45. "test:ci": "tap --coverage-report=lcovonly -R terse",
  46. "test:cov": "tap -R terse",
  47. "test:cov:html": "tap --coverage-report=html -R terse",
  48. "test:watch": "tap -n -w --no-coverage-report -R terse",
  49. "test:integration": "tap --no-cov -R terse 'test-integration/**/*.test.js'",
  50. "test:integration:local": "docker-compose up -d --wait && npm run test:integration ; docker-compose down",
  51. "lint": "eslint . --fix",
  52. "lint:ci": "eslint .",
  53. "docs": "node scripts/build-docs.js"
  54. },
  55. "pre-commit": [
  56. "lint:ci",
  57. "test"
  58. ]
  59. }