package.json 703 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "rgba-regex",
  3. "description": "Regex for matching RGBA color strings.",
  4. "author": "John Otander",
  5. "version": "1.0.0",
  6. "main": "index.js",
  7. "directories": {
  8. "test": "test"
  9. },
  10. "scripts": {
  11. "test": "mocha test"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/johnotander/rgba-regex.git"
  16. },
  17. "keywords": [
  18. "css",
  19. "regex",
  20. "regexp",
  21. "regexps",
  22. "rgba",
  23. "color",
  24. "regular",
  25. "expression"
  26. ],
  27. "license": "MIT",
  28. "bugs": {
  29. "url": "https://github.com/johnotander/rgba-regex/issues"
  30. },
  31. "homepage": "https://github.com/johnotander/rgba-regex",
  32. "dependencies": {},
  33. "devDependencies": {
  34. "mocha": "*"
  35. }
  36. }