-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
164 lines (164 loc) · 4.4 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
{
"name": "@cdktf/provider-kubernetes",
"description": "Prebuilt kubernetes Provider for Terraform CDK (cdktf)",
"repository": {
"type": "git",
"url": "https://github.com/cdktf/cdktf-provider-kubernetes.git"
},
"scripts": {
"build": "npx projen build",
"bump": "npx projen bump",
"check-if-new-provider-version": "npx projen check-if-new-provider-version",
"clobber": "npx projen clobber",
"compat": "npx projen compat",
"compile": "jsii --silence-warnings=reserved-word",
"default": "npx projen default",
"docgen": "npx projen docgen",
"eject": "npx projen eject",
"fetch": "npx projen fetch",
"package": "npx projen package",
"package-all": "npx projen package-all",
"package:dotnet": "npx projen package:dotnet",
"package:go": "npx projen package:go",
"package:java": "npx projen package:java",
"package:js": "npx projen package:js",
"package:python": "npx projen package:python",
"post-compile": "npx projen post-compile",
"post-upgrade": "npx projen post-upgrade",
"pre-compile": "npx projen pre-compile",
"release": "npx projen release",
"test": "jest --passWithNoTests",
"unbump": "npx projen unbump",
"unconditional-bump": "npx projen unconditional-bump",
"upgrade": "npx projen upgrade",
"validate-workflows": "npx projen validate-workflows",
"watch": "npx projen watch",
"projen": "npx projen",
"commit": "git add -A && git commit -am \"Update provider\" || echo \"No changes to commit\"",
"should-release": "! git diff --exit-code v$(cat version.json | jq -r '.version') ./src ./package.json",
"prebump": "yarn fetch && yarn compile && yarn run commit && yarn run should-release",
"build-provider": "yarn fetch && yarn compile && yarn docgen"
},
"author": {
"name": "HashiCorp",
"url": "https://hashicorp.com",
"organization": true
},
"devDependencies": {
"@action-validator/cli": "^0.6.0",
"@action-validator/core": "^0.6.0",
"@actions/core": "^1.1.0",
"@cdktf/provider-project": "^0.6.0",
"@types/node": "^18",
"cdktf": "^0.20.0",
"cdktf-cli": "^0.20.0",
"commit-and-tag-version": "^12",
"constructs": "^10.3.0",
"dot-prop": "^5.2.0",
"jsii": "~5.4.0",
"jsii-diff": "^1.104.0",
"jsii-docgen": "^10.2.3",
"jsii-pacmak": "^1.104.0",
"jsii-rosetta": "~5.4.0",
"projen": "^0.90.2",
"semver": "^7.5.3",
"typescript": "~5.4.0"
},
"peerDependencies": {
"cdktf": "^0.20.0",
"constructs": "^10.3.0"
},
"resolutions": {
"@types/yargs": "17.0.13"
},
"keywords": [
"cdk",
"cdktf",
"kubernetes",
"provider",
"terraform"
],
"engines": {
"node": ">= 18.12.0"
},
"main": "lib/index.js",
"license": "MPL-2.0",
"publishConfig": {
"access": "public"
},
"version": "0.0.0",
"types": "lib/index.d.ts",
"stability": "stable",
"jsii": {
"outdir": "dist",
"targets": {
"java": {
"package": "com.hashicorp.cdktf.providers.kubernetes",
"maven": {
"groupId": "com.hashicorp",
"artifactId": "cdktf-provider-kubernetes"
}
},
"python": {
"distName": "cdktf-cdktf-provider-kubernetes",
"module": "cdktf_cdktf_provider_kubernetes"
},
"dotnet": {
"namespace": "HashiCorp.Cdktf.Providers.Kubernetes",
"packageId": "HashiCorp.Cdktf.Providers.Kubernetes"
},
"go": {
"moduleName": "github.com/cdktf/cdktf-provider-kubernetes-go",
"packageName": "kubernetes"
}
},
"tsc": {
"outDir": "lib",
"rootDir": "src"
}
},
"standard-version": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"section": "Updates"
},
{
"type": "docs",
"hidden": true
},
{
"type": "style",
"hidden": true
},
{
"type": "refactor",
"hidden": true
},
{
"type": "perf",
"hidden": true
},
{
"type": "test",
"hidden": true
}
]
},
"cdktf": {
"isDeprecated": false,
"provider": {
"name": "registry.terraform.io/hashicorp/kubernetes",
"version": "2.33.0"
}
},
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
}