-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
78 lines (78 loc) · 1.78 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
{
"name": "amqp-client-node",
"version": "1.0.11",
"description": "Library for publish and subscribe events on message bus. In addition, it is possible to perform resource requests from the use of the standard commonly known as RPC.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"start": "npm run build",
"build": "tsc",
"prebuild": "tslint -c tslint.json -p tsconfig.json",
"test": "nyc --clean --all --reporter=text-summary mocha test/**/*.spec.ts",
"test:cov": "nyc --clean --all --reporter=html --reporter=text mocha test/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nutes-uepb/amqp-client-node.git"
},
"nyc": {
"include": [
"**/*.tsx",
"**/*.ts"
],
"exclude": [
"**/*.d.ts",
"test/*",
"config/*"
],
"extension": [
".ts",
".tsx"
],
"reporter": [
"text-summary",
"html"
],
"all": true
},
"keywords": [
"amqp",
"publish",
"subscribe",
"rpc",
"rabbitmq",
"event",
"event-bus",
"channel",
"queue",
"exchange",
"async",
"communication"
],
"author": "NUTES/UEPB",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nutes-uepb/amqp-client-node/issues"
},
"homepage": "https://github.com/nutes-uepb/amqp-client-node#readme",
"dependencies": {
"amqplib": "^0.5.6",
"inversify": "^5.0.1",
"reflect-metadata": "^0.1.13",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.13",
"chai": "^4.2.0",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"typescript": "^3.9.5"
},
"files": [
"lib/**/*"
]
}