@gammarers/aws-budgets-notification 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,147 @@
1
+ {
2
+ "name": "@gammarers/aws-budgets-notification",
3
+ "description": "AWS Budgets Notification",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "https://github.com/gammarers/aws-budgets-notification.git"
7
+ },
8
+ "scripts": {
9
+ "build": "npx projen build",
10
+ "bump": "npx projen bump",
11
+ "clobber": "npx projen clobber",
12
+ "compat": "npx projen compat",
13
+ "compile": "npx projen compile",
14
+ "default": "npx projen default",
15
+ "docgen": "npx projen docgen",
16
+ "eject": "npx projen eject",
17
+ "eslint": "npx projen eslint",
18
+ "package": "npx projen package",
19
+ "package-all": "npx projen package-all",
20
+ "package:dotnet": "npx projen package:dotnet",
21
+ "package:js": "npx projen package:js",
22
+ "package:python": "npx projen package:python",
23
+ "post-compile": "npx projen post-compile",
24
+ "post-upgrade": "npx projen post-upgrade",
25
+ "pre-compile": "npx projen pre-compile",
26
+ "release": "npx projen release",
27
+ "test": "npx projen test",
28
+ "test:watch": "npx projen test:watch",
29
+ "unbump": "npx projen unbump",
30
+ "upgrade": "npx projen upgrade",
31
+ "watch": "npx projen watch",
32
+ "projen": "npx projen"
33
+ },
34
+ "author": {
35
+ "name": "yicr",
36
+ "email": "yicr@users.noreply.github.com",
37
+ "organization": false
38
+ },
39
+ "devDependencies": {
40
+ "@types/jest": "^29.5.12",
41
+ "@types/node": "^18",
42
+ "@typescript-eslint/eslint-plugin": "^6",
43
+ "@typescript-eslint/parser": "^6",
44
+ "aws-cdk-lib": "2.80.0",
45
+ "constructs": "10.0.5",
46
+ "eslint": "^8",
47
+ "eslint-import-resolver-typescript": "^3.6.1",
48
+ "eslint-plugin-import": "^2.29.1",
49
+ "jest": "^29.7.0",
50
+ "jest-junit": "^15",
51
+ "jsii": "5.3.x",
52
+ "jsii-diff": "^1.99.0",
53
+ "jsii-docgen": "^10.4.14",
54
+ "jsii-pacmak": "^1.99.0",
55
+ "jsii-rosetta": "5.3.x",
56
+ "projen": "^0.82.4",
57
+ "standard-version": "^9",
58
+ "ts-jest": "^29.1.4",
59
+ "ts-node": "^10.9.2",
60
+ "typescript": "5.3.x"
61
+ },
62
+ "peerDependencies": {
63
+ "aws-cdk-lib": "^2.80.0",
64
+ "constructs": "^10.0.5"
65
+ },
66
+ "keywords": [
67
+ "aws",
68
+ "aws-cdk",
69
+ "budgets",
70
+ "cdk",
71
+ "notification",
72
+ "slack",
73
+ "sns"
74
+ ],
75
+ "engines": {
76
+ "node": ">= 18.0.0"
77
+ },
78
+ "main": "lib/index.js",
79
+ "license": "Apache-2.0",
80
+ "publishConfig": {
81
+ "access": "public"
82
+ },
83
+ "version": "1.2.0",
84
+ "jest": {
85
+ "coverageProvider": "v8",
86
+ "testMatch": [
87
+ "<rootDir>/src/**/__tests__/**/*.ts?(x)",
88
+ "<rootDir>/@(test|src)/**/*(*.)@(spec|test).ts?(x)"
89
+ ],
90
+ "clearMocks": true,
91
+ "collectCoverage": true,
92
+ "coverageReporters": [
93
+ "json",
94
+ "lcov",
95
+ "clover",
96
+ "cobertura",
97
+ "text"
98
+ ],
99
+ "coverageDirectory": "coverage",
100
+ "coveragePathIgnorePatterns": [
101
+ "/node_modules/"
102
+ ],
103
+ "testPathIgnorePatterns": [
104
+ "/node_modules/"
105
+ ],
106
+ "watchPathIgnorePatterns": [
107
+ "/node_modules/"
108
+ ],
109
+ "reporters": [
110
+ "default",
111
+ [
112
+ "jest-junit",
113
+ {
114
+ "outputDirectory": "test-reports"
115
+ }
116
+ ]
117
+ ],
118
+ "transform": {
119
+ "^.+\\.[t]sx?$": [
120
+ "ts-jest",
121
+ {
122
+ "tsconfig": "tsconfig.dev.json"
123
+ }
124
+ ]
125
+ }
126
+ },
127
+ "types": "lib/index.d.ts",
128
+ "stability": "stable",
129
+ "jsii": {
130
+ "outdir": "dist",
131
+ "targets": {
132
+ "python": {
133
+ "distName": "gammarer.aws-budgets-notification",
134
+ "module": "gammarer.aws_budgets_notification"
135
+ },
136
+ "dotnet": {
137
+ "namespace": "Gammarer.CDK.AWS",
138
+ "packageId": "Gammarer.CDK.AWS.BudgetNotification"
139
+ }
140
+ },
141
+ "tsc": {
142
+ "outDir": "lib",
143
+ "rootDir": "src"
144
+ }
145
+ },
146
+ "//": "~~ Generated by projen. To modify, edit .projenrc.ts and run \"npx projen\"."
147
+ }