-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
122 lines (122 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
{
"name": "@cdktf/provider-archive",
"description": "Prebuilt archive Provider for Terraform CDK (cdktf)",
"repository": {
"type": "git",
"url": "https://github.com/hashicorp/cdktf-provider-archive.git"
},
"scripts": {
"build": "npx projen build",
"bump": "npx projen bump",
"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",
"upgrade": "npx projen upgrade",
"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": {
"@cdktf/provider-project": "^0.2.8",
"@types/node": "^14",
"cdktf": "^0.13.0",
"cdktf-cli": "^0.13.0",
"constructs": "^10.0.0",
"dot-prop": "^5.2.0",
"jsii": "^1.53.0",
"jsii-diff": "^1.69.0",
"jsii-docgen": "^3.8.31",
"jsii-pacmak": "^1.69.0",
"npm-check-updates": "^15",
"projen": "^0.63.4",
"standard-version": "^9",
"typescript": "^4.8.4"
},
"peerDependencies": {
"cdktf": "^0.13.0",
"constructs": "^10.0.0"
},
"keywords": [
"archive",
"cdk",
"cdktf",
"provider",
"terraform"
],
"engines": {
"node": ">= 14.17.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.archive",
"maven": {
"groupId": "com.hashicorp",
"artifactId": "cdktf-provider-archive"
}
},
"python": {
"distName": "cdktf-cdktf-provider-archive",
"module": "cdktf_cdktf_provider_archive"
},
"dotnet": {
"namespace": "HashiCorp.Cdktf.Providers.Archive",
"packageId": "HashiCorp.Cdktf.Providers.Archive"
},
"go": {
"moduleName": "github.com/hashicorp/cdktf-provider-archive-go",
"packageName": "archive"
}
},
"tsc": {
"outDir": "lib",
"rootDir": "src"
}
},
"cdktf": {
"provider": {
"name": "registry.terraform.io/hashicorp/archive",
"version": "2.2.0"
}
},
"resolutions": {
"@types/responselike": "1.0.0",
"got": "12.3.1",
"@types/prettier": "2.6.0"
},
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
}