-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.97 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
{
"name": "node-message-bus",
"version": "3.3.5",
"description": "Minimalistic and complete AMQP message bus implementation",
"main": "lib/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"test": "npm run test:cloudamqp && npm run test:connection && npm run test:connection2",
"test:cloudamqp": "env-cmd -f tests/common.env -f tests/specs/cloudamqp.env --use-shell \"export NODE_MESSAGE_BUS_TESTING_CLOUDAMQP_API_KEY=$CLOUDAMQP_API_KEY && mocha --config=tests/mocha.yaml tests/**/*cloudamqp.test.ts\"",
"test:connection": "env-cmd -f tests/common.env -f tests/specs/connection.env mocha --config=tests/mocha.yaml tests/**/*connection.test.ts",
"test:connection2": "env-cmd -f tests/common.env -f tests/specs/connection2.env --use-shell \"export AMQP_TEMP=$CLOUDAMQP_API_KEY && mocha --config=tests/mocha.yaml tests/**/*connection2.test.ts\"",
"build": "tsc && tsc-alias",
"start": "npm run build -- -w & tsc-alias -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZitRos/node-message-bus.git"
},
"keywords": [
"node",
"message",
"bus",
"amqp",
"rabbitmq",
"rabbit",
"queue"
],
"author": {
"name": "Nikita Savchenko",
"email": "[email protected]",
"url": "https://nikita.tk"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ZitRos/node-message-bus/issues"
},
"homepage": "https://github.com/ZitRos/node-message-bus#readme",
"devDependencies": {
"@types/amqp-connection-manager": "^3.4.1",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.2.5",
"@types/node-fetch": "^2.6.4",
"chai": "^4.3.7",
"env-cmd": "^10.1.0",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.2",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.6",
"typescript": "^5.0.4"
},
"dependencies": {
"@types/amqplib": "^0.10.5",
"amqp-connection-manager": "^4.1.14",
"amqplib": "^0.10.3"
}
}