package.json 1.9 KB

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