forked from smrchy/rsmq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 925 Bytes
/
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
{
"name": "rsmq",
"description": "A really simple message queue based on Redis",
"version": "0.9.4",
"license": "MIT",
"author": "P. Liess <[email protected]>",
"engines": {
"node": "> 0.10.20"
},
"scripts": {
"build": "./node_modules/.bin/coffee -cb index.coffee",
"test": "mocha ./test/test.js"
},
"dependencies": {
"@types/redis": "^2.8.0",
"lodash": "^4.17.10",
"redis": "^2.8.0"
},
"devDependencies": {
"async": "^2.6.1",
"coffee-script": "^1.12.7",
"mocha": "^4.0.1",
"should": "^13.1.3"
},
"keywords": [
"queue",
"messagequeue",
"jobs",
"message-queue",
"redis"
],
"repository": {
"type": "git",
"url": "http://github.com/smrchy/rsmq.git"
},
"bugs": {
"url": "https://github.com/smrchy/rsmq/issues"
},
"main": "./index.js",
"types": "./index.d.ts",
"files": [
"index.js",
"index.d.ts"
]
}