-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
46 lines (45 loc) · 933 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
{
"name": "through2-concurrent",
"version": "2.0.0",
"description": "Like through2 except runs in parallel with limited concurrency",
"main": "through2-concurrent.js",
"files": [
"through2-concurrent.js"
],
"scripts": {
"test": "mocha tests.js"
},
"engines": {
"node": ">=8"
},
"repository": {
"type": "git",
"url": "https://github.com/almost/through2-concurrent"
},
"keywords": [
"through2",
"streams",
"streams2",
"through",
"transform",
"concurrency",
"parallel"
],
"author": {
"name": "Thomas Parslow",
"email": "tom@almostobsolete.net",
"url": "http://almostobsolete.net/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/almost/through2-concurrent/issues"
},
"devDependencies": {
"expect.js": "^0.3.1",
"mocha": "^5.2.0",
"underscore": "^1.8.2"
},
"dependencies": {
"through2": "^3.0.0"
}
}