-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
84 lines (84 loc) · 2.29 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
{
"name": "@microfleet/transport-amqp",
"description": "microservice utils based on amqp transport layer",
"version": "0.0.0-development",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"compile": "rimraf ./lib; pnpm run types",
"types": "tsc -p tsconfig.build.json",
"lint": "eslint ./src",
"test": "pnpm run lint && pnpm run test:e2e",
"test:e2e": "mdep test run",
"prepublishOnly": "pnpm run compile",
"bench": "pnpm run compile && node ./bench/roundtrip.js",
"semantic-release": "semantic-release",
"prepare": "mdep install"
},
"engines": {
"node": ">= 14.17.0"
},
"repository": {
"type": "git",
"url": "https://github.com/microfleet/transport-amqp.git"
},
"author": "Vitaly Aminev <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/microfleet/transport-amqp/issues"
},
"homepage": "https://github.com/microfleet/transport-amqp#readme",
"devDependencies": {
"@makeomatic/deploy": "^12.6.3",
"@types/bluebird": "^3.5.36",
"@types/is": "^0.0.21",
"@types/lodash": "^4.14.179",
"@types/mocha": "^9.1.0",
"benchmark": "^2.1.4",
"c8": "^7.11.0",
"chai": "^4.3.6",
"codecov": "^3.8.3",
"cross-env": "^7.0.3",
"eslint": "^8.10.0",
"eslint-config-makeomatic": "^5.1.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-mocha": "^10.0.3",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-unicorn": "^41.0.0",
"jaeger-client": "^3.19.0",
"microtime": "^3.0.0",
"mocha": "^9.2.1",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.2",
"sinon": "^13.0.1",
"typescript": "^4.6.2"
},
"peerDependencies": {
"common-errors": "~1.x.x"
},
"dependencies": {
"@microfleet/amqp-coffee": "^2.1.0",
"@types/common-errors": "^1.0.2",
"bluebird": "^3.7.2",
"common-errors": "^1.2.0",
"debug": "^4.3.3",
"eventemitter3": "^4.0.7",
"flatstr": "^1.0.12",
"hashlru": "^2.3.0",
"is": "^3.3.0",
"joi": "^17.6.0",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.21",
"object-hash": "^3.0.0",
"opentracing": "^0.14.7",
"pino": "^7.8.0",
"read-pkg": "^5.2.0",
"sonic-boom": "^2.6.0",
"uuid": "^8.3.2"
},
"files": [
"src/",
"lib/",
"types/"
]
}