package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "picocolors",
  3. "version": "1.1.0",
  4. "main": "./picocolors.js",
  5. "types": "./picocolors.d.ts",
  6. "browser": {
  7. "./picocolors.js": "./picocolors.browser.js"
  8. },
  9. "sideEffects": false,
  10. "description": "The tiniest and the fastest library for terminal output formatting with ANSI colors",
  11. "scripts": {
  12. "test": "node tests/test.js"
  13. },
  14. "files": [
  15. "picocolors.*",
  16. "types.ts"
  17. ],
  18. "keywords": [
  19. "terminal",
  20. "colors",
  21. "formatting",
  22. "cli",
  23. "console"
  24. ],
  25. "author": "Alexey Raspopov",
  26. "repository": "alexeyraspopov/picocolors",
  27. "license": "ISC",
  28. "devDependencies": {
  29. "ansi-colors": "^4.1.1",
  30. "benchmark": "^2.1.4",
  31. "chalk": "^4.1.2",
  32. "clean-publish": "^3.0.3",
  33. "cli-color": "^2.0.0",
  34. "colorette": "^2.0.12",
  35. "kleur": "^4.1.4",
  36. "nanocolors": "^0.2.12",
  37. "prettier": "^2.4.1"
  38. },
  39. "prettier": {
  40. "printWidth": 100,
  41. "useTabs": true,
  42. "tabWidth": 2,
  43. "semi": false,
  44. "arrowParens": "avoid"
  45. },
  46. "clean-publish": {
  47. "cleanDocs": true
  48. }
  49. }