This repository was archived by the owner on Jul 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.4 KB
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
{
"name": "sbus-node",
"version": "1.2.47",
"description": "Service Bus for nodeJs services with RabbitMQ transport",
"keywords": [
"RabbitMQ",
"sbus"
],
"repository": {
"type": "git",
"url": "git@github.com:sbuslab/sbus-node.git"
},
"license": "MIT",
"author": "Andrey Pshenkin <andrey.pshenkin@gmail.com>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc && tsc -p tsconfig.decorators.json",
"lint": "eslint .",
"test": "jest"
},
"dependencies": {
"amqp-connection-manager": "^4.1.3",
"amqplib": "^0.9.1",
"moment": "^2.29.3",
"tweetnacl": "^1.0.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/amqp-connection-manager": "^3.4.0",
"@types/jest": "^27.5.1",
"@types/node": "^16.11.7",
"@types/uuid": "^8.3.4",
"@types/validator": "^13.7.2",
"@types/amqplib": "^0.8.2",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"eslint": "^8.16.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-unused-imports": "^2.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.3",
"typescript": "^4.7.2"
},
"peerDependencies": {
"class-transformer": "0.5.1",
"class-validator": "0.13.2",
"cls-rtracer": "2.6.0",
"prom-client": "14.0.1",
"reflect-metadata": "0.1.13"
}
}