-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.49 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
{
"name": "merapi-plugin-service-rabbit",
"version": "0.6.6",
"description": "Provide RabbitMQ integration interface",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --exit",
"cover:old": "./node_modules/.bin/istanbul cover . /node_modules/mocha/bin/_mocha --exit && cat ./coverage/lcov.info | ./node_modules/.bin/codacy-coverage && rm -rf ./coverage",
"cover": "nyc --reporter=lcovonly --reporter=text mocha --exit && cat ./coverage/lcov.info | codacy-coverage && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/kata-ai/merapi-plugin-service-rabbit.git"
},
"keywords": [
"merapi",
"microservice",
"rabbitmq"
],
"author": "Ikmal Syifai <ikmal@kata.ai>",
"contributors": [
"Yoga Aliarham <aliarham@kata.ai>",
"Ricky Anders <ricky@kata.ai>",
"Reyhan Sofian <reyhan@kata.ai>"
],
"license": "ISC",
"homepage": "https://github.com/kata-ai/merapi-plugin-service-rabbit#readme",
"dependencies": {
"amqplib": "^0.6.0",
"merapi": "^0.20.0",
"merapi-plugin-service": "^0.4.0",
"requestretry": "^1.12.0",
"then-sleep": "^1.0.1"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"codacy-coverage": "^2.0.3",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^13.3.0",
"supertest": "^3.3.0"
}
}