forked from abreits/amqp-ts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
130 lines (130 loc) · 2.88 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "@droidsolutions-oss/amqp-ts",
"version": "2.6.13",
"description": "Easy to use AMQP library written in Typescript (using amqplib).",
"repository": {
"type": "git",
"url": "[email protected]:droidsolutions/amqp-ts.git"
},
"keywords": [
"amqp",
"rabbitmq",
"typescript"
],
"license": "MIT",
"author": "Ab Reitsma",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib/*"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rimraf lib",
"docker-develop": "npm install && node tools/alive",
"lint": "eslint --ext ts,js .",
"build": "tsc",
"build:clean": "npm run clean && npm run build",
"prepare": "husky install",
"test": "mocha test/*.spec.ts",
"test:coverage": "nyc mocha test/*.spec.ts",
"test-integration": "gulp test:integration"
},
"dependencies": {
"amqplib": "^0.10.0"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/amqplib": "0.10.5",
"@types/chai-as-promised": "7.1.8",
"@types/mocha": "10.0.10",
"@types/node": "22.9.1",
"@types/pino": "6.3.12",
"@typescript-eslint/eslint-plugin": "8.15.0",
"@typescript-eslint/parser": "8.15.0",
"chai": "4.3.10",
"chai-as-promised": "7.1.2",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-mocha": "10.5.0",
"eslint-plugin-node": "11.1.0",
"husky": "9.1.7",
"line-reader": "0.4.0",
"merge2": "1.4.1",
"mocha": "10.8.2",
"nyc": "17.1.0",
"pino": "6.13.3",
"pino-pretty": "13.0.0",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"semantic-release": "24.2.0",
"source-map-support": "0.5.21",
"ts-node": "10.9.2",
"typescript": "5.6.3"
},
"engines": {
"node": ">=12"
},
"contributors": [
{
"email": "[email protected]",
"name": "Stefan Ißmer"
}
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"branches": [
"main",
"master",
{
"name": "develop",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
]
},
"mocha": {
"extension": [
"ts"
],
"require": [
"ts-node/register",
"source-map-support/register"
]
},
"nyc": {
"extension": [
".ts"
],
"include": [
"src/**/*.ts"
],
"exclude": [
".nyc_output/*",
"coverage/*",
"lib/*",
"test/*"
],
"reporter": [
"html",
"text-summary"
],
"all": true
}
}