-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.69 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.69 KB
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
{
"name": "@ocariot/rabbitmq-client-node",
"version": "1.6.2",
"description": "High abstraction library for message handling on the OCARIoT platform RabbitMQ event bus.",
"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"
},
"author": "NUTES/UEPB",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/ocariot/rabbitmq-client-node.git"
},
"bugs": {
"url": "https://github.com/ocariot/rabbitmq-client-node.git/issues"
},
"homepage": "https://github.com/ocariot/rabbitmq-client-node.git#readme",
"nyc": {
"include": [
"**/*.tsx",
"**/*.ts"
],
"exclude": [
"**/*.d.ts",
"test/*",
"config/*"
],
"extension": [
".ts",
".tsx"
],
"reporter": [
"text-summary",
"html"
],
"all": true
},
"keywords": [
"ocariot",
"eventbus",
"amqp",
"publish",
"subscribe",
"rpc",
"rabbitmq",
"event",
"event-bus",
"channel",
"queue",
"exchange",
"async",
"communication"
],
"dependencies": {
"amqp-client-node": "^1.0.10"
},
"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/**/*"
]
}