-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
33 lines (33 loc) · 908 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
{
"name": "notificator",
"version": "1.0.0",
"description": "Notification module with abstract PubSub and RabbitMQ driver",
"main": "index.js",
"directories": {
"example": "examples"
},
"scripts": {
"test": "jest --testPathPattern=tests/* --coverageDirectory=coverage/ --coverage --runInBand --testTimeout=35000 --forceExit --silent",
"notify": "node examples/notificator/notify.js",
"receive": "node examples/notificator/receive.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unsigned6/notificator.git"
},
"keywords": [
"rabbitmq",
"notificator",
"pubsub"
],
"author": "Yurii Vlasiuk",
"license": "ISC",
"bugs": {
"url": "https://github.com/unsigned6/notificator/issues"
},
"homepage": "https://github.com/unsigned6/notificator#readme",
"dependencies": {
"amqplib": "^0.6.0",
"jest": "^26.1.0"
}
}