@thi.ng/bench 3.1.3 → 3.1.6

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/README.md +2 -2
  3. package/package.json +18 -18
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2021-12-13T10:26:00Z
3
+ - **Last updated**: 2022-05-07T11:33:35Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/README.md CHANGED
@@ -68,7 +68,7 @@ node --experimental-repl-await
68
68
  > const bench = await import("@thi.ng/bench");
69
69
  ```
70
70
 
71
- Package sizes (gzipped, pre-treeshake): ESM: 1.36 KB
71
+ Package sizes (gzipped, pre-treeshake): ESM: 1.35 KB
72
72
 
73
73
  ## Dependencies
74
74
 
@@ -227,4 +227,4 @@ If this project contributes to an academic publication, please cite it as:
227
227
 
228
228
  ## License
229
229
 
230
- © 2018 - 2021 Karsten Schmidt // Apache Software License 2.0
230
+ © 2018 - 2022 Karsten Schmidt // Apache Software License 2.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/bench",
3
- "version": "3.1.3",
3
+ "version": "3.1.6",
4
4
  "description": "Benchmarking utilities w/ various statistics & formatters (CSV, Markdown etc.)",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -34,16 +34,16 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "dependencies": {
37
- "@thi.ng/api": "^8.3.3"
37
+ "@thi.ng/api": "^8.3.6"
38
38
  },
39
39
  "devDependencies": {
40
- "@microsoft/api-extractor": "^7.19.2",
41
- "@thi.ng/testament": "^0.2.3",
42
- "@types/node": "^16.11.12",
40
+ "@microsoft/api-extractor": "^7.23.1",
41
+ "@thi.ng/testament": "^0.2.6",
42
+ "@types/node": "^17.0.31",
43
43
  "rimraf": "^3.0.2",
44
44
  "tools": "^0.0.1",
45
- "typedoc": "^0.22.10",
46
- "typescript": "^4.5.3"
45
+ "typedoc": "^0.22.15",
46
+ "typescript": "^4.6.4"
47
47
  },
48
48
  "keywords": [
49
49
  "benchmark",
@@ -77,34 +77,34 @@
77
77
  ],
78
78
  "exports": {
79
79
  ".": {
80
- "import": "./index.js"
80
+ "default": "./index.js"
81
81
  },
82
82
  "./api": {
83
- "import": "./api.js"
83
+ "default": "./api.js"
84
84
  },
85
85
  "./bench": {
86
- "import": "./bench.js"
86
+ "default": "./bench.js"
87
87
  },
88
88
  "./benchmark": {
89
- "import": "./benchmark.js"
89
+ "default": "./benchmark.js"
90
90
  },
91
91
  "./format/csv": {
92
- "import": "./format/csv.js"
92
+ "default": "./format/csv.js"
93
93
  },
94
94
  "./format/default": {
95
- "import": "./format/default.js"
95
+ "default": "./format/default.js"
96
96
  },
97
97
  "./format/markdown": {
98
- "import": "./format/markdown.js"
98
+ "default": "./format/markdown.js"
99
99
  },
100
100
  "./now": {
101
- "import": "./now.js"
101
+ "default": "./now.js"
102
102
  },
103
103
  "./suite": {
104
- "import": "./suite.js"
104
+ "default": "./suite.js"
105
105
  },
106
106
  "./timed": {
107
- "import": "./timed.js"
107
+ "default": "./timed.js"
108
108
  }
109
109
  },
110
110
  "thi.ng": {
@@ -114,5 +114,5 @@
114
114
  ],
115
115
  "year": 2018
116
116
  },
117
- "gitHead": "2db9dd34c0c2c60cbfde3dad0bca352b20292f5c\n"
117
+ "gitHead": "cf084be5fd5932226054d2dd32bad35481379f5d\n"
118
118
  }