package.json 726 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "color",
  3. "version": "0.11.4",
  4. "description": "Color conversion and manipulation with CSS string support",
  5. "keywords": [
  6. "color",
  7. "colour",
  8. "css"
  9. ],
  10. "authors": [
  11. "Heather Arthur <fayearthur@gmail.com>",
  12. "Maxime Thirouin",
  13. "Josh Junon"
  14. ],
  15. "license": "MIT",
  16. "repository": "Qix-/color",
  17. "xo": {
  18. "rules": {
  19. "no-cond-assign": 0,
  20. "new-cap": 0
  21. }
  22. },
  23. "files": [
  24. "CHANGELOG.md",
  25. "LICENSE",
  26. "index.js"
  27. ],
  28. "scripts": {
  29. "pretest": "xo",
  30. "test": "mocha"
  31. },
  32. "dependencies": {
  33. "clone": "^1.0.2",
  34. "color-convert": "^1.3.0",
  35. "color-string": "^0.3.0"
  36. },
  37. "devDependencies": {
  38. "mocha": "^2.2.5",
  39. "xo": "^0.12.1"
  40. }
  41. }