forked from lykmapipo/sails-hook-publisher
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.38 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
{
"name": "sails-hook-publisher",
"version": "0.2.1",
"description": "Kue based job publisher(producer) for sails",
"main": "index.js",
"scripts": {
"dev": "node ./api/app.js",
"pretest": "npm link && npm link sails-hook-publisher",
"test": "grunt test",
"posttest": "rm -rf .tmp"
},
"repository": {
"type": "git",
"url": "https://github.com/lykmapipo/sails-hook-publisher.git"
},
"author": "Lally Elias",
"license": "MIT",
"bugs": {
"url": "hhttps://github.com/lykmapipo/sails-hook-publisher/issues"
},
"homepage": "https://github.com/lykmapipo/sails-hook-publisher",
"contributors": [{
"name": "lykmapipo",
"github": "https://github.com/lykmapipo"
}],
"keywords": [
"sails",
"kue",
"queue",
"publisher",
"pubsub",
"producer",
"job",
"redis",
"createJob"
],
"sails": {
"isHook": true
},
"dependencies": {
"kue": "^0.11.1"
},
"devDependencies": {
"async": "^0.9.0",
"chai": "^1.10.0",
"faker": "^2.1.2",
"mocha": "^2.1.0",
"sails": "^0.11.0",
"sails-disk": "^0.10.7",
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.11.2",
"grunt-mocha-test": "^0.12.7",
"jshint-stylish": "^1.0.2"
}
}