-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
120 lines (120 loc) · 3.15 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "nestx-amqp",
"version": "2.0.6",
"description": "nestjs x amqp-connection-manager module",
"repository": "https://github.com/nest-x/nestx-amqp",
"author": "aquariuslt <[email protected]>",
"license": "MIT",
"keywords": [
"nestjs",
"amqp",
"amqplib",
"amqp-connection-manager"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" --fix",
"test": "jest --forceExit --detectOpenHandles",
"test:watch": "jest --watch",
"test:cov": "jest --coverage --forceExit --detectOpenHandles",
"release": "semantic-release"
},
"files": [
"dist",
"index.ts"
],
"dependencies": {
"@golevelup/nestjs-discovery": "^2.3.1",
"@nestjs/common": "^8.0.0",
"@nestjs/core": "^8.0.0",
"@nestjs/platform-express": "^8.0.0",
"amqp-connection-manager": "^4.0.0",
"amqplib": "^0.10.0",
"patch-package": "^6.2.0",
"postinstall-postinstall": "^2.0.0",
"reflect-metadata": "^0.2.0",
"rimraf": "^3.0.0",
"rxjs": "^7.0.0"
},
"devDependencies": {
"@nestjs/cli": "10.4.5",
"@nestjs/schematics": "9.2.0",
"@nestjs/testing": "8.4.7",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/amqp-connection-manager": "3.4.1",
"@types/amqplib": "0.10.5",
"@types/express": "5.0.0",
"@types/jest": "27.5.2",
"@types/node": "20.16.9",
"@types/supertest": "6.0.2",
"@typescript-eslint/eslint-plugin": "8.7.0",
"@typescript-eslint/parser": "8.7.0",
"eslint": "9.11.1",
"eslint-config-prettier": "9.1.0",
"eslint-config-ts-lambdas": "1.2.3",
"eslint-plugin-import": "2.30.0",
"eslint-plugin-prettier": "5.2.1",
"jest": "26.6.3",
"lodash": "4.17.21",
"prettier": "3.3.3",
"semantic-release": "24.1.1",
"sinon": "19.0.2",
"supertest": "7.0.0",
"ts-jest": "26.5.6",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "5.6.2"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"<rootDir>/src/**/*.ts",
"!<rootDir>/src/__tests__/**/*.ts",
"!<rootDir>/src/shared/**/*.ts",
"!<rootDir>/src/index.ts"
],
"testMatch": [
"<rootDir>/src/**/*.test.ts"
],
"testEnvironment": "node",
"coverageDirectory": "<rootDir>/reports/coverage"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"assets": [
{
"label": "nestx-amqp-v${nextRelease.version} distribution",
"path": "dist"
}
]
}
],
[
"@semantic-release/git",
{
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}