package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "@ldapjs/messages",
  3. "homepage": "https://github.com/ldapjs/messages",
  4. "description": "API for creating and parsing LDAP messages",
  5. "version": "1.3.0",
  6. "license": "MIT",
  7. "repository": {
  8. "type": "git",
  9. "url": "git@github.com:ldapjs/messages.git"
  10. },
  11. "main": "index.js",
  12. "dependencies": {
  13. "@ldapjs/asn1": "^2.0.0",
  14. "@ldapjs/attribute": "^1.0.0",
  15. "@ldapjs/change": "^1.0.0",
  16. "@ldapjs/controls": "^2.1.0",
  17. "@ldapjs/dn": "^1.1.0",
  18. "@ldapjs/filter": "^2.1.1",
  19. "@ldapjs/protocol": "^1.2.1",
  20. "process-warning": "^2.2.0"
  21. },
  22. "devDependencies": {
  23. "@fastify/pre-commit": "^2.0.2",
  24. "eslint": "^8.47.0",
  25. "eslint-config-standard": "^17.0.0",
  26. "eslint-plugin-import": "^2.28.0",
  27. "eslint-plugin-n": "^16.0.1",
  28. "eslint-plugin-node": "^11.1.0",
  29. "eslint-plugin-promise": "^6.1.1",
  30. "tap": "^16.3.8"
  31. },
  32. "scripts": {
  33. "lint": "eslint .",
  34. "lint:ci": "eslint .",
  35. "test": "tap --no-coverage-report",
  36. "test:cov": "tap",
  37. "test:cov:html": "tap --coverage-report=html",
  38. "test:watch": "tap -w --no-coverage-report"
  39. },
  40. "precommit": [
  41. "lint",
  42. "test"
  43. ]
  44. }