package.json 901 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "postcss-url",
  3. "version": "8.0.0",
  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. "engines": {
  23. "node": ">=6.0.0"
  24. },
  25. "dependencies": {
  26. "mime": "^2.3.1",
  27. "minimatch": "^3.0.4",
  28. "mkdirp": "^0.5.0",
  29. "postcss": "^7.0.2",
  30. "xxhashjs": "^0.2.1"
  31. },
  32. "devDependencies": {
  33. "chai": "^4.1.2",
  34. "eslint": "^5.3.0",
  35. "mocha": "^5.2.0",
  36. "npmpub": "^4.1.0",
  37. "postcss-import": "^12.0.0"
  38. },
  39. "scripts": {
  40. "lint": "eslint --fix .",
  41. "tests": "mocha",
  42. "test": "npm run lint && npm run tests",
  43. "release": "npmpub"
  44. }
  45. }