-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 968 Bytes
/
package.json
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "through2-filter",
"version": "4.0.0",
"description": "A through2 to create an Array.prototype.filter analog for streams.",
"files": [
"index.js"
],
"directories": {
"test": "test"
},
"scripts": {
"test": "node test/"
},
"repository": {
"type": "git",
"url": "[email protected]:brycebaril/through2-filter.git"
},
"keywords": [
"streams",
"through",
"through2",
"filter"
],
"author": "Bryce B. Baril",
"license": "MIT",
"jshintConfig": {
"asi": true,
"globalstrict": true,
"validthis": true,
"eqnull": true,
"node": true,
"loopfunc": true,
"newcap": false,
"eqeqeq": false
},
"bugs": {
"url": "https://github.com/brycebaril/through2-filter/issues"
},
"engines": {
"node": ">= 6"
},
"devDependencies": {
"concat-stream": "^2.0.0",
"stream-spigot": "^3.0.5",
"tape": "^4.0.0"
},
"dependencies": {
"through2": "^4.0.2"
}
}