-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
104 lines (104 loc) · 3.1 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
{
"name": "@cdktf/provider-postgresql",
"description": "Prebuilt postgresql Provider for Terraform CDK (cdktf)",
"repository": {
"type": "git",
"url": "https://github.com/hashicorp/cdktf-provider-postgresql.git"
},
"scripts": {
"clobber": "npx projen clobber",
"compile": "jsii --silence-warnings=reserved-word",
"test": "jest --passWithNoTests",
"build": "npx projen build",
"bump": "npx projen bump",
"unbump": "npx projen unbump",
"publish:github": "npx projen publish:github",
"default": "npx projen default",
"watch": "npx projen watch",
"package": "npx projen package",
"compat": "npx projen compat",
"publish:npm": "npx projen publish:npm",
"publish:maven": "npx projen publish:maven",
"publish:pypi": "npx projen publish:pypi",
"publish:nuget": "npx projen publish:nuget",
"docgen": "npx projen docgen",
"release": "npx projen release",
"upgrade": "npx projen upgrade",
"upgrade-projen": "npx projen upgrade-projen",
"projen": "npx projen",
"fetch": "mkdir -p src && rm -rf ./src/* && cdktf get && cp -R .gen/providers/postgresql/* ./src/",
"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": {
"@cdktf/provider-project": "^0.2.8",
"@types/node": "^12.19.0",
"cdktf": "^0.7",
"cdktf-cli": "^0.7",
"constructs": "^10.0.0",
"dot-prop": "^5.2.0",
"jsii": "1.37.0",
"jsii-diff": "^1.41.0",
"jsii-docgen": "^3.8.10",
"jsii-pacmak": "^1.41.0",
"npm-check-updates": "^11",
"projen": "^0.31.13",
"standard-version": "^9",
"typescript": "^4.4.4"
},
"peerDependencies": {
"cdktf": "^0.7",
"constructs": "^10.0.0"
},
"bundledDependencies": [],
"keywords": [
"cdk",
"cdktf",
"postgresql",
"provider",
"terraform"
],
"engines": {
"node": ">= 12.19.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.postgresql",
"maven": {
"groupId": "com.hashicorp",
"artifactId": "cdktf-provider-postgresql"
}
},
"python": {
"distName": "cdktf-cdktf-provider-postgresql",
"module": "cdktf_cdktf_provider_postgresql"
},
"dotnet": {
"namespace": "HashiCorp.Cdktf.Providers.Postgresql",
"packageId": "HashiCorp.Cdktf.Providers.Postgresql"
}
},
"tsc": {
"outDir": "lib",
"rootDir": "src"
}
},
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
}