newrelic 8.1.0 → 8.5.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.
- package/NEWS.md +5039 -4937
- package/THIRD_PARTY_NOTICES.md +666 -181
- package/api.js +156 -219
- package/bin/test-naming-rules.js +58 -51
- package/index.js +7 -14
- package/lib/agent.js +60 -83
- package/lib/aggregators/base-aggregator.js +1 -1
- package/lib/aggregators/event-aggregator.js +6 -6
- package/lib/attributes.js +13 -14
- package/lib/collector/api.js +42 -51
- package/lib/collector/facts.js +68 -66
- package/lib/collector/http-agents.js +36 -32
- package/lib/collector/key-parser.js +1 -1
- package/lib/collector/parse-response.js +1 -2
- package/lib/collector/remote-method.js +69 -61
- package/lib/collector/serverless.js +13 -18
- package/lib/collector/ssl/certificates.js +1056 -1056
- package/lib/config/attribute-filter.js +109 -101
- package/lib/config/default.js +35 -21
- package/lib/config/env.js +17 -12
- package/lib/config/harvest-config-validator.js +1 -1
- package/lib/config/hsm.js +1 -1
- package/lib/config/index.js +240 -234
- package/lib/config/lasp.js +3 -3
- package/lib/config/merge-server-config.js +8 -6
- package/lib/custom-events/custom-event-aggregator.js +1 -1
- package/lib/db/parse-sql.js +13 -16
- package/lib/db/parsed-statement.js +13 -19
- package/lib/db/query-parsers/sql.js +12 -15
- package/lib/db/query-sample.js +16 -12
- package/lib/db/query-trace-aggregator.js +16 -16
- package/lib/db/statement-matcher.js +5 -5
- package/lib/db/utils.js +2 -2
- package/lib/environment.js +210 -175
- package/lib/errors/error-collector.js +20 -33
- package/lib/errors/error-event-aggregator.js +1 -1
- package/lib/errors/error-trace-aggregator.js +3 -4
- package/lib/errors/helper.js +23 -32
- package/lib/errors/index.js +31 -43
- package/lib/feature_flags.js +9 -8
- package/lib/grpc/connection/states.js +6 -6
- package/lib/grpc/connection.js +35 -46
- package/lib/header-attributes.js +55 -59
- package/lib/header-processing.js +1 -1
- package/lib/instrumentation/amqplib.js +34 -43
- package/lib/instrumentation/bluebird.js +63 -22
- package/lib/instrumentation/cassandra-driver.js +8 -4
- package/lib/instrumentation/connect.js +7 -6
- package/lib/instrumentation/core/async_hooks.js +16 -9
- package/lib/instrumentation/core/child_process.js +20 -28
- package/lib/instrumentation/core/crypto.js +1 -7
- package/lib/instrumentation/core/dns.js +3 -7
- package/lib/instrumentation/core/domain.js +4 -10
- package/lib/instrumentation/core/fs.js +22 -37
- package/lib/instrumentation/core/globals.js +4 -8
- package/lib/instrumentation/core/http-outbound.js +21 -115
- package/lib/instrumentation/core/http.js +61 -128
- package/lib/instrumentation/core/inspector.js +7 -11
- package/lib/instrumentation/core/net.js +3 -1
- package/lib/instrumentation/core/timers.js +21 -28
- package/lib/instrumentation/core/zlib.js +3 -11
- package/lib/instrumentation/director.js +4 -4
- package/lib/instrumentation/express.js +12 -10
- package/lib/instrumentation/fastify/spec-builders.js +57 -47
- package/lib/instrumentation/fastify.js +113 -30
- package/lib/instrumentation/generic-pool.js +1 -1
- package/lib/instrumentation/hapi/hapi-17.js +20 -21
- package/lib/instrumentation/hapi/shared.js +1 -1
- package/lib/instrumentation/hapi.js +37 -37
- package/lib/instrumentation/ioredis.js +8 -9
- package/lib/instrumentation/memcached.js +41 -45
- package/lib/instrumentation/mongodb/common.js +82 -47
- package/lib/instrumentation/mongodb/constants.js +2 -12
- package/lib/instrumentation/mongodb/v2-mongo.js +22 -20
- package/lib/instrumentation/mongodb/v3-mongo.js +21 -2
- package/lib/instrumentation/mongodb/v4-mongo.js +9 -15
- package/lib/instrumentation/mongodb.js +3 -2
- package/lib/instrumentation/mysql.js +51 -44
- package/lib/instrumentation/oracle.js +24 -28
- package/lib/instrumentation/pg.js +8 -18
- package/lib/instrumentation/promise.js +65 -62
- package/lib/instrumentation/q.js +2 -2
- package/lib/instrumentation/redis.js +38 -38
- package/lib/instrumentation/restify.js +1 -1
- package/lib/instrumentation/undici.js +242 -0
- package/lib/instrumentation/vision.js +4 -4
- package/lib/instrumentation/when.js +12 -4
- package/lib/instrumentations.js +26 -25
- package/lib/logger.js +6 -6
- package/lib/metrics/index.js +50 -30
- package/lib/metrics/mapper.js +15 -15
- package/lib/metrics/metric-aggregator.js +5 -10
- package/lib/metrics/names.js +8 -7
- package/lib/metrics/normalizer/rule.js +14 -15
- package/lib/metrics/normalizer/tx_segment.js +33 -29
- package/lib/metrics/normalizer.js +51 -54
- package/lib/metrics/recorders/custom.js +8 -6
- package/lib/metrics/recorders/distributed-trace.js +3 -18
- package/lib/metrics/recorders/generic.js +6 -5
- package/lib/metrics/recorders/http.js +11 -13
- package/lib/metrics/recorders/http_external.js +8 -10
- package/lib/metrics/recorders/message-transaction.js +7 -18
- package/lib/metrics/recorders/other.js +7 -17
- package/lib/parse-proc-cpuinfo.js +26 -31
- package/lib/parse-proc-meminfo.js +5 -3
- package/lib/prioritized-attributes.js +14 -19
- package/lib/priority-queue.js +11 -11
- package/lib/proxy/grpc.js +1 -1
- package/lib/reservoir.js +12 -6
- package/lib/sampler.js +33 -34
- package/lib/serverless/api-gateway.js +3 -3
- package/lib/serverless/aws-lambda.js +28 -37
- package/lib/shim/conglomerate-shim.js +4 -4
- package/lib/shim/datastore-shim.js +61 -67
- package/lib/shim/index.js +10 -11
- package/lib/shim/message-shim.js +149 -151
- package/lib/shim/promise-shim.js +19 -14
- package/lib/shim/shim.js +131 -125
- package/lib/shim/specs/index.js +21 -22
- package/lib/shim/transaction-shim.js +52 -210
- package/lib/shim/webframework-shim.js +75 -85
- package/lib/shimmer.js +184 -166
- package/lib/spans/create-span-event-aggregator.js +11 -8
- package/lib/spans/span-context.js +4 -10
- package/lib/spans/span-event-aggregator.js +68 -13
- package/lib/spans/span-event.js +6 -8
- package/lib/spans/span-streamer.js +10 -18
- package/lib/spans/streaming-span-attributes.js +1 -1
- package/lib/spans/streaming-span-event-aggregator.js +1 -1
- package/lib/spans/streaming-span-event.js +4 -4
- package/lib/stats/apdex.js +7 -13
- package/lib/stats/index.js +14 -19
- package/lib/system-info.js +29 -25
- package/lib/timer.js +35 -21
- package/lib/transaction/dt-payload.js +1 -1
- package/lib/transaction/handle.js +19 -19
- package/lib/transaction/index.js +133 -151
- package/lib/transaction/name-state.js +18 -19
- package/lib/transaction/trace/aggregator.js +78 -73
- package/lib/transaction/trace/exclusive-time-calculator.js +9 -13
- package/lib/transaction/trace/index.js +37 -35
- package/lib/transaction/trace/segment.js +56 -73
- package/lib/transaction/tracecontext.js +38 -46
- package/lib/transaction/tracer/index.js +130 -91
- package/lib/transaction/transaction-event-aggregator.js +29 -31
- package/lib/uninstrumented.js +11 -12
- package/lib/util/arity.js +2 -2
- package/lib/util/attribute-types.js +1 -5
- package/lib/util/byte-limit.js +4 -5
- package/lib/util/cat.js +270 -33
- package/lib/util/codec.js +10 -6
- package/lib/util/copy.js +2 -2
- package/lib/util/deep-equal.js +51 -21
- package/lib/util/flatten.js +9 -6
- package/lib/util/hashes.js +16 -16
- package/lib/util/label-parser.js +22 -28
- package/lib/util/logger.js +53 -35
- package/lib/util/process-version.js +3 -3
- package/lib/util/properties.js +5 -5
- package/lib/util/sql/obfuscate.js +21 -31
- package/lib/util/stream-sink.js +5 -6
- package/lib/util/unwrapped-core.js +2 -2
- package/lib/util/urltils.js +26 -30
- package/lib/utilization/aws-info.js +8 -9
- package/lib/utilization/azure-info.js +37 -35
- package/lib/utilization/common.js +17 -16
- package/lib/utilization/docker-info.js +14 -16
- package/lib/utilization/gcp-info.js +38 -37
- package/lib/utilization/index.js +5 -5
- package/lib/utilization/kubernetes-info.js +2 -2
- package/lib/utilization/pcf-info.js +12 -12
- package/package.json +18 -6
- package/stub_api.js +16 -14
package/THIRD_PARTY_NOTICES.md
CHANGED
|
@@ -27,29 +27,30 @@ 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
|
-
* [
|
|
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-disable](#eslint-plugin-disable)
|
|
45
45
|
* [eslint-plugin-header](#eslint-plugin-header)
|
|
46
|
+
* [eslint-plugin-jsdoc](#eslint-plugin-jsdoc)
|
|
47
|
+
* [eslint-plugin-node](#eslint-plugin-node)
|
|
48
|
+
* [eslint-plugin-prettier](#eslint-plugin-prettier)
|
|
46
49
|
* [eslint](#eslint)
|
|
47
50
|
* [express](#express)
|
|
48
|
-
* [fastify](#fastify)
|
|
49
51
|
* [generic-pool](#generic-pool)
|
|
50
52
|
* [glob](#glob)
|
|
51
53
|
* [got](#got)
|
|
52
|
-
* [http-errors](#http-errors)
|
|
53
54
|
* [husky](#husky)
|
|
54
55
|
* [jsdoc](#jsdoc)
|
|
55
56
|
* [lint-staged](#lint-staged)
|
|
@@ -58,26 +59,33 @@ code, the source code can be found at [https://github.com/newrelic/node-newrelic
|
|
|
58
59
|
* [mongodb](#mongodb)
|
|
59
60
|
* [mysql](#mysql)
|
|
60
61
|
* [nock](#nock)
|
|
62
|
+
* [prettier](#prettier)
|
|
61
63
|
* [proxyquire](#proxyquire)
|
|
62
64
|
* [q](#q)
|
|
63
65
|
* [redis](#redis)
|
|
64
66
|
* [request](#request)
|
|
65
67
|
* [restify](#restify)
|
|
66
68
|
* [rimraf](#rimraf)
|
|
67
|
-
* [rimraf](#rimraf)
|
|
68
69
|
* [should](#should)
|
|
69
70
|
* [sinon](#sinon)
|
|
70
71
|
* [tap](#tap)
|
|
71
72
|
* [temp](#temp)
|
|
72
|
-
* [through](#through)
|
|
73
73
|
* [when](#when)
|
|
74
74
|
|
|
75
|
+
**[optionalDependencies](#optionalDependencies)**
|
|
76
|
+
|
|
77
|
+
* [@newrelic/native-metrics](#newrelicnative-metrics)
|
|
78
|
+
|
|
79
|
+
**[Additional Licenses](#additional-licenses)**
|
|
80
|
+
|
|
81
|
+
* [Symantec](#Symantec)
|
|
82
|
+
|
|
75
83
|
|
|
76
84
|
## dependencies
|
|
77
85
|
|
|
78
86
|
### @grpc/grpc-js
|
|
79
87
|
|
|
80
|
-
This product includes source derived from [@grpc/grpc-js](https://github.com/grpc/grpc-node/tree/master/packages/grpc-js) ([v1.3.
|
|
88
|
+
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
89
|
|
|
82
90
|
```
|
|
83
91
|
Apache License
|
|
@@ -286,7 +294,7 @@ This product includes source derived from [@grpc/grpc-js](https://github.com/grp
|
|
|
286
294
|
|
|
287
295
|
### @grpc/proto-loader
|
|
288
296
|
|
|
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
|
|
297
|
+
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
298
|
|
|
291
299
|
```
|
|
292
300
|
Apache License
|
|
@@ -1150,7 +1158,7 @@ THE SOFTWARE.
|
|
|
1150
1158
|
|
|
1151
1159
|
### async
|
|
1152
1160
|
|
|
1153
|
-
This product includes source derived from [async](https://github.com/caolan/async) ([v3.2.
|
|
1161
|
+
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
1162
|
|
|
1155
1163
|
```
|
|
1156
1164
|
Copyright (c) 2010-2018 Caolan McMahon
|
|
@@ -1184,25 +1192,25 @@ The MIT License
|
|
|
1184
1192
|
|
|
1185
1193
|
Copyright (c) 2013 Max Ogden
|
|
1186
1194
|
|
|
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,
|
|
1195
|
+
Permission is hereby granted, free of charge,
|
|
1196
|
+
to any person obtaining a copy of this software and
|
|
1197
|
+
associated documentation files (the "Software"), to
|
|
1198
|
+
deal in the Software without restriction, including
|
|
1199
|
+
without limitation the rights to use, copy, modify,
|
|
1200
|
+
merge, publish, distribute, sublicense, and/or sell
|
|
1201
|
+
copies of the Software, and to permit persons to whom
|
|
1202
|
+
the Software is furnished to do so,
|
|
1195
1203
|
subject to the following conditions:
|
|
1196
1204
|
|
|
1197
|
-
The above copyright notice and this permission notice
|
|
1205
|
+
The above copyright notice and this permission notice
|
|
1198
1206
|
shall be included in all copies or substantial portions of the Software.
|
|
1199
1207
|
|
|
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
|
|
1208
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
1209
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
1210
|
+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
1211
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
|
|
1212
|
+
ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
1213
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
1206
1214
|
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1207
1215
|
```
|
|
1208
1216
|
|
|
@@ -1323,10 +1331,12 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
1323
1331
|
|
|
1324
1332
|
```
|
|
1325
1333
|
|
|
1326
|
-
## optionalDependencies
|
|
1327
1334
|
|
|
1328
|
-
|
|
1329
|
-
|
|
1335
|
+
## devDependencies
|
|
1336
|
+
|
|
1337
|
+
### @newrelic/eslint-config
|
|
1338
|
+
|
|
1339
|
+
This product includes source derived from [@newrelic/eslint-config](https://github.com/newrelic/eslint-config-newrelic) ([v0.0.3](https://github.com/newrelic/eslint-config-newrelic/tree/v0.0.3)), distributed under the [Apache-2.0 License](https://github.com/newrelic/eslint-config-newrelic/blob/v0.0.3/LICENSE):
|
|
1330
1340
|
|
|
1331
1341
|
```
|
|
1332
1342
|
Apache License
|
|
@@ -1533,7 +1543,213 @@ This product includes source derived from [@newrelic/native-metrics](https://git
|
|
|
1533
1543
|
|
|
1534
1544
|
```
|
|
1535
1545
|
|
|
1536
|
-
|
|
1546
|
+
### @newrelic/newrelic-oss-cli
|
|
1547
|
+
|
|
1548
|
+
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):
|
|
1549
|
+
|
|
1550
|
+
```
|
|
1551
|
+
Apache License
|
|
1552
|
+
Version 2.0, January 2004
|
|
1553
|
+
http://www.apache.org/licenses/
|
|
1554
|
+
|
|
1555
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
1556
|
+
|
|
1557
|
+
1. Definitions.
|
|
1558
|
+
|
|
1559
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
1560
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
1561
|
+
|
|
1562
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
1563
|
+
the copyright owner that is granting the License.
|
|
1564
|
+
|
|
1565
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
1566
|
+
other entities that control, are controlled by, or are under common
|
|
1567
|
+
control with that entity. For the purposes of this definition,
|
|
1568
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
1569
|
+
direction or management of such entity, whether by contract or
|
|
1570
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
1571
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
1572
|
+
|
|
1573
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
1574
|
+
exercising permissions granted by this License.
|
|
1575
|
+
|
|
1576
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
1577
|
+
including but not limited to software source code, documentation
|
|
1578
|
+
source, and configuration files.
|
|
1579
|
+
|
|
1580
|
+
"Object" form shall mean any form resulting from mechanical
|
|
1581
|
+
transformation or translation of a Source form, including but
|
|
1582
|
+
not limited to compiled object code, generated documentation,
|
|
1583
|
+
and conversions to other media types.
|
|
1584
|
+
|
|
1585
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
1586
|
+
Object form, made available under the License, as indicated by a
|
|
1587
|
+
copyright notice that is included in or attached to the work
|
|
1588
|
+
(an example is provided in the Appendix below).
|
|
1589
|
+
|
|
1590
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
1591
|
+
form, that is based on (or derived from) the Work and for which the
|
|
1592
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
1593
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
1594
|
+
of this License, Derivative Works shall not include works that remain
|
|
1595
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
1596
|
+
the Work and Derivative Works thereof.
|
|
1597
|
+
|
|
1598
|
+
"Contribution" shall mean any work of authorship, including
|
|
1599
|
+
the original version of the Work and any modifications or additions
|
|
1600
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
1601
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
1602
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
1603
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
1604
|
+
means any form of electronic, verbal, or written communication sent
|
|
1605
|
+
to the Licensor or its representatives, including but not limited to
|
|
1606
|
+
communication on electronic mailing lists, source code control systems,
|
|
1607
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
1608
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
1609
|
+
excluding communication that is conspicuously marked or otherwise
|
|
1610
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
1611
|
+
|
|
1612
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
1613
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
1614
|
+
subsequently incorporated within the Work.
|
|
1615
|
+
|
|
1616
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
1617
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
1618
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
1619
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
1620
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
1621
|
+
Work and such Derivative Works in Source or Object form.
|
|
1622
|
+
|
|
1623
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
1624
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
1625
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
1626
|
+
(except as stated in this section) patent license to make, have made,
|
|
1627
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
1628
|
+
where such license applies only to those patent claims licensable
|
|
1629
|
+
by such Contributor that are necessarily infringed by their
|
|
1630
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
1631
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
1632
|
+
institute patent litigation against any entity (including a
|
|
1633
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
1634
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
1635
|
+
or contributory patent infringement, then any patent licenses
|
|
1636
|
+
granted to You under this License for that Work shall terminate
|
|
1637
|
+
as of the date such litigation is filed.
|
|
1638
|
+
|
|
1639
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
1640
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
1641
|
+
modifications, and in Source or Object form, provided that You
|
|
1642
|
+
meet the following conditions:
|
|
1643
|
+
|
|
1644
|
+
(a) You must give any other recipients of the Work or
|
|
1645
|
+
Derivative Works a copy of this License; and
|
|
1646
|
+
|
|
1647
|
+
(b) You must cause any modified files to carry prominent notices
|
|
1648
|
+
stating that You changed the files; and
|
|
1649
|
+
|
|
1650
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
1651
|
+
that You distribute, all copyright, patent, trademark, and
|
|
1652
|
+
attribution notices from the Source form of the Work,
|
|
1653
|
+
excluding those notices that do not pertain to any part of
|
|
1654
|
+
the Derivative Works; and
|
|
1655
|
+
|
|
1656
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
1657
|
+
distribution, then any Derivative Works that You distribute must
|
|
1658
|
+
include a readable copy of the attribution notices contained
|
|
1659
|
+
within such NOTICE file, excluding those notices that do not
|
|
1660
|
+
pertain to any part of the Derivative Works, in at least one
|
|
1661
|
+
of the following places: within a NOTICE text file distributed
|
|
1662
|
+
as part of the Derivative Works; within the Source form or
|
|
1663
|
+
documentation, if provided along with the Derivative Works; or,
|
|
1664
|
+
within a display generated by the Derivative Works, if and
|
|
1665
|
+
wherever such third-party notices normally appear. The contents
|
|
1666
|
+
of the NOTICE file are for informational purposes only and
|
|
1667
|
+
do not modify the License. You may add Your own attribution
|
|
1668
|
+
notices within Derivative Works that You distribute, alongside
|
|
1669
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
1670
|
+
that such additional attribution notices cannot be construed
|
|
1671
|
+
as modifying the License.
|
|
1672
|
+
|
|
1673
|
+
You may add Your own copyright statement to Your modifications and
|
|
1674
|
+
may provide additional or different license terms and conditions
|
|
1675
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
1676
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
1677
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
1678
|
+
the conditions stated in this License.
|
|
1679
|
+
|
|
1680
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
1681
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
1682
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
1683
|
+
this License, without any additional terms or conditions.
|
|
1684
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
1685
|
+
the terms of any separate license agreement you may have executed
|
|
1686
|
+
with Licensor regarding such Contributions.
|
|
1687
|
+
|
|
1688
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
1689
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
1690
|
+
except as required for reasonable and customary use in describing the
|
|
1691
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
1692
|
+
|
|
1693
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
1694
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
1695
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
1696
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
1697
|
+
implied, including, without limitation, any warranties or conditions
|
|
1698
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
1699
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
1700
|
+
appropriateness of using or redistributing the Work and assume any
|
|
1701
|
+
risks associated with Your exercise of permissions under this License.
|
|
1702
|
+
|
|
1703
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
1704
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
1705
|
+
unless required by applicable law (such as deliberate and grossly
|
|
1706
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
1707
|
+
liable to You for damages, including any direct, indirect, special,
|
|
1708
|
+
incidental, or consequential damages of any character arising as a
|
|
1709
|
+
result of this License or out of the use or inability to use the
|
|
1710
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
1711
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
1712
|
+
other commercial damages or losses), even if such Contributor
|
|
1713
|
+
has been advised of the possibility of such damages.
|
|
1714
|
+
|
|
1715
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
1716
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
1717
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
1718
|
+
or other liability obligations and/or rights consistent with this
|
|
1719
|
+
License. However, in accepting such obligations, You may act only
|
|
1720
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
1721
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
1722
|
+
defend, and hold each Contributor harmless for any liability
|
|
1723
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
1724
|
+
of your accepting any such warranty or additional liability.
|
|
1725
|
+
|
|
1726
|
+
END OF TERMS AND CONDITIONS
|
|
1727
|
+
|
|
1728
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
1729
|
+
|
|
1730
|
+
To apply the Apache License to your work, attach the following
|
|
1731
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
1732
|
+
replaced with your own identifying information. (Don't include
|
|
1733
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
1734
|
+
comment syntax for the file format. We also recommend that a
|
|
1735
|
+
file or class name and description of purpose be included on the
|
|
1736
|
+
same "printed page" as the copyright notice for easier
|
|
1737
|
+
identification within third-party archives.
|
|
1738
|
+
|
|
1739
|
+
Copyright [yyyy] [name of copyright owner]
|
|
1740
|
+
|
|
1741
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
1742
|
+
you may not use this file except in compliance with the License.
|
|
1743
|
+
You may obtain a copy of the License at
|
|
1744
|
+
|
|
1745
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
1746
|
+
|
|
1747
|
+
Unless required by applicable law or agreed to in writing, software
|
|
1748
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
1749
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
1750
|
+
See the License for the specific language governing permissions and
|
|
1751
|
+
limitations under the License.
|
|
1752
|
+
```
|
|
1537
1753
|
|
|
1538
1754
|
### @newrelic/proxy
|
|
1539
1755
|
|
|
@@ -1762,7 +1978,7 @@ This product includes source derived from [@newrelic/test-utilities](https://git
|
|
|
1762
1978
|
|
|
1763
1979
|
### @octokit/rest
|
|
1764
1980
|
|
|
1765
|
-
This product includes source derived from [@octokit/rest](https://github.com/octokit/rest.js) ([v18.
|
|
1981
|
+
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
1982
|
|
|
1767
1983
|
```
|
|
1768
1984
|
The MIT License
|
|
@@ -1790,24 +2006,33 @@ THE SOFTWARE.
|
|
|
1790
2006
|
|
|
1791
2007
|
```
|
|
1792
2008
|
|
|
1793
|
-
###
|
|
2009
|
+
### ajv
|
|
1794
2010
|
|
|
1795
|
-
This product includes source derived from [
|
|
2011
|
+
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
2012
|
|
|
1797
2013
|
```
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
2014
|
+
The MIT License (MIT)
|
|
2015
|
+
|
|
2016
|
+
Copyright (c) 2015-2017 Evgeny Poberezkin
|
|
2017
|
+
|
|
2018
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2019
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2020
|
+
in the Software without restriction, including without limitation the rights
|
|
2021
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2022
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2023
|
+
furnished to do so, subject to the following conditions:
|
|
2024
|
+
|
|
2025
|
+
The above copyright notice and this permission notice shall be included in all
|
|
2026
|
+
copies or substantial portions of the Software.
|
|
2027
|
+
|
|
2028
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2029
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2030
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2031
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2032
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2033
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2034
|
+
SOFTWARE.
|
|
1807
2035
|
|
|
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
2036
|
|
|
1812
2037
|
```
|
|
1813
2038
|
|
|
@@ -1954,30 +2179,44 @@ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
|
1954
2179
|
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
1955
2180
|
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
1956
2181
|
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1957
|
-
```
|
|
1958
|
-
|
|
1959
|
-
### eslint-plugin-header
|
|
1960
|
-
|
|
1961
|
-
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):
|
|
1962
2182
|
|
|
1963
2183
|
```
|
|
1964
|
-
MIT License
|
|
1965
|
-
|
|
1966
|
-
Copyright (c) <year> <copyright holders>
|
|
1967
2184
|
|
|
1968
|
-
|
|
2185
|
+
### eslint-config-prettier
|
|
1969
2186
|
|
|
1970
|
-
|
|
2187
|
+
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):
|
|
1971
2188
|
|
|
1972
|
-
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.
|
|
1973
2189
|
```
|
|
2190
|
+
The MIT License (MIT)
|
|
1974
2191
|
|
|
1975
|
-
|
|
2192
|
+
Copyright (c) 2017, 2018, 2019, 2020, 2021 Simon Lydell and contributors
|
|
1976
2193
|
|
|
1977
|
-
|
|
2194
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2195
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2196
|
+
in the Software without restriction, including without limitation the rights
|
|
2197
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2198
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2199
|
+
furnished to do so, subject to the following conditions:
|
|
2200
|
+
|
|
2201
|
+
The above copyright notice and this permission notice shall be included in
|
|
2202
|
+
all copies or substantial portions of the Software.
|
|
2203
|
+
|
|
2204
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2205
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2206
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2207
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2208
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2209
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2210
|
+
THE SOFTWARE.
|
|
1978
2211
|
|
|
1979
2212
|
```
|
|
1980
|
-
|
|
2213
|
+
|
|
2214
|
+
### eslint-plugin-disable
|
|
2215
|
+
|
|
2216
|
+
This product includes source derived from [eslint-plugin-disable](https://github.com/mradionov/eslint-plugin-disable) ([v2.0.1](https://github.com/mradionov/eslint-plugin-disable/tree/v2.0.1)), distributed under the [MIT License](https://github.com/mradionov/eslint-plugin-disable/blob/v2.0.1/LICENSE):
|
|
2217
|
+
|
|
2218
|
+
```
|
|
2219
|
+
Copyright (c) 2015 Michael Radionov (https://github.com/mradionov)
|
|
1981
2220
|
|
|
1982
2221
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1983
2222
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -1991,7 +2230,7 @@ all copies or substantial portions of the Software.
|
|
|
1991
2230
|
|
|
1992
2231
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1993
2232
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1994
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2233
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1995
2234
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1996
2235
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1997
2236
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
@@ -1999,49 +2238,62 @@ THE SOFTWARE.
|
|
|
1999
2238
|
|
|
2000
2239
|
```
|
|
2001
2240
|
|
|
2002
|
-
###
|
|
2241
|
+
### eslint-plugin-header
|
|
2003
2242
|
|
|
2004
|
-
This product includes source derived from [
|
|
2243
|
+
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):
|
|
2005
2244
|
|
|
2006
2245
|
```
|
|
2007
|
-
|
|
2246
|
+
MIT License
|
|
2008
2247
|
|
|
2009
|
-
Copyright (c)
|
|
2010
|
-
Copyright (c) 2013-2014 Roman Shtylman <shtylman+expressjs@gmail.com>
|
|
2011
|
-
Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
2248
|
+
Copyright (c) <year> <copyright holders>
|
|
2012
2249
|
|
|
2013
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
2014
|
-
a copy of this software and associated documentation files (the
|
|
2015
|
-
'Software'), to deal in the Software without restriction, including
|
|
2016
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
|
2017
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2018
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
2019
|
-
the following conditions:
|
|
2250
|
+
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:
|
|
2020
2251
|
|
|
2021
|
-
The above copyright notice and this permission notice shall be
|
|
2022
|
-
included in all copies or substantial portions of the Software.
|
|
2252
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
2023
2253
|
|
|
2024
|
-
THE SOFTWARE IS PROVIDED
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2254
|
+
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.
|
|
2255
|
+
```
|
|
2256
|
+
|
|
2257
|
+
### eslint-plugin-jsdoc
|
|
2258
|
+
|
|
2259
|
+
This product includes source derived from [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) ([v36.1.0](https://github.com/gajus/eslint-plugin-jsdoc/tree/v36.1.0)), distributed under the [BSD-3-Clause License](https://github.com/gajus/eslint-plugin-jsdoc/blob/v36.1.0/LICENSE):
|
|
2031
2260
|
|
|
2032
2261
|
```
|
|
2262
|
+
Copyright (c) 2018, Gajus Kuizinas (http://gajus.com/)
|
|
2263
|
+
All rights reserved.
|
|
2033
2264
|
|
|
2034
|
-
|
|
2265
|
+
Redistribution and use in source and binary forms, with or without
|
|
2266
|
+
modification, are permitted provided that the following conditions are met:
|
|
2267
|
+
* Redistributions of source code must retain the above copyright
|
|
2268
|
+
notice, this list of conditions and the following disclaimer.
|
|
2269
|
+
* Redistributions in binary form must reproduce the above copyright
|
|
2270
|
+
notice, this list of conditions and the following disclaimer in the
|
|
2271
|
+
documentation and/or other materials provided with the distribution.
|
|
2272
|
+
* Neither the name of the Gajus Kuizinas (http://gajus.com/) nor the
|
|
2273
|
+
names of its contributors may be used to endorse or promote products
|
|
2274
|
+
derived from this software without specific prior written permission.
|
|
2035
2275
|
|
|
2036
|
-
|
|
2276
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
2277
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
2278
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
2279
|
+
DISCLAIMED. IN NO EVENT SHALL ANUARY BE LIABLE FOR ANY
|
|
2280
|
+
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
2281
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
2282
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
2283
|
+
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
2284
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
2285
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2037
2286
|
|
|
2038
2287
|
```
|
|
2039
|
-
MIT License
|
|
2040
2288
|
|
|
2041
|
-
|
|
2289
|
+
### eslint-plugin-node
|
|
2290
|
+
|
|
2291
|
+
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):
|
|
2042
2292
|
|
|
2043
|
-
|
|
2044
|
-
|
|
2293
|
+
```
|
|
2294
|
+
The MIT License (MIT)
|
|
2295
|
+
|
|
2296
|
+
Copyright (c) 2015 Toru Nagashima
|
|
2045
2297
|
|
|
2046
2298
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2047
2299
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -2061,6 +2313,98 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
2061
2313
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2062
2314
|
SOFTWARE.
|
|
2063
2315
|
|
|
2316
|
+
|
|
2317
|
+
```
|
|
2318
|
+
|
|
2319
|
+
### eslint-plugin-prettier
|
|
2320
|
+
|
|
2321
|
+
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):
|
|
2322
|
+
|
|
2323
|
+
```
|
|
2324
|
+
# The MIT License (MIT)
|
|
2325
|
+
|
|
2326
|
+
Copyright © 2017 Andres Suarez and Teddy Katz
|
|
2327
|
+
|
|
2328
|
+
Permission is hereby granted, free of charge, to any person
|
|
2329
|
+
obtaining a copy of this software and associated documentation
|
|
2330
|
+
files (the “Software”), to deal in the Software without
|
|
2331
|
+
restriction, including without limitation the rights to use,
|
|
2332
|
+
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2333
|
+
copies of the Software, and to permit persons to whom the
|
|
2334
|
+
Software is furnished to do so, subject to the following
|
|
2335
|
+
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
|
|
2342
|
+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
2343
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
2344
|
+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
2345
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
2346
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
2347
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
|
2348
|
+
|
|
2349
|
+
```
|
|
2350
|
+
|
|
2351
|
+
### eslint
|
|
2352
|
+
|
|
2353
|
+
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):
|
|
2354
|
+
|
|
2355
|
+
```
|
|
2356
|
+
Copyright JS Foundation and other contributors, https://js.foundation
|
|
2357
|
+
|
|
2358
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2359
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2360
|
+
in the Software without restriction, including without limitation the rights
|
|
2361
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2362
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2363
|
+
furnished to do so, subject to the following conditions:
|
|
2364
|
+
|
|
2365
|
+
The above copyright notice and this permission notice shall be included in
|
|
2366
|
+
all copies or substantial portions of the Software.
|
|
2367
|
+
|
|
2368
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2369
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2370
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2371
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2372
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2373
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2374
|
+
THE SOFTWARE.
|
|
2375
|
+
|
|
2376
|
+
```
|
|
2377
|
+
|
|
2378
|
+
### express
|
|
2379
|
+
|
|
2380
|
+
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):
|
|
2381
|
+
|
|
2382
|
+
```
|
|
2383
|
+
(The MIT License)
|
|
2384
|
+
|
|
2385
|
+
Copyright (c) 2009-2014 TJ Holowaychuk <tj@vision-media.ca>
|
|
2386
|
+
Copyright (c) 2013-2014 Roman Shtylman <shtylman+expressjs@gmail.com>
|
|
2387
|
+
Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
2388
|
+
|
|
2389
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
2390
|
+
a copy of this software and associated documentation files (the
|
|
2391
|
+
'Software'), to deal in the Software without restriction, including
|
|
2392
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
2393
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2394
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
2395
|
+
the following conditions:
|
|
2396
|
+
|
|
2397
|
+
The above copyright notice and this permission notice shall be
|
|
2398
|
+
included in all copies or substantial portions of the Software.
|
|
2399
|
+
|
|
2400
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
2401
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2402
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2403
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
2404
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
2405
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
2406
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2407
|
+
|
|
2064
2408
|
```
|
|
2065
2409
|
|
|
2066
2410
|
### generic-pool
|
|
@@ -2125,37 +2469,6 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
2125
2469
|
|
|
2126
2470
|
```
|
|
2127
2471
|
|
|
2128
|
-
### http-errors
|
|
2129
|
-
|
|
2130
|
-
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):
|
|
2131
|
-
|
|
2132
|
-
```
|
|
2133
|
-
|
|
2134
|
-
The MIT License (MIT)
|
|
2135
|
-
|
|
2136
|
-
Copyright (c) 2014 Jonathan Ong me@jongleberry.com
|
|
2137
|
-
Copyright (c) 2016 Douglas Christopher Wilson doug@somethingdoug.com
|
|
2138
|
-
|
|
2139
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2140
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
2141
|
-
in the Software without restriction, including without limitation the rights
|
|
2142
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2143
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
2144
|
-
furnished to do so, subject to the following conditions:
|
|
2145
|
-
|
|
2146
|
-
The above copyright notice and this permission notice shall be included in
|
|
2147
|
-
all copies or substantial portions of the Software.
|
|
2148
|
-
|
|
2149
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2150
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2151
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2152
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2153
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2154
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2155
|
-
THE SOFTWARE.
|
|
2156
|
-
|
|
2157
|
-
```
|
|
2158
|
-
|
|
2159
2472
|
### husky
|
|
2160
2473
|
|
|
2161
2474
|
This product includes source derived from [husky](https://github.com/typicode/husky) ([v6.0.0](https://github.com/typicode/husky/tree/v6.0.0)), distributed under the [MIT License](https://github.com/typicode/husky/blob/v6.0.0/LICENSE):
|
|
@@ -2297,7 +2610,7 @@ https://github.com/jmblog/color-themes-for-google-code-prettify
|
|
|
2297
2610
|
|
|
2298
2611
|
### lint-staged
|
|
2299
2612
|
|
|
2300
|
-
This product includes source derived from [lint-staged](https://github.com/okonet/lint-staged) ([v11.1.
|
|
2613
|
+
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):
|
|
2301
2614
|
|
|
2302
2615
|
```
|
|
2303
2616
|
The MIT License (MIT)
|
|
@@ -2421,7 +2734,7 @@ https://github.com/jsdoc3/jsdoc
|
|
|
2421
2734
|
|
|
2422
2735
|
### mongodb
|
|
2423
2736
|
|
|
2424
|
-
This product includes source derived from [mongodb](https://github.com/mongodb/node-mongodb-native) ([v3.6.
|
|
2737
|
+
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):
|
|
2425
2738
|
|
|
2426
2739
|
```
|
|
2427
2740
|
Apache License
|
|
@@ -2683,12 +2996,27 @@ SOFTWARE.
|
|
|
2683
2996
|
|
|
2684
2997
|
```
|
|
2685
2998
|
|
|
2999
|
+
### prettier
|
|
3000
|
+
|
|
3001
|
+
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):
|
|
3002
|
+
|
|
3003
|
+
```
|
|
3004
|
+
Copyright © James Long and contributors
|
|
3005
|
+
|
|
3006
|
+
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:
|
|
3007
|
+
|
|
3008
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
3009
|
+
|
|
3010
|
+
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.
|
|
3011
|
+
|
|
3012
|
+
```
|
|
3013
|
+
|
|
2686
3014
|
### proxyquire
|
|
2687
3015
|
|
|
2688
3016
|
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):
|
|
2689
3017
|
|
|
2690
3018
|
```
|
|
2691
|
-
Copyright 2013 Thorsten Lorenz.
|
|
3019
|
+
Copyright 2013 Thorsten Lorenz.
|
|
2692
3020
|
All rights reserved.
|
|
2693
3021
|
|
|
2694
3022
|
Permission is hereby granted, free of charge, to any person
|
|
@@ -2847,29 +3175,6 @@ THE SOFTWARE
|
|
|
2847
3175
|
|
|
2848
3176
|
### rimraf
|
|
2849
3177
|
|
|
2850
|
-
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):
|
|
2851
|
-
|
|
2852
|
-
```
|
|
2853
|
-
The ISC License
|
|
2854
|
-
|
|
2855
|
-
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
2856
|
-
|
|
2857
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
|
2858
|
-
purpose with or without fee is hereby granted, provided that the above
|
|
2859
|
-
copyright notice and this permission notice appear in all copies.
|
|
2860
|
-
|
|
2861
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
2862
|
-
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
2863
|
-
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
2864
|
-
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
2865
|
-
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
2866
|
-
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
2867
|
-
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
2868
|
-
|
|
2869
|
-
```
|
|
2870
|
-
|
|
2871
|
-
### rimraf
|
|
2872
|
-
|
|
2873
3178
|
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):
|
|
2874
3179
|
|
|
2875
3180
|
```
|
|
@@ -3005,38 +3310,6 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
3005
3310
|
|
|
3006
3311
|
```
|
|
3007
3312
|
|
|
3008
|
-
### through
|
|
3009
|
-
|
|
3010
|
-
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):
|
|
3011
|
-
|
|
3012
|
-
```
|
|
3013
|
-
The MIT License
|
|
3014
|
-
|
|
3015
|
-
Copyright (c) 2011 Dominic Tarr
|
|
3016
|
-
|
|
3017
|
-
Permission is hereby granted, free of charge,
|
|
3018
|
-
to any person obtaining a copy of this software and
|
|
3019
|
-
associated documentation files (the "Software"), to
|
|
3020
|
-
deal in the Software without restriction, including
|
|
3021
|
-
without limitation the rights to use, copy, modify,
|
|
3022
|
-
merge, publish, distribute, sublicense, and/or sell
|
|
3023
|
-
copies of the Software, and to permit persons to whom
|
|
3024
|
-
the Software is furnished to do so,
|
|
3025
|
-
subject to the following conditions:
|
|
3026
|
-
|
|
3027
|
-
The above copyright notice and this permission notice
|
|
3028
|
-
shall be included in all copies or substantial portions of the Software.
|
|
3029
|
-
|
|
3030
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
3031
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
3032
|
-
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3033
|
-
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
|
|
3034
|
-
ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
3035
|
-
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
3036
|
-
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3037
|
-
|
|
3038
|
-
```
|
|
3039
|
-
|
|
3040
3313
|
### when
|
|
3041
3314
|
|
|
3042
3315
|
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):
|
|
@@ -3069,9 +3342,220 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
3069
3342
|
```
|
|
3070
3343
|
|
|
3071
3344
|
|
|
3072
|
-
##
|
|
3345
|
+
## optionalDependencies
|
|
3346
|
+
|
|
3347
|
+
### @newrelic/native-metrics
|
|
3348
|
+
|
|
3349
|
+
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):
|
|
3350
|
+
|
|
3351
|
+
```
|
|
3352
|
+
Apache License
|
|
3353
|
+
Version 2.0, January 2004
|
|
3354
|
+
http://www.apache.org/licenses/
|
|
3355
|
+
|
|
3356
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
3357
|
+
|
|
3358
|
+
1. Definitions.
|
|
3359
|
+
|
|
3360
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
3361
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
3362
|
+
|
|
3363
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
3364
|
+
the copyright owner that is granting the License.
|
|
3365
|
+
|
|
3366
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
3367
|
+
other entities that control, are controlled by, or are under common
|
|
3368
|
+
control with that entity. For the purposes of this definition,
|
|
3369
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
3370
|
+
direction or management of such entity, whether by contract or
|
|
3371
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
3372
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
3373
|
+
|
|
3374
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
3375
|
+
exercising permissions granted by this License.
|
|
3376
|
+
|
|
3377
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
3378
|
+
including but not limited to software source code, documentation
|
|
3379
|
+
source, and configuration files.
|
|
3380
|
+
|
|
3381
|
+
"Object" form shall mean any form resulting from mechanical
|
|
3382
|
+
transformation or translation of a Source form, including but
|
|
3383
|
+
not limited to compiled object code, generated documentation,
|
|
3384
|
+
and conversions to other media types.
|
|
3385
|
+
|
|
3386
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
3387
|
+
Object form, made available under the License, as indicated by a
|
|
3388
|
+
copyright notice that is included in or attached to the work
|
|
3389
|
+
(an example is provided in the Appendix below).
|
|
3390
|
+
|
|
3391
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
3392
|
+
form, that is based on (or derived from) the Work and for which the
|
|
3393
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
3394
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
3395
|
+
of this License, Derivative Works shall not include works that remain
|
|
3396
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
3397
|
+
the Work and Derivative Works thereof.
|
|
3398
|
+
|
|
3399
|
+
"Contribution" shall mean any work of authorship, including
|
|
3400
|
+
the original version of the Work and any modifications or additions
|
|
3401
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
3402
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
3403
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
3404
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
3405
|
+
means any form of electronic, verbal, or written communication sent
|
|
3406
|
+
to the Licensor or its representatives, including but not limited to
|
|
3407
|
+
communication on electronic mailing lists, source code control systems,
|
|
3408
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
3409
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
3410
|
+
excluding communication that is conspicuously marked or otherwise
|
|
3411
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
3412
|
+
|
|
3413
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
3414
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
3415
|
+
subsequently incorporated within the Work.
|
|
3416
|
+
|
|
3417
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
3418
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
3419
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
3420
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
3421
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
3422
|
+
Work and such Derivative Works in Source or Object form.
|
|
3423
|
+
|
|
3424
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
3425
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
3426
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
3427
|
+
(except as stated in this section) patent license to make, have made,
|
|
3428
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
3429
|
+
where such license applies only to those patent claims licensable
|
|
3430
|
+
by such Contributor that are necessarily infringed by their
|
|
3431
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
3432
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
3433
|
+
institute patent litigation against any entity (including a
|
|
3434
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
3435
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
3436
|
+
or contributory patent infringement, then any patent licenses
|
|
3437
|
+
granted to You under this License for that Work shall terminate
|
|
3438
|
+
as of the date such litigation is filed.
|
|
3439
|
+
|
|
3440
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
3441
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
3442
|
+
modifications, and in Source or Object form, provided that You
|
|
3443
|
+
meet the following conditions:
|
|
3444
|
+
|
|
3445
|
+
(a) You must give any other recipients of the Work or
|
|
3446
|
+
Derivative Works a copy of this License; and
|
|
3447
|
+
|
|
3448
|
+
(b) You must cause any modified files to carry prominent notices
|
|
3449
|
+
stating that You changed the files; and
|
|
3450
|
+
|
|
3451
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
3452
|
+
that You distribute, all copyright, patent, trademark, and
|
|
3453
|
+
attribution notices from the Source form of the Work,
|
|
3454
|
+
excluding those notices that do not pertain to any part of
|
|
3455
|
+
the Derivative Works; and
|
|
3456
|
+
|
|
3457
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
3458
|
+
distribution, then any Derivative Works that You distribute must
|
|
3459
|
+
include a readable copy of the attribution notices contained
|
|
3460
|
+
within such NOTICE file, excluding those notices that do not
|
|
3461
|
+
pertain to any part of the Derivative Works, in at least one
|
|
3462
|
+
of the following places: within a NOTICE text file distributed
|
|
3463
|
+
as part of the Derivative Works; within the Source form or
|
|
3464
|
+
documentation, if provided along with the Derivative Works; or,
|
|
3465
|
+
within a display generated by the Derivative Works, if and
|
|
3466
|
+
wherever such third-party notices normally appear. The contents
|
|
3467
|
+
of the NOTICE file are for informational purposes only and
|
|
3468
|
+
do not modify the License. You may add Your own attribution
|
|
3469
|
+
notices within Derivative Works that You distribute, alongside
|
|
3470
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
3471
|
+
that such additional attribution notices cannot be construed
|
|
3472
|
+
as modifying the License.
|
|
3473
|
+
|
|
3474
|
+
You may add Your own copyright statement to Your modifications and
|
|
3475
|
+
may provide additional or different license terms and conditions
|
|
3476
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
3477
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
3478
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
3479
|
+
the conditions stated in this License.
|
|
3480
|
+
|
|
3481
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
3482
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
3483
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
3484
|
+
this License, without any additional terms or conditions.
|
|
3485
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
3486
|
+
the terms of any separate license agreement you may have executed
|
|
3487
|
+
with Licensor regarding such Contributions.
|
|
3488
|
+
|
|
3489
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
3490
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
3491
|
+
except as required for reasonable and customary use in describing the
|
|
3492
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
3493
|
+
|
|
3494
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
3495
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
3496
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
3497
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
3498
|
+
implied, including, without limitation, any warranties or conditions
|
|
3499
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
3500
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
3501
|
+
appropriateness of using or redistributing the Work and assume any
|
|
3502
|
+
risks associated with Your exercise of permissions under this License.
|
|
3503
|
+
|
|
3504
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
3505
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
3506
|
+
unless required by applicable law (such as deliberate and grossly
|
|
3507
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
3508
|
+
liable to You for damages, including any direct, indirect, special,
|
|
3509
|
+
incidental, or consequential damages of any character arising as a
|
|
3510
|
+
result of this License or out of the use or inability to use the
|
|
3511
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
3512
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
3513
|
+
other commercial damages or losses), even if such Contributor
|
|
3514
|
+
has been advised of the possibility of such damages.
|
|
3515
|
+
|
|
3516
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
3517
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
3518
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
3519
|
+
or other liability obligations and/or rights consistent with this
|
|
3520
|
+
License. However, in accepting such obligations, You may act only
|
|
3521
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
3522
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
3523
|
+
defend, and hold each Contributor harmless for any liability
|
|
3524
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
3525
|
+
of your accepting any such warranty or additional liability.
|
|
3526
|
+
|
|
3527
|
+
END OF TERMS AND CONDITIONS
|
|
3073
3528
|
|
|
3074
|
-
|
|
3529
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
3530
|
+
|
|
3531
|
+
To apply the Apache License to your work, attach the following
|
|
3532
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
3533
|
+
replaced with your own identifying information. (Don't include
|
|
3534
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
3535
|
+
comment syntax for the file format. We also recommend that a
|
|
3536
|
+
file or class name and description of purpose be included on the
|
|
3537
|
+
same "printed page" as the copyright notice for easier
|
|
3538
|
+
identification within third-party archives.
|
|
3539
|
+
|
|
3540
|
+
Copyright [yyyy] [name of copyright owner]
|
|
3541
|
+
|
|
3542
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
3543
|
+
you may not use this file except in compliance with the License.
|
|
3544
|
+
You may obtain a copy of the License at
|
|
3545
|
+
|
|
3546
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
3547
|
+
|
|
3548
|
+
Unless required by applicable law or agreed to in writing, software
|
|
3549
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
3550
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
3551
|
+
See the License for the specific language governing permissions and
|
|
3552
|
+
limitations under the License.
|
|
3553
|
+
|
|
3554
|
+
```
|
|
3555
|
+
|
|
3556
|
+
## Additional Licenses
|
|
3557
|
+
|
|
3558
|
+
### Symantec
|
|
3075
3559
|
|
|
3076
3560
|
This product includes certificates from Symantec which are used under the
|
|
3077
3561
|
following license (https://docs.broadcom.com/doc/root-certificate-license-agreement-en):
|
|
@@ -3273,4 +3757,5 @@ Root Certificate License Agreement v3.0 (January 2014)
|
|
|
3273
3757
|
Portions copyright Node.js contributors. Depending on your existing libraries and package management settings,
|
|
3274
3758
|
your systems may call externally maintained libraries in addition to those listed above.
|
|
3275
3759
|
See [here](https://nodejs.org/en/docs/meta/topics/dependencies/) and [here](https://github.com/nodejs/node/blob/v4.3.1/LICENSE)
|
|
3276
|
-
for additional details regarding externally maintained libraries and certain related licenses and notices
|
|
3760
|
+
for additional details regarding externally maintained libraries and certain related licenses and notices.
|
|
3761
|
+
|