-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
49 lines (49 loc) · 1008 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
{
"name": "straw",
"description": "Realtime processing framework",
"version": "0.4.1",
"homepage": "https://github.com/simonswain/straw",
"author": {
"name": "Simon Swain",
"email": "simon@simonswain.com"
},
"repository": {
"type": "git",
"url": "git://github.com/simonswain/straw.git"
},
"bugs": {
"url": "https://github.com/simonswain/straw/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/simonswain/straw/blob/master/LICENSE-MIT"
}
],
"main": "lib/straw",
"engines": {
"node": ">= 5.11.0"
},
"scripts": {
"test": "grunt test"
},
"dependencies": {
"async": "^2.0.1",
"lodash": "^4.13.1",
"redis": "^2.6.2",
"winston": "^2.2.0"
},
"devDependencies": {
"grunt": "^1.0.1",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-nodeunit": "^1.0.0",
"nodeunit": "^0.9.1"
},
"keywords": [
"stream",
"realtime",
"parallel",
"dataflow",
"reactive"
]
}