-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.43 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.43 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
{
"name": "rabbitory_cli",
"version": "1.0.1",
"description": "Rabbitory's custom Command Line Interface for provisioning and managing self-hosted RabbitMQ instances on AWS EC2",
"repository": {
"type": "git",
"url": "https://github.com/Rabbitory/rabbitory_cli"
},
"bin": {
"rabbitory": "./dist/cli/cli.js"
},
"scripts": {
"build": "npx tsc",
"lint": "eslint",
"test": "jest"
},
"keywords": [ "rabbitmq",
"cli",
"aws",
"ec2",
"rabbitory",
"message-broker",
"infrastructure",
"devops",
"self-hosted",
"cloud",
"automation",
"deployment",
"provisioning",
"messaging",
"amqp"],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.767.0",
"@aws-sdk/client-ec2": "^3.767.0",
"@aws-sdk/client-iam": "^3.758.0",
"@aws-sdk/client-route-53": "^3.782.0",
"@aws-sdk/client-ssm": "^3.782.0",
"@aws-sdk/util-waiter": "^3.370.0",
"chalk": "^4.1.2",
"cli-progress": "^3.12.0",
"commander": "^13.1.0",
"enquirer": "^2.4.1",
"ora": "^5.4.1"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@types/cli-progress": "^3.11.6",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.16",
"eslint": "^9.23.0",
"eslint-plugin-jest": "^28.11.0",
"globals": "^16.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"typescript-eslint": "^8.28.0"
}
}