This repository was archived by the owner on Sep 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.45 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.45 KB
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": "kued",
"version": "1.3.1",
"description": "Extensions for the Kue library (Daemonization, Checkpointing, etc.)",
"main": "index.js",
"dependencies": {
"async": "^2.0.0-rc.5",
"boom": "^3.2.1",
"cron": "^1.1.0",
"ioredis": "^2.2.0",
"iron_mq": "^0.9.2",
"joi": "^8.4.0",
"kue": "^0.11.0",
"lodash": "^4.13.1",
"minimist": "^1.2.0",
"moment": "^2.13.0",
"pm2": "^1.1.3",
"redis": "^2.6.0"
},
"devDependencies": {
"blipp": "^2.3.0",
"chai": "^3.5.0",
"good": "^7.0.1",
"good-console": "^6.1.2",
"good-squeeze": "^3.0.1",
"hapi": "^13.4.1",
"istanbul": "^0.4.3",
"mocha": "^2.5.3",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0"
},
"bin": {
"kued": "bin/kued.js",
"kued-launch-node": "bin/kued-launch-node.js",
"everkued": "bin/everkued.js"
},
"scripts": {
"test": "./node_modules/.bin/mocha test/unit --recursive",
"integration": "./node_modules/.bin/mocha test/integration --recursive",
"coverage": "./node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- test/unit --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YEDev/kued.git"
},
"keywords": [
"Kue"
],
"author": "Richard Clayton <rlc.blacksun@gmail.com> (https://rclayton.silvrback.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/YEDev/kued/issues"
},
"homepage": "https://github.com/YEDev/kued#readme"
}