shinkansen-transmission 2.2.165 → 2.2.167

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.
Files changed (1) hide show
  1. package/package.json +19 -19
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shinkansen-transmission",
3
- "version": "2.2.165",
3
+ "version": "2.2.167",
4
4
  "description": "Shinkansen Transmission",
5
5
  "keywords": [
6
6
  "Shinkansen",
@@ -26,14 +26,14 @@
26
26
  "url": "git@github.com/modernpoacher/shinkansen-transmission.git"
27
27
  },
28
28
  "scripts": {
29
- "prelint": "npm run nvm",
29
+ "coverage": "c8 --reporter html npm run test",
30
30
  "lint": "eslint . --ext .mjs,.cjs,.mts,.cts",
31
31
  "lint:fix": "npm run lint -- --fix",
32
- "pretest": "npm run nvm",
33
- "test": "cross-env NODE_ENV=test mocha test --recursive --verbose",
34
32
  "nvm": "bash nvm.sh",
35
- "coverage": "c8 --reporter html npm run test",
36
- "prepare": "husky"
33
+ "prelint": "npm run nvm",
34
+ "prepare": "husky",
35
+ "pretest": "npm run nvm",
36
+ "test": "cross-env NODE_ENV=test mocha test --recursive --verbose"
37
37
  },
38
38
  "dependencies": {
39
39
  "debug": "^4.3.5",
@@ -45,8 +45,8 @@
45
45
  "@babel/preset-env": "^7.24.6",
46
46
  "@babel/register": "^7.24.6",
47
47
  "@modernpoacher/hooks": "^1.0.478",
48
- "@typescript-eslint/eslint-plugin": "^7.11.0",
49
- "@typescript-eslint/parser": "^7.11.0",
48
+ "@typescript-eslint/eslint-plugin": "^7.12.0",
49
+ "@typescript-eslint/parser": "^7.12.0",
50
50
  "babel-loader": "^9.1.3",
51
51
  "babel-plugin-module-resolver": "^5.0.2",
52
52
  "c8": "^9.1.0",
@@ -66,24 +66,24 @@
66
66
  "require": "./src/index.cjs",
67
67
  "import": "./src/index.mjs"
68
68
  },
69
+ "./transmission": "./src/transmission/index.mjs",
69
70
  "./transmission/common": "./src/transmission/common/index.mjs",
70
- "./transmission/from-document-to-hash/string": "./src/transmission/from-document-to-hash/string/index.mjs",
71
- "./transmission/from-document-to-hash/number": "./src/transmission/from-document-to-hash/number/index.mjs",
71
+ "./transmission/from-document-to-hash": "./src/transmission/from-document-to-hash/index.mjs",
72
72
  "./transmission/from-document-to-hash/array": "./src/transmission/from-document-to-hash/array/index.mjs",
73
- "./transmission/from-document-to-hash/object": "./src/transmission/from-document-to-hash/object/index.mjs",
74
73
  "./transmission/from-document-to-hash/boolean": "./src/transmission/from-document-to-hash/boolean/index.mjs",
75
74
  "./transmission/from-document-to-hash/null": "./src/transmission/from-hash-to-document/null/index.mjs",
76
- "./transmission/from-document-to-hash": "./src/transmission/from-document-to-hash/index.mjs",
77
- "./transmission/from-hash-to-document/string": "./src/transmission/from-hash-to-document/string/index.mjs",
78
- "./transmission/from-hash-to-document/number": "./src/transmission/from-hash-to-document/number/index.mjs",
75
+ "./transmission/from-document-to-hash/number": "./src/transmission/from-document-to-hash/number/index.mjs",
76
+ "./transmission/from-document-to-hash/object": "./src/transmission/from-document-to-hash/object/index.mjs",
77
+ "./transmission/from-document-to-hash/string": "./src/transmission/from-document-to-hash/string/index.mjs",
78
+ "./transmission/from-hash-to-document": "./src/transmission/from-hash-to-document/index.mjs",
79
79
  "./transmission/from-hash-to-document/array": "./src/transmission/from-hash-to-document/array/index.mjs",
80
- "./transmission/from-hash-to-document/object": "./src/transmission/from-hash-to-document/object/index.mjs",
81
80
  "./transmission/from-hash-to-document/boolean": "./src/transmission/from-hash-to-document/boolean/index.mjs",
82
81
  "./transmission/from-hash-to-document/null": "./src/transmission/from-hash-to-document/null/index.mjs",
83
- "./transmission/from-hash-to-document": "./src/transmission/from-hash-to-document/index.mjs",
84
- "./transmission/to-zashiki/transform-root-schema": "./src/transmission/to-zashiki/transform-root-schema.mjs",
85
- "./transmission/to-zashiki/transform-schema": "./src/transmission/to-zashiki/transform-schema.mjs",
82
+ "./transmission/from-hash-to-document/number": "./src/transmission/from-hash-to-document/number/index.mjs",
83
+ "./transmission/from-hash-to-document/object": "./src/transmission/from-hash-to-document/object/index.mjs",
84
+ "./transmission/from-hash-to-document/string": "./src/transmission/from-hash-to-document/string/index.mjs",
86
85
  "./transmission/to-zashiki": "./src/transmission/to-zashiki/index.mjs",
87
- "./transmission": "./src/transmission/index.mjs"
86
+ "./transmission/to-zashiki/transform-root-schema": "./src/transmission/to-zashiki/transform-root-schema.mjs",
87
+ "./transmission/to-zashiki/transform-schema": "./src/transmission/to-zashiki/transform-schema.mjs"
88
88
  }
89
89
  }