@yamato-daiwa/es-extensions-nodejs 1.9.0-alpha.2 → 1.9.0-alpha.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.
- package/package.json +10 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yamato-daiwa/es-extensions-nodejs",
|
|
3
|
-
"version": "1.9.0-alpha.
|
|
3
|
+
"version": "1.9.0-alpha.4",
|
|
4
4
|
"description": "Additional to @yamato-daiwa/es-extensions functionality for Node.js environment. Helper functions and classes aimed to reduce the routine code. Build-in TypeScript type safety.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"nodejs",
|
|
@@ -32,31 +32,31 @@
|
|
|
32
32
|
"node": ">=22.0.0"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
|
-
"@yamato-daiwa/es-extensions": "1.9.0-alpha.
|
|
35
|
+
"@yamato-daiwa/es-extensions": "1.9.0-alpha.4"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"dotenv": "17.
|
|
39
|
-
"glob": "
|
|
38
|
+
"dotenv": "17.4.2",
|
|
39
|
+
"glob": "13.0.6",
|
|
40
40
|
"json5": "2.2.3",
|
|
41
|
-
"minimatch": "10.2.
|
|
41
|
+
"minimatch": "10.2.5",
|
|
42
42
|
"yamljs": "0.3.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@types/json5": "0.0.30",
|
|
46
46
|
"@types/node": "22.15.31",
|
|
47
47
|
"@types/yamljs": "0.2.34",
|
|
48
|
-
"@yamato-daiwa/es-extensions": "1.9.0-alpha.
|
|
49
|
-
"@yamato-daiwa/style_guides": "0.
|
|
48
|
+
"@yamato-daiwa/es-extensions": "1.9.0-alpha.4",
|
|
49
|
+
"@yamato-daiwa/style_guides": "0.14.2",
|
|
50
50
|
"rimraf": "6.1.3",
|
|
51
|
-
"tsx": "4.
|
|
52
|
-
"typescript": "6.0.
|
|
51
|
+
"tsx": "4.22.0",
|
|
52
|
+
"typescript": "6.0.3"
|
|
53
53
|
},
|
|
54
54
|
"scripts": {
|
|
55
55
|
"Check Types": "tsc --noEmit",
|
|
56
56
|
"Lint": "eslint Source Tests",
|
|
57
57
|
"Run Tests": "node --require tsx/cjs --test \"Tests/**/*.test.ts\"",
|
|
58
58
|
"Rebuild Distributable Without Preliminary Cleaning": "tsc -p tsconfig.build.json",
|
|
59
|
-
"Rebuild Distributable": "rimraf Distributable && tsc -p tsconfig.build.json",
|
|
59
|
+
"Rebuild Distributable": "rimraf --glob Distributable/* && tsc -p tsconfig.build.json",
|
|
60
60
|
"Rebuild Distributable and Realize Alpha": "npm run \"Rebuild Distributable\" && npm publish --tag alpha",
|
|
61
61
|
"Rebuild Distributable and Realize RC": "npm run \"Rebuild Distributable\" && npm publish --tag rc"
|
|
62
62
|
},
|