package.json 996 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "chalk",
  3. "version": "3.0.0",
  4. "description": "Terminal string styling done right",
  5. "license": "MIT",
  6. "repository": "chalk/chalk",
  7. "main": "source",
  8. "engines": {
  9. "node": ">=8"
  10. },
  11. "scripts": {
  12. "test": "xo && nyc ava && tsd",
  13. "bench": "matcha benchmark.js"
  14. },
  15. "files": [
  16. "source",
  17. "index.d.ts"
  18. ],
  19. "keywords": [
  20. "color",
  21. "colour",
  22. "colors",
  23. "terminal",
  24. "console",
  25. "cli",
  26. "string",
  27. "str",
  28. "ansi",
  29. "style",
  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": "^4.1.0",
  44. "supports-color": "^7.1.0"
  45. },
  46. "devDependencies": {
  47. "ava": "^2.4.0",
  48. "coveralls": "^3.0.7",
  49. "execa": "^3.2.0",
  50. "import-fresh": "^3.1.0",
  51. "matcha": "^0.7.0",
  52. "nyc": "^14.1.1",
  53. "resolve-from": "^5.0.0",
  54. "tsd": "^0.7.4",
  55. "xo": "^0.25.3"
  56. },
  57. "xo": {
  58. "rules": {
  59. "unicorn/prefer-string-slice": "off",
  60. "unicorn/prefer-includes": "off"
  61. }
  62. }
  63. }