forked from ysfdev/sails-hook-subscriber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.5 KB
/
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
50
51
52
53
54
55
56
57
58
59
{
"name": "@emxdigital/sails-hook-subscriber",
"version": "1.1.1",
"description": "Kue based job subscriber(consumer and workers pool) for sails",
"main": "index.js",
"scripts": {
"dev": "node ./api/app.js",
"pretest": "npm link && npm link sails-hook-subscriber",
"test": "grunt test",
"posttest": "rm -rf .tmp"
},
"repository": {
"type": "git",
"url": "https://github.com/lykmapipo/sails-hook-subscriber.git"
},
"author": "Lally Elias",
"license": "MIT",
"bugs": {
"url": "hhttps://github.com/lykmapipo/sails-hook-subscriber/issues"
},
"homepage": "https://github.com/lykmapipo/sails-hook-subscriber",
"contributors": [
{
"name": "lykmapipo",
"github": "https://github.com/lykmapipo"
}
],
"keywords": [
"sails",
"kue",
"queue",
"subscriber",
"pubsub",
"consumer",
"workers",
"job",
"redis"
],
"sails": {
"isHook": true
},
"dependencies": {
"include-all": "^0.1.6",
"kue": "^0.11.6",
"lodash": "^3.10.1"
},
"devDependencies": {
"async": "^0.9.0",
"chai": "^1.10.0",
"faker": "^2.1.2",
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.11.2",
"grunt-mocha-test": "^0.12.7",
"jshint-stylish": "^1.0.2",
"mocha": "^2.1.0",
"sails": "^0.11.1",
"sails-disk": "^0.10.7"
}
}