You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
760 B
32 lines
760 B
{
|
|
"name": "job-manager",
|
|
"version": "0.0.4",
|
|
"description": "A queue manager class which process tasks with given workers, with adjustable concurrency. It can automatically load tasks, pause resume etc",
|
|
"main": "src/JobManager.js",
|
|
"scripts": {
|
|
"test": "mocha -R spec test/*.spec.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/harish2704/node-job-manager"
|
|
},
|
|
"keywords": [
|
|
"job-manager",
|
|
"asynchronous",
|
|
"parallel",
|
|
"queue",
|
|
"async",
|
|
"job",
|
|
"task",
|
|
"concurrency",
|
|
"concurrent"
|
|
],
|
|
"author": {
|
|
"name": "Harish.K",
|
|
"email": "harish2704@gmail.com"
|
|
},
|
|
"license": "BSD-2-Clause",
|
|
"bugs": {
|
|
"url": "https://github.com/harish2704/node-job-manager/issues"
|
|
}
|
|
}
|
|
|