package.json 940 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "postcss-normalize-charset",
  3. "version": "5.0.1",
  4. "description": "Add necessary or remove extra charset with PostCSS",
  5. "keywords": [
  6. "postcss",
  7. "css",
  8. "postcss-plugin",
  9. "charset"
  10. ],
  11. "author": "Bogdan Chadkin <trysound@yandex.ru>",
  12. "files": [
  13. "dist"
  14. ],
  15. "license": "MIT",
  16. "repository": "cssnano/cssnano",
  17. "bugs": {
  18. "url": "https://github.com/cssnano/cssnano/issues"
  19. },
  20. "homepage": "https://github.com/cssnano/cssnano",
  21. "main": "dist/index.js",
  22. "scripts": {
  23. "prebuild": "del-cli dist",
  24. "build": "cross-env BABEL_ENV=publish babel src --config-file ../../babel.config.json --out-dir dist --ignore \"**/__tests__/\"",
  25. "prepublish": "yarn build"
  26. },
  27. "engines": {
  28. "node": "^10 || ^12 || >=14.0"
  29. },
  30. "devDependencies": {
  31. "postcss": "^8.2.15"
  32. },
  33. "peerDependencies": {
  34. "postcss": "^8.2.15"
  35. },
  36. "gitHead": "28c247175032fa03f04911cde56ad82d74d211cc"
  37. }