forked from weyoss/redis-smq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.49 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
{
"name": "redis-smq",
"version": "1.0.22",
"description": "A simple high-performance Redis message queue for Node.js.",
"main": "index.js",
"dependencies": {
"bunyan": "1.8.10",
"cron-parser": "2.5.0",
"koa": "2.2.0",
"koa-send": "4.1.0",
"koa-static": "3.0.0",
"ioredis": "4.14.0",
"socket.io": "2.0.3",
"uuid": "3.0.1"
},
"devDependencies": {
"chai": "3.5.0",
"eslint": "3.15.0",
"eslint-config-airbnb-base": "11.1.0",
"eslint-config-google": "0.7.1",
"eslint-config-standard": "6.2.1",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-promise": "3.4.1",
"eslint-plugin-standard": "2.0.1",
"mocha": "5.2.0",
"sinon": "1.17.7",
"sinon-chai": "2.11.0"
},
"scripts": {
"test": "eslint --ignore-path .jshintignore src/*.js && NODE_ENV=test mocha --reporter --harmony spec test/run/*.js",
"lint": "eslint --ignore-path .jshintignore src/monitor/assets src/*.js",
"fix": "eslint --ignore-path .jshintignore src/monitor/assets src --fix"
},
"author": "Weyoss <[email protected]>",
"license": "MIT",
"keywords": [
"redis",
"message queue",
"message",
"queue",
"job queue",
"jobs",
"redis-smq"
],
"repository": {
"type": "git",
"url": "https://github.com/weyoss/redis-smq.git"
},
"homepage": "https://github.com/weyoss/redis-smq",
"bugs": {
"url": "https://github.com/weyoss/redis-smq/issues"
},
"engineStrict": true,
"engines": {
"node": ">=7.0.0"
}
}