package.json 972 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "ansi-html",
  3. "version": "0.0.7",
  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 -R spec -t 5000"
  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. "lodash": "^2.4.2"
  38. },
  39. "readmeFilename": "README.md",
  40. "homepage": "https://github.com/Tjatse/ansi-html",
  41. "standard": {
  42. "ignore": [],
  43. "globals": [
  44. "describe",
  45. "it",
  46. "before",
  47. "after"
  48. ]
  49. }
  50. }