-
Notifications
You must be signed in to change notification settings - Fork 125
/
package.json
48 lines (48 loc) · 960 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
46
47
48
{
"name": "rsmq",
"description": "A really simple message queue based on Redis",
"version": "0.12.4",
"license": "MIT",
"author": "P. Liess <[email protected]>",
"engines": {
"node": "> 6.0.0"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "mocha ./test/test.js"
},
"dependencies": {
"lodash": "^4.17.21",
"redis": "^3.1.2"
},
"devDependencies": {
"@types/redis": "^2.8.29",
"async": "^3.2.0",
"coffeescript": "^2.5.1",
"mocha": "^7.0.1",
"should": "^13.2.3",
"ts-loader": "^6.2.1",
"typescript": "4.3.2"
},
"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"
]
}