package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "originalAuthor": "Patrick Mooney",
  3. "originalContributors": [
  4. "Mark Cavage <mcavage@gmail.com>",
  5. "Cody Peter Mello <cody.mello@joyent.com>"
  6. ],
  7. "name": "@ldapjs/dn",
  8. "homepage": "https://github.com/ldapjs/dn",
  9. "description": "API for handling LDAP distinguished name strings",
  10. "version": "1.1.0",
  11. "license": "MIT",
  12. "repository": {
  13. "type": "git",
  14. "url": "git@github.com:ldapjs/dn.git"
  15. },
  16. "main": "index.js",
  17. "dependencies": {
  18. "@ldapjs/asn1": "2.0.0",
  19. "process-warning": "^2.1.0"
  20. },
  21. "devDependencies": {
  22. "@fastify/pre-commit": "^2.0.2",
  23. "eslint": "^8.34.0",
  24. "eslint-config-standard": "^17.0.0",
  25. "eslint-plugin-import": "^2.27.5",
  26. "eslint-plugin-n": "^15.6.1",
  27. "eslint-plugin-node": "^11.1.0",
  28. "eslint-plugin-promise": "^6.1.1",
  29. "tap": "^16.3.4"
  30. },
  31. "scripts": {
  32. "lint": "eslint .",
  33. "lint:ci": "eslint .",
  34. "test": "tap --no-coverage-report",
  35. "test:cov": "tap",
  36. "test:cov:html": "tap --coverage-report=html",
  37. "test:watch": "tap -w --no-coverage-report"
  38. },
  39. "precommit": [
  40. "lint",
  41. "test"
  42. ]
  43. }