-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1 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
{
"name": "ddd-messaging-bus",
"version": "1.0.13",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "npx ts-node src/index",
"test": "jest",
"build": "npx rimraf ./dist && npx tsc --declaration",
"publish:minor": "npm version patch && npm run build && npm publish"
},
"author": "CH",
"license": "MIT",
"dependencies": {
"amqplib": "^0.10.3",
"dotenv": "^16.0.3",
"inversify": "^6.0.1",
"uuid": "^9.0.0",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/amqplib": "^0.10.1",
"@types/jest": "^29.2.5",
"@types/uuid": "^9.0.0",
"reflect-metadata": "^0.1.13",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"publishConfig": {
"access": "public",
"directory": "./dist"
},
"files": [
"dist/**"
],
"bundledDependencies": [
"npm-package"
],
"repository": {
"type": "git",
"url": "https://github.com/AntonioliBenjamin/DDD-messaging-bus"
}
}