@yamato-daiwa/es-extensions-nodejs 1.7.0 → 1.8.0-alpha.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.
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * @yamato-daiwa/es-extensions-nodejs v1.7
2
+ * @yamato-daiwa/es-extensions-nodejs v1.8
3
3
  * (c) 2023 Yamato Daiwa Co., Ltd.
4
4
  * Released under the MIT License.
5
5
  */
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  /*!
3
- * @yamato-daiwa/es-extensions-nodejs v1.7
3
+ * @yamato-daiwa/es-extensions-nodejs v1.8
4
4
  * (c) 2023 Yamato Daiwa Co., Ltd.
5
5
  * Released under the MIT License.
6
6
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yamato-daiwa/es-extensions-nodejs",
3
- "version": "1.7.0",
3
+ "version": "1.8.0-alpha.1",
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",
@@ -16,7 +16,7 @@
16
16
  "homepage": "https://ee.yamato-daiwa.com",
17
17
  "repository": {
18
18
  "type": "git",
19
- "url": "https://github.com/TokugawaTakeshi/Yamato-Daiwa-ES-Extensions.git"
19
+ "url": "git+https://github.com/TokugawaTakeshi/Yamato-Daiwa-ES-Extensions.git"
20
20
  },
21
21
  "bugs": {
22
22
  "url": "https://github.com/TokugawaTakeshi/Yamato-Daiwa-ES-Extensions.git/issues",
@@ -31,6 +31,9 @@
31
31
  "engines": {
32
32
  "node": ">=12.0.0"
33
33
  },
34
+ "peerDependencies": {
35
+ "@yamato-daiwa/es-extensions": "1.8.0-alpha.2"
36
+ },
34
37
  "dependencies": {
35
38
  "dotenv": "16.4.5",
36
39
  "glob": "11.0.0",
@@ -38,17 +41,14 @@
38
41
  "minimatch": "10.0.1",
39
42
  "yamljs": "0.3.0"
40
43
  },
41
- "peerDependencies": {
42
- "@yamato-daiwa/es-extensions": "~1.7.0"
43
- },
44
44
  "devDependencies": {
45
45
  "@types/json5": "0.0.30",
46
- "@types/mocha": "10.0.7",
47
- "@types/node": "20.14.12",
46
+ "@types/mocha": "10.0.8",
47
+ "@types/node": "22.5.5",
48
48
  "@types/yamljs": "0.2.34",
49
- "@yamato-daiwa/es-extensions": "1.7.0",
50
- "@yamato-daiwa/style_guides": "0.2.11",
51
- "mocha": "10.7.0",
49
+ "@yamato-daiwa/es-extensions": "../../CoreLibrary/Package",
50
+ "@yamato-daiwa/style_guides": "0.3.0-alpha.3",
51
+ "mocha": "10.7.3",
52
52
  "rimraf": "6.0.1",
53
53
  "ts-node": "10.9.2",
54
54
  "typescript": "5.5.4"
@@ -56,7 +56,7 @@
56
56
  "scripts": {
57
57
  "Rebuild Distributable": "rimraf Distributable & tsc",
58
58
  "Lint": "eslint Source Tests",
59
- "Rebuild Distributable and Realize Alpha": "npm run \"Rebuild distributable\" && npm publish --tag alpha",
60
- "Rebuild Distributable and Realize RC": "npm run \"Rebuild distributable\" && npm publish --tag rc"
59
+ "Rebuild Distributable and Realize Alpha": "npm run \"Rebuild Distributable\" && npm publish --tag alpha",
60
+ "Rebuild Distributable and Realize RC": "npm run \"Rebuild Distributable\" && npm publish --tag rc"
61
61
  }
62
62
  }