serverless-spy 0.0.9 → 0.0.10

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 (346) hide show
  1. package/.jsii +5 -2
  2. package/cli/cli.ts +1 -1
  3. package/cli/node_modules/ws/LICENSE +19 -0
  4. package/cli/node_modules/ws/README.md +495 -0
  5. package/cli/node_modules/ws/browser.js +8 -0
  6. package/cli/node_modules/ws/index.js +13 -0
  7. package/cli/node_modules/ws/lib/buffer-util.js +127 -0
  8. package/cli/node_modules/ws/lib/constants.js +12 -0
  9. package/cli/node_modules/ws/lib/event-target.js +266 -0
  10. package/cli/node_modules/ws/lib/extension.js +203 -0
  11. package/cli/node_modules/ws/lib/limiter.js +55 -0
  12. package/cli/node_modules/ws/lib/permessage-deflate.js +511 -0
  13. package/cli/node_modules/ws/lib/receiver.js +618 -0
  14. package/cli/node_modules/ws/lib/sender.js +478 -0
  15. package/cli/node_modules/ws/lib/stream.js +159 -0
  16. package/cli/node_modules/ws/lib/subprotocol.js +62 -0
  17. package/cli/node_modules/ws/lib/validation.js +125 -0
  18. package/cli/node_modules/ws/lib/websocket-server.js +535 -0
  19. package/cli/node_modules/ws/lib/websocket.js +1305 -0
  20. package/cli/node_modules/ws/package.json +61 -0
  21. package/cli/node_modules/ws/wrapper.mjs +8 -0
  22. package/cli/ws.ts +1 -1
  23. package/lib/cjs/cli/cli.d.ts +1 -0
  24. package/lib/cjs/cli/cli.js +87 -0
  25. package/lib/cjs/cli/ws.d.ts +1 -0
  26. package/lib/cjs/cli/ws.js +68 -0
  27. package/lib/cjs/common/getWebSocketUrl.d.ts +2 -0
  28. package/lib/cjs/common/getWebSocketUrl.js +57 -0
  29. package/lib/cjs/index.d.ts +2 -0
  30. package/lib/cjs/index.js +19 -0
  31. package/lib/cjs/listener/PrettifyForDisplay.d.ts +3 -0
  32. package/lib/cjs/listener/PrettifyForDisplay.js +3 -0
  33. package/lib/cjs/listener/RecursivePartial.d.ts +4 -0
  34. package/lib/cjs/listener/RecursivePartial.js +3 -0
  35. package/lib/cjs/listener/SpyHandlers.ts.d.ts +109 -0
  36. package/lib/cjs/listener/SpyHandlers.ts.js +3 -0
  37. package/lib/cjs/listener/SpyListener.d.ts +40 -0
  38. package/lib/cjs/listener/SpyListener.js +3 -0
  39. package/lib/cjs/listener/createServerlessSpyListener.d.ts +13 -0
  40. package/lib/cjs/listener/createServerlessSpyListener.js +167 -0
  41. package/lib/cjs/listener/index.d.ts +2 -0
  42. package/lib/cjs/listener/index.js +19 -0
  43. package/lib/cjs/listener/matchers.d.ts +0 -0
  44. package/lib/cjs/listener/matchers.js +55 -0
  45. package/lib/cjs/listener/setup.d.ts +0 -0
  46. package/lib/cjs/listener/setup.js +21 -0
  47. package/lib/{ServerlessSpy.d.ts → cjs/src/ServerlessSpy.d.ts} +0 -0
  48. package/lib/{ServerlessSpy.js → cjs/src/ServerlessSpy.js} +1 -1
  49. package/lib/{index.d.ts → cjs/src/index.d.ts} +0 -0
  50. package/lib/{index.js → cjs/src/index.js} +0 -0
  51. package/lib/mjs/cli/cli.d.ts +1 -0
  52. package/lib/mjs/cli/cli.js +85 -0
  53. package/lib/mjs/cli/ws.d.ts +1 -0
  54. package/lib/mjs/cli/ws.js +66 -0
  55. package/lib/mjs/common/getWebSocketUrl.d.ts +2 -0
  56. package/lib/mjs/common/getWebSocketUrl.js +53 -0
  57. package/lib/mjs/index.d.ts +2 -0
  58. package/lib/mjs/index.js +3 -0
  59. package/lib/mjs/listener/PrettifyForDisplay.d.ts +3 -0
  60. package/lib/mjs/listener/PrettifyForDisplay.js +2 -0
  61. package/lib/mjs/listener/RecursivePartial.d.ts +4 -0
  62. package/lib/mjs/listener/RecursivePartial.js +2 -0
  63. package/lib/mjs/listener/SpyHandlers.ts.d.ts +109 -0
  64. package/lib/mjs/listener/SpyHandlers.ts.js +2 -0
  65. package/lib/mjs/listener/SpyListener.d.ts +40 -0
  66. package/lib/mjs/listener/SpyListener.js +2 -0
  67. package/lib/mjs/listener/createServerlessSpyListener.d.ts +13 -0
  68. package/lib/mjs/listener/createServerlessSpyListener.js +163 -0
  69. package/lib/mjs/listener/index.d.ts +2 -0
  70. package/lib/mjs/listener/index.js +3 -0
  71. package/lib/mjs/listener/matchers.d.ts +0 -0
  72. package/lib/mjs/listener/matchers.js +55 -0
  73. package/lib/mjs/listener/setup.d.ts +0 -0
  74. package/lib/mjs/listener/setup.js +21 -0
  75. package/lib/mjs/src/ServerlessSpy.d.ts +27 -0
  76. package/lib/mjs/src/ServerlessSpy.js +293 -0
  77. package/lib/mjs/src/index.d.ts +1 -0
  78. package/lib/mjs/src/index.js +2 -0
  79. package/listener/node_modules/ws/LICENSE +19 -0
  80. package/listener/node_modules/ws/README.md +495 -0
  81. package/listener/node_modules/ws/browser.js +8 -0
  82. package/listener/node_modules/ws/index.js +13 -0
  83. package/listener/node_modules/ws/lib/buffer-util.js +127 -0
  84. package/listener/node_modules/ws/lib/constants.js +12 -0
  85. package/listener/node_modules/ws/lib/event-target.js +266 -0
  86. package/listener/node_modules/ws/lib/extension.js +203 -0
  87. package/listener/node_modules/ws/lib/limiter.js +55 -0
  88. package/listener/node_modules/ws/lib/permessage-deflate.js +511 -0
  89. package/listener/node_modules/ws/lib/receiver.js +618 -0
  90. package/listener/node_modules/ws/lib/sender.js +478 -0
  91. package/listener/node_modules/ws/lib/stream.js +159 -0
  92. package/listener/node_modules/ws/lib/subprotocol.js +62 -0
  93. package/listener/node_modules/ws/lib/validation.js +125 -0
  94. package/listener/node_modules/ws/lib/websocket-server.js +535 -0
  95. package/listener/node_modules/ws/lib/websocket.js +1305 -0
  96. package/listener/node_modules/ws/package.json +61 -0
  97. package/listener/node_modules/ws/wrapper.mjs +8 -0
  98. package/node_modules/@aws-crypto/crc32/node_modules/tslib/package.json +1 -5
  99. package/node_modules/@aws-crypto/crc32/package.json +1 -5
  100. package/node_modules/@aws-crypto/crc32c/node_modules/tslib/package.json +1 -5
  101. package/node_modules/@aws-crypto/crc32c/package.json +1 -5
  102. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/package.json +1 -5
  103. package/node_modules/@aws-crypto/ie11-detection/package.json +1 -5
  104. package/node_modules/@aws-crypto/sha1-browser/node_modules/tslib/package.json +1 -5
  105. package/node_modules/@aws-crypto/sha1-browser/package.json +1 -5
  106. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/package.json +1 -5
  107. package/node_modules/@aws-crypto/sha256-browser/package.json +1 -5
  108. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/package.json +1 -5
  109. package/node_modules/@aws-crypto/sha256-js/package.json +1 -5
  110. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/package.json +1 -5
  111. package/node_modules/@aws-crypto/supports-web-crypto/package.json +1 -5
  112. package/node_modules/@aws-crypto/util/node_modules/tslib/package.json +1 -5
  113. package/node_modules/@aws-crypto/util/package.json +1 -5
  114. package/node_modules/@aws-sdk/abort-controller/package.json +1 -5
  115. package/node_modules/@aws-sdk/chunked-blob-reader/package.json +1 -5
  116. package/node_modules/@aws-sdk/chunked-blob-reader-native/package.json +1 -5
  117. package/node_modules/@aws-sdk/client-apigatewaymanagementapi/package.json +1 -5
  118. package/node_modules/@aws-sdk/client-cognito-identity/package.json +1 -5
  119. package/node_modules/@aws-sdk/client-dynamodb/package.json +1 -5
  120. package/node_modules/@aws-sdk/client-eventbridge/package.json +1 -5
  121. package/node_modules/@aws-sdk/client-lambda/package.json +1 -5
  122. package/node_modules/@aws-sdk/client-s3/node_modules/entities/package.json +1 -5
  123. package/node_modules/@aws-sdk/client-s3/package.json +1 -5
  124. package/node_modules/@aws-sdk/client-sns/node_modules/entities/package.json +1 -5
  125. package/node_modules/@aws-sdk/client-sns/package.json +1 -5
  126. package/node_modules/@aws-sdk/client-sqs/node_modules/entities/package.json +1 -5
  127. package/node_modules/@aws-sdk/client-sqs/package.json +1 -5
  128. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/abort-controller/package.json +1 -5
  129. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/client-sso/package.json +1 -5
  130. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/client-sts/package.json +1 -5
  131. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/config-resolver/package.json +1 -5
  132. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/credential-provider-env/package.json +1 -5
  133. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/credential-provider-imds/package.json +1 -5
  134. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/credential-provider-ini/package.json +1 -5
  135. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/credential-provider-node/package.json +1 -5
  136. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/credential-provider-process/package.json +1 -5
  137. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/credential-provider-sso/package.json +1 -5
  138. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/credential-provider-web-identity/package.json +1 -5
  139. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/fetch-http-handler/package.json +1 -5
  140. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/hash-node/package.json +1 -5
  141. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/invalid-dependency/package.json +1 -5
  142. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/is-array-buffer/package.json +1 -5
  143. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/middleware-content-length/package.json +1 -5
  144. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/middleware-host-header/package.json +1 -5
  145. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/middleware-logger/package.json +1 -5
  146. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/middleware-retry/package.json +1 -5
  147. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/middleware-sdk-sts/package.json +1 -5
  148. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/middleware-serde/package.json +1 -5
  149. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/middleware-signing/package.json +1 -5
  150. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/middleware-stack/package.json +1 -5
  151. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/middleware-user-agent/package.json +1 -5
  152. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/node-config-provider/package.json +1 -5
  153. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/node-http-handler/package.json +1 -5
  154. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/property-provider/package.json +1 -5
  155. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/protocol-http/package.json +1 -5
  156. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/querystring-builder/package.json +1 -5
  157. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/querystring-parser/package.json +1 -5
  158. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/service-error-classification/package.json +1 -5
  159. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/shared-ini-file-loader/package.json +1 -5
  160. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/signature-v4/package.json +1 -5
  161. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/smithy-client/package.json +1 -5
  162. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/types/package.json +1 -5
  163. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/url-parser/package.json +1 -5
  164. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/util-base64-browser/package.json +1 -5
  165. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/util-base64-node/package.json +1 -5
  166. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/util-body-length-browser/package.json +1 -5
  167. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/util-body-length-node/package.json +1 -5
  168. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/util-buffer-from/package.json +1 -5
  169. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/util-config-provider/package.json +1 -5
  170. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/util-hex-encoding/package.json +1 -5
  171. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/util-uri-escape/package.json +1 -5
  172. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/util-user-agent-browser/package.json +1 -5
  173. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/util-user-agent-node/package.json +1 -5
  174. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/util-utf8-browser/package.json +1 -5
  175. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/util-utf8-node/package.json +1 -5
  176. package/node_modules/@aws-sdk/client-ssm/node_modules/@aws-sdk/util-waiter/package.json +1 -5
  177. package/node_modules/@aws-sdk/client-ssm/node_modules/entities/package.json +1 -5
  178. package/node_modules/@aws-sdk/client-ssm/package.json +1 -5
  179. package/node_modules/@aws-sdk/client-sso/package.json +1 -5
  180. package/node_modules/@aws-sdk/client-sts/node_modules/entities/package.json +1 -5
  181. package/node_modules/@aws-sdk/client-sts/package.json +1 -5
  182. package/node_modules/@aws-sdk/config-resolver/package.json +1 -5
  183. package/node_modules/@aws-sdk/credential-provider-cognito-identity/package.json +1 -5
  184. package/node_modules/@aws-sdk/credential-provider-env/package.json +1 -5
  185. package/node_modules/@aws-sdk/credential-provider-imds/package.json +1 -5
  186. package/node_modules/@aws-sdk/credential-provider-ini/package.json +1 -5
  187. package/node_modules/@aws-sdk/credential-provider-node/package.json +1 -5
  188. package/node_modules/@aws-sdk/credential-provider-process/package.json +1 -5
  189. package/node_modules/@aws-sdk/credential-provider-sso/package.json +1 -5
  190. package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +1 -5
  191. package/node_modules/@aws-sdk/credential-providers/package.json +1 -5
  192. package/node_modules/@aws-sdk/endpoint-cache/package.json +1 -5
  193. package/node_modules/@aws-sdk/eventstream-codec/package.json +1 -5
  194. package/node_modules/@aws-sdk/eventstream-serde-browser/package.json +1 -5
  195. package/node_modules/@aws-sdk/eventstream-serde-config-resolver/package.json +1 -5
  196. package/node_modules/@aws-sdk/eventstream-serde-node/package.json +1 -5
  197. package/node_modules/@aws-sdk/eventstream-serde-universal/package.json +1 -5
  198. package/node_modules/@aws-sdk/fetch-http-handler/package.json +1 -5
  199. package/node_modules/@aws-sdk/hash-blob-browser/package.json +1 -5
  200. package/node_modules/@aws-sdk/hash-node/package.json +1 -5
  201. package/node_modules/@aws-sdk/hash-stream-node/package.json +1 -5
  202. package/node_modules/@aws-sdk/invalid-dependency/package.json +1 -5
  203. package/node_modules/@aws-sdk/is-array-buffer/package.json +1 -5
  204. package/node_modules/@aws-sdk/lib-dynamodb/package.json +1 -5
  205. package/node_modules/@aws-sdk/md5-js/package.json +1 -5
  206. package/node_modules/@aws-sdk/middleware-bucket-endpoint/package.json +1 -5
  207. package/node_modules/@aws-sdk/middleware-content-length/package.json +1 -5
  208. package/node_modules/@aws-sdk/middleware-endpoint-discovery/package.json +1 -5
  209. package/node_modules/@aws-sdk/middleware-expect-continue/package.json +1 -5
  210. package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +1 -5
  211. package/node_modules/@aws-sdk/middleware-host-header/package.json +1 -5
  212. package/node_modules/@aws-sdk/middleware-location-constraint/package.json +1 -5
  213. package/node_modules/@aws-sdk/middleware-logger/package.json +1 -5
  214. package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +1 -5
  215. package/node_modules/@aws-sdk/middleware-retry/package.json +1 -5
  216. package/node_modules/@aws-sdk/middleware-sdk-eventbridge/package.json +1 -5
  217. package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +1 -5
  218. package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +1 -5
  219. package/node_modules/@aws-sdk/middleware-sdk-sts/package.json +1 -5
  220. package/node_modules/@aws-sdk/middleware-serde/package.json +1 -5
  221. package/node_modules/@aws-sdk/middleware-signing/package.json +1 -5
  222. package/node_modules/@aws-sdk/middleware-ssec/package.json +1 -5
  223. package/node_modules/@aws-sdk/middleware-stack/package.json +1 -5
  224. package/node_modules/@aws-sdk/middleware-user-agent/package.json +1 -5
  225. package/node_modules/@aws-sdk/node-config-provider/package.json +1 -5
  226. package/node_modules/@aws-sdk/node-http-handler/package.json +1 -5
  227. package/node_modules/@aws-sdk/property-provider/package.json +1 -5
  228. package/node_modules/@aws-sdk/protocol-http/package.json +1 -5
  229. package/node_modules/@aws-sdk/querystring-builder/package.json +1 -5
  230. package/node_modules/@aws-sdk/querystring-parser/package.json +1 -5
  231. package/node_modules/@aws-sdk/service-error-classification/package.json +1 -5
  232. package/node_modules/@aws-sdk/shared-ini-file-loader/package.json +1 -5
  233. package/node_modules/@aws-sdk/signature-v4/package.json +1 -5
  234. package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +1 -5
  235. package/node_modules/@aws-sdk/smithy-client/package.json +1 -5
  236. package/node_modules/@aws-sdk/types/package.json +1 -5
  237. package/node_modules/@aws-sdk/url-parser/package.json +1 -5
  238. package/node_modules/@aws-sdk/util-arn-parser/package.json +1 -5
  239. package/node_modules/@aws-sdk/util-base64-browser/package.json +1 -5
  240. package/node_modules/@aws-sdk/util-base64-node/package.json +1 -5
  241. package/node_modules/@aws-sdk/util-body-length-browser/package.json +1 -5
  242. package/node_modules/@aws-sdk/util-body-length-node/package.json +1 -5
  243. package/node_modules/@aws-sdk/util-buffer-from/package.json +1 -5
  244. package/node_modules/@aws-sdk/util-config-provider/package.json +1 -5
  245. package/node_modules/@aws-sdk/util-credentials/node_modules/@aws-sdk/shared-ini-file-loader/package.json +1 -5
  246. package/node_modules/@aws-sdk/util-credentials/package.json +1 -5
  247. package/node_modules/@aws-sdk/util-defaults-mode-browser/package.json +1 -5
  248. package/node_modules/@aws-sdk/util-defaults-mode-node/package.json +1 -5
  249. package/node_modules/@aws-sdk/util-dynamodb/package.json +1 -5
  250. package/node_modules/@aws-sdk/util-hex-encoding/package.json +1 -5
  251. package/node_modules/@aws-sdk/util-locate-window/package.json +1 -5
  252. package/node_modules/@aws-sdk/util-middleware/package.json +1 -5
  253. package/node_modules/@aws-sdk/util-stream-browser/package.json +1 -5
  254. package/node_modules/@aws-sdk/util-stream-node/package.json +1 -5
  255. package/node_modules/@aws-sdk/util-uri-escape/package.json +1 -5
  256. package/node_modules/@aws-sdk/util-user-agent-browser/package.json +1 -5
  257. package/node_modules/@aws-sdk/util-user-agent-node/package.json +1 -5
  258. package/node_modules/@aws-sdk/util-utf8-browser/package.json +1 -5
  259. package/node_modules/@aws-sdk/util-utf8-node/package.json +1 -5
  260. package/node_modules/@aws-sdk/util-waiter/package.json +1 -5
  261. package/node_modules/@aws-sdk/xml-builder/package.json +1 -5
  262. package/node_modules/@graphql-tools/merge/package.json +0 -4
  263. package/node_modules/@graphql-tools/schema/package.json +0 -4
  264. package/node_modules/@graphql-tools/utils/package.json +0 -4
  265. package/node_modules/@serverless-stack/node/package.json +1 -5
  266. package/node_modules/@tsconfig/node14/package.json +1 -5
  267. package/node_modules/available-typed-arrays/package.json +1 -5
  268. package/node_modules/aws-jwt-verify/package.json +1 -5
  269. package/node_modules/aws-lambda/node_modules/argparse/package.json +1 -5
  270. package/node_modules/aws-lambda/node_modules/commander/package.json +1 -5
  271. package/node_modules/aws-lambda/node_modules/js-yaml/package.json +1 -5
  272. package/node_modules/aws-lambda/package.json +1 -5
  273. package/node_modules/aws-sdk/node_modules/uuid/package.json +1 -5
  274. package/node_modules/aws-sdk/package.json +0 -4
  275. package/node_modules/aws4/package.json +1 -5
  276. package/node_modules/base64-js/package.json +1 -5
  277. package/node_modules/bowser/package.json +1 -5
  278. package/node_modules/buffer/package.json +1 -5
  279. package/node_modules/call-bind/package.json +1 -5
  280. package/node_modules/define-properties/package.json +1 -5
  281. package/node_modules/es-abstract/package.json +1 -5
  282. package/node_modules/es-to-primitive/package.json +1 -5
  283. package/node_modules/esprima/package.json +1 -5
  284. package/node_modules/events/package.json +0 -4
  285. package/node_modules/fast-xml-parser/package.json +1 -5
  286. package/node_modules/for-each/package.json +1 -5
  287. package/node_modules/function-bind/package.json +1 -5
  288. package/node_modules/function.prototype.name/package.json +1 -5
  289. package/node_modules/functions-have-names/package.json +1 -5
  290. package/node_modules/get-intrinsic/package.json +1 -5
  291. package/node_modules/get-symbol-description/package.json +1 -5
  292. package/node_modules/glob-to-regexp/package.json +1 -5
  293. package/node_modules/graceful-fs/package.json +1 -5
  294. package/node_modules/graphql/package.json +1 -5
  295. package/node_modules/graphql-helix/package.json +1 -5
  296. package/node_modules/has/package.json +1 -5
  297. package/node_modules/has-bigints/package.json +1 -5
  298. package/node_modules/has-property-descriptors/package.json +1 -5
  299. package/node_modules/has-symbols/package.json +1 -5
  300. package/node_modules/has-tostringtag/package.json +1 -5
  301. package/node_modules/ieee754/package.json +1 -5
  302. package/node_modules/inherits/package.json +1 -5
  303. package/node_modules/internal-slot/package.json +1 -5
  304. package/node_modules/is-arguments/package.json +1 -5
  305. package/node_modules/is-bigint/package.json +1 -5
  306. package/node_modules/is-boolean-object/package.json +1 -5
  307. package/node_modules/is-callable/package.json +1 -5
  308. package/node_modules/is-date-object/package.json +1 -5
  309. package/node_modules/is-generator-function/package.json +1 -5
  310. package/node_modules/is-negative-zero/package.json +1 -5
  311. package/node_modules/is-number-object/package.json +1 -5
  312. package/node_modules/is-regex/package.json +1 -5
  313. package/node_modules/is-shared-array-buffer/package.json +1 -5
  314. package/node_modules/is-string/package.json +1 -5
  315. package/node_modules/is-symbol/package.json +1 -5
  316. package/node_modules/is-typed-array/package.json +1 -5
  317. package/node_modules/is-weakref/package.json +1 -5
  318. package/node_modules/isarray/package.json +1 -5
  319. package/node_modules/jmespath/package.json +1 -5
  320. package/node_modules/mnemonist/package.json +1 -5
  321. package/node_modules/object-inspect/package.json +1 -5
  322. package/node_modules/object-keys/package.json +1 -5
  323. package/node_modules/object.assign/package.json +1 -5
  324. package/node_modules/obliterator/package.json +1 -5
  325. package/node_modules/querystring/package.json +1 -5
  326. package/node_modules/regexp.prototype.flags/package.json +1 -5
  327. package/node_modules/safe-buffer/package.json +1 -5
  328. package/node_modules/sax/package.json +1 -5
  329. package/node_modules/side-channel/package.json +1 -5
  330. package/node_modules/sprintf-js/package.json +1 -5
  331. package/node_modules/string.prototype.trimend/package.json +1 -5
  332. package/node_modules/string.prototype.trimstart/package.json +1 -5
  333. package/node_modules/tslib/package.json +1 -5
  334. package/node_modules/unbox-primitive/package.json +1 -5
  335. package/node_modules/url/node_modules/punycode/package.json +1 -5
  336. package/node_modules/url/package.json +1 -5
  337. package/node_modules/util/package.json +1 -5
  338. package/node_modules/uuid/package.json +1 -5
  339. package/node_modules/value-or-promise/package.json +1 -5
  340. package/node_modules/watchpack/package.json +1 -5
  341. package/node_modules/which-boxed-primitive/package.json +1 -5
  342. package/node_modules/which-typed-array/package.json +1 -5
  343. package/node_modules/xml2js/node_modules/xmlbuilder/package.json +1 -5
  344. package/node_modules/xml2js/package.json +1 -5
  345. package/package.json +11 -3
  346. package/tsconfig.npm.json +50 -0
@@ -78,8 +78,4 @@
78
78
  "commitLimit": false,
79
79
  "backfillLimit": false
80
80
  }
81
-
82
- ,"_resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz"
83
- ,"_integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg=="
84
- ,"_from": "is-string@1.0.7"
85
- }
81
+ }
@@ -74,8 +74,4 @@
74
74
  "backfillLimit": false,
75
75
  "hideCredit": true
76
76
  }
77
-
78
- ,"_resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz"
79
- ,"_integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg=="
80
- ,"_from": "is-symbol@1.0.4"
81
- }
77
+ }
@@ -102,8 +102,4 @@
102
102
  ".github/workflows"
103
103
  ]
104
104
  }
105
-
106
- ,"_resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.9.tgz"
107
- ,"_integrity": "sha512-kfrlnTTn8pZkfpJMUgYD7YZ3qzeJgWUn8XfVYBARc4wnmNOmLbmuuaAs3q5fvB0UJOn6yHAKaGTPM7d6ezoD/A=="
108
- ,"_from": "is-typed-array@1.1.9"
109
- }
105
+ }
@@ -60,8 +60,4 @@
60
60
  "backfillLimit": false,
61
61
  "hideCredit": true
62
62
  }
63
-
64
- ,"_resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz"
65
- ,"_integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ=="
66
- ,"_from": "is-weakref@1.0.2"
67
- }
63
+ }
@@ -42,8 +42,4 @@
42
42
  "scripts": {
43
43
  "test": "tape test.js"
44
44
  }
45
-
46
- ,"_resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz"
47
- ,"_integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ=="
48
- ,"_from": "isarray@1.0.0"
49
- }
45
+ }
@@ -42,8 +42,4 @@
42
42
  "scripts": {
43
43
  "test": "mocha test/"
44
44
  }
45
-
46
- ,"_resolved": "https://registry.npmjs.org/jmespath/-/jmespath-0.16.0.tgz"
47
- ,"_integrity": "sha512-9FzQjJ7MATs1tSpnco1K6ayiYE3figslrXA72G2HQ/n76RzvYlofyi5QM+iX4YRs/pu3yzxlVQSST23+dMDknw=="
48
- ,"_from": "jmespath@0.16.0"
49
- }
45
+ }
@@ -116,8 +116,4 @@
116
116
  "no-new": 0
117
117
  }
118
118
  }
119
-
120
- ,"_resolved": "https://registry.npmjs.org/mnemonist/-/mnemonist-0.38.3.tgz"
121
- ,"_integrity": "sha512-2K9QYubXx/NAjv4VLq1d1Ly8pWNC5L3BrixtdkyTegXWJIqY+zLNDhhX/A+ZwWt70tB1S8H4BE8FLYEFyNoOBw=="
122
- ,"_from": "mnemonist@0.38.3"
123
- }
119
+ }
@@ -91,8 +91,4 @@
91
91
  ]
92
92
  },
93
93
  "support": true
94
-
95
- ,"_resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz"
96
- ,"_integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ=="
97
- ,"_from": "object-inspect@1.12.2"
98
- }
94
+ }
@@ -85,8 +85,4 @@
85
85
  "engines": {
86
86
  "node": ">= 0.4"
87
87
  }
88
-
89
- ,"_resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz"
90
- ,"_integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA=="
91
- ,"_from": "object-keys@1.1.1"
92
- }
88
+ }
@@ -92,8 +92,4 @@
92
92
  "browserShim.js"
93
93
  ]
94
94
  }
95
-
96
- ,"_resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.3.tgz"
97
- ,"_integrity": "sha512-ZFJnX3zltyjcYJL0RoCJuzb+11zWGyaDbjgxZbdV7rFEcHQuYxrZqhow67aA7xpes6LhojyFDaBKAFfogQrikA=="
98
- ,"_from": "object.assign@4.1.3"
99
- }
95
+ }
@@ -42,8 +42,4 @@
42
42
  "Uint32Array": true
43
43
  }
44
44
  }
45
-
46
- ,"_resolved": "https://registry.npmjs.org/obliterator/-/obliterator-1.6.1.tgz"
47
- ,"_integrity": "sha512-9WXswnqINnnhOG/5SLimUlzuU1hFJUc8zkwyD59Sd+dPOMf05PmnYG/d6Q7HZ+KmgkZJa1PxRso6QdM3sTNHig=="
48
- ,"_from": "obliterator@1.6.1"
49
- }
45
+ }
@@ -62,8 +62,4 @@
62
62
  "type" : "MIT",
63
63
  "url" : "https://github.com/Gozala/enchain/License.md"
64
64
  }]
65
-
66
- ,"_resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz"
67
- ,"_integrity": "sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g=="
68
- ,"_from": "querystring@0.2.0"
69
- }
65
+ }
@@ -89,8 +89,4 @@
89
89
  "backfillLimit": false,
90
90
  "hideCredit": true
91
91
  }
92
-
93
- ,"_resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz"
94
- ,"_integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA=="
95
- ,"_from": "regexp.prototype.flags@1.4.3"
96
- }
92
+ }
@@ -34,8 +34,4 @@
34
34
  "scripts": {
35
35
  "test": "standard && tape test/*.js"
36
36
  }
37
-
38
- ,"_resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz"
39
- ,"_integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
40
- ,"_from": "safe-buffer@5.1.2"
41
- }
37
+ }
@@ -20,8 +20,4 @@
20
20
  "standard": "^5.3.1",
21
21
  "tap": "^5.2.0"
22
22
  }
23
-
24
- ,"_resolved": "https://registry.npmjs.org/sax/-/sax-1.2.1.tgz"
25
- ,"_integrity": "sha512-8I2a3LovHTOpm7NV5yOyO8IHqgVsfK4+UuySrXU8YXkSRX7k6hCV9b3HrkKCr3nMpgj+0bmocaJJWpvp1oc7ZA=="
26
- ,"_from": "sax@1.2.1"
27
- }
23
+ }
@@ -64,8 +64,4 @@
64
64
  "backfillLimit": false,
65
65
  "hideCredit": true
66
66
  }
67
-
68
- ,"_resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz"
69
- ,"_integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw=="
70
- ,"_from": "side-channel@1.0.4"
71
- }
67
+ }
@@ -19,8 +19,4 @@
19
19
  "grunt-contrib-watch": "*",
20
20
  "grunt-contrib-uglify": "*"
21
21
  }
22
-
23
- ,"_resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz"
24
- ,"_integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g=="
25
- ,"_from": "sprintf-js@1.0.3"
26
- }
22
+ }
@@ -68,8 +68,4 @@
68
68
  "define-properties": "^1.1.4",
69
69
  "es-abstract": "^1.19.5"
70
70
  }
71
-
72
- ,"_resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz"
73
- ,"_integrity": "sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog=="
74
- ,"_from": "string.prototype.trimend@1.0.5"
75
- }
71
+ }
@@ -68,8 +68,4 @@
68
68
  "define-properties": "^1.1.4",
69
69
  "es-abstract": "^1.19.5"
70
70
  }
71
-
72
- ,"_resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz"
73
- ,"_integrity": "sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg=="
74
- ,"_from": "string.prototype.trimstart@1.0.5"
75
- }
71
+ }
@@ -35,8 +35,4 @@
35
35
  "./*": "./*",
36
36
  "./": "./"
37
37
  }
38
-
39
- ,"_resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz"
40
- ,"_integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ=="
41
- ,"_from": "tslib@2.4.0"
42
- }
38
+ }
@@ -62,8 +62,4 @@
62
62
  "backfillLimit": false,
63
63
  "hideCredit": true
64
64
  }
65
-
66
- ,"_resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz"
67
- ,"_integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw=="
68
- ,"_from": "unbox-primitive@1.0.2"
69
- }
65
+ }
@@ -50,8 +50,4 @@
50
50
  "qunitjs": "~1.11.0",
51
51
  "requirejs": "^2.1.14"
52
52
  }
53
-
54
- ,"_resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz"
55
- ,"_integrity": "sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw=="
56
- ,"_from": "punycode@1.3.2"
57
- }
53
+ }
@@ -21,8 +21,4 @@
21
21
  "url": "https://github.com/defunctzombie/node-url.git"
22
22
  },
23
23
  "license": "MIT"
24
-
25
- ,"_resolved": "https://registry.npmjs.org/url/-/url-0.10.3.tgz"
26
- ,"_integrity": "sha512-hzSUW2q06EqL1gKM/a+obYHLIO6ct2hwPuviqTTOcfFVc61UbfJ2Q32+uGL/HCPxKqrdGB5QUwIe7UqlDgwsOQ=="
27
- ,"_from": "url@0.10.3"
28
- }
24
+ }
@@ -47,8 +47,4 @@
47
47
  "test:browsers:with-polyfills:local": "npm run test:browsers:with-polyfills -- --local",
48
48
  "test:browsers:local": "npm run test:browsers -- --local"
49
49
  }
50
-
51
- ,"_resolved": "https://registry.npmjs.org/util/-/util-0.12.4.tgz"
52
- ,"_integrity": "sha512-bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw=="
53
- ,"_from": "util@0.12.4"
54
- }
50
+ }
@@ -132,8 +132,4 @@
132
132
  "postchangelog": "prettier --write CHANGELOG.md"
133
133
  }
134
134
  }
135
-
136
- ,"_resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz"
137
- ,"_integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="
138
- ,"_from": "uuid@8.3.2"
139
- }
135
+ }
@@ -55,8 +55,4 @@
55
55
  "prettier": {
56
56
  "singleQuote": true
57
57
  }
58
-
59
- ,"_resolved": "https://registry.npmjs.org/value-or-promise/-/value-or-promise-1.0.11.tgz"
60
- ,"_integrity": "sha512-41BrgH+dIbCFXClcSapVs5M6GkENd3gQOJpEfPDNa71LsUGMXDL0jMWpI/Rh7WhX+Aalfz2TTS3Zt5pUsbnhLg=="
61
- ,"_from": "value-or-promise@1.0.11"
62
- }
58
+ }
@@ -46,8 +46,4 @@
46
46
  "engines": {
47
47
  "node": ">=10.13.0"
48
48
  }
49
-
50
- ,"_resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz"
51
- ,"_integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg=="
52
- ,"_from": "watchpack@2.4.0"
53
- }
49
+ }
@@ -62,8 +62,4 @@
62
62
  "backfillLimit": false,
63
63
  "hideCredit": true
64
64
  }
65
-
66
- ,"_resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz"
67
- ,"_integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg=="
68
- ,"_from": "which-boxed-primitive@1.0.2"
69
- }
65
+ }
@@ -112,8 +112,4 @@
112
112
  ".github/workflows"
113
113
  ]
114
114
  }
115
-
116
- ,"_resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.8.tgz"
117
- ,"_integrity": "sha512-Jn4e5PItbcAHyLoRDwvPj1ypu27DJbtdYXUa5zsinrUx77Uvfb0cXwwnGMTn7cjUfhhqgVQnVJCwF+7cgU7tpw=="
118
- ,"_from": "which-typed-array@1.1.8"
119
- }
115
+ }
@@ -34,8 +34,4 @@
34
34
  "postpublish": "rm -rf lib",
35
35
  "test": "mocha \"test/**/*.coffee\" && istanbul report text lcov"
36
36
  }
37
-
38
- ,"_resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.7.tgz"
39
- ,"_integrity": "sha512-7YXTQc3P2l9+0rjaUbLwMKRhtmwg1M1eDf6nag7urC7pIPYLD9W/jmzQ4ptRSUbodw5S0jfoGTflLemQibSpeQ=="
40
- ,"_from": "xmlbuilder@9.0.7"
41
- }
37
+ }
@@ -84,8 +84,4 @@
84
84
  "zap": ">=0.2.9"
85
85
  },
86
86
  "license": "MIT"
87
-
88
- ,"_resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.19.tgz"
89
- ,"_integrity": "sha512-esZnJZJOiJR9wWKMyuvSE1y6Dq5LCuJanqhxslH2bxM6duahNZ+HMpCLhBQGZkbX6xRf8x1Y2eJlgt2q3qo49Q=="
90
- ,"_from": "xml2js@0.4.19"
91
- }
87
+ }
package/package.json CHANGED
@@ -30,7 +30,8 @@
30
30
  "lint": "eslint **/*.ts",
31
31
  "lint-fix": "eslint --fix './**/*.ts'",
32
32
  "pretty": "prettier --write '**/*.ts'",
33
- "bundle-extension": "esbuild --bundle --platform=node --sourcemap lambda-extension/interceptor.ts --outdir=lambda-extension/dist/layer/nodejs/node_modules; cp lambda-extension/spy-wrapper lambda-extension/dist/layer"
33
+ "bundle-extension": "esbuild --bundle --platform=node --sourcemap lambda-extension/interceptor.ts --outdir=lambda-extension/dist/layer/nodejs/node_modules; cp lambda-extension/spy-wrapper lambda-extension/dist/layer",
34
+ "transpile": "scripts/run-task transpile"
34
35
  },
35
36
  "author": {
36
37
  "name": "Marko (ServerlessLife.com)",
@@ -102,9 +103,16 @@
102
103
  "keywords": [
103
104
  "cdk"
104
105
  ],
105
- "main": "lib/index.js",
106
+ "bin": {
107
+ "spy": "lib/cjs/cli/cli.js"
108
+ },
109
+ "main": "lib/cjs/index.js",
110
+ "exports": {
111
+ "import": "./lib/mjs/index.js",
112
+ "require": "./lib/cjs/index.js"
113
+ },
106
114
  "license": "Apache-2.0",
107
- "version": "0.0.9",
115
+ "version": "0.0.10",
108
116
  "types": "lib/index.d.ts",
109
117
  "stability": "stable",
110
118
  "jsii": {
@@ -0,0 +1,50 @@
1
+ {
2
+ "compilerOptions": {
3
+ //"lib": ["es2021"],
4
+ "module": "esnext",
5
+ //"target": "es2021",
6
+ //"strict": true,
7
+ "allowSyntheticDefaultImports": true,
8
+ //"esModuleInterop": true,
9
+ "skipLibCheck": true,
10
+ //"forceConsistentCasingInFileNames": true,
11
+ "moduleResolution": "node",
12
+ //"resolveJsonModule": true,
13
+
14
+ // "outDir": "build",
15
+ "declarationMap": false,
16
+ "inlineSourceMap": true,
17
+ "inlineSources": true,
18
+ "alwaysStrict": true,
19
+ "charset": "utf8",
20
+ "declaration": true,
21
+ "experimentalDecorators": true,
22
+ "incremental": true,
23
+ "lib": [
24
+ "es2020"
25
+ ],
26
+ // "module": "CommonJS",
27
+ "newLine": "lf",
28
+ "noEmitOnError": true,
29
+ "noFallthroughCasesInSwitch": true,
30
+ "noImplicitAny": true,
31
+ "noImplicitReturns": true,
32
+ "noImplicitThis": true,
33
+ "noUnusedLocals": true,
34
+ "noUnusedParameters": true,
35
+ "resolveJsonModule": true,
36
+ "strict": true,
37
+ "strictNullChecks": true,
38
+ "strictPropertyInitialization": true,
39
+ "stripInternal": false,
40
+ "target": "ES2020",
41
+ "composite": false,
42
+ "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo"
43
+ },
44
+ "include": [
45
+ "src/**/*.ts",
46
+ "listener/**/*.ts",
47
+ "cli/**/*.ts",
48
+ "index.ts",
49
+ ]
50
+ }