package.json 630 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "hsl-regex",
  3. "description": "Regex for matching HSL colors.",
  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/regexps/hsl-regex.git"
  16. },
  17. "keywords": [
  18. "hsl",
  19. "regex",
  20. "regexp",
  21. "color",
  22. "css"
  23. ],
  24. "license": "MIT",
  25. "bugs": {
  26. "url": "https://github.com/regexps/hsl-regex/issues"
  27. },
  28. "homepage": "https://github.com/regexps/hsl-regex",
  29. "dependencies": {},
  30. "devDependencies": {
  31. "mocha": "*"
  32. }
  33. }