rxnt-kue 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundle.js +2 -0
- package/package.json +51 -50
package/package.json
CHANGED
@@ -1,50 +1,51 @@
|
|
1
|
-
{
|
2
|
-
"name": "rxnt-kue",
|
3
|
-
"version": "1.0.
|
4
|
-
"description": "Extension of kue with to support to Node versions < 10",
|
5
|
-
"homepage": "https://github.com/RXNT/kue",
|
6
|
-
"keywords": [
|
7
|
-
"job",
|
8
|
-
"queue",
|
9
|
-
"worker",
|
10
|
-
"redis"
|
11
|
-
],
|
12
|
-
"license": "MIT",
|
13
|
-
"author": "RxNT <chatwithrajaram@gmail.com>",
|
14
|
-
"contributors": [
|
15
|
-
{
|
16
|
-
"name": "RxNT",
|
17
|
-
"email": "chatwithrajaram@gmail.com"
|
18
|
-
}
|
19
|
-
],
|
20
|
-
"dependencies": {
|
21
|
-
"body-parser": "^1.12.2",
|
22
|
-
"express": "^4.12.2",
|
23
|
-
"lodash": "^4.0.0",
|
24
|
-
"nib": "~1.1.2",
|
25
|
-
"node-redis-warlock": "~0.2.0",
|
26
|
-
"pug": "^2.0.0-beta3",
|
27
|
-
"redis": "~2.6.0-2",
|
28
|
-
"stylus": "0.54.5",
|
29
|
-
"yargs": "^4.0.0"
|
30
|
-
},
|
31
|
-
"devDependencies": {
|
32
|
-
"async": "^1.4.2",
|
33
|
-
"chai": "^3.3.0",
|
34
|
-
"coffee-script": "~1.10.0",
|
35
|
-
"mocha": "^2.3.3",
|
36
|
-
"should": "^3.1.0",
|
37
|
-
"sinon": "^1.17.2",
|
38
|
-
"supertest": "^1.1.0"
|
39
|
-
},
|
40
|
-
"main": "index",
|
41
|
-
"bin": {
|
42
|
-
"kue-dashboard": "bin/kue-dashboard"
|
43
|
-
},
|
44
|
-
"scripts": {
|
45
|
-
"test": "make test-all"
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
}
|
1
|
+
{
|
2
|
+
"name": "rxnt-kue",
|
3
|
+
"version": "1.0.4",
|
4
|
+
"description": "Extension of kue with to support to Node versions < 10",
|
5
|
+
"homepage": "https://github.com/RXNT/kue",
|
6
|
+
"keywords": [
|
7
|
+
"job",
|
8
|
+
"queue",
|
9
|
+
"worker",
|
10
|
+
"redis"
|
11
|
+
],
|
12
|
+
"license": "MIT",
|
13
|
+
"author": "RxNT <chatwithrajaram@gmail.com>",
|
14
|
+
"contributors": [
|
15
|
+
{
|
16
|
+
"name": "RxNT",
|
17
|
+
"email": "chatwithrajaram@gmail.com"
|
18
|
+
}
|
19
|
+
],
|
20
|
+
"dependencies": {
|
21
|
+
"body-parser": "^1.12.2",
|
22
|
+
"express": "^4.12.2",
|
23
|
+
"lodash": "^4.0.0",
|
24
|
+
"nib": "~1.1.2",
|
25
|
+
"node-redis-warlock": "~0.2.0",
|
26
|
+
"pug": "^2.0.0-beta3",
|
27
|
+
"redis": "~2.6.0-2",
|
28
|
+
"stylus": "0.54.5",
|
29
|
+
"yargs": "^4.0.0"
|
30
|
+
},
|
31
|
+
"devDependencies": {
|
32
|
+
"async": "^1.4.2",
|
33
|
+
"chai": "^3.3.0",
|
34
|
+
"coffee-script": "~1.10.0",
|
35
|
+
"mocha": "^2.3.3",
|
36
|
+
"should": "^3.1.0",
|
37
|
+
"sinon": "^1.17.2",
|
38
|
+
"supertest": "^1.1.0"
|
39
|
+
},
|
40
|
+
"main": "index",
|
41
|
+
"bin": {
|
42
|
+
"kue-dashboard": "bin/kue-dashboard"
|
43
|
+
},
|
44
|
+
"scripts": {
|
45
|
+
"test": "make test-all",
|
46
|
+
"postInstall": "node bundle.js"
|
47
|
+
},
|
48
|
+
"optionalDependencies": {
|
49
|
+
"reds": "^0.2.5"
|
50
|
+
}
|
51
|
+
}
|