bower.json 827 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "showdown",
  3. "description": "A Markdown to HTML converter written in Javascript",
  4. "homepage": "https://github.com/showdownjs/showdown",
  5. "authors": [
  6. "Estevão Santos (https://github.com/tivie)",
  7. "Pascal Deschênes (https://github.com/pdeschen)"
  8. ],
  9. "main": ["dist/showdown.js"],
  10. "ignore": [
  11. ".editorconfig",
  12. ".gitattributes",
  13. ".gitignore",
  14. ".jscs.json",
  15. ".jshintignore",
  16. ".jshintrc",
  17. ".travis.yml",
  18. "Gruntfile.js",
  19. "package.json",
  20. "src/*",
  21. "test/*"
  22. ],
  23. "repository": {
  24. "type": "git",
  25. "url": "https://github.com/showdownjs/showdown.git"
  26. },
  27. "keywords": [
  28. "markdown",
  29. "md",
  30. "mdown"
  31. ],
  32. "license": "https://github.com/showdownjs/showdown/blob/master/license.txt"
  33. }