-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 1.69 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
{
"name": "bastion-baas-cli",
"version": "0.1.5",
"description": "CLI app for deploying your bastion infrastructure",
"author": "bastion-cli",
"contributors": [
{
"name": "Alican Sungur @asungur",
"email": "[email protected]",
"url": "https://www.asungur.com/"
},
{
"name": "Reilly Knutson"
}
],
"bin": {
"bastion": "./bin/run"
},
"homepage": "https://github.com/Bastion-BaaS/bastion-cli",
"license": "MIT",
"main": "src/index.js",
"repository": "Bastion-BaaS/bastion-cli",
"files": [
"/src",
"/src/utils/bastion.yaml",
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@aws-sdk/client-cloudformation": "^3.54.0",
"@oclif/core": "^1",
"@oclif/plugin-help": "^5",
"@oclif/plugin-plugins": "^2.0.1",
"chalk": "^4.1.1",
"conf": "^10.1.1",
"crypto": "^1.0.1",
"inquirer": "^8.2.1",
"ora": "^5.4.0",
"path": "^0.12.7"
},
"devDependencies": {
"@oclif/test": "^2",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4",
"globby": "^11",
"mocha": "^9",
"oclif": "^2"
},
"oclif": {
"bin": "bastion",
"commands": "./src/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
]
},
"scripts": {
"build": "rm -rf dist && tsc -b",
"lint": "eslint .",
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint .",
"prepack": "oclif manifest && oclif readme",
"test": "jest --verbose",
"version": "oclif readme && git add README.md"
},
"engines": {
"node": ">=12.0.0"
},
"bugs": "https://github.com/Bastion-BaaS/bastion-cli/issues",
"keywords": [
"oclif"
]
}