unique-hash-stream
Version:
Remove duplicates from a stream based on a hashing function
32 lines (31 loc) • 808 B
JSON
{
"name": "unique-hash-stream",
"description": "Remove duplicates from a stream based on a hashing function",
"version": "1.0.0",
"author": "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)",
"license": "MIT",
"repository": "stream-utils/unique-hash-stream",
"dependencies": {
"json-stringify-safe": "5",
"readable-stream": "1"
},
"devDependencies": {
"istanbul": "0",
"mocha": "2",
"stream-to-array": "2"
},
"scripts": {
"test": "mocha --reporter spec",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot"
},
"keywords": [
"dedupe",
"unique",
"stream",
"hash"
],
"files": [
"index.js"
]
}