package.json 860 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "postcss-url",
  3. "version": "7.3.2",
  4. "description": "PostCSS plugin to rebase or inline on url().",
  5. "keywords": [
  6. "css",
  7. "postcss",
  8. "postcss-plugin",
  9. "url",
  10. "rebase",
  11. "inline",
  12. "base64",
  13. "assets"
  14. ],
  15. "author": "Maxime Thirouin",
  16. "license": "MIT",
  17. "repository": "https://github.com/postcss/postcss-url.git",
  18. "main": "src/index.js",
  19. "files": [
  20. "src"
  21. ],
  22. "dependencies": {
  23. "mime": "^1.4.1",
  24. "minimatch": "^3.0.4",
  25. "mkdirp": "^0.5.0",
  26. "postcss": "^6.0.1",
  27. "xxhashjs": "^0.2.1"
  28. },
  29. "devDependencies": {
  30. "chai": "^3.5.0",
  31. "eslint": "^3.16.1",
  32. "mocha": "^3.2.0",
  33. "npmpub": "^3.0.1",
  34. "postcss-import": "^10.0.0"
  35. },
  36. "scripts": {
  37. "lint": "eslint --fix .",
  38. "tests": "mocha",
  39. "test": "npm run lint && npm run tests",
  40. "release": "npmpub"
  41. }
  42. }