package.json 952 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "through2-filter",
  3. "version": "3.0.0",
  4. "description": "A through2 to create an Array.prototype.filter analog for streams.",
  5. "files": [
  6. "index.js"
  7. ],
  8. "directories": {
  9. "test": "test"
  10. },
  11. "scripts": {
  12. "test": "node test/"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "git@github.com:brycebaril/through2-filter.git"
  17. },
  18. "keywords": [
  19. "streams",
  20. "through",
  21. "through2",
  22. "filter"
  23. ],
  24. "author": "Bryce B. Baril",
  25. "license": "MIT",
  26. "jshintConfig": {
  27. "asi": true,
  28. "globalstrict": true,
  29. "validthis": true,
  30. "eqnull": true,
  31. "node": true,
  32. "loopfunc": true,
  33. "newcap": false,
  34. "eqeqeq": false
  35. },
  36. "bugs": {
  37. "url": "https://github.com/brycebaril/through2-filter/issues"
  38. },
  39. "devDependencies": {
  40. "tape": "^4.0.0",
  41. "stream-spigot": "^3.0.5",
  42. "concat-stream": "^1.4.7"
  43. },
  44. "dependencies": {
  45. "through2": "~2.0.0",
  46. "xtend": "~4.0.0"
  47. }
  48. }