@nestjstools/messaging-google-pubsub-extension 2.0.1 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nestjstools/messaging-google-pubsub-extension",
|
|
3
|
-
"version": "2.0
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"description": "Extension to handle messages and dispatch them over Google PubSub",
|
|
5
5
|
"author": "Sebastian Iwanczyszyn",
|
|
6
|
-
"private": false,
|
|
7
6
|
"publishConfig": {
|
|
8
7
|
"access": "public"
|
|
9
8
|
},
|
|
10
9
|
"license": "MIT",
|
|
11
10
|
"main": "lib/index.js",
|
|
12
11
|
"bugs": {
|
|
13
|
-
"url": "https://github.com/nestjstools/messaging
|
|
12
|
+
"url": "https://github.com/nestjstools/messaging/issues"
|
|
14
13
|
},
|
|
15
14
|
"repository": {
|
|
16
15
|
"type": "git",
|
|
17
|
-
"url": "git+https://github.com/nestjstools/messaging
|
|
16
|
+
"url": "git+https://github.com/nestjstools/messaging",
|
|
17
|
+
"directory": "packages/messaging-google-pubsub-extension"
|
|
18
18
|
},
|
|
19
19
|
"keywords": [
|
|
20
20
|
"nestjs",
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
],
|
|
38
38
|
"scripts": {
|
|
39
39
|
"build": "nest build",
|
|
40
|
-
"prettier:fix": "
|
|
41
|
-
"prettier": "
|
|
40
|
+
"prettier:fix": "prettier --write \"src/**/*.ts\"",
|
|
41
|
+
"prettier": "prettier --check \"src/**/*.ts\"",
|
|
42
42
|
"ci": "yarn prettier",
|
|
43
43
|
"start": "nest start",
|
|
44
44
|
"start:dev": "nest start --watch",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"test": "jest",
|
|
49
49
|
"test:watch": "jest --watch",
|
|
50
50
|
"test:cov": "jest --coverage",
|
|
51
|
-
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register
|
|
51
|
+
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register jest --runInBand",
|
|
52
52
|
"test:e2e": "jest --config ./test/jest-e2e.json"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
@@ -83,6 +83,8 @@
|
|
|
83
83
|
"globals": "^15.14.0",
|
|
84
84
|
"jest": "^29.7.0",
|
|
85
85
|
"prettier": "^3.4.2",
|
|
86
|
+
"reflect-metadata": "^0.2.2",
|
|
87
|
+
"rxjs": "^7.8.2",
|
|
86
88
|
"semantic-release": "^24.2.3",
|
|
87
89
|
"source-map-support": "^0.5.21",
|
|
88
90
|
"supertest": "^7.0.0",
|
|
@@ -91,7 +93,8 @@
|
|
|
91
93
|
"ts-node": "^10.9.2",
|
|
92
94
|
"tsconfig-paths": "^4.2.0",
|
|
93
95
|
"typescript": "^5.7.3",
|
|
94
|
-
"typescript-eslint": "^8.20.0"
|
|
96
|
+
"typescript-eslint": "^8.20.0",
|
|
97
|
+
"webpack": "^5.105.2"
|
|
95
98
|
},
|
|
96
99
|
"jest": {
|
|
97
100
|
"moduleFileExtensions": [
|
|
@@ -109,5 +112,6 @@
|
|
|
109
112
|
],
|
|
110
113
|
"coverageDirectory": "../coverage",
|
|
111
114
|
"testEnvironment": "node"
|
|
112
|
-
}
|
|
115
|
+
},
|
|
116
|
+
"homepage": "https://docs.nestjstools.com/messaging"
|
|
113
117
|
}
|