package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "postcss-gap-properties",
  3. "version": "3.0.2",
  4. "description": "Use the gap, column-gap, and row-gap shorthand properties 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-gap-properties#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. "grids",
  41. "layouts",
  42. "columns",
  43. "rows",
  44. "gaps",
  45. "shorthands",
  46. "prefixes"
  47. ],
  48. "repository": {
  49. "type": "git",
  50. "url": "https://github.com/csstools/postcss-plugins.git",
  51. "directory": "plugins/postcss-gap-properties"
  52. },
  53. "volta": {
  54. "extends": "../../package.json"
  55. }
  56. }