package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "postcss-overflow-shorthand",
  3. "version": "3.0.2",
  4. "description": "Use the overflow shorthand 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-overflow-shorthand#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. "overflow",
  41. "properties",
  42. "shorthands",
  43. "values"
  44. ],
  45. "repository": {
  46. "type": "git",
  47. "url": "https://github.com/csstools/postcss-plugins.git",
  48. "directory": "plugins/postcss-overflow-shorthand"
  49. },
  50. "volta": {
  51. "extends": "../../package.json"
  52. }
  53. }