package.json 720 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "postcss-normalize-charset",
  3. "version": "1.1.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. "index.js"
  14. ],
  15. "license": "MIT",
  16. "repository": "ben-eb/postcss-charset",
  17. "bugs": {
  18. "url": "https://github.com/ben-eb/postcss-charset/issues"
  19. },
  20. "homepage": "https://github.com/ben-eb/postcss-charset",
  21. "dependencies": {
  22. "postcss": "^5.0.5"
  23. },
  24. "devDependencies": {
  25. "ava": "^0.16.0",
  26. "eslint": "^1.4.1",
  27. "postcss-devtools": "^1.1.1"
  28. },
  29. "scripts": {
  30. "test": "eslint index.js test && ava"
  31. }
  32. }