-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 843 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
{
"name": "durable-message-queue",
"version": "0.5.3",
"description": "A durable message queue library powered by the Redis' reliable queue pattern and LUA scripts",
"main": "dist/index.js",
"files": [
"dist/"
],
"scripts": {
"build": "gulp build",
"publish-package": "npm login && npm publish"
},
"keywords": [
"reliable",
"durable",
"message queue",
"redis"
],
"author": "Arkadiy Shuvaev",
"license": "ISC",
"dependencies": {
"debug": "^4.3.1",
"ioredis": "4.16.0"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/del": "^4.0.0",
"@types/gulp": "4.0.6",
"@types/ioredis": "^4.17.8",
"del": "^5.1.0",
"fancy-log": "^1.3.3",
"gulp": "4.0.2",
"gulp-cli": "2.2.0",
"gulp-typescript": "6.0.0-alpha.1",
"typescript": "^3.7.2"
}
}