package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. {
  2. "name": "postcss-color-mod-function",
  3. "version": "3.0.3",
  4. "description": "Modify colors using the color-mod() function in CSS",
  5. "author": "Jonathan Neal <jonathantneal@hotmail.com>",
  6. "license": "CC0-1.0",
  7. "repository": "jonathantneal/postcss-color-mod-function",
  8. "homepage": "https://github.com/jonathantneal/postcss-color-mod-function#readme",
  9. "bugs": "https://github.com/jonathantneal/postcss-color-mod-function/issues",
  10. "main": "index.cjs.js",
  11. "module": "index.es.mjs",
  12. "files": [
  13. "index.cjs.js",
  14. "index.cjs.js.map",
  15. "index.es.mjs",
  16. "index.es.mjs.map"
  17. ],
  18. "scripts": {
  19. "prepublishOnly": "npm test",
  20. "pretest": "rollup -c .rollup.js --silent",
  21. "test": "echo 'Running tests...'; npm run test:js && npm run test:tape",
  22. "test:js": "eslint *.js lib/*.js --cache --ignore-path .gitignore --quiet",
  23. "test:tape": "postcss-tape"
  24. },
  25. "engines": {
  26. "node": ">=6.0.0"
  27. },
  28. "dependencies": {
  29. "@csstools/convert-colors": "^1.4.0",
  30. "postcss": "^7.0.2",
  31. "postcss-values-parser": "^2.0.0"
  32. },
  33. "devDependencies": {
  34. "@babel/core": "^7.1.0",
  35. "@babel/plugin-syntax-dynamic-import": "^7.0.0",
  36. "@babel/preset-env": "^7.1.0",
  37. "babel-eslint": "^9.0.0",
  38. "eslint": "^5.6.0",
  39. "eslint-config-dev": "^2.0.0",
  40. "postcss-tape": "^2.2.0",
  41. "pre-commit": "^1.2.2",
  42. "rollup": "^0.66.2",
  43. "rollup-plugin-babel": "^4.0.3"
  44. },
  45. "eslintConfig": {
  46. "extends": "dev",
  47. "parser": "babel-eslint",
  48. "rules": {
  49. "max-params": [
  50. 2,
  51. 5
  52. ]
  53. }
  54. },
  55. "keywords": [
  56. "postcss",
  57. "css",
  58. "postcss-plugin",
  59. "colors",
  60. "colours",
  61. "modifications",
  62. "mods",
  63. "adjusters",
  64. "adjustments",
  65. "csswg",
  66. "rgba",
  67. "hsla",
  68. "white",
  69. "black",
  70. "red",
  71. "green",
  72. "blue",
  73. "alpha",
  74. "hue",
  75. "saturation",
  76. "lightness",
  77. "whiteness",
  78. "blackness",
  79. "tint",
  80. "shade",
  81. "blenda",
  82. "contrast"
  83. ]
  84. }