forked from smrchy/rsmq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.16 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
{
"name": "rsmq-ms",
"description": "A forked of the really simple message queue based on Redis with millisecond delay support.",
"version": "0.16.0",
"license": "MIT",
"author": "P. Liess <[email protected]>",
"engines": {
"node": "> 6.0.0"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"build:test": "coffee -c -m test/test.coffee",
"watch:test": "coffee -c -m -w test/test.coffee",
"test": "mocha -r source-map-support/register ./test/test.js"
},
"dependencies": {
"@types/redis": "^2.8.28",
"lodash": "^4.17.20",
"redis": "^3.0.2"
},
"devDependencies": {
"async": "^3.2.0",
"coffeescript": "^2.5.1",
"mocha": "^7.0.1",
"should": "^13.2.3",
"source-map-support": "^0.5.21",
"ts-loader": "^6.2.1",
"typescript": "4.1.3"
},
"keywords": [
"queue",
"messagequeue",
"jobs",
"message-queue",
"redis"
],
"repository": {
"type": "git",
"url": "http://github.com/hookdeck/rsmq.git"
},
"bugs": {
"url": "https://github.com/hookdeck/rsmq/issues"
},
"main": "./index.js",
"types": "./index.d.ts",
"files": [
"index.js",
"index.d.ts"
]
}