package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "originalAuthor": "Joyent (joyent.com)",
  3. "contributors": [
  4. "Mark Cavage <mcavage@gmail.com>",
  5. "David Gwynne <loki@animata.net>",
  6. "Yunong Xiao <yunong@joyent.com>",
  7. "Alex Wilson <alex.wilson@joyent.com>"
  8. ],
  9. "name": "@ldapjs/asn1",
  10. "description": "Contains parsers and serializers for ASN.1 (currently BER only)",
  11. "version": "2.0.0",
  12. "repository": {
  13. "type": "git",
  14. "url": "git://github.com/ldapjs/asn1.git"
  15. },
  16. "main": "index.js",
  17. "devDependencies": {
  18. "@fastify/pre-commit": "^2.0.2",
  19. "eslint": "^8.34.0",
  20. "eslint-config-standard": "^17.0.0",
  21. "eslint-plugin-import": "^2.27.5",
  22. "eslint-plugin-n": "^15.6.1",
  23. "eslint-plugin-node": "^11.1.0",
  24. "eslint-plugin-promise": "^6.1.1",
  25. "tap": "^16.3.4"
  26. },
  27. "scripts": {
  28. "lint": "eslint .",
  29. "lint:ci": "eslint .",
  30. "test": "tap --no-coverage-report",
  31. "test:cov": "tap",
  32. "test:cov:html": "tap --coverage-report=html",
  33. "test:watch": "tap -w --no-coverage-report"
  34. },
  35. "license": "MIT",
  36. "pre-commit": [
  37. "lint",
  38. "test"
  39. ]
  40. }