-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
46 lines (46 loc) · 1.1 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
{
"name": "@nestjs-plugins/nestjs-nats-streaming-transport",
"version": "1.3.0",
"description": "Nats Streaming Transport for NestJS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/Redningsselskapet/nestjs-nats-streaming-transport"
},
"keywords": [
"nestjs",
"transport",
"microservices",
"nats-streaming"
],
"scripts": {
"test": "echo \"no test specified\"",
"build": "rimraf dist && tsc",
"watch": "tsc -w"
},
"author": "Bernt Anker [bernt.anker@gmail.com]",
"license": "ISC",
"dependencies": {
"node-nats-streaming": "^0.3.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.7",
"shortid": "^2.2.16"
},
"peerDependencies": {
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"@nestjs/microservices": "^10.0.0"
},
"devDependencies": {
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"@nestjs/microservices": "^10.0.0",
"@types/node": "^18.11.9",
"rimraf": "^3.0.2",
"typescript": "^4.8.4"
}
}