@jonloucks/variants-ts 1.1.0 → 1.1.1
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 +14 -10
- package/version.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jonloucks/variants-ts",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Node.js Typescript Configuration Library, normalize how configuration is loaded from various sources is retrieved.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -37,7 +37,9 @@
|
|
|
37
37
|
"build": "tsc",
|
|
38
38
|
"test": "tsx --test $(find src -name '*.test.ts')",
|
|
39
39
|
"test:watch": "tsx --test --watch $(find src -name '*.test.ts')",
|
|
40
|
-
"test:coverage": "
|
|
40
|
+
"test:coverage": "mkdir -p coverage && tsx --test --experimental-test-coverage --experimental-specifier-resolution=node --test-reporter=lcov $(find src -name '*.test.ts') > coverage/lcov.info",
|
|
41
|
+
"test:coverage-report": "npx badges-ts coverage-report",
|
|
42
|
+
"test:coverage-gate": "npx badges-ts coverage-gate",
|
|
41
43
|
"lint": "eslint . --ext .ts",
|
|
42
44
|
"lint:fix": "eslint . --ext .ts --fix",
|
|
43
45
|
"prepublishOnly": "npm run build",
|
|
@@ -71,18 +73,20 @@
|
|
|
71
73
|
"engines": {
|
|
72
74
|
"node": ">=16.0.0"
|
|
73
75
|
},
|
|
76
|
+
"overrides": {
|
|
77
|
+
"minimatch": ">=10.2.4 <11.0.0"
|
|
78
|
+
},
|
|
74
79
|
"devDependencies": {
|
|
75
|
-
"@jonloucks/badges-ts": "^1.
|
|
76
|
-
"@types/node": "^25.
|
|
77
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
78
|
-
"@typescript-eslint/parser": "^8.
|
|
79
|
-
"
|
|
80
|
-
"eslint": "^9.39.2",
|
|
80
|
+
"@jonloucks/badges-ts": "^1.4.3",
|
|
81
|
+
"@types/node": "^25.5.0",
|
|
82
|
+
"@typescript-eslint/eslint-plugin": "^8.57.2",
|
|
83
|
+
"@typescript-eslint/parser": "^8.57.2",
|
|
84
|
+
"eslint": "^10.1.0",
|
|
81
85
|
"tsx": "^4.16.2",
|
|
82
|
-
"typedoc": "^0.28.
|
|
86
|
+
"typedoc": "^0.28.18",
|
|
83
87
|
"typescript": "^5.9.3"
|
|
84
88
|
},
|
|
85
89
|
"dependencies": {
|
|
86
|
-
"@jonloucks/contracts-ts": "^2.0.
|
|
90
|
+
"@jonloucks/contracts-ts": "^2.0.4"
|
|
87
91
|
}
|
|
88
92
|
}
|
package/version.js
CHANGED