package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "chalk",
  3. "version": "2.4.2",
  4. "description": "Terminal string styling done right",
  5. "license": "MIT",
  6. "repository": "chalk/chalk",
  7. "engines": {
  8. "node": ">=4"
  9. },
  10. "scripts": {
  11. "test": "xo && tsc --project types && flow --max-warnings=0 && nyc ava",
  12. "bench": "matcha benchmark.js",
  13. "coveralls": "nyc report --reporter=text-lcov | coveralls"
  14. },
  15. "files": [
  16. "index.js",
  17. "templates.js",
  18. "types/index.d.ts",
  19. "index.js.flow"
  20. ],
  21. "keywords": [
  22. "color",
  23. "colour",
  24. "colors",
  25. "terminal",
  26. "console",
  27. "cli",
  28. "string",
  29. "str",
  30. "ansi",
  31. "style",
  32. "styles",
  33. "tty",
  34. "formatting",
  35. "rgb",
  36. "256",
  37. "shell",
  38. "xterm",
  39. "log",
  40. "logging",
  41. "command-line",
  42. "text"
  43. ],
  44. "dependencies": {
  45. "ansi-styles": "^3.2.1",
  46. "escape-string-regexp": "^1.0.5",
  47. "supports-color": "^5.3.0"
  48. },
  49. "devDependencies": {
  50. "ava": "*",
  51. "coveralls": "^3.0.0",
  52. "execa": "^0.9.0",
  53. "flow-bin": "^0.68.0",
  54. "import-fresh": "^2.0.0",
  55. "matcha": "^0.7.0",
  56. "nyc": "^11.0.2",
  57. "resolve-from": "^4.0.0",
  58. "typescript": "^2.5.3",
  59. "xo": "*"
  60. },
  61. "types": "types/index.d.ts",
  62. "xo": {
  63. "envs": [
  64. "node",
  65. "mocha"
  66. ],
  67. "ignores": [
  68. "test/_flow.js"
  69. ]
  70. }
  71. }