composer.json 665 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "components/highlightjs",
  3. "description": "Highlight.js highlights syntax in code examples on blogs, forums and in fact on any web pages.",
  4. "type": "component",
  5. "license": "BSD-3-Clause",
  6. "authors": [
  7. {
  8. "name": "Ivan Sagalaev",
  9. "email": "maniac@softwaremaniacs.org",
  10. "homepage": "http://softwaremaniacs.org"
  11. }
  12. ],
  13. "extra": {
  14. "component": {
  15. "scripts": [
  16. "highlight.pack.js"
  17. ],
  18. "files": [
  19. "styles/*"
  20. ],
  21. "shim": {
  22. "exports": "hljs"
  23. }
  24. }
  25. }
  26. }