-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
76 lines (76 loc) · 2.09 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
{
"name": "@microfleet/plugin-amqp",
"version": "6.0.0",
"description": "AMQP transport adapter",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"lint": "eslint ./src ./__tests__",
"test": "npm run test:e2e",
"test:e2e": "mdep test run",
"clean": "rimraf ./lib *.tsbuildinfo",
"build": "tsc -b ./tsconfig.build.json"
},
"tags": [
"microservice",
"microfleet",
"amqp",
"rabbitmq"
],
"repository": {
"type": "git",
"url": "https://github.com/microfleet/core.git",
"directory": "packages/plugin-amqp"
},
"author": "Vitaly Aminev <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/microfleet/core/issues"
},
"homepage": "https://github.com/microfleet/core#readme",
"dependencies": {
"@microfleet/transport-amqp": "^17.8.2",
"bluebird": "^3.7.2"
},
"peerDependencies": {
"@microfleet/core": "workspace:^",
"@microfleet/plugin-logger": "workspace:^",
"@microfleet/plugin-router": "workspace:^",
"@microfleet/plugin-validator": "workspace:^",
"common-errors": "~1.x.x"
},
"devDependencies": {
"@makeomatic/deploy": "^13.1.0",
"@microfleet/core": "workspace:^",
"@microfleet/core-types": "workspace:^",
"@microfleet/plugin-logger": "workspace:^",
"@microfleet/plugin-router": "workspace:^",
"@microfleet/plugin-validator": "workspace:^",
"@release-it/conventional-changelog": "^10.0.0",
"@types/bluebird": "^3.5.42",
"@types/common-errors": "^1.0.5",
"@types/node": "^22.10.10",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"common-errors": "^1.2.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-makeomatic": "^6.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-unicorn": "^56.0.1",
"release-it": "^18.1.2",
"rimraf": "^6.0.1",
"sinon": "^19.0.2",
"typescript": "~5.7.3"
},
"engines": {
"node": ">= 22.12.0",
"npm": ">= 4.0.0"
},
"files": [
"lib/",
"src/",
"schemas/"
]
}