-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.52 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@haribodev/serverx",
"version": "1.1.1",
"description": "Centrally manage AWS, GCP and self-managed servers and connect to them via SSH. Update security group, firewall and security policy rules with your new public IP.",
"author": "HariboDev",
"bin": {
"serverx": "./bin/run"
},
"homepage": "https://serverx.haribodev.uk",
"license": "MIT",
"main": "dist/index.js",
"repository": "HariboDev/serverx",
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@google-cloud/compute": "^3.1.2",
"@oclif/core": "^1",
"@oclif/plugin-autocomplete": "^1.2.0",
"@oclif/plugin-commands": "^2.1.0",
"@oclif/plugin-help": "^5.1.12",
"@oclif/plugin-not-found": "^2.3.1",
"@oclif/plugin-warn-if-update-available": "^2.0.4",
"@types/inquirer": "^8.2.0",
"aws-sdk": "^2.1090.0",
"axios": "^0.26.1",
"chalk": "^2.4.2",
"cli-table3": "^0.6.1",
"fs": "^0.0.1-security",
"inquirer": "^8.2.1",
"net": "^1.0.2",
"node-ssh": "^12.0.3",
"papaparse": "^5.3.2",
"path": "^0.12.7",
"typescript": "4.5.5"
},
"devDependencies": {
"@types/node": "^16.9.4",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4",
"eslint-config-oclif-typescript": "^1.0.2",
"globby": "^11",
"oclif": "^3.1.2",
"shx": "^0.3.3",
"ts-node": "^10.7.0",
"tslib": "^2.3.1"
},
"oclif": {
"bin": "serverx",
"dirname": "serverx",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-warn-if-update-available",
"@oclif/plugin-commands",
"@oclif/plugin-autocomplete",
"@oclif/plugin-not-found"
],
"topicSeparator": " ",
"topics": {}
},
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint . --ext .ts --config .eslintrc",
"lint:fix": "npm run lint -- --fix",
"postpack": "shx rm -f oclif.manifest.json",
"prepack": "npm run build && oclif manifest && oclif readme",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md"
},
"engines": {
"node": ">=12.0.0"
},
"bugs": "https://github.com/HariboDev/serverx/issues",
"keywords": [
"rules",
"ssh",
"aws",
"security",
"cloud",
"ec2",
"network",
"firewall",
"ingress",
"gcp",
"acl",
"sg",
"compute",
"security-group",
"access-control-list",
"security-policy",
"egress",
"connect"
],
"types": "dist/index.d.ts"
}