-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
66 lines (66 loc) · 1.76 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
58
59
60
61
62
63
64
65
66
{
"name": "@tamimaj/nestjs-redis-streams",
"version": "1.3.0",
"description": "Redis Streams Transport for NestJS.",
"author": "Tamim Abbas Aljuratli <https://tamim.es>",
"private": false,
"license": "MIT",
"main": "dist/index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.json",
"format": "prettier **/**/*.ts --ignore-path ./.prettierignore --write",
"test": "jest",
"test:cov": "jest --coverage",
"deploy": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "https://github.com/tamimaj/nestjs-redis-streams.git"
},
"keywords": [
"nest",
"nestjs",
"redis",
"ioredis",
"redis streams",
"redis streams strategy",
"redis streams transport",
"nest redis streams strategy",
"nest redis streams transport"
],
"bugs": {
"url": "https://github.com/tamimaj/nestjs-redis-streams/issues"
},
"homepage": "https://github.com/tamimaj/nestjs-redis-streams#readme",
"dependencies": {
"@nestjs/common": "^9.4.3",
"@nestjs/microservices": "^9.4.3",
"ioredis": "^5.4.1",
"rxjs": "^7.8.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@nestjs/testing": "^9.4.3",
"@types/express": "^4.17.21",
"@types/jest": "28.1.8",
"@types/node": "^16.18.101",
"@types/supertest": "^2.0.16",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"prettier": "^2.8.8",
"sinon": "^14.0.2",
"ts-jest": "28.0.8",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
}
}