loglevel-mixin 7.2.3 → 7.2.4

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 (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +12 -5
package/README.md CHANGED
@@ -92,7 +92,7 @@ Type: [Object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Globa
92
92
 
93
93
  ## defaultLogLevels
94
94
 
95
- default log levels
95
+ Default log levels
96
96
 
97
97
  * trace
98
98
  * debug
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "loglevel-mixin",
3
- "version": "7.2.3",
3
+ "version": "7.2.4",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -26,7 +26,7 @@
26
26
  "license": "0BSD",
27
27
  "scripts": {
28
28
  "prepare": "node --run prepare:typescript",
29
- "prepare:typescript": "tsc --allowJs --declaration --emitDeclarationOnly --declarationDir types --resolveJsonModule --target es2024 --lib esnext -m esnext --module nodenext --moduleResolution nodenext --rootDir src ./src**/*.mjs",
29
+ "prepare:typescript": "tsc --allowJs --declaration --emitDeclarationOnly --declarationDir types --resolveJsonModule --target esnext -m esnext --module nodenext --moduleResolution nodenext --rootDir src ./src**/*.mjs",
30
30
  "test": "node --run test:browser-ava && node --run test:ava",
31
31
  "test:ava": "ava --timeout 4m tests/*-ava.mjs tests/*-ava-node.mjs",
32
32
  "test:browser-ava": "browser-ava --headless --no-keep-open tests/*-ava.mjs tests/*-ava-browser.mjs",
@@ -34,11 +34,18 @@
34
34
  "docs": "documentation readme --section=API ./src**/*.mjs",
35
35
  "lint": "node --run lint:docs && node --run lint:typescript",
36
36
  "lint:docs": "documentation lint ./src**/*.mjs",
37
- "lint:typescript": "tsc --allowJs --checkJs --noEmit --resolveJsonModule --target es2024 --lib esnext -m esnext --module nodenext --moduleResolution nodenext ./src**/*.mjs"
37
+ "lint:typescript": "tsc --allowJs --checkJs --noEmit --resolveJsonModule --target esnext -m esnext --module nodenext --moduleResolution nodenext ./src**/*.mjs"
38
+ },
39
+ "dependencies": {
40
+ "ava": "^6.3.0",
41
+ "content-entry": "^13.0.4",
42
+ "fetch-rate-limit-util": "^4.4.1",
43
+ "repository-provider": "^35.3.4",
44
+ "repository-provider-test-support": "^3.1.9"
38
45
  },
39
46
  "devDependencies": {
40
- "ava": "^6.2.0",
41
- "browser-ava": "^2.3.20",
47
+ "ava": "^6.3.0",
48
+ "browser-ava": "^2.3.26",
42
49
  "c8": "^10.1.3",
43
50
  "documentation": "^14.0.3",
44
51
  "semantic-release": "^24.2.3",