-
Notifications
You must be signed in to change notification settings - Fork 457
/
package.json
140 lines (140 loc) · 4.29 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
{
"name": "cdktf",
"version": "0.0.0",
"description": "Cloud Development Kit for Terraform",
"scripts": {
"build": "jsii --silence-warnings reserved-word",
"docs": "node ./scripts/generate-documentation.js",
"watch": "jsii -w --silence-warnings reserved-word",
"watch-preserve-output": "tsc -w --preserveWatchOutput",
"package": "jsii-pacmak && bash ./go-copyright-header.sh",
"package:python": "jsii-pacmak --targets python",
"package:java": "jsii-pacmak --targets java",
"package:dotnet": "jsii-pacmak --targets dotnet",
"package:js": "jsii-pacmak --targets js",
"package:go": "jsii-pacmak --targets go",
"lint": "eslint . --ext .ts",
"test": "jest --passWithNoTests && yarn lint",
"test:ci": "jest --ci --passWithNoTests && yarn lint",
"dist-clean": "rm -rf dist"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"cdk",
"cdktf",
"terraform"
],
"jsii": {
"outdir": "dist",
"versionFormat": "short",
"license": "MPL-2.0",
"author": {
"name": "HashiCorp, Inc.",
"organization": true
},
"targets": {
"python": {
"distName": "cdktf",
"module": "cdktf"
},
"java": {
"package": "com.hashicorp.cdktf",
"maven": {
"groupId": "com.hashicorp",
"artifactId": "cdktf"
}
},
"dotnet": {
"packageId": "HashiCorp.Cdktf",
"namespace": "HashiCorp.Cdktf"
},
"go": {
"moduleName": "github.com/hashicorp/terraform-cdk-go",
"packageName": "cdktf"
}
}
},
"author": {
"name": "HashiCorp",
"url": "https://hashicorp.com"
},
"homepage": "https://github.com/hashicorp/terraform-cdk",
"repository": {
"type": "git",
"url": "https://github.com/hashicorp/terraform-cdk.git",
"directory": "packages/cdktf"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"jsdoc",
"no-instanceof"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/no-use-before-define": 0,
"@typescript-eslint/no-empty-interface": 0,
"@typescript-eslint/explicit-module-boundary-types": 0,
"no-sequences": "error",
"jsdoc/require-jsdoc": [
"error",
{
"contexts": [
"ClassDeclaration"
]
}
],
"no-instanceof/no-instanceof": "error"
},
"ignorePatterns": [
"node_modules",
"dist",
"coverage",
"test",
"*.test*.ts"
]
},
"license": "MPL-2.0",
"devDependencies": {
"@types/archiver": "6.0.3",
"@types/jest": "29.5.14",
"@types/json-stable-stringify": "1.1.0",
"@types/minimatch": "5.1.2",
"@types/node": "18.19.67",
"@types/semver": "7.5.8",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"constructs": "10.3.0",
"eslint": "7.32.0",
"eslint-plugin-jsdoc": "39.9.1",
"eslint-plugin-no-instanceof": "1.0.1",
"jest": "29.7.0",
"jsii": "5.4.31",
"jsii-docgen": "10.4.20",
"jsii-pacmak": "1.102.0",
"ts-jest": "29.2.5",
"typescript": "5.2.2"
},
"dependencies": {
"archiver": "6.0.2",
"json-stable-stringify": "1.1.1",
"semver": "7.6.3"
},
"bundledDependencies": [
"archiver",
"json-stable-stringify",
"semver"
],
"stability": "experimental",
"peerDependencies": {
"constructs": "^10.3.0"
}
}