-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
47 lines (47 loc) · 1.28 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
{
"name": "@algoan/nestjs-google-pubsub-microservice",
"version": "3.1.3",
"description": "A GooglePubSub transport strategy with NestJS Microservice",
"keywords": [
"nodejs",
"typescript",
"nestjs",
"microservice",
"google-pubsub"
],
"author": "Charles Coeurderoy <[email protected]>",
"homepage": "https://github.com/algoan/nestjs-components/tree/master/packages/google-pubsub-microservice#readme",
"license": "ISC",
"directories": {
"lib": "src",
"test": "test"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/src"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/algoan/nestjs-components.git",
"directory": "packages/google-pubsub-microservice"
},
"scripts": {
"build": "tsc -p .",
"test": "jest --detectOpenHandles --verbose -i",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --config ./jest.config.js",
"test:cov": "npm t -- --coverage"
},
"bugs": {
"url": "https://github.com/algoan/nestjs-components/issues"
},
"peerDependencies": {
"@algoan/pubsub": ">=4 < 7",
"@nestjs/common": ">=8",
"@nestjs/core": ">=8",
"@nestjs/microservices": ">=8"
}
}