package.json 885 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "postcss",
  3. "version": "7.0.16",
  4. "description": "Tool for transforming styles with JS plugins",
  5. "engines": {
  6. "node": ">=6.0.0"
  7. },
  8. "keywords": ["css", "postcss", "rework", "preprocessor", "parser", "source map", "transform", "manipulation", "transpiler"],
  9. "author": "Andrey Sitnik <andrey@sitnik.ru>",
  10. "license": "MIT",
  11. "homepage": "https://postcss.org/",
  12. "repository": "postcss/postcss",
  13. "dependencies": {
  14. "chalk": "^2.4.2",
  15. "source-map": "^0.6.1",
  16. "supports-color": "^6.1.0"
  17. },
  18. "main": "lib/postcss",
  19. "types": "lib/postcss.d.ts",
  20. "husky": {
  21. "hooks": {
  22. "pre-commit": "lint-staged"
  23. }
  24. },
  25. "browser": {
  26. "./lib/terminal-highlight": false,
  27. "supports-color": false,
  28. "chalk": false,
  29. "fs": false
  30. },
  31. "browserslist": ["last 2 version", "not dead", "not Explorer 11", "not ExplorerMobile 11", "node 6"]
  32. }