This repository has been archived by the owner on Dec 31, 2024. It is now read-only.
forked from caddijp/nestjs-cloud-pubsub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.78 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
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "nestjs-cloud-pubsub",
"version": "8.0.0",
"description": "The @google-cloud NestJS module",
"repository": {
"type": "git",
"url": "ssh://git@github.com/caddijp/nestjs-cloud-pubsub.git"
},
"author": "CADDi Co.,Ltd",
"bugs": {
"url": "https://github.com/caddijp/nestjs-cloud-pubsub/issues"
},
"main": "lib/index.js",
"scripts": {
"build": "npm run clean && tsc -p .",
"clean": "rimraf lib",
"test": "jest"
},
"keywords": [
"nest",
"nestjs",
"pubsub",
"cloud-pubsub",
"google-cloud-pubsub"
],
"peerDependencies": {
"@google-cloud/pubsub": "^2.0.0 || ^3.0.0",
"@nestjs/common": "^8.0.0 || ^9.0.0"
},
"devDependencies": {
"@google-cloud/pubsub": "4.3.3",
"@nestjs/common": "9.1.6",
"@nestjs/core": "9.1.6",
"@nestjs/testing": "9.1.6",
"@types/jest": "27.5.2",
"@typescript-eslint/eslint-plugin": "5.42.0",
"@typescript-eslint/parser": "5.42.0",
"eslint": "8.26.0",
"eslint-config-prettier": "8.5.0",
"jest": "28.1.3",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"prettier-plugin-organize-imports": "3.1.1",
"prettier-plugin-package": "1.3.0",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"rxjs": "7.5.7",
"simple-git-hooks": "2.8.1",
"ts-jest": "28.0.8",
"typescript": "4.8.4"
},
"types": "lib/index.d.ts",
"jest": {
"preset": "ts-jest",
"collectCoverage": true,
"coverageReporters": [
[
"lcov"
],
"text-summary"
]
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{js,jsx,json,yml,toml,md}": [
"prettier --write"
]
},
"prettier": {
"singleQuote": true
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
}
}