bower.json 812 B

1234567891011121314151617181920212223242526272829303132
  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. "test/*"
  21. ],
  22. "repository": {
  23. "type": "git",
  24. "url": "https://github.com/showdownjs/showdown.git"
  25. },
  26. "keywords": [
  27. "markdown",
  28. "md",
  29. "mdown"
  30. ],
  31. "license": "https://github.com/showdownjs/showdown/blob/master/license.txt"
  32. }