package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "asciidoctor",
  3. "version": "2.2.8",
  4. "description": "A JavaScript AsciiDoc processor, cross-compiled from the Ruby-based AsciiDoc implementation, Asciidoctor, using Opal",
  5. "main": "index.js",
  6. "types": "types",
  7. "bin": {
  8. "asciidoctor": "bin/asciidoctor",
  9. "asciidoctorjs": "bin/asciidoctor"
  10. },
  11. "scripts": {
  12. "test": "./bin/asciidoctor --version",
  13. "dist": "pkg package.json --out-path dist"
  14. },
  15. "engines": {
  16. "node": ">=8.11",
  17. "npm": ">=5.0.0",
  18. "yarn": ">=1.1.0"
  19. },
  20. "files": [
  21. "bin",
  22. "types/index.d.ts"
  23. ],
  24. "repository": {
  25. "type": "git",
  26. "url": "https://github.com/asciidoctor/asciidoctor.js.git"
  27. },
  28. "publishConfig": {
  29. "access": "public"
  30. },
  31. "keywords": [
  32. "asciidoc",
  33. "asciidoctor",
  34. "opal",
  35. "javascript",
  36. "library"
  37. ],
  38. "authors": [
  39. "Dan Allen (https://github.com/mojavelinux)",
  40. "Guillaume Grossetie (https://github.com/mogztter)",
  41. "Anthonny Quérouil (https://github.com/anthonny)"
  42. ],
  43. "license": "MIT",
  44. "bugs": {
  45. "url": "https://github.com/asciidoctor/asciidoctor.js/issues"
  46. },
  47. "homepage": "https://github.com/asciidoctor/asciidoctor.js",
  48. "dependencies": {
  49. "@asciidoctor/cli": "3.5.0",
  50. "@asciidoctor/core": "2.2.8"
  51. },
  52. "devDependencies": {
  53. "pkg": "5.2.1"
  54. }
  55. }