forked from Automattic/kue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.06 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
{
"name": "@progresskinvey/kue",
"version": "1.0.1",
"description": "Feature rich priority job queue backed by redis",
"homepage": "http://automattic.github.io/kue/",
"keywords": [
"job",
"queue",
"worker",
"redis"
],
"license": "MIT",
"author": "TJ Holowaychuk <[email protected]>",
"contributors": [
{
"name": "Behrad Zari",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/Automattic/kue.git"
},
"bugs": {
"url": "https://github.com/Automattic/kue/issues"
},
"dependencies": {
"lodash": "4.17.21",
"node-redis-warlock": "1.0.0",
"redis": "3.1.1"
},
"devDependencies": {
"async": "^1.4.2",
"chai": "^3.3.0",
"coffee-script": "~1.10.0",
"mocha": "^2.3.3",
"should": "^3.1.0",
"sinon": "^1.17.2",
"supertest": "^1.1.0"
},
"main": "index",
"scripts": {
"test": "make test-all",
"test-npm-security": "npm audit --production --audit-level=high"
},
"optionalDependencies": {
"reds": "^0.2.5"
}
}