-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.64 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
{
"name": "nestjs-message-bus",
"version": "0.0.60",
"description": "Message Bus implementation for nest-js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.json",
"format": "prettier --write \"**/*.ts\"",
"test": "jest --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pagevamp/nestjs-message-bus.git"
},
"author": {
"name": "Ashish K. Poudel",
"email": "[email protected]"
},
"dependencies": {
"class-transformer": "^0.4.0"
},
"devDependencies": {
"@google-cloud/tasks": "^2.4.1",
"@nestjs/common": "^7.6.18",
"@nestjs/core": "^7.6.18",
"@nestjs/platform-express": "^7.6.18",
"@nestjs/testing": "^7.6.18",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.13",
"@types/supertest": "^2.0.11",
"jest": "^27.1.0",
"prettier": "^2.3.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.6.7",
"supertest": "^6.1.6",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
},
"peerDependencies": {
"@nestjs/common": "^7.0.0",
"@nestjs/core": "^7.0.0",
"@nestjs/platform-express": "^7.0.0",
"@google-cloud/tasks": "^2.3.6"
},
"peerDependenciesMeta": {
"@google-cloud/tasks": {
"optional": true
}
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "./test",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage"
}
}