package.json 852 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "postcss-minify-font-values",
  3. "version": "4.0.2",
  4. "description": "Minify font declarations with PostCSS",
  5. "main": "dist/index.js",
  6. "files": [
  7. "dist"
  8. ],
  9. "author": "Bogdan Chadkin <trysound@yandex.ru>",
  10. "license": "MIT",
  11. "keywords": [
  12. "css",
  13. "font",
  14. "font-family",
  15. "font-weight",
  16. "optimise",
  17. "postcss-plugin"
  18. ],
  19. "dependencies": {
  20. "postcss": "^7.0.0",
  21. "postcss-value-parser": "^3.0.0"
  22. },
  23. "repository": "cssnano/cssnano",
  24. "bugs": {
  25. "url": "https://github.com/cssnano/cssnano/issues"
  26. },
  27. "homepage": "https://github.com/cssnano/cssnano",
  28. "scripts": {
  29. "prepublish": "cross-env BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/"
  30. },
  31. "devDependencies": {
  32. "babel-cli": "^6.0.0",
  33. "cross-env": "^5.0.0"
  34. },
  35. "engines": {
  36. "node": ">=6.9.0"
  37. }
  38. }