testeranto 0.140.2 → 0.146.0

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 (204) hide show
  1. package/.aider.chat.history.md +11006 -0
  2. package/.aider.input.history +441 -0
  3. package/.aider.tags.cache.v3/06/1a/1ec9fd1f595d4b36094caef45894.val +0 -0
  4. package/.aider.tags.cache.v3/0f/f6/f42b5108253d75de3cb6286df7f6.val +0 -0
  5. package/.aider.tags.cache.v3/{ad/3c/10f2ab1397f6d544e613d2a6acaf.val → 3d/81/8b6f0e9b98ec2952cdb8968ac386.val} +0 -0
  6. package/.aider.tags.cache.v3/cache.db +0 -0
  7. package/.aider.tags.cache.v3/{a7/97/6d37fce350ad2d588f36729db0cd.val → d6/7d/1820c2d4b9330eab7017da4515e7.val} +0 -0
  8. package/README.md +15 -16
  9. package/dist/tsconfig.tsbuildinfo +1 -1
  10. package/docs/aiderTest.sh +1 -0
  11. package/docs/index.md +45 -33
  12. package/docs/testing.ai.txt +98 -0
  13. package/docs/testing.prompt.txt +8 -0
  14. package/package.json +3 -3
  15. package/src/Node.ts +17 -13
  16. package/src/PM/PM_WithEslintAndTsc.ts +83 -67
  17. package/src/PM/main.ts +182 -92
  18. package/src/PM/node.ts +1 -15
  19. package/src/PM/nodeSidecar.ts +0 -1
  20. package/src/Pure.test.ts +299 -0
  21. package/src/Pure.ts +20 -2
  22. package/src/Types.ts +5 -5
  23. package/src/Web.ts +1 -1
  24. package/src/build.ts +0 -1
  25. package/src/esbuildConfigs/consoleDetectorPlugin.ts +28 -14
  26. package/src/esbuildConfigs/nativeImportDetectorPlugin.ts +26 -0
  27. package/src/esbuildConfigs/pure.ts +3 -1
  28. package/src/esbuildConfigs/rebuildPlugin.ts +1 -4
  29. package/src/lib/BaseSuite.test/node.test.ts +12 -0
  30. package/src/lib/BaseSuite.test/pure.test.ts +12 -0
  31. package/src/lib/{BaseSuite.test.ts → BaseSuite.test/test.ts} +36 -27
  32. package/src/lib/BaseSuite.test/web.test.ts +12 -0
  33. package/src/lib/BaseSuite.ts +17 -15
  34. package/src/lib/abstractBase.test/MockGiven.ts +31 -0
  35. package/src/lib/abstractBase.test/MockThen.ts +20 -0
  36. package/src/lib/abstractBase.test/MockWhen.ts +17 -0
  37. package/src/lib/abstractBase.test/implementation.ts +51 -0
  38. package/src/lib/abstractBase.test/index.ts +19 -0
  39. package/src/lib/abstractBase.test/interface.ts +12 -0
  40. package/src/lib/abstractBase.test/specification.ts +49 -0
  41. package/src/lib/abstractBase.test/types.ts +19 -0
  42. package/src/lib/abstractBase.ts +0 -2
  43. package/src/lib/baseBuilder.test/TestBaseBuilder.ts +83 -0
  44. package/src/lib/baseBuilder.test/baseBuilder.test.implementation.ts +134 -0
  45. package/src/lib/baseBuilder.test/baseBuilder.test.interface.ts +18 -0
  46. package/src/lib/baseBuilder.test/baseBuilder.test.node.ts +14 -0
  47. package/src/lib/baseBuilder.test/baseBuilder.test.pure.ts +14 -0
  48. package/src/lib/baseBuilder.test/baseBuilder.test.specification.ts +35 -0
  49. package/src/lib/baseBuilder.test/baseBuilder.test.types.ts +36 -0
  50. package/src/lib/baseBuilder.test/baseBuilder.test.web.ts +14 -0
  51. package/src/lib/basebuilder.ts +2 -1
  52. package/src/lib/classBuilder.test/TestClassBuilder.ts +88 -0
  53. package/src/lib/classBuilder.test/classBuilder.test.implementation.ts +204 -0
  54. package/src/lib/classBuilder.test/classBuilder.test.interface.ts +18 -0
  55. package/src/lib/classBuilder.test/classBuilder.test.specification.ts +113 -0
  56. package/src/lib/classBuilder.test/classBuilder.test.ts +14 -0
  57. package/src/lib/classBuilder.test/classBuilder.test.types.ts +84 -0
  58. package/src/lib/core.test/MockCore.ts +49 -0
  59. package/src/lib/core.test/core.test.implementation.ts +129 -0
  60. package/src/lib/core.test/core.test.interface.ts +18 -0
  61. package/src/lib/core.test/core.test.specification.ts +99 -0
  62. package/src/lib/core.test/core.test.ts +15 -0
  63. package/src/lib/core.test/core.test.types.ts +68 -0
  64. package/src/lib/core.ts +1 -11
  65. package/src/lib/pmProxy.test/implementation.ts +104 -0
  66. package/src/lib/pmProxy.test/index.ts +19 -0
  67. package/src/lib/pmProxy.test/interface.ts +46 -0
  68. package/src/lib/pmProxy.test/mockPM.ts +38 -0
  69. package/src/lib/pmProxy.test/mockPMBase.ts +136 -0
  70. package/src/lib/pmProxy.test/specification.ts +123 -0
  71. package/src/lib/pmProxy.test/types.ts +45 -0
  72. package/src/lib/pmProxy.ts +40 -193
  73. package/src/run.ts +7 -7
  74. package/testeranto/bundles/node/allTests/chunk-NQBTLMSG.mjs +254 -0
  75. package/testeranto/bundles/node/allTests/chunk-RF3LIUSG.mjs +765 -0
  76. package/testeranto/bundles/node/allTests/chunk-YZWFKYY3.mjs +171 -0
  77. package/testeranto/bundles/node/allTests/metafile.json +628 -3567
  78. package/testeranto/bundles/node/allTests/src/lib/BaseSuite.test/node.test.mjs +325 -0
  79. package/testeranto/bundles/node/allTests/src/lib/baseBuilder.test/baseBuilder.test.node.mjs +226 -0
  80. package/testeranto/bundles/node/allTests/src/lib/classBuilder.test/classBuilder.test.mjs +408 -0
  81. package/testeranto/bundles/node/allTests/src/lib/core.test/core.test.mjs +279 -0
  82. package/testeranto/bundles/node/allTests/src/lib/pmProxy.test/index.mjs +4587 -0
  83. package/testeranto/bundles/{node/allTests/chunk-4PJCC2XT.mjs → pure/allTests/chunk-W22WOQNK.mjs} +208 -326
  84. package/testeranto/bundles/pure/allTests/metafile.json +732 -3
  85. package/testeranto/bundles/pure/allTests/src/Pure.test.mjs +369 -0
  86. package/testeranto/bundles/{node/allTests/src/lib/BaseSuite.test.mjs → pure/allTests/src/lib/BaseSuite.test/pure.test.mjs} +26 -8
  87. package/testeranto/bundles/pure/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs +224 -0
  88. package/testeranto/bundles/web/allTests/chunk-FIZ3WLUB.mjs +943 -0
  89. package/testeranto/bundles/web/allTests/metafile.json +1133 -2
  90. package/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.html +19 -0
  91. package/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs +322 -0
  92. package/testeranto/bundles/web/allTests/src/lib/baseBuilder.test/baseBuilder.test.web.html +19 -0
  93. package/testeranto/bundles/web/allTests/src/lib/baseBuilder.test/baseBuilder.test.web.mjs +10964 -0
  94. package/testeranto/index.html +1 -1
  95. package/testeranto/reports/allTests/config.json +50 -11
  96. package/testeranto/reports/allTests/index.html +1 -1
  97. package/testeranto/reports/allTests/src/Pure.test/pure/lint_errors.json +1539 -0
  98. package/testeranto/reports/allTests/src/Pure.test/pure/logs.txt +11 -0
  99. package/testeranto/reports/allTests/src/Pure.test/pure/message +1 -0
  100. package/testeranto/reports/allTests/src/Pure.test/pure/prompt.txt +8 -0
  101. package/testeranto/reports/allTests/src/{PM/__tests__/pureSidecar.testeranto/node → Pure.test/pure}/type_errors.txt +18 -14
  102. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/lint_errors.json +620 -0
  103. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/logs.txt +12 -0
  104. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/message +1 -0
  105. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/prompt.txt +8 -0
  106. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/type_errors.txt +94 -0
  107. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/index.html +21 -0
  108. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/lint_errors.json +620 -0
  109. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/logs.txt +11 -0
  110. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/message +1 -0
  111. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/prompt.txt +8 -0
  112. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt +104 -0
  113. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/dev.html +21 -0
  114. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/index.html +21 -0
  115. package/testeranto/reports/allTests/src/lib/BaseSuite.test/{node → web.test/web}/lint_errors.json +69 -57
  116. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/logs.txt +10 -0
  117. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/message +1 -0
  118. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/prompt.txt +8 -0
  119. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/type_errors.txt +95 -0
  120. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/dev.html +21 -0
  121. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/index.html +21 -0
  122. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/lint_errors.json +966 -0
  123. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/message +1 -0
  124. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/prompt.txt +11 -0
  125. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/type_errors.txt +57 -0
  126. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/bdd_errors.txt +1 -0
  127. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/dev.html +21 -0
  128. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/index.html +21 -0
  129. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/lint_errors.json +966 -0
  130. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/log.txt +0 -0
  131. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/message +1 -0
  132. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/prompt.txt +11 -0
  133. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/tests.json +57 -0
  134. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/type_errors.txt +57 -0
  135. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/bdd_errors.txt +1 -0
  136. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/dev.html +21 -0
  137. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/index.html +21 -0
  138. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/lint_errors.json +966 -0
  139. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/log.txt +0 -0
  140. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/logs.txt +0 -0
  141. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/message +1 -0
  142. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/prompt.txt +11 -0
  143. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/tests.json +57 -0
  144. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/type_errors.txt +48 -0
  145. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/dev.html +21 -0
  146. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/index.html +21 -0
  147. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/lint_errors.json +791 -0
  148. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/logs.txt +12 -0
  149. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/message +1 -0
  150. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/prompt.txt +11 -0
  151. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/type_errors.txt +55 -0
  152. package/testeranto/reports/allTests/src/lib/core.test/core.test/node/dev.html +21 -0
  153. package/testeranto/reports/allTests/src/lib/core.test/core.test/node/index.html +21 -0
  154. package/testeranto/reports/allTests/src/lib/core.test/core.test/node/lint_errors.json +416 -0
  155. package/testeranto/reports/allTests/src/lib/core.test/core.test/node/logs.txt +17 -0
  156. package/testeranto/reports/allTests/src/lib/core.test/core.test/node/message +1 -0
  157. package/testeranto/reports/allTests/src/lib/core.test/core.test/node/prompt.txt +11 -0
  158. package/testeranto/reports/allTests/src/lib/core.test/core.test/node/type_errors.txt +65 -0
  159. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/dev.html +21 -0
  160. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/index.html +21 -0
  161. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/lint_errors.json +1724 -0
  162. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/log.txt +0 -0
  163. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/logs.txt +30 -0
  164. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/message +1 -0
  165. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/prompt.txt +11 -0
  166. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/type_errors.txt +64 -0
  167. package/testeranto/reports/allTests/summary.json +59 -24
  168. package/testeranto.config.ts +37 -12
  169. package/tsc.log +273 -27
  170. package/testeranto/bundles/node/allTests/chunk-PG6KUKNP.mjs +0 -44
  171. package/testeranto/bundles/node/allTests/src/PM/__tests__/nodeSidecar.testeranto.mjs +0 -187
  172. package/testeranto/bundles/node/allTests/src/PM/__tests__/pureSidecar.testeranto.mjs +0 -156
  173. package/testeranto/bundles/node/allTests/src/PM/__tests__/webSidecar.testeranto.mjs +0 -156
  174. package/testeranto/bundles/node/allTests/src/mothership/test.mjs +0 -24411
  175. package/testeranto/reports/allTests/src/PM/__tests__/nodeSidecar.testeranto/node/index.html +0 -21
  176. package/testeranto/reports/allTests/src/PM/__tests__/nodeSidecar.testeranto/node/lint_errors.json +0 -80
  177. package/testeranto/reports/allTests/src/PM/__tests__/nodeSidecar.testeranto/node/message +0 -1
  178. package/testeranto/reports/allTests/src/PM/__tests__/nodeSidecar.testeranto/node/prompt.txt +0 -8
  179. package/testeranto/reports/allTests/src/PM/__tests__/nodeSidecar.testeranto/node/type_errors.txt +0 -28
  180. package/testeranto/reports/allTests/src/PM/__tests__/pureSidecar.testeranto/node/index.html +0 -21
  181. package/testeranto/reports/allTests/src/PM/__tests__/pureSidecar.testeranto/node/lint_errors.json +0 -80
  182. package/testeranto/reports/allTests/src/PM/__tests__/pureSidecar.testeranto/node/message +0 -1
  183. package/testeranto/reports/allTests/src/PM/__tests__/pureSidecar.testeranto/node/prompt.txt +0 -8
  184. package/testeranto/reports/allTests/src/PM/__tests__/webSidecar.testeranto/node/index.html +0 -21
  185. package/testeranto/reports/allTests/src/PM/__tests__/webSidecar.testeranto/node/lint_errors.json +0 -80
  186. package/testeranto/reports/allTests/src/PM/__tests__/webSidecar.testeranto/node/message +0 -1
  187. package/testeranto/reports/allTests/src/PM/__tests__/webSidecar.testeranto/node/prompt.txt +0 -8
  188. package/testeranto/reports/allTests/src/PM/__tests__/webSidecar.testeranto/node/type_errors.txt +0 -32
  189. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node/console_log.txt +0 -35
  190. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node/index.html +0 -21
  191. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node/message +0 -1
  192. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node/prompt.txt +0 -7
  193. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node/type_errors.txt +0 -68
  194. package/testeranto/reports/allTests/src/mothership/test/node/index.html +0 -21
  195. package/testeranto/reports/allTests/src/mothership/test/node/lint_errors.json +0 -1
  196. package/testeranto/reports/allTests/src/mothership/test/node/message +0 -1
  197. package/testeranto/reports/allTests/src/mothership/test/node/prompt.txt +0 -8
  198. package/testeranto/reports/allTests/src/mothership/test/node/type_errors.txt +0 -24
  199. /package/testeranto/reports/allTests/src/{PM/__tests__/nodeSidecar.testeranto/node → Pure.test/pure}/dev.html +0 -0
  200. /package/testeranto/reports/allTests/src/{PM/__tests__/pureSidecar.testeranto/node/dev.html → Pure.test/pure/index.html} +0 -0
  201. /package/testeranto/reports/allTests/src/{PM/__tests__/webSidecar.testeranto → lib/BaseSuite.test/node.test}/node/dev.html +0 -0
  202. /package/testeranto/reports/allTests/src/lib/BaseSuite.test/{node/dev.html → node.test/node/index.html} +0 -0
  203. /package/testeranto/reports/allTests/src/{mothership/test/node → lib/BaseSuite.test/pure.test/pure}/dev.html +0 -0
  204. /package/testeranto/reports/allTests/src/lib/{BaseSuite.test/node/log.txt → baseBuilder.test/baseBuilder.test.node/node/logs.txt} +0 -0
@@ -3,40 +3,50 @@
3
3
  "warnings": [],
4
4
  "metafile": {
5
5
  "inputs": {
6
- "src/lib/pmProxy.ts": {
7
- "bytes": 8884,
6
+ "src/lib/index.ts": {
7
+ "bytes": 3649,
8
8
  "imports": [
9
9
  {
10
- "path": "./types",
10
+ "path": "../PM/pure.js",
11
11
  "kind": "import-statement",
12
12
  "external": true
13
- }
14
- ],
15
- "format": "esm"
16
- },
17
- "src/lib/BaseSuite.ts": {
18
- "bytes": 3894,
19
- "imports": [
13
+ },
20
14
  {
21
- "path": ".",
15
+ "path": "../PM/node.js",
22
16
  "kind": "import-statement",
23
17
  "external": true
24
18
  },
25
19
  {
26
- "path": "../CoreTypes",
20
+ "path": "../PM/web.js",
27
21
  "kind": "import-statement",
28
22
  "external": true
29
23
  },
30
24
  {
31
- "path": "./abstractBase",
25
+ "path": "../Types.js",
32
26
  "kind": "import-statement",
33
27
  "external": true
34
28
  },
35
29
  {
36
- "path": "src/lib/pmProxy.ts",
30
+ "path": "./abstractBase.js",
37
31
  "kind": "import-statement",
38
- "original": "./pmProxy"
32
+ "external": true
33
+ },
34
+ {
35
+ "path": "./types.js",
36
+ "kind": "import-statement",
37
+ "external": true
39
38
  },
39
+ {
40
+ "path": "./BaseSuite.js",
41
+ "kind": "import-statement",
42
+ "external": true
43
+ }
44
+ ],
45
+ "format": "esm"
46
+ },
47
+ "src/lib/pmProxy.ts": {
48
+ "bytes": 4454,
49
+ "imports": [
40
50
  {
41
51
  "path": "./types",
42
52
  "kind": "import-statement",
@@ -46,7 +56,7 @@
46
56
  "format": "esm"
47
57
  },
48
58
  "src/lib/abstractBase.ts": {
49
- "bytes": 7750,
59
+ "bytes": 7680,
50
60
  "imports": [
51
61
  {
52
62
  "path": ".",
@@ -66,26 +76,21 @@
66
76
  ],
67
77
  "format": "esm"
68
78
  },
69
- "src/lib/index.ts": {
70
- "bytes": 3649,
79
+ "src/lib/basebuilder.ts": {
80
+ "bytes": 6133,
71
81
  "imports": [
72
82
  {
73
- "path": "../PM/pure.js",
74
- "kind": "import-statement",
75
- "external": true
76
- },
77
- {
78
- "path": "../PM/node.js",
83
+ "path": "stream",
79
84
  "kind": "import-statement",
80
85
  "external": true
81
86
  },
82
87
  {
83
- "path": "../PM/web.js",
88
+ "path": ".",
84
89
  "kind": "import-statement",
85
90
  "external": true
86
91
  },
87
92
  {
88
- "path": "../Types.js",
93
+ "path": "./types.js",
89
94
  "kind": "import-statement",
90
95
  "external": true
91
96
  },
@@ -95,30 +100,20 @@
95
100
  "external": true
96
101
  },
97
102
  {
98
- "path": "./types.js",
99
- "kind": "import-statement",
100
- "external": true
101
- },
102
- {
103
- "path": "./BaseSuite.js",
103
+ "path": "./BaseSuite",
104
104
  "kind": "import-statement",
105
105
  "external": true
106
106
  }
107
107
  ],
108
108
  "format": "esm"
109
109
  },
110
- "src/lib/basebuilder.ts": {
111
- "bytes": 6129,
110
+ "src/lib/classBuilder.ts": {
111
+ "bytes": 3565,
112
112
  "imports": [
113
113
  {
114
- "path": "stream",
115
- "kind": "import-statement",
116
- "external": true
117
- },
118
- {
119
- "path": ".",
114
+ "path": "src/lib/basebuilder.ts",
120
115
  "kind": "import-statement",
121
- "external": true
116
+ "original": "./basebuilder.js"
122
117
  },
123
118
  {
124
119
  "path": "./types.js",
@@ -126,38 +121,43 @@
126
121
  "external": true
127
122
  },
128
123
  {
129
- "path": "./abstractBase.js",
124
+ "path": "./index.js",
130
125
  "kind": "import-statement",
131
126
  "external": true
132
127
  },
133
128
  {
134
- "path": "./BaseSuite",
129
+ "path": "./abstractBase.js",
135
130
  "kind": "import-statement",
136
131
  "external": true
137
132
  }
138
133
  ],
139
134
  "format": "esm"
140
135
  },
141
- "src/lib/classBuilder.ts": {
142
- "bytes": 3565,
136
+ "src/lib/BaseSuite.ts": {
137
+ "bytes": 3942,
143
138
  "imports": [
144
139
  {
145
- "path": "src/lib/basebuilder.ts",
140
+ "path": ".",
146
141
  "kind": "import-statement",
147
- "original": "./basebuilder.js"
142
+ "external": true
148
143
  },
149
144
  {
150
- "path": "./types.js",
145
+ "path": "../CoreTypes",
151
146
  "kind": "import-statement",
152
147
  "external": true
153
148
  },
154
149
  {
155
- "path": "./index.js",
150
+ "path": "./abstractBase",
156
151
  "kind": "import-statement",
157
152
  "external": true
158
153
  },
159
154
  {
160
- "path": "./abstractBase.js",
155
+ "path": "src/lib/pmProxy.ts",
156
+ "kind": "import-statement",
157
+ "original": "./pmProxy"
158
+ },
159
+ {
160
+ "path": "./types",
161
161
  "kind": "import-statement",
162
162
  "external": true
163
163
  }
@@ -165,7 +165,7 @@
165
165
  "format": "esm"
166
166
  },
167
167
  "src/lib/core.ts": {
168
- "bytes": 5039,
168
+ "bytes": 4768,
169
169
  "imports": [
170
170
  {
171
171
  "path": "src/lib/index.ts",
@@ -217,7 +217,7 @@
217
217
  "format": "esm"
218
218
  },
219
219
  "src/PM/node.ts": {
220
- "bytes": 7363,
220
+ "bytes": 6936,
221
221
  "imports": [
222
222
  {
223
223
  "path": "net",
@@ -258,7 +258,7 @@
258
258
  "format": "esm"
259
259
  },
260
260
  "src/Node.ts": {
261
- "bytes": 2786,
261
+ "bytes": 2939,
262
262
  "imports": [
263
263
  {
264
264
  "path": "src/lib/core.ts",
@@ -283,3716 +283,839 @@
283
283
  ],
284
284
  "format": "esm"
285
285
  },
286
- "src/lib/BaseSuite.test.ts": {
287
- "bytes": 11771,
286
+ "src/lib/BaseSuite.test/test.ts": {
287
+ "bytes": 12199,
288
288
  "imports": [
289
289
  {
290
- "path": "src/lib/BaseSuite.ts",
290
+ "path": "..",
291
291
  "kind": "import-statement",
292
- "original": "./BaseSuite"
292
+ "external": true
293
293
  },
294
294
  {
295
- "path": "src/lib/abstractBase.ts",
295
+ "path": "../../CoreTypes",
296
296
  "kind": "import-statement",
297
- "original": "./abstractBase"
297
+ "external": true
298
298
  },
299
299
  {
300
- "path": ".",
300
+ "path": "../../Types",
301
301
  "kind": "import-statement",
302
302
  "external": true
303
303
  },
304
304
  {
305
- "path": "./types",
305
+ "path": "src/lib/abstractBase.ts",
306
306
  "kind": "import-statement",
307
- "external": true
307
+ "original": "../abstractBase"
308
308
  },
309
309
  {
310
- "path": "../CoreTypes",
310
+ "path": "src/lib/BaseSuite.ts",
311
311
  "kind": "import-statement",
312
- "external": true
312
+ "original": "../BaseSuite"
313
313
  },
314
314
  {
315
- "path": "src/Node.ts",
315
+ "path": "../types",
316
316
  "kind": "import-statement",
317
- "original": "../Node"
317
+ "external": true
318
318
  }
319
319
  ],
320
320
  "format": "esm"
321
321
  },
322
- "node_modules/depd/index.js": {
323
- "bytes": 10932,
322
+ "src/lib/BaseSuite.test/node.test.ts": {
323
+ "bytes": 263,
324
324
  "imports": [
325
325
  {
326
- "path": "path",
327
- "kind": "require-call",
328
- "external": true
329
- }
330
- ],
331
- "format": "cjs"
332
- },
333
- "node_modules/bytes/index.js": {
334
- "bytes": 3613,
335
- "imports": [],
336
- "format": "cjs"
337
- },
338
- "node_modules/content-type/index.js": {
339
- "bytes": 5002,
340
- "imports": [],
341
- "format": "cjs"
342
- },
343
- "node_modules/setprototypeof/index.js": {
344
- "bytes": 407,
345
- "imports": [],
346
- "format": "cjs"
347
- },
348
- "node_modules/statuses/codes.json": {
349
- "bytes": 1789,
350
- "imports": []
351
- },
352
- "node_modules/statuses/index.js": {
353
- "bytes": 2610,
354
- "imports": [
326
+ "path": "src/Node.ts",
327
+ "kind": "import-statement",
328
+ "original": "../../Node"
329
+ },
330
+ {
331
+ "path": "src/lib/BaseSuite.ts",
332
+ "kind": "import-statement",
333
+ "original": "../BaseSuite"
334
+ },
355
335
  {
356
- "path": "node_modules/statuses/codes.json",
357
- "kind": "require-call",
358
- "original": "./codes.json"
336
+ "path": "src/lib/BaseSuite.test/test.ts",
337
+ "kind": "import-statement",
338
+ "original": "./test"
359
339
  }
360
340
  ],
361
- "format": "cjs"
362
- },
363
- "node_modules/inherits/inherits_browser.js": {
364
- "bytes": 753,
365
- "imports": [],
366
- "format": "cjs"
341
+ "format": "esm"
367
342
  },
368
- "node_modules/inherits/inherits.js": {
369
- "bytes": 250,
343
+ "src/lib/pmProxy.test/mockPMBase.ts": {
344
+ "bytes": 3696,
370
345
  "imports": [
371
346
  {
372
- "path": "util",
373
- "kind": "require-call",
347
+ "path": "puppeteer-core",
348
+ "kind": "import-statement",
349
+ "external": true
350
+ },
351
+ {
352
+ "path": "../index",
353
+ "kind": "import-statement",
374
354
  "external": true
375
355
  },
376
356
  {
377
- "path": "node_modules/inherits/inherits_browser.js",
378
- "kind": "require-call",
379
- "original": "./inherits_browser.js"
357
+ "path": "../../PM/base",
358
+ "kind": "import-statement",
359
+ "external": true
380
360
  }
381
361
  ],
382
- "format": "cjs"
383
- },
384
- "node_modules/toidentifier/index.js": {
385
- "bytes": 504,
386
- "imports": [],
387
- "format": "cjs"
362
+ "format": "esm"
388
363
  },
389
- "node_modules/http-errors/index.js": {
390
- "bytes": 6391,
364
+ "src/lib/pmProxy.test/implementation.ts": {
365
+ "bytes": 3311,
391
366
  "imports": [
392
367
  {
393
- "path": "node_modules/depd/index.js",
394
- "kind": "require-call",
395
- "original": "depd"
368
+ "path": "./types",
369
+ "kind": "import-statement",
370
+ "external": true
396
371
  },
397
372
  {
398
- "path": "node_modules/setprototypeof/index.js",
399
- "kind": "require-call",
400
- "original": "setprototypeof"
373
+ "path": "../../CoreTypes",
374
+ "kind": "import-statement",
375
+ "external": true
401
376
  },
402
377
  {
403
- "path": "node_modules/statuses/index.js",
404
- "kind": "require-call",
405
- "original": "statuses"
378
+ "path": "../types",
379
+ "kind": "import-statement",
380
+ "external": true
406
381
  },
407
382
  {
408
- "path": "node_modules/inherits/inherits.js",
409
- "kind": "require-call",
410
- "original": "inherits"
383
+ "path": "../pmProxy",
384
+ "kind": "import-statement",
385
+ "external": true
411
386
  },
412
387
  {
413
- "path": "node_modules/toidentifier/index.js",
414
- "kind": "require-call",
415
- "original": "toidentifier"
388
+ "path": "src/lib/pmProxy.test/mockPMBase.ts",
389
+ "kind": "import-statement",
390
+ "original": "./mockPMBase"
416
391
  }
417
392
  ],
418
- "format": "cjs"
419
- },
420
- "node_modules/body-parser/node_modules/ms/index.js": {
421
- "bytes": 2764,
422
- "imports": [],
423
- "format": "cjs"
393
+ "format": "esm"
424
394
  },
425
- "node_modules/body-parser/node_modules/debug/src/debug.js": {
426
- "bytes": 4394,
395
+ "src/lib/pmProxy.test/specification.ts": {
396
+ "bytes": 4053,
427
397
  "imports": [
428
398
  {
429
- "path": "node_modules/body-parser/node_modules/ms/index.js",
430
- "kind": "require-call",
431
- "original": "ms"
432
- }
433
- ],
434
- "format": "cjs"
435
- },
436
- "node_modules/body-parser/node_modules/debug/src/browser.js": {
437
- "bytes": 4734,
438
- "imports": [
399
+ "path": "./types",
400
+ "kind": "import-statement",
401
+ "external": true
402
+ },
439
403
  {
440
- "path": "node_modules/body-parser/node_modules/debug/src/debug.js",
441
- "kind": "require-call",
442
- "original": "./debug"
404
+ "path": "../../CoreTypes",
405
+ "kind": "import-statement",
406
+ "external": true
443
407
  }
444
408
  ],
445
- "format": "cjs"
409
+ "format": "esm"
410
+ },
411
+ "node_modules/chai/chai.js": {
412
+ "bytes": 139547,
413
+ "imports": [],
414
+ "format": "esm"
446
415
  },
447
- "node_modules/body-parser/node_modules/debug/src/node.js": {
448
- "bytes": 6015,
416
+ "src/lib/pmProxy.test/interface.ts": {
417
+ "bytes": 1376,
449
418
  "imports": [
450
419
  {
451
- "path": "tty",
452
- "kind": "require-call",
420
+ "path": "node_modules/chai/chai.js",
421
+ "kind": "import-statement",
422
+ "original": "chai"
423
+ },
424
+ {
425
+ "path": "./types",
426
+ "kind": "import-statement",
453
427
  "external": true
454
428
  },
455
429
  {
456
- "path": "util",
457
- "kind": "require-call",
430
+ "path": "../../CoreTypes",
431
+ "kind": "import-statement",
458
432
  "external": true
459
433
  },
460
434
  {
461
- "path": "node_modules/body-parser/node_modules/debug/src/debug.js",
462
- "kind": "require-call",
463
- "original": "./debug"
435
+ "path": "src/lib/pmProxy.ts",
436
+ "kind": "import-statement",
437
+ "original": "../pmProxy"
464
438
  },
465
439
  {
466
- "path": "fs",
467
- "kind": "require-call",
440
+ "path": "../types",
441
+ "kind": "import-statement",
468
442
  "external": true
469
443
  },
470
444
  {
471
- "path": "net",
472
- "kind": "require-call",
473
- "external": true
445
+ "path": "src/lib/pmProxy.test/mockPMBase.ts",
446
+ "kind": "import-statement",
447
+ "original": "./mockPMBase"
474
448
  }
475
449
  ],
476
- "format": "cjs"
450
+ "format": "esm"
477
451
  },
478
- "node_modules/body-parser/node_modules/debug/src/index.js": {
479
- "bytes": 263,
452
+ "src/lib/pmProxy.test/index.ts": {
453
+ "bytes": 521,
480
454
  "imports": [
481
455
  {
482
- "path": "node_modules/body-parser/node_modules/debug/src/browser.js",
483
- "kind": "require-call",
484
- "original": "./browser.js"
456
+ "path": "src/Node.ts",
457
+ "kind": "import-statement",
458
+ "original": "../../Node"
459
+ },
460
+ {
461
+ "path": "src/lib/pmProxy.test/implementation.ts",
462
+ "kind": "import-statement",
463
+ "original": "./implementation"
464
+ },
465
+ {
466
+ "path": "src/lib/pmProxy.test/specification.ts",
467
+ "kind": "import-statement",
468
+ "original": "./specification"
469
+ },
470
+ {
471
+ "path": "src/lib/pmProxy.test/interface.ts",
472
+ "kind": "import-statement",
473
+ "original": "./interface"
474
+ },
475
+ {
476
+ "path": "./types",
477
+ "kind": "import-statement",
478
+ "external": true
485
479
  },
486
480
  {
487
- "path": "node_modules/body-parser/node_modules/debug/src/node.js",
488
- "kind": "require-call",
489
- "original": "./node.js"
481
+ "path": "src/lib/pmProxy.ts",
482
+ "kind": "import-statement",
483
+ "original": "../pmProxy"
490
484
  }
491
485
  ],
492
- "format": "cjs"
486
+ "format": "esm"
493
487
  },
494
- "node_modules/destroy/index.js": {
495
- "bytes": 4258,
488
+ "src/PM/pure.ts": {
489
+ "bytes": 5767,
496
490
  "imports": [
497
491
  {
498
- "path": "events",
499
- "kind": "require-call",
492
+ "path": "puppeteer-core",
493
+ "kind": "import-statement",
500
494
  "external": true
501
495
  },
502
496
  {
503
- "path": "fs",
504
- "kind": "require-call",
497
+ "path": "puppeteer-core/lib/esm/puppeteer",
498
+ "kind": "import-statement",
505
499
  "external": true
506
500
  },
507
501
  {
508
- "path": "stream",
509
- "kind": "require-call",
502
+ "path": "../lib",
503
+ "kind": "import-statement",
510
504
  "external": true
511
505
  },
512
506
  {
513
- "path": "zlib",
514
- "kind": "require-call",
515
- "external": true
507
+ "path": "src/PM/index.ts",
508
+ "kind": "import-statement",
509
+ "original": "."
516
510
  }
517
511
  ],
518
- "format": "cjs"
512
+ "format": "esm"
519
513
  },
520
- "node_modules/safer-buffer/safer.js": {
521
- "bytes": 2110,
514
+ "src/Pure.ts": {
515
+ "bytes": 2118,
522
516
  "imports": [
523
517
  {
524
- "path": "buffer",
525
- "kind": "require-call",
518
+ "path": "./CoreTypes.js",
519
+ "kind": "import-statement",
526
520
  "external": true
521
+ },
522
+ {
523
+ "path": "src/lib/core.ts",
524
+ "kind": "import-statement",
525
+ "original": "./lib/core.js"
526
+ },
527
+ {
528
+ "path": "src/lib/index.ts",
529
+ "kind": "import-statement",
530
+ "original": "./lib/index.js"
531
+ },
532
+ {
533
+ "path": "src/PM/pure.ts",
534
+ "kind": "import-statement",
535
+ "original": "./PM/pure.js"
527
536
  }
528
537
  ],
529
- "format": "cjs"
530
- },
531
- "node_modules/iconv-lite/lib/bom-handling.js": {
532
- "bytes": 1109,
533
- "imports": [],
534
- "format": "cjs"
538
+ "format": "esm"
535
539
  },
536
- "node_modules/iconv-lite/encodings/internal.js": {
537
- "bytes": 6115,
540
+ "src/lib/core.test/core.test.specification.ts": {
541
+ "bytes": 2526,
538
542
  "imports": [
539
543
  {
540
- "path": "node_modules/safer-buffer/safer.js",
541
- "kind": "require-call",
542
- "original": "safer-buffer"
544
+ "path": "../../CoreTypes",
545
+ "kind": "import-statement",
546
+ "external": true
543
547
  },
544
548
  {
545
- "path": "string_decoder",
546
- "kind": "require-call",
549
+ "path": "./core.test.types",
550
+ "kind": "import-statement",
547
551
  "external": true
548
552
  }
549
553
  ],
550
- "format": "cjs"
554
+ "format": "esm"
551
555
  },
552
- "node_modules/iconv-lite/encodings/utf16.js": {
553
- "bytes": 5011,
556
+ "src/lib/core.test/MockCore.ts": {
557
+ "bytes": 1142,
554
558
  "imports": [
555
559
  {
556
- "path": "node_modules/safer-buffer/safer.js",
557
- "kind": "require-call",
558
- "original": "safer-buffer"
560
+ "path": "src/lib/core.ts",
561
+ "kind": "import-statement",
562
+ "original": "../core"
563
+ },
564
+ {
565
+ "path": "../../CoreTypes",
566
+ "kind": "import-statement",
567
+ "external": true
568
+ },
569
+ {
570
+ "path": "..",
571
+ "kind": "import-statement",
572
+ "external": true
559
573
  }
560
574
  ],
561
- "format": "cjs"
575
+ "format": "esm"
562
576
  },
563
- "node_modules/iconv-lite/encodings/utf7.js": {
564
- "bytes": 9215,
577
+ "src/lib/core.test/core.test.implementation.ts": {
578
+ "bytes": 3513,
565
579
  "imports": [
566
580
  {
567
- "path": "node_modules/safer-buffer/safer.js",
568
- "kind": "require-call",
569
- "original": "safer-buffer"
570
- }
571
- ],
572
- "format": "cjs"
573
- },
574
- "node_modules/iconv-lite/encodings/sbcs-codec.js": {
575
- "bytes": 2191,
576
- "imports": [
581
+ "path": "../../CoreTypes",
582
+ "kind": "import-statement",
583
+ "external": true
584
+ },
585
+ {
586
+ "path": "src/lib/core.test/MockCore.ts",
587
+ "kind": "import-statement",
588
+ "original": "./MockCore"
589
+ },
590
+ {
591
+ "path": "./core.test.types",
592
+ "kind": "import-statement",
593
+ "external": true
594
+ },
577
595
  {
578
- "path": "node_modules/safer-buffer/safer.js",
579
- "kind": "require-call",
580
- "original": "safer-buffer"
596
+ "path": "stream",
597
+ "kind": "import-statement",
598
+ "external": true
599
+ },
600
+ {
601
+ "path": "..",
602
+ "kind": "import-statement",
603
+ "external": true
604
+ },
605
+ {
606
+ "path": "../../CoreTypes",
607
+ "kind": "import-statement",
608
+ "external": true
581
609
  }
582
610
  ],
583
- "format": "cjs"
584
- },
585
- "node_modules/iconv-lite/encodings/sbcs-data.js": {
586
- "bytes": 4686,
587
- "imports": [],
588
- "format": "cjs"
589
- },
590
- "node_modules/iconv-lite/encodings/sbcs-data-generated.js": {
591
- "bytes": 32034,
592
- "imports": [],
593
- "format": "cjs"
611
+ "format": "esm"
594
612
  },
595
- "node_modules/iconv-lite/encodings/dbcs-codec.js": {
596
- "bytes": 21415,
613
+ "src/lib/core.test/core.test.interface.ts": {
614
+ "bytes": 596,
597
615
  "imports": [
598
616
  {
599
- "path": "node_modules/safer-buffer/safer.js",
600
- "kind": "require-call",
601
- "original": "safer-buffer"
617
+ "path": "../../CoreTypes",
618
+ "kind": "import-statement",
619
+ "external": true
620
+ },
621
+ {
622
+ "path": "./core.test.types",
623
+ "kind": "import-statement",
624
+ "external": true
602
625
  }
603
626
  ],
604
- "format": "cjs"
605
- },
606
- "node_modules/iconv-lite/encodings/tables/shiftjis.json": {
607
- "bytes": 23782,
608
- "imports": []
609
- },
610
- "node_modules/iconv-lite/encodings/tables/eucjp.json": {
611
- "bytes": 41064,
612
- "imports": []
613
- },
614
- "node_modules/iconv-lite/encodings/tables/cp936.json": {
615
- "bytes": 47320,
616
- "imports": []
617
- },
618
- "node_modules/iconv-lite/encodings/tables/gbk-added.json": {
619
- "bytes": 1227,
620
- "imports": []
621
- },
622
- "node_modules/iconv-lite/encodings/tables/gb18030-ranges.json": {
623
- "bytes": 2216,
624
- "imports": []
625
- },
626
- "node_modules/iconv-lite/encodings/tables/cp949.json": {
627
- "bytes": 38122,
628
- "imports": []
629
- },
630
- "node_modules/iconv-lite/encodings/tables/cp950.json": {
631
- "bytes": 42356,
632
- "imports": []
633
- },
634
- "node_modules/iconv-lite/encodings/tables/big5-added.json": {
635
- "bytes": 17717,
636
- "imports": []
627
+ "format": "esm"
637
628
  },
638
- "node_modules/iconv-lite/encodings/dbcs-data.js": {
639
- "bytes": 8291,
629
+ "src/lib/core.test/core.test.ts": {
630
+ "bytes": 561,
640
631
  "imports": [
641
632
  {
642
- "path": "node_modules/iconv-lite/encodings/tables/shiftjis.json",
643
- "kind": "require-call",
644
- "original": "./tables/shiftjis.json"
633
+ "path": "src/Pure.ts",
634
+ "kind": "import-statement",
635
+ "original": "../../Pure"
645
636
  },
646
637
  {
647
- "path": "node_modules/iconv-lite/encodings/tables/eucjp.json",
648
- "kind": "require-call",
649
- "original": "./tables/eucjp.json"
638
+ "path": "src/lib/core.test/core.test.specification.ts",
639
+ "kind": "import-statement",
640
+ "original": "./core.test.specification"
650
641
  },
651
642
  {
652
- "path": "node_modules/iconv-lite/encodings/tables/cp936.json",
653
- "kind": "require-call",
654
- "original": "./tables/cp936.json"
643
+ "path": "src/lib/core.test/core.test.implementation.ts",
644
+ "kind": "import-statement",
645
+ "original": "./core.test.implementation"
655
646
  },
656
647
  {
657
- "path": "node_modules/iconv-lite/encodings/tables/cp936.json",
658
- "kind": "require-call",
659
- "original": "./tables/cp936.json"
648
+ "path": "src/lib/core.test/core.test.interface.ts",
649
+ "kind": "import-statement",
650
+ "original": "./core.test.interface"
660
651
  },
661
652
  {
662
- "path": "node_modules/iconv-lite/encodings/tables/gbk-added.json",
663
- "kind": "require-call",
664
- "original": "./tables/gbk-added.json"
653
+ "path": "./core.test.types",
654
+ "kind": "import-statement",
655
+ "external": true
665
656
  },
666
657
  {
667
- "path": "node_modules/iconv-lite/encodings/tables/cp936.json",
668
- "kind": "require-call",
669
- "original": "./tables/cp936.json"
670
- },
658
+ "path": "src/lib/core.test/MockCore.ts",
659
+ "kind": "import-statement",
660
+ "original": "./MockCore"
661
+ }
662
+ ],
663
+ "format": "esm"
664
+ },
665
+ "src/lib/classBuilder.test/classBuilder.test.specification.ts": {
666
+ "bytes": 3194,
667
+ "imports": [
671
668
  {
672
- "path": "node_modules/iconv-lite/encodings/tables/gbk-added.json",
673
- "kind": "require-call",
674
- "original": "./tables/gbk-added.json"
669
+ "path": "..",
670
+ "kind": "import-statement",
671
+ "external": true
675
672
  },
676
673
  {
677
- "path": "node_modules/iconv-lite/encodings/tables/gb18030-ranges.json",
678
- "kind": "require-call",
679
- "original": "./tables/gb18030-ranges.json"
674
+ "path": "../../CoreTypes",
675
+ "kind": "import-statement",
676
+ "external": true
680
677
  },
681
678
  {
682
- "path": "node_modules/iconv-lite/encodings/tables/cp949.json",
683
- "kind": "require-call",
684
- "original": "./tables/cp949.json"
679
+ "path": "./classBuilder.test.types",
680
+ "kind": "import-statement",
681
+ "external": true
682
+ }
683
+ ],
684
+ "format": "esm"
685
+ },
686
+ "src/lib/classBuilder.test/TestClassBuilder.ts": {
687
+ "bytes": 1991,
688
+ "imports": [
689
+ {
690
+ "path": "src/lib/basebuilder.ts",
691
+ "kind": "import-statement",
692
+ "original": "../basebuilder"
685
693
  },
686
694
  {
687
- "path": "node_modules/iconv-lite/encodings/tables/cp950.json",
688
- "kind": "require-call",
689
- "original": "./tables/cp950.json"
695
+ "path": "../../CoreTypes",
696
+ "kind": "import-statement",
697
+ "external": true
690
698
  },
691
699
  {
692
- "path": "node_modules/iconv-lite/encodings/tables/cp950.json",
693
- "kind": "require-call",
694
- "original": "./tables/cp950.json"
700
+ "path": "../types",
701
+ "kind": "import-statement",
702
+ "external": true
695
703
  },
696
704
  {
697
- "path": "node_modules/iconv-lite/encodings/tables/big5-added.json",
698
- "kind": "require-call",
699
- "original": "./tables/big5-added.json"
705
+ "path": "..",
706
+ "kind": "import-statement",
707
+ "external": true
700
708
  }
701
709
  ],
702
- "format": "cjs"
710
+ "format": "esm"
703
711
  },
704
- "node_modules/iconv-lite/encodings/index.js": {
705
- "bytes": 710,
712
+ "src/lib/classBuilder.test/classBuilder.test.implementation.ts": {
713
+ "bytes": 5744,
706
714
  "imports": [
707
715
  {
708
- "path": "node_modules/iconv-lite/encodings/internal.js",
709
- "kind": "require-call",
710
- "original": "./internal"
711
- },
712
- {
713
- "path": "node_modules/iconv-lite/encodings/utf16.js",
714
- "kind": "require-call",
715
- "original": "./utf16"
716
- },
717
- {
718
- "path": "node_modules/iconv-lite/encodings/utf7.js",
719
- "kind": "require-call",
720
- "original": "./utf7"
716
+ "path": "stream",
717
+ "kind": "import-statement",
718
+ "external": true
721
719
  },
722
720
  {
723
- "path": "node_modules/iconv-lite/encodings/sbcs-codec.js",
724
- "kind": "require-call",
725
- "original": "./sbcs-codec"
721
+ "path": "../../CoreTypes",
722
+ "kind": "import-statement",
723
+ "external": true
726
724
  },
727
725
  {
728
- "path": "node_modules/iconv-lite/encodings/sbcs-data.js",
729
- "kind": "require-call",
730
- "original": "./sbcs-data"
726
+ "path": "src/lib/classBuilder.test/TestClassBuilder.ts",
727
+ "kind": "import-statement",
728
+ "original": "./TestClassBuilder"
731
729
  },
732
730
  {
733
- "path": "node_modules/iconv-lite/encodings/sbcs-data-generated.js",
734
- "kind": "require-call",
735
- "original": "./sbcs-data-generated"
731
+ "path": "./classBuilder.test.types",
732
+ "kind": "import-statement",
733
+ "external": true
736
734
  },
737
735
  {
738
- "path": "node_modules/iconv-lite/encodings/dbcs-codec.js",
739
- "kind": "require-call",
740
- "original": "./dbcs-codec"
736
+ "path": "..",
737
+ "kind": "import-statement",
738
+ "external": true
741
739
  },
742
740
  {
743
- "path": "node_modules/iconv-lite/encodings/dbcs-data.js",
744
- "kind": "require-call",
745
- "original": "./dbcs-data"
741
+ "path": "src/lib/classBuilder.test/classBuilder.test.specification.ts",
742
+ "kind": "import-statement",
743
+ "original": "./classBuilder.test.specification"
746
744
  }
747
745
  ],
748
- "format": "cjs"
746
+ "format": "esm"
749
747
  },
750
- "node_modules/iconv-lite/lib/streams.js": {
751
- "bytes": 3387,
748
+ "src/lib/classBuilder.test/classBuilder.test.interface.ts": {
749
+ "bytes": 574,
752
750
  "imports": [
753
751
  {
754
- "path": "buffer",
755
- "kind": "require-call",
752
+ "path": "../../CoreTypes",
753
+ "kind": "import-statement",
756
754
  "external": true
757
755
  },
758
756
  {
759
- "path": "stream",
760
- "kind": "require-call",
757
+ "path": "../baseBuilder.test/baseBuilder.test.types",
758
+ "kind": "import-statement",
761
759
  "external": true
762
760
  }
763
761
  ],
764
- "format": "cjs"
762
+ "format": "esm"
765
763
  },
766
- "node_modules/iconv-lite/lib/extend-node.js": {
767
- "bytes": 8701,
764
+ "src/lib/classBuilder.test/classBuilder.test.ts": {
765
+ "bytes": 455,
768
766
  "imports": [
769
767
  {
770
- "path": "buffer",
771
- "kind": "require-call",
772
- "external": true
768
+ "path": "src/Node.ts",
769
+ "kind": "import-statement",
770
+ "original": "../../Node"
773
771
  },
774
772
  {
775
- "path": "buffer",
776
- "kind": "require-call",
777
- "external": true
773
+ "path": "src/lib/classBuilder.ts",
774
+ "kind": "import-statement",
775
+ "original": "../classBuilder"
778
776
  },
779
777
  {
780
- "path": "stream",
781
- "kind": "require-call",
782
- "external": true
778
+ "path": "src/lib/classBuilder.test/classBuilder.test.specification.ts",
779
+ "kind": "import-statement",
780
+ "original": "./classBuilder.test.specification"
783
781
  },
784
782
  {
785
- "path": "buffer",
786
- "kind": "require-call",
787
- "external": true
783
+ "path": "src/lib/classBuilder.test/classBuilder.test.implementation.ts",
784
+ "kind": "import-statement",
785
+ "original": "./classBuilder.test.implementation"
788
786
  },
789
787
  {
790
- "path": "stream",
791
- "kind": "require-call",
788
+ "path": "src/lib/classBuilder.test/classBuilder.test.interface.ts",
789
+ "kind": "import-statement",
790
+ "original": "./classBuilder.test.interface"
791
+ },
792
+ {
793
+ "path": "./classBuilder.test.types",
794
+ "kind": "import-statement",
792
795
  "external": true
793
796
  }
794
797
  ],
795
- "format": "cjs"
798
+ "format": "esm"
796
799
  },
797
- "node_modules/iconv-lite/lib/index.js": {
798
- "bytes": 5123,
800
+ "src/lib/baseBuilder.test/baseBuilder.test.specification.ts": {
801
+ "bytes": 811,
799
802
  "imports": [
800
803
  {
801
- "path": "node_modules/safer-buffer/safer.js",
802
- "kind": "require-call",
803
- "original": "safer-buffer"
804
+ "path": "../../CoreTypes",
805
+ "kind": "import-statement",
806
+ "external": true
804
807
  },
805
808
  {
806
- "path": "node_modules/iconv-lite/lib/bom-handling.js",
807
- "kind": "require-call",
808
- "original": "./bom-handling"
809
+ "path": "./baseBuilder.test.types",
810
+ "kind": "import-statement",
811
+ "external": true
812
+ }
813
+ ],
814
+ "format": "esm"
815
+ },
816
+ "src/lib/baseBuilder.test/TestBaseBuilder.ts": {
817
+ "bytes": 2054,
818
+ "imports": [
819
+ {
820
+ "path": "src/lib/basebuilder.ts",
821
+ "kind": "import-statement",
822
+ "original": "../basebuilder"
809
823
  },
810
824
  {
811
- "path": "node_modules/iconv-lite/encodings/index.js",
812
- "kind": "require-call",
813
- "original": "../encodings"
825
+ "path": "../../CoreTypes",
826
+ "kind": "import-statement",
827
+ "external": true
814
828
  },
815
829
  {
816
- "path": "node_modules/iconv-lite/lib/streams.js",
817
- "kind": "require-call",
818
- "original": "./streams"
830
+ "path": "../types",
831
+ "kind": "import-statement",
832
+ "external": true
819
833
  },
820
834
  {
821
- "path": "node_modules/iconv-lite/lib/extend-node.js",
822
- "kind": "require-call",
823
- "original": "./extend-node"
835
+ "path": "..",
836
+ "kind": "import-statement",
837
+ "external": true
824
838
  }
825
839
  ],
826
- "format": "cjs"
827
- },
828
- "node_modules/unpipe/index.js": {
829
- "bytes": 1118,
830
- "imports": [],
831
- "format": "cjs"
840
+ "format": "esm"
832
841
  },
833
- "node_modules/raw-body/index.js": {
834
- "bytes": 7171,
842
+ "src/lib/baseBuilder.test/baseBuilder.test.implementation.ts": {
843
+ "bytes": 3508,
835
844
  "imports": [
836
845
  {
837
- "path": "node_modules/bytes/index.js",
838
- "kind": "require-call",
839
- "original": "bytes"
846
+ "path": "stream",
847
+ "kind": "import-statement",
848
+ "external": true
840
849
  },
841
850
  {
842
- "path": "node_modules/http-errors/index.js",
843
- "kind": "require-call",
844
- "original": "http-errors"
851
+ "path": "../../CoreTypes",
852
+ "kind": "import-statement",
853
+ "external": true
845
854
  },
846
855
  {
847
- "path": "node_modules/iconv-lite/lib/index.js",
848
- "kind": "require-call",
849
- "original": "iconv-lite"
856
+ "path": "src/lib/baseBuilder.test/TestBaseBuilder.ts",
857
+ "kind": "import-statement",
858
+ "original": "./TestBaseBuilder"
850
859
  },
851
860
  {
852
- "path": "node_modules/unpipe/index.js",
853
- "kind": "require-call",
854
- "original": "unpipe"
861
+ "path": "./baseBuilder.test.types",
862
+ "kind": "import-statement",
863
+ "external": true
855
864
  },
856
865
  {
857
- "path": "async_hooks",
858
- "kind": "require-call",
866
+ "path": "..",
867
+ "kind": "import-statement",
859
868
  "external": true
869
+ },
870
+ {
871
+ "path": "src/lib/basebuilder.ts",
872
+ "kind": "import-statement",
873
+ "original": "../basebuilder"
860
874
  }
861
875
  ],
862
- "format": "cjs"
863
- },
864
- "node_modules/ee-first/index.js": {
865
- "bytes": 1684,
866
- "imports": [],
867
- "format": "cjs"
876
+ "format": "esm"
868
877
  },
869
- "node_modules/on-finished/index.js": {
870
- "bytes": 4430,
878
+ "src/lib/baseBuilder.test/baseBuilder.test.interface.ts": {
879
+ "bytes": 501,
871
880
  "imports": [
872
881
  {
873
- "path": "node_modules/ee-first/index.js",
874
- "kind": "require-call",
875
- "original": "ee-first"
882
+ "path": "../../CoreTypes",
883
+ "kind": "import-statement",
884
+ "external": true
876
885
  },
877
886
  {
878
- "path": "async_hooks",
879
- "kind": "require-call",
887
+ "path": "./baseBuilder.test.types",
888
+ "kind": "import-statement",
880
889
  "external": true
881
890
  }
882
891
  ],
883
- "format": "cjs"
892
+ "format": "esm"
884
893
  },
885
- "node_modules/body-parser/lib/read.js": {
886
- "bytes": 4325,
894
+ "src/lib/baseBuilder.test/baseBuilder.test.node.ts": {
895
+ "bytes": 446,
887
896
  "imports": [
888
897
  {
889
- "path": "node_modules/http-errors/index.js",
890
- "kind": "require-call",
891
- "original": "http-errors"
892
- },
893
- {
894
- "path": "node_modules/destroy/index.js",
895
- "kind": "require-call",
896
- "original": "destroy"
897
- },
898
- {
899
- "path": "node_modules/raw-body/index.js",
900
- "kind": "require-call",
901
- "original": "raw-body"
898
+ "path": "src/Pure.ts",
899
+ "kind": "import-statement",
900
+ "original": "../../Pure"
902
901
  },
903
902
  {
904
- "path": "node_modules/iconv-lite/lib/index.js",
905
- "kind": "require-call",
906
- "original": "iconv-lite"
903
+ "path": "src/lib/baseBuilder.test/baseBuilder.test.specification.ts",
904
+ "kind": "import-statement",
905
+ "original": "./baseBuilder.test.specification"
907
906
  },
908
907
  {
909
- "path": "node_modules/on-finished/index.js",
910
- "kind": "require-call",
911
- "original": "on-finished"
908
+ "path": "src/lib/baseBuilder.test/baseBuilder.test.implementation.ts",
909
+ "kind": "import-statement",
910
+ "original": "./baseBuilder.test.implementation"
912
911
  },
913
912
  {
914
- "path": "node_modules/unpipe/index.js",
915
- "kind": "require-call",
916
- "original": "unpipe"
913
+ "path": "src/lib/baseBuilder.test/baseBuilder.test.interface.ts",
914
+ "kind": "import-statement",
915
+ "original": "./baseBuilder.test.interface"
917
916
  },
918
917
  {
919
- "path": "zlib",
920
- "kind": "require-call",
918
+ "path": "./baseBuilder.test.types",
919
+ "kind": "import-statement",
921
920
  "external": true
922
- }
923
- ],
924
- "format": "cjs"
925
- },
926
- "node_modules/media-typer/index.js": {
927
- "bytes": 6375,
928
- "imports": [],
929
- "format": "cjs"
930
- },
931
- "node_modules/mime-db/db.json": {
932
- "bytes": 185882,
933
- "imports": []
934
- },
935
- "node_modules/mime-db/index.js": {
936
- "bytes": 189,
937
- "imports": [
921
+ },
938
922
  {
939
- "path": "node_modules/mime-db/db.json",
940
- "kind": "require-call",
941
- "original": "./db.json"
923
+ "path": "src/lib/basebuilder.ts",
924
+ "kind": "import-statement",
925
+ "original": "../basebuilder"
942
926
  }
943
927
  ],
944
- "format": "cjs"
945
- },
946
- "node_modules/mime-types/index.js": {
947
- "bytes": 3663,
928
+ "format": "esm"
929
+ }
930
+ },
931
+ "outputs": {
932
+ "testeranto/bundles/node/allTests/src/lib/BaseSuite.test/node.test.mjs": {
948
933
  "imports": [
949
934
  {
950
- "path": "node_modules/mime-db/index.js",
951
- "kind": "require-call",
952
- "original": "mime-db"
935
+ "path": "testeranto/bundles/node/allTests/chunk-NQBTLMSG.mjs",
936
+ "kind": "import-statement"
953
937
  },
954
938
  {
955
- "path": "path",
956
- "kind": "require-call",
957
- "external": true
939
+ "path": "testeranto/bundles/node/allTests/chunk-RF3LIUSG.mjs",
940
+ "kind": "import-statement"
958
941
  }
959
942
  ],
960
- "format": "cjs"
943
+ "exports": [
944
+ "default"
945
+ ],
946
+ "entryPoint": "src/lib/BaseSuite.test/node.test.ts",
947
+ "inputs": {
948
+ "src/lib/BaseSuite.test/test.ts": {
949
+ "bytesInOutput": 7915
950
+ },
951
+ "src/lib/BaseSuite.test/node.test.ts": {
952
+ "bytesInOutput": 105
953
+ }
954
+ },
955
+ "bytes": 8396
961
956
  },
962
- "node_modules/type-is/index.js": {
963
- "bytes": 5562,
957
+ "testeranto/bundles/node/allTests/src/lib/pmProxy.test/index.mjs": {
964
958
  "imports": [
965
959
  {
966
- "path": "node_modules/media-typer/index.js",
967
- "kind": "require-call",
968
- "original": "media-typer"
960
+ "path": "testeranto/bundles/node/allTests/chunk-NQBTLMSG.mjs",
961
+ "kind": "import-statement"
969
962
  },
970
963
  {
971
- "path": "node_modules/mime-types/index.js",
972
- "kind": "require-call",
973
- "original": "mime-types"
964
+ "path": "testeranto/bundles/node/allTests/chunk-RF3LIUSG.mjs",
965
+ "kind": "import-statement"
974
966
  }
975
967
  ],
976
- "format": "cjs"
968
+ "exports": [
969
+ "default"
970
+ ],
971
+ "entryPoint": "src/lib/pmProxy.test/index.ts",
972
+ "inputs": {
973
+ "src/lib/pmProxy.test/mockPMBase.ts": {
974
+ "bytesInOutput": 2701
975
+ },
976
+ "src/lib/pmProxy.test/implementation.ts": {
977
+ "bytesInOutput": 2664
978
+ },
979
+ "src/lib/pmProxy.test/specification.ts": {
980
+ "bytesInOutput": 3909
981
+ },
982
+ "node_modules/chai/chai.js": {
983
+ "bytesInOutput": 130527
984
+ },
985
+ "src/lib/pmProxy.test/interface.ts": {
986
+ "bytesInOutput": 814
987
+ },
988
+ "src/lib/pmProxy.test/index.ts": {
989
+ "bytesInOutput": 198
990
+ }
991
+ },
992
+ "bytes": 148751
977
993
  },
978
- "node_modules/body-parser/lib/types/json.js": {
979
- "bytes": 5299,
994
+ "testeranto/bundles/node/allTests/src/lib/core.test/core.test.mjs": {
980
995
  "imports": [
981
996
  {
982
- "path": "node_modules/bytes/index.js",
983
- "kind": "require-call",
984
- "original": "bytes"
997
+ "path": "testeranto/bundles/node/allTests/chunk-YZWFKYY3.mjs",
998
+ "kind": "import-statement"
985
999
  },
986
1000
  {
987
- "path": "node_modules/content-type/index.js",
988
- "kind": "require-call",
989
- "original": "content-type"
1001
+ "path": "testeranto/bundles/node/allTests/chunk-RF3LIUSG.mjs",
1002
+ "kind": "import-statement"
990
1003
  },
991
1004
  {
992
- "path": "node_modules/http-errors/index.js",
993
- "kind": "require-call",
994
- "original": "http-errors"
1005
+ "path": "stream",
1006
+ "kind": "import-statement",
1007
+ "external": true
1008
+ }
1009
+ ],
1010
+ "exports": [
1011
+ "default"
1012
+ ],
1013
+ "entryPoint": "src/lib/core.test/core.test.ts",
1014
+ "inputs": {
1015
+ "src/lib/core.test/core.test.specification.ts": {
1016
+ "bytesInOutput": 2371
995
1017
  },
996
- {
997
- "path": "node_modules/body-parser/node_modules/debug/src/index.js",
998
- "kind": "require-call",
999
- "original": "debug"
1018
+ "src/lib/core.test/MockCore.ts": {
1019
+ "bytesInOutput": 553
1000
1020
  },
1001
- {
1002
- "path": "node_modules/body-parser/lib/read.js",
1003
- "kind": "require-call",
1004
- "original": "../read"
1021
+ "src/lib/core.test/core.test.implementation.ts": {
1022
+ "bytesInOutput": 3134
1005
1023
  },
1006
- {
1007
- "path": "node_modules/type-is/index.js",
1008
- "kind": "require-call",
1009
- "original": "type-is"
1024
+ "src/lib/core.test/core.test.interface.ts": {
1025
+ "bytesInOutput": 475
1026
+ },
1027
+ "src/lib/core.test/core.test.ts": {
1028
+ "bytesInOutput": 281
1010
1029
  }
1011
- ],
1012
- "format": "cjs"
1030
+ },
1031
+ "bytes": 7283
1013
1032
  },
1014
- "node_modules/body-parser/lib/types/raw.js": {
1015
- "bytes": 1884,
1033
+ "testeranto/bundles/node/allTests/src/lib/classBuilder.test/classBuilder.test.mjs": {
1016
1034
  "imports": [
1017
1035
  {
1018
- "path": "node_modules/bytes/index.js",
1019
- "kind": "require-call",
1020
- "original": "bytes"
1021
- },
1022
- {
1023
- "path": "node_modules/body-parser/node_modules/debug/src/index.js",
1024
- "kind": "require-call",
1025
- "original": "debug"
1036
+ "path": "testeranto/bundles/node/allTests/chunk-NQBTLMSG.mjs",
1037
+ "kind": "import-statement"
1026
1038
  },
1027
1039
  {
1028
- "path": "node_modules/body-parser/lib/read.js",
1029
- "kind": "require-call",
1030
- "original": "../read"
1040
+ "path": "testeranto/bundles/node/allTests/chunk-RF3LIUSG.mjs",
1041
+ "kind": "import-statement"
1031
1042
  },
1032
1043
  {
1033
- "path": "node_modules/type-is/index.js",
1034
- "kind": "require-call",
1035
- "original": "type-is"
1044
+ "path": "stream",
1045
+ "kind": "import-statement",
1046
+ "external": true
1036
1047
  }
1037
1048
  ],
1038
- "format": "cjs"
1049
+ "exports": [
1050
+ "default"
1051
+ ],
1052
+ "entryPoint": "src/lib/classBuilder.test/classBuilder.test.ts",
1053
+ "inputs": {
1054
+ "src/lib/classBuilder.test/classBuilder.test.specification.ts": {
1055
+ "bytesInOutput": 2987
1056
+ },
1057
+ "src/lib/classBuilder.test/classBuilder.test.implementation.ts": {
1058
+ "bytesInOutput": 5409
1059
+ },
1060
+ "src/lib/classBuilder.test/TestClassBuilder.ts": {
1061
+ "bytesInOutput": 958
1062
+ },
1063
+ "src/lib/classBuilder.test/classBuilder.test.interface.ts": {
1064
+ "bytesInOutput": 375
1065
+ },
1066
+ "src/lib/classBuilder.test/classBuilder.test.ts": {
1067
+ "bytesInOutput": 127
1068
+ }
1069
+ },
1070
+ "bytes": 10492
1039
1071
  },
1040
- "node_modules/body-parser/lib/types/text.js": {
1041
- "bytes": 2285,
1072
+ "testeranto/bundles/node/allTests/chunk-NQBTLMSG.mjs": {
1042
1073
  "imports": [
1043
1074
  {
1044
- "path": "node_modules/bytes/index.js",
1045
- "kind": "require-call",
1046
- "original": "bytes"
1075
+ "path": "testeranto/bundles/node/allTests/chunk-RF3LIUSG.mjs",
1076
+ "kind": "import-statement"
1047
1077
  },
1048
1078
  {
1049
- "path": "node_modules/content-type/index.js",
1050
- "kind": "require-call",
1051
- "original": "content-type"
1079
+ "path": "net",
1080
+ "kind": "import-statement",
1081
+ "external": true
1052
1082
  },
1053
1083
  {
1054
- "path": "node_modules/body-parser/node_modules/debug/src/index.js",
1055
- "kind": "require-call",
1056
- "original": "debug"
1057
- },
1058
- {
1059
- "path": "node_modules/body-parser/lib/read.js",
1060
- "kind": "require-call",
1061
- "original": "../read"
1062
- },
1063
- {
1064
- "path": "node_modules/type-is/index.js",
1065
- "kind": "require-call",
1066
- "original": "type-is"
1067
- }
1068
- ],
1069
- "format": "cjs"
1070
- },
1071
- "node_modules/es-errors/type.js": {
1072
- "bytes": 75,
1073
- "imports": [],
1074
- "format": "cjs"
1075
- },
1076
- "node_modules/object-inspect/util.inspect.js": {
1077
- "bytes": 42,
1078
- "imports": [
1079
- {
1080
- "path": "util",
1081
- "kind": "require-call",
1082
- "external": true
1083
- }
1084
- ],
1085
- "format": "cjs"
1086
- },
1087
- "node_modules/object-inspect/index.js": {
1088
- "bytes": 19059,
1089
- "imports": [
1090
- {
1091
- "path": "node_modules/object-inspect/util.inspect.js",
1092
- "kind": "require-call",
1093
- "original": "./util.inspect"
1094
- }
1095
- ],
1096
- "format": "cjs"
1097
- },
1098
- "node_modules/side-channel-list/index.js": {
1099
- "bytes": 3391,
1100
- "imports": [
1101
- {
1102
- "path": "node_modules/object-inspect/index.js",
1103
- "kind": "require-call",
1104
- "original": "object-inspect"
1105
- },
1106
- {
1107
- "path": "node_modules/es-errors/type.js",
1108
- "kind": "require-call",
1109
- "original": "es-errors/type"
1110
- }
1111
- ],
1112
- "format": "cjs"
1113
- },
1114
- "node_modules/es-object-atoms/index.js": {
1115
- "bytes": 67,
1116
- "imports": [],
1117
- "format": "cjs"
1118
- },
1119
- "node_modules/es-errors/index.js": {
1120
- "bytes": 66,
1121
- "imports": [],
1122
- "format": "cjs"
1123
- },
1124
- "node_modules/es-errors/eval.js": {
1125
- "bytes": 75,
1126
- "imports": [],
1127
- "format": "cjs"
1128
- },
1129
- "node_modules/es-errors/range.js": {
1130
- "bytes": 77,
1131
- "imports": [],
1132
- "format": "cjs"
1133
- },
1134
- "node_modules/es-errors/ref.js": {
1135
- "bytes": 79,
1136
- "imports": [],
1137
- "format": "cjs"
1138
- },
1139
- "node_modules/es-errors/syntax.js": {
1140
- "bytes": 79,
1141
- "imports": [],
1142
- "format": "cjs"
1143
- },
1144
- "node_modules/es-errors/uri.js": {
1145
- "bytes": 73,
1146
- "imports": [],
1147
- "format": "cjs"
1148
- },
1149
- "node_modules/math-intrinsics/abs.js": {
1150
- "bytes": 73,
1151
- "imports": [],
1152
- "format": "cjs"
1153
- },
1154
- "node_modules/math-intrinsics/floor.js": {
1155
- "bytes": 77,
1156
- "imports": [],
1157
- "format": "cjs"
1158
- },
1159
- "node_modules/math-intrinsics/max.js": {
1160
- "bytes": 73,
1161
- "imports": [],
1162
- "format": "cjs"
1163
- },
1164
- "node_modules/math-intrinsics/min.js": {
1165
- "bytes": 73,
1166
- "imports": [],
1167
- "format": "cjs"
1168
- },
1169
- "node_modules/math-intrinsics/pow.js": {
1170
- "bytes": 73,
1171
- "imports": [],
1172
- "format": "cjs"
1173
- },
1174
- "node_modules/math-intrinsics/round.js": {
1175
- "bytes": 77,
1176
- "imports": [],
1177
- "format": "cjs"
1178
- },
1179
- "node_modules/math-intrinsics/isNaN.js": {
1180
- "bytes": 121,
1181
- "imports": [],
1182
- "format": "cjs"
1183
- },
1184
- "node_modules/math-intrinsics/sign.js": {
1185
- "bytes": 214,
1186
- "imports": [
1187
- {
1188
- "path": "node_modules/math-intrinsics/isNaN.js",
1189
- "kind": "require-call",
1190
- "original": "./isNaN"
1191
- }
1192
- ],
1193
- "format": "cjs"
1194
- },
1195
- "node_modules/gopd/gOPD.js": {
1196
- "bytes": 97,
1197
- "imports": [],
1198
- "format": "cjs"
1199
- },
1200
- "node_modules/gopd/index.js": {
1201
- "bytes": 206,
1202
- "imports": [
1203
- {
1204
- "path": "node_modules/gopd/gOPD.js",
1205
- "kind": "require-call",
1206
- "original": "./gOPD"
1207
- }
1208
- ],
1209
- "format": "cjs"
1210
- },
1211
- "node_modules/es-define-property/index.js": {
1212
- "bytes": 288,
1213
- "imports": [],
1214
- "format": "cjs"
1215
- },
1216
- "node_modules/has-symbols/shams.js": {
1217
- "bytes": 1922,
1218
- "imports": [],
1219
- "format": "cjs"
1220
- },
1221
- "node_modules/has-symbols/index.js": {
1222
- "bytes": 447,
1223
- "imports": [
1224
- {
1225
- "path": "node_modules/has-symbols/shams.js",
1226
- "kind": "require-call",
1227
- "original": "./shams"
1228
- }
1229
- ],
1230
- "format": "cjs"
1231
- },
1232
- "node_modules/get-proto/Reflect.getPrototypeOf.js": {
1233
- "bytes": 150,
1234
- "imports": [],
1235
- "format": "cjs"
1236
- },
1237
- "node_modules/get-proto/Object.getPrototypeOf.js": {
1238
- "bytes": 156,
1239
- "imports": [
1240
- {
1241
- "path": "node_modules/es-object-atoms/index.js",
1242
- "kind": "require-call",
1243
- "original": "es-object-atoms"
1244
- }
1245
- ],
1246
- "format": "cjs"
1247
- },
1248
- "node_modules/function-bind/implementation.js": {
1249
- "bytes": 2043,
1250
- "imports": [],
1251
- "format": "cjs"
1252
- },
1253
- "node_modules/function-bind/index.js": {
1254
- "bytes": 126,
1255
- "imports": [
1256
- {
1257
- "path": "node_modules/function-bind/implementation.js",
1258
- "kind": "require-call",
1259
- "original": "./implementation"
1260
- }
1261
- ],
1262
- "format": "cjs"
1263
- },
1264
- "node_modules/call-bind-apply-helpers/functionCall.js": {
1265
- "bytes": 97,
1266
- "imports": [],
1267
- "format": "cjs"
1268
- },
1269
- "node_modules/call-bind-apply-helpers/functionApply.js": {
1270
- "bytes": 99,
1271
- "imports": [],
1272
- "format": "cjs"
1273
- },
1274
- "node_modules/call-bind-apply-helpers/reflectApply.js": {
1275
- "bytes": 132,
1276
- "imports": [],
1277
- "format": "cjs"
1278
- },
1279
- "node_modules/call-bind-apply-helpers/actualApply.js": {
1280
- "bytes": 280,
1281
- "imports": [
1282
- {
1283
- "path": "node_modules/function-bind/index.js",
1284
- "kind": "require-call",
1285
- "original": "function-bind"
1286
- },
1287
- {
1288
- "path": "node_modules/call-bind-apply-helpers/functionApply.js",
1289
- "kind": "require-call",
1290
- "original": "./functionApply"
1291
- },
1292
- {
1293
- "path": "node_modules/call-bind-apply-helpers/functionCall.js",
1294
- "kind": "require-call",
1295
- "original": "./functionCall"
1296
- },
1297
- {
1298
- "path": "node_modules/call-bind-apply-helpers/reflectApply.js",
1299
- "kind": "require-call",
1300
- "original": "./reflectApply"
1301
- }
1302
- ],
1303
- "format": "cjs"
1304
- },
1305
- "node_modules/call-bind-apply-helpers/index.js": {
1306
- "bytes": 511,
1307
- "imports": [
1308
- {
1309
- "path": "node_modules/function-bind/index.js",
1310
- "kind": "require-call",
1311
- "original": "function-bind"
1312
- },
1313
- {
1314
- "path": "node_modules/es-errors/type.js",
1315
- "kind": "require-call",
1316
- "original": "es-errors/type"
1317
- },
1318
- {
1319
- "path": "node_modules/call-bind-apply-helpers/functionCall.js",
1320
- "kind": "require-call",
1321
- "original": "./functionCall"
1322
- },
1323
- {
1324
- "path": "node_modules/call-bind-apply-helpers/actualApply.js",
1325
- "kind": "require-call",
1326
- "original": "./actualApply"
1327
- }
1328
- ],
1329
- "format": "cjs"
1330
- },
1331
- "node_modules/dunder-proto/get.js": {
1332
- "bytes": 980,
1333
- "imports": [
1334
- {
1335
- "path": "node_modules/call-bind-apply-helpers/index.js",
1336
- "kind": "require-call",
1337
- "original": "call-bind-apply-helpers"
1338
- },
1339
- {
1340
- "path": "node_modules/gopd/index.js",
1341
- "kind": "require-call",
1342
- "original": "gopd"
1343
- }
1344
- ],
1345
- "format": "cjs"
1346
- },
1347
- "node_modules/get-proto/index.js": {
1348
- "bytes": 821,
1349
- "imports": [
1350
- {
1351
- "path": "node_modules/get-proto/Reflect.getPrototypeOf.js",
1352
- "kind": "require-call",
1353
- "original": "./Reflect.getPrototypeOf"
1354
- },
1355
- {
1356
- "path": "node_modules/get-proto/Object.getPrototypeOf.js",
1357
- "kind": "require-call",
1358
- "original": "./Object.getPrototypeOf"
1359
- },
1360
- {
1361
- "path": "node_modules/dunder-proto/get.js",
1362
- "kind": "require-call",
1363
- "original": "dunder-proto/get"
1364
- }
1365
- ],
1366
- "format": "cjs"
1367
- },
1368
- "node_modules/hasown/index.js": {
1369
- "bytes": 206,
1370
- "imports": [
1371
- {
1372
- "path": "node_modules/function-bind/index.js",
1373
- "kind": "require-call",
1374
- "original": "function-bind"
1375
- }
1376
- ],
1377
- "format": "cjs"
1378
- },
1379
- "node_modules/get-intrinsic/index.js": {
1380
- "bytes": 14439,
1381
- "imports": [
1382
- {
1383
- "path": "node_modules/es-object-atoms/index.js",
1384
- "kind": "require-call",
1385
- "original": "es-object-atoms"
1386
- },
1387
- {
1388
- "path": "node_modules/es-errors/index.js",
1389
- "kind": "require-call",
1390
- "original": "es-errors"
1391
- },
1392
- {
1393
- "path": "node_modules/es-errors/eval.js",
1394
- "kind": "require-call",
1395
- "original": "es-errors/eval"
1396
- },
1397
- {
1398
- "path": "node_modules/es-errors/range.js",
1399
- "kind": "require-call",
1400
- "original": "es-errors/range"
1401
- },
1402
- {
1403
- "path": "node_modules/es-errors/ref.js",
1404
- "kind": "require-call",
1405
- "original": "es-errors/ref"
1406
- },
1407
- {
1408
- "path": "node_modules/es-errors/syntax.js",
1409
- "kind": "require-call",
1410
- "original": "es-errors/syntax"
1411
- },
1412
- {
1413
- "path": "node_modules/es-errors/type.js",
1414
- "kind": "require-call",
1415
- "original": "es-errors/type"
1416
- },
1417
- {
1418
- "path": "node_modules/es-errors/uri.js",
1419
- "kind": "require-call",
1420
- "original": "es-errors/uri"
1421
- },
1422
- {
1423
- "path": "node_modules/math-intrinsics/abs.js",
1424
- "kind": "require-call",
1425
- "original": "math-intrinsics/abs"
1426
- },
1427
- {
1428
- "path": "node_modules/math-intrinsics/floor.js",
1429
- "kind": "require-call",
1430
- "original": "math-intrinsics/floor"
1431
- },
1432
- {
1433
- "path": "node_modules/math-intrinsics/max.js",
1434
- "kind": "require-call",
1435
- "original": "math-intrinsics/max"
1436
- },
1437
- {
1438
- "path": "node_modules/math-intrinsics/min.js",
1439
- "kind": "require-call",
1440
- "original": "math-intrinsics/min"
1441
- },
1442
- {
1443
- "path": "node_modules/math-intrinsics/pow.js",
1444
- "kind": "require-call",
1445
- "original": "math-intrinsics/pow"
1446
- },
1447
- {
1448
- "path": "node_modules/math-intrinsics/round.js",
1449
- "kind": "require-call",
1450
- "original": "math-intrinsics/round"
1451
- },
1452
- {
1453
- "path": "node_modules/math-intrinsics/sign.js",
1454
- "kind": "require-call",
1455
- "original": "math-intrinsics/sign"
1456
- },
1457
- {
1458
- "path": "node_modules/gopd/index.js",
1459
- "kind": "require-call",
1460
- "original": "gopd"
1461
- },
1462
- {
1463
- "path": "node_modules/es-define-property/index.js",
1464
- "kind": "require-call",
1465
- "original": "es-define-property"
1466
- },
1467
- {
1468
- "path": "node_modules/has-symbols/index.js",
1469
- "kind": "require-call",
1470
- "original": "has-symbols"
1471
- },
1472
- {
1473
- "path": "node_modules/get-proto/index.js",
1474
- "kind": "require-call",
1475
- "original": "get-proto"
1476
- },
1477
- {
1478
- "path": "node_modules/get-proto/Object.getPrototypeOf.js",
1479
- "kind": "require-call",
1480
- "original": "get-proto/Object.getPrototypeOf"
1481
- },
1482
- {
1483
- "path": "node_modules/get-proto/Reflect.getPrototypeOf.js",
1484
- "kind": "require-call",
1485
- "original": "get-proto/Reflect.getPrototypeOf"
1486
- },
1487
- {
1488
- "path": "node_modules/call-bind-apply-helpers/functionApply.js",
1489
- "kind": "require-call",
1490
- "original": "call-bind-apply-helpers/functionApply"
1491
- },
1492
- {
1493
- "path": "node_modules/call-bind-apply-helpers/functionCall.js",
1494
- "kind": "require-call",
1495
- "original": "call-bind-apply-helpers/functionCall"
1496
- },
1497
- {
1498
- "path": "node_modules/function-bind/index.js",
1499
- "kind": "require-call",
1500
- "original": "function-bind"
1501
- },
1502
- {
1503
- "path": "node_modules/hasown/index.js",
1504
- "kind": "require-call",
1505
- "original": "hasown"
1506
- }
1507
- ],
1508
- "format": "cjs"
1509
- },
1510
- "node_modules/call-bound/index.js": {
1511
- "bytes": 687,
1512
- "imports": [
1513
- {
1514
- "path": "node_modules/get-intrinsic/index.js",
1515
- "kind": "require-call",
1516
- "original": "get-intrinsic"
1517
- },
1518
- {
1519
- "path": "node_modules/call-bind-apply-helpers/index.js",
1520
- "kind": "require-call",
1521
- "original": "call-bind-apply-helpers"
1522
- }
1523
- ],
1524
- "format": "cjs"
1525
- },
1526
- "node_modules/side-channel-map/index.js": {
1527
- "bytes": 1981,
1528
- "imports": [
1529
- {
1530
- "path": "node_modules/get-intrinsic/index.js",
1531
- "kind": "require-call",
1532
- "original": "get-intrinsic"
1533
- },
1534
- {
1535
- "path": "node_modules/call-bound/index.js",
1536
- "kind": "require-call",
1537
- "original": "call-bound"
1538
- },
1539
- {
1540
- "path": "node_modules/object-inspect/index.js",
1541
- "kind": "require-call",
1542
- "original": "object-inspect"
1543
- },
1544
- {
1545
- "path": "node_modules/es-errors/type.js",
1546
- "kind": "require-call",
1547
- "original": "es-errors/type"
1548
- }
1549
- ],
1550
- "format": "cjs"
1551
- },
1552
- "node_modules/side-channel-weakmap/index.js": {
1553
- "bytes": 2708,
1554
- "imports": [
1555
- {
1556
- "path": "node_modules/get-intrinsic/index.js",
1557
- "kind": "require-call",
1558
- "original": "get-intrinsic"
1559
- },
1560
- {
1561
- "path": "node_modules/call-bound/index.js",
1562
- "kind": "require-call",
1563
- "original": "call-bound"
1564
- },
1565
- {
1566
- "path": "node_modules/object-inspect/index.js",
1567
- "kind": "require-call",
1568
- "original": "object-inspect"
1569
- },
1570
- {
1571
- "path": "node_modules/side-channel-map/index.js",
1572
- "kind": "require-call",
1573
- "original": "side-channel-map"
1574
- },
1575
- {
1576
- "path": "node_modules/es-errors/type.js",
1577
- "kind": "require-call",
1578
- "original": "es-errors/type"
1579
- }
1580
- ],
1581
- "format": "cjs"
1582
- },
1583
- "node_modules/side-channel/index.js": {
1584
- "bytes": 1189,
1585
- "imports": [
1586
- {
1587
- "path": "node_modules/es-errors/type.js",
1588
- "kind": "require-call",
1589
- "original": "es-errors/type"
1590
- },
1591
- {
1592
- "path": "node_modules/object-inspect/index.js",
1593
- "kind": "require-call",
1594
- "original": "object-inspect"
1595
- },
1596
- {
1597
- "path": "node_modules/side-channel-list/index.js",
1598
- "kind": "require-call",
1599
- "original": "side-channel-list"
1600
- },
1601
- {
1602
- "path": "node_modules/side-channel-map/index.js",
1603
- "kind": "require-call",
1604
- "original": "side-channel-map"
1605
- },
1606
- {
1607
- "path": "node_modules/side-channel-weakmap/index.js",
1608
- "kind": "require-call",
1609
- "original": "side-channel-weakmap"
1610
- }
1611
- ],
1612
- "format": "cjs"
1613
- },
1614
- "node_modules/qs/lib/formats.js": {
1615
- "bytes": 476,
1616
- "imports": [],
1617
- "format": "cjs"
1618
- },
1619
- "node_modules/qs/lib/utils.js": {
1620
- "bytes": 7267,
1621
- "imports": [
1622
- {
1623
- "path": "node_modules/qs/lib/formats.js",
1624
- "kind": "require-call",
1625
- "original": "./formats"
1626
- }
1627
- ],
1628
- "format": "cjs"
1629
- },
1630
- "node_modules/qs/lib/stringify.js": {
1631
- "bytes": 11331,
1632
- "imports": [
1633
- {
1634
- "path": "node_modules/side-channel/index.js",
1635
- "kind": "require-call",
1636
- "original": "side-channel"
1637
- },
1638
- {
1639
- "path": "node_modules/qs/lib/utils.js",
1640
- "kind": "require-call",
1641
- "original": "./utils"
1642
- },
1643
- {
1644
- "path": "node_modules/qs/lib/formats.js",
1645
- "kind": "require-call",
1646
- "original": "./formats"
1647
- }
1648
- ],
1649
- "format": "cjs"
1650
- },
1651
- "node_modules/qs/lib/parse.js": {
1652
- "bytes": 11317,
1653
- "imports": [
1654
- {
1655
- "path": "node_modules/qs/lib/utils.js",
1656
- "kind": "require-call",
1657
- "original": "./utils"
1658
- }
1659
- ],
1660
- "format": "cjs"
1661
- },
1662
- "node_modules/qs/lib/index.js": {
1663
- "bytes": 211,
1664
- "imports": [
1665
- {
1666
- "path": "node_modules/qs/lib/stringify.js",
1667
- "kind": "require-call",
1668
- "original": "./stringify"
1669
- },
1670
- {
1671
- "path": "node_modules/qs/lib/parse.js",
1672
- "kind": "require-call",
1673
- "original": "./parse"
1674
- },
1675
- {
1676
- "path": "node_modules/qs/lib/formats.js",
1677
- "kind": "require-call",
1678
- "original": "./formats"
1679
- }
1680
- ],
1681
- "format": "cjs"
1682
- },
1683
- "node_modules/body-parser/lib/types/urlencoded.js": {
1684
- "bytes": 6404,
1685
- "imports": [
1686
- {
1687
- "path": "node_modules/bytes/index.js",
1688
- "kind": "require-call",
1689
- "original": "bytes"
1690
- },
1691
- {
1692
- "path": "node_modules/content-type/index.js",
1693
- "kind": "require-call",
1694
- "original": "content-type"
1695
- },
1696
- {
1697
- "path": "node_modules/http-errors/index.js",
1698
- "kind": "require-call",
1699
- "original": "http-errors"
1700
- },
1701
- {
1702
- "path": "node_modules/body-parser/node_modules/debug/src/index.js",
1703
- "kind": "require-call",
1704
- "original": "debug"
1705
- },
1706
- {
1707
- "path": "node_modules/depd/index.js",
1708
- "kind": "require-call",
1709
- "original": "depd"
1710
- },
1711
- {
1712
- "path": "node_modules/body-parser/lib/read.js",
1713
- "kind": "require-call",
1714
- "original": "../read"
1715
- },
1716
- {
1717
- "path": "node_modules/type-is/index.js",
1718
- "kind": "require-call",
1719
- "original": "type-is"
1720
- },
1721
- {
1722
- "path": "node_modules/qs/lib/index.js",
1723
- "kind": "require-call",
1724
- "original": "qs"
1725
- },
1726
- {
1727
- "path": "querystring",
1728
- "kind": "require-call",
1729
- "external": true
1730
- }
1731
- ],
1732
- "format": "cjs"
1733
- },
1734
- "node_modules/body-parser/index.js": {
1735
- "bytes": 2681,
1736
- "imports": [
1737
- {
1738
- "path": "node_modules/depd/index.js",
1739
- "kind": "require-call",
1740
- "original": "depd"
1741
- },
1742
- {
1743
- "path": "node_modules/body-parser/lib/types/json.js",
1744
- "kind": "require-call",
1745
- "original": "./lib/types/json"
1746
- },
1747
- {
1748
- "path": "node_modules/body-parser/lib/types/raw.js",
1749
- "kind": "require-call",
1750
- "original": "./lib/types/raw"
1751
- },
1752
- {
1753
- "path": "node_modules/body-parser/lib/types/text.js",
1754
- "kind": "require-call",
1755
- "original": "./lib/types/text"
1756
- },
1757
- {
1758
- "path": "node_modules/body-parser/lib/types/urlencoded.js",
1759
- "kind": "require-call",
1760
- "original": "./lib/types/urlencoded"
1761
- }
1762
- ],
1763
- "format": "cjs"
1764
- },
1765
- "node_modules/merge-descriptors/index.js": {
1766
- "bytes": 1218,
1767
- "imports": [],
1768
- "format": "cjs"
1769
- },
1770
- "node_modules/finalhandler/node_modules/ms/index.js": {
1771
- "bytes": 2764,
1772
- "imports": [],
1773
- "format": "cjs"
1774
- },
1775
- "node_modules/finalhandler/node_modules/debug/src/debug.js": {
1776
- "bytes": 4394,
1777
- "imports": [
1778
- {
1779
- "path": "node_modules/finalhandler/node_modules/ms/index.js",
1780
- "kind": "require-call",
1781
- "original": "ms"
1782
- }
1783
- ],
1784
- "format": "cjs"
1785
- },
1786
- "node_modules/finalhandler/node_modules/debug/src/browser.js": {
1787
- "bytes": 4734,
1788
- "imports": [
1789
- {
1790
- "path": "node_modules/finalhandler/node_modules/debug/src/debug.js",
1791
- "kind": "require-call",
1792
- "original": "./debug"
1793
- }
1794
- ],
1795
- "format": "cjs"
1796
- },
1797
- "node_modules/finalhandler/node_modules/debug/src/node.js": {
1798
- "bytes": 6015,
1799
- "imports": [
1800
- {
1801
- "path": "tty",
1802
- "kind": "require-call",
1803
- "external": true
1804
- },
1805
- {
1806
- "path": "util",
1807
- "kind": "require-call",
1808
- "external": true
1809
- },
1810
- {
1811
- "path": "node_modules/finalhandler/node_modules/debug/src/debug.js",
1812
- "kind": "require-call",
1813
- "original": "./debug"
1814
- },
1815
- {
1816
- "path": "fs",
1817
- "kind": "require-call",
1818
- "external": true
1819
- },
1820
- {
1821
- "path": "net",
1822
- "kind": "require-call",
1823
- "external": true
1824
- }
1825
- ],
1826
- "format": "cjs"
1827
- },
1828
- "node_modules/finalhandler/node_modules/debug/src/index.js": {
1829
- "bytes": 263,
1830
- "imports": [
1831
- {
1832
- "path": "node_modules/finalhandler/node_modules/debug/src/browser.js",
1833
- "kind": "require-call",
1834
- "original": "./browser.js"
1835
- },
1836
- {
1837
- "path": "node_modules/finalhandler/node_modules/debug/src/node.js",
1838
- "kind": "require-call",
1839
- "original": "./node.js"
1840
- }
1841
- ],
1842
- "format": "cjs"
1843
- },
1844
- "node_modules/encodeurl/index.js": {
1845
- "bytes": 1578,
1846
- "imports": [],
1847
- "format": "cjs"
1848
- },
1849
- "node_modules/escape-html/index.js": {
1850
- "bytes": 1362,
1851
- "imports": [],
1852
- "format": "cjs"
1853
- },
1854
- "node_modules/parseurl/index.js": {
1855
- "bytes": 2809,
1856
- "imports": [
1857
- {
1858
- "path": "url",
1859
- "kind": "require-call",
1860
- "external": true
1861
- }
1862
- ],
1863
- "format": "cjs"
1864
- },
1865
- "node_modules/finalhandler/index.js": {
1866
- "bytes": 6768,
1867
- "imports": [
1868
- {
1869
- "path": "node_modules/finalhandler/node_modules/debug/src/index.js",
1870
- "kind": "require-call",
1871
- "original": "debug"
1872
- },
1873
- {
1874
- "path": "node_modules/encodeurl/index.js",
1875
- "kind": "require-call",
1876
- "original": "encodeurl"
1877
- },
1878
- {
1879
- "path": "node_modules/escape-html/index.js",
1880
- "kind": "require-call",
1881
- "original": "escape-html"
1882
- },
1883
- {
1884
- "path": "node_modules/on-finished/index.js",
1885
- "kind": "require-call",
1886
- "original": "on-finished"
1887
- },
1888
- {
1889
- "path": "node_modules/parseurl/index.js",
1890
- "kind": "require-call",
1891
- "original": "parseurl"
1892
- },
1893
- {
1894
- "path": "node_modules/statuses/index.js",
1895
- "kind": "require-call",
1896
- "original": "statuses"
1897
- },
1898
- {
1899
- "path": "node_modules/unpipe/index.js",
1900
- "kind": "require-call",
1901
- "original": "unpipe"
1902
- }
1903
- ],
1904
- "format": "cjs"
1905
- },
1906
- "node_modules/express/node_modules/ms/index.js": {
1907
- "bytes": 2764,
1908
- "imports": [],
1909
- "format": "cjs"
1910
- },
1911
- "node_modules/express/node_modules/debug/src/debug.js": {
1912
- "bytes": 4394,
1913
- "imports": [
1914
- {
1915
- "path": "node_modules/express/node_modules/ms/index.js",
1916
- "kind": "require-call",
1917
- "original": "ms"
1918
- }
1919
- ],
1920
- "format": "cjs"
1921
- },
1922
- "node_modules/express/node_modules/debug/src/browser.js": {
1923
- "bytes": 4734,
1924
- "imports": [
1925
- {
1926
- "path": "node_modules/express/node_modules/debug/src/debug.js",
1927
- "kind": "require-call",
1928
- "original": "./debug"
1929
- }
1930
- ],
1931
- "format": "cjs"
1932
- },
1933
- "node_modules/express/node_modules/debug/src/node.js": {
1934
- "bytes": 6015,
1935
- "imports": [
1936
- {
1937
- "path": "tty",
1938
- "kind": "require-call",
1939
- "external": true
1940
- },
1941
- {
1942
- "path": "util",
1943
- "kind": "require-call",
1944
- "external": true
1945
- },
1946
- {
1947
- "path": "node_modules/express/node_modules/debug/src/debug.js",
1948
- "kind": "require-call",
1949
- "original": "./debug"
1950
- },
1951
- {
1952
- "path": "fs",
1953
- "kind": "require-call",
1954
- "external": true
1955
- },
1956
- {
1957
- "path": "net",
1958
- "kind": "require-call",
1959
- "external": true
1960
- }
1961
- ],
1962
- "format": "cjs"
1963
- },
1964
- "node_modules/express/node_modules/debug/src/index.js": {
1965
- "bytes": 263,
1966
- "imports": [
1967
- {
1968
- "path": "node_modules/express/node_modules/debug/src/browser.js",
1969
- "kind": "require-call",
1970
- "original": "./browser.js"
1971
- },
1972
- {
1973
- "path": "node_modules/express/node_modules/debug/src/node.js",
1974
- "kind": "require-call",
1975
- "original": "./node.js"
1976
- }
1977
- ],
1978
- "format": "cjs"
1979
- },
1980
- "node_modules/array-flatten/array-flatten.js": {
1981
- "bytes": 1195,
1982
- "imports": [],
1983
- "format": "cjs"
1984
- },
1985
- "node_modules/path-to-regexp/index.js": {
1986
- "bytes": 3839,
1987
- "imports": [],
1988
- "format": "cjs"
1989
- },
1990
- "node_modules/express/lib/router/layer.js": {
1991
- "bytes": 3296,
1992
- "imports": [
1993
- {
1994
- "path": "node_modules/path-to-regexp/index.js",
1995
- "kind": "require-call",
1996
- "original": "path-to-regexp"
1997
- },
1998
- {
1999
- "path": "node_modules/express/node_modules/debug/src/index.js",
2000
- "kind": "require-call",
2001
- "original": "debug"
2002
- }
2003
- ],
2004
- "format": "cjs"
2005
- },
2006
- "node_modules/methods/index.js": {
2007
- "bytes": 1040,
2008
- "imports": [
2009
- {
2010
- "path": "http",
2011
- "kind": "require-call",
2012
- "external": true
2013
- }
2014
- ],
2015
- "format": "cjs"
2016
- },
2017
- "node_modules/express/lib/router/route.js": {
2018
- "bytes": 4399,
2019
- "imports": [
2020
- {
2021
- "path": "node_modules/express/node_modules/debug/src/index.js",
2022
- "kind": "require-call",
2023
- "original": "debug"
2024
- },
2025
- {
2026
- "path": "node_modules/array-flatten/array-flatten.js",
2027
- "kind": "require-call",
2028
- "original": "array-flatten"
2029
- },
2030
- {
2031
- "path": "node_modules/express/lib/router/layer.js",
2032
- "kind": "require-call",
2033
- "original": "./layer"
2034
- },
2035
- {
2036
- "path": "node_modules/methods/index.js",
2037
- "kind": "require-call",
2038
- "original": "methods"
2039
- }
2040
- ],
2041
- "format": "cjs"
2042
- },
2043
- "node_modules/utils-merge/index.js": {
2044
- "bytes": 381,
2045
- "imports": [],
2046
- "format": "cjs"
2047
- },
2048
- "node_modules/express/lib/router/index.js": {
2049
- "bytes": 15123,
2050
- "imports": [
2051
- {
2052
- "path": "node_modules/express/lib/router/route.js",
2053
- "kind": "require-call",
2054
- "original": "./route"
2055
- },
2056
- {
2057
- "path": "node_modules/express/lib/router/layer.js",
2058
- "kind": "require-call",
2059
- "original": "./layer"
2060
- },
2061
- {
2062
- "path": "node_modules/methods/index.js",
2063
- "kind": "require-call",
2064
- "original": "methods"
2065
- },
2066
- {
2067
- "path": "node_modules/utils-merge/index.js",
2068
- "kind": "require-call",
2069
- "original": "utils-merge"
2070
- },
2071
- {
2072
- "path": "node_modules/express/node_modules/debug/src/index.js",
2073
- "kind": "require-call",
2074
- "original": "debug"
2075
- },
2076
- {
2077
- "path": "node_modules/depd/index.js",
2078
- "kind": "require-call",
2079
- "original": "depd"
2080
- },
2081
- {
2082
- "path": "node_modules/array-flatten/array-flatten.js",
2083
- "kind": "require-call",
2084
- "original": "array-flatten"
2085
- },
2086
- {
2087
- "path": "node_modules/parseurl/index.js",
2088
- "kind": "require-call",
2089
- "original": "parseurl"
2090
- },
2091
- {
2092
- "path": "node_modules/setprototypeof/index.js",
2093
- "kind": "require-call",
2094
- "original": "setprototypeof"
2095
- }
2096
- ],
2097
- "format": "cjs"
2098
- },
2099
- "node_modules/express/lib/middleware/init.js": {
2100
- "bytes": 853,
2101
- "imports": [
2102
- {
2103
- "path": "node_modules/setprototypeof/index.js",
2104
- "kind": "require-call",
2105
- "original": "setprototypeof"
2106
- }
2107
- ],
2108
- "format": "cjs"
2109
- },
2110
- "node_modules/express/lib/middleware/query.js": {
2111
- "bytes": 885,
2112
- "imports": [
2113
- {
2114
- "path": "node_modules/utils-merge/index.js",
2115
- "kind": "require-call",
2116
- "original": "utils-merge"
2117
- },
2118
- {
2119
- "path": "node_modules/parseurl/index.js",
2120
- "kind": "require-call",
2121
- "original": "parseurl"
2122
- },
2123
- {
2124
- "path": "node_modules/qs/lib/index.js",
2125
- "kind": "require-call",
2126
- "original": "qs"
2127
- }
2128
- ],
2129
- "format": "cjs"
2130
- },
2131
- "node_modules/express/lib/view.js": {
2132
- "bytes": 3325,
2133
- "imports": [
2134
- {
2135
- "path": "node_modules/express/node_modules/debug/src/index.js",
2136
- "kind": "require-call",
2137
- "original": "debug"
2138
- },
2139
- {
2140
- "path": "path",
2141
- "kind": "require-call",
2142
- "external": true
2143
- },
2144
- {
2145
- "path": "fs",
2146
- "kind": "require-call",
2147
- "external": true
2148
- },
2149
- {
2150
- "path": "<runtime>",
2151
- "kind": "import-statement",
2152
- "external": true
2153
- }
2154
- ],
2155
- "format": "cjs"
2156
- },
2157
- "node_modules/express/node_modules/safe-buffer/index.js": {
2158
- "bytes": 1670,
2159
- "imports": [
2160
- {
2161
- "path": "buffer",
2162
- "kind": "require-call",
2163
- "external": true
2164
- }
2165
- ],
2166
- "format": "cjs"
2167
- },
2168
- "node_modules/content-disposition/node_modules/safe-buffer/index.js": {
2169
- "bytes": 1670,
2170
- "imports": [
2171
- {
2172
- "path": "buffer",
2173
- "kind": "require-call",
2174
- "external": true
2175
- }
2176
- ],
2177
- "format": "cjs"
2178
- },
2179
- "node_modules/content-disposition/index.js": {
2180
- "bytes": 10594,
2181
- "imports": [
2182
- {
2183
- "path": "path",
2184
- "kind": "require-call",
2185
- "external": true
2186
- },
2187
- {
2188
- "path": "node_modules/content-disposition/node_modules/safe-buffer/index.js",
2189
- "kind": "require-call",
2190
- "original": "safe-buffer"
2191
- }
2192
- ],
2193
- "format": "cjs"
2194
- },
2195
- "node_modules/send/node_modules/debug/node_modules/ms/index.js": {
2196
- "bytes": 2764,
2197
- "imports": [],
2198
- "format": "cjs"
2199
- },
2200
- "node_modules/send/node_modules/debug/src/debug.js": {
2201
- "bytes": 4394,
2202
- "imports": [
2203
- {
2204
- "path": "node_modules/send/node_modules/debug/node_modules/ms/index.js",
2205
- "kind": "require-call",
2206
- "original": "ms"
2207
- }
2208
- ],
2209
- "format": "cjs"
2210
- },
2211
- "node_modules/send/node_modules/debug/src/browser.js": {
2212
- "bytes": 4734,
2213
- "imports": [
2214
- {
2215
- "path": "node_modules/send/node_modules/debug/src/debug.js",
2216
- "kind": "require-call",
2217
- "original": "./debug"
2218
- }
2219
- ],
2220
- "format": "cjs"
2221
- },
2222
- "node_modules/send/node_modules/debug/src/node.js": {
2223
- "bytes": 6015,
2224
- "imports": [
2225
- {
2226
- "path": "tty",
2227
- "kind": "require-call",
2228
- "external": true
2229
- },
2230
- {
2231
- "path": "util",
2232
- "kind": "require-call",
2233
- "external": true
2234
- },
2235
- {
2236
- "path": "node_modules/send/node_modules/debug/src/debug.js",
2237
- "kind": "require-call",
2238
- "original": "./debug"
2239
- },
2240
- {
2241
- "path": "fs",
2242
- "kind": "require-call",
2243
- "external": true
2244
- },
2245
- {
2246
- "path": "net",
2247
- "kind": "require-call",
2248
- "external": true
2249
- }
2250
- ],
2251
- "format": "cjs"
2252
- },
2253
- "node_modules/send/node_modules/debug/src/index.js": {
2254
- "bytes": 263,
2255
- "imports": [
2256
- {
2257
- "path": "node_modules/send/node_modules/debug/src/browser.js",
2258
- "kind": "require-call",
2259
- "original": "./browser.js"
2260
- },
2261
- {
2262
- "path": "node_modules/send/node_modules/debug/src/node.js",
2263
- "kind": "require-call",
2264
- "original": "./node.js"
2265
- }
2266
- ],
2267
- "format": "cjs"
2268
- },
2269
- "node_modules/send/node_modules/encodeurl/index.js": {
2270
- "bytes": 1586,
2271
- "imports": [],
2272
- "format": "cjs"
2273
- },
2274
- "node_modules/etag/index.js": {
2275
- "bytes": 2479,
2276
- "imports": [
2277
- {
2278
- "path": "crypto",
2279
- "kind": "require-call",
2280
- "external": true
2281
- },
2282
- {
2283
- "path": "fs",
2284
- "kind": "require-call",
2285
- "external": true
2286
- }
2287
- ],
2288
- "format": "cjs"
2289
- },
2290
- "node_modules/fresh/index.js": {
2291
- "bytes": 2711,
2292
- "imports": [],
2293
- "format": "cjs"
2294
- },
2295
- "node_modules/mime/types.json": {
2296
- "bytes": 31555,
2297
- "imports": []
2298
- },
2299
- "node_modules/mime/mime.js": {
2300
- "bytes": 2726,
2301
- "imports": [
2302
- {
2303
- "path": "path",
2304
- "kind": "require-call",
2305
- "external": true
2306
- },
2307
- {
2308
- "path": "fs",
2309
- "kind": "require-call",
2310
- "external": true
2311
- },
2312
- {
2313
- "path": "node_modules/mime/types.json",
2314
- "kind": "require-call",
2315
- "original": "./types.json"
2316
- }
2317
- ],
2318
- "format": "cjs"
2319
- },
2320
- "node_modules/ms/index.js": {
2321
- "bytes": 3024,
2322
- "imports": [],
2323
- "format": "cjs"
2324
- },
2325
- "node_modules/range-parser/index.js": {
2326
- "bytes": 2900,
2327
- "imports": [],
2328
- "format": "cjs"
2329
- },
2330
- "node_modules/send/index.js": {
2331
- "bytes": 23455,
2332
- "imports": [
2333
- {
2334
- "path": "node_modules/http-errors/index.js",
2335
- "kind": "require-call",
2336
- "original": "http-errors"
2337
- },
2338
- {
2339
- "path": "node_modules/send/node_modules/debug/src/index.js",
2340
- "kind": "require-call",
2341
- "original": "debug"
2342
- },
2343
- {
2344
- "path": "node_modules/depd/index.js",
2345
- "kind": "require-call",
2346
- "original": "depd"
2347
- },
2348
- {
2349
- "path": "node_modules/destroy/index.js",
2350
- "kind": "require-call",
2351
- "original": "destroy"
2352
- },
2353
- {
2354
- "path": "node_modules/send/node_modules/encodeurl/index.js",
2355
- "kind": "require-call",
2356
- "original": "encodeurl"
2357
- },
2358
- {
2359
- "path": "node_modules/escape-html/index.js",
2360
- "kind": "require-call",
2361
- "original": "escape-html"
2362
- },
2363
- {
2364
- "path": "node_modules/etag/index.js",
2365
- "kind": "require-call",
2366
- "original": "etag"
2367
- },
2368
- {
2369
- "path": "node_modules/fresh/index.js",
2370
- "kind": "require-call",
2371
- "original": "fresh"
2372
- },
2373
- {
2374
- "path": "fs",
2375
- "kind": "require-call",
2376
- "external": true
2377
- },
2378
- {
2379
- "path": "node_modules/mime/mime.js",
2380
- "kind": "require-call",
2381
- "original": "mime"
2382
- },
2383
- {
2384
- "path": "node_modules/ms/index.js",
2385
- "kind": "require-call",
2386
- "original": "ms"
2387
- },
2388
- {
2389
- "path": "node_modules/on-finished/index.js",
2390
- "kind": "require-call",
2391
- "original": "on-finished"
2392
- },
2393
- {
2394
- "path": "node_modules/range-parser/index.js",
2395
- "kind": "require-call",
2396
- "original": "range-parser"
2397
- },
2398
- {
2399
- "path": "path",
2400
- "kind": "require-call",
2401
- "external": true
2402
- },
2403
- {
2404
- "path": "node_modules/statuses/index.js",
2405
- "kind": "require-call",
2406
- "original": "statuses"
2407
- },
2408
- {
2409
- "path": "stream",
2410
- "kind": "require-call",
2411
- "external": true
2412
- },
2413
- {
2414
- "path": "util",
2415
- "kind": "require-call",
2416
- "external": true
2417
- }
2418
- ],
2419
- "format": "cjs"
2420
- },
2421
- "node_modules/forwarded/index.js": {
2422
- "bytes": 1578,
2423
- "imports": [],
2424
- "format": "cjs"
2425
- },
2426
- "node_modules/ipaddr.js/lib/ipaddr.js": {
2427
- "bytes": 19333,
2428
- "imports": [],
2429
- "format": "cjs"
2430
- },
2431
- "node_modules/proxy-addr/index.js": {
2432
- "bytes": 6000,
2433
- "imports": [
2434
- {
2435
- "path": "node_modules/forwarded/index.js",
2436
- "kind": "require-call",
2437
- "original": "forwarded"
2438
- },
2439
- {
2440
- "path": "node_modules/ipaddr.js/lib/ipaddr.js",
2441
- "kind": "require-call",
2442
- "original": "ipaddr.js"
2443
- }
2444
- ],
2445
- "format": "cjs"
2446
- },
2447
- "node_modules/express/lib/utils.js": {
2448
- "bytes": 5871,
2449
- "imports": [
2450
- {
2451
- "path": "node_modules/express/node_modules/safe-buffer/index.js",
2452
- "kind": "require-call",
2453
- "original": "safe-buffer"
2454
- },
2455
- {
2456
- "path": "node_modules/content-disposition/index.js",
2457
- "kind": "require-call",
2458
- "original": "content-disposition"
2459
- },
2460
- {
2461
- "path": "node_modules/content-type/index.js",
2462
- "kind": "require-call",
2463
- "original": "content-type"
2464
- },
2465
- {
2466
- "path": "node_modules/depd/index.js",
2467
- "kind": "require-call",
2468
- "original": "depd"
2469
- },
2470
- {
2471
- "path": "node_modules/array-flatten/array-flatten.js",
2472
- "kind": "require-call",
2473
- "original": "array-flatten"
2474
- },
2475
- {
2476
- "path": "node_modules/send/index.js",
2477
- "kind": "require-call",
2478
- "original": "send"
2479
- },
2480
- {
2481
- "path": "node_modules/etag/index.js",
2482
- "kind": "require-call",
2483
- "original": "etag"
2484
- },
2485
- {
2486
- "path": "node_modules/proxy-addr/index.js",
2487
- "kind": "require-call",
2488
- "original": "proxy-addr"
2489
- },
2490
- {
2491
- "path": "node_modules/qs/lib/index.js",
2492
- "kind": "require-call",
2493
- "original": "qs"
2494
- },
2495
- {
2496
- "path": "querystring",
2497
- "kind": "require-call",
2498
- "external": true
2499
- }
2500
- ],
2501
- "format": "cjs"
2502
- },
2503
- "node_modules/express/lib/application.js": {
2504
- "bytes": 14593,
2505
- "imports": [
2506
- {
2507
- "path": "node_modules/finalhandler/index.js",
2508
- "kind": "require-call",
2509
- "original": "finalhandler"
2510
- },
2511
- {
2512
- "path": "node_modules/express/lib/router/index.js",
2513
- "kind": "require-call",
2514
- "original": "./router"
2515
- },
2516
- {
2517
- "path": "node_modules/methods/index.js",
2518
- "kind": "require-call",
2519
- "original": "methods"
2520
- },
2521
- {
2522
- "path": "node_modules/express/lib/middleware/init.js",
2523
- "kind": "require-call",
2524
- "original": "./middleware/init"
2525
- },
2526
- {
2527
- "path": "node_modules/express/lib/middleware/query.js",
2528
- "kind": "require-call",
2529
- "original": "./middleware/query"
2530
- },
2531
- {
2532
- "path": "node_modules/express/node_modules/debug/src/index.js",
2533
- "kind": "require-call",
2534
- "original": "debug"
2535
- },
2536
- {
2537
- "path": "node_modules/express/lib/view.js",
2538
- "kind": "require-call",
2539
- "original": "./view"
2540
- },
2541
- {
2542
- "path": "http",
2543
- "kind": "require-call",
2544
- "external": true
2545
- },
2546
- {
2547
- "path": "node_modules/express/lib/utils.js",
2548
- "kind": "require-call",
2549
- "original": "./utils"
2550
- },
2551
- {
2552
- "path": "node_modules/express/lib/utils.js",
2553
- "kind": "require-call",
2554
- "original": "./utils"
2555
- },
2556
- {
2557
- "path": "node_modules/express/lib/utils.js",
2558
- "kind": "require-call",
2559
- "original": "./utils"
2560
- },
2561
- {
2562
- "path": "node_modules/depd/index.js",
2563
- "kind": "require-call",
2564
- "original": "depd"
2565
- },
2566
- {
2567
- "path": "node_modules/array-flatten/array-flatten.js",
2568
- "kind": "require-call",
2569
- "original": "array-flatten"
2570
- },
2571
- {
2572
- "path": "node_modules/utils-merge/index.js",
2573
- "kind": "require-call",
2574
- "original": "utils-merge"
2575
- },
2576
- {
2577
- "path": "path",
2578
- "kind": "require-call",
2579
- "external": true
2580
- },
2581
- {
2582
- "path": "node_modules/setprototypeof/index.js",
2583
- "kind": "require-call",
2584
- "original": "setprototypeof"
2585
- }
2586
- ],
2587
- "format": "cjs"
2588
- },
2589
- "node_modules/negotiator/lib/charset.js": {
2590
- "bytes": 3081,
2591
- "imports": [],
2592
- "format": "cjs"
2593
- },
2594
- "node_modules/negotiator/lib/encoding.js": {
2595
- "bytes": 3506,
2596
- "imports": [],
2597
- "format": "cjs"
2598
- },
2599
- "node_modules/negotiator/lib/language.js": {
2600
- "bytes": 3409,
2601
- "imports": [],
2602
- "format": "cjs"
2603
- },
2604
- "node_modules/negotiator/lib/mediaType.js": {
2605
- "bytes": 5358,
2606
- "imports": [],
2607
- "format": "cjs"
2608
- },
2609
- "node_modules/negotiator/index.js": {
2610
- "bytes": 2451,
2611
- "imports": [
2612
- {
2613
- "path": "node_modules/negotiator/lib/charset.js",
2614
- "kind": "require-call",
2615
- "original": "./lib/charset"
2616
- },
2617
- {
2618
- "path": "node_modules/negotiator/lib/encoding.js",
2619
- "kind": "require-call",
2620
- "original": "./lib/encoding"
2621
- },
2622
- {
2623
- "path": "node_modules/negotiator/lib/language.js",
2624
- "kind": "require-call",
2625
- "original": "./lib/language"
2626
- },
2627
- {
2628
- "path": "node_modules/negotiator/lib/mediaType.js",
2629
- "kind": "require-call",
2630
- "original": "./lib/mediaType"
2631
- }
2632
- ],
2633
- "format": "cjs"
2634
- },
2635
- "node_modules/accepts/index.js": {
2636
- "bytes": 5252,
2637
- "imports": [
2638
- {
2639
- "path": "node_modules/negotiator/index.js",
2640
- "kind": "require-call",
2641
- "original": "negotiator"
2642
- },
2643
- {
2644
- "path": "node_modules/mime-types/index.js",
2645
- "kind": "require-call",
2646
- "original": "mime-types"
2647
- }
2648
- ],
2649
- "format": "cjs"
2650
- },
2651
- "node_modules/express/lib/request.js": {
2652
- "bytes": 12505,
2653
- "imports": [
2654
- {
2655
- "path": "node_modules/accepts/index.js",
2656
- "kind": "require-call",
2657
- "original": "accepts"
2658
- },
2659
- {
2660
- "path": "node_modules/depd/index.js",
2661
- "kind": "require-call",
2662
- "original": "depd"
2663
- },
2664
- {
2665
- "path": "net",
2666
- "kind": "require-call",
2667
- "external": true
2668
- },
2669
- {
2670
- "path": "node_modules/type-is/index.js",
2671
- "kind": "require-call",
2672
- "original": "type-is"
2673
- },
2674
- {
2675
- "path": "http",
2676
- "kind": "require-call",
2677
- "external": true
2678
- },
2679
- {
2680
- "path": "node_modules/fresh/index.js",
2681
- "kind": "require-call",
2682
- "original": "fresh"
2683
- },
2684
- {
2685
- "path": "node_modules/range-parser/index.js",
2686
- "kind": "require-call",
2687
- "original": "range-parser"
2688
- },
2689
- {
2690
- "path": "node_modules/parseurl/index.js",
2691
- "kind": "require-call",
2692
- "original": "parseurl"
2693
- },
2694
- {
2695
- "path": "node_modules/proxy-addr/index.js",
2696
- "kind": "require-call",
2697
- "original": "proxy-addr"
2698
- }
2699
- ],
2700
- "format": "cjs"
2701
- },
2702
- "node_modules/cookie-signature/index.js": {
2703
- "bytes": 1230,
2704
- "imports": [
2705
- {
2706
- "path": "crypto",
2707
- "kind": "require-call",
2708
- "external": true
2709
- }
2710
- ],
2711
- "format": "cjs"
2712
- },
2713
- "node_modules/cookie/index.js": {
2714
- "bytes": 8103,
2715
- "imports": [],
2716
- "format": "cjs"
2717
- },
2718
- "node_modules/vary/index.js": {
2719
- "bytes": 2930,
2720
- "imports": [],
2721
- "format": "cjs"
2722
- },
2723
- "node_modules/express/lib/response.js": {
2724
- "bytes": 28729,
2725
- "imports": [
2726
- {
2727
- "path": "node_modules/express/node_modules/safe-buffer/index.js",
2728
- "kind": "require-call",
2729
- "original": "safe-buffer"
2730
- },
2731
- {
2732
- "path": "node_modules/content-disposition/index.js",
2733
- "kind": "require-call",
2734
- "original": "content-disposition"
2735
- },
2736
- {
2737
- "path": "node_modules/http-errors/index.js",
2738
- "kind": "require-call",
2739
- "original": "http-errors"
2740
- },
2741
- {
2742
- "path": "node_modules/depd/index.js",
2743
- "kind": "require-call",
2744
- "original": "depd"
2745
- },
2746
- {
2747
- "path": "node_modules/encodeurl/index.js",
2748
- "kind": "require-call",
2749
- "original": "encodeurl"
2750
- },
2751
- {
2752
- "path": "node_modules/escape-html/index.js",
2753
- "kind": "require-call",
2754
- "original": "escape-html"
2755
- },
2756
- {
2757
- "path": "http",
2758
- "kind": "require-call",
2759
- "external": true
2760
- },
2761
- {
2762
- "path": "node_modules/express/lib/utils.js",
2763
- "kind": "require-call",
2764
- "original": "./utils"
2765
- },
2766
- {
2767
- "path": "node_modules/on-finished/index.js",
2768
- "kind": "require-call",
2769
- "original": "on-finished"
2770
- },
2771
- {
2772
- "path": "path",
2773
- "kind": "require-call",
2774
- "external": true
2775
- },
2776
- {
2777
- "path": "node_modules/statuses/index.js",
2778
- "kind": "require-call",
2779
- "original": "statuses"
2780
- },
2781
- {
2782
- "path": "node_modules/utils-merge/index.js",
2783
- "kind": "require-call",
2784
- "original": "utils-merge"
2785
- },
2786
- {
2787
- "path": "node_modules/cookie-signature/index.js",
2788
- "kind": "require-call",
2789
- "original": "cookie-signature"
2790
- },
2791
- {
2792
- "path": "node_modules/express/lib/utils.js",
2793
- "kind": "require-call",
2794
- "original": "./utils"
2795
- },
2796
- {
2797
- "path": "node_modules/express/lib/utils.js",
2798
- "kind": "require-call",
2799
- "original": "./utils"
2800
- },
2801
- {
2802
- "path": "node_modules/express/lib/utils.js",
2803
- "kind": "require-call",
2804
- "original": "./utils"
2805
- },
2806
- {
2807
- "path": "node_modules/cookie/index.js",
2808
- "kind": "require-call",
2809
- "original": "cookie"
2810
- },
2811
- {
2812
- "path": "node_modules/send/index.js",
2813
- "kind": "require-call",
2814
- "original": "send"
2815
- },
2816
- {
2817
- "path": "node_modules/vary/index.js",
2818
- "kind": "require-call",
2819
- "original": "vary"
2820
- }
2821
- ],
2822
- "format": "cjs"
2823
- },
2824
- "node_modules/serve-static/index.js": {
2825
- "bytes": 4521,
2826
- "imports": [
2827
- {
2828
- "path": "node_modules/encodeurl/index.js",
2829
- "kind": "require-call",
2830
- "original": "encodeurl"
2831
- },
2832
- {
2833
- "path": "node_modules/escape-html/index.js",
2834
- "kind": "require-call",
2835
- "original": "escape-html"
2836
- },
2837
- {
2838
- "path": "node_modules/parseurl/index.js",
2839
- "kind": "require-call",
2840
- "original": "parseurl"
2841
- },
2842
- {
2843
- "path": "path",
2844
- "kind": "require-call",
2845
- "external": true
2846
- },
2847
- {
2848
- "path": "node_modules/send/index.js",
2849
- "kind": "require-call",
2850
- "original": "send"
2851
- },
2852
- {
2853
- "path": "url",
2854
- "kind": "require-call",
2855
- "external": true
2856
- }
2857
- ],
2858
- "format": "cjs"
2859
- },
2860
- "node_modules/express/lib/express.js": {
2861
- "bytes": 2409,
2862
- "imports": [
2863
- {
2864
- "path": "node_modules/body-parser/index.js",
2865
- "kind": "require-call",
2866
- "original": "body-parser"
2867
- },
2868
- {
2869
- "path": "events",
2870
- "kind": "require-call",
2871
- "external": true
2872
- },
2873
- {
2874
- "path": "node_modules/merge-descriptors/index.js",
2875
- "kind": "require-call",
2876
- "original": "merge-descriptors"
2877
- },
2878
- {
2879
- "path": "node_modules/express/lib/application.js",
2880
- "kind": "require-call",
2881
- "original": "./application"
2882
- },
2883
- {
2884
- "path": "node_modules/express/lib/router/route.js",
2885
- "kind": "require-call",
2886
- "original": "./router/route"
2887
- },
2888
- {
2889
- "path": "node_modules/express/lib/router/index.js",
2890
- "kind": "require-call",
2891
- "original": "./router"
2892
- },
2893
- {
2894
- "path": "node_modules/express/lib/request.js",
2895
- "kind": "require-call",
2896
- "original": "./request"
2897
- },
2898
- {
2899
- "path": "node_modules/express/lib/response.js",
2900
- "kind": "require-call",
2901
- "original": "./response"
2902
- },
2903
- {
2904
- "path": "node_modules/express/lib/middleware/query.js",
2905
- "kind": "require-call",
2906
- "original": "./middleware/query"
2907
- },
2908
- {
2909
- "path": "node_modules/serve-static/index.js",
2910
- "kind": "require-call",
2911
- "original": "serve-static"
2912
- }
2913
- ],
2914
- "format": "cjs"
2915
- },
2916
- "node_modules/express/index.js": {
2917
- "bytes": 224,
2918
- "imports": [
2919
- {
2920
- "path": "node_modules/express/lib/express.js",
2921
- "kind": "require-call",
2922
- "original": "./lib/express"
2923
- }
2924
- ],
2925
- "format": "cjs"
2926
- },
2927
- "src/mothership/index.ts": {
2928
- "bytes": 262,
2929
- "imports": [
2930
- {
2931
- "path": "node_modules/express/index.js",
2932
- "kind": "import-statement",
2933
- "original": "express"
2934
- }
2935
- ],
2936
- "format": "esm"
2937
- },
2938
- "src/mothership/test.ts": {
2939
- "bytes": 3529,
2940
- "imports": [
2941
- {
2942
- "path": "../CoreTypes",
2943
- "kind": "import-statement",
2944
- "external": true
2945
- },
2946
- {
2947
- "path": "../lib",
2948
- "kind": "import-statement",
2949
- "external": true
2950
- },
2951
- {
2952
- "path": "../lib/types",
2953
- "kind": "import-statement",
2954
- "external": true
2955
- },
2956
- {
2957
- "path": "src/Node.ts",
2958
- "kind": "import-statement",
2959
- "original": "../Node"
2960
- },
2961
- {
2962
- "path": "../PM",
2963
- "kind": "import-statement",
2964
- "external": true
2965
- },
2966
- {
2967
- "path": "src/mothership/index.ts",
2968
- "kind": "import-statement",
2969
- "original": "./index"
2970
- }
2971
- ],
2972
- "format": "esm"
2973
- },
2974
- "src/PM/sidecar.ts": {
2975
- "bytes": 1844,
2976
- "imports": [
2977
- {
2978
- "path": "../lib",
2979
- "kind": "import-statement",
2980
- "external": true
2981
- },
2982
- {
2983
- "path": "../lib",
2984
- "kind": "import-statement",
2985
- "external": true
2986
- }
2987
- ],
2988
- "format": "esm"
2989
- },
2990
- "src/PM/nodeSidecar.ts": {
2991
- "bytes": 1959,
2992
- "imports": [
2993
- {
2994
- "path": "net",
2995
- "kind": "import-statement",
2996
- "external": true
2997
- },
2998
- {
2999
- "path": "../lib",
3000
- "kind": "import-statement",
3001
- "external": true
3002
- },
3003
- {
3004
- "path": "src/PM/sidecar.ts",
3005
- "kind": "import-statement",
3006
- "original": "./sidecar"
3007
- },
3008
- {
3009
- "path": "stream",
3010
- "kind": "import-statement",
3011
- "external": true
3012
- }
3013
- ],
3014
- "format": "esm"
3015
- },
3016
- "src/PM/__tests__/nodeSidecar.testeranto.ts": {
3017
- "bytes": 4060,
3018
- "imports": [
3019
- {
3020
- "path": "net",
3021
- "kind": "import-statement",
3022
- "external": true
3023
- },
3024
- {
3025
- "path": "../../lib",
3026
- "kind": "import-statement",
3027
- "external": true
3028
- },
3029
- {
3030
- "path": "src/PM/nodeSidecar.ts",
3031
- "kind": "import-statement",
3032
- "original": "../nodeSidecar"
3033
- },
3034
- {
3035
- "path": "src/Node.ts",
3036
- "kind": "import-statement",
3037
- "original": "../../Node"
3038
- },
3039
- {
3040
- "path": "../../CoreTypes",
3041
- "kind": "import-statement",
3042
- "external": true
3043
- }
3044
- ],
3045
- "format": "esm"
3046
- },
3047
- "src/PM/pureSidecar.ts": {
3048
- "bytes": 1422,
3049
- "imports": [
3050
- {
3051
- "path": "net",
3052
- "kind": "import-statement",
3053
- "external": true
3054
- },
3055
- {
3056
- "path": "../lib",
3057
- "kind": "import-statement",
3058
- "external": true
3059
- },
3060
- {
3061
- "path": "src/PM/sidecar.ts",
3062
- "kind": "import-statement",
3063
- "original": "./sidecar"
3064
- }
3065
- ],
3066
- "format": "esm"
3067
- },
3068
- "src/PM/__tests__/pureSidecar.testeranto.ts": {
3069
- "bytes": 3665,
3070
- "imports": [
3071
- {
3072
- "path": "net",
3073
- "kind": "import-statement",
3074
- "external": true
3075
- },
3076
- {
3077
- "path": "../../lib",
3078
- "kind": "import-statement",
3079
- "external": true
3080
- },
3081
- {
3082
- "path": "src/PM/pureSidecar.ts",
3083
- "kind": "import-statement",
3084
- "original": "../pureSidecar"
3085
- },
3086
- {
3087
- "path": "src/Node.ts",
3088
- "kind": "import-statement",
3089
- "original": "../../Node"
3090
- },
3091
- {
3092
- "path": "../../CoreTypes",
3093
- "kind": "import-statement",
3094
- "external": true
3095
- }
3096
- ],
3097
- "format": "esm"
3098
- },
3099
- "src/PM/webSidecar.ts": {
3100
- "bytes": 1392,
3101
- "imports": [
3102
- {
3103
- "path": "net",
3104
- "kind": "import-statement",
3105
- "external": true
3106
- },
3107
- {
3108
- "path": "../lib",
3109
- "kind": "import-statement",
3110
- "external": true
3111
- },
3112
- {
3113
- "path": "src/PM/sidecar.ts",
3114
- "kind": "import-statement",
3115
- "original": "./sidecar"
3116
- }
3117
- ],
3118
- "format": "esm"
3119
- },
3120
- "src/PM/__tests__/webSidecar.testeranto.ts": {
3121
- "bytes": 3657,
3122
- "imports": [
3123
- {
3124
- "path": "net",
3125
- "kind": "import-statement",
3126
- "external": true
3127
- },
3128
- {
3129
- "path": "../../lib",
3130
- "kind": "import-statement",
3131
- "external": true
3132
- },
3133
- {
3134
- "path": "src/PM/webSidecar.ts",
3135
- "kind": "import-statement",
3136
- "original": "../webSidecar"
3137
- },
3138
- {
3139
- "path": "src/Node.ts",
3140
- "kind": "import-statement",
3141
- "original": "../../Node"
3142
- },
3143
- {
3144
- "path": "../../CoreTypes",
3145
- "kind": "import-statement",
3146
- "external": true
3147
- }
3148
- ],
3149
- "format": "esm"
3150
- }
3151
- },
3152
- "outputs": {
3153
- "testeranto/bundles/node/allTests/src/lib/BaseSuite.test.mjs": {
3154
- "imports": [
3155
- {
3156
- "path": "testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs",
3157
- "kind": "import-statement"
3158
- }
3159
- ],
3160
- "exports": [
3161
- "default"
3162
- ],
3163
- "entryPoint": "src/lib/BaseSuite.test.ts",
3164
- "inputs": {
3165
- "src/lib/BaseSuite.test.ts": {
3166
- "bytesInOutput": 7575
3167
- }
3168
- },
3169
- "bytes": 7862
3170
- },
3171
- "testeranto/bundles/node/allTests/src/mothership/test.mjs": {
3172
- "imports": [
3173
- {
3174
- "path": "testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs",
3175
- "kind": "import-statement"
3176
- },
3177
- {
3178
- "path": "path",
3179
- "kind": "require-call",
3180
- "external": true
3181
- },
3182
- {
3183
- "path": "util",
3184
- "kind": "require-call",
3185
- "external": true
3186
- },
3187
- {
3188
- "path": "tty",
3189
- "kind": "require-call",
3190
- "external": true
3191
- },
3192
- {
3193
- "path": "util",
3194
- "kind": "require-call",
3195
- "external": true
3196
- },
3197
- {
3198
- "path": "fs",
3199
- "kind": "require-call",
3200
- "external": true
3201
- },
3202
- {
3203
- "path": "net",
3204
- "kind": "require-call",
3205
- "external": true
3206
- },
3207
- {
3208
- "path": "events",
3209
- "kind": "require-call",
3210
- "external": true
3211
- },
3212
- {
3213
- "path": "fs",
3214
- "kind": "require-call",
3215
- "external": true
3216
- },
3217
- {
3218
- "path": "stream",
3219
- "kind": "require-call",
3220
- "external": true
3221
- },
3222
- {
3223
- "path": "zlib",
3224
- "kind": "require-call",
3225
- "external": true
3226
- },
3227
- {
3228
- "path": "buffer",
3229
- "kind": "require-call",
3230
- "external": true
3231
- },
3232
- {
3233
- "path": "string_decoder",
3234
- "kind": "require-call",
3235
- "external": true
3236
- },
3237
- {
3238
- "path": "buffer",
3239
- "kind": "require-call",
3240
- "external": true
3241
- },
3242
- {
3243
- "path": "stream",
3244
- "kind": "require-call",
3245
- "external": true
3246
- },
3247
- {
3248
- "path": "buffer",
3249
- "kind": "require-call",
3250
- "external": true
3251
- },
3252
- {
3253
- "path": "buffer",
3254
- "kind": "require-call",
3255
- "external": true
3256
- },
3257
- {
3258
- "path": "stream",
3259
- "kind": "require-call",
3260
- "external": true
3261
- },
3262
- {
3263
- "path": "buffer",
3264
- "kind": "require-call",
3265
- "external": true
3266
- },
3267
- {
3268
- "path": "stream",
3269
- "kind": "require-call",
3270
- "external": true
3271
- },
3272
- {
3273
- "path": "async_hooks",
3274
- "kind": "require-call",
3275
- "external": true
3276
- },
3277
- {
3278
- "path": "async_hooks",
3279
- "kind": "require-call",
3280
- "external": true
3281
- },
3282
- {
3283
- "path": "zlib",
3284
- "kind": "require-call",
3285
- "external": true
3286
- },
3287
- {
3288
- "path": "path",
3289
- "kind": "require-call",
3290
- "external": true
3291
- },
3292
- {
3293
- "path": "util",
3294
- "kind": "require-call",
3295
- "external": true
3296
- },
3297
- {
3298
- "path": "querystring",
3299
- "kind": "require-call",
3300
- "external": true
3301
- },
3302
- {
3303
- "path": "tty",
3304
- "kind": "require-call",
3305
- "external": true
3306
- },
3307
- {
3308
- "path": "util",
3309
- "kind": "require-call",
3310
- "external": true
3311
- },
3312
- {
3313
- "path": "fs",
3314
- "kind": "require-call",
3315
- "external": true
3316
- },
3317
- {
3318
- "path": "net",
3319
- "kind": "require-call",
3320
- "external": true
3321
- },
3322
- {
3323
- "path": "url",
3324
- "kind": "require-call",
3325
- "external": true
3326
- },
3327
- {
3328
- "path": "tty",
3329
- "kind": "require-call",
3330
- "external": true
3331
- },
3332
- {
3333
- "path": "util",
3334
- "kind": "require-call",
3335
- "external": true
3336
- },
3337
- {
3338
- "path": "fs",
3339
- "kind": "require-call",
3340
- "external": true
3341
- },
3342
- {
3343
- "path": "net",
3344
- "kind": "require-call",
3345
- "external": true
3346
- },
3347
- {
3348
- "path": "http",
3349
- "kind": "require-call",
3350
- "external": true
3351
- },
3352
- {
3353
- "path": "path",
3354
- "kind": "require-call",
3355
- "external": true
3356
- },
3357
- {
3358
- "path": "fs",
3359
- "kind": "require-call",
3360
- "external": true
3361
- },
3362
- {
3363
- "path": "buffer",
3364
- "kind": "require-call",
3365
- "external": true
3366
- },
3367
- {
3368
- "path": "buffer",
3369
- "kind": "require-call",
3370
- "external": true
3371
- },
3372
- {
3373
- "path": "path",
3374
- "kind": "require-call",
3375
- "external": true
3376
- },
3377
- {
3378
- "path": "tty",
3379
- "kind": "require-call",
3380
- "external": true
3381
- },
3382
- {
3383
- "path": "util",
3384
- "kind": "require-call",
3385
- "external": true
3386
- },
3387
- {
3388
- "path": "fs",
3389
- "kind": "require-call",
3390
- "external": true
3391
- },
3392
- {
3393
- "path": "net",
3394
- "kind": "require-call",
3395
- "external": true
3396
- },
3397
- {
3398
- "path": "crypto",
3399
- "kind": "require-call",
3400
- "external": true
3401
- },
3402
- {
3403
- "path": "fs",
3404
- "kind": "require-call",
3405
- "external": true
3406
- },
3407
- {
3408
- "path": "path",
3409
- "kind": "require-call",
3410
- "external": true
3411
- },
3412
- {
3413
- "path": "fs",
3414
- "kind": "require-call",
3415
- "external": true
3416
- },
3417
- {
3418
- "path": "fs",
3419
- "kind": "require-call",
3420
- "external": true
3421
- },
3422
- {
3423
- "path": "path",
3424
- "kind": "require-call",
3425
- "external": true
3426
- },
3427
- {
3428
- "path": "stream",
3429
- "kind": "require-call",
3430
- "external": true
3431
- },
3432
- {
3433
- "path": "util",
3434
- "kind": "require-call",
3435
- "external": true
3436
- },
3437
- {
3438
- "path": "querystring",
3439
- "kind": "require-call",
3440
- "external": true
3441
- },
3442
- {
3443
- "path": "http",
3444
- "kind": "require-call",
3445
- "external": true
3446
- },
3447
- {
3448
- "path": "path",
3449
- "kind": "require-call",
3450
- "external": true
3451
- },
3452
- {
3453
- "path": "net",
3454
- "kind": "require-call",
3455
- "external": true
3456
- },
3457
- {
3458
- "path": "http",
3459
- "kind": "require-call",
3460
- "external": true
3461
- },
3462
- {
3463
- "path": "crypto",
3464
- "kind": "require-call",
3465
- "external": true
3466
- },
3467
- {
3468
- "path": "http",
3469
- "kind": "require-call",
3470
- "external": true
3471
- },
3472
- {
3473
- "path": "path",
3474
- "kind": "require-call",
1084
+ "path": "fs",
1085
+ "kind": "import-statement",
3475
1086
  "external": true
3476
1087
  },
3477
1088
  {
3478
1089
  "path": "path",
3479
- "kind": "require-call",
3480
- "external": true
3481
- },
3482
- {
3483
- "path": "url",
3484
- "kind": "require-call",
3485
- "external": true
3486
- },
3487
- {
3488
- "path": "events",
3489
- "kind": "require-call",
1090
+ "kind": "import-statement",
3490
1091
  "external": true
3491
1092
  }
3492
1093
  ],
3493
1094
  "exports": [
3494
- "default"
1095
+ "Node_default"
3495
1096
  ],
3496
- "entryPoint": "src/mothership/test.ts",
3497
1097
  "inputs": {
3498
- "node_modules/depd/index.js": {
3499
- "bytesInOutput": 9941
3500
- },
3501
- "node_modules/bytes/index.js": {
3502
- "bytesInOutput": 2645
3503
- },
3504
- "node_modules/content-type/index.js": {
3505
- "bytesInOutput": 3642
3506
- },
3507
- "node_modules/setprototypeof/index.js": {
3508
- "bytesInOutput": 550
3509
- },
3510
- "node_modules/statuses/codes.json": {
3511
- "bytesInOutput": 2164
3512
- },
3513
- "node_modules/statuses/index.js": {
3514
- "bytesInOutput": 1894
3515
- },
3516
- "node_modules/inherits/inherits_browser.js": {
3517
- "bytesInOutput": 894
3518
- },
3519
- "node_modules/inherits/inherits.js": {
3520
- "bytesInOutput": 335
3521
- },
3522
- "node_modules/toidentifier/index.js": {
3523
- "bytesInOutput": 361
3524
- },
3525
- "node_modules/http-errors/index.js": {
3526
- "bytesInOutput": 5733
3527
- },
3528
- "node_modules/body-parser/node_modules/ms/index.js": {
3529
- "bytesInOutput": 2575
3530
- },
3531
- "node_modules/body-parser/node_modules/debug/src/debug.js": {
3532
- "bytesInOutput": 3358
3533
- },
3534
- "node_modules/body-parser/node_modules/debug/src/browser.js": {
3535
- "bytesInOutput": 3154
3536
- },
3537
- "node_modules/body-parser/node_modules/debug/src/node.js": {
3538
- "bytesInOutput": 4199
3539
- },
3540
- "node_modules/body-parser/node_modules/debug/src/index.js": {
3541
- "bytesInOutput": 292
3542
- },
3543
- "node_modules/destroy/index.js": {
3544
- "bytesInOutput": 2765
3545
- },
3546
- "node_modules/safer-buffer/safer.js": {
3547
- "bytesInOutput": 2345
3548
- },
3549
- "node_modules/iconv-lite/lib/bom-handling.js": {
3550
- "bytesInOutput": 1221
3551
- },
3552
- "node_modules/iconv-lite/encodings/internal.js": {
3553
- "bytesInOutput": 4828
3554
- },
3555
- "node_modules/iconv-lite/encodings/utf16.js": {
3556
- "bytesInOutput": 3956
3557
- },
3558
- "node_modules/iconv-lite/encodings/utf7.js": {
3559
- "bytesInOutput": 7363
3560
- },
3561
- "node_modules/iconv-lite/encodings/sbcs-codec.js": {
3562
- "bytesInOutput": 2092
3563
- },
3564
- "node_modules/iconv-lite/encodings/sbcs-data.js": {
3565
- "bytesInOutput": 6291
3566
- },
3567
- "node_modules/iconv-lite/encodings/sbcs-data-generated.js": {
3568
- "bytesInOutput": 61929
3569
- },
3570
- "node_modules/iconv-lite/encodings/dbcs-codec.js": {
3571
- "bytesInOutput": 14999
3572
- },
3573
- "node_modules/iconv-lite/encodings/tables/shiftjis.json": {
3574
- "bytesInOutput": 46886
3575
- },
3576
- "node_modules/iconv-lite/encodings/tables/eucjp.json": {
3577
- "bytesInOutput": 81222
3578
- },
3579
- "node_modules/iconv-lite/encodings/tables/cp936.json": {
3580
- "bytesInOutput": 90735
3581
- },
3582
- "node_modules/iconv-lite/encodings/tables/gbk-added.json": {
3583
- "bytesInOutput": 2204
3584
- },
3585
- "node_modules/iconv-lite/encodings/tables/gb18030-ranges.json": {
3586
- "bytesInOutput": 2785
3587
- },
3588
- "node_modules/iconv-lite/encodings/tables/cp949.json": {
3589
- "bytesInOutput": 72748
3590
- },
3591
- "node_modules/iconv-lite/encodings/tables/cp950.json": {
3592
- "bytesInOutput": 83770
3593
- },
3594
- "node_modules/iconv-lite/encodings/tables/big5-added.json": {
3595
- "bytesInOutput": 36622
3596
- },
3597
- "node_modules/iconv-lite/encodings/dbcs-data.js": {
3598
- "bytesInOutput": 8430
3599
- },
3600
- "node_modules/iconv-lite/encodings/index.js": {
3601
- "bytesInOutput": 616
3602
- },
3603
- "node_modules/iconv-lite/lib/streams.js": {
3604
- "bytesInOutput": 3333
3605
- },
3606
- "node_modules/iconv-lite/lib/extend-node.js": {
3607
- "bytesInOutput": 7037
3608
- },
3609
- "node_modules/iconv-lite/lib/index.js": {
3610
- "bytesInOutput": 3965
3611
- },
3612
- "node_modules/unpipe/index.js": {
3613
- "bytesInOutput": 983
3614
- },
3615
- "node_modules/raw-body/index.js": {
3616
- "bytesInOutput": 5993
3617
- },
3618
- "node_modules/ee-first/index.js": {
3619
- "bytesInOutput": 1534
3620
- },
3621
- "node_modules/on-finished/index.js": {
3622
- "bytesInOutput": 3202
3623
- },
3624
- "node_modules/body-parser/lib/read.js": {
3625
- "bytesInOutput": 3891
3626
- },
3627
- "node_modules/media-typer/index.js": {
3628
- "bytesInOutput": 4122
3629
- },
3630
- "node_modules/mime-db/db.json": {
3631
- "bytesInOutput": 212407
3632
- },
3633
- "node_modules/mime-db/index.js": {
3634
- "bytesInOutput": 131
3635
- },
3636
- "node_modules/mime-types/index.js": {
3637
- "bytesInOutput": 2904
3638
- },
3639
- "node_modules/type-is/index.js": {
3640
- "bytesInOutput": 3061
3641
- },
3642
- "node_modules/body-parser/lib/types/json.js": {
3643
- "bytesInOutput": 4174
3644
- },
3645
- "node_modules/body-parser/lib/types/raw.js": {
3646
- "bytesInOutput": 1639
3647
- },
3648
- "node_modules/body-parser/lib/types/text.js": {
3649
- "bytesInOutput": 1976
3650
- },
3651
- "node_modules/es-errors/type.js": {
3652
- "bytesInOutput": 144
3653
- },
3654
- "node_modules/object-inspect/util.inspect.js": {
3655
- "bytesInOutput": 163
3656
- },
3657
- "node_modules/object-inspect/index.js": {
3658
- "bytesInOutput": 19039
3659
- },
3660
- "node_modules/side-channel-list/index.js": {
3661
- "bytesInOutput": 2490
3662
- },
3663
- "node_modules/es-object-atoms/index.js": {
3664
- "bytesInOutput": 159
3665
- },
3666
- "node_modules/es-errors/index.js": {
3667
- "bytesInOutput": 146
3668
- },
3669
- "node_modules/es-errors/eval.js": {
3670
- "bytesInOutput": 144
3671
- },
3672
- "node_modules/es-errors/range.js": {
3673
- "bytesInOutput": 147
3674
- },
3675
- "node_modules/es-errors/ref.js": {
3676
- "bytesInOutput": 147
3677
- },
3678
- "node_modules/es-errors/syntax.js": {
3679
- "bytesInOutput": 150
3680
- },
3681
- "node_modules/es-errors/uri.js": {
3682
- "bytesInOutput": 141
3683
- },
3684
- "node_modules/math-intrinsics/abs.js": {
3685
- "bytesInOutput": 147
3686
- },
3687
- "node_modules/math-intrinsics/floor.js": {
3688
- "bytesInOutput": 153
3689
- },
3690
- "node_modules/math-intrinsics/max.js": {
3691
- "bytesInOutput": 147
3692
- },
3693
- "node_modules/math-intrinsics/min.js": {
3694
- "bytesInOutput": 147
3695
- },
3696
- "node_modules/math-intrinsics/pow.js": {
3697
- "bytesInOutput": 147
3698
- },
3699
- "node_modules/math-intrinsics/round.js": {
3700
- "bytesInOutput": 153
3701
- },
3702
- "node_modules/math-intrinsics/isNaN.js": {
3703
- "bytesInOutput": 207
3704
- },
3705
- "node_modules/math-intrinsics/sign.js": {
3706
- "bytesInOutput": 313
3707
- },
3708
- "node_modules/gopd/gOPD.js": {
3709
- "bytesInOutput": 161
3710
- },
3711
- "node_modules/gopd/index.js": {
3712
- "bytesInOutput": 282
3713
- },
3714
- "node_modules/es-define-property/index.js": {
3715
- "bytesInOutput": 386
3716
- },
3717
- "node_modules/has-symbols/shams.js": {
3718
- "bytesInOutput": 1651
3719
- },
3720
- "node_modules/has-symbols/index.js": {
3721
- "bytesInOutput": 619
3722
- },
3723
- "node_modules/get-proto/Reflect.getPrototypeOf.js": {
3724
- "bytesInOutput": 235
3725
- },
3726
- "node_modules/get-proto/Object.getPrototypeOf.js": {
3727
- "bytesInOutput": 244
3728
- },
3729
- "node_modules/function-bind/implementation.js": {
3730
- "bytesInOutput": 2207
3731
- },
3732
- "node_modules/function-bind/index.js": {
3733
- "bytesInOutput": 243
3734
- },
3735
- "node_modules/call-bind-apply-helpers/functionCall.js": {
3736
- "bytesInOutput": 188
3737
- },
3738
- "node_modules/call-bind-apply-helpers/functionApply.js": {
3739
- "bytesInOutput": 191
3740
- },
3741
- "node_modules/call-bind-apply-helpers/reflectApply.js": {
3742
- "bytesInOutput": 223
3743
- },
3744
- "node_modules/call-bind-apply-helpers/actualApply.js": {
3745
- "bytesInOutput": 374
3746
- },
3747
- "node_modules/call-bind-apply-helpers/index.js": {
3748
- "bytesInOutput": 540
3749
- },
3750
- "node_modules/dunder-proto/get.js": {
3751
- "bytesInOutput": 1014
3752
- },
3753
- "node_modules/get-proto/index.js": {
3754
- "bytesInOutput": 683
3755
- },
3756
- "node_modules/hasown/index.js": {
3757
- "bytesInOutput": 290
3758
- },
3759
- "node_modules/get-intrinsic/index.js": {
3760
- "bytesInOutput": 15022
3761
- },
3762
- "node_modules/call-bound/index.js": {
3763
- "bytesInOutput": 740
3764
- },
3765
- "node_modules/side-channel-map/index.js": {
3766
- "bytesInOutput": 1629
3767
- },
3768
- "node_modules/side-channel-weakmap/index.js": {
3769
- "bytesInOutput": 2509
3770
- },
3771
- "node_modules/side-channel/index.js": {
3772
- "bytesInOutput": 1251
3773
- },
3774
- "node_modules/qs/lib/formats.js": {
3775
- "bytesInOutput": 606
3776
- },
3777
- "node_modules/qs/lib/utils.js": {
3778
- "bytesInOutput": 6623
3779
- },
3780
- "node_modules/qs/lib/stringify.js": {
3781
- "bytesInOutput": 11127
3782
- },
3783
- "node_modules/qs/lib/parse.js": {
3784
- "bytesInOutput": 10253
3785
- },
3786
- "node_modules/qs/lib/index.js": {
3787
- "bytesInOutput": 295
3788
- },
3789
- "node_modules/body-parser/lib/types/urlencoded.js": {
3790
- "bytesInOutput": 5754
3791
- },
3792
- "node_modules/body-parser/index.js": {
3793
- "bytesInOutput": 2110
3794
- },
3795
- "node_modules/merge-descriptors/index.js": {
3796
- "bytesInOutput": 829
3797
- },
3798
- "node_modules/finalhandler/node_modules/ms/index.js": {
3799
- "bytesInOutput": 2577
3800
- },
3801
- "node_modules/finalhandler/node_modules/debug/src/debug.js": {
3802
- "bytesInOutput": 3361
3803
- },
3804
- "node_modules/finalhandler/node_modules/debug/src/browser.js": {
3805
- "bytesInOutput": 3157
3806
- },
3807
- "node_modules/finalhandler/node_modules/debug/src/node.js": {
3808
- "bytesInOutput": 4202
3809
- },
3810
- "node_modules/finalhandler/node_modules/debug/src/index.js": {
3811
- "bytesInOutput": 296
3812
- },
3813
- "node_modules/encodeurl/index.js": {
3814
- "bytesInOutput": 632
3815
- },
3816
- "node_modules/escape-html/index.js": {
3817
- "bytesInOutput": 1181
3818
- },
3819
- "node_modules/parseurl/index.js": {
3820
- "bytesInOutput": 2089
3821
- },
3822
- "node_modules/finalhandler/index.js": {
3823
- "bytesInOutput": 4905
3824
- },
3825
- "node_modules/express/node_modules/ms/index.js": {
3826
- "bytesInOutput": 2572
3827
- },
3828
- "node_modules/express/node_modules/debug/src/debug.js": {
3829
- "bytesInOutput": 3356
3830
- },
3831
- "node_modules/express/node_modules/debug/src/browser.js": {
3832
- "bytesInOutput": 3152
3833
- },
3834
- "node_modules/express/node_modules/debug/src/node.js": {
3835
- "bytesInOutput": 4197
3836
- },
3837
- "node_modules/express/node_modules/debug/src/index.js": {
3838
- "bytesInOutput": 291
3839
- },
3840
- "node_modules/array-flatten/array-flatten.js": {
3841
- "bytesInOutput": 960
3842
- },
3843
- "node_modules/path-to-regexp/index.js": {
3844
- "bytesInOutput": 3534
3845
- },
3846
- "node_modules/express/lib/router/layer.js": {
3847
- "bytesInOutput": 2652
3848
- },
3849
- "node_modules/methods/index.js": {
3850
- "bytesInOutput": 928
3851
- },
3852
- "node_modules/express/lib/router/route.js": {
3853
- "bytesInOutput": 3509
3854
- },
3855
- "node_modules/utils-merge/index.js": {
3856
- "bytesInOutput": 269
3857
- },
3858
- "node_modules/express/lib/router/index.js": {
3859
- "bytesInOutput": 11817
3860
- },
3861
- "node_modules/express/lib/middleware/init.js": {
3862
- "bytesInOutput": 612
3863
- },
3864
- "node_modules/express/lib/middleware/query.js": {
3865
- "bytesInOutput": 765
3866
- },
3867
- "node_modules/express/lib/view.js": {
3868
- "bytesInOutput": 2479
3869
- },
3870
- "node_modules/express/node_modules/safe-buffer/index.js": {
3871
- "bytesInOutput": 1763
3872
- },
3873
- "node_modules/content-disposition/node_modules/safe-buffer/index.js": {
3874
- "bytesInOutput": 1776
3875
- },
3876
- "node_modules/content-disposition/index.js": {
3877
- "bytesInOutput": 6137
3878
- },
3879
- "node_modules/send/node_modules/debug/node_modules/ms/index.js": {
3880
- "bytesInOutput": 2588
3881
- },
3882
- "node_modules/send/node_modules/debug/src/debug.js": {
3883
- "bytesInOutput": 3353
3884
- },
3885
- "node_modules/send/node_modules/debug/src/browser.js": {
3886
- "bytesInOutput": 3149
3887
- },
3888
- "node_modules/send/node_modules/debug/src/node.js": {
3889
- "bytesInOutput": 4194
3890
- },
3891
- "node_modules/send/node_modules/debug/src/index.js": {
3892
- "bytesInOutput": 288
3893
- },
3894
- "node_modules/send/node_modules/encodeurl/index.js": {
3895
- "bytesInOutput": 659
3896
- },
3897
- "node_modules/etag/index.js": {
3898
- "bytesInOutput": 1753
3899
- },
3900
- "node_modules/fresh/index.js": {
3901
- "bytesInOutput": 2143
3902
- },
3903
- "node_modules/mime/types.json": {
3904
- "bytesInOutput": 33603
3905
- },
3906
- "node_modules/mime/mime.js": {
3907
- "bytesInOutput": 1920
3908
- },
3909
- "node_modules/ms/index.js": {
3910
- "bytesInOutput": 2882
3911
- },
3912
- "node_modules/range-parser/index.js": {
3913
- "bytesInOutput": 2259
3914
- },
3915
- "node_modules/send/index.js": {
3916
- "bytesInOutput": 19444
3917
- },
3918
- "node_modules/forwarded/index.js": {
3919
- "bytesInOutput": 1254
3920
- },
3921
- "node_modules/ipaddr.js/lib/ipaddr.js": {
3922
- "bytesInOutput": 21778
3923
- },
3924
- "node_modules/proxy-addr/index.js": {
3925
- "bytesInOutput": 5042
3926
- },
3927
- "node_modules/express/lib/utils.js": {
3928
- "bytesInOutput": 4077
3929
- },
3930
- "node_modules/express/lib/application.js": {
3931
- "bytesInOutput": 9268
3932
- },
3933
- "node_modules/negotiator/lib/charset.js": {
3934
- "bytesInOutput": 2598
3935
- },
3936
- "node_modules/negotiator/lib/encoding.js": {
3937
- "bytesInOutput": 2929
3938
- },
3939
- "node_modules/negotiator/lib/language.js": {
3940
- "bytesInOutput": 2966
3941
- },
3942
- "node_modules/negotiator/lib/mediaType.js": {
3943
- "bytesInOutput": 4826
3944
- },
3945
- "node_modules/negotiator/index.js": {
3946
- "bytesInOutput": 2382
3947
- },
3948
- "node_modules/accepts/index.js": {
3949
- "bytesInOutput": 2803
3950
- },
3951
- "node_modules/express/lib/request.js": {
3952
- "bytesInOutput": 5878
3953
- },
3954
- "node_modules/cookie-signature/index.js": {
3955
- "bytesInOutput": 1006
3956
- },
3957
- "node_modules/cookie/index.js": {
3958
- "bytesInOutput": 5284
3959
- },
3960
- "node_modules/vary/index.js": {
3961
- "bytesInOutput": 2160
3962
- },
3963
- "node_modules/express/lib/response.js": {
3964
- "bytesInOutput": 18432
3965
- },
3966
- "node_modules/serve-static/index.js": {
3967
- "bytesInOutput": 3728
3968
- },
3969
- "node_modules/express/lib/express.js": {
3970
- "bytesInOutput": 2125
3971
- },
3972
- "node_modules/express/index.js": {
3973
- "bytesInOutput": 155
3974
- },
3975
- "src/mothership/index.ts": {
3976
- "bytesInOutput": 300
1098
+ "src/PM/node.ts": {
1099
+ "bytesInOutput": 5229
3977
1100
  },
3978
- "src/mothership/test.ts": {
3979
- "bytesInOutput": 2297
1101
+ "src/Node.ts": {
1102
+ "bytesInOutput": 1441
3980
1103
  }
3981
1104
  },
3982
- "bytes": 1196838
1105
+ "bytes": 6917
3983
1106
  },
3984
- "testeranto/bundles/node/allTests/src/PM/__tests__/nodeSidecar.testeranto.mjs": {
1107
+ "testeranto/bundles/node/allTests/src/lib/baseBuilder.test/baseBuilder.test.node.mjs": {
3985
1108
  "imports": [
3986
1109
  {
3987
- "path": "testeranto/bundles/node/allTests/chunk-PG6KUKNP.mjs",
1110
+ "path": "testeranto/bundles/node/allTests/chunk-YZWFKYY3.mjs",
3988
1111
  "kind": "import-statement"
3989
1112
  },
3990
1113
  {
3991
- "path": "testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs",
1114
+ "path": "testeranto/bundles/node/allTests/chunk-RF3LIUSG.mjs",
3992
1115
  "kind": "import-statement"
3993
1116
  },
3994
1117
  {
3995
- "path": "net",
1118
+ "path": "stream",
3996
1119
  "kind": "import-statement",
3997
1120
  "external": true
3998
1121
  }
@@ -4000,130 +1123,65 @@
4000
1123
  "exports": [
4001
1124
  "default"
4002
1125
  ],
4003
- "entryPoint": "src/PM/__tests__/nodeSidecar.testeranto.ts",
1126
+ "entryPoint": "src/lib/baseBuilder.test/baseBuilder.test.node.ts",
4004
1127
  "inputs": {
4005
- "src/PM/nodeSidecar.ts": {
4006
- "bytesInOutput": 1313
1128
+ "src/lib/baseBuilder.test/baseBuilder.test.specification.ts": {
1129
+ "bytesInOutput": 657
4007
1130
  },
4008
- "src/PM/__tests__/nodeSidecar.testeranto.ts": {
4009
- "bytesInOutput": 3204
4010
- }
4011
- },
4012
- "bytes": 4855
4013
- },
4014
- "testeranto/bundles/node/allTests/src/PM/__tests__/pureSidecar.testeranto.mjs": {
4015
- "imports": [
4016
- {
4017
- "path": "testeranto/bundles/node/allTests/chunk-PG6KUKNP.mjs",
4018
- "kind": "import-statement"
1131
+ "src/lib/baseBuilder.test/baseBuilder.test.implementation.ts": {
1132
+ "bytesInOutput": 2903
4019
1133
  },
4020
- {
4021
- "path": "testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs",
4022
- "kind": "import-statement"
1134
+ "src/lib/baseBuilder.test/TestBaseBuilder.ts": {
1135
+ "bytesInOutput": 970
4023
1136
  },
4024
- {
4025
- "path": "net",
4026
- "kind": "import-statement",
4027
- "external": true
4028
- }
4029
- ],
4030
- "exports": [
4031
- "default"
4032
- ],
4033
- "entryPoint": "src/PM/__tests__/pureSidecar.testeranto.ts",
4034
- "inputs": {
4035
- "src/PM/pureSidecar.ts": {
4036
- "bytesInOutput": 900
1137
+ "src/lib/baseBuilder.test/baseBuilder.test.interface.ts": {
1138
+ "bytesInOutput": 375
4037
1139
  },
4038
- "src/PM/__tests__/pureSidecar.testeranto.ts": {
4039
- "bytesInOutput": 2866
1140
+ "src/lib/baseBuilder.test/baseBuilder.test.node.ts": {
1141
+ "bytesInOutput": 129
4040
1142
  }
4041
1143
  },
4042
- "bytes": 4104
1144
+ "bytes": 5651
4043
1145
  },
4044
- "testeranto/bundles/node/allTests/src/PM/__tests__/webSidecar.testeranto.mjs": {
1146
+ "testeranto/bundles/node/allTests/chunk-YZWFKYY3.mjs": {
4045
1147
  "imports": [
4046
1148
  {
4047
- "path": "testeranto/bundles/node/allTests/chunk-PG6KUKNP.mjs",
4048
- "kind": "import-statement"
4049
- },
4050
- {
4051
- "path": "testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs",
1149
+ "path": "testeranto/bundles/node/allTests/chunk-RF3LIUSG.mjs",
4052
1150
  "kind": "import-statement"
4053
- },
4054
- {
4055
- "path": "net",
4056
- "kind": "import-statement",
4057
- "external": true
4058
1151
  }
4059
1152
  ],
4060
1153
  "exports": [
4061
- "default"
1154
+ "Pure_default"
4062
1155
  ],
4063
- "entryPoint": "src/PM/__tests__/webSidecar.testeranto.ts",
4064
1156
  "inputs": {
4065
- "src/PM/webSidecar.ts": {
4066
- "bytesInOutput": 899
1157
+ "src/PM/pure.ts": {
1158
+ "bytesInOutput": 3131
4067
1159
  },
4068
- "src/PM/__tests__/webSidecar.testeranto.ts": {
4069
- "bytesInOutput": 2861
1160
+ "src/Pure.ts": {
1161
+ "bytesInOutput": 866
4070
1162
  }
4071
1163
  },
4072
- "bytes": 4095
1164
+ "bytes": 4244
4073
1165
  },
4074
- "testeranto/bundles/node/allTests/chunk-PG6KUKNP.mjs": {
1166
+ "testeranto/bundles/node/allTests/chunk-RF3LIUSG.mjs": {
4075
1167
  "imports": [],
4076
1168
  "exports": [
4077
- "PM_sidecar"
4078
- ],
4079
- "inputs": {
4080
- "src/PM/sidecar.ts": {
4081
- "bytesInOutput": 1544
4082
- }
4083
- },
4084
- "bytes": 1679
4085
- },
4086
- "testeranto/bundles/node/allTests/chunk-4PJCC2XT.mjs": {
4087
- "imports": [
4088
- {
4089
- "path": "net",
4090
- "kind": "import-statement",
4091
- "external": true
4092
- },
4093
- {
4094
- "path": "fs",
4095
- "kind": "import-statement",
4096
- "external": true
4097
- },
4098
- {
4099
- "path": "path",
4100
- "kind": "import-statement",
4101
- "external": true
4102
- }
4103
- ],
4104
- "exports": [
1169
+ "BaseBuilder",
4105
1170
  "BaseCheck",
4106
1171
  "BaseGiven",
4107
1172
  "BaseSuite",
4108
1173
  "BaseThen",
4109
1174
  "BaseWhen",
4110
- "Node_default",
4111
- "__commonJS",
4112
- "__require",
4113
- "__toESM"
1175
+ "ClassBuilder",
1176
+ "PM",
1177
+ "TesterantoCore",
1178
+ "andWhenProxy",
1179
+ "butThenProxy",
1180
+ "defaultTestResourceRequirement"
4114
1181
  ],
4115
1182
  "inputs": {
4116
1183
  "src/lib/pmProxy.ts": {
4117
- "bytesInOutput": 3201
4118
- },
4119
- "src/lib/BaseSuite.ts": {
4120
- "bytesInOutput": 2305
4121
- },
4122
- "src/lib/abstractBase.ts": {
4123
- "bytesInOutput": 4668
4124
- },
4125
- "src/lib/index.ts": {
4126
- "bytesInOutput": 674
1184
+ "bytesInOutput": 3236
4127
1185
  },
4128
1186
  "src/lib/basebuilder.ts": {
4129
1187
  "bytesInOutput": 2740
@@ -4131,20 +1189,23 @@
4131
1189
  "src/lib/classBuilder.ts": {
4132
1190
  "bytesInOutput": 2266
4133
1191
  },
4134
- "src/lib/core.ts": {
4135
- "bytesInOutput": 2684
1192
+ "src/lib/BaseSuite.ts": {
1193
+ "bytesInOutput": 2307
4136
1194
  },
4137
- "src/PM/node.ts": {
4138
- "bytesInOutput": 5231
1195
+ "src/lib/index.ts": {
1196
+ "bytesInOutput": 674
1197
+ },
1198
+ "src/lib/abstractBase.ts": {
1199
+ "bytesInOutput": 4598
1200
+ },
1201
+ "src/lib/core.ts": {
1202
+ "bytesInOutput": 2688
4139
1203
  },
4140
1204
  "src/PM/index.ts": {
4141
1205
  "bytesInOutput": 20
4142
- },
4143
- "src/Node.ts": {
4144
- "bytesInOutput": 1289
4145
1206
  }
4146
1207
  },
4147
- "bytes": 27234
1208
+ "bytes": 19004
4148
1209
  }
4149
1210
  }
4150
1211
  }