package.json 896 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "postcss-merge-longhand",
  3. "version": "2.0.2",
  4. "description": "Merge longhand properties into shorthand with PostCSS.",
  5. "main": "dist/index.js",
  6. "files": [
  7. "LICENSE-MIT",
  8. "dist"
  9. ],
  10. "scripts": {
  11. "prepublish": "babel src --out-dir dist --ignore /__tests__/",
  12. "test": "babel-tape-runner \"src/**/__tests__/*.js\" | tap-spec"
  13. },
  14. "keywords": [
  15. "css",
  16. "minify",
  17. "optimise",
  18. "postcss",
  19. "postcss-plugin"
  20. ],
  21. "license": "MIT",
  22. "devDependencies": {
  23. "babel": "^5.8.23",
  24. "babel-tape-runner": "^1.2.0",
  25. "tap-spec": "^4.1.0",
  26. "tape": "^4.2.0"
  27. },
  28. "homepage": "https://github.com/ben-eb/postcss-merge-longhand",
  29. "author": {
  30. "name": "Ben Briggs",
  31. "email": "beneb.info@gmail.com",
  32. "url": "http://beneb.info"
  33. },
  34. "repository": "ben-eb/postcss-merge-longhand",
  35. "dependencies": {
  36. "postcss": "^5.0.4"
  37. }
  38. }