-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.6 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "redibox-hook-job",
"description": "High performance, robust and flexible queue/worker system powered by redis.",
"version": "1.2.18",
"main": "src/index.js",
"author": "Mike Diarmid",
"repository": {
"type": "git",
"url": "https://github.com/redibox/job"
},
"license": "MIT",
"engines": {
"node": ">=6.0"
},
"keywords": [
"redis",
"redis-cluster",
"cluster",
"scheduler",
"job",
"jobs",
"queue",
"queues",
"worker",
"workers",
"scheduling",
"waterline",
"sails",
"cache",
"throttle",
"throttling",
"timeseries",
"autocomplete",
"indexes",
"indices",
"lock",
"redlock",
"lua",
"ioredis"
],
"scripts": {
"debug": "devtool tests.js --no-nt --console -- --verbose",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"prepublish": "npm run lint",
"lint": "./node_modules/.bin/eslint ./src",
"test": "node -- ./node_modules/istanbul/lib/cli.js cover --report lcov _mocha"
},
"devDependencies": {
"bee-queue": "^0.3.0",
"benchmark": "^2.1.1",
"bull": "^1.0.0",
"chai": "^3.5.0",
"coveralls": "^2.11.14",
"eslint": "^3.6.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-config-airbnb-base": "^8.0.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.0",
"isparta": "^4.0.0",
"istanbul": "^1.1.0-alpha.1",
"kue": "^0.11.1",
"mocha": "^3.1.1",
"redibox": "^2.3.0",
"sinon": "^1.17.6"
},
"dependencies": {
"bluebird": "^3.4.6",
"cuid": "^1.3.8"
}
}