This repository was archived by the owner on Jun 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.66 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.66 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
{
"name": "@haribodev/aws-ec2-profiles",
"description": "Centrally manage AWS and self managed instances and connect to them using SSH. Update security group ingress rules with your new public IP.",
"version": "3.1.3",
"author": "HariboDev",
"bin": {
"aep": "./bin/run"
},
"bugs": "https://github.com/HariboDev/aws-ec2-profiles/issues",
"dependencies": {
"@oclif/command": "^1.7.0",
"@oclif/config": "^1.16.0",
"@oclif/plugin-help": "^3.1.0",
"aws-sdk": "^2.791.0",
"chalk": "^4.1.0",
"cli-table": "^0.3.1",
"cli-ux": "^5.5.1",
"fs": "0.0.1-security",
"is-port-reachable": "^3.0.0",
"mocked-env": "^1.3.5",
"node-ssh": "^11.1.1",
"oclif": "^1.16.1",
"path": "^0.12.7",
"public-ip": "^4.0.2",
"shelljs": "^0.8.4"
},
"devDependencies": {
"@oclif/dev-cli": "^1.23.0",
"globby": "^10.0.2",
"rimraf": "^3.0.2"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://aep.haribodev.uk",
"keywords": [
"cli",
"ssh",
"npm",
"aws",
"ec2",
"ip",
"security-groups"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "aep",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "HariboDev/aws-ec2-profiles",
"scripts": {
"postpack": "rimraf oclif.manifest.json",
"prepack": "oclif-dev manifest && oclif-dev readme",
"version": "oclif-dev readme && git add README.md",
"postinstall": "node ./src/postinstall.js"
}
}