-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 998 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
{
"name": "tasks-runner",
"description": "Scheduler and runner for nodejs scripts",
"version": "1.4.0",
"main": "index.js",
"keywords": [
"task",
"tasks",
"runner",
"scheduler",
"worker",
"queue",
"scripts",
"tasks-runner",
"tasks-scheduler",
"task-runner",
"task-scheduler",
"script-runner"
],
"author": {
"name": "Vitali Ausianik",
"email": "vitali.ausianik@gmail.com"
},
"license": "MIT",
"homepage": "https://github.com/vitali-ausianik/tasks-runner",
"repository": {
"type": "git",
"url": "https://github.com/vitali-ausianik/tasks-runner.git"
},
"bugs": {
"url": "https://github.com/vitali-ausianik/tasks-runner/issues"
},
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha --recursive"
},
"dependencies": {
"co": "~4.6.0",
"mongodb": "~2.1.18",
"uuid": "~2.0.2"
},
"devDependencies": {
"co-mocha": "~1.1.2",
"mocha": "~2.4.5",
"sinon": "~1.17.4"
}
}