-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
59 lines (59 loc) · 1.6 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
{
"name": "mbclient",
"version": "3.3.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"description": "Message broker library",
"keywords": [
"amqp",
"message broker"
],
"license": "Apache-2.0",
"author": "Gajewski Dmitriy Yurevish <[email protected]>",
"files": [
"dist"
],
"repository": {
"type": "git",
"repository": "https://github.com/Tinkoff/mbclient.git"
},
"scripts": {
"clean": "rm -rf dist",
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint src --ext .ts --max-warnings 0",
"check": "npm run lint && npm run test:unit",
"test": "npm run test:unit",
"test:unit": "jest --coverage --verbose",
"test:ci": "npm run test:unit -- --coverageReporters=lcov",
"test:unit:watch": "jest --watch",
"prepublishOnly": "npm run check && npm run build",
"semantic-release": "semantic-release"
},
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"@cloudamqp/amqp-client": "2.1.1",
"uuid": "9.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/jest": "28.1.1",
"@types/node": "20.4.5",
"@types/uuid": "9.0.1",
"@typescript-eslint/eslint-plugin": "5.60.1",
"@typescript-eslint/parser": "5.60.1",
"eslint": "8.46.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-jest": "27.2.3",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"jest": "28.1.1",
"semantic-release": "19.0.5",
"ts-jest": "28.0.4",
"typescript": "5.0.4"
}
}