package.json 718 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "github-markdown-css",
  3. "version": "2.6.0",
  4. "description": "The minimal amount of CSS to replicate the GitHub Markdown style",
  5. "license": "MIT",
  6. "repository": "sindresorhus/github-markdown-css",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "main": "github-markdown.css",
  13. "engines": {
  14. "node": ">=0.10.0"
  15. },
  16. "scripts": {
  17. "make": "github-markdown-css > github-markdown.css"
  18. },
  19. "files": [
  20. "github-markdown.css"
  21. ],
  22. "keywords": [
  23. "browser",
  24. "github",
  25. "markdown",
  26. "md",
  27. "css",
  28. "style",
  29. "stylesheet"
  30. ],
  31. "devDependencies": {
  32. "generate-github-markdown-css": "^2.1.0"
  33. }
  34. }