shinkansen-transmission 2.2.165 → 2.2.166
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 +17 -17
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "shinkansen-transmission",
|
3
|
-
"version": "2.2.
|
3
|
+
"version": "2.2.166",
|
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
|
-
"
|
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
|
-
"
|
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",
|
@@ -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
|
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-
|
78
|
-
"./transmission/from-
|
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-
|
85
|
-
"./transmission/to-
|
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/
|
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
|
}
|