package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "@ldapjs/controls",
  3. "version": "2.1.0",
  4. "description": "LDAP control objects",
  5. "main": "index.js",
  6. "scripts": {
  7. "lint": "eslint .",
  8. "lint:ci": "eslint .",
  9. "test": "tap --no-coverage-report -R terse",
  10. "test:cov": "tap -R terse",
  11. "test:cov:html": "tap -R terse --coverage-report=html",
  12. "test:watch": "tap -w --no-coverage-report -R terse"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "git+ssh://git@github.com/ldapjs/controls.git"
  17. },
  18. "keywords": [
  19. "ldapjs"
  20. ],
  21. "author": "James Sumners",
  22. "license": "MIT",
  23. "bugs": {
  24. "url": "https://github.com/ldapjs/controls/issues"
  25. },
  26. "homepage": "https://github.com/ldapjs/controls#readme",
  27. "devDependencies": {
  28. "@fastify/pre-commit": "^2.0.2",
  29. "eslint": "^8.34.0",
  30. "eslint-config-standard": "^17.0.0",
  31. "eslint-plugin-import": "^2.27.5",
  32. "eslint-plugin-n": "^15.6.1",
  33. "eslint-plugin-node": "^11.1.0",
  34. "eslint-plugin-promise": "^6.1.1",
  35. "tap": "^16.3.4"
  36. },
  37. "dependencies": {
  38. "@ldapjs/asn1": "^1.2.0",
  39. "@ldapjs/protocol": "^1.2.1"
  40. },
  41. "pre-commit": [
  42. "lint",
  43. "test"
  44. ]
  45. }