forked from livecycle/preevy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.49 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "preevy",
"version": "0.0.58",
"description": "Quickly deploy preview environments to the cloud!",
"author": "Livecycle",
"type": "module",
"bin": {
"preevy": "./bin/run.js"
},
"homepage": "https://github.com/livecycle/preevy",
"license": "Apache-2.0",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"repository": "livecycle/preevy",
"files": [
"/bin",
"/static",
"/dist",
"/yarn.lock",
"/oclif.manifest.json"
],
"dependencies": {
"@inquirer/confirm": "^2.0.14",
"@oclif/core": "livecycle/oclif-core-patched-for-preevy#v3.12.0-preevy-patch-10",
"@oclif/plugin-help": "^5",
"@preevy/cli-common": "0.0.58",
"@preevy/common": "0.0.58",
"@preevy/compose-tunnel-agent": "0.0.58",
"@preevy/core": "0.0.58",
"@preevy/driver-azure": "0.0.58",
"@preevy/driver-gce": "0.0.58",
"@preevy/driver-kube-pod": "0.0.58",
"@preevy/driver-lightsail": "0.0.58",
"@preevy/plugin-github": "0.0.58",
"disposablestack": "^1.1.2",
"@inquirer/prompts": "^3.3.0",
"inquirer-autocomplete-standalone": "^0.8.1",
"iter-tools-es": "^7.5.3",
"lodash-es": "^4.17.21",
"shell-escape": "^0.2.0",
"yaml": "^2.3.2"
},
"devDependencies": {
"@swc/core": "^1.3.100",
"@swc/helpers": "^0.5.3",
"@types/cli-progress": "^3.11.5",
"@types/inquirer": "^8.0.0",
"@types/inquirer-autocomplete-prompt": "^3.0.3",
"@types/lodash-es": "^4.17.12",
"@types/node": "18",
"@types/shell-escape": "^0.2.1",
"@typescript-eslint/eslint-plugin": "6.14.0",
"@typescript-eslint/parser": "6.14.0",
"eslint": "^8.36.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-oclif": "^4",
"eslint-config-oclif-typescript": "^1.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "27.4.2",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"jest": "29.7.0",
"lint-staged": "^15.2.0",
"oclif": "^4.0.4",
"pkg": "^5.8.1",
"shx": "^0.3.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.5.0",
"typescript": "^5.3.3"
},
"oclif": {
"bin": "preevy",
"dirname": "preevy",
"commands": "./dist/commands",
"helpClass": "./dist/help.js",
"hooks": {
"init": [
"./dist/hooks/init/sync-logging.js",
"./dist/hooks/init/telemetry.js",
"./dist/hooks/init/load-plugins.js"
],
"prerun": [
"./dist/hooks/prerun/telemetry.js"
],
"postrun": [
"./dist/hooks/postrun/telemetry.js"
]
},
"topicSeparator": " "
},
"pkg": {
"assets": [
"../*/static/**/*",
"../compose-tunnel-agent/out/**/*",
"../compose-tunnel-agent/package.json",
"../compose-tunnel-agent/Dockerfile",
"../compose-tunnel-agent/.dockerignore"
],
"scripts": [
"dist/commands/**/*.js",
"dist/hooks/**/*.js"
]
},
"scripts": {
"build": "yarn clean && tsc -b",
"clean": "shx rm -rf dist",
"lint": "eslint . --ext .ts --cache",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "yarn lint",
"prepack": "yarn build && ./scripts/validate-tsconfig.cjs && oclif manifest && oclif readme --dir docs --multi && ./scripts/prepare_and_copy_docs.sh",
"cli": "./bin/dev",
"version": "oclif readme && git add README.md"
},
"engines": {
"node": ">=18.0.0"
},
"bugs": "https://github.com/livecycle/preevy/issues",
"keywords": [
"preview"
],
"types": "dist/index.d.ts"
}