package.json 721 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "unique-stream",
  3. "version": "2.4.0",
  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. "LICENSE"
  11. ],
  12. "scripts": {
  13. "test": "mocha",
  14. "coverage": "nyc npm run test"
  15. },
  16. "keywords": [
  17. "unique",
  18. "stream",
  19. "unique-stream",
  20. "streaming",
  21. "streams"
  22. ],
  23. "dependencies": {
  24. "json-stable-stringify-without-jsonify": "^1.0.1",
  25. "through2-filter": "3.0.0"
  26. },
  27. "devDependencies": {
  28. "after": "~0.8.1",
  29. "chai": "^4.2.0",
  30. "mocha": "^5.2.0",
  31. "nyc": "^17.1.0"
  32. }
  33. }