package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "@ldapjs/protocol",
  3. "version": "1.2.1",
  4. "description": "Provides constants for LDAP ASN.1 tags and values.",
  5. "main": "index.js",
  6. "scripts": {
  7. "lint": "eslint .",
  8. "lint:ci": "eslint .",
  9. "test": "tap --no-cov -R terse",
  10. "test:ci": "tap --coverage-report=lcovonly -R terse",
  11. "test:cov": "tap -R terse",
  12. "test:cov:html": "tap --coverage-report=html -R terse",
  13. "test:watch": "tap -n -w --no-coverage-report -R terse"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "git+ssh://git@github.com/ldapjs/protocol.git"
  18. },
  19. "keywords": [
  20. "ldapjs"
  21. ],
  22. "author": "James Sumners",
  23. "license": "MIT",
  24. "bugs": {
  25. "url": "https://github.com/ldapjs/protocol/issues"
  26. },
  27. "homepage": "https://github.com/ldapjs/protocol#readme",
  28. "devDependencies": {
  29. "@fastify/pre-commit": "^2.0.2",
  30. "eslint": "^8.17.0",
  31. "eslint-config-standard": "^17.0.0",
  32. "eslint-plugin-import": "^2.26.0",
  33. "eslint-plugin-n": "^15.2.1",
  34. "eslint-plugin-promise": "^6.0.0",
  35. "tap": "^16.2.0"
  36. }
  37. }