Ei kuvausta

package.json 1.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "chalk",
  3. "version": "0.5.1",
  4. "description": "Terminal string styling done right. Created because the `colors` module does some really horrible things.",
  5. "license": "MIT",
  6. "repository": "sindresorhus/chalk",
  7. "maintainers": [
  8. "Sindre Sorhus <sindresorhus@gmail.com> (http://sindresorhus.com)",
  9. "Joshua Appelman <joshua@jbna.nl>"
  10. ],
  11. "engines": {
  12. "node": ">=0.10.0"
  13. },
  14. "scripts": {
  15. "test": "mocha",
  16. "bench": "matcha benchmark.js"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "color",
  23. "colour",
  24. "colors",
  25. "terminal",
  26. "console",
  27. "cli",
  28. "string",
  29. "ansi",
  30. "styles",
  31. "tty",
  32. "formatting",
  33. "rgb",
  34. "256",
  35. "shell",
  36. "xterm",
  37. "log",
  38. "logging",
  39. "command-line",
  40. "text"
  41. ],
  42. "dependencies": {
  43. "ansi-styles": "^1.1.0",
  44. "escape-string-regexp": "^1.0.0",
  45. "has-ansi": "^0.1.0",
  46. "strip-ansi": "^0.3.0",
  47. "supports-color": "^0.2.0"
  48. },
  49. "devDependencies": {
  50. "matcha": "^0.5.0",
  51. "mocha": "*"
  52. }
  53. }