package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "@csstools/postcss-unset-value",
  3. "description": "Use the unset keyword in CSS.",
  4. "version": "1.0.2",
  5. "contributors": [
  6. {
  7. "name": "Antonio Laguna",
  8. "email": "antonio@laguna.es",
  9. "url": "https://antonio.laguna.es"
  10. },
  11. {
  12. "name": "Romain Menke",
  13. "email": "romainmenke@gmail.com"
  14. }
  15. ],
  16. "license": "CC0-1.0",
  17. "funding": {
  18. "type": "opencollective",
  19. "url": "https://opencollective.com/csstools"
  20. },
  21. "engines": {
  22. "node": "^12 || ^14 || >=16"
  23. },
  24. "main": "dist/index.cjs",
  25. "module": "dist/index.mjs",
  26. "types": "dist/index.d.ts",
  27. "exports": {
  28. ".": {
  29. "import": "./dist/index.mjs",
  30. "require": "./dist/index.cjs",
  31. "default": "./dist/index.mjs"
  32. }
  33. },
  34. "files": [
  35. "CHANGELOG.md",
  36. "LICENSE.md",
  37. "README.md",
  38. "dist"
  39. ],
  40. "peerDependencies": {
  41. "postcss": "^8.2"
  42. },
  43. "scripts": {
  44. "build": "rollup -c ../../rollup/default.js",
  45. "clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"",
  46. "docs": "node ../../.github/bin/generate-docs/install.mjs",
  47. "lint": "npm run lint:eslint && npm run lint:package-json",
  48. "lint:eslint": "eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern",
  49. "lint:package-json": "node ../../.github/bin/format-package-json.mjs",
  50. "prepublishOnly": "npm run clean && npm run build && npm run test",
  51. "test": "node .tape.mjs && npm run test:exports",
  52. "test:exports": "node ./test/_import.mjs && node ./test/_require.cjs",
  53. "test:rewrite-expects": "REWRITE_EXPECTS=true node .tape.mjs"
  54. },
  55. "homepage": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-unset-value#readme",
  56. "repository": {
  57. "type": "git",
  58. "url": "https://github.com/csstools/postcss-plugins.git",
  59. "directory": "plugins/postcss-unset-value"
  60. },
  61. "bugs": "https://github.com/csstools/postcss-plugins/issues",
  62. "keywords": [
  63. "inherit",
  64. "initial",
  65. "postcss-plugin",
  66. "unset"
  67. ],
  68. "csstools": {
  69. "exportName": "postcssUnsetValue",
  70. "humanReadableName": "PostCSS Unset Value"
  71. },
  72. "volta": {
  73. "extends": "../../package.json"
  74. }
  75. }