Aucune description

package.json 901B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "chalk",
  3. "version": "0.4.0",
  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. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "http://sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=0.8.0"
  14. },
  15. "scripts": {
  16. "test": "mocha"
  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. "has-color": "~0.1.0",
  44. "ansi-styles": "~1.0.0",
  45. "strip-ansi": "~0.1.0"
  46. },
  47. "devDependencies": {
  48. "mocha": "~1.x"
  49. }
  50. }