package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "@honkit/asciidoc",
  3. "version": "6.0.2",
  4. "description": "Parse AsciiDoc content for gitbook",
  5. "homepage": "https://github.com/honkit/honkit",
  6. "bugs": {
  7. "url": "https://github.com/honkit/honkit/issues"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/honkit/honkit.git"
  12. },
  13. "license": "Apache-2.0",
  14. "contributors": [
  15. {
  16. "name": "FriendCode Inc.",
  17. "email": "contact@gitbook.com"
  18. },
  19. {
  20. "name": "Aaron O'Mullan",
  21. "email": "aaron@gitbook.com"
  22. },
  23. {
  24. "name": "Samy Pessé",
  25. "email": "samy@gitbook.com"
  26. }
  27. ],
  28. "main": "lib/index.js",
  29. "files": [
  30. "lib",
  31. "!__tests__"
  32. ],
  33. "scripts": {
  34. "build": "tsc -p .",
  35. "test": "jest src",
  36. "prepublish": "npm run --if-present build"
  37. },
  38. "dependencies": {
  39. "@honkit/html": "6.0.2",
  40. "asciidoctor": "^2.2.8",
  41. "lodash": "^4.17.21"
  42. },
  43. "devDependencies": {
  44. "@types/jest": "^29.5.13",
  45. "jest": "^29.7.0",
  46. "ts-jest": "^29.2.5"
  47. },
  48. "publishConfig": {
  49. "access": "public"
  50. },
  51. "authors": "azu <azuciao@gmail.com>",
  52. "gitHead": "9dcd51c588177ee3a684788c633a67b82dea82a5"
  53. }