-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
82 lines (82 loc) · 2.09 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
{
"name": "@bifravst/cloudformation-cleaner",
"version": "0.0.0-development",
"description": "Cleans old CloudFormation stacks and log groups, e.g. from CI runs",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/bifravst/cloudformation-cleaner.git"
},
"keywords": [
"aws",
"cloudformation"
],
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/bifravst/cloudformation-cleaner/issues"
},
"homepage": "https://github.com/bifravst/cloudformation-cleaner#readme",
"devDependencies": {
"@aws-sdk/client-cloudformation": "3.734.0",
"@aws-sdk/client-lambda": "3.734.0",
"@bifravst/eslint-config-typescript": "6.1.20",
"@bifravst/prettier-config": "1.1.4",
"@commitlint/config-conventional": "19.6.0",
"@swc/cli": "0.6.0",
"@swc/core": "1.10.9",
"@types/glob": "8.1.0",
"@types/node": "22.10.10",
"@types/yazl": "2.4.5",
"aws-cdk-lib": "2.176.0",
"cdk": "2.176.0",
"constructs": "10.4.2",
"glob": "11.0.1",
"husky": "9.1.7",
"tsx": "4.19.2",
"yazl": "3.3.1"
},
"lint-staged": {
"*.{md,json,yaml,yml}": [
"prettier --write"
],
"*.{ts,tsx}": [
"prettier --write",
"eslint"
]
},
"engines": {
"node": ">=22",
"npm": ">=10"
},
"release": {
"branches": [
"saga"
],
"remoteTags": true,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"successCommentCondition": false,
"failTitle": false
}
]
]
},
"dependencies": {
"@aws-sdk/client-cloudwatch-logs": "3.734.0",
"@aws-sdk/client-iam": "3.734.0",
"@aws-sdk/client-s3": "3.734.0",
"@aws-sdk/client-ssm": "3.734.0",
"@bifravst/cloudformation-helpers": "9.1.1",
"@bifravst/from-env": "3.0.2"
},
"prettier": "@bifravst/prettier-config"
}