package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "postcss-image-set-function",
  3. "version": "4.0.4",
  4. "description": "Display resolution-dependent images using the image-set() function in CSS",
  5. "author": "Jonathan Neal <jonathantneal@hotmail.com>",
  6. "license": "CC0-1.0",
  7. "homepage": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-image-set-function#readme",
  8. "bugs": "https://github.com/csstools/postcss-plugins/issues",
  9. "main": "dist/index.cjs",
  10. "module": "dist/index.mjs",
  11. "types": "dist/index.d.ts",
  12. "files": [
  13. "CHANGELOG.md",
  14. "LICENSE.md",
  15. "README.md",
  16. "dist"
  17. ],
  18. "scripts": {
  19. "build": "rollup -c ../../rollup/default.js",
  20. "clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"",
  21. "lint": "eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern",
  22. "prepublishOnly": "npm run clean && npm run build && npm run test",
  23. "stryker": "stryker run --logLevel error",
  24. "test": "postcss-tape --ci && npm run test:exports",
  25. "test:exports": "node ./test/_import.mjs && node ./test/_require.cjs"
  26. },
  27. "engines": {
  28. "node": "^12 || ^14 || >=16"
  29. },
  30. "dependencies": {
  31. "postcss-value-parser": "^4.2.0"
  32. },
  33. "devDependencies": {
  34. "postcss": "^8.3.6",
  35. "postcss-tape": "^6.0.1"
  36. },
  37. "peerDependencies": {
  38. "postcss": "^8.3"
  39. },
  40. "keywords": [
  41. "postcss",
  42. "css",
  43. "postcss-plugin",
  44. "image-set",
  45. "background",
  46. "image",
  47. "responsive",
  48. "resolution",
  49. "negotiation",
  50. "optimization"
  51. ],
  52. "repository": {
  53. "type": "git",
  54. "url": "https://github.com/csstools/postcss-plugins.git",
  55. "directory": "plugins/postcss-image-set-function"
  56. },
  57. "volta": {
  58. "extends": "../../package.json"
  59. }
  60. }