package.json 698 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "github-markdown-css",
  3. "version": "2.0.11",
  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": "http://sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=0.10.0"
  14. },
  15. "scripts": {
  16. "generate": "github-markdown-css !> github-markdown.css"
  17. },
  18. "files": [
  19. "github-markdown.css"
  20. ],
  21. "keywords": [
  22. "browser",
  23. "github",
  24. "markdown",
  25. "md",
  26. "css",
  27. "style",
  28. "stylesheet"
  29. ],
  30. "devDependencies": {
  31. "generate-github-markdown-css": "^1.0.1"
  32. }
  33. }