package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "yoctocolors-cjs",
  3. "version": "2.1.2",
  4. "description": "CommonJS version - The smallest and fastest command-line coloring package on the internet",
  5. "license": "MIT",
  6. "repository": "sindresorhus/yoctocolors",
  7. "funding": "https://github.com/sponsors/sindresorhus",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "https://sindresorhus.com"
  12. },
  13. "type": "commonjs",
  14. "main": "./index.js",
  15. "types": "./index.d.ts",
  16. "sideEffects": false,
  17. "engines": {
  18. "node": ">=18"
  19. },
  20. "scripts": {
  21. "test": "xo && ava && tsd"
  22. },
  23. "files": [
  24. "index.js",
  25. "index.d.ts",
  26. "base.js",
  27. "base.d.ts"
  28. ],
  29. "keywords": [
  30. "color",
  31. "colour",
  32. "colors",
  33. "terminal",
  34. "console",
  35. "cli",
  36. "string",
  37. "ansi",
  38. "style",
  39. "styles",
  40. "tty",
  41. "formatting",
  42. "shell",
  43. "xterm",
  44. "log",
  45. "logging",
  46. "command-line",
  47. "text"
  48. ],
  49. "devDependencies": {
  50. "@jonahsnider/benchmark": "^5.0.3",
  51. "ansi-colors": "^4.1.3",
  52. "ava": "^6.1.3",
  53. "chalk": "^5.3.0",
  54. "cli-color": "^2.0.4",
  55. "colorette": "^2.0.20",
  56. "kleur": "^4.1.5",
  57. "nanocolors": "^0.2.13",
  58. "picocolors": "^1.0.1",
  59. "tsd": "^0.31.0",
  60. "xo": "^0.58.0"
  61. },
  62. "ava": {
  63. "environmentVariables": {
  64. "FORCE_COLOR": "1"
  65. }
  66. }
  67. }