node-confmanager 1.8.0 → 1.8.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 +11 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-confmanager",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.1",
|
|
4
4
|
"description": "A configuration manager",
|
|
5
5
|
|
|
6
6
|
"type": "commonjs",
|
|
@@ -18,12 +18,14 @@
|
|
|
18
18
|
|
|
19
19
|
"scripts": {
|
|
20
20
|
|
|
21
|
-
"check-updates": "npx check-version-modules",
|
|
22
|
-
|
|
23
21
|
"build": "npx tsc --project \"./tsconfig.json\"",
|
|
24
22
|
|
|
23
|
+
"lint": "npx eslint ./test/**/*.js",
|
|
24
|
+
"check-requires": "npx used-deps-analyzer \"./package.json\" \"./src\" --no-dev --overkill \"fs-extra\" \"node-promfs\"",
|
|
25
|
+
"check-updates": "npx check-version-modules",
|
|
25
26
|
"unit-tests": "npm run build && npx nyc --reporter=html --reporter=text mocha",
|
|
26
|
-
|
|
27
|
+
|
|
28
|
+
"tests": "npm run-script lint && npm run check-requires && npm run-script check-updates && npm run-script unit-tests",
|
|
27
29
|
"ci": "npm run-script tests && npx nyc report --reporter=text-lcov | coveralls"
|
|
28
30
|
|
|
29
31
|
},
|
|
@@ -62,16 +64,18 @@
|
|
|
62
64
|
"url": "https://github.com/Psychopoulet/node-confmanager/issues"
|
|
63
65
|
},
|
|
64
66
|
"dependencies": {
|
|
65
|
-
"node-containerpattern": "1.7.
|
|
67
|
+
"node-containerpattern": "1.7.5"
|
|
66
68
|
},
|
|
67
69
|
"devDependencies": {
|
|
68
|
-
"@types/node": "20.
|
|
70
|
+
"@types/node": "20.5.0",
|
|
69
71
|
"check-version-modules": "1.3.5",
|
|
70
72
|
"coveralls": "3.1.1",
|
|
73
|
+
"eslint": "8.47.0",
|
|
71
74
|
"husky": "8.0.3",
|
|
72
75
|
"mocha": "10.2.0",
|
|
73
76
|
"nyc": "15.1.0",
|
|
74
|
-
"typescript": "5.1.6"
|
|
77
|
+
"typescript": "5.1.6",
|
|
78
|
+
"used-deps-analyzer": "0.1.2"
|
|
75
79
|
},
|
|
76
80
|
"homepage": "https://github.com/Psychopoulet/node-confmanager#readme",
|
|
77
81
|
"engines": {
|