forked from goodeggs/stream-worker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 914 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 914 Bytes
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
{
"name": "stream-worker",
"version": "2.0.1",
"description": "Execute an async function per stream data event, pausing the stream when a concurrency limit is saturated",
"main": "stream-worker.js",
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "https://github.com/goodeggs/stream-worker.git"
},
"keywords": [
"stream",
"worker",
"async",
"queue"
],
"author": "Good Eggs <eng@goodeggs.com> (http://bites.goodeggs.com)",
"license": "BSD",
"devDependencies": {
"expect.js": "~0.2.0",
"grunt": "^0.4.0",
"grunt-contrib-jshint": "~0.6.3",
"grunt-simple-mocha": "~0.4.0",
"matchdep": "~0.1.2",
"sinon": "~1.7.3",
"sinon-expect": "~0.2.0"
},
"engines": {
"node": "~0.10.0"
},
"dependencies": {
"bluebird": "^3.1.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}