newrelic 7.5.2 → 8.3.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 (158) hide show
  1. package/NEWS.md +4989 -4886
  2. package/THIRD_PARTY_NOTICES.md +625 -216
  3. package/api.js +105 -174
  4. package/bin/test-naming-rules.js +38 -32
  5. package/bin/tracetractor +0 -1
  6. package/index.js +12 -18
  7. package/lib/agent.js +108 -111
  8. package/lib/aggregators/base-aggregator.js +1 -1
  9. package/lib/aggregators/event-aggregator.js +6 -6
  10. package/lib/attributes.js +12 -13
  11. package/lib/collector/api.js +32 -42
  12. package/lib/collector/facts.js +67 -65
  13. package/lib/collector/http-agents.js +30 -27
  14. package/lib/collector/parse-response.js +1 -2
  15. package/lib/collector/remote-method.js +43 -36
  16. package/lib/collector/serverless.js +13 -18
  17. package/lib/collector/ssl/certificates.js +1056 -1056
  18. package/lib/config/attribute-filter.js +90 -82
  19. package/lib/config/default.js +30 -18
  20. package/lib/config/env.js +17 -12
  21. package/lib/config/harvest-config-validator.js +1 -1
  22. package/lib/config/index.js +160 -177
  23. package/lib/config/merge-server-config.js +7 -5
  24. package/lib/custom-events/custom-event-aggregator.js +1 -1
  25. package/lib/db/parse-sql.js +6 -9
  26. package/lib/db/parsed-statement.js +6 -13
  27. package/lib/db/query-parsers/sql.js +6 -9
  28. package/lib/db/query-sample.js +7 -3
  29. package/lib/db/query-trace-aggregator.js +12 -12
  30. package/lib/db/utils.js +1 -1
  31. package/lib/environment.js +173 -138
  32. package/lib/errors/error-collector.js +18 -31
  33. package/lib/errors/error-event-aggregator.js +1 -1
  34. package/lib/errors/error-trace-aggregator.js +2 -3
  35. package/lib/errors/helper.js +21 -30
  36. package/lib/errors/index.js +16 -28
  37. package/lib/feature_flags.js +5 -8
  38. package/lib/grpc/connection/states.js +6 -6
  39. package/lib/grpc/connection.js +35 -46
  40. package/lib/header-attributes.js +49 -53
  41. package/lib/instrumentation/amqplib.js +8 -17
  42. package/lib/instrumentation/bluebird.js +61 -20
  43. package/lib/instrumentation/cassandra-driver.js +2 -2
  44. package/lib/instrumentation/connect.js +4 -3
  45. package/lib/instrumentation/core/async_hooks.js +11 -4
  46. package/lib/instrumentation/core/child_process.js +20 -28
  47. package/lib/instrumentation/core/crypto.js +1 -7
  48. package/lib/instrumentation/core/dns.js +3 -7
  49. package/lib/instrumentation/core/domain.js +2 -8
  50. package/lib/instrumentation/core/fs.js +22 -37
  51. package/lib/instrumentation/core/globals.js +3 -7
  52. package/lib/instrumentation/core/http-outbound.js +15 -40
  53. package/lib/instrumentation/core/http.js +29 -63
  54. package/lib/instrumentation/core/inspector.js +6 -10
  55. package/lib/instrumentation/core/net.js +3 -1
  56. package/lib/instrumentation/core/timers.js +17 -24
  57. package/lib/instrumentation/core/zlib.js +2 -10
  58. package/lib/instrumentation/express.js +4 -2
  59. package/lib/instrumentation/fastify/spec-builders.js +5 -0
  60. package/lib/instrumentation/fastify.js +37 -10
  61. package/lib/instrumentation/hapi/hapi-17.js +9 -10
  62. package/lib/instrumentation/hapi.js +15 -15
  63. package/lib/instrumentation/ioredis.js +1 -2
  64. package/lib/instrumentation/memcached.js +39 -43
  65. package/lib/instrumentation/mongodb/common.js +218 -0
  66. package/lib/instrumentation/mongodb/constants.js +87 -0
  67. package/lib/instrumentation/mongodb/v2-mongo.js +110 -0
  68. package/lib/instrumentation/mongodb/v3-mongo.js +80 -0
  69. package/lib/instrumentation/mongodb/v4-mongo.js +90 -0
  70. package/lib/instrumentation/mongodb.js +20 -312
  71. package/lib/instrumentation/mysql.js +33 -26
  72. package/lib/instrumentation/oracle.js +10 -14
  73. package/lib/instrumentation/pg.js +30 -21
  74. package/lib/instrumentation/promise.js +20 -17
  75. package/lib/instrumentation/redis.js +30 -30
  76. package/lib/instrumentation/when.js +9 -1
  77. package/lib/instrumentations.js +24 -24
  78. package/lib/logger.js +1 -1
  79. package/lib/metrics/index.js +37 -17
  80. package/lib/metrics/mapper.js +9 -9
  81. package/lib/metrics/metric-aggregator.js +5 -10
  82. package/lib/metrics/names.js +8 -7
  83. package/lib/metrics/normalizer/rule.js +6 -7
  84. package/lib/metrics/normalizer/tx_segment.js +17 -13
  85. package/lib/metrics/normalizer.js +30 -33
  86. package/lib/metrics/recorders/custom.js +3 -1
  87. package/lib/metrics/recorders/distributed-trace.js +3 -18
  88. package/lib/metrics/recorders/generic.js +3 -2
  89. package/lib/metrics/recorders/http.js +4 -6
  90. package/lib/metrics/recorders/http_external.js +1 -3
  91. package/lib/metrics/recorders/message-transaction.js +2 -12
  92. package/lib/metrics/recorders/other.js +2 -12
  93. package/lib/parse-proc-cpuinfo.js +11 -16
  94. package/lib/parse-proc-meminfo.js +5 -3
  95. package/lib/prioritized-attributes.js +12 -17
  96. package/lib/priority-queue.js +1 -1
  97. package/lib/proxy/grpc.js +1 -1
  98. package/lib/reservoir.js +9 -3
  99. package/lib/sampler.js +12 -13
  100. package/lib/serverless/api-gateway.js +3 -3
  101. package/lib/serverless/aws-lambda.js +28 -37
  102. package/lib/shim/conglomerate-shim.js +4 -4
  103. package/lib/shim/datastore-shim.js +29 -38
  104. package/lib/shim/index.js +8 -9
  105. package/lib/shim/message-shim.js +111 -113
  106. package/lib/shim/promise-shim.js +18 -13
  107. package/lib/shim/shim.js +72 -66
  108. package/lib/shim/specs/index.js +18 -19
  109. package/lib/shim/transaction-shim.js +26 -36
  110. package/lib/shim/webframework-shim.js +25 -35
  111. package/lib/shimmer.js +184 -166
  112. package/lib/spans/create-span-event-aggregator.js +24 -44
  113. package/lib/spans/span-context.js +4 -10
  114. package/lib/spans/span-event-aggregator.js +68 -13
  115. package/lib/spans/span-event.js +5 -7
  116. package/lib/spans/span-streamer.js +10 -18
  117. package/lib/spans/streaming-span-event-aggregator.js +1 -1
  118. package/lib/spans/streaming-span-event.js +4 -4
  119. package/lib/stats/apdex.js +5 -11
  120. package/lib/stats/index.js +12 -17
  121. package/lib/system-info.js +7 -3
  122. package/lib/timer.js +30 -16
  123. package/lib/transaction/dt-payload.js +1 -1
  124. package/lib/transaction/handle.js +19 -19
  125. package/lib/transaction/index.js +94 -112
  126. package/lib/transaction/name-state.js +5 -6
  127. package/lib/transaction/trace/aggregator.js +78 -73
  128. package/lib/transaction/trace/exclusive-time-calculator.js +5 -9
  129. package/lib/transaction/trace/index.js +26 -24
  130. package/lib/transaction/trace/segment.js +39 -56
  131. package/lib/transaction/tracecontext.js +37 -45
  132. package/lib/transaction/tracer/index.js +79 -44
  133. package/lib/transaction/transaction-event-aggregator.js +29 -31
  134. package/lib/uninstrumented.js +4 -5
  135. package/lib/util/attribute-types.js +1 -5
  136. package/lib/util/byte-limit.js +0 -1
  137. package/lib/util/cat.js +5 -13
  138. package/lib/util/codec.js +8 -4
  139. package/lib/util/deep-equal.js +48 -18
  140. package/lib/util/flatten.js +5 -2
  141. package/lib/util/hashes.js +2 -2
  142. package/lib/util/label-parser.js +7 -13
  143. package/lib/util/logger.js +31 -13
  144. package/lib/util/process-version.js +1 -1
  145. package/lib/util/properties.js +1 -1
  146. package/lib/util/sql/obfuscate.js +7 -17
  147. package/lib/util/stream-sink.js +2 -3
  148. package/lib/util/urltils.js +9 -13
  149. package/lib/utilization/aws-info.js +2 -3
  150. package/lib/utilization/azure-info.js +32 -30
  151. package/lib/utilization/common.js +5 -4
  152. package/lib/utilization/docker-info.js +4 -6
  153. package/lib/utilization/gcp-info.js +36 -35
  154. package/lib/utilization/index.js +1 -1
  155. package/lib/utilization/kubernetes-info.js +2 -2
  156. package/lib/utilization/pcf-info.js +4 -4
  157. package/package.json +32 -18
  158. package/stub_api.js +8 -6
@@ -27,24 +27,25 @@ code, the source code can be found at [https://github.com/newrelic/node-newrelic
27
27
  * [readable-stream](#readable-stream)
28
28
  * [semver](#semver)
29
29
 
30
- **[optionalDependencies](#optionalDependencies)**
31
-
32
- * [@newrelic/native-metrics](#@newrelic/native-metrics)
33
-
34
30
  **[devDependencies](#devDependencies)**
35
31
 
32
+ * [@newrelic/eslint-config](#newreliceslint-config)
33
+ * [@newrelic/newrelic-oss-cli](#newrelicnewrelic-oss-cli)
36
34
  * [@newrelic/proxy](#newrelicproxy)
37
35
  * [@newrelic/test-utilities](#newrelictest-utilities)
38
36
  * [@octokit/rest](#octokitrest)
39
- * [JSV](#JSV)
37
+ * [ajv](#ajv)
40
38
  * [architect](#architect)
41
39
  * [benchmark](#benchmark)
42
40
  * [bluebird](#bluebird)
43
41
  * [chai](#chai)
44
42
  * [commander](#commander)
43
+ * [eslint-config-prettier](#eslint-config-prettier)
44
+ * [eslint-plugin-header](#eslint-plugin-header)
45
+ * [eslint-plugin-node](#eslint-plugin-node)
46
+ * [eslint-plugin-prettier](#eslint-plugin-prettier)
45
47
  * [eslint](#eslint)
46
48
  * [express](#express)
47
- * [fastify](#fastify)
48
49
  * [generic-pool](#generic-pool)
49
50
  * [glob](#glob)
50
51
  * [got](#got)
@@ -57,27 +58,33 @@ code, the source code can be found at [https://github.com/newrelic/node-newrelic
57
58
  * [mongodb](#mongodb)
58
59
  * [mysql](#mysql)
59
60
  * [nock](#nock)
61
+ * [prettier](#prettier)
60
62
  * [proxyquire](#proxyquire)
61
63
  * [q](#q)
62
64
  * [redis](#redis)
63
65
  * [request](#request)
64
- * [request](#request)
65
66
  * [restify](#restify)
66
67
  * [rimraf](#rimraf)
67
- * [rimraf](#rimraf)
68
68
  * [should](#should)
69
69
  * [sinon](#sinon)
70
70
  * [tap](#tap)
71
71
  * [temp](#temp)
72
- * [through](#through)
73
72
  * [when](#when)
74
73
 
74
+ **[optionalDependencies](#optionalDependencies)**
75
+
76
+ * [@newrelic/native-metrics](#newrelicnative-metrics)
77
+
78
+ **[Additional Licenses](#additional-licenses)**
79
+
80
+ * [Symantec](#Symantec)
81
+
75
82
 
76
83
  ## dependencies
77
84
 
78
85
  ### @grpc/grpc-js
79
86
 
80
- This product includes source derived from [@grpc/grpc-js](https://github.com/grpc/grpc-node/tree/master/packages/grpc-js) ([v1.2.11](https://github.com/grpc/grpc-node/tree/%40grpc/grpc-js%401.2.11/packages/grpc-js)), distributed under the [Apache-2.0 License](https://github.com/grpc/grpc-node/blob/%40grpc/grpc-js%401.2.11/packages/grpc-js/LICENSE):
87
+ This product includes source derived from [@grpc/grpc-js](https://github.com/grpc/grpc-node/tree/master/packages/grpc-js) ([v1.3.7](https://github.com/grpc/grpc-node/tree/master/packages/grpc-js/tree/v1.3.7)), distributed under the [Apache-2.0 License](https://github.com/grpc/grpc-node/tree/master/packages/grpc-js/blob/v1.3.7/LICENSE):
81
88
 
82
89
  ```
83
90
  Apache License
@@ -286,7 +293,7 @@ This product includes source derived from [@grpc/grpc-js](https://github.com/grp
286
293
 
287
294
  ### @grpc/proto-loader
288
295
 
289
- This product includes source derived from [@grpc/proto-loader](https://github.com/grpc/grpc-node) ([v0.5.6](https://github.com/grpc/grpc-node/tree/%40grpc/proto-loader%400.5.6/packages/proto-loader)), distributed under the [Apache-2.0 License](https://github.com/grpc/grpc-node/blob/%40grpc/proto-loader%400.5.6/packages/proto-loader/LICENSE):
296
+ This product includes source derived from [@grpc/proto-loader](https://github.com/grpc/grpc-node) ([v0.5.6](https://github.com/grpc/grpc-node/tree/v0.5.6)), distributed under the [Apache-2.0 License](https://github.com/grpc/grpc-node/blob/v0.5.6/LICENSE):
290
297
 
291
298
  ```
292
299
  Apache License
@@ -495,7 +502,7 @@ This product includes source derived from [@grpc/proto-loader](https://github.co
495
502
 
496
503
  ### @newrelic/aws-sdk
497
504
 
498
- This product includes source derived from [@newrelic/aws-sdk](https://github.com/newrelic/node-newrelic-aws-sdk) ([v3.1.0](https://github.com/newrelic/node-newrelic-aws-sdk/tree/v3.1.0)), distributed under the [Apache-2.0 License](https://github.com/newrelic/node-newrelic-aws-sdk/blob/v3.1.0/LICENSE):
505
+ This product includes source derived from [@newrelic/aws-sdk](https://github.com/newrelic/node-newrelic-aws-sdk) ([v4.0.1](https://github.com/newrelic/node-newrelic-aws-sdk/tree/v4.0.1)), distributed under the [Apache-2.0 License](https://github.com/newrelic/node-newrelic-aws-sdk/blob/v4.0.1/LICENSE):
499
506
 
500
507
  ```
501
508
  Apache License
@@ -703,7 +710,7 @@ This product includes source derived from [@newrelic/aws-sdk](https://github.com
703
710
 
704
711
  ### @newrelic/koa
705
712
 
706
- This product includes source derived from [@newrelic/koa](https://github.com/newrelic/node-newrelic-koa) ([v5.0.0](https://github.com/newrelic/node-newrelic-koa/tree/v5.0.0)), distributed under the [Apache-2.0 License](https://github.com/newrelic/node-newrelic-koa/blob/v5.0.0/LICENSE):
713
+ This product includes source derived from [@newrelic/koa](https://github.com/newrelic/node-newrelic-koa) ([v6.0.1](https://github.com/newrelic/node-newrelic-koa/tree/v6.0.1)), distributed under the [Apache-2.0 License](https://github.com/newrelic/node-newrelic-koa/blob/v6.0.1/LICENSE):
707
714
 
708
715
  ```
709
716
  Apache License
@@ -912,7 +919,7 @@ Apache License
912
919
 
913
920
  ### @newrelic/superagent
914
921
 
915
- This product includes source derived from [@newrelic/superagent](https://github.com/newrelic/node-newrelic-superagent) ([v4.0.0](https://github.com/newrelic/node-newrelic-superagent/tree/v4.0.0)), distributed under the [Apache-2.0 License](https://github.com/newrelic/node-newrelic-superagent/blob/v4.0.0/LICENSE):
922
+ This product includes source derived from [@newrelic/superagent](https://github.com/newrelic/node-newrelic-superagent) ([v5.0.1](https://github.com/newrelic/node-newrelic-superagent/tree/v5.0.1)), distributed under the [Apache-2.0 License](https://github.com/newrelic/node-newrelic-superagent/blob/v5.0.1/LICENSE):
916
923
 
917
924
  ```
918
925
  Apache License
@@ -1150,7 +1157,7 @@ THE SOFTWARE.
1150
1157
 
1151
1158
  ### async
1152
1159
 
1153
- This product includes source derived from [async](https://github.com/caolan/async) ([v3.2.0](https://github.com/caolan/async/tree/v3.2.0)), distributed under the [MIT License](https://github.com/caolan/async/blob/v3.2.0/LICENSE):
1160
+ This product includes source derived from [async](https://github.com/caolan/async) ([v3.2.1](https://github.com/caolan/async/tree/v3.2.1)), distributed under the [MIT License](https://github.com/caolan/async/blob/v3.2.1/LICENSE):
1154
1161
 
1155
1162
  ```
1156
1163
  Copyright (c) 2010-2018 Caolan McMahon
@@ -1184,31 +1191,31 @@ The MIT License
1184
1191
 
1185
1192
  Copyright (c) 2013 Max Ogden
1186
1193
 
1187
- Permission is hereby granted, free of charge,
1188
- to any person obtaining a copy of this software and
1189
- associated documentation files (the "Software"), to
1190
- deal in the Software without restriction, including
1191
- without limitation the rights to use, copy, modify,
1192
- merge, publish, distribute, sublicense, and/or sell
1193
- copies of the Software, and to permit persons to whom
1194
- the Software is furnished to do so,
1194
+ Permission is hereby granted, free of charge,
1195
+ to any person obtaining a copy of this software and
1196
+ associated documentation files (the "Software"), to
1197
+ deal in the Software without restriction, including
1198
+ without limitation the rights to use, copy, modify,
1199
+ merge, publish, distribute, sublicense, and/or sell
1200
+ copies of the Software, and to permit persons to whom
1201
+ the Software is furnished to do so,
1195
1202
  subject to the following conditions:
1196
1203
 
1197
- The above copyright notice and this permission notice
1204
+ The above copyright notice and this permission notice
1198
1205
  shall be included in all copies or substantial portions of the Software.
1199
1206
 
1200
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1201
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1202
- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1203
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
1204
- ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1205
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1207
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1208
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1209
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1210
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
1211
+ ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1212
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1206
1213
  SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1207
1214
  ```
1208
1215
 
1209
1216
  ### https-proxy-agent
1210
1217
 
1211
- This product includes source derived from [https-proxy-agent](https://github.com/TooTallNate/node-https-proxy-agent) ([v4.0.0](https://github.com/TooTallNate/node-https-proxy-agent/tree/v4.0.0)), distributed under the [MIT License](https://github.com/TooTallNate/node-https-proxy-agent/blob/v4.0.0/README.md):
1218
+ This product includes source derived from [https-proxy-agent](https://github.com/TooTallNate/node-https-proxy-agent) ([v5.0.0](https://github.com/TooTallNate/node-https-proxy-agent/tree/v5.0.0)), distributed under the [MIT License](https://github.com/TooTallNate/node-https-proxy-agent/blob/v5.0.0/README.md):
1212
1219
 
1213
1220
  ```
1214
1221
  MIT License
@@ -1323,10 +1330,12 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1323
1330
 
1324
1331
  ```
1325
1332
 
1326
- ## optionalDependencies
1327
1333
 
1328
- ### @newrelic/native-metrics
1329
- This product includes source derived from [@newrelic/native-metrics](https://github.com/newrelic/node-native-metrics) ([v6.0.0](https://github.com/newrelic/node-native-metrics/tree/v6.0.0)), distributed under the [Apache-2.0 License](https://github.com/newrelic/node-native-metrics/blob/v6.0.0/LICENSE):
1334
+ ## devDependencies
1335
+
1336
+ ### @newrelic/eslint-config
1337
+
1338
+ This product includes source derived from [@newrelic/eslint-config](https://github.com/newrelic/eslint-config-newrelic) ([v0.0.2](https://github.com/newrelic/eslint-config-newrelic/tree/v0.0.2)), distributed under the [Apache-2.0 License](https://github.com/newrelic/eslint-config-newrelic/blob/v0.0.2/LICENSE):
1330
1339
 
1331
1340
  ```
1332
1341
  Apache License
@@ -1533,7 +1542,213 @@ This product includes source derived from [@newrelic/native-metrics](https://git
1533
1542
 
1534
1543
  ```
1535
1544
 
1536
- ## devDependencies
1545
+ ### @newrelic/newrelic-oss-cli
1546
+
1547
+ This product includes source derived from [@newrelic/newrelic-oss-cli](https://github.com/newrelic/newrelic-oss-cli) ([v0.1.2](https://github.com/newrelic/newrelic-oss-cli/tree/v0.1.2)), distributed under the [Apache-2.0 License](https://github.com/newrelic/newrelic-oss-cli/blob/v0.1.2/LICENSE):
1548
+
1549
+ ```
1550
+ Apache License
1551
+ Version 2.0, January 2004
1552
+ http://www.apache.org/licenses/
1553
+
1554
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1555
+
1556
+ 1. Definitions.
1557
+
1558
+ "License" shall mean the terms and conditions for use, reproduction,
1559
+ and distribution as defined by Sections 1 through 9 of this document.
1560
+
1561
+ "Licensor" shall mean the copyright owner or entity authorized by
1562
+ the copyright owner that is granting the License.
1563
+
1564
+ "Legal Entity" shall mean the union of the acting entity and all
1565
+ other entities that control, are controlled by, or are under common
1566
+ control with that entity. For the purposes of this definition,
1567
+ "control" means (i) the power, direct or indirect, to cause the
1568
+ direction or management of such entity, whether by contract or
1569
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
1570
+ outstanding shares, or (iii) beneficial ownership of such entity.
1571
+
1572
+ "You" (or "Your") shall mean an individual or Legal Entity
1573
+ exercising permissions granted by this License.
1574
+
1575
+ "Source" form shall mean the preferred form for making modifications,
1576
+ including but not limited to software source code, documentation
1577
+ source, and configuration files.
1578
+
1579
+ "Object" form shall mean any form resulting from mechanical
1580
+ transformation or translation of a Source form, including but
1581
+ not limited to compiled object code, generated documentation,
1582
+ and conversions to other media types.
1583
+
1584
+ "Work" shall mean the work of authorship, whether in Source or
1585
+ Object form, made available under the License, as indicated by a
1586
+ copyright notice that is included in or attached to the work
1587
+ (an example is provided in the Appendix below).
1588
+
1589
+ "Derivative Works" shall mean any work, whether in Source or Object
1590
+ form, that is based on (or derived from) the Work and for which the
1591
+ editorial revisions, annotations, elaborations, or other modifications
1592
+ represent, as a whole, an original work of authorship. For the purposes
1593
+ of this License, Derivative Works shall not include works that remain
1594
+ separable from, or merely link (or bind by name) to the interfaces of,
1595
+ the Work and Derivative Works thereof.
1596
+
1597
+ "Contribution" shall mean any work of authorship, including
1598
+ the original version of the Work and any modifications or additions
1599
+ to that Work or Derivative Works thereof, that is intentionally
1600
+ submitted to Licensor for inclusion in the Work by the copyright owner
1601
+ or by an individual or Legal Entity authorized to submit on behalf of
1602
+ the copyright owner. For the purposes of this definition, "submitted"
1603
+ means any form of electronic, verbal, or written communication sent
1604
+ to the Licensor or its representatives, including but not limited to
1605
+ communication on electronic mailing lists, source code control systems,
1606
+ and issue tracking systems that are managed by, or on behalf of, the
1607
+ Licensor for the purpose of discussing and improving the Work, but
1608
+ excluding communication that is conspicuously marked or otherwise
1609
+ designated in writing by the copyright owner as "Not a Contribution."
1610
+
1611
+ "Contributor" shall mean Licensor and any individual or Legal Entity
1612
+ on behalf of whom a Contribution has been received by Licensor and
1613
+ subsequently incorporated within the Work.
1614
+
1615
+ 2. Grant of Copyright License. Subject to the terms and conditions of
1616
+ this License, each Contributor hereby grants to You a perpetual,
1617
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1618
+ copyright license to reproduce, prepare Derivative Works of,
1619
+ publicly display, publicly perform, sublicense, and distribute the
1620
+ Work and such Derivative Works in Source or Object form.
1621
+
1622
+ 3. Grant of Patent License. Subject to the terms and conditions of
1623
+ this License, each Contributor hereby grants to You a perpetual,
1624
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1625
+ (except as stated in this section) patent license to make, have made,
1626
+ use, offer to sell, sell, import, and otherwise transfer the Work,
1627
+ where such license applies only to those patent claims licensable
1628
+ by such Contributor that are necessarily infringed by their
1629
+ Contribution(s) alone or by combination of their Contribution(s)
1630
+ with the Work to which such Contribution(s) was submitted. If You
1631
+ institute patent litigation against any entity (including a
1632
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
1633
+ or a Contribution incorporated within the Work constitutes direct
1634
+ or contributory patent infringement, then any patent licenses
1635
+ granted to You under this License for that Work shall terminate
1636
+ as of the date such litigation is filed.
1637
+
1638
+ 4. Redistribution. You may reproduce and distribute copies of the
1639
+ Work or Derivative Works thereof in any medium, with or without
1640
+ modifications, and in Source or Object form, provided that You
1641
+ meet the following conditions:
1642
+
1643
+ (a) You must give any other recipients of the Work or
1644
+ Derivative Works a copy of this License; and
1645
+
1646
+ (b) You must cause any modified files to carry prominent notices
1647
+ stating that You changed the files; and
1648
+
1649
+ (c) You must retain, in the Source form of any Derivative Works
1650
+ that You distribute, all copyright, patent, trademark, and
1651
+ attribution notices from the Source form of the Work,
1652
+ excluding those notices that do not pertain to any part of
1653
+ the Derivative Works; and
1654
+
1655
+ (d) If the Work includes a "NOTICE" text file as part of its
1656
+ distribution, then any Derivative Works that You distribute must
1657
+ include a readable copy of the attribution notices contained
1658
+ within such NOTICE file, excluding those notices that do not
1659
+ pertain to any part of the Derivative Works, in at least one
1660
+ of the following places: within a NOTICE text file distributed
1661
+ as part of the Derivative Works; within the Source form or
1662
+ documentation, if provided along with the Derivative Works; or,
1663
+ within a display generated by the Derivative Works, if and
1664
+ wherever such third-party notices normally appear. The contents
1665
+ of the NOTICE file are for informational purposes only and
1666
+ do not modify the License. You may add Your own attribution
1667
+ notices within Derivative Works that You distribute, alongside
1668
+ or as an addendum to the NOTICE text from the Work, provided
1669
+ that such additional attribution notices cannot be construed
1670
+ as modifying the License.
1671
+
1672
+ You may add Your own copyright statement to Your modifications and
1673
+ may provide additional or different license terms and conditions
1674
+ for use, reproduction, or distribution of Your modifications, or
1675
+ for any such Derivative Works as a whole, provided Your use,
1676
+ reproduction, and distribution of the Work otherwise complies with
1677
+ the conditions stated in this License.
1678
+
1679
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
1680
+ any Contribution intentionally submitted for inclusion in the Work
1681
+ by You to the Licensor shall be under the terms and conditions of
1682
+ this License, without any additional terms or conditions.
1683
+ Notwithstanding the above, nothing herein shall supersede or modify
1684
+ the terms of any separate license agreement you may have executed
1685
+ with Licensor regarding such Contributions.
1686
+
1687
+ 6. Trademarks. This License does not grant permission to use the trade
1688
+ names, trademarks, service marks, or product names of the Licensor,
1689
+ except as required for reasonable and customary use in describing the
1690
+ origin of the Work and reproducing the content of the NOTICE file.
1691
+
1692
+ 7. Disclaimer of Warranty. Unless required by applicable law or
1693
+ agreed to in writing, Licensor provides the Work (and each
1694
+ Contributor provides its Contributions) on an "AS IS" BASIS,
1695
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1696
+ implied, including, without limitation, any warranties or conditions
1697
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1698
+ PARTICULAR PURPOSE. You are solely responsible for determining the
1699
+ appropriateness of using or redistributing the Work and assume any
1700
+ risks associated with Your exercise of permissions under this License.
1701
+
1702
+ 8. Limitation of Liability. In no event and under no legal theory,
1703
+ whether in tort (including negligence), contract, or otherwise,
1704
+ unless required by applicable law (such as deliberate and grossly
1705
+ negligent acts) or agreed to in writing, shall any Contributor be
1706
+ liable to You for damages, including any direct, indirect, special,
1707
+ incidental, or consequential damages of any character arising as a
1708
+ result of this License or out of the use or inability to use the
1709
+ Work (including but not limited to damages for loss of goodwill,
1710
+ work stoppage, computer failure or malfunction, or any and all
1711
+ other commercial damages or losses), even if such Contributor
1712
+ has been advised of the possibility of such damages.
1713
+
1714
+ 9. Accepting Warranty or Additional Liability. While redistributing
1715
+ the Work or Derivative Works thereof, You may choose to offer,
1716
+ and charge a fee for, acceptance of support, warranty, indemnity,
1717
+ or other liability obligations and/or rights consistent with this
1718
+ License. However, in accepting such obligations, You may act only
1719
+ on Your own behalf and on Your sole responsibility, not on behalf
1720
+ of any other Contributor, and only if You agree to indemnify,
1721
+ defend, and hold each Contributor harmless for any liability
1722
+ incurred by, or claims asserted against, such Contributor by reason
1723
+ of your accepting any such warranty or additional liability.
1724
+
1725
+ END OF TERMS AND CONDITIONS
1726
+
1727
+ APPENDIX: How to apply the Apache License to your work.
1728
+
1729
+ To apply the Apache License to your work, attach the following
1730
+ boilerplate notice, with the fields enclosed by brackets "[]"
1731
+ replaced with your own identifying information. (Don't include
1732
+ the brackets!) The text should be enclosed in the appropriate
1733
+ comment syntax for the file format. We also recommend that a
1734
+ file or class name and description of purpose be included on the
1735
+ same "printed page" as the copyright notice for easier
1736
+ identification within third-party archives.
1737
+
1738
+ Copyright [yyyy] [name of copyright owner]
1739
+
1740
+ Licensed under the Apache License, Version 2.0 (the "License");
1741
+ you may not use this file except in compliance with the License.
1742
+ You may obtain a copy of the License at
1743
+
1744
+ http://www.apache.org/licenses/LICENSE-2.0
1745
+
1746
+ Unless required by applicable law or agreed to in writing, software
1747
+ distributed under the License is distributed on an "AS IS" BASIS,
1748
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1749
+ See the License for the specific language governing permissions and
1750
+ limitations under the License.
1751
+ ```
1537
1752
 
1538
1753
  ### @newrelic/proxy
1539
1754
 
@@ -1553,7 +1768,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
1553
1768
 
1554
1769
  ### @newrelic/test-utilities
1555
1770
 
1556
- This product includes source derived from [@newrelic/test-utilities](https://github.com/newrelic/node-test-utilities) ([v5.0.0](https://github.com/newrelic/node-test-utilities/tree/v5.0.0)), distributed under the [Apache-2.0 License](https://github.com/newrelic/node-test-utilities/blob/v5.0.0/LICENSE):
1771
+ This product includes source derived from [@newrelic/test-utilities](https://github.com/newrelic/node-test-utilities) ([v6.0.0](https://github.com/newrelic/node-test-utilities/tree/v6.0.0)), distributed under the [Apache-2.0 License](https://github.com/newrelic/node-test-utilities/blob/v6.0.0/LICENSE):
1557
1772
 
1558
1773
  ```
1559
1774
  Apache License
@@ -1762,7 +1977,7 @@ This product includes source derived from [@newrelic/test-utilities](https://git
1762
1977
 
1763
1978
  ### @octokit/rest
1764
1979
 
1765
- This product includes source derived from [@octokit/rest](https://github.com/octokit/rest.js) ([v18.0.15](https://github.com/octokit/rest.js/tree/v18.0.15)), distributed under the [MIT License](https://github.com/octokit/rest.js/blob/v18.0.15/LICENSE):
1980
+ This product includes source derived from [@octokit/rest](https://github.com/octokit/rest.js) ([v18.9.1](https://github.com/octokit/rest.js/tree/v18.9.1)), distributed under the [MIT License](https://github.com/octokit/rest.js/blob/v18.9.1/LICENSE):
1766
1981
 
1767
1982
  ```
1768
1983
  The MIT License
@@ -1790,24 +2005,33 @@ THE SOFTWARE.
1790
2005
 
1791
2006
  ```
1792
2007
 
1793
- ### JSV
2008
+ ### ajv
1794
2009
 
1795
- This product includes source derived from [JSV](https://github.com/garycourt/JSV) ([v4.0.2](https://github.com/garycourt/JSV/tree/v4.0.2)), distributed under the [FreeBSD License](https://github.com/garycourt/JSV/tree/v4.0.2#license):
2010
+ This product includes source derived from [ajv](https://github.com/ajv-validator/ajv) ([v6.12.6](https://github.com/ajv-validator/ajv/tree/v6.12.6)), distributed under the [MIT License](https://github.com/ajv-validator/ajv/blob/v6.12.6/LICENSE):
1796
2011
 
1797
2012
  ```
1798
- THIS SOFTWARE IS PROVIDED BY GARY COURT ``AS IS'' AND ANY EXPRESS OR IMPLIED
1799
- WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
1800
- FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GARY COURT OR
1801
- CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
1802
- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
1803
- SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
1804
- ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
1805
- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
1806
- ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2013
+ The MIT License (MIT)
2014
+
2015
+ Copyright (c) 2015-2017 Evgeny Poberezkin
2016
+
2017
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2018
+ of this software and associated documentation files (the "Software"), to deal
2019
+ in the Software without restriction, including without limitation the rights
2020
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2021
+ copies of the Software, and to permit persons to whom the Software is
2022
+ furnished to do so, subject to the following conditions:
2023
+
2024
+ The above copyright notice and this permission notice shall be included in all
2025
+ copies or substantial portions of the Software.
2026
+
2027
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2028
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2029
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2030
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2031
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2032
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2033
+ SOFTWARE.
1807
2034
 
1808
- The views and conclusions contained in the software and documentation are those of the
1809
- authors and should not be interpreted as representing official policies, either expressed
1810
- or implied, of Gary Court or the JSON Schema specification.
1811
2035
 
1812
2036
  ```
1813
2037
 
@@ -1871,7 +2095,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1871
2095
 
1872
2096
  ### bluebird
1873
2097
 
1874
- This product includes source derived from [bluebird](https://github.com/petkaantonov/bluebird) ([v3.7.1](https://github.com/petkaantonov/bluebird/tree/v3.7.1)), distributed under the [MIT License](https://github.com/petkaantonov/bluebird/blob/v3.7.1/LICENSE):
2098
+ This product includes source derived from [bluebird](https://github.com/petkaantonov/bluebird) ([v3.7.2](https://github.com/petkaantonov/bluebird/tree/v3.7.2)), distributed under the [MIT License](https://github.com/petkaantonov/bluebird/blob/v3.7.2/LICENSE):
1875
2099
 
1876
2100
  ```
1877
2101
  The MIT License (MIT)
@@ -1900,7 +2124,7 @@ THE SOFTWARE.
1900
2124
 
1901
2125
  ### chai
1902
2126
 
1903
- This product includes source derived from [chai](https://github.com/chaijs/chai) ([v4.2.0](https://github.com/chaijs/chai/tree/v4.2.0)), distributed under the [MIT License](https://github.com/chaijs/chai/blob/v4.2.0/LICENSE):
2127
+ This product includes source derived from [chai](https://github.com/chaijs/chai) ([v4.3.4](https://github.com/chaijs/chai/tree/v4.3.4)), distributed under the [MIT License](https://github.com/chaijs/chai/blob/v4.3.4/LICENSE):
1904
2128
 
1905
2129
  ```
1906
2130
  MIT License
@@ -1957,12 +2181,14 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1957
2181
 
1958
2182
  ```
1959
2183
 
1960
- ### eslint
2184
+ ### eslint-config-prettier
1961
2185
 
1962
- This product includes source derived from [eslint](https://github.com/eslint/eslint) ([v6.8.0](https://github.com/eslint/eslint/tree/v6.8.0)), distributed under the [MIT License](https://github.com/eslint/eslint/blob/v6.8.0/LICENSE):
2186
+ This product includes source derived from [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) ([v8.3.0](https://github.com/prettier/eslint-config-prettier/tree/v8.3.0)), distributed under the [MIT License](https://github.com/prettier/eslint-config-prettier/blob/v8.3.0/LICENSE):
1963
2187
 
1964
2188
  ```
1965
- Copyright JS Foundation and other contributors, https://js.foundation
2189
+ The MIT License (MIT)
2190
+
2191
+ Copyright (c) 2017, 2018, 2019, 2020, 2021 Simon Lydell and contributors
1966
2192
 
1967
2193
  Permission is hereby granted, free of charge, to any person obtaining a copy
1968
2194
  of this software and associated documentation files (the "Software"), to deal
@@ -1984,49 +2210,30 @@ THE SOFTWARE.
1984
2210
 
1985
2211
  ```
1986
2212
 
1987
- ### express
2213
+ ### eslint-plugin-header
1988
2214
 
1989
- This product includes source derived from [express](https://github.com/expressjs/express) ([v4.17.1](https://github.com/expressjs/express/tree/v4.17.1)), distributed under the [MIT License](https://github.com/expressjs/express/blob/v4.17.1/LICENSE):
2215
+ This product includes source derived from [eslint-plugin-header](https://github.com/Stuk/eslint-plugin-header) ([v3.1.1](https://github.com/Stuk/eslint-plugin-header/tree/v3.1.1)), distributed under the [MIT License](https://github.com/Stuk/eslint-plugin-header/blob/v3.1.1/README.md):
1990
2216
 
1991
2217
  ```
1992
- (The MIT License)
2218
+ MIT License
1993
2219
 
1994
- Copyright (c) 2009-2014 TJ Holowaychuk <tj@vision-media.ca>
1995
- Copyright (c) 2013-2014 Roman Shtylman <shtylman+expressjs@gmail.com>
1996
- Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com>
2220
+ Copyright (c) <year> <copyright holders>
1997
2221
 
1998
- Permission is hereby granted, free of charge, to any person obtaining
1999
- a copy of this software and associated documentation files (the
2000
- 'Software'), to deal in the Software without restriction, including
2001
- without limitation the rights to use, copy, modify, merge, publish,
2002
- distribute, sublicense, and/or sell copies of the Software, and to
2003
- permit persons to whom the Software is furnished to do so, subject to
2004
- the following conditions:
2005
-
2006
- The above copyright notice and this permission notice shall be
2007
- included in all copies or substantial portions of the Software.
2222
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
2008
2223
 
2009
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2010
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2011
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2012
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2013
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2014
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2015
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2224
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2016
2225
 
2226
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2017
2227
  ```
2018
2228
 
2019
- ### fastify
2229
+ ### eslint-plugin-node
2020
2230
 
2021
- This product includes source derived from [fastify](https://github.com/fastify/fastify) ([v2.15.3](https://github.com/fastify/fastify/tree/v2.15.3)), distributed under the [MIT License](https://github.com/fastify/fastify/blob/v2.15.3/LICENSE):
2231
+ This product includes source derived from [eslint-plugin-node](https://github.com/mysticatea/eslint-plugin-node) ([v11.1.0](https://github.com/mysticatea/eslint-plugin-node/tree/v11.1.0)), distributed under the [MIT License](https://github.com/mysticatea/eslint-plugin-node/blob/v11.1.0/LICENSE):
2022
2232
 
2023
2233
  ```
2024
- MIT License
2025
-
2026
- Copyright (c) 2016-2020 The Fastify Team
2234
+ The MIT License (MIT)
2027
2235
 
2028
- The Fastify team members are listed at https://github.com/fastify/fastify#team
2029
- and in the README file.
2236
+ Copyright (c) 2015 Toru Nagashima
2030
2237
 
2031
2238
  Permission is hereby granted, free of charge, to any person obtaining a copy
2032
2239
  of this software and associated documentation files (the "Software"), to deal
@@ -2046,11 +2253,103 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2046
2253
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2047
2254
  SOFTWARE.
2048
2255
 
2256
+
2257
+ ```
2258
+
2259
+ ### eslint-plugin-prettier
2260
+
2261
+ This product includes source derived from [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) ([v3.4.0](https://github.com/prettier/eslint-plugin-prettier/tree/v3.4.0)), distributed under the [MIT License](https://github.com/prettier/eslint-plugin-prettier/blob/v3.4.0/LICENSE.md):
2262
+
2263
+ ```
2264
+ # The MIT License (MIT)
2265
+
2266
+ Copyright © 2017 Andres Suarez and Teddy Katz
2267
+
2268
+ Permission is hereby granted, free of charge, to any person
2269
+ obtaining a copy of this software and associated documentation
2270
+ files (the “Software”), to deal in the Software without
2271
+ restriction, including without limitation the rights to use,
2272
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
2273
+ copies of the Software, and to permit persons to whom the
2274
+ Software is furnished to do so, subject to the following
2275
+ conditions:
2276
+
2277
+ The above copyright notice and this permission notice shall be
2278
+ included in all copies or substantial portions of the Software.
2279
+
2280
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
2281
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
2282
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2283
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
2284
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2285
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2286
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2287
+ OTHER DEALINGS IN THE SOFTWARE.
2288
+
2289
+ ```
2290
+
2291
+ ### eslint
2292
+
2293
+ This product includes source derived from [eslint](https://github.com/eslint/eslint) ([v7.32.0](https://github.com/eslint/eslint/tree/v7.32.0)), distributed under the [MIT License](https://github.com/eslint/eslint/blob/v7.32.0/LICENSE):
2294
+
2295
+ ```
2296
+ Copyright JS Foundation and other contributors, https://js.foundation
2297
+
2298
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2299
+ of this software and associated documentation files (the "Software"), to deal
2300
+ in the Software without restriction, including without limitation the rights
2301
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2302
+ copies of the Software, and to permit persons to whom the Software is
2303
+ furnished to do so, subject to the following conditions:
2304
+
2305
+ The above copyright notice and this permission notice shall be included in
2306
+ all copies or substantial portions of the Software.
2307
+
2308
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2309
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2310
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2311
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2312
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2313
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2314
+ THE SOFTWARE.
2315
+
2316
+ ```
2317
+
2318
+ ### express
2319
+
2320
+ This product includes source derived from [express](https://github.com/expressjs/express) ([v4.17.1](https://github.com/expressjs/express/tree/v4.17.1)), distributed under the [MIT License](https://github.com/expressjs/express/blob/v4.17.1/LICENSE):
2321
+
2322
+ ```
2323
+ (The MIT License)
2324
+
2325
+ Copyright (c) 2009-2014 TJ Holowaychuk <tj@vision-media.ca>
2326
+ Copyright (c) 2013-2014 Roman Shtylman <shtylman+expressjs@gmail.com>
2327
+ Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com>
2328
+
2329
+ Permission is hereby granted, free of charge, to any person obtaining
2330
+ a copy of this software and associated documentation files (the
2331
+ 'Software'), to deal in the Software without restriction, including
2332
+ without limitation the rights to use, copy, modify, merge, publish,
2333
+ distribute, sublicense, and/or sell copies of the Software, and to
2334
+ permit persons to whom the Software is furnished to do so, subject to
2335
+ the following conditions:
2336
+
2337
+ The above copyright notice and this permission notice shall be
2338
+ included in all copies or substantial portions of the Software.
2339
+
2340
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2341
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2342
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2343
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2344
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2345
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2346
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2347
+
2049
2348
  ```
2050
2349
 
2051
2350
  ### generic-pool
2052
2351
 
2053
- This product includes source derived from [generic-pool](https://github.com/coopernurse/node-pool) ([v3.7.1](https://github.com/coopernurse/node-pool/tree/v3.7.1)), distributed under the [MIT License](https://github.com/coopernurse/node-pool/blob/v3.7.1/README.md):
2352
+ This product includes source derived from [generic-pool](https://github.com/coopernurse/node-pool) ([v3.8.2](https://github.com/coopernurse/node-pool/tree/v3.8.2)), distributed under the [MIT License](https://github.com/coopernurse/node-pool/blob/v3.8.2/README.md):
2054
2353
 
2055
2354
  ```
2056
2355
  MIT License
@@ -2066,7 +2365,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
2066
2365
 
2067
2366
  ### glob
2068
2367
 
2069
- This product includes source derived from [glob](https://github.com/isaacs/node-glob) ([v7.1.6](https://github.com/isaacs/node-glob/tree/v7.1.6)), distributed under the [ISC License](https://github.com/isaacs/node-glob/blob/v7.1.6/LICENSE):
2368
+ This product includes source derived from [glob](https://github.com/isaacs/node-glob) ([v7.1.7](https://github.com/isaacs/node-glob/tree/v7.1.7)), distributed under the [ISC License](https://github.com/isaacs/node-glob/blob/v7.1.7/LICENSE):
2070
2369
 
2071
2370
  ```
2072
2371
  The ISC License
@@ -2112,7 +2411,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
2112
2411
 
2113
2412
  ### http-errors
2114
2413
 
2115
- This product includes source derived from [http-errors](https://github.com/jshttp/http-errors) ([v1.7.3](https://github.com/jshttp/http-errors/tree/v1.7.3)), distributed under the [MIT License](https://github.com/jshttp/http-errors/blob/v1.7.3/LICENSE):
2414
+ This product includes source derived from [http-errors](https://github.com/jshttp/http-errors) ([v1.8.0](https://github.com/jshttp/http-errors/tree/v1.8.0)), distributed under the [MIT License](https://github.com/jshttp/http-errors/blob/v1.8.0/LICENSE):
2116
2415
 
2117
2416
  ```
2118
2417
 
@@ -2172,7 +2471,7 @@ SOFTWARE.
2172
2471
 
2173
2472
  ### jsdoc
2174
2473
 
2175
- This product includes source derived from [jsdoc](https://github.com/jsdoc/jsdoc) ([v3.6.3](https://github.com/jsdoc/jsdoc/tree/v3.6.3)), distributed under the [Apache-2.0 License](https://github.com/jsdoc/jsdoc/blob/v3.6.3/LICENSE.md):
2474
+ This product includes source derived from [jsdoc](https://github.com/jsdoc/jsdoc) ([v3.6.7](https://github.com/jsdoc/jsdoc/tree/v3.6.7)), distributed under the [Apache-2.0 License](https://github.com/jsdoc/jsdoc/blob/v3.6.7/LICENSE.md):
2176
2475
 
2177
2476
  ```
2178
2477
  # License
@@ -2282,7 +2581,7 @@ https://github.com/jmblog/color-themes-for-google-code-prettify
2282
2581
 
2283
2582
  ### lint-staged
2284
2583
 
2285
- This product includes source derived from [lint-staged](https://github.com/okonet/lint-staged) ([v11.0.0](https://github.com/okonet/lint-staged/tree/v11.0.0)), distributed under the [MIT License](https://github.com/okonet/lint-staged/blob/v11.0.0/LICENSE):
2584
+ This product includes source derived from [lint-staged](https://github.com/okonet/lint-staged) ([v11.1.2](https://github.com/okonet/lint-staged/tree/v11.1.2)), distributed under the [MIT License](https://github.com/okonet/lint-staged/blob/v11.1.2/LICENSE):
2286
2585
 
2287
2586
  ```
2288
2587
  The MIT License (MIT)
@@ -2406,7 +2705,7 @@ https://github.com/jsdoc3/jsdoc
2406
2705
 
2407
2706
  ### mongodb
2408
2707
 
2409
- This product includes source derived from [mongodb](https://github.com/mongodb/node-mongodb-native) ([v3.3.4](https://github.com/mongodb/node-mongodb-native/tree/v3.3.4)), distributed under the [Apache-2.0 License](https://github.com/mongodb/node-mongodb-native/blob/v3.3.4/LICENSE.md):
2708
+ This product includes source derived from [mongodb](https://github.com/mongodb/node-mongodb-native) ([v3.6.11](https://github.com/mongodb/node-mongodb-native/tree/v3.6.11)), distributed under the [Apache-2.0 License](https://github.com/mongodb/node-mongodb-native/blob/v3.6.11/LICENSE.md):
2410
2709
 
2411
2710
  ```
2412
2711
  Apache License
@@ -2614,7 +2913,7 @@ Apache License
2614
2913
 
2615
2914
  ### mysql
2616
2915
 
2617
- This product includes source derived from [mysql](https://github.com/mysqljs/mysql) ([v2.17.1](https://github.com/mysqljs/mysql/tree/v2.17.1)), distributed under the [MIT License](https://github.com/mysqljs/mysql/blob/v2.17.1/License):
2916
+ This product includes source derived from [mysql](https://github.com/mysqljs/mysql) ([v2.18.1](https://github.com/mysqljs/mysql/tree/v2.18.1)), distributed under the [MIT License](https://github.com/mysqljs/mysql/blob/v2.18.1/License):
2618
2917
 
2619
2918
  ```
2620
2919
  Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors
@@ -2668,12 +2967,27 @@ SOFTWARE.
2668
2967
 
2669
2968
  ```
2670
2969
 
2970
+ ### prettier
2971
+
2972
+ This product includes source derived from [prettier](https://github.com/prettier/prettier) ([v2.3.2](https://github.com/prettier/prettier/tree/v2.3.2)), distributed under the [MIT License](https://github.com/prettier/prettier/blob/v2.3.2/LICENSE):
2973
+
2974
+ ```
2975
+ Copyright © James Long and contributors
2976
+
2977
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
2978
+
2979
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2980
+
2981
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2982
+
2983
+ ```
2984
+
2671
2985
  ### proxyquire
2672
2986
 
2673
2987
  This product includes source derived from [proxyquire](https://github.com/thlorenz/proxyquire) ([v1.8.0](https://github.com/thlorenz/proxyquire/tree/v1.8.0)), distributed under the [MIT License](https://github.com/thlorenz/proxyquire/blob/v1.8.0/LICENSE):
2674
2988
 
2675
2989
  ```
2676
- Copyright 2013 Thorsten Lorenz.
2990
+ Copyright 2013 Thorsten Lorenz.
2677
2991
  All rights reserved.
2678
2992
 
2679
2993
  Permission is hereby granted, free of charge, to any person
@@ -2743,68 +3057,6 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
2743
3057
 
2744
3058
  ### request
2745
3059
 
2746
- This product includes source derived from [request](https://github.com/request/request) ([v2.88.0](https://github.com/request/request/tree/v2.88.0)), distributed under the [Apache-2.0 License](https://github.com/request/request/blob/v2.88.0/LICENSE):
2747
-
2748
- ```
2749
- Apache License
2750
-
2751
- Version 2.0, January 2004
2752
-
2753
- http://www.apache.org/licenses/
2754
-
2755
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
2756
-
2757
- 1. Definitions.
2758
-
2759
- "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
2760
-
2761
- "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
2762
-
2763
- "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
2764
-
2765
- "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
2766
-
2767
- "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
2768
-
2769
- "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
2770
-
2771
- "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
2772
-
2773
- "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
2774
-
2775
- "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
2776
-
2777
- "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
2778
-
2779
- 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
2780
-
2781
- 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
2782
-
2783
- 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
2784
-
2785
- You must give any other recipients of the Work or Derivative Works a copy of this License; and
2786
-
2787
- You must cause any modified files to carry prominent notices stating that You changed the files; and
2788
-
2789
- You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
2790
-
2791
- If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
2792
-
2793
- 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
2794
-
2795
- 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
2796
-
2797
- 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
2798
-
2799
- 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
2800
-
2801
- 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
2802
-
2803
- END OF TERMS AND CONDITIONS
2804
- ```
2805
-
2806
- ### request
2807
-
2808
3060
  This product includes source derived from [request](https://github.com/request/request) ([v2.88.2](https://github.com/request/request/tree/v2.88.2)), distributed under the [Apache-2.0 License](https://github.com/request/request/blob/v2.88.2/LICENSE):
2809
3061
 
2810
3062
  ```
@@ -2867,7 +3119,7 @@ END OF TERMS AND CONDITIONS
2867
3119
 
2868
3120
  ### restify
2869
3121
 
2870
- This product includes source derived from [restify](https://github.com/restify/node-restify) ([v8.4.0](https://github.com/restify/node-restify/tree/v8.4.0)), distributed under the [MIT License](https://github.com/restify/node-restify/blob/v8.4.0/LICENSE):
3122
+ This product includes source derived from [restify](https://github.com/restify/node-restify) ([v8.5.1](https://github.com/restify/node-restify/tree/v8.5.1)), distributed under the [MIT License](https://github.com/restify/node-restify/blob/v8.5.1/LICENSE):
2871
3123
 
2872
3124
  ```
2873
3125
  Copyright (c) 2011 Mark Cavage, All rights reserved.
@@ -2894,29 +3146,6 @@ THE SOFTWARE
2894
3146
 
2895
3147
  ### rimraf
2896
3148
 
2897
- This product includes source derived from [rimraf](https://github.com/isaacs/rimraf) ([v2.6.3](https://github.com/isaacs/rimraf/tree/v2.6.3)), distributed under the [ISC License](https://github.com/isaacs/rimraf/blob/v2.6.3/LICENSE):
2898
-
2899
- ```
2900
- The ISC License
2901
-
2902
- Copyright (c) Isaac Z. Schlueter and Contributors
2903
-
2904
- Permission to use, copy, modify, and/or distribute this software for any
2905
- purpose with or without fee is hereby granted, provided that the above
2906
- copyright notice and this permission notice appear in all copies.
2907
-
2908
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2909
- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2910
- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
2911
- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2912
- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2913
- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
2914
- IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2915
-
2916
- ```
2917
-
2918
- ### rimraf
2919
-
2920
3149
  This product includes source derived from [rimraf](https://github.com/isaacs/rimraf) ([v2.7.1](https://github.com/isaacs/rimraf/tree/v2.7.1)), distributed under the [ISC License](https://github.com/isaacs/rimraf/blob/v2.7.1/LICENSE):
2921
3150
 
2922
3151
  ```
@@ -3003,7 +3232,7 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3003
3232
 
3004
3233
  ### tap
3005
3234
 
3006
- This product includes source derived from [tap](https://github.com/tapjs/node-tap) ([v14.10.8](https://github.com/tapjs/node-tap/tree/v14.10.8)), distributed under the [ISC License](https://github.com/tapjs/node-tap/blob/v14.10.8/LICENSE):
3235
+ This product includes source derived from [tap](https://github.com/tapjs/node-tap) ([v15.0.9](https://github.com/tapjs/node-tap/tree/v15.0.9)), distributed under the [ISC License](https://github.com/tapjs/node-tap/blob/v15.0.9/LICENSE):
3007
3236
 
3008
3237
  ```
3009
3238
  The ISC License
@@ -3052,38 +3281,6 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3052
3281
 
3053
3282
  ```
3054
3283
 
3055
- ### through
3056
-
3057
- This product includes source derived from [through](https://github.com/dominictarr/through) ([v2.3.8](https://github.com/dominictarr/through/tree/v2.3.8)), distributed under the [MIT License](https://github.com/dominictarr/through/blob/v2.3.8/LICENSE.MIT):
3058
-
3059
- ```
3060
- The MIT License
3061
-
3062
- Copyright (c) 2011 Dominic Tarr
3063
-
3064
- Permission is hereby granted, free of charge,
3065
- to any person obtaining a copy of this software and
3066
- associated documentation files (the "Software"), to
3067
- deal in the Software without restriction, including
3068
- without limitation the rights to use, copy, modify,
3069
- merge, publish, distribute, sublicense, and/or sell
3070
- copies of the Software, and to permit persons to whom
3071
- the Software is furnished to do so,
3072
- subject to the following conditions:
3073
-
3074
- The above copyright notice and this permission notice
3075
- shall be included in all copies or substantial portions of the Software.
3076
-
3077
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
3078
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
3079
- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
3080
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
3081
- ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
3082
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
3083
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3084
-
3085
- ```
3086
-
3087
3284
  ### when
3088
3285
 
3089
3286
  This product includes source derived from [when](https://github.com/cujojs/when) ([v3.7.8](https://github.com/cujojs/when/tree/v3.7.8)), distributed under the [MIT License](https://github.com/cujojs/when/blob/v3.7.8/LICENSE.txt):
@@ -3116,9 +3313,220 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3116
3313
  ```
3117
3314
 
3118
3315
 
3119
- ## additional-licenses
3316
+ ## optionalDependencies
3317
+
3318
+ ### @newrelic/native-metrics
3319
+
3320
+ This product includes source derived from [@newrelic/native-metrics](https://github.com/newrelic/node-native-metrics) ([v7.0.1](https://github.com/newrelic/node-native-metrics/tree/v7.0.1)), distributed under the [Apache-2.0 License](https://github.com/newrelic/node-native-metrics/blob/v7.0.1/LICENSE):
3321
+
3322
+ ```
3323
+ Apache License
3324
+ Version 2.0, January 2004
3325
+ http://www.apache.org/licenses/
3326
+
3327
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
3328
+
3329
+ 1. Definitions.
3330
+
3331
+ "License" shall mean the terms and conditions for use, reproduction,
3332
+ and distribution as defined by Sections 1 through 9 of this document.
3333
+
3334
+ "Licensor" shall mean the copyright owner or entity authorized by
3335
+ the copyright owner that is granting the License.
3336
+
3337
+ "Legal Entity" shall mean the union of the acting entity and all
3338
+ other entities that control, are controlled by, or are under common
3339
+ control with that entity. For the purposes of this definition,
3340
+ "control" means (i) the power, direct or indirect, to cause the
3341
+ direction or management of such entity, whether by contract or
3342
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
3343
+ outstanding shares, or (iii) beneficial ownership of such entity.
3344
+
3345
+ "You" (or "Your") shall mean an individual or Legal Entity
3346
+ exercising permissions granted by this License.
3347
+
3348
+ "Source" form shall mean the preferred form for making modifications,
3349
+ including but not limited to software source code, documentation
3350
+ source, and configuration files.
3351
+
3352
+ "Object" form shall mean any form resulting from mechanical
3353
+ transformation or translation of a Source form, including but
3354
+ not limited to compiled object code, generated documentation,
3355
+ and conversions to other media types.
3356
+
3357
+ "Work" shall mean the work of authorship, whether in Source or
3358
+ Object form, made available under the License, as indicated by a
3359
+ copyright notice that is included in or attached to the work
3360
+ (an example is provided in the Appendix below).
3361
+
3362
+ "Derivative Works" shall mean any work, whether in Source or Object
3363
+ form, that is based on (or derived from) the Work and for which the
3364
+ editorial revisions, annotations, elaborations, or other modifications
3365
+ represent, as a whole, an original work of authorship. For the purposes
3366
+ of this License, Derivative Works shall not include works that remain
3367
+ separable from, or merely link (or bind by name) to the interfaces of,
3368
+ the Work and Derivative Works thereof.
3369
+
3370
+ "Contribution" shall mean any work of authorship, including
3371
+ the original version of the Work and any modifications or additions
3372
+ to that Work or Derivative Works thereof, that is intentionally
3373
+ submitted to Licensor for inclusion in the Work by the copyright owner
3374
+ or by an individual or Legal Entity authorized to submit on behalf of
3375
+ the copyright owner. For the purposes of this definition, "submitted"
3376
+ means any form of electronic, verbal, or written communication sent
3377
+ to the Licensor or its representatives, including but not limited to
3378
+ communication on electronic mailing lists, source code control systems,
3379
+ and issue tracking systems that are managed by, or on behalf of, the
3380
+ Licensor for the purpose of discussing and improving the Work, but
3381
+ excluding communication that is conspicuously marked or otherwise
3382
+ designated in writing by the copyright owner as "Not a Contribution."
3383
+
3384
+ "Contributor" shall mean Licensor and any individual or Legal Entity
3385
+ on behalf of whom a Contribution has been received by Licensor and
3386
+ subsequently incorporated within the Work.
3387
+
3388
+ 2. Grant of Copyright License. Subject to the terms and conditions of
3389
+ this License, each Contributor hereby grants to You a perpetual,
3390
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
3391
+ copyright license to reproduce, prepare Derivative Works of,
3392
+ publicly display, publicly perform, sublicense, and distribute the
3393
+ Work and such Derivative Works in Source or Object form.
3394
+
3395
+ 3. Grant of Patent License. Subject to the terms and conditions of
3396
+ this License, each Contributor hereby grants to You a perpetual,
3397
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
3398
+ (except as stated in this section) patent license to make, have made,
3399
+ use, offer to sell, sell, import, and otherwise transfer the Work,
3400
+ where such license applies only to those patent claims licensable
3401
+ by such Contributor that are necessarily infringed by their
3402
+ Contribution(s) alone or by combination of their Contribution(s)
3403
+ with the Work to which such Contribution(s) was submitted. If You
3404
+ institute patent litigation against any entity (including a
3405
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
3406
+ or a Contribution incorporated within the Work constitutes direct
3407
+ or contributory patent infringement, then any patent licenses
3408
+ granted to You under this License for that Work shall terminate
3409
+ as of the date such litigation is filed.
3410
+
3411
+ 4. Redistribution. You may reproduce and distribute copies of the
3412
+ Work or Derivative Works thereof in any medium, with or without
3413
+ modifications, and in Source or Object form, provided that You
3414
+ meet the following conditions:
3120
3415
 
3121
- ### symantec
3416
+ (a) You must give any other recipients of the Work or
3417
+ Derivative Works a copy of this License; and
3418
+
3419
+ (b) You must cause any modified files to carry prominent notices
3420
+ stating that You changed the files; and
3421
+
3422
+ (c) You must retain, in the Source form of any Derivative Works
3423
+ that You distribute, all copyright, patent, trademark, and
3424
+ attribution notices from the Source form of the Work,
3425
+ excluding those notices that do not pertain to any part of
3426
+ the Derivative Works; and
3427
+
3428
+ (d) If the Work includes a "NOTICE" text file as part of its
3429
+ distribution, then any Derivative Works that You distribute must
3430
+ include a readable copy of the attribution notices contained
3431
+ within such NOTICE file, excluding those notices that do not
3432
+ pertain to any part of the Derivative Works, in at least one
3433
+ of the following places: within a NOTICE text file distributed
3434
+ as part of the Derivative Works; within the Source form or
3435
+ documentation, if provided along with the Derivative Works; or,
3436
+ within a display generated by the Derivative Works, if and
3437
+ wherever such third-party notices normally appear. The contents
3438
+ of the NOTICE file are for informational purposes only and
3439
+ do not modify the License. You may add Your own attribution
3440
+ notices within Derivative Works that You distribute, alongside
3441
+ or as an addendum to the NOTICE text from the Work, provided
3442
+ that such additional attribution notices cannot be construed
3443
+ as modifying the License.
3444
+
3445
+ You may add Your own copyright statement to Your modifications and
3446
+ may provide additional or different license terms and conditions
3447
+ for use, reproduction, or distribution of Your modifications, or
3448
+ for any such Derivative Works as a whole, provided Your use,
3449
+ reproduction, and distribution of the Work otherwise complies with
3450
+ the conditions stated in this License.
3451
+
3452
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
3453
+ any Contribution intentionally submitted for inclusion in the Work
3454
+ by You to the Licensor shall be under the terms and conditions of
3455
+ this License, without any additional terms or conditions.
3456
+ Notwithstanding the above, nothing herein shall supersede or modify
3457
+ the terms of any separate license agreement you may have executed
3458
+ with Licensor regarding such Contributions.
3459
+
3460
+ 6. Trademarks. This License does not grant permission to use the trade
3461
+ names, trademarks, service marks, or product names of the Licensor,
3462
+ except as required for reasonable and customary use in describing the
3463
+ origin of the Work and reproducing the content of the NOTICE file.
3464
+
3465
+ 7. Disclaimer of Warranty. Unless required by applicable law or
3466
+ agreed to in writing, Licensor provides the Work (and each
3467
+ Contributor provides its Contributions) on an "AS IS" BASIS,
3468
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
3469
+ implied, including, without limitation, any warranties or conditions
3470
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
3471
+ PARTICULAR PURPOSE. You are solely responsible for determining the
3472
+ appropriateness of using or redistributing the Work and assume any
3473
+ risks associated with Your exercise of permissions under this License.
3474
+
3475
+ 8. Limitation of Liability. In no event and under no legal theory,
3476
+ whether in tort (including negligence), contract, or otherwise,
3477
+ unless required by applicable law (such as deliberate and grossly
3478
+ negligent acts) or agreed to in writing, shall any Contributor be
3479
+ liable to You for damages, including any direct, indirect, special,
3480
+ incidental, or consequential damages of any character arising as a
3481
+ result of this License or out of the use or inability to use the
3482
+ Work (including but not limited to damages for loss of goodwill,
3483
+ work stoppage, computer failure or malfunction, or any and all
3484
+ other commercial damages or losses), even if such Contributor
3485
+ has been advised of the possibility of such damages.
3486
+
3487
+ 9. Accepting Warranty or Additional Liability. While redistributing
3488
+ the Work or Derivative Works thereof, You may choose to offer,
3489
+ and charge a fee for, acceptance of support, warranty, indemnity,
3490
+ or other liability obligations and/or rights consistent with this
3491
+ License. However, in accepting such obligations, You may act only
3492
+ on Your own behalf and on Your sole responsibility, not on behalf
3493
+ of any other Contributor, and only if You agree to indemnify,
3494
+ defend, and hold each Contributor harmless for any liability
3495
+ incurred by, or claims asserted against, such Contributor by reason
3496
+ of your accepting any such warranty or additional liability.
3497
+
3498
+ END OF TERMS AND CONDITIONS
3499
+
3500
+ APPENDIX: How to apply the Apache License to your work.
3501
+
3502
+ To apply the Apache License to your work, attach the following
3503
+ boilerplate notice, with the fields enclosed by brackets "[]"
3504
+ replaced with your own identifying information. (Don't include
3505
+ the brackets!) The text should be enclosed in the appropriate
3506
+ comment syntax for the file format. We also recommend that a
3507
+ file or class name and description of purpose be included on the
3508
+ same "printed page" as the copyright notice for easier
3509
+ identification within third-party archives.
3510
+
3511
+ Copyright [yyyy] [name of copyright owner]
3512
+
3513
+ Licensed under the Apache License, Version 2.0 (the "License");
3514
+ you may not use this file except in compliance with the License.
3515
+ You may obtain a copy of the License at
3516
+
3517
+ http://www.apache.org/licenses/LICENSE-2.0
3518
+
3519
+ Unless required by applicable law or agreed to in writing, software
3520
+ distributed under the License is distributed on an "AS IS" BASIS,
3521
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3522
+ See the License for the specific language governing permissions and
3523
+ limitations under the License.
3524
+
3525
+ ```
3526
+
3527
+ ## Additional Licenses
3528
+
3529
+ ### Symantec
3122
3530
 
3123
3531
  This product includes certificates from Symantec which are used under the
3124
3532
  following license (https://docs.broadcom.com/doc/root-certificate-license-agreement-en):
@@ -3320,4 +3728,5 @@ Root Certificate License Agreement v3.0 (January 2014)
3320
3728
  Portions copyright Node.js contributors. Depending on your existing libraries and package management settings,
3321
3729
  your systems may call externally maintained libraries in addition to those listed above.
3322
3730
  See [here](https://nodejs.org/en/docs/meta/topics/dependencies/) and [here](https://github.com/nodejs/node/blob/v4.3.1/LICENSE)
3323
- for additional details regarding externally maintained libraries and certain related licenses and notices.”
3731
+ for additional details regarding externally maintained libraries and certain related licenses and notices.
3732
+