package.json 674 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "css-url-regex",
  3. "version": "1.1.0",
  4. "description": "Regular expression for matching CSS urls.",
  5. "main": "index.js",
  6. "files": [
  7. "index.js"
  8. ],
  9. "scripts": {
  10. "test": "ava"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/johnotander/css-url-regex.git"
  15. },
  16. "keywords": [
  17. "css",
  18. "css-url",
  19. "regex",
  20. "regexp"
  21. ],
  22. "author": "John Otander <johnotander@gmail.com> (http://johnotander.com/)",
  23. "license": "MIT",
  24. "bugs": {
  25. "url": "https://github.com/johnotander/css-url-regex/issues"
  26. },
  27. "homepage": "https://github.com/johnotander/css-url-regex",
  28. "devDependencies": {
  29. "ava": "^0.2.0"
  30. }
  31. }