-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.34 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
{
"name": "rabbitr",
"version": "12.3.0",
"description": "RabbitMQ made easy for nodejs",
"main": "index",
"scripts": {
"build": "tsc",
"test": "mocha --exit",
"coverage": "nyc --reporter=lcov --reporter=text mocha --exit",
"preversion": "npm run test -- --bail",
"postversion": "git push --follow-tags"
},
"author": "Giles Williams",
"license": "ISC",
"dependencies": {
"@types/amqplib": "^0.5.6",
"@types/chai": "^4.2.12",
"@types/chalk": "^2.2.0",
"@types/mocha": "^2.2.46",
"@types/node": "^12.12.54",
"@types/node-uuid": "0.0.28",
"amqplib": "^0.7.1",
"chalk": "^1.1.3",
"debug": "^2.6.8",
"node-uuid": "^1.4.8",
"promise-cb": "^0.1.4"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^8.1.1",
"nyc": "^15.1.0",
"source-map-support": "^0.4.15",
"typescript": "^3.9.7"
},
"typings": "index.d.ts",
"directories": {
"example": "examples",
"test": "test"
},
"keywords": [
"rabbitmq",
"messages",
"queues",
"amqp",
"event",
"subscribe",
"schedule",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/urbanmassage/node-rabbitr.git"
},
"bugs": {
"url": "https://github.com/urbanmassage/node-rabbitr/issues"
},
"homepage": "https://github.com/urbanmassage/node-rabbitr"
}