cdk-cost-analyzer 0.1.28 → 0.1.29
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.
|
@@ -2,35 +2,35 @@
|
|
|
2
2
|
"entries": {
|
|
3
3
|
"AmazonS3:US East (N. Virginia):storageClass:General Purpose|volumeType:Standard": {
|
|
4
4
|
"price": 0.023,
|
|
5
|
-
"timestamp":
|
|
5
|
+
"timestamp": 1770930014058
|
|
6
6
|
},
|
|
7
7
|
"AmazonDynamoDB:US East (N. Virginia):group:DDB-ReadUnits|productFamily:Amazon DynamoDB PayPerRequest Throughput": {
|
|
8
8
|
"price": 0.023,
|
|
9
|
-
"timestamp":
|
|
9
|
+
"timestamp": 1770930014064
|
|
10
10
|
},
|
|
11
11
|
"AmazonDynamoDB:US East (N. Virginia):group:DDB-WriteUnits|productFamily:Amazon DynamoDB PayPerRequest Throughput": {
|
|
12
12
|
"price": 0.023,
|
|
13
|
-
"timestamp":
|
|
13
|
+
"timestamp": 1770930014064
|
|
14
14
|
},
|
|
15
15
|
"AmazonEC2:US East (N. Virginia):capacitystatus:Used|instanceType:t3.micro|operatingSystem:Linux|preInstalledSw:NA|tenancy:Shared": {
|
|
16
16
|
"price": 0.023,
|
|
17
|
-
"timestamp":
|
|
17
|
+
"timestamp": 1770930014073
|
|
18
18
|
},
|
|
19
19
|
"AWSLambda:US East (N. Virginia):group:AWS-Lambda-Requests": {
|
|
20
20
|
"price": 0.023,
|
|
21
|
-
"timestamp":
|
|
21
|
+
"timestamp": 1770930014082
|
|
22
22
|
},
|
|
23
23
|
"AWSLambda:US East (N. Virginia):group:AWS-Lambda-Duration": {
|
|
24
24
|
"price": 0.023,
|
|
25
|
-
"timestamp":
|
|
25
|
+
"timestamp": 1770930014082
|
|
26
26
|
},
|
|
27
27
|
"AmazonS3:EU (Frankfurt):storageClass:General Purpose|volumeType:Standard": {
|
|
28
28
|
"price": 0.023,
|
|
29
|
-
"timestamp":
|
|
29
|
+
"timestamp": 1770930021336
|
|
30
30
|
},
|
|
31
31
|
"AmazonS3:invalid-region-123:storageClass:General Purpose|volumeType:Standard": {
|
|
32
32
|
"price": 0.023,
|
|
33
|
-
"timestamp":
|
|
33
|
+
"timestamp": 1770930021376
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
}
|
package/dist/releasetag.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
v0.1.
|
|
1
|
+
v0.1.29
|
package/package.json
CHANGED
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
"prepare": "npx projen prepare",
|
|
27
27
|
"release": "npx projen release",
|
|
28
28
|
"test": "npx projen test",
|
|
29
|
+
"test:integration": "npx projen test:integration",
|
|
29
30
|
"test:silent": "npx projen test:silent",
|
|
30
31
|
"test:watch": "npx projen test:watch",
|
|
31
32
|
"unbump": "npx projen unbump",
|
|
@@ -82,7 +83,7 @@
|
|
|
82
83
|
"publishConfig": {
|
|
83
84
|
"access": "public"
|
|
84
85
|
},
|
|
85
|
-
"version": "0.1.
|
|
86
|
+
"version": "0.1.29",
|
|
86
87
|
"bugs": {
|
|
87
88
|
"url": "https://github.com/buildinginthecloud/cdk-cost-analyzer/issues"
|
|
88
89
|
},
|
|
@@ -97,6 +98,10 @@
|
|
|
97
98
|
"node-addons"
|
|
98
99
|
]
|
|
99
100
|
},
|
|
101
|
+
"testPathIgnorePatterns": [
|
|
102
|
+
"/node_modules/",
|
|
103
|
+
"\\.integration\\.test\\.ts$"
|
|
104
|
+
],
|
|
100
105
|
"testMatch": [
|
|
101
106
|
"<rootDir>/@(src|test)/**/*(*.)@(spec|test).ts?(x)",
|
|
102
107
|
"<rootDir>/@(src|test)/**/__tests__/**/*.ts?(x)",
|
|
@@ -114,10 +119,8 @@
|
|
|
114
119
|
],
|
|
115
120
|
"coverageDirectory": "coverage",
|
|
116
121
|
"coveragePathIgnorePatterns": [
|
|
117
|
-
"/node_modules/"
|
|
118
|
-
|
|
119
|
-
"testPathIgnorePatterns": [
|
|
120
|
-
"/node_modules/"
|
|
122
|
+
"/node_modules/",
|
|
123
|
+
"\\.integration\\.test\\.ts$"
|
|
121
124
|
],
|
|
122
125
|
"watchPathIgnorePatterns": [
|
|
123
126
|
"/node_modules/"
|