package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "postcss-lab-function",
  3. "version": "4.0.3",
  4. "description": "Use lab() and lch() color functions 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-lab-function#readme",
  8. "bugs": "https://github.com/csstools/postcss-plugins/issues",
  9. "main": "dist/index.cjs",
  10. "module": "dist/index.mjs",
  11. "types": "./dist/index.d.ts",
  12. "files": [
  13. "CHANGELOG.md",
  14. "LICENSE.md",
  15. "README.md",
  16. "dist"
  17. ],
  18. "scripts": {
  19. "build": "rollup -c ../../rollup/default.js",
  20. "clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"",
  21. "lint": "eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern",
  22. "prepublishOnly": "npm run clean && npm run build && npm run test",
  23. "stryker": "stryker run --logLevel error",
  24. "test": "node ./test/color/test.mjs && postcss-tape --ci && npm run test:exports",
  25. "test:exports": "node ./test/_import.mjs && node ./test/_require.cjs"
  26. },
  27. "engines": {
  28. "node": "^12 || ^14 || >=16"
  29. },
  30. "dependencies": {
  31. "postcss-value-parser": "^4.2.0"
  32. },
  33. "devDependencies": {
  34. "postcss": "^8.3.6",
  35. "postcss-tape": "^6.0.1"
  36. },
  37. "peerDependencies": {
  38. "postcss": "^8.3"
  39. },
  40. "keywords": [
  41. "postcss",
  42. "css",
  43. "postcss-plugin",
  44. "color",
  45. "colors",
  46. "rgb",
  47. "rgba",
  48. "hsl",
  49. "hsla",
  50. "hwb",
  51. "functional",
  52. "notation",
  53. "design",
  54. "syntax",
  55. "space",
  56. "comma"
  57. ],
  58. "repository": {
  59. "type": "git",
  60. "url": "https://github.com/csstools/postcss-plugins.git",
  61. "directory": "plugins/postcss-lab-function"
  62. },
  63. "volta": {
  64. "extends": "../../package.json"
  65. }
  66. }