package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "postcss-logical",
  3. "version": "5.0.3",
  4. "description": "Use logical properties and values 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-logical#readme",
  8. "bugs": "https://github.com/csstools/postcss-plugins/issues",
  9. "main": "dist/index.cjs",
  10. "module": "dist/index.mjs",
  11. "files": [
  12. "CHANGELOG.md",
  13. "LICENSE.md",
  14. "README.md",
  15. "dist"
  16. ],
  17. "scripts": {
  18. "build": "rollup -c ../../rollup/default.js",
  19. "clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"",
  20. "lint": "eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern",
  21. "prepublishOnly": "npm run clean && npm run build && npm run test",
  22. "stryker": "stryker run --logLevel error",
  23. "test": "postcss-tape --ci && npm run test:exports",
  24. "test:exports": "node ./test/_import.mjs && node ./test/_require.cjs"
  25. },
  26. "engines": {
  27. "node": "^12 || ^14 || >=16"
  28. },
  29. "devDependencies": {
  30. "postcss": "^8.3.6",
  31. "postcss-tape": "^6.0.1"
  32. },
  33. "peerDependencies": {
  34. "postcss": "^8.3"
  35. },
  36. "keywords": [
  37. "postcss",
  38. "css",
  39. "postcss-plugin",
  40. "logical",
  41. "flow",
  42. "relative",
  43. "property",
  44. "properties",
  45. "values",
  46. "ltr",
  47. "rtl",
  48. "dir",
  49. "directions",
  50. "directional",
  51. "inline",
  52. "block",
  53. "start",
  54. "end",
  55. "align",
  56. "border",
  57. "clear",
  58. "float",
  59. "margin",
  60. "padding",
  61. "size",
  62. "text"
  63. ],
  64. "repository": {
  65. "type": "git",
  66. "url": "https://github.com/csstools/postcss-plugins.git",
  67. "directory": "plugins/postcss-logical"
  68. },
  69. "volta": {
  70. "extends": "../../package.json"
  71. }
  72. }