forked from vbuzzano/sails-hook-jobs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 954 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
{
"name": "sails-hook-jobs",
"version": "0.1.5",
"description": "Sails JS hook to add async background jobs, using agenda (https://www.npmjs.com/package/agenda).",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/vbuzzano/sails-hook-jobs.git"
},
"author": "Vincent Buzzano <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vbuzzano/sails-hook-jobs/issues"
},
"homepage": "https://github.com/vbuzzano/sails-hook-jobs",
"sails": {
"isHook": true
},
"dependencies": {
"agenda": "^0.8.1",
"cron": "^1.1.0",
"include-all": "^0.1.6",
"lodash": "^4.13.1"
},
"devDependencies": {
"sails": "~0.12.3"
},
"keywords": [
"sails",
"sailsjs",
"agenda",
"jobs",
"hook",
"coffee",
"schedule",
"background",
"process"
]
}