This repository has been archived by the owner on Jul 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 1.93 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
{
"name": "terrastack-cli",
"version": "0.15.0",
"description": "Terrastack - A Polyglot Terraform CLI",
"bin": {
"terrastack": "bin/terrastack"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint . --ext .ts",
"test": "jest && yarn lint",
"package": "./package.sh"
},
"keywords": [
"terrastack",
"terraform",
"cdk",
"cloud",
"aws",
"azure",
"gcp"
],
"author": "Sebastian Korfmann",
"license": "Apache-2.0",
"jest": {
"collectCoverage": true,
"moduleFileExtensions": [
"js"
]
},
"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/camelcase": 0,
"@typescript-eslint/no-this-alias": 0
},
"ignorePatterns": [
"node_modules",
"dist",
"coverage"
]
},
"dependencies": {
"@aws-cdk/core": "^1.27.0",
"@aws-cdk/cx-api": "^1.24.0",
"@types/json-schema": "^7.0.4",
"@types/node": "^13.7.7",
"@types/yaml": "^1.2.0",
"@types/yargs": "^15.0.4",
"change-case": "^4.1.1",
"codemaker": "^1.0.0",
"crypto": "^1.0.1",
"fs": "^0.0.1-security",
"fs-extra": "^8.1.0",
"jsii": "^1.0.0",
"jsii-pacmak": "^1.0.0",
"json-schema": "^0.2.5",
"path": "^0.12.7",
"sscaff": "^1.2.0",
"typescript": "^3.8.3",
"yaml": "^1.7.2",
"yargs": "^15.1.0"
},
"devDependencies": {
"@types/fs-extra": "^8.1.0",
"@types/jest": "^25.1.4",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"jest": "^25.1.0"
}
}