package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "postcss-gap-properties",
  3. "description": "Use the gap, column-gap, and row-gap shorthand properties in CSS",
  4. "version": "3.0.5",
  5. "author": "Jonathan Neal <jonathantneal@hotmail.com>",
  6. "license": "CC0-1.0",
  7. "funding": {
  8. "type": "opencollective",
  9. "url": "https://opencollective.com/csstools"
  10. },
  11. "engines": {
  12. "node": "^12 || ^14 || >=16"
  13. },
  14. "main": "dist/index.cjs",
  15. "module": "dist/index.mjs",
  16. "exports": {
  17. ".": {
  18. "import": "./dist/index.mjs",
  19. "require": "./dist/index.cjs",
  20. "default": "./dist/index.mjs"
  21. }
  22. },
  23. "files": [
  24. "CHANGELOG.md",
  25. "LICENSE.md",
  26. "README.md",
  27. "dist"
  28. ],
  29. "peerDependencies": {
  30. "postcss": "^8.2"
  31. },
  32. "scripts": {
  33. "build": "rollup -c ../../rollup/default.js",
  34. "clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"",
  35. "docs": "node ../../.github/bin/generate-docs/install.mjs",
  36. "lint": "npm run lint:eslint && npm run lint:package-json",
  37. "lint:eslint": "eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern",
  38. "lint:package-json": "node ../../.github/bin/format-package-json.mjs",
  39. "prepublishOnly": "npm run clean && npm run build && npm run test",
  40. "test": "node .tape.mjs && npm run test:exports",
  41. "test:exports": "node ./test/_import.mjs && node ./test/_require.cjs",
  42. "test:rewrite-expects": "REWRITE_EXPECTS=true node .tape.mjs"
  43. },
  44. "homepage": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-gap-properties#readme",
  45. "repository": {
  46. "type": "git",
  47. "url": "https://github.com/csstools/postcss-plugins.git",
  48. "directory": "plugins/postcss-gap-properties"
  49. },
  50. "bugs": "https://github.com/csstools/postcss-plugins/issues",
  51. "keywords": [
  52. "columns",
  53. "css",
  54. "gaps",
  55. "grids",
  56. "layouts",
  57. "postcss",
  58. "postcss-plugin",
  59. "prefixes",
  60. "rows",
  61. "shorthands"
  62. ],
  63. "csstools": {
  64. "exportName": "postcssGapProperties",
  65. "humanReadableName": "PostCSS Gap Properties"
  66. },
  67. "volta": {
  68. "extends": "../../package.json"
  69. }
  70. }