This repository has been archived by the owner on Jan 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
124 lines (124 loc) · 3.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
{
"name": "@pocket-tools/terraform-modules",
"version": "0.0.0-development",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MPL-2.0",
"scripts": {
"build:dev": "rm -rf dist && NODE_ENV=development npm run synth",
"synth": "cdktf synth",
"compile": "tsc --pretty",
"watch": "tsc -w",
"test-ci": "node --expose-gc ./node_modules/.bin/jest --ci --maxWorkers=4 --logHeapUsage",
"test:watch": "npm test -- --watch --watch-extensions ts -R min --watch-files src",
"test": "jest",
"upgrade": "npm i cdktf@latest cdktf-cli@latest",
"upgrade:next": "npm i cdktf@next cdktf-cli@next",
"lint-check": "eslint --fix-dry-run \"src/**/*.ts\"",
"lint-fix": "eslint --fix \"src/**/*.ts\"",
"semantic-release": "semantic-release"
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"BREAKING"
]
}
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"BREAKING"
]
},
"writerOpts": {
"commitsSort": [
"subject",
"scope"
]
}
}
],
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md"
]
}
],
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/exec",
{
"prepareCmd": "echo ${nextRelease.version} > .version"
}
]
]
},
"engines": {
"node": ">=16.20"
},
"dependencies": {
"@cdktf/provider-archive": "10.0.0",
"@cdktf/provider-aws": "19.1.1",
"@cdktf/provider-local": "10.0.0",
"@cdktf/provider-newrelic": "12.0.0",
"@cdktf/provider-null": "10.0.0",
"@cdktf/provider-pagerduty": "13.0.0",
"@cdktf/provider-time": "10.0.0",
"@sinonjs/commons": "3.0.0",
"cdktf": "0.20.1",
"cdktf-cli": "0.20.1",
"constructs": "10.3.0",
"parse-domain": "5.0.0"
},
"devDependencies": {
"@pocket-tools/eslint-config": "2.1.7",
"@pocket-tools/tsconfig": "2.0.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "10.0.1",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "9.0.4",
"@semantic-release/npm": "10.0.4",
"@semantic-release/release-notes-generator": "11.0.4",
"@types/chai": "4.3.5",
"@types/jest": "29.5.3",
"@types/node": "18.17.0",
"chai": "4.3.7",
"conventional-changelog-conventionalcommits": "6.1.0",
"jest": "29.6.1",
"semantic-release": "21.0.7",
"sinon": "15.2.0",
"ts-jest": "29.1.1",
"ts-node": "10.9.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pocket/terraform-modules.git"
}
}