package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. {
  2. "name": "@csstools/postcss-normalize-display-values",
  3. "description": "Use two values display syntax for inner and outer display types.",
  4. "version": "1.0.1",
  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. "types": "dist/index.d.ts",
  17. "exports": {
  18. ".": {
  19. "import": "./dist/index.mjs",
  20. "require": "./dist/index.cjs",
  21. "default": "./dist/index.mjs"
  22. }
  23. },
  24. "files": [
  25. "CHANGELOG.md",
  26. "LICENSE.md",
  27. "README.md",
  28. "dist"
  29. ],
  30. "dependencies": {
  31. "postcss-value-parser": "^4.2.0"
  32. },
  33. "peerDependencies": {
  34. "postcss": "^8.2"
  35. },
  36. "scripts": {
  37. "build": "rollup -c ../../rollup/default.js",
  38. "clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"",
  39. "docs": "node ../../.github/bin/generate-docs/install.mjs",
  40. "lint": "npm run lint:eslint && npm run lint:package-json",
  41. "lint:eslint": "eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern",
  42. "lint:package-json": "node ../../.github/bin/format-package-json.mjs",
  43. "prepublishOnly": "npm run clean && npm run build && npm run test",
  44. "test": "node .tape.mjs && npm run test:exports",
  45. "test:exports": "node ./test/_import.mjs && node ./test/_require.cjs",
  46. "test:rewrite-expects": "REWRITE_EXPECTS=true node .tape.mjs"
  47. },
  48. "repository": {
  49. "type": "git",
  50. "url": "https://github.com/csstools/postcss-plugins.git",
  51. "directory": "plugins/postcss-normalize-display-values"
  52. },
  53. "keywords": [
  54. "block",
  55. "css",
  56. "display",
  57. "flex",
  58. "flow",
  59. "flow-root",
  60. "grid",
  61. "inline",
  62. "inline-block",
  63. "inline-flex",
  64. "inline-grid",
  65. "inline-table",
  66. "list-item",
  67. "postcss-plugin",
  68. "ruby",
  69. "ruby-base",
  70. "ruby-text",
  71. "run-in",
  72. "table",
  73. "table-caption",
  74. "table-cell"
  75. ],
  76. "csstools": {
  77. "exportName": "postcssNormalizeDisplayValues",
  78. "humanReadableName": "PostCSS Normalize Display Values"
  79. },
  80. "volta": {
  81. "extends": "../../package.json"
  82. }
  83. }