forked from mohsenbostan/nestjs-grpc-exceptions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.94 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
{
"name": "nestjs-grpc-exceptions",
"description": "NestJS gRPC Exceptions",
"license": "MIT",
"author": "Mohsen Bostan <mohsenbostandev@gmail.com",
"homepage": "https://github.com/mohsenbostan/nestjs-grpc-exceptions",
"bugs": {
"url": "https://github.com/mohsenbostan/nestjs-grpc-exceptions/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/mohsenbostan/nestjs-grpc-exceptions.git"
},
"version": "0.2.0",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup index.ts --format cjs,esm --dts",
"test": "jest --",
"test:coverage": "jest --collectCoverage --",
"lint": "eslint \"{src,lib,test}/**/*.ts\" --fix",
"format": "prettier --write \"lib/**/*.ts\" \"test/**/*.ts\"",
"release": "pnpm run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@grpc/grpc-js": "^1.8.4",
"@nestjs/common": "^9.2.1",
"@nestjs/core": "^9.2.1",
"@nestjs/microservices": "^9.2.1",
"@types/jest": "^29.2.6",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"prettier": "^2.8.3",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.0",
"ts-jest": "^29.0.5",
"tsup": "^6.5.0",
"typescript": "^4.9.4"
},
"peerDependencies": {
"@grpc/grpc-js": "*",
"@nestjs/common": "^8.0.0 || ^9.0.0",
"@nestjs/core": "^8.0.0 || ^9.0.0",
"@nestjs/microservices": "^8.0.0 || ^9.0.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}