package.json 914 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "postcss-normalize-string",
  3. "version": "4.0.2",
  4. "description": "Normalize wrapping quotes for CSS string literals.",
  5. "main": "dist/index.js",
  6. "files": [
  7. "dist",
  8. "LICENSE-MIT"
  9. ],
  10. "scripts": {
  11. "prepublish": "cross-env BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/"
  12. },
  13. "keywords": [
  14. "css",
  15. "postcss",
  16. "postcss-plugin"
  17. ],
  18. "license": "MIT",
  19. "devDependencies": {
  20. "babel-cli": "^6.0.0",
  21. "cross-env": "^5.0.0"
  22. },
  23. "homepage": "https://github.com/cssnano/cssnano",
  24. "author": {
  25. "name": "Ben Briggs",
  26. "email": "beneb.info@gmail.com",
  27. "url": "http://beneb.info"
  28. },
  29. "repository": "cssnano/cssnano",
  30. "dependencies": {
  31. "has": "^1.0.0",
  32. "postcss": "^7.0.0",
  33. "postcss-value-parser": "^3.0.0"
  34. },
  35. "bugs": {
  36. "url": "https://github.com/cssnano/cssnano/issues"
  37. },
  38. "engines": {
  39. "node": ">=6.9.0"
  40. }
  41. }