This repository has been archived by the owner on Aug 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
65 lines (65 loc) · 1.85 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
{
"name": "@jpwilliams/remit",
"version": "2.5.0",
"description": "A small set of functionality used to create microservices that don't need to be aware of one-another's existence.",
"main": "index.js",
"types": "index.d.ts",
"engines": {
"node": ">=8"
},
"scripts": {
"coverage": "./node_modules/.bin/nyc ./node_modules/.bin/mocha --require test/bootstrap test/*.test.js test/**/*.test.js --exit && ./node_modules/.bin/nyc report --reporter=lcov",
"test": "./node_modules/.bin/mocha --require test/bootstrap test/*.test.js test/**/*.test.js --exit",
"travis": "./node_modules/.bin/nyc ./node_modules/.bin/_mocha --require test/bootstrap test/*.test.js test/**/*.test.js --exit && ./node_modules/.bin/nyc report --reporter=lcovonly && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls && rm -rf ./coverage"
},
"author": "Jack Williams <[email protected]>",
"license": "MIT",
"dependencies": {
"amqplib": "^0.7.0",
"callable-instance": "^2.0.0",
"callsite": "^1.0.0",
"cls-hooked": "^4.2.2",
"eventemitter3": "^4.0.0",
"generic-pool": "^3.7.1",
"ms": "^2.1.1",
"opentracing": "^0.14.3",
"serialize-error": "^8.0.1",
"ulid": "^2.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jpwilliams/remit.git"
},
"keywords": [
"micro",
"service",
"microservice",
"microservices",
"amqp",
"rabbitmq",
"zeromq",
"rpc",
"request",
"response",
"emit",
"listen",
"distributed",
"events",
"messaging"
],
"bugs": {
"url": "https://github.com/jpwilliams/remit/issues"
},
"homepage": "https://github.com/jpwilliams/remit#readme",
"files": [
"test",
"lib",
"utils"
],
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"mocha": "^8.0.1",
"nyc": "^15.0.0"
}
}