package.json 716 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "unique-stream",
  3. "version": "2.3.1",
  4. "description": "node.js through stream that emits a unique stream of objects based on criteria",
  5. "repository": "eugeneware/unique-stream",
  6. "author": "Eugene Ware <eugene@noblesamurai.com>",
  7. "license": "MIT",
  8. "files": [
  9. "index.js"
  10. ],
  11. "scripts": {
  12. "test": "mocha",
  13. "coverage": "istanbul cover _mocha"
  14. },
  15. "keywords": [
  16. "unique",
  17. "stream",
  18. "unique-stream",
  19. "streaming",
  20. "streams"
  21. ],
  22. "dependencies": {
  23. "json-stable-stringify-without-jsonify": "^1.0.1",
  24. "through2-filter": "^3.0.0"
  25. },
  26. "devDependencies": {
  27. "after": "~0.8.1",
  28. "chai": "^4.2.0",
  29. "istanbul": "^0.4.5",
  30. "mocha": "^5.2.0"
  31. }
  32. }