node-confmanager 1.10.0 → 1.11.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 +9 -8
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
|
|
3
3
|
"name": "node-confmanager",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.11.0",
|
|
5
5
|
"description": "A configuration manager.",
|
|
6
6
|
|
|
7
7
|
"type": "commonjs",
|
|
@@ -33,9 +33,10 @@
|
|
|
33
33
|
|
|
34
34
|
"check-requires": "npx used-deps-analyzer ./package.json ./lib/src --no-dev",
|
|
35
35
|
"check-updates": "npx check-version-modules --no-fail-at-major --fail-at-minor --fail-at-patch",
|
|
36
|
-
"unit-tests": "
|
|
36
|
+
"unit-tests": "npx mocha",
|
|
37
|
+
"unit-tests-local": "npx nyc --reporter=html --reporter=text mocha",
|
|
37
38
|
|
|
38
|
-
"tests": "npm run lint && npm run check-requires && npm run check-updates && npm run unit-tests"
|
|
39
|
+
"tests": "npm run lint && npm run check-requires && npm run check-updates && npm run build && npm run unit-tests-local"
|
|
39
40
|
|
|
40
41
|
},
|
|
41
42
|
|
|
@@ -47,11 +48,11 @@
|
|
|
47
48
|
},
|
|
48
49
|
|
|
49
50
|
"dependencies": {
|
|
50
|
-
"node-containerpattern": "1.
|
|
51
|
+
"node-containerpattern": "1.10.0"
|
|
51
52
|
},
|
|
52
53
|
"devDependencies": {
|
|
53
|
-
"@types/node": "25.
|
|
54
|
-
"check-version-modules": "2.
|
|
54
|
+
"@types/node": "25.6.0",
|
|
55
|
+
"check-version-modules": "2.3.0",
|
|
55
56
|
"colors": "1.4.0",
|
|
56
57
|
"eslint-plugin-personnallinter": "git+ssh://git@github.com/Psychopoulet/eslint-plugin-personnallinter",
|
|
57
58
|
"husky": "9.1.7",
|
|
@@ -59,13 +60,13 @@
|
|
|
59
60
|
"nyc": "18.0.0",
|
|
60
61
|
"rimraf": "6.1.3",
|
|
61
62
|
"typescript": "5.9.3",
|
|
62
|
-
"used-deps-analyzer": "0.
|
|
63
|
+
"used-deps-analyzer": "0.3.0"
|
|
63
64
|
},
|
|
64
65
|
|
|
65
66
|
"husky": {
|
|
66
67
|
"hooks": {
|
|
67
68
|
"pre-commit": "npm run lint",
|
|
68
|
-
"pre-push": "npm run unit-tests"
|
|
69
|
+
"pre-push": "npm run build && npm run unit-tests-local"
|
|
69
70
|
}
|
|
70
71
|
},
|
|
71
72
|
"keywords": [
|