package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "postcss-color-gray",
  3. "version": "5.0.0",
  4. "description": "Use the gray() color function in CSS",
  5. "author": "Shinnosuke Watanabe (https://github.com/shinnn)",
  6. "license": "ISC",
  7. "repository": "postcss/postcss-color-gray",
  8. "homepage": "https://github.com/postcss/postcss-color-gray#readme",
  9. "bugs": "https://github.com/postcss/postcss-color-gray/issues",
  10. "main": "index.cjs.js",
  11. "module": "index.es.js",
  12. "files": [
  13. "index.cjs.js",
  14. "index.es.js"
  15. ],
  16. "scripts": {
  17. "prepublishOnly": "npm test",
  18. "pretest": "rollup -c .rollup.js --silent",
  19. "test": "echo 'Running tests...'; npm run test:js && npm run test:tape",
  20. "test:ec": "echint --ignore index.*.js test",
  21. "test:js": "eslint *.js --cache --ignore-path .gitignore --quiet",
  22. "test:tape": "postcss-tape"
  23. },
  24. "engines": {
  25. "node": ">=6.0.0"
  26. },
  27. "dependencies": {
  28. "@csstools/convert-colors": "^1.4.0",
  29. "postcss": "^7.0.5",
  30. "postcss-values-parser": "^2.0.0"
  31. },
  32. "devDependencies": {
  33. "@babel/core": "^7.0.0",
  34. "@babel/preset-env": "^7.0.0",
  35. "babel-eslint": "^10.0.1",
  36. "eslint": "^5.6.1",
  37. "eslint-config-dev": "^2.0.0",
  38. "postcss-tape": "^2.2.0",
  39. "pre-commit": "^1.2.2",
  40. "rollup": "^0.66.5",
  41. "rollup-plugin-babel": "^4.0.1"
  42. },
  43. "eslintConfig": {
  44. "extends": "dev",
  45. "parser": "babel-eslint"
  46. },
  47. "keywords": [
  48. "postcss",
  49. "css",
  50. "postcss-plugin",
  51. "gray",
  52. "color",
  53. "lab",
  54. "transform",
  55. "function",
  56. "csswg",
  57. "w3c",
  58. "specification"
  59. ]
  60. }