-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.3 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.3 KB
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
50
51
52
53
54
55
56
57
58
59
{
"name": "parallel-queue-partitioner",
"version": "2.0.3",
"description": "Round-Robin parallel task dispatcher that executes the tasks in sequence if related (same partitionId)",
"homepage": "https://github.com/jd78/ParallelQueuePartitioner",
"author": "Gennaro Del Sorbo <gennaro.delsorbo@gmail.com>",
"main": "Partitioner.js",
"scripts": {
"test": "gulp"
},
"keywords": [
"parallel",
"partitioner",
"partition",
"task",
"tasks",
"dispatcher",
"queue",
"redis",
"pub",
"sub"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jd78/ParallelQueuePartitioner.git"
},
"bugs": {
"url": "https://github.com/jd78/ParallelQueuePartitioner/issues"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-mocha": "^2.2.0",
"gulp-sequence": "^0.4.4",
"kue": "^0.9.3",
"mocha": "^2.2.5",
"process": "^0.11.1",
"proxyquire": "^1.6.0",
"should": "^7.0.1",
"sinon": "^1.15.3"
},
"dependencies": {
"mkdirp": "^0.5.1",
"moment": "^2.10.3",
"rwlock": "^5.0.0",
"underscore": "^1.8.3",
"validator": "^3.40.1",
"winston": "^1.0.0"
},
"files": [
"Partitioner.js",
"Application",
"Entities",
"Samples",
"Services",
"LICENSE",
"README.md"
]
}