package.json 896 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "color",
  3. "version": "4.2.3",
  4. "description": "Color conversion and manipulation with CSS string support",
  5. "sideEffects": false,
  6. "keywords": [
  7. "color",
  8. "colour",
  9. "css"
  10. ],
  11. "authors": [
  12. "Josh Junon <josh@junon.me>",
  13. "Heather Arthur <fayearthur@gmail.com>",
  14. "Maxime Thirouin"
  15. ],
  16. "license": "MIT",
  17. "repository": "Qix-/color",
  18. "xo": {
  19. "rules": {
  20. "no-cond-assign": 0,
  21. "new-cap": 0,
  22. "unicorn/prefer-module": 0,
  23. "no-mixed-operators": 0,
  24. "complexity": 0,
  25. "unicorn/numeric-separators-style": 0
  26. }
  27. },
  28. "files": [
  29. "LICENSE",
  30. "index.js"
  31. ],
  32. "scripts": {
  33. "pretest": "xo",
  34. "test": "mocha"
  35. },
  36. "engines": {
  37. "node": ">=12.5.0"
  38. },
  39. "dependencies": {
  40. "color-convert": "^2.0.1",
  41. "color-string": "^1.9.0"
  42. },
  43. "devDependencies": {
  44. "mocha": "9.0.2",
  45. "xo": "0.42.0"
  46. }
  47. }