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