-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.16 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.16 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
{
"name": "service-connect",
"version": "2.0.0",
"description": "Asynchronous messaging framework for Node.js over RabbitMQ (AMQP)",
"main": "index.js",
"types": "lib/index.d.ts",
"files": [
"lib/",
"index.js",
"README.md"
],
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "cross-env TS_NODE_TRANSPILE_ONLY=true mocha --require ts-node/register test/**/*.spec.ts",
"prepublishOnly": "npm run build && npm test",
"rabbitmq": "cross-env RABBITMQ_PLUGINS=rabbitmq_management docker run -p 5672:5672 -p 15672:15672 --name rabbitmq bitnami/rabbitmq:4.1.0",
"integration-test": "cross-env TS_NODE_TRANSPILE_ONLY=true mocha --require ts-node/register integration-test/**/*.spec.ts --timeout 60000",
"auto-integration-test": "cross-env TS_NODE_TRANSPILE_ONLY=true mocha --require ts-node/register --require ./integration-test/setupDocker.ts integration-test/**/*.spec.ts --timeout 60000"
},
"author": {
"name": "Tim Watson",
"email": "tswatson123@gmail.com",
"url": "https://github.com/twatson83"
},
"license": "MIT",
"devDependencies": {
"@types/amqplib": "^0.10.8",
"@types/chai": "^5.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "^25.5.2",
"@types/sinon": "^17.0.3",
"@types/uuid": "^10.0.0",
"chai": "^6.2.2",
"cross-env": "^7.0.3",
"mocha": "^11.7.5",
"sinon": "^21.0.3",
"ts-node": "^10.9.2",
"typescript": "^6.0.2"
},
"dependencies": {
"amqp-connection-manager": "^5.0.0",
"amqplib": "^1.0.3",
"deepmerge": "^4.3.1",
"uuid": "^13.0.0"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/R-Suite/ServiceConnect-NodeJS"
},
"keywords": [
"service",
"bus",
"message",
"messaging",
"rabbitmq",
"event",
"publish",
"subscribe",
"listen",
"dispatch",
"service connect",
"service-connect",
"connect"
]
}