forked from hashicorp/terraform-cdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 2.95 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
{
"name": "cdktf",
"version": "0.0.0",
"description": "Cloud Development Kit for Terraform",
"scripts": {
"build": "jsii --silence-warnings reserved-word",
"watch": "jsii -w --silence-warnings reserved-word",
"watch-preserve-output": "tsc -w --preserveWatchOutput",
"package": "jsii-pacmak",
"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",
"dist-clean": "rm -rf dist"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"jsii": {
"outdir": "dist",
"versionFormat": "short",
"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"
],
"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"
},
"ignorePatterns": [
"node_modules",
"dist",
"coverage"
]
},
"license": "MPL-2.0",
"devDependencies": {
"@types/camelcase": "^5.2.0",
"@types/jest": "^25.1.2",
"@types/node": "^14.0.26",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"constructs": "^3.3.75",
"eslint": "^7.29.0",
"jest": "^26.6.3",
"jsii": "^1.29.0",
"jsii-pacmak": "^1.29.0",
"json-schema-to-typescript": "^8.0.1",
"typescript": "^3.9.7"
},
"jest": {
"collectCoverage": true,
"moduleFileExtensions": [
"js"
]
},
"dependencies": {
"archiver": "5.3.0",
"camelcase": "^6.2.0"
},
"bundledDependencies": [
"archiver",
"camelcase"
],
"stability": "experimental",
"peerDependencies": {
"constructs": "^3.3.75"
}
}