package.json 861 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "gulp-clean",
  3. "version": "0.4.0",
  4. "description": "A gulp plugin for removing files and folders.",
  5. "keywords": [
  6. "gulpplugin",
  7. "clean",
  8. "remove",
  9. "delete"
  10. ],
  11. "homepage": "https://github.com/peter-vilja/gulp-clean",
  12. "bugs": "https://github.com/peter-vilja/gulp-clean/issues",
  13. "author": {
  14. "name": "Peter Vilja",
  15. "url": "https://github.com/peter-vilja"
  16. },
  17. "main": "index.js",
  18. "repository": {
  19. "type": "git",
  20. "url": "git://github.com/peter-vilja/gulp-clean.git"
  21. },
  22. "scripts": {
  23. "test": "mocha test.js"
  24. },
  25. "dependencies": {
  26. "fancy-log": "^1.3.2",
  27. "plugin-error": "^0.1.2",
  28. "rimraf": "^2.6.2",
  29. "through2": "^2.0.3",
  30. "vinyl": "^2.1.0"
  31. },
  32. "devDependencies": {
  33. "mocha": "^1.19.0",
  34. "chai": "^1.9.1"
  35. },
  36. "engines": {
  37. "node": ">=0.9"
  38. },
  39. "license": "MIT"
  40. }