-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 845 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 845 Bytes
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
{
"name": "try-helios",
"version": "0.2.1",
"description": "CLI for managing Helios infrastructure",
"main": "src/cli/index.js",
"bin": {
"helios": "./bin/cli.js"
},
"scripts": {
"test": "jest",
"start": "node bin/cli.js"
},
"keywords": [
"helios",
"cli",
"infrastructure",
"aws",
"cloud",
"deployment"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/helios-pipeline/deploy.git"
},
"homepage": "https://github.com/helios-pipeline/deploy",
"devDependencies": {
"aws-cdk": "2.149.0",
"jest": "^29.7.0"
},
"dependencies": {
"@inquirer/prompts": "^5.3.2",
"aws-cdk-lib": "^2.149.0",
"cdk-ec2-key-pair": "^4.0.1",
"commander": "^12.1.0",
"constructs": "^10.0.0",
"dotenv": "^16.4.5",
"ora": "5.4.1"
}
}