-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
72 lines (72 loc) · 2.18 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
{
"name": "@enriqcg/nestjs-amqp",
"version": "2.0.4",
"description": "AMQP/RabbitMQ module for NestJS with decorator support",
"main": "index.js",
"scripts": {
"lint": "eslint \"lib/**/*.ts\"",
"build": "rimraf dist && tsc -p tsconfig.build.json && tsc index.ts -d",
"build:dev": "tsc -w -p tsconfig.build.json && tsc index.ts -d",
"format:check": "prettier \"lib/**/*.ts\" \"./*.ts\" --check",
"format": "prettier \"lib/**/*.ts\" \"./*.ts\" --write",
"prerelease": "npm run build",
"release": "release-it",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"test:e2e": "jest --config ./tests/jest-e2e.json --runInBand",
"test:e2e:dev": "jest --config ./tests/jest-e2e.json --runInBand --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EnriqCG/nestjs-amqp.git"
},
"keywords": [
"amqp",
"amqplib",
"rabbitmq-nestjs",
"nestjs",
"amqp-nestjs",
"amqplib-nestjs"
],
"author": "Enrique Carpintero",
"license": "MIT",
"bugs": {
"url": "https://github.com/EnriqCG/nestjs-amqp/issues"
},
"engines": {
"node": ">=12"
},
"homepage": "https://github.com/EnriqCG/nestjs-amqp#readme",
"dependencies": {
"@types/amqplib": "^0.8.2",
"amqp-connection-manager": "^4.1.9"
},
"devDependencies": {
"@nestjs/common": "^9.0.0",
"@nestjs/core": "^9.0.0",
"@nestjs/platform-express": "^9.0.0",
"@nestjs/testing": "^9.0.0",
"@trivago/prettier-plugin-sort-imports": "^3.4.0",
"@types/jest": "^28.0.0",
"@types/node": "^16.18.2",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"amqplib": "^0.10.3",
"axios": "^0.24.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.0.0",
"prettier": "^2.7.1",
"reflect-metadata": "^0.1.13",
"release-it": "^16.1.3",
"rimraf": "^3.0.2",
"rxjs": "^7.5.7",
"ts-jest": "^28.0.0",
"typescript": "^4.8.4"
},
"peerDependencies": {
"@nestjs/common": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
"@nestjs/core": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0"
}
}