package.json 932 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "ansi-html",
  3. "version": "0.0.9",
  4. "description": "An elegant lib that converts the chalked (ANSI) text to HTML.",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "./node_modules/.bin/mocha"
  8. },
  9. "bin": {
  10. "ansi-html": "./bin/ansi-html"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git://github.com/Tjatse/ansi-html.git"
  15. },
  16. "keywords": [
  17. "ansi",
  18. "ansi html",
  19. "chalk html"
  20. ],
  21. "author": {
  22. "name": "Tjatse"
  23. },
  24. "license": "Apache-2.0",
  25. "bugs": {
  26. "url": "https://github.com/Tjatse/ansi-html/issues"
  27. },
  28. "engines": [
  29. "node >= 0.8.0"
  30. ],
  31. "dependencies": {
  32. },
  33. "devDependencies": {
  34. "mocha": "^1.21.4",
  35. "chai": "^1.9.1",
  36. "chalk": "^1.1.3"
  37. },
  38. "readmeFilename": "README.md",
  39. "homepage": "https://github.com/Tjatse/ansi-html",
  40. "standard": {
  41. "ignore": [],
  42. "globals": [
  43. "describe",
  44. "it",
  45. "before",
  46. "after"
  47. ]
  48. }
  49. }