-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
40 lines (40 loc) · 917 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
{
"name": "stream-worker",
"version": "2.0.2",
"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 <[email protected]>",
"license": "MIT",
"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",
"mocha": "~2.5.3",
"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/"
}
}