-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 938 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
{
"name": "through2-map",
"version": "4.0.0",
"description": "A through2 to create an Array.prototype.map analog for streams.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "node test/"
},
"repository": {
"type": "git",
"url": "[email protected]:brycebaril/through2-map.git"
},
"keywords": [
"streams",
"through",
"through2",
"map"
],
"author": "Bryce B. Baril",
"license": "MIT",
"bugs": {
"url": "https://github.com/brycebaril/through2-map/issues"
},
"engines": {
"node": ">= 6"
},
"jshintConfig": {
"asi": true,
"globalstrict": true,
"validthis": true,
"eqnull": true,
"node": true,
"loopfunc": true,
"newcap": false,
"eqeqeq": false
},
"devDependencies": {
"tape": "~4.0.0",
"stream-spigot": "~3.0.5",
"terminus": "~1.0.12"
},
"dependencies": {
"through2": "^4.0.2"
}
}