package.json 824 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "postcss-normalize-charset",
  3. "version": "4.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. "dependencies": {
  22. "postcss": "^7.0.0"
  23. },
  24. "devDependencies": {
  25. "babel-cli": "^6.0.0",
  26. "cross-env": "^5.0.0",
  27. "postcss-devtools": "^1.0.0"
  28. },
  29. "main": "dist/index.js",
  30. "scripts": {
  31. "prepublish": "cross-env BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/"
  32. },
  33. "engines": {
  34. "node": ">=6.9.0"
  35. }
  36. }