package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "glob-stream",
  3. "version": "5.3.5",
  4. "description": "A wrapper around node-glob to make it streamy",
  5. "author": "Gulp Team <team@gulpjs.com> (http://gulpjs.com/)",
  6. "contributors": [],
  7. "homepage": "http://gulpjs.com",
  8. "repository": "gulpjs/glob-stream",
  9. "license": "MIT",
  10. "engines": {
  11. "node": ">= 0.10"
  12. },
  13. "main": "index.js",
  14. "files": [
  15. "index.js"
  16. ],
  17. "scripts": {
  18. "lint": "eslint . && jscs . test/",
  19. "pretest": "npm run lint",
  20. "test": "mocha",
  21. "coveralls": "istanbul cover _mocha --report lcovonly && istanbul-coveralls"
  22. },
  23. "dependencies": {
  24. "extend": "^3.0.0",
  25. "glob": "^5.0.3",
  26. "glob-parent": "^3.0.0",
  27. "micromatch": "^2.3.7",
  28. "ordered-read-streams": "^0.3.0",
  29. "through2": "^0.6.0",
  30. "to-absolute-glob": "^0.1.1",
  31. "unique-stream": "^2.0.2"
  32. },
  33. "devDependencies": {
  34. "coveralls": "^2.11.2",
  35. "eslint": "^1.7.3",
  36. "eslint-config-gulp": "^2.0.0",
  37. "istanbul": "^0.3.0",
  38. "istanbul-coveralls": "^1.0.1",
  39. "jscs": "^2.3.5",
  40. "jscs-preset-gulp": "^1.0.0",
  41. "mocha": "^2.0.0",
  42. "mocha-lcov-reporter": "^0.0.2",
  43. "rimraf": "^2.2.5",
  44. "should": "^7.1.0",
  45. "stream-sink": "^1.2.0"
  46. },
  47. "keywords": [
  48. "glob",
  49. "stream"
  50. ]
  51. }