package.json 626 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "gulp-rtlcss",
  3. "version": "1.2.0",
  4. "description": "Gulp plugin that uses RTLCSS to convert LTR CSS to RTL.",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "mocha"
  8. },
  9. "author": {
  10. "name": "James Harrison",
  11. "email": "james@jjlharrison.me.uk"
  12. },
  13. "license": "MIT",
  14. "repository": "jjlharrison/gulp-rtlcss",
  15. "keywords": [
  16. "convert",
  17. "css",
  18. "gulpplugin",
  19. "rtl"
  20. ],
  21. "dependencies": {
  22. "plugin-error": "^0.1.2",
  23. "rtlcss": "^2.2.1",
  24. "through2": "^2.0.3",
  25. "vinyl-sourcemaps-apply": "^0.2.1"
  26. },
  27. "devDependencies": {
  28. "mocha": "*",
  29. "vinyl": "^2.1.0"
  30. }
  31. }