-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.33 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
{
"name": "@gojob/nest-cloud-pub-sub-transport",
"description": "A Custom Transport strategy of the NestJS microservices pattern for Cloud Pub/Sub.",
"version": "1.1.10",
"repository": "[email protected]:gojob-1337/nest-cloud-pub-sub-transport.git",
"author": "VinceOPS <[email protected]>",
"license": "MIT",
"private": false,
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"scripts": {
"compile": "yarn tsc",
"build": "yarn compile -p tsconfig.build.json",
"lint": "./node_modules/.bin/eslint . --ext .ts",
"test": "jest --testRegex='((test)/.*\\.spec)\\.ts$'",
"test:watch": "yarn test --watch",
"test:cov": "yarn test --coverage",
"integration": "jest --runInBand --testRegex='((test)/.*\\.integration-test)\\.ts$'"
},
"dependencies": {
"@google-cloud/pubsub": "^3.3.0",
"@nestjs/common": "^9.3.9",
"@nestjs/core": "^9.3.9",
"@nestjs/microservices": "^9.3.9",
"@nestjs/platform-express": "^9.3.9",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@gojob/eslint-config": "^1.2.1",
"@gojob/wait-for-assertion": "^1.0.0",
"@nestjs/testing": "^9.3.9",
"@types/jest": "^25.1.2",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"rxjs": "^6.5.4",
"ts-jest": "^25.2.0",
"ts-node": "^8.6.2",
"typescript": "^4.9.5"
}
}