package.json 604 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "color-string",
  3. "description": "Parser and generator for CSS color strings",
  4. "version": "0.3.0",
  5. "author": "Heather Arthur <fayearthur@gmail.com>",
  6. "contributors": [
  7. "Maxime Thirouin",
  8. "Dyma Ywanov <dfcreative@gmail.com>"
  9. ],
  10. "repository": {
  11. "type": "git",
  12. "url": "http://github.com/harthur/color-string.git"
  13. },
  14. "scripts": {
  15. "test": "node test/basic.js"
  16. },
  17. "license": "MIT",
  18. "main": "./color-string",
  19. "dependencies": {
  20. "color-name": "^1.0.0"
  21. },
  22. "devDependencies": {
  23. },
  24. "keywords": [
  25. "color",
  26. "colour",
  27. "rgb",
  28. "css"
  29. ]
  30. }