package.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "postcss-double-position-gradients",
  3. "description": "Use double-position gradients in CSS",
  4. "version": "3.1.2",
  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. "@csstools/postcss-progressive-custom-properties": "^1.1.0",
  32. "postcss-value-parser": "^4.2.0"
  33. },
  34. "peerDependencies": {
  35. "postcss": "^8.2"
  36. },
  37. "scripts": {
  38. "build": "rollup -c ../../rollup/default.js",
  39. "clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"",
  40. "docs": "node ../../.github/bin/generate-docs/install.mjs",
  41. "lint": "npm run lint:eslint && npm run lint:package-json",
  42. "lint:eslint": "eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern",
  43. "lint:package-json": "node ../../.github/bin/format-package-json.mjs",
  44. "prepublishOnly": "npm run clean && npm run build && npm run test",
  45. "test": "node .tape.mjs && npm run test:exports",
  46. "test:exports": "node ./test/_import.mjs && node ./test/_require.cjs",
  47. "test:rewrite-expects": "REWRITE_EXPECTS=true node .tape.mjs"
  48. },
  49. "homepage": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-double-position-gradients#readme",
  50. "repository": {
  51. "type": "git",
  52. "url": "https://github.com/csstools/postcss-plugins.git",
  53. "directory": "plugins/postcss-double-position-gradients"
  54. },
  55. "bugs": "https://github.com/csstools/postcss-plugins/issues",
  56. "keywords": [
  57. "color",
  58. "conic",
  59. "css",
  60. "double",
  61. "gradients",
  62. "linear",
  63. "position",
  64. "postcss",
  65. "postcss-plugin",
  66. "radial",
  67. "repeating",
  68. "stop",
  69. "syntax"
  70. ],
  71. "csstools": {
  72. "exportName": "postcssDoublePositionGradients",
  73. "humanReadableName": "PostCSS Double Position Gradients"
  74. },
  75. "volta": {
  76. "extends": "../../package.json"
  77. }
  78. }