-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 969 Bytes
/
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
{
"name": "@chatdaddy/event-bridge",
"version": "1.1.1",
"description": "AMQP based pub/sub event manager for distributed services",
"main": "lib/index.js",
"scripts": {
"test": "TZ=UTC NODE_ENV=test jest",
"prepare": "tsc",
"build": "tsc",
"lint": "eslint ./ --ext .js,.ts,.jsx,.tsx",
"lint:fix": "eslint ./ --fix --ext .js,.ts,.jsx,.tsx"
},
"devDependencies": {
"@adiwajshing/eslint-config": "git+https://github.com/adiwajshing/eslint-config",
"@types/amqplib": "^0.10.0",
"@types/jest": "^27.0.0",
"@types/node": "^14.14.35",
"chance": "^1.1.7",
"dotenv": "^16.0.1",
"eslint": "^8.19.0",
"jest": "^27.0.0",
"ts-jest": "^27.0.0",
"ts-node": "^10.8.0",
"typescript": "^4.2.3"
},
"files": [
"lib"
],
"keywords": [],
"author": "Adhiraj Singh",
"license": "ISC",
"dependencies": {
"amqp-connection-manager": "^4.1.6",
"amqplib": "^0.10.2",
"pino": "^8.4.1"
}
}