package.json 779 B

12345678910111213141516171819202122
  1. {
  2. "name": "kramed",
  3. "description": "A markdown (kramdown compatible) parser and compiler. Built for speed.",
  4. "author": "Aaron O'Mullan",
  5. "version": "0.5.6",
  6. "main": "./lib/kramed.js",
  7. "bin": "./bin/kramed",
  8. "man": "./man/kramed.1",
  9. "preferGlobal": true,
  10. "repository": "git://github.com/GitbookIO/kramed.git",
  11. "homepage": "https://github.com/GitbookIO/kramed",
  12. "bugs": { "url": "http://github.com/GitbookIO/kramed/issues" },
  13. "license": "MIT",
  14. "keywords": ["markdown", "markup", "html", "kramdown", "kramed", "parser"],
  15. "tags": ["markdown", "markup", "html", "kramdown", "kramed", "parser"],
  16. "devDependencies": {
  17. "markdown": "*",
  18. "showdown": "*",
  19. "robotskirt": "*"
  20. },
  21. "scripts": { "test": "node test", "bench": "node test --bench" }
  22. }