@cyberismo/backend 0.0.8 → 0.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/app.js +22 -8
- package/dist/app.js.map +1 -1
- package/dist/common/validationSchemas.js +39 -0
- package/dist/common/validationSchemas.js.map +1 -0
- package/dist/domain/calculations/index.js +102 -0
- package/dist/domain/calculations/index.js.map +1 -0
- package/dist/domain/calculations/schema.js +24 -0
- package/dist/domain/calculations/schema.js.map +1 -0
- package/dist/domain/calculations/service.js +21 -0
- package/dist/domain/calculations/service.js.map +1 -0
- package/dist/domain/cardTypes/index.js +86 -0
- package/dist/domain/cardTypes/index.js.map +1 -0
- package/dist/domain/cardTypes/schema.js +19 -0
- package/dist/domain/cardTypes/schema.js.map +1 -0
- package/dist/domain/cardTypes/service.js +20 -0
- package/dist/domain/cardTypes/service.js.map +1 -0
- package/dist/{routes/cards.js → domain/cards/index.js} +52 -223
- package/dist/domain/cards/index.js.map +1 -0
- package/dist/domain/cards/lib.js +80 -0
- package/dist/domain/cards/lib.js.map +1 -0
- package/dist/domain/cards/service.js +178 -0
- package/dist/domain/cards/service.js.map +1 -0
- package/dist/domain/fieldTypes/index.js +87 -0
- package/dist/domain/fieldTypes/index.js.map +1 -0
- package/dist/domain/fieldTypes/schema.js +30 -0
- package/dist/domain/fieldTypes/schema.js.map +1 -0
- package/dist/domain/fieldTypes/service.js +24 -0
- package/dist/domain/fieldTypes/service.js.map +1 -0
- package/dist/domain/graphModels/index.js +50 -0
- package/dist/domain/graphModels/index.js.map +1 -0
- package/dist/domain/graphModels/schema.js +18 -0
- package/dist/domain/graphModels/schema.js.map +1 -0
- package/dist/domain/graphModels/service.js +16 -0
- package/dist/domain/graphModels/service.js.map +1 -0
- package/dist/domain/graphViews/index.js +50 -0
- package/dist/domain/graphViews/index.js.map +1 -0
- package/dist/domain/graphViews/schema.js +6 -0
- package/dist/domain/graphViews/schema.js.map +1 -0
- package/dist/domain/graphViews/service.js +16 -0
- package/dist/domain/graphViews/service.js.map +1 -0
- package/dist/domain/linkTypes/index.js +76 -0
- package/dist/domain/linkTypes/index.js.map +1 -0
- package/dist/domain/linkTypes/schema.js +18 -0
- package/dist/domain/linkTypes/schema.js.map +1 -0
- package/dist/domain/linkTypes/service.js +24 -0
- package/dist/domain/linkTypes/service.js.map +1 -0
- package/dist/domain/logicPrograms/index.js +25 -0
- package/dist/domain/logicPrograms/index.js.map +1 -0
- package/dist/domain/logicPrograms/service.js +9 -0
- package/dist/domain/logicPrograms/service.js.map +1 -0
- package/dist/domain/reports/index.js +50 -0
- package/dist/domain/reports/index.js.map +1 -0
- package/dist/domain/reports/schema.js +18 -0
- package/dist/domain/reports/schema.js.map +1 -0
- package/dist/domain/reports/service.js +16 -0
- package/dist/domain/reports/service.js.map +1 -0
- package/dist/domain/resources/index.js +128 -0
- package/dist/domain/resources/index.js.map +1 -0
- package/dist/domain/resources/schema.js +9 -0
- package/dist/domain/resources/schema.js.map +1 -0
- package/dist/domain/resources/service.js +258 -0
- package/dist/domain/resources/service.js.map +1 -0
- package/dist/domain/templates/index.js +81 -0
- package/dist/domain/templates/index.js.map +1 -0
- package/dist/domain/templates/schema.js +18 -0
- package/dist/domain/templates/schema.js.map +1 -0
- package/dist/domain/templates/service.js +23 -0
- package/dist/domain/templates/service.js.map +1 -0
- package/dist/domain/tree/index.js +44 -0
- package/dist/domain/tree/index.js.map +1 -0
- package/dist/domain/tree/service.js +17 -0
- package/dist/domain/tree/service.js.map +1 -0
- package/dist/domain/workflows/index.js +50 -0
- package/dist/domain/workflows/index.js.map +1 -0
- package/dist/domain/workflows/schema.js +18 -0
- package/dist/domain/workflows/schema.js.map +1 -0
- package/dist/domain/workflows/service.js +16 -0
- package/dist/domain/workflows/service.js.map +1 -0
- package/dist/export.js +3 -3
- package/dist/export.js.map +1 -1
- package/dist/middleware/zvalidator.js +8 -0
- package/dist/middleware/zvalidator.js.map +1 -0
- package/dist/public/THIRD-PARTY.txt +2452 -296
- package/dist/public/assets/index-jhDO7xT5.js +161493 -0
- package/dist/public/cropped-favicon-180x180.png +0 -0
- package/dist/public/cropped-favicon-192x192.png +0 -0
- package/dist/public/cropped-favicon-270x270.png +0 -0
- package/dist/public/cropped-favicon-32x32.png +0 -0
- package/dist/public/index.html +8 -1
- package/dist/types.js +14 -0
- package/dist/types.js.map +1 -0
- package/dist/utils.js +3 -1
- package/dist/utils.js.map +1 -1
- package/package.json +7 -3
- package/src/app.ts +22 -8
- package/src/common/validationSchemas.ts +46 -0
- package/src/domain/calculations/index.ts +121 -0
- package/src/domain/calculations/schema.ts +27 -0
- package/src/domain/calculations/service.ts +32 -0
- package/src/domain/cardTypes/index.ts +96 -0
- package/src/domain/cardTypes/schema.ts +19 -0
- package/src/domain/cardTypes/service.ts +28 -0
- package/src/{routes/cards.ts → domain/cards/index.ts} +82 -270
- package/src/domain/cards/lib.ts +103 -0
- package/src/domain/cards/service.ts +254 -0
- package/src/domain/fieldTypes/index.ts +97 -0
- package/src/domain/fieldTypes/schema.ts +30 -0
- package/src/domain/fieldTypes/service.ts +38 -0
- package/src/domain/graphModels/index.ts +54 -0
- package/src/domain/graphModels/schema.ts +18 -0
- package/src/domain/graphModels/service.ts +21 -0
- package/src/domain/graphViews/index.ts +53 -0
- package/src/domain/graphViews/schema.ts +6 -0
- package/src/domain/graphViews/service.ts +20 -0
- package/src/domain/linkTypes/index.ts +84 -0
- package/src/domain/linkTypes/schema.ts +19 -0
- package/src/domain/linkTypes/service.ts +34 -0
- package/src/domain/logicPrograms/index.ts +35 -0
- package/src/domain/logicPrograms/service.ts +25 -0
- package/src/domain/reports/index.ts +54 -0
- package/src/domain/reports/schema.ts +19 -0
- package/src/domain/reports/service.ts +21 -0
- package/src/domain/resources/index.ts +166 -0
- package/src/domain/resources/schema.ts +19 -0
- package/src/domain/resources/service.ts +436 -0
- package/src/domain/templates/index.ts +89 -0
- package/src/domain/templates/schema.ts +19 -0
- package/src/domain/templates/service.ts +29 -0
- package/src/domain/tree/index.ts +50 -0
- package/src/domain/tree/service.ts +22 -0
- package/src/domain/workflows/index.ts +54 -0
- package/src/domain/workflows/schema.ts +19 -0
- package/src/domain/workflows/service.ts +21 -0
- package/src/export.ts +9 -5
- package/src/middleware/commandManager.ts +1 -1
- package/src/middleware/zvalidator.ts +17 -0
- package/src/types.ts +20 -0
- package/src/utils.ts +4 -2
- package/dist/public/assets/index-D5kiRHuF.js +0 -111171
- package/dist/routes/cards.js.map +0 -1
- package/dist/routes/fieldTypes.js +0 -42
- package/dist/routes/fieldTypes.js.map +0 -1
- package/dist/routes/linkTypes.js +0 -42
- package/dist/routes/linkTypes.js.map +0 -1
- package/dist/routes/templates.js +0 -46
- package/dist/routes/templates.js.map +0 -1
- package/dist/routes/tree.js +0 -40
- package/dist/routes/tree.js.map +0 -1
- package/src/routes/fieldTypes.ts +0 -53
- package/src/routes/linkTypes.ts +0 -53
- package/src/routes/templates.ts +0 -52
- package/src/routes/tree.ts +0 -45
|
@@ -100,46 +100,8 @@ SOFTWARE.
|
|
|
100
100
|
|
|
101
101
|
---
|
|
102
102
|
|
|
103
|
-
Name: cookie
|
|
104
|
-
Version: 1.0.2
|
|
105
|
-
License: MIT
|
|
106
|
-
Private: false
|
|
107
|
-
Description: HTTP server cookie parsing and serialization
|
|
108
|
-
Repository: undefined
|
|
109
|
-
Author: Roman Shtylman <shtylman@gmail.com>
|
|
110
|
-
Contributors:
|
|
111
|
-
Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
112
|
-
License Copyright:
|
|
113
|
-
===
|
|
114
|
-
|
|
115
|
-
(The MIT License)
|
|
116
|
-
|
|
117
|
-
Copyright (c) 2012-2014 Roman Shtylman <shtylman@gmail.com>
|
|
118
|
-
Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
119
|
-
|
|
120
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
121
|
-
a copy of this software and associated documentation files (the
|
|
122
|
-
'Software'), to deal in the Software without restriction, including
|
|
123
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
|
124
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
|
125
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
126
|
-
the following conditions:
|
|
127
|
-
|
|
128
|
-
The above copyright notice and this permission notice shall be
|
|
129
|
-
included in all copies or substantial portions of the Software.
|
|
130
|
-
|
|
131
|
-
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
132
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
133
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
134
|
-
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
135
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
136
|
-
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
137
|
-
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
138
|
-
|
|
139
|
-
---
|
|
140
|
-
|
|
141
103
|
Name: react-router
|
|
142
|
-
Version: 7.
|
|
104
|
+
Version: 7.7.1
|
|
143
105
|
License: MIT
|
|
144
106
|
Private: false
|
|
145
107
|
Description: Declarative routing for React
|
|
@@ -174,52 +136,6 @@ SOFTWARE.
|
|
|
174
136
|
|
|
175
137
|
---
|
|
176
138
|
|
|
177
|
-
Name: react-hook-form
|
|
178
|
-
Version: 7.57.0
|
|
179
|
-
License: MIT
|
|
180
|
-
Private: false
|
|
181
|
-
Description: Performant, flexible and extensible forms library for React Hooks
|
|
182
|
-
Repository: https://github.com/react-hook-form/react-hook-form
|
|
183
|
-
Homepage: https://react-hook-form.com
|
|
184
|
-
Author: Beier <bluebill1049@hotmail.com> (Bill Luo)
|
|
185
|
-
License Copyright:
|
|
186
|
-
===
|
|
187
|
-
|
|
188
|
-
MIT License
|
|
189
|
-
|
|
190
|
-
Copyright (c) 2019-present Beier(Bill) Luo
|
|
191
|
-
|
|
192
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
193
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
194
|
-
in the Software without restriction, including without limitation the rights
|
|
195
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
196
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
197
|
-
furnished to do so, subject to the following conditions:
|
|
198
|
-
|
|
199
|
-
The above copyright notice and this permission notice shall be included in all
|
|
200
|
-
copies or substantial portions of the Software.
|
|
201
|
-
|
|
202
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
203
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
204
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
205
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
206
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
207
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
208
|
-
SOFTWARE.
|
|
209
|
-
|
|
210
|
-
---
|
|
211
|
-
|
|
212
|
-
Name: @cyberismo/data-handler
|
|
213
|
-
Version: 0.0.8
|
|
214
|
-
License: AGPL-3.0
|
|
215
|
-
Private: false
|
|
216
|
-
Description: Command handler for cards and web service
|
|
217
|
-
Repository: git+https://github.com/CyberismoCom/cyberismo.git
|
|
218
|
-
Homepage: https://github.com/CyberismoCom/cyberismo
|
|
219
|
-
Author: sami.merila@cyberismo.com
|
|
220
|
-
|
|
221
|
-
---
|
|
222
|
-
|
|
223
139
|
Name: @mui/joy
|
|
224
140
|
Version: 5.0.0-beta.52
|
|
225
141
|
License: MIT
|
|
@@ -291,7 +207,7 @@ SOFTWARE.
|
|
|
291
207
|
---
|
|
292
208
|
|
|
293
209
|
Name: @babel/runtime
|
|
294
|
-
Version: 7.
|
|
210
|
+
Version: 7.28.2
|
|
295
211
|
License: MIT
|
|
296
212
|
Private: false
|
|
297
213
|
Description: babel's modular runtime helpers
|
|
@@ -800,6 +716,40 @@ SOFTWARE.
|
|
|
800
716
|
|
|
801
717
|
---
|
|
802
718
|
|
|
719
|
+
Name: prop-types
|
|
720
|
+
Version: 15.8.1
|
|
721
|
+
License: MIT
|
|
722
|
+
Private: false
|
|
723
|
+
Description: Runtime type checking for React props and similar objects.
|
|
724
|
+
Repository: undefined
|
|
725
|
+
Homepage: https://facebook.github.io/react/
|
|
726
|
+
License Copyright:
|
|
727
|
+
===
|
|
728
|
+
|
|
729
|
+
MIT License
|
|
730
|
+
|
|
731
|
+
Copyright (c) 2013-present, Facebook, Inc.
|
|
732
|
+
|
|
733
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
734
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
735
|
+
in the Software without restriction, including without limitation the rights
|
|
736
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
737
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
738
|
+
furnished to do so, subject to the following conditions:
|
|
739
|
+
|
|
740
|
+
The above copyright notice and this permission notice shall be included in all
|
|
741
|
+
copies or substantial portions of the Software.
|
|
742
|
+
|
|
743
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
744
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
745
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
746
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
747
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
748
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
749
|
+
SOFTWARE.
|
|
750
|
+
|
|
751
|
+
---
|
|
752
|
+
|
|
803
753
|
Name: @mui/styled-engine
|
|
804
754
|
Version: 5.16.14
|
|
805
755
|
License: MIT
|
|
@@ -1375,20 +1325,19 @@ SOFTWARE.
|
|
|
1375
1325
|
|
|
1376
1326
|
---
|
|
1377
1327
|
|
|
1378
|
-
Name:
|
|
1379
|
-
Version:
|
|
1328
|
+
Name: swr
|
|
1329
|
+
Version: 2.3.3
|
|
1380
1330
|
License: MIT
|
|
1381
1331
|
Private: false
|
|
1382
|
-
Description:
|
|
1383
|
-
Repository:
|
|
1384
|
-
Homepage: https://
|
|
1385
|
-
Author: MUI Team
|
|
1332
|
+
Description: React Hooks library for remote data fetching
|
|
1333
|
+
Repository: undefined
|
|
1334
|
+
Homepage: https://swr.vercel.app
|
|
1386
1335
|
License Copyright:
|
|
1387
1336
|
===
|
|
1388
1337
|
|
|
1389
|
-
|
|
1338
|
+
MIT License
|
|
1390
1339
|
|
|
1391
|
-
Copyright (c)
|
|
1340
|
+
Copyright (c) 2023 Vercel, Inc.
|
|
1392
1341
|
|
|
1393
1342
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1394
1343
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -1410,20 +1359,19 @@ SOFTWARE.
|
|
|
1410
1359
|
|
|
1411
1360
|
---
|
|
1412
1361
|
|
|
1413
|
-
Name:
|
|
1414
|
-
Version:
|
|
1362
|
+
Name: dequal
|
|
1363
|
+
Version: 2.0.3
|
|
1415
1364
|
License: MIT
|
|
1416
1365
|
Private: false
|
|
1417
|
-
Description:
|
|
1418
|
-
Repository:
|
|
1419
|
-
|
|
1420
|
-
Author: MUI Team
|
|
1366
|
+
Description: A tiny (304B to 489B) utility for check for deep equality
|
|
1367
|
+
Repository: undefined
|
|
1368
|
+
Author: Luke Edwards <luke.edwards05@gmail.com> (https://lukeed.com)
|
|
1421
1369
|
License Copyright:
|
|
1422
1370
|
===
|
|
1423
1371
|
|
|
1424
1372
|
The MIT License (MIT)
|
|
1425
1373
|
|
|
1426
|
-
Copyright (c)
|
|
1374
|
+
Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)
|
|
1427
1375
|
|
|
1428
1376
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1429
1377
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -1432,32 +1380,33 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
1432
1380
|
copies of the Software, and to permit persons to whom the Software is
|
|
1433
1381
|
furnished to do so, subject to the following conditions:
|
|
1434
1382
|
|
|
1435
|
-
The above copyright notice and this permission notice shall be included in
|
|
1436
|
-
copies or substantial portions of the Software.
|
|
1383
|
+
The above copyright notice and this permission notice shall be included in
|
|
1384
|
+
all copies or substantial portions of the Software.
|
|
1437
1385
|
|
|
1438
1386
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1439
1387
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1440
1388
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1441
1389
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1442
1390
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1443
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1444
|
-
SOFTWARE.
|
|
1391
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1392
|
+
THE SOFTWARE.
|
|
1445
1393
|
|
|
1446
1394
|
---
|
|
1447
1395
|
|
|
1448
|
-
Name:
|
|
1449
|
-
Version:
|
|
1396
|
+
Name: react-hook-form
|
|
1397
|
+
Version: 7.57.0
|
|
1450
1398
|
License: MIT
|
|
1451
1399
|
Private: false
|
|
1452
|
-
Description:
|
|
1453
|
-
Repository:
|
|
1454
|
-
Homepage: https://
|
|
1400
|
+
Description: Performant, flexible and extensible forms library for React Hooks
|
|
1401
|
+
Repository: https://github.com/react-hook-form/react-hook-form
|
|
1402
|
+
Homepage: https://react-hook-form.com
|
|
1403
|
+
Author: Beier <bluebill1049@hotmail.com> (Bill Luo)
|
|
1455
1404
|
License Copyright:
|
|
1456
1405
|
===
|
|
1457
1406
|
|
|
1458
1407
|
MIT License
|
|
1459
1408
|
|
|
1460
|
-
Copyright (c)
|
|
1409
|
+
Copyright (c) 2019-present Beier(Bill) Luo
|
|
1461
1410
|
|
|
1462
1411
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1463
1412
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -1479,37 +1428,14 @@ SOFTWARE.
|
|
|
1479
1428
|
|
|
1480
1429
|
---
|
|
1481
1430
|
|
|
1482
|
-
Name:
|
|
1483
|
-
Version:
|
|
1484
|
-
License:
|
|
1431
|
+
Name: @cyberismo/data-handler
|
|
1432
|
+
Version: 0.0.10
|
|
1433
|
+
License: AGPL-3.0
|
|
1485
1434
|
Private: false
|
|
1486
|
-
Description:
|
|
1487
|
-
Repository:
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
===
|
|
1491
|
-
|
|
1492
|
-
The MIT License (MIT)
|
|
1493
|
-
|
|
1494
|
-
Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)
|
|
1495
|
-
|
|
1496
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1497
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
1498
|
-
in the Software without restriction, including without limitation the rights
|
|
1499
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1500
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
1501
|
-
furnished to do so, subject to the following conditions:
|
|
1502
|
-
|
|
1503
|
-
The above copyright notice and this permission notice shall be included in
|
|
1504
|
-
all copies or substantial portions of the Software.
|
|
1505
|
-
|
|
1506
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1507
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1508
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1509
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1510
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1511
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1512
|
-
THE SOFTWARE.
|
|
1435
|
+
Description: Command handler for cards and web service
|
|
1436
|
+
Repository: git+https://github.com/CyberismoCom/cyberismo.git
|
|
1437
|
+
Homepage: https://github.com/CyberismoCom/cyberismo
|
|
1438
|
+
Author: sami.merila@cyberismo.com
|
|
1513
1439
|
|
|
1514
1440
|
---
|
|
1515
1441
|
|
|
@@ -1735,19 +1661,20 @@ SOFTWARE.
|
|
|
1735
1661
|
|
|
1736
1662
|
---
|
|
1737
1663
|
|
|
1738
|
-
Name:
|
|
1739
|
-
Version: 3.0
|
|
1664
|
+
Name: @mui/material
|
|
1665
|
+
Version: 7.3.0
|
|
1740
1666
|
License: MIT
|
|
1741
1667
|
Private: false
|
|
1742
|
-
Description: React
|
|
1743
|
-
Repository: git+https://github.com/
|
|
1744
|
-
|
|
1668
|
+
Description: Material UI is an open-source React component library that implements Google's Material Design. It's comprehensive and can be used in production out of the box.
|
|
1669
|
+
Repository: git+https://github.com/mui/material-ui.git
|
|
1670
|
+
Homepage: https://mui.com/material-ui/
|
|
1671
|
+
Author: MUI Team
|
|
1745
1672
|
License Copyright:
|
|
1746
1673
|
===
|
|
1747
1674
|
|
|
1748
|
-
MIT License
|
|
1675
|
+
The MIT License (MIT)
|
|
1749
1676
|
|
|
1750
|
-
Copyright (c)
|
|
1677
|
+
Copyright (c) 2014 Call-Em-All
|
|
1751
1678
|
|
|
1752
1679
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1753
1680
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -1769,20 +1696,20 @@ SOFTWARE.
|
|
|
1769
1696
|
|
|
1770
1697
|
---
|
|
1771
1698
|
|
|
1772
|
-
Name:
|
|
1773
|
-
Version:
|
|
1699
|
+
Name: @mui/icons-material
|
|
1700
|
+
Version: 7.1.1
|
|
1774
1701
|
License: MIT
|
|
1775
1702
|
Private: false
|
|
1776
|
-
Description:
|
|
1777
|
-
Repository: https://github.com/
|
|
1778
|
-
Homepage: https://
|
|
1779
|
-
Author:
|
|
1703
|
+
Description: Material Design icons distributed as SVG React components.
|
|
1704
|
+
Repository: git+https://github.com/mui/material-ui.git
|
|
1705
|
+
Homepage: https://mui.com/material-ui/material-icons/
|
|
1706
|
+
Author: MUI Team
|
|
1780
1707
|
License Copyright:
|
|
1781
1708
|
===
|
|
1782
1709
|
|
|
1783
1710
|
The MIT License (MIT)
|
|
1784
1711
|
|
|
1785
|
-
Copyright (c)
|
|
1712
|
+
Copyright (c) 2014 Call-Em-All
|
|
1786
1713
|
|
|
1787
1714
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1788
1715
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -1804,68 +1731,26 @@ SOFTWARE.
|
|
|
1804
1731
|
|
|
1805
1732
|
---
|
|
1806
1733
|
|
|
1807
|
-
Name:
|
|
1808
|
-
Version:
|
|
1734
|
+
Name: react-resizable-panels
|
|
1735
|
+
Version: 3.0.2
|
|
1809
1736
|
License: MIT
|
|
1810
1737
|
Private: false
|
|
1811
|
-
Description:
|
|
1812
|
-
Repository: https://github.com/
|
|
1813
|
-
|
|
1814
|
-
Author: Iskren Ivov Chernev <iskren.chernev@gmail.com> (https://github.com/ichernev)
|
|
1815
|
-
Contributors:
|
|
1816
|
-
Tim Wood <washwithcare@gmail.com> (http://timwoodcreates.com/)
|
|
1817
|
-
Rocky Meza (http://rockymeza.com)
|
|
1818
|
-
Matt Johnson <mj1856@hotmail.com> (http://codeofmatt.com)
|
|
1819
|
-
Isaac Cambron <isaac@isaaccambron.com> (http://isaaccambron.com)
|
|
1820
|
-
Andre Polykanine <andre@oire.org> (https://github.com/oire)
|
|
1738
|
+
Description: React components for resizable panel groups/layouts
|
|
1739
|
+
Repository: git+https://github.com/bvaughn/react-resizable-panels.git
|
|
1740
|
+
Author: Brian Vaughn <brian.david.vaughn@gmail.com>
|
|
1821
1741
|
License Copyright:
|
|
1822
1742
|
===
|
|
1823
1743
|
|
|
1824
|
-
|
|
1744
|
+
MIT License
|
|
1825
1745
|
|
|
1826
|
-
|
|
1827
|
-
obtaining a copy of this software and associated documentation
|
|
1828
|
-
files (the "Software"), to deal in the Software without
|
|
1829
|
-
restriction, including without limitation the rights to use,
|
|
1830
|
-
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1831
|
-
copies of the Software, and to permit persons to whom the
|
|
1832
|
-
Software is furnished to do so, subject to the following
|
|
1833
|
-
conditions:
|
|
1746
|
+
Copyright (c) 2023 Brian Vaughn
|
|
1834
1747
|
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
1842
|
-
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
1843
|
-
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
1844
|
-
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
1845
|
-
OTHER DEALINGS IN THE SOFTWARE.
|
|
1846
|
-
|
|
1847
|
-
---
|
|
1848
|
-
|
|
1849
|
-
Name: redux-persist
|
|
1850
|
-
Version: 6.0.0
|
|
1851
|
-
License: MIT
|
|
1852
|
-
Private: false
|
|
1853
|
-
Description: persist and rehydrate redux stores
|
|
1854
|
-
Repository: undefined
|
|
1855
|
-
Homepage: https://github.com/rt2zz/redux-persist#readme
|
|
1856
|
-
License Copyright:
|
|
1857
|
-
===
|
|
1858
|
-
|
|
1859
|
-
MIT License
|
|
1860
|
-
|
|
1861
|
-
Copyright (c) 2017 Zack Story
|
|
1862
|
-
|
|
1863
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1864
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
1865
|
-
in the Software without restriction, including without limitation the rights
|
|
1866
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1867
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
1868
|
-
furnished to do so, subject to the following conditions:
|
|
1748
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1749
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1750
|
+
in the Software without restriction, including without limitation the rights
|
|
1751
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1752
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1753
|
+
furnished to do so, subject to the following conditions:
|
|
1869
1754
|
|
|
1870
1755
|
The above copyright notice and this permission notice shall be included in all
|
|
1871
1756
|
copies or substantial portions of the Software.
|
|
@@ -1986,159 +1871,2361 @@ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
1986
1871
|
|
|
1987
1872
|
---
|
|
1988
1873
|
|
|
1989
|
-
Name: domhandler
|
|
1990
|
-
Version: 5.0.3
|
|
1991
|
-
License: BSD-2-Clause
|
|
1874
|
+
Name: domhandler
|
|
1875
|
+
Version: 5.0.3
|
|
1876
|
+
License: BSD-2-Clause
|
|
1877
|
+
Private: false
|
|
1878
|
+
Description: Handler for htmlparser2 that turns pages into a dom
|
|
1879
|
+
Repository: git://github.com/fb55/domhandler.git
|
|
1880
|
+
Author: Felix Boehm <me@feedic.com>
|
|
1881
|
+
License Copyright:
|
|
1882
|
+
===
|
|
1883
|
+
|
|
1884
|
+
Copyright (c) Felix Böhm
|
|
1885
|
+
All rights reserved.
|
|
1886
|
+
|
|
1887
|
+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
|
1888
|
+
|
|
1889
|
+
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
|
1890
|
+
|
|
1891
|
+
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
|
1892
|
+
|
|
1893
|
+
THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,
|
|
1894
|
+
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1895
|
+
|
|
1896
|
+
---
|
|
1897
|
+
|
|
1898
|
+
Name: domelementtype
|
|
1899
|
+
Version: 2.3.0
|
|
1900
|
+
License: BSD-2-Clause
|
|
1901
|
+
Private: false
|
|
1902
|
+
Description: all the types of nodes in htmlparser2's dom
|
|
1903
|
+
Repository: git://github.com/fb55/domelementtype.git
|
|
1904
|
+
Author: Felix Boehm <me@feedic.com>
|
|
1905
|
+
License Copyright:
|
|
1906
|
+
===
|
|
1907
|
+
|
|
1908
|
+
Copyright (c) Felix Böhm
|
|
1909
|
+
All rights reserved.
|
|
1910
|
+
|
|
1911
|
+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
|
1912
|
+
|
|
1913
|
+
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
|
1914
|
+
|
|
1915
|
+
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
|
1916
|
+
|
|
1917
|
+
THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,
|
|
1918
|
+
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1919
|
+
|
|
1920
|
+
---
|
|
1921
|
+
|
|
1922
|
+
Name: dom-serializer
|
|
1923
|
+
Version: 2.0.0
|
|
1924
|
+
License: MIT
|
|
1925
|
+
Private: false
|
|
1926
|
+
Description: render domhandler DOM nodes to a string
|
|
1927
|
+
Repository: git://github.com/cheeriojs/dom-serializer.git
|
|
1928
|
+
Author: Felix Boehm <me@feedic.com>
|
|
1929
|
+
License Copyright:
|
|
1930
|
+
===
|
|
1931
|
+
|
|
1932
|
+
License
|
|
1933
|
+
|
|
1934
|
+
(The MIT License)
|
|
1935
|
+
|
|
1936
|
+
Copyright (c) 2014 The cheeriojs contributors
|
|
1937
|
+
|
|
1938
|
+
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:
|
|
1939
|
+
|
|
1940
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
1941
|
+
|
|
1942
|
+
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.
|
|
1943
|
+
|
|
1944
|
+
---
|
|
1945
|
+
|
|
1946
|
+
Name: entities
|
|
1947
|
+
Version: 4.5.0
|
|
1948
|
+
License: BSD-2-Clause
|
|
1949
|
+
Private: false
|
|
1950
|
+
Description: Encode & decode XML and HTML entities with ease & speed
|
|
1951
|
+
Repository: git://github.com/fb55/entities.git
|
|
1952
|
+
Author: Felix Boehm <me@feedic.com>
|
|
1953
|
+
License Copyright:
|
|
1954
|
+
===
|
|
1955
|
+
|
|
1956
|
+
Copyright (c) Felix Böhm
|
|
1957
|
+
All rights reserved.
|
|
1958
|
+
|
|
1959
|
+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
|
1960
|
+
|
|
1961
|
+
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
|
1962
|
+
|
|
1963
|
+
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
|
1964
|
+
|
|
1965
|
+
THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,
|
|
1966
|
+
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1967
|
+
|
|
1968
|
+
---
|
|
1969
|
+
|
|
1970
|
+
Name: boolbase
|
|
1971
|
+
Version: 1.0.0
|
|
1972
|
+
License: ISC
|
|
1973
|
+
Private: false
|
|
1974
|
+
Description: two functions: One that returns true, one that returns false
|
|
1975
|
+
Repository: https://github.com/fb55/boolbase
|
|
1976
|
+
Homepage: https://github.com/fb55/boolbase
|
|
1977
|
+
Author: Felix Boehm <me@feedic.com>
|
|
1978
|
+
|
|
1979
|
+
---
|
|
1980
|
+
|
|
1981
|
+
Name: css-what
|
|
1982
|
+
Version: 6.1.0
|
|
1983
|
+
License: BSD-2-Clause
|
|
1984
|
+
Private: false
|
|
1985
|
+
Description: a CSS selector parser
|
|
1986
|
+
Repository: https://github.com/fb55/css-what
|
|
1987
|
+
Author: Felix Böhm <me@feedic.com> (http://feedic.com)
|
|
1988
|
+
License Copyright:
|
|
1989
|
+
===
|
|
1990
|
+
|
|
1991
|
+
Copyright (c) Felix Böhm
|
|
1992
|
+
All rights reserved.
|
|
1993
|
+
|
|
1994
|
+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
|
1995
|
+
|
|
1996
|
+
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
|
1997
|
+
|
|
1998
|
+
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
|
1999
|
+
|
|
2000
|
+
THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,
|
|
2001
|
+
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2002
|
+
|
|
2003
|
+
---
|
|
2004
|
+
|
|
2005
|
+
Name: nth-check
|
|
2006
|
+
Version: 2.1.1
|
|
2007
|
+
License: BSD-2-Clause
|
|
2008
|
+
Private: false
|
|
2009
|
+
Description: Parses and compiles CSS nth-checks to highly optimized functions.
|
|
2010
|
+
Repository: https://github.com/fb55/nth-check
|
|
2011
|
+
Homepage: https://github.com/fb55/nth-check
|
|
2012
|
+
Author: Felix Boehm <me@feedic.com>
|
|
2013
|
+
License Copyright:
|
|
2014
|
+
===
|
|
2015
|
+
|
|
2016
|
+
Copyright (c) Felix Böhm
|
|
2017
|
+
All rights reserved.
|
|
2018
|
+
|
|
2019
|
+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
|
2020
|
+
|
|
2021
|
+
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
|
2022
|
+
|
|
2023
|
+
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
|
2024
|
+
|
|
2025
|
+
THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,
|
|
2026
|
+
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2027
|
+
|
|
2028
|
+
---
|
|
2029
|
+
|
|
2030
|
+
Name: moment
|
|
2031
|
+
Version: 2.30.1
|
|
2032
|
+
License: MIT
|
|
2033
|
+
Private: false
|
|
2034
|
+
Description: Parse, validate, manipulate, and display dates
|
|
2035
|
+
Repository: https://github.com/moment/moment.git
|
|
2036
|
+
Homepage: https://momentjs.com
|
|
2037
|
+
Author: Iskren Ivov Chernev <iskren.chernev@gmail.com> (https://github.com/ichernev)
|
|
2038
|
+
Contributors:
|
|
2039
|
+
Tim Wood <washwithcare@gmail.com> (http://timwoodcreates.com/)
|
|
2040
|
+
Rocky Meza (http://rockymeza.com)
|
|
2041
|
+
Matt Johnson <mj1856@hotmail.com> (http://codeofmatt.com)
|
|
2042
|
+
Isaac Cambron <isaac@isaaccambron.com> (http://isaaccambron.com)
|
|
2043
|
+
Andre Polykanine <andre@oire.org> (https://github.com/oire)
|
|
2044
|
+
License Copyright:
|
|
2045
|
+
===
|
|
2046
|
+
|
|
2047
|
+
Copyright (c) JS Foundation and other contributors
|
|
2048
|
+
|
|
2049
|
+
Permission is hereby granted, free of charge, to any person
|
|
2050
|
+
obtaining a copy of this software and associated documentation
|
|
2051
|
+
files (the "Software"), to deal in the Software without
|
|
2052
|
+
restriction, including without limitation the rights to use,
|
|
2053
|
+
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2054
|
+
copies of the Software, and to permit persons to whom the
|
|
2055
|
+
Software is furnished to do so, subject to the following
|
|
2056
|
+
conditions:
|
|
2057
|
+
|
|
2058
|
+
The above copyright notice and this permission notice shall be
|
|
2059
|
+
included in all copies or substantial portions of the Software.
|
|
2060
|
+
|
|
2061
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
2062
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
2063
|
+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
2064
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
2065
|
+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
2066
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
2067
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
2068
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
|
2069
|
+
|
|
2070
|
+
---
|
|
2071
|
+
|
|
2072
|
+
Name: react-vega
|
|
2073
|
+
Version: 7.7.1
|
|
2074
|
+
License: Apache-2.0
|
|
2075
|
+
Private: false
|
|
2076
|
+
Description: Convert Vega spec into React class conveniently
|
|
2077
|
+
Repository: undefined
|
|
2078
|
+
Author: Krist Wongsuphasawat <krist.wongz@gmail.com> (http://kristw.yellowpigz.com)
|
|
2079
|
+
License Copyright:
|
|
2080
|
+
===
|
|
2081
|
+
|
|
2082
|
+
Copyright 2016 Krist Wongsuphasawat <krist.wongz@gmail.com> (http://kristw.yellowpigz.com)
|
|
2083
|
+
|
|
2084
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
2085
|
+
you may not use this file except in compliance with the License.
|
|
2086
|
+
You may obtain a copy of the License at
|
|
2087
|
+
|
|
2088
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
2089
|
+
|
|
2090
|
+
Unless required by applicable law or agreed to in writing, software
|
|
2091
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
2092
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
2093
|
+
See the License for the specific language governing permissions and
|
|
2094
|
+
limitations under the License.
|
|
2095
|
+
|
|
2096
|
+
---
|
|
2097
|
+
|
|
2098
|
+
Name: tslib
|
|
2099
|
+
Version: 2.8.1
|
|
2100
|
+
License: 0BSD
|
|
2101
|
+
Private: false
|
|
2102
|
+
Description: Runtime library for TypeScript helper functions
|
|
2103
|
+
Repository: https://github.com/Microsoft/tslib.git
|
|
2104
|
+
Homepage: https://www.typescriptlang.org/
|
|
2105
|
+
Author: Microsoft Corp.
|
|
2106
|
+
License Copyright:
|
|
2107
|
+
===
|
|
2108
|
+
|
|
2109
|
+
Copyright (c) Microsoft Corporation.
|
|
2110
|
+
|
|
2111
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
2112
|
+
purpose with or without fee is hereby granted.
|
|
2113
|
+
|
|
2114
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
2115
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
2116
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
2117
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
2118
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
2119
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
2120
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
2121
|
+
|
|
2122
|
+
---
|
|
2123
|
+
|
|
2124
|
+
Name: fast-json-patch
|
|
2125
|
+
Version: 3.1.1
|
|
2126
|
+
License: MIT
|
|
2127
|
+
Private: false
|
|
2128
|
+
Description: Fast implementation of JSON-Patch (RFC-6902) with duplex (observe changes) capabilities
|
|
2129
|
+
Repository: git://github.com/Starcounter-Jack/JSON-Patch.git
|
|
2130
|
+
Homepage: https://github.com/Starcounter-Jack/JSON-Patch
|
|
2131
|
+
Author: Joachim Wester <joachimwester@me.com> (http://www.starcounter.com/)
|
|
2132
|
+
License Copyright:
|
|
2133
|
+
===
|
|
2134
|
+
|
|
2135
|
+
(The MIT License)
|
|
2136
|
+
|
|
2137
|
+
Copyright (c) 2013, 2014, 2020 Joachim Wester
|
|
2138
|
+
|
|
2139
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
2140
|
+
a copy of this software and associated documentation files (the
|
|
2141
|
+
'Software'), to deal in the Software without restriction, including
|
|
2142
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
2143
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
2144
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
2145
|
+
the following conditions:
|
|
2146
|
+
|
|
2147
|
+
The above copyright notice and this permission notice shall be
|
|
2148
|
+
included in all copies or substantial portions of the Software.
|
|
2149
|
+
|
|
2150
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
2151
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
2152
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
2153
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
2154
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
2155
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
2156
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2157
|
+
|
|
2158
|
+
---
|
|
2159
|
+
|
|
2160
|
+
Name: json-stringify-pretty-compact
|
|
2161
|
+
Version: 2.0.0
|
|
2162
|
+
License: MIT
|
|
2163
|
+
Private: false
|
|
2164
|
+
Description: The best of both `JSON.stringify(obj)` and `JSON.stringify(obj, null, indent)`.
|
|
2165
|
+
Repository: undefined
|
|
2166
|
+
Author: Simon Lydell
|
|
2167
|
+
License Copyright:
|
|
2168
|
+
===
|
|
2169
|
+
|
|
2170
|
+
The MIT License (MIT)
|
|
2171
|
+
|
|
2172
|
+
Copyright (c) 2014, 2016, 2017, 2019 Simon Lydell
|
|
2173
|
+
|
|
2174
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2175
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2176
|
+
in the Software without restriction, including without limitation the rights
|
|
2177
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2178
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2179
|
+
furnished to do so, subject to the following conditions:
|
|
2180
|
+
|
|
2181
|
+
The above copyright notice and this permission notice shall be included in
|
|
2182
|
+
all copies or substantial portions of the Software.
|
|
2183
|
+
|
|
2184
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2185
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2186
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2187
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2188
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2189
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2190
|
+
THE SOFTWARE.
|
|
2191
|
+
|
|
2192
|
+
---
|
|
2193
|
+
|
|
2194
|
+
Name: semver
|
|
2195
|
+
Version: 7.7.2
|
|
2196
|
+
License: ISC
|
|
2197
|
+
Private: false
|
|
2198
|
+
Description: The semantic version parser used by npm.
|
|
2199
|
+
Repository: git+https://github.com/npm/node-semver.git
|
|
2200
|
+
Author: GitHub Inc.
|
|
2201
|
+
License Copyright:
|
|
2202
|
+
===
|
|
2203
|
+
|
|
2204
|
+
The ISC License
|
|
2205
|
+
|
|
2206
|
+
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
2207
|
+
|
|
2208
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
2209
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
2210
|
+
copyright notice and this permission notice appear in all copies.
|
|
2211
|
+
|
|
2212
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
2213
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
2214
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
2215
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
2216
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
2217
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
2218
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
2219
|
+
|
|
2220
|
+
---
|
|
2221
|
+
|
|
2222
|
+
Name: vega-util
|
|
2223
|
+
Version: 2.0.0
|
|
2224
|
+
License: BSD-3-Clause
|
|
2225
|
+
Private: false
|
|
2226
|
+
Description: JavaScript utilities for Vega.
|
|
2227
|
+
Repository: undefined
|
|
2228
|
+
Author: Vega (https://vega.github.io)
|
|
2229
|
+
License Copyright:
|
|
2230
|
+
===
|
|
2231
|
+
|
|
2232
|
+
Copyright (c) 2015-2023, University of Washington Interactive Data Lab
|
|
2233
|
+
All rights reserved.
|
|
2234
|
+
|
|
2235
|
+
Redistribution and use in source and binary forms, with or without
|
|
2236
|
+
modification, are permitted provided that the following conditions are met:
|
|
2237
|
+
|
|
2238
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
2239
|
+
list of conditions and the following disclaimer.
|
|
2240
|
+
|
|
2241
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
2242
|
+
this list of conditions and the following disclaimer in the documentation
|
|
2243
|
+
and/or other materials provided with the distribution.
|
|
2244
|
+
|
|
2245
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
|
2246
|
+
may be used to endorse or promote products derived from this software
|
|
2247
|
+
without specific prior written permission.
|
|
2248
|
+
|
|
2249
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
2250
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
2251
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
2252
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
2253
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
2254
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
2255
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
2256
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
2257
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
2258
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2259
|
+
|
|
2260
|
+
---
|
|
2261
|
+
|
|
2262
|
+
Name: d3-dsv
|
|
2263
|
+
Version: 3.0.1
|
|
2264
|
+
License: ISC
|
|
2265
|
+
Private: false
|
|
2266
|
+
Description: A parser and formatter for delimiter-separated values, such as CSV and TSV
|
|
2267
|
+
Repository: https://github.com/d3/d3-dsv.git
|
|
2268
|
+
Homepage: https://d3js.org/d3-dsv/
|
|
2269
|
+
Author: Mike Bostock (http://bost.ocks.org/mike)
|
|
2270
|
+
License Copyright:
|
|
2271
|
+
===
|
|
2272
|
+
|
|
2273
|
+
Copyright 2013-2021 Mike Bostock
|
|
2274
|
+
|
|
2275
|
+
Permission to use, copy, modify, and/or distribute this software for any purpose
|
|
2276
|
+
with or without fee is hereby granted, provided that the above copyright notice
|
|
2277
|
+
and this permission notice appear in all copies.
|
|
2278
|
+
|
|
2279
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
2280
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
2281
|
+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
2282
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
2283
|
+
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
2284
|
+
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
|
2285
|
+
THIS SOFTWARE.
|
|
2286
|
+
|
|
2287
|
+
---
|
|
2288
|
+
|
|
2289
|
+
Name: topojson-client
|
|
2290
|
+
Version: 3.1.0
|
|
2291
|
+
License: ISC
|
|
2292
|
+
Private: false
|
|
2293
|
+
Description: Manipulate TopoJSON and convert it to GeoJSON.
|
|
2294
|
+
Repository: https://github.com/topojson/topojson-client.git
|
|
2295
|
+
Homepage: https://github.com/topojson/topojson-client
|
|
2296
|
+
Author: Mike Bostock (https://bost.ocks.org/mike)
|
|
2297
|
+
License Copyright:
|
|
2298
|
+
===
|
|
2299
|
+
|
|
2300
|
+
Copyright 2012-2019 Michael Bostock
|
|
2301
|
+
|
|
2302
|
+
Permission to use, copy, modify, and/or distribute this software for any purpose
|
|
2303
|
+
with or without fee is hereby granted, provided that the above copyright notice
|
|
2304
|
+
and this permission notice appear in all copies.
|
|
2305
|
+
|
|
2306
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
2307
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
2308
|
+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
2309
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
2310
|
+
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
2311
|
+
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
|
2312
|
+
THIS SOFTWARE.
|
|
2313
|
+
|
|
2314
|
+
---
|
|
2315
|
+
|
|
2316
|
+
Name: d3-array
|
|
2317
|
+
Version: 3.2.4
|
|
2318
|
+
License: ISC
|
|
2319
|
+
Private: false
|
|
2320
|
+
Description: Array manipulation, ordering, searching, summarizing, etc.
|
|
2321
|
+
Repository: https://github.com/d3/d3-array.git
|
|
2322
|
+
Homepage: https://d3js.org/d3-array/
|
|
2323
|
+
Author: Mike Bostock (http://bost.ocks.org/mike)
|
|
2324
|
+
License Copyright:
|
|
2325
|
+
===
|
|
2326
|
+
|
|
2327
|
+
Copyright 2010-2023 Mike Bostock
|
|
2328
|
+
|
|
2329
|
+
Permission to use, copy, modify, and/or distribute this software for any purpose
|
|
2330
|
+
with or without fee is hereby granted, provided that the above copyright notice
|
|
2331
|
+
and this permission notice appear in all copies.
|
|
2332
|
+
|
|
2333
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
2334
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
2335
|
+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
2336
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
2337
|
+
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
2338
|
+
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
|
2339
|
+
THIS SOFTWARE.
|
|
2340
|
+
|
|
2341
|
+
---
|
|
2342
|
+
|
|
2343
|
+
Name: internmap
|
|
2344
|
+
Version: 2.0.3
|
|
2345
|
+
License: ISC
|
|
2346
|
+
Private: false
|
|
2347
|
+
Description: Map and Set with automatic key interning
|
|
2348
|
+
Repository: https://github.com/mbostock/internmap.git
|
|
2349
|
+
Homepage: https://github.com/mbostock/internmap/
|
|
2350
|
+
Author: Mike Bostock (https://bost.ocks.org/mike)
|
|
2351
|
+
License Copyright:
|
|
2352
|
+
===
|
|
2353
|
+
|
|
2354
|
+
Copyright 2021 Mike Bostock
|
|
2355
|
+
|
|
2356
|
+
Permission to use, copy, modify, and/or distribute this software for any purpose
|
|
2357
|
+
with or without fee is hereby granted, provided that the above copyright notice
|
|
2358
|
+
and this permission notice appear in all copies.
|
|
2359
|
+
|
|
2360
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
2361
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
2362
|
+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
2363
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
2364
|
+
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
2365
|
+
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
|
2366
|
+
THIS SOFTWARE.
|
|
2367
|
+
|
|
2368
|
+
---
|
|
2369
|
+
|
|
2370
|
+
Name: d3-format
|
|
2371
|
+
Version: 3.1.0
|
|
2372
|
+
License: ISC
|
|
2373
|
+
Private: false
|
|
2374
|
+
Description: Format numbers for human consumption.
|
|
2375
|
+
Repository: https://github.com/d3/d3-format.git
|
|
2376
|
+
Homepage: https://d3js.org/d3-format/
|
|
2377
|
+
Author: Mike Bostock (http://bost.ocks.org/mike)
|
|
2378
|
+
License Copyright:
|
|
2379
|
+
===
|
|
2380
|
+
|
|
2381
|
+
Copyright 2010-2021 Mike Bostock
|
|
2382
|
+
|
|
2383
|
+
Permission to use, copy, modify, and/or distribute this software for any purpose
|
|
2384
|
+
with or without fee is hereby granted, provided that the above copyright notice
|
|
2385
|
+
and this permission notice appear in all copies.
|
|
2386
|
+
|
|
2387
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
2388
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
2389
|
+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
2390
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
2391
|
+
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
2392
|
+
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
|
2393
|
+
THIS SOFTWARE.
|
|
2394
|
+
|
|
2395
|
+
---
|
|
2396
|
+
|
|
2397
|
+
Name: d3-time
|
|
2398
|
+
Version: 3.1.0
|
|
2399
|
+
License: ISC
|
|
2400
|
+
Private: false
|
|
2401
|
+
Description: A calculator for humanity’s peculiar conventions of time.
|
|
2402
|
+
Repository: https://github.com/d3/d3-time.git
|
|
2403
|
+
Homepage: https://d3js.org/d3-time/
|
|
2404
|
+
Author: Mike Bostock (http://bost.ocks.org/mike)
|
|
2405
|
+
License Copyright:
|
|
2406
|
+
===
|
|
2407
|
+
|
|
2408
|
+
Copyright 2010-2022 Mike Bostock
|
|
2409
|
+
|
|
2410
|
+
Permission to use, copy, modify, and/or distribute this software for any purpose
|
|
2411
|
+
with or without fee is hereby granted, provided that the above copyright notice
|
|
2412
|
+
and this permission notice appear in all copies.
|
|
2413
|
+
|
|
2414
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
2415
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
2416
|
+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
2417
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
2418
|
+
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
2419
|
+
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
|
2420
|
+
THIS SOFTWARE.
|
|
2421
|
+
|
|
2422
|
+
---
|
|
2423
|
+
|
|
2424
|
+
Name: vega-time
|
|
2425
|
+
Version: 3.0.0
|
|
2426
|
+
License: BSD-3-Clause
|
|
2427
|
+
Private: false
|
|
2428
|
+
Description: JavaScript date/time utilities for Vega.
|
|
2429
|
+
Repository: undefined
|
|
2430
|
+
Author: Vega (https://vega.github.io)
|
|
2431
|
+
License Copyright:
|
|
2432
|
+
===
|
|
2433
|
+
|
|
2434
|
+
Copyright (c) 2015-2023, University of Washington Interactive Data Lab
|
|
2435
|
+
All rights reserved.
|
|
2436
|
+
|
|
2437
|
+
Redistribution and use in source and binary forms, with or without
|
|
2438
|
+
modification, are permitted provided that the following conditions are met:
|
|
2439
|
+
|
|
2440
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
2441
|
+
list of conditions and the following disclaimer.
|
|
2442
|
+
|
|
2443
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
2444
|
+
this list of conditions and the following disclaimer in the documentation
|
|
2445
|
+
and/or other materials provided with the distribution.
|
|
2446
|
+
|
|
2447
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
|
2448
|
+
may be used to endorse or promote products derived from this software
|
|
2449
|
+
without specific prior written permission.
|
|
2450
|
+
|
|
2451
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
2452
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
2453
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
2454
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
2455
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
2456
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
2457
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
2458
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
2459
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
2460
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2461
|
+
|
|
2462
|
+
---
|
|
2463
|
+
|
|
2464
|
+
Name: d3-time-format
|
|
2465
|
+
Version: 4.1.0
|
|
2466
|
+
License: ISC
|
|
2467
|
+
Private: false
|
|
2468
|
+
Description: A JavaScript time formatter and parser inspired by strftime and strptime.
|
|
2469
|
+
Repository: https://github.com/d3/d3-time-format.git
|
|
2470
|
+
Homepage: https://d3js.org/d3-time-format/
|
|
2471
|
+
Author: Mike Bostock (http://bost.ocks.org/mike)
|
|
2472
|
+
License Copyright:
|
|
2473
|
+
===
|
|
2474
|
+
|
|
2475
|
+
Copyright 2010-2021 Mike Bostock
|
|
2476
|
+
|
|
2477
|
+
Permission to use, copy, modify, and/or distribute this software for any purpose
|
|
2478
|
+
with or without fee is hereby granted, provided that the above copyright notice
|
|
2479
|
+
and this permission notice appear in all copies.
|
|
2480
|
+
|
|
2481
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
2482
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
2483
|
+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
2484
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
2485
|
+
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
2486
|
+
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
|
2487
|
+
THIS SOFTWARE.
|
|
2488
|
+
|
|
2489
|
+
---
|
|
2490
|
+
|
|
2491
|
+
Name: vega-format
|
|
2492
|
+
Version: 2.0.0
|
|
2493
|
+
License: BSD-3-Clause
|
|
2494
|
+
Private: false
|
|
2495
|
+
Description: JavaScript string formatting utilities for Vega.
|
|
2496
|
+
Repository: undefined
|
|
2497
|
+
Author: Vega (https://vega.github.io)
|
|
2498
|
+
License Copyright:
|
|
2499
|
+
===
|
|
2500
|
+
|
|
2501
|
+
Copyright (c) 2015-2023, University of Washington Interactive Data Lab
|
|
2502
|
+
All rights reserved.
|
|
2503
|
+
|
|
2504
|
+
Redistribution and use in source and binary forms, with or without
|
|
2505
|
+
modification, are permitted provided that the following conditions are met:
|
|
2506
|
+
|
|
2507
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
2508
|
+
list of conditions and the following disclaimer.
|
|
2509
|
+
|
|
2510
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
2511
|
+
this list of conditions and the following disclaimer in the documentation
|
|
2512
|
+
and/or other materials provided with the distribution.
|
|
2513
|
+
|
|
2514
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
|
2515
|
+
may be used to endorse or promote products derived from this software
|
|
2516
|
+
without specific prior written permission.
|
|
2517
|
+
|
|
2518
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
2519
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
2520
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
2521
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
2522
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
2523
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
2524
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
2525
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
2526
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
2527
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2528
|
+
|
|
2529
|
+
---
|
|
2530
|
+
|
|
2531
|
+
Name: vega-loader
|
|
2532
|
+
Version: 5.0.0
|
|
2533
|
+
License: BSD-3-Clause
|
|
2534
|
+
Private: false
|
|
2535
|
+
Description: Network request and file loading utilities.
|
|
2536
|
+
Repository: undefined
|
|
2537
|
+
Author: Vega (https://vega.github.io)
|
|
2538
|
+
License Copyright:
|
|
2539
|
+
===
|
|
2540
|
+
|
|
2541
|
+
Copyright (c) 2015-2023, University of Washington Interactive Data Lab
|
|
2542
|
+
All rights reserved.
|
|
2543
|
+
|
|
2544
|
+
Redistribution and use in source and binary forms, with or without
|
|
2545
|
+
modification, are permitted provided that the following conditions are met:
|
|
2546
|
+
|
|
2547
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
2548
|
+
list of conditions and the following disclaimer.
|
|
2549
|
+
|
|
2550
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
2551
|
+
this list of conditions and the following disclaimer in the documentation
|
|
2552
|
+
and/or other materials provided with the distribution.
|
|
2553
|
+
|
|
2554
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
|
2555
|
+
may be used to endorse or promote products derived from this software
|
|
2556
|
+
without specific prior written permission.
|
|
2557
|
+
|
|
2558
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
2559
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
2560
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
2561
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
2562
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
2563
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
2564
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
2565
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
2566
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
2567
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2568
|
+
|
|
2569
|
+
---
|
|
2570
|
+
|
|
2571
|
+
Name: vega-dataflow
|
|
2572
|
+
Version: 6.0.0
|
|
2573
|
+
License: BSD-3-Clause
|
|
2574
|
+
Private: false
|
|
2575
|
+
Description: Reactive dataflow processing.
|
|
2576
|
+
Repository: undefined
|
|
2577
|
+
Author: Vega (https://vega.github.io)
|
|
2578
|
+
License Copyright:
|
|
2579
|
+
===
|
|
2580
|
+
|
|
2581
|
+
Copyright (c) 2015-2023, University of Washington Interactive Data Lab
|
|
2582
|
+
All rights reserved.
|
|
2583
|
+
|
|
2584
|
+
Redistribution and use in source and binary forms, with or without
|
|
2585
|
+
modification, are permitted provided that the following conditions are met:
|
|
2586
|
+
|
|
2587
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
2588
|
+
list of conditions and the following disclaimer.
|
|
2589
|
+
|
|
2590
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
2591
|
+
this list of conditions and the following disclaimer in the documentation
|
|
2592
|
+
and/or other materials provided with the distribution.
|
|
2593
|
+
|
|
2594
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
|
2595
|
+
may be used to endorse or promote products derived from this software
|
|
2596
|
+
without specific prior written permission.
|
|
2597
|
+
|
|
2598
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
2599
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
2600
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
2601
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
2602
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
2603
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
2604
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
2605
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
2606
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
2607
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2608
|
+
|
|
2609
|
+
---
|
|
2610
|
+
|
|
2611
|
+
Name: vega-statistics
|
|
2612
|
+
Version: 2.0.0
|
|
2613
|
+
License: BSD-3-Clause
|
|
2614
|
+
Private: false
|
|
2615
|
+
Description: Statistical routines and probability distributions.
|
|
2616
|
+
Repository: undefined
|
|
2617
|
+
Author: Vega (https://vega.github.io)
|
|
2618
|
+
License Copyright:
|
|
2619
|
+
===
|
|
2620
|
+
|
|
2621
|
+
Copyright (c) 2015-2023, University of Washington Interactive Data Lab
|
|
2622
|
+
All rights reserved.
|
|
2623
|
+
|
|
2624
|
+
Redistribution and use in source and binary forms, with or without
|
|
2625
|
+
modification, are permitted provided that the following conditions are met:
|
|
2626
|
+
|
|
2627
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
2628
|
+
list of conditions and the following disclaimer.
|
|
2629
|
+
|
|
2630
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
2631
|
+
this list of conditions and the following disclaimer in the documentation
|
|
2632
|
+
and/or other materials provided with the distribution.
|
|
2633
|
+
|
|
2634
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
|
2635
|
+
may be used to endorse or promote products derived from this software
|
|
2636
|
+
without specific prior written permission.
|
|
2637
|
+
|
|
2638
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
2639
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
2640
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
2641
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
2642
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
2643
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
2644
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
2645
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
2646
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
2647
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2648
|
+
|
|
2649
|
+
---
|
|
2650
|
+
|
|
2651
|
+
Name: vega-transforms
|
|
2652
|
+
Version: 5.0.0
|
|
2653
|
+
License: BSD-3-Clause
|
|
2654
|
+
Private: false
|
|
2655
|
+
Description: Data processing transforms for Vega dataflows.
|
|
2656
|
+
Repository: undefined
|
|
2657
|
+
Author: Vega (https://vega.github.io)
|
|
2658
|
+
License Copyright:
|
|
2659
|
+
===
|
|
2660
|
+
|
|
2661
|
+
Copyright (c) 2015-2023, University of Washington Interactive Data Lab
|
|
2662
|
+
All rights reserved.
|
|
2663
|
+
|
|
2664
|
+
Redistribution and use in source and binary forms, with or without
|
|
2665
|
+
modification, are permitted provided that the following conditions are met:
|
|
2666
|
+
|
|
2667
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
2668
|
+
list of conditions and the following disclaimer.
|
|
2669
|
+
|
|
2670
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
2671
|
+
this list of conditions and the following disclaimer in the documentation
|
|
2672
|
+
and/or other materials provided with the distribution.
|
|
2673
|
+
|
|
2674
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
|
2675
|
+
may be used to endorse or promote products derived from this software
|
|
2676
|
+
without specific prior written permission.
|
|
2677
|
+
|
|
2678
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
2679
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
2680
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
2681
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
2682
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
2683
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
2684
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
2685
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
2686
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
2687
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2688
|
+
|
|
2689
|
+
---
|
|
2690
|
+
|
|
2691
|
+
Name: d3-shape
|
|
2692
|
+
Version: 3.2.0
|
|
2693
|
+
License: ISC
|
|
2694
|
+
Private: false
|
|
2695
|
+
Description: Graphical primitives for visualization, such as lines and areas.
|
|
2696
|
+
Repository: https://github.com/d3/d3-shape.git
|
|
2697
|
+
Homepage: https://d3js.org/d3-shape/
|
|
2698
|
+
Author: Mike Bostock (http://bost.ocks.org/mike)
|
|
2699
|
+
License Copyright:
|
|
2700
|
+
===
|
|
2701
|
+
|
|
2702
|
+
Copyright 2010-2022 Mike Bostock
|
|
2703
|
+
|
|
2704
|
+
Permission to use, copy, modify, and/or distribute this software for any purpose
|
|
2705
|
+
with or without fee is hereby granted, provided that the above copyright notice
|
|
2706
|
+
and this permission notice appear in all copies.
|
|
2707
|
+
|
|
2708
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
2709
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
2710
|
+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
2711
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
2712
|
+
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
2713
|
+
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
|
2714
|
+
THIS SOFTWARE.
|
|
2715
|
+
|
|
2716
|
+
---
|
|
2717
|
+
|
|
2718
|
+
Name: d3-path
|
|
2719
|
+
Version: 3.1.0
|
|
2720
|
+
License: ISC
|
|
2721
|
+
Private: false
|
|
2722
|
+
Description: Serialize Canvas path commands to SVG.
|
|
2723
|
+
Repository: https://github.com/d3/d3-path.git
|
|
2724
|
+
Homepage: https://d3js.org/d3-path/
|
|
2725
|
+
Author: Mike Bostock (http://bost.ocks.org/mike)
|
|
2726
|
+
License Copyright:
|
|
2727
|
+
===
|
|
2728
|
+
|
|
2729
|
+
Copyright 2015-2022 Mike Bostock
|
|
2730
|
+
|
|
2731
|
+
Permission to use, copy, modify, and/or distribute this software for any purpose
|
|
2732
|
+
with or without fee is hereby granted, provided that the above copyright notice
|
|
2733
|
+
and this permission notice appear in all copies.
|
|
2734
|
+
|
|
2735
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
2736
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
2737
|
+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
2738
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
2739
|
+
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
2740
|
+
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
|
2741
|
+
THIS SOFTWARE.
|
|
2742
|
+
|
|
2743
|
+
---
|
|
2744
|
+
|
|
2745
|
+
Name: vega-canvas
|
|
2746
|
+
Version: 2.0.0
|
|
2747
|
+
License: BSD-3-Clause
|
|
2748
|
+
Private: false
|
|
2749
|
+
Description: Canvas and Image utilities.
|
|
2750
|
+
Repository: undefined
|
|
2751
|
+
Author: Vega (https://vega.github.io)
|
|
2752
|
+
License Copyright:
|
|
2753
|
+
===
|
|
2754
|
+
|
|
2755
|
+
Copyright (c) 2015-2023, University of Washington Interactive Data Lab
|
|
2756
|
+
All rights reserved.
|
|
2757
|
+
|
|
2758
|
+
Redistribution and use in source and binary forms, with or without
|
|
2759
|
+
modification, are permitted provided that the following conditions are met:
|
|
2760
|
+
|
|
2761
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
2762
|
+
list of conditions and the following disclaimer.
|
|
2763
|
+
|
|
2764
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
2765
|
+
this list of conditions and the following disclaimer in the documentation
|
|
2766
|
+
and/or other materials provided with the distribution.
|
|
2767
|
+
|
|
2768
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
|
2769
|
+
may be used to endorse or promote products derived from this software
|
|
2770
|
+
without specific prior written permission.
|
|
2771
|
+
|
|
2772
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
2773
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
2774
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
2775
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
2776
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
2777
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
2778
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
2779
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
2780
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
2781
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2782
|
+
|
|
2783
|
+
---
|
|
2784
|
+
|
|
2785
|
+
Name: d3-scale
|
|
2786
|
+
Version: 4.0.2
|
|
2787
|
+
License: ISC
|
|
2788
|
+
Private: false
|
|
2789
|
+
Description: Encodings that map abstract data to visual representation.
|
|
2790
|
+
Repository: https://github.com/d3/d3-scale.git
|
|
2791
|
+
Homepage: https://d3js.org/d3-scale/
|
|
2792
|
+
Author: Mike Bostock (https://bost.ocks.org/mike)
|
|
2793
|
+
License Copyright:
|
|
2794
|
+
===
|
|
2795
|
+
|
|
2796
|
+
Copyright 2010-2021 Mike Bostock
|
|
2797
|
+
|
|
2798
|
+
Permission to use, copy, modify, and/or distribute this software for any purpose
|
|
2799
|
+
with or without fee is hereby granted, provided that the above copyright notice
|
|
2800
|
+
and this permission notice appear in all copies.
|
|
2801
|
+
|
|
2802
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
2803
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
2804
|
+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
2805
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
2806
|
+
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
2807
|
+
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
|
2808
|
+
THIS SOFTWARE.
|
|
2809
|
+
|
|
2810
|
+
---
|
|
2811
|
+
|
|
2812
|
+
Name: d3-color
|
|
2813
|
+
Version: 3.1.0
|
|
2814
|
+
License: ISC
|
|
2815
|
+
Private: false
|
|
2816
|
+
Description: Color spaces! RGB, HSL, Cubehelix, Lab and HCL (Lch).
|
|
2817
|
+
Repository: https://github.com/d3/d3-color.git
|
|
2818
|
+
Homepage: https://d3js.org/d3-color/
|
|
2819
|
+
Author: Mike Bostock (http://bost.ocks.org/mike)
|
|
2820
|
+
License Copyright:
|
|
2821
|
+
===
|
|
2822
|
+
|
|
2823
|
+
Copyright 2010-2022 Mike Bostock
|
|
2824
|
+
|
|
2825
|
+
Permission to use, copy, modify, and/or distribute this software for any purpose
|
|
2826
|
+
with or without fee is hereby granted, provided that the above copyright notice
|
|
2827
|
+
and this permission notice appear in all copies.
|
|
2828
|
+
|
|
2829
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
2830
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
2831
|
+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
2832
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
2833
|
+
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
2834
|
+
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
|
2835
|
+
THIS SOFTWARE.
|
|
2836
|
+
|
|
2837
|
+
---
|
|
2838
|
+
|
|
2839
|
+
Name: d3-interpolate
|
|
2840
|
+
Version: 3.0.1
|
|
2841
|
+
License: ISC
|
|
2842
|
+
Private: false
|
|
2843
|
+
Description: Interpolate numbers, colors, strings, arrays, objects, whatever!
|
|
2844
|
+
Repository: https://github.com/d3/d3-interpolate.git
|
|
2845
|
+
Homepage: https://d3js.org/d3-interpolate/
|
|
2846
|
+
Author: Mike Bostock (http://bost.ocks.org/mike)
|
|
2847
|
+
License Copyright:
|
|
2848
|
+
===
|
|
2849
|
+
|
|
2850
|
+
Copyright 2010-2021 Mike Bostock
|
|
2851
|
+
|
|
2852
|
+
Permission to use, copy, modify, and/or distribute this software for any purpose
|
|
2853
|
+
with or without fee is hereby granted, provided that the above copyright notice
|
|
2854
|
+
and this permission notice appear in all copies.
|
|
2855
|
+
|
|
2856
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
2857
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
2858
|
+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
2859
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
2860
|
+
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
2861
|
+
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
|
2862
|
+
THIS SOFTWARE.
|
|
2863
|
+
|
|
2864
|
+
---
|
|
2865
|
+
|
|
2866
|
+
Name: d3-scale-chromatic
|
|
2867
|
+
Version: 3.1.0
|
|
2868
|
+
License: ISC
|
|
2869
|
+
Private: false
|
|
2870
|
+
Description: Sequential, diverging and categorical color schemes.
|
|
2871
|
+
Repository: https://github.com/d3/d3-scale-chromatic.git
|
|
2872
|
+
Homepage: https://d3js.org/d3-scale-chromatic/
|
|
2873
|
+
Author: Mike Bostock (https://bost.ocks.org/mike)
|
|
2874
|
+
License Copyright:
|
|
2875
|
+
===
|
|
2876
|
+
|
|
2877
|
+
Copyright 2010-2024 Mike Bostock
|
|
2878
|
+
|
|
2879
|
+
Permission to use, copy, modify, and/or distribute this software for any purpose
|
|
2880
|
+
with or without fee is hereby granted, provided that the above copyright notice
|
|
2881
|
+
and this permission notice appear in all copies.
|
|
2882
|
+
|
|
2883
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
2884
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
2885
|
+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
2886
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
2887
|
+
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
2888
|
+
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
|
2889
|
+
THIS SOFTWARE.
|
|
2890
|
+
|
|
2891
|
+
Apache-Style Software License for ColorBrewer software and ColorBrewer Color Schemes
|
|
2892
|
+
|
|
2893
|
+
Copyright 2002 Cynthia Brewer, Mark Harrower, and The Pennsylvania State University
|
|
2894
|
+
|
|
2895
|
+
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
|
2896
|
+
this file except in compliance with the License. You may obtain a copy of the
|
|
2897
|
+
License at
|
|
2898
|
+
|
|
2899
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
2900
|
+
|
|
2901
|
+
Unless required by applicable law or agreed to in writing, software distributed
|
|
2902
|
+
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
|
2903
|
+
CONDITIONS OF ANY KIND, either express or implied. See the License for the
|
|
2904
|
+
specific language governing permissions and limitations under the License.
|
|
2905
|
+
|
|
2906
|
+
---
|
|
2907
|
+
|
|
2908
|
+
Name: vega-scale
|
|
2909
|
+
Version: 8.0.0
|
|
2910
|
+
License: BSD-3-Clause
|
|
2911
|
+
Private: false
|
|
2912
|
+
Description: Scales and color schemes for visual encoding.
|
|
2913
|
+
Repository: undefined
|
|
2914
|
+
Author: Vega (https://vega.github.io)
|
|
2915
|
+
License Copyright:
|
|
2916
|
+
===
|
|
2917
|
+
|
|
2918
|
+
Copyright (c) 2015-2023, University of Washington Interactive Data Lab
|
|
2919
|
+
All rights reserved.
|
|
2920
|
+
|
|
2921
|
+
Redistribution and use in source and binary forms, with or without
|
|
2922
|
+
modification, are permitted provided that the following conditions are met:
|
|
2923
|
+
|
|
2924
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
2925
|
+
list of conditions and the following disclaimer.
|
|
2926
|
+
|
|
2927
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
2928
|
+
this list of conditions and the following disclaimer in the documentation
|
|
2929
|
+
and/or other materials provided with the distribution.
|
|
2930
|
+
|
|
2931
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
|
2932
|
+
may be used to endorse or promote products derived from this software
|
|
2933
|
+
without specific prior written permission.
|
|
2934
|
+
|
|
2935
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
2936
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
2937
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
2938
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
2939
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
2940
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
2941
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
2942
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
2943
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
2944
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2945
|
+
|
|
2946
|
+
---
|
|
2947
|
+
|
|
2948
|
+
Name: vega-scenegraph
|
|
2949
|
+
Version: 5.0.0
|
|
2950
|
+
License: BSD-3-Clause
|
|
2951
|
+
Private: false
|
|
2952
|
+
Description: Vega scenegraph and renderers.
|
|
2953
|
+
Repository: undefined
|
|
2954
|
+
Author: Vega (https://vega.github.io)
|
|
2955
|
+
License Copyright:
|
|
2956
|
+
===
|
|
2957
|
+
|
|
2958
|
+
Copyright (c) 2015-2023, University of Washington Interactive Data Lab
|
|
2959
|
+
All rights reserved.
|
|
2960
|
+
|
|
2961
|
+
Redistribution and use in source and binary forms, with or without
|
|
2962
|
+
modification, are permitted provided that the following conditions are met:
|
|
2963
|
+
|
|
2964
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
2965
|
+
list of conditions and the following disclaimer.
|
|
2966
|
+
|
|
2967
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
2968
|
+
this list of conditions and the following disclaimer in the documentation
|
|
2969
|
+
and/or other materials provided with the distribution.
|
|
2970
|
+
|
|
2971
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
|
2972
|
+
may be used to endorse or promote products derived from this software
|
|
2973
|
+
without specific prior written permission.
|
|
2974
|
+
|
|
2975
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
2976
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
2977
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
2978
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
2979
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
2980
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
2981
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
2982
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
2983
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
2984
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2985
|
+
|
|
2986
|
+
---
|
|
2987
|
+
|
|
2988
|
+
Name: vega-view-transforms
|
|
2989
|
+
Version: 5.0.0
|
|
2990
|
+
License: BSD-3-Clause
|
|
2991
|
+
Private: false
|
|
2992
|
+
Description: View-specific transforms for Vega dataflows.
|
|
2993
|
+
Repository: undefined
|
|
2994
|
+
Author: Vega (https://vega.github.io)
|
|
2995
|
+
License Copyright:
|
|
2996
|
+
===
|
|
2997
|
+
|
|
2998
|
+
Copyright (c) 2015-2023, University of Washington Interactive Data Lab
|
|
2999
|
+
All rights reserved.
|
|
3000
|
+
|
|
3001
|
+
Redistribution and use in source and binary forms, with or without
|
|
3002
|
+
modification, are permitted provided that the following conditions are met:
|
|
3003
|
+
|
|
3004
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
3005
|
+
list of conditions and the following disclaimer.
|
|
3006
|
+
|
|
3007
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
3008
|
+
this list of conditions and the following disclaimer in the documentation
|
|
3009
|
+
and/or other materials provided with the distribution.
|
|
3010
|
+
|
|
3011
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
|
3012
|
+
may be used to endorse or promote products derived from this software
|
|
3013
|
+
without specific prior written permission.
|
|
3014
|
+
|
|
3015
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
3016
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
3017
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
3018
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
3019
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
3020
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
3021
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
3022
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
3023
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
3024
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3025
|
+
|
|
3026
|
+
---
|
|
3027
|
+
|
|
3028
|
+
Name: vega-encode
|
|
3029
|
+
Version: 5.0.0
|
|
3030
|
+
License: BSD-3-Clause
|
|
3031
|
+
Private: false
|
|
3032
|
+
Description: Visual encoding transforms for Vega dataflows.
|
|
3033
|
+
Repository: undefined
|
|
3034
|
+
Author: Vega (https://vega.github.io)
|
|
3035
|
+
License Copyright:
|
|
3036
|
+
===
|
|
3037
|
+
|
|
3038
|
+
Copyright (c) 2015-2023, University of Washington Interactive Data Lab
|
|
3039
|
+
All rights reserved.
|
|
3040
|
+
|
|
3041
|
+
Redistribution and use in source and binary forms, with or without
|
|
3042
|
+
modification, are permitted provided that the following conditions are met:
|
|
3043
|
+
|
|
3044
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
3045
|
+
list of conditions and the following disclaimer.
|
|
3046
|
+
|
|
3047
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
3048
|
+
this list of conditions and the following disclaimer in the documentation
|
|
3049
|
+
and/or other materials provided with the distribution.
|
|
3050
|
+
|
|
3051
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
|
3052
|
+
may be used to endorse or promote products derived from this software
|
|
3053
|
+
without specific prior written permission.
|
|
3054
|
+
|
|
3055
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
3056
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
3057
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
3058
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
3059
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
3060
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
3061
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
3062
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
3063
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
3064
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3065
|
+
|
|
3066
|
+
---
|
|
3067
|
+
|
|
3068
|
+
Name: d3-geo
|
|
3069
|
+
Version: 3.1.1
|
|
3070
|
+
License: ISC
|
|
3071
|
+
Private: false
|
|
3072
|
+
Description: Shapes and calculators for spherical coordinates.
|
|
3073
|
+
Repository: https://github.com/d3/d3-geo.git
|
|
3074
|
+
Homepage: https://d3js.org/d3-geo/
|
|
3075
|
+
Author: Mike Bostock (https://bost.ocks.org/mike)
|
|
3076
|
+
License Copyright:
|
|
3077
|
+
===
|
|
3078
|
+
|
|
3079
|
+
Copyright 2010-2024 Mike Bostock
|
|
3080
|
+
|
|
3081
|
+
Permission to use, copy, modify, and/or distribute this software for any purpose
|
|
3082
|
+
with or without fee is hereby granted, provided that the above copyright notice
|
|
3083
|
+
and this permission notice appear in all copies.
|
|
3084
|
+
|
|
3085
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
3086
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
3087
|
+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
3088
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
3089
|
+
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
3090
|
+
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
|
3091
|
+
THIS SOFTWARE.
|
|
3092
|
+
|
|
3093
|
+
This license applies to GeographicLib, versions 1.12 and later.
|
|
3094
|
+
|
|
3095
|
+
Copyright 2008-2012 Charles Karney
|
|
3096
|
+
|
|
3097
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
3098
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
3099
|
+
the Software without restriction, including without limitation the rights to
|
|
3100
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
3101
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
3102
|
+
subject to the following conditions:
|
|
3103
|
+
|
|
3104
|
+
The above copyright notice and this permission notice shall be included in all
|
|
3105
|
+
copies or substantial portions of the Software.
|
|
3106
|
+
|
|
3107
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3108
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
3109
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
3110
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
3111
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
3112
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
3113
|
+
|
|
3114
|
+
---
|
|
3115
|
+
|
|
3116
|
+
Name: d3-geo-projection
|
|
3117
|
+
Version: 4.0.0
|
|
3118
|
+
License: ISC
|
|
3119
|
+
Private: false
|
|
3120
|
+
Description: Extended geographic projections for d3-geo.
|
|
3121
|
+
Repository: https://github.com/d3/d3-geo-projection.git
|
|
3122
|
+
Homepage: https://d3js.org/d3-geo-projection/
|
|
3123
|
+
Author: Mike Bostock (https://bost.ocks.org/mike)
|
|
3124
|
+
Contributors:
|
|
3125
|
+
Jason Davies (http://www.jasondavies.com)
|
|
3126
|
+
Philippe Rivière (https://visionscarto.net)
|
|
3127
|
+
License Copyright:
|
|
3128
|
+
===
|
|
3129
|
+
|
|
3130
|
+
Copyright 2013-2021 Mike Bostock
|
|
3131
|
+
|
|
3132
|
+
Permission to use, copy, modify, and/or distribute this software for any purpose
|
|
3133
|
+
with or without fee is hereby granted, provided that the above copyright notice
|
|
3134
|
+
and this permission notice appear in all copies.
|
|
3135
|
+
|
|
3136
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
3137
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
3138
|
+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
3139
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
3140
|
+
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
3141
|
+
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
|
3142
|
+
THIS SOFTWARE.
|
|
3143
|
+
|
|
3144
|
+
MIT License for https://github.com/scijs/integrate-adaptive-simpson
|
|
3145
|
+
|
|
3146
|
+
The MIT License (MIT)
|
|
3147
|
+
|
|
3148
|
+
Copyright 2015 Ricky Reusser
|
|
3149
|
+
|
|
3150
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3151
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
3152
|
+
in the Software without restriction, including without limitation the rights
|
|
3153
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3154
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
3155
|
+
furnished to do so, subject to the following conditions:
|
|
3156
|
+
|
|
3157
|
+
The above copyright notice and this permission notice shall be included in
|
|
3158
|
+
all copies or substantial portions of the Software.
|
|
3159
|
+
|
|
3160
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3161
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3162
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3163
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3164
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3165
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
3166
|
+
THE SOFTWARE.
|
|
3167
|
+
|
|
3168
|
+
---
|
|
3169
|
+
|
|
3170
|
+
Name: vega-projection
|
|
3171
|
+
Version: 2.0.0
|
|
3172
|
+
License: BSD-3-Clause
|
|
3173
|
+
Private: false
|
|
3174
|
+
Description: Projections for cartographic mapping.
|
|
3175
|
+
Repository: undefined
|
|
3176
|
+
Author: Vega (https://vega.github.io)
|
|
3177
|
+
License Copyright:
|
|
3178
|
+
===
|
|
3179
|
+
|
|
3180
|
+
Copyright (c) 2015-2023, University of Washington Interactive Data Lab
|
|
3181
|
+
All rights reserved.
|
|
3182
|
+
|
|
3183
|
+
Redistribution and use in source and binary forms, with or without
|
|
3184
|
+
modification, are permitted provided that the following conditions are met:
|
|
3185
|
+
|
|
3186
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
3187
|
+
list of conditions and the following disclaimer.
|
|
3188
|
+
|
|
3189
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
3190
|
+
this list of conditions and the following disclaimer in the documentation
|
|
3191
|
+
and/or other materials provided with the distribution.
|
|
3192
|
+
|
|
3193
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
|
3194
|
+
may be used to endorse or promote products derived from this software
|
|
3195
|
+
without specific prior written permission.
|
|
3196
|
+
|
|
3197
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
3198
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
3199
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
3200
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
3201
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
3202
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
3203
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
3204
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
3205
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
3206
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3207
|
+
|
|
3208
|
+
---
|
|
3209
|
+
|
|
3210
|
+
Name: vega-geo
|
|
3211
|
+
Version: 5.0.0
|
|
3212
|
+
License: BSD-3-Clause
|
|
3213
|
+
Private: false
|
|
3214
|
+
Description: Geographic data transforms for Vega dataflows.
|
|
3215
|
+
Repository: undefined
|
|
3216
|
+
Author: Vega (https://vega.github.io)
|
|
3217
|
+
License Copyright:
|
|
3218
|
+
===
|
|
3219
|
+
|
|
3220
|
+
Copyright (c) 2015-2023, University of Washington Interactive Data Lab
|
|
3221
|
+
All rights reserved.
|
|
3222
|
+
|
|
3223
|
+
Redistribution and use in source and binary forms, with or without
|
|
3224
|
+
modification, are permitted provided that the following conditions are met:
|
|
3225
|
+
|
|
3226
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
3227
|
+
list of conditions and the following disclaimer.
|
|
3228
|
+
|
|
3229
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
3230
|
+
this list of conditions and the following disclaimer in the documentation
|
|
3231
|
+
and/or other materials provided with the distribution.
|
|
3232
|
+
|
|
3233
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
|
3234
|
+
may be used to endorse or promote products derived from this software
|
|
3235
|
+
without specific prior written permission.
|
|
3236
|
+
|
|
3237
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
3238
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
3239
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
3240
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
3241
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
3242
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
3243
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
3244
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
3245
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
3246
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3247
|
+
|
|
3248
|
+
---
|
|
3249
|
+
|
|
3250
|
+
Name: d3-force
|
|
3251
|
+
Version: 3.0.0
|
|
3252
|
+
License: ISC
|
|
3253
|
+
Private: false
|
|
3254
|
+
Description: Force-directed graph layout using velocity Verlet integration.
|
|
3255
|
+
Repository: https://github.com/d3/d3-force.git
|
|
3256
|
+
Homepage: https://d3js.org/d3-force/
|
|
3257
|
+
Author: Mike Bostock (https://bost.ocks.org/mike)
|
|
3258
|
+
License Copyright:
|
|
3259
|
+
===
|
|
3260
|
+
|
|
3261
|
+
Copyright 2010-2021 Mike Bostock
|
|
3262
|
+
|
|
3263
|
+
Permission to use, copy, modify, and/or distribute this software for any purpose
|
|
3264
|
+
with or without fee is hereby granted, provided that the above copyright notice
|
|
3265
|
+
and this permission notice appear in all copies.
|
|
3266
|
+
|
|
3267
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
3268
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
3269
|
+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
3270
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
3271
|
+
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
3272
|
+
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
|
3273
|
+
THIS SOFTWARE.
|
|
3274
|
+
|
|
3275
|
+
---
|
|
3276
|
+
|
|
3277
|
+
Name: d3-quadtree
|
|
3278
|
+
Version: 3.0.1
|
|
3279
|
+
License: ISC
|
|
3280
|
+
Private: false
|
|
3281
|
+
Description: Two-dimensional recursive spatial subdivision.
|
|
3282
|
+
Repository: https://github.com/d3/d3-quadtree.git
|
|
3283
|
+
Homepage: https://d3js.org/d3-quadtree/
|
|
3284
|
+
Author: Mike Bostock (http://bost.ocks.org/mike)
|
|
3285
|
+
License Copyright:
|
|
3286
|
+
===
|
|
3287
|
+
|
|
3288
|
+
Copyright 2010-2021 Mike Bostock
|
|
3289
|
+
|
|
3290
|
+
Permission to use, copy, modify, and/or distribute this software for any purpose
|
|
3291
|
+
with or without fee is hereby granted, provided that the above copyright notice
|
|
3292
|
+
and this permission notice appear in all copies.
|
|
3293
|
+
|
|
3294
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
3295
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
3296
|
+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
3297
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
3298
|
+
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
3299
|
+
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
|
3300
|
+
THIS SOFTWARE.
|
|
3301
|
+
|
|
3302
|
+
---
|
|
3303
|
+
|
|
3304
|
+
Name: d3-dispatch
|
|
3305
|
+
Version: 3.0.1
|
|
3306
|
+
License: ISC
|
|
3307
|
+
Private: false
|
|
3308
|
+
Description: Register named callbacks and call them with arguments.
|
|
3309
|
+
Repository: https://github.com/d3/d3-dispatch.git
|
|
3310
|
+
Homepage: https://d3js.org/d3-dispatch/
|
|
3311
|
+
Author: Mike Bostock (http://bost.ocks.org/mike)
|
|
3312
|
+
License Copyright:
|
|
3313
|
+
===
|
|
3314
|
+
|
|
3315
|
+
Copyright 2010-2021 Mike Bostock
|
|
3316
|
+
|
|
3317
|
+
Permission to use, copy, modify, and/or distribute this software for any purpose
|
|
3318
|
+
with or without fee is hereby granted, provided that the above copyright notice
|
|
3319
|
+
and this permission notice appear in all copies.
|
|
3320
|
+
|
|
3321
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
3322
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
3323
|
+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
3324
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
3325
|
+
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
3326
|
+
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
|
3327
|
+
THIS SOFTWARE.
|
|
3328
|
+
|
|
3329
|
+
---
|
|
3330
|
+
|
|
3331
|
+
Name: d3-timer
|
|
3332
|
+
Version: 3.0.1
|
|
3333
|
+
License: ISC
|
|
3334
|
+
Private: false
|
|
3335
|
+
Description: An efficient queue capable of managing thousands of concurrent animations.
|
|
3336
|
+
Repository: https://github.com/d3/d3-timer.git
|
|
3337
|
+
Homepage: https://d3js.org/d3-timer/
|
|
3338
|
+
Author: Mike Bostock (http://bost.ocks.org/mike)
|
|
3339
|
+
License Copyright:
|
|
3340
|
+
===
|
|
3341
|
+
|
|
3342
|
+
Copyright 2010-2021 Mike Bostock
|
|
3343
|
+
|
|
3344
|
+
Permission to use, copy, modify, and/or distribute this software for any purpose
|
|
3345
|
+
with or without fee is hereby granted, provided that the above copyright notice
|
|
3346
|
+
and this permission notice appear in all copies.
|
|
3347
|
+
|
|
3348
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
3349
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
3350
|
+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
3351
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
3352
|
+
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
3353
|
+
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
|
3354
|
+
THIS SOFTWARE.
|
|
3355
|
+
|
|
3356
|
+
---
|
|
3357
|
+
|
|
3358
|
+
Name: vega-force
|
|
3359
|
+
Version: 5.0.0
|
|
3360
|
+
License: BSD-3-Clause
|
|
3361
|
+
Private: false
|
|
3362
|
+
Description: Force simulation transform for Vega dataflows.
|
|
3363
|
+
Repository: undefined
|
|
3364
|
+
Author: Vega (https://vega.github.io)
|
|
3365
|
+
License Copyright:
|
|
3366
|
+
===
|
|
3367
|
+
|
|
3368
|
+
Copyright (c) 2015-2023, University of Washington Interactive Data Lab
|
|
3369
|
+
All rights reserved.
|
|
3370
|
+
|
|
3371
|
+
Redistribution and use in source and binary forms, with or without
|
|
3372
|
+
modification, are permitted provided that the following conditions are met:
|
|
3373
|
+
|
|
3374
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
3375
|
+
list of conditions and the following disclaimer.
|
|
3376
|
+
|
|
3377
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
3378
|
+
this list of conditions and the following disclaimer in the documentation
|
|
3379
|
+
and/or other materials provided with the distribution.
|
|
3380
|
+
|
|
3381
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
|
3382
|
+
may be used to endorse or promote products derived from this software
|
|
3383
|
+
without specific prior written permission.
|
|
3384
|
+
|
|
3385
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
3386
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
3387
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
3388
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
3389
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
3390
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
3391
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
3392
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
3393
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
3394
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3395
|
+
|
|
3396
|
+
---
|
|
3397
|
+
|
|
3398
|
+
Name: d3-hierarchy
|
|
3399
|
+
Version: 3.1.2
|
|
3400
|
+
License: ISC
|
|
3401
|
+
Private: false
|
|
3402
|
+
Description: Layout algorithms for visualizing hierarchical data.
|
|
3403
|
+
Repository: https://github.com/d3/d3-hierarchy.git
|
|
3404
|
+
Homepage: https://d3js.org/d3-hierarchy/
|
|
3405
|
+
Author: Mike Bostock (http://bost.ocks.org/mike)
|
|
3406
|
+
License Copyright:
|
|
3407
|
+
===
|
|
3408
|
+
|
|
3409
|
+
Copyright 2010-2021 Mike Bostock
|
|
3410
|
+
|
|
3411
|
+
Permission to use, copy, modify, and/or distribute this software for any purpose
|
|
3412
|
+
with or without fee is hereby granted, provided that the above copyright notice
|
|
3413
|
+
and this permission notice appear in all copies.
|
|
3414
|
+
|
|
3415
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
3416
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
3417
|
+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
3418
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
3419
|
+
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
3420
|
+
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
|
3421
|
+
THIS SOFTWARE.
|
|
3422
|
+
|
|
3423
|
+
---
|
|
3424
|
+
|
|
3425
|
+
Name: vega-hierarchy
|
|
3426
|
+
Version: 5.0.0
|
|
3427
|
+
License: BSD-3-Clause
|
|
3428
|
+
Private: false
|
|
3429
|
+
Description: Hierarchical layout transforms for Vega dataflows.
|
|
3430
|
+
Repository: undefined
|
|
3431
|
+
Author: Vega (https://vega.github.io)
|
|
3432
|
+
License Copyright:
|
|
3433
|
+
===
|
|
3434
|
+
|
|
3435
|
+
Copyright (c) 2015-2023, University of Washington Interactive Data Lab
|
|
3436
|
+
All rights reserved.
|
|
3437
|
+
|
|
3438
|
+
Redistribution and use in source and binary forms, with or without
|
|
3439
|
+
modification, are permitted provided that the following conditions are met:
|
|
3440
|
+
|
|
3441
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
3442
|
+
list of conditions and the following disclaimer.
|
|
3443
|
+
|
|
3444
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
3445
|
+
this list of conditions and the following disclaimer in the documentation
|
|
3446
|
+
and/or other materials provided with the distribution.
|
|
3447
|
+
|
|
3448
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
|
3449
|
+
may be used to endorse or promote products derived from this software
|
|
3450
|
+
without specific prior written permission.
|
|
3451
|
+
|
|
3452
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
3453
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
3454
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
3455
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
3456
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
3457
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
3458
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
3459
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
3460
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
3461
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3462
|
+
|
|
3463
|
+
---
|
|
3464
|
+
|
|
3465
|
+
Name: vega-label
|
|
3466
|
+
Version: 2.0.0
|
|
3467
|
+
License: BSD-3-Clause
|
|
3468
|
+
Private: false
|
|
3469
|
+
Description: Label layout transform for Vega dataflows.
|
|
3470
|
+
Repository: undefined
|
|
3471
|
+
Author: UW Interactive Data Lab (http://idl.cs.washington.edu)
|
|
3472
|
+
License Copyright:
|
|
3473
|
+
===
|
|
3474
|
+
|
|
3475
|
+
Copyright (c) 2015-2023, University of Washington Interactive Data Lab
|
|
3476
|
+
All rights reserved.
|
|
3477
|
+
|
|
3478
|
+
Redistribution and use in source and binary forms, with or without
|
|
3479
|
+
modification, are permitted provided that the following conditions are met:
|
|
3480
|
+
|
|
3481
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
3482
|
+
list of conditions and the following disclaimer.
|
|
3483
|
+
|
|
3484
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
3485
|
+
this list of conditions and the following disclaimer in the documentation
|
|
3486
|
+
and/or other materials provided with the distribution.
|
|
3487
|
+
|
|
3488
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
|
3489
|
+
may be used to endorse or promote products derived from this software
|
|
3490
|
+
without specific prior written permission.
|
|
3491
|
+
|
|
3492
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
3493
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
3494
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
3495
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
3496
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
3497
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
3498
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
3499
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
3500
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
3501
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3502
|
+
|
|
3503
|
+
---
|
|
3504
|
+
|
|
3505
|
+
Name: vega-regression
|
|
3506
|
+
Version: 2.0.0
|
|
3507
|
+
License: BSD-3-Clause
|
|
3508
|
+
Private: false
|
|
3509
|
+
Description: Regression transform for Vega dataflows.
|
|
3510
|
+
Repository: undefined
|
|
3511
|
+
Author: Vega (https://vega.github.io)
|
|
3512
|
+
License Copyright:
|
|
3513
|
+
===
|
|
3514
|
+
|
|
3515
|
+
Copyright (c) 2015-2023, University of Washington Interactive Data Lab
|
|
3516
|
+
All rights reserved.
|
|
3517
|
+
|
|
3518
|
+
Redistribution and use in source and binary forms, with or without
|
|
3519
|
+
modification, are permitted provided that the following conditions are met:
|
|
3520
|
+
|
|
3521
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
3522
|
+
list of conditions and the following disclaimer.
|
|
3523
|
+
|
|
3524
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
3525
|
+
this list of conditions and the following disclaimer in the documentation
|
|
3526
|
+
and/or other materials provided with the distribution.
|
|
3527
|
+
|
|
3528
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
|
3529
|
+
may be used to endorse or promote products derived from this software
|
|
3530
|
+
without specific prior written permission.
|
|
3531
|
+
|
|
3532
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
3533
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
3534
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
3535
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
3536
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
3537
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
3538
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
3539
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
3540
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
3541
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3542
|
+
|
|
3543
|
+
---
|
|
3544
|
+
|
|
3545
|
+
Name: robust-predicates
|
|
3546
|
+
Version: 3.0.2
|
|
3547
|
+
License: Unlicense
|
|
3548
|
+
Private: false
|
|
3549
|
+
Description: Fast robust predicates for computational geometry
|
|
3550
|
+
Repository: https://github.com/mourner/robust-predicates.git
|
|
3551
|
+
Author: Vladimir Agafonkin
|
|
3552
|
+
License Copyright:
|
|
3553
|
+
===
|
|
3554
|
+
|
|
3555
|
+
This is free and unencumbered software released into the public domain.
|
|
3556
|
+
|
|
3557
|
+
Anyone is free to copy, modify, publish, use, compile, sell, or
|
|
3558
|
+
distribute this software, either in source code form or as a compiled
|
|
3559
|
+
binary, for any purpose, commercial or non-commercial, and by any
|
|
3560
|
+
means.
|
|
3561
|
+
|
|
3562
|
+
In jurisdictions that recognize copyright laws, the author or authors
|
|
3563
|
+
of this software dedicate any and all copyright interest in the
|
|
3564
|
+
software to the public domain. We make this dedication for the benefit
|
|
3565
|
+
of the public at large and to the detriment of our heirs and
|
|
3566
|
+
successors. We intend this dedication to be an overt act of
|
|
3567
|
+
relinquishment in perpetuity of all present and future rights to this
|
|
3568
|
+
software under copyright law.
|
|
3569
|
+
|
|
3570
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
3571
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
3572
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
3573
|
+
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
3574
|
+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
3575
|
+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
3576
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
|
3577
|
+
|
|
3578
|
+
For more information, please refer to <http://unlicense.org>
|
|
3579
|
+
|
|
3580
|
+
---
|
|
3581
|
+
|
|
3582
|
+
Name: delaunator
|
|
3583
|
+
Version: 5.0.1
|
|
3584
|
+
License: ISC
|
|
3585
|
+
Private: false
|
|
3586
|
+
Description: An incredibly fast JavaScript library for Delaunay triangulation of 2D points
|
|
3587
|
+
Repository: https://github.com/mapbox/delaunator.git
|
|
3588
|
+
Author: Vladimir Agafonkin
|
|
3589
|
+
License Copyright:
|
|
3590
|
+
===
|
|
3591
|
+
|
|
3592
|
+
ISC License
|
|
3593
|
+
|
|
3594
|
+
Copyright (c) 2021, Mapbox
|
|
3595
|
+
|
|
3596
|
+
Permission to use, copy, modify, and/or distribute this software for any purpose
|
|
3597
|
+
with or without fee is hereby granted, provided that the above copyright notice
|
|
3598
|
+
and this permission notice appear in all copies.
|
|
3599
|
+
|
|
3600
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
3601
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
3602
|
+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
3603
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
3604
|
+
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
3605
|
+
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
|
3606
|
+
THIS SOFTWARE.
|
|
3607
|
+
|
|
3608
|
+
---
|
|
3609
|
+
|
|
3610
|
+
Name: d3-delaunay
|
|
3611
|
+
Version: 6.0.4
|
|
3612
|
+
License: ISC
|
|
3613
|
+
Private: false
|
|
3614
|
+
Description: Compute the Voronoi diagram of a set of two-dimensional points.
|
|
3615
|
+
Repository: https://github.com/d3/d3-delaunay.git
|
|
3616
|
+
Homepage: https://github.com/d3/d3-delaunay
|
|
3617
|
+
Author: Mike Bostock (https://bost.ocks.org/mike)
|
|
3618
|
+
Contributors:
|
|
3619
|
+
Vladimir Agafonkin (https://agafonkin.com)
|
|
3620
|
+
Philippe Rivière (https://visionscarto.net)
|
|
3621
|
+
License Copyright:
|
|
3622
|
+
===
|
|
3623
|
+
|
|
3624
|
+
Copyright 2018-2021 Observable, Inc.
|
|
3625
|
+
Copyright 2021 Mapbox
|
|
3626
|
+
|
|
3627
|
+
Permission to use, copy, modify, and/or distribute this software for any purpose
|
|
3628
|
+
with or without fee is hereby granted, provided that the above copyright notice
|
|
3629
|
+
and this permission notice appear in all copies.
|
|
3630
|
+
|
|
3631
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
3632
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
3633
|
+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
3634
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
3635
|
+
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
3636
|
+
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
|
3637
|
+
THIS SOFTWARE.
|
|
3638
|
+
|
|
3639
|
+
---
|
|
3640
|
+
|
|
3641
|
+
Name: vega-voronoi
|
|
3642
|
+
Version: 5.0.0
|
|
3643
|
+
License: BSD-3-Clause
|
|
3644
|
+
Private: false
|
|
3645
|
+
Description: Voronoi diagram transform for Vega dataflows.
|
|
3646
|
+
Repository: undefined
|
|
3647
|
+
Author: Vega (https://vega.github.io)
|
|
3648
|
+
License Copyright:
|
|
3649
|
+
===
|
|
3650
|
+
|
|
3651
|
+
Copyright (c) 2015-2023, University of Washington Interactive Data Lab
|
|
3652
|
+
All rights reserved.
|
|
3653
|
+
|
|
3654
|
+
Redistribution and use in source and binary forms, with or without
|
|
3655
|
+
modification, are permitted provided that the following conditions are met:
|
|
3656
|
+
|
|
3657
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
3658
|
+
list of conditions and the following disclaimer.
|
|
3659
|
+
|
|
3660
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
3661
|
+
this list of conditions and the following disclaimer in the documentation
|
|
3662
|
+
and/or other materials provided with the distribution.
|
|
3663
|
+
|
|
3664
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
|
3665
|
+
may be used to endorse or promote products derived from this software
|
|
3666
|
+
without specific prior written permission.
|
|
3667
|
+
|
|
3668
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
3669
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
3670
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
3671
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
3672
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
3673
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
3674
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
3675
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
3676
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
3677
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3678
|
+
|
|
3679
|
+
---
|
|
3680
|
+
|
|
3681
|
+
Name: vega-wordcloud
|
|
3682
|
+
Version: 5.0.0
|
|
3683
|
+
License: BSD-3-Clause
|
|
3684
|
+
Private: false
|
|
3685
|
+
Description: Wordcloud layout transform for Vega dataflows.
|
|
3686
|
+
Repository: undefined
|
|
3687
|
+
Author: Vega (https://vega.github.io)
|
|
3688
|
+
License Copyright:
|
|
3689
|
+
===
|
|
3690
|
+
|
|
3691
|
+
Copyright (c) 2015-2023, University of Washington Interactive Data Lab
|
|
3692
|
+
All rights reserved.
|
|
3693
|
+
|
|
3694
|
+
Redistribution and use in source and binary forms, with or without
|
|
3695
|
+
modification, are permitted provided that the following conditions are met:
|
|
3696
|
+
|
|
3697
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
3698
|
+
list of conditions and the following disclaimer.
|
|
3699
|
+
|
|
3700
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
3701
|
+
this list of conditions and the following disclaimer in the documentation
|
|
3702
|
+
and/or other materials provided with the distribution.
|
|
3703
|
+
|
|
3704
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
|
3705
|
+
may be used to endorse or promote products derived from this software
|
|
3706
|
+
without specific prior written permission.
|
|
3707
|
+
|
|
3708
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
3709
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
3710
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
3711
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
3712
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
3713
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
3714
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
3715
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
3716
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
3717
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3718
|
+
|
|
3719
|
+
---
|
|
3720
|
+
|
|
3721
|
+
Name: vega-crossfilter
|
|
3722
|
+
Version: 5.0.0
|
|
3723
|
+
License: BSD-3-Clause
|
|
3724
|
+
Private: false
|
|
3725
|
+
Description: Indexed cross-filtering for Vega dataflows.
|
|
3726
|
+
Repository: undefined
|
|
3727
|
+
Author: Vega (https://vega.github.io)
|
|
3728
|
+
License Copyright:
|
|
3729
|
+
===
|
|
3730
|
+
|
|
3731
|
+
Copyright (c) 2015-2023, University of Washington Interactive Data Lab
|
|
3732
|
+
All rights reserved.
|
|
3733
|
+
|
|
3734
|
+
Redistribution and use in source and binary forms, with or without
|
|
3735
|
+
modification, are permitted provided that the following conditions are met:
|
|
3736
|
+
|
|
3737
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
3738
|
+
list of conditions and the following disclaimer.
|
|
3739
|
+
|
|
3740
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
3741
|
+
this list of conditions and the following disclaimer in the documentation
|
|
3742
|
+
and/or other materials provided with the distribution.
|
|
3743
|
+
|
|
3744
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
|
3745
|
+
may be used to endorse or promote products derived from this software
|
|
3746
|
+
without specific prior written permission.
|
|
3747
|
+
|
|
3748
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
3749
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
3750
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
3751
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
3752
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
3753
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
3754
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
3755
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
3756
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
3757
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3758
|
+
|
|
3759
|
+
---
|
|
3760
|
+
|
|
3761
|
+
Name: vega-expression
|
|
3762
|
+
Version: 6.0.0
|
|
3763
|
+
License: BSD-3-Clause
|
|
3764
|
+
Private: false
|
|
3765
|
+
Description: Vega expression parser and code generator.
|
|
3766
|
+
Repository: undefined
|
|
3767
|
+
Author: Vega (https://vega.github.io)
|
|
3768
|
+
License Copyright:
|
|
3769
|
+
===
|
|
3770
|
+
|
|
3771
|
+
Copyright (c) 2015-2023, University of Washington Interactive Data Lab
|
|
3772
|
+
All rights reserved.
|
|
3773
|
+
|
|
3774
|
+
Redistribution and use in source and binary forms, with or without
|
|
3775
|
+
modification, are permitted provided that the following conditions are met:
|
|
3776
|
+
|
|
3777
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
3778
|
+
list of conditions and the following disclaimer.
|
|
3779
|
+
|
|
3780
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
3781
|
+
this list of conditions and the following disclaimer in the documentation
|
|
3782
|
+
and/or other materials provided with the distribution.
|
|
3783
|
+
|
|
3784
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
|
3785
|
+
may be used to endorse or promote products derived from this software
|
|
3786
|
+
without specific prior written permission.
|
|
3787
|
+
|
|
3788
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
3789
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
3790
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
3791
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
3792
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
3793
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
3794
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
3795
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
3796
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
3797
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3798
|
+
|
|
3799
|
+
---
|
|
3800
|
+
|
|
3801
|
+
Name: vega-selections
|
|
3802
|
+
Version: 6.0.0
|
|
3803
|
+
License: BSD-3-Clause
|
|
3804
|
+
Private: false
|
|
3805
|
+
Description: Vega expression functions for Vega-Lite selections.
|
|
3806
|
+
Repository: undefined
|
|
3807
|
+
Author: Arvind Satyanarayan (http://arvindsatya.com)
|
|
3808
|
+
License Copyright:
|
|
3809
|
+
===
|
|
3810
|
+
|
|
3811
|
+
Copyright (c) 2015-2023, University of Washington Interactive Data Lab
|
|
3812
|
+
All rights reserved.
|
|
3813
|
+
|
|
3814
|
+
Redistribution and use in source and binary forms, with or without
|
|
3815
|
+
modification, are permitted provided that the following conditions are met:
|
|
3816
|
+
|
|
3817
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
3818
|
+
list of conditions and the following disclaimer.
|
|
3819
|
+
|
|
3820
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
3821
|
+
this list of conditions and the following disclaimer in the documentation
|
|
3822
|
+
and/or other materials provided with the distribution.
|
|
3823
|
+
|
|
3824
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
|
3825
|
+
may be used to endorse or promote products derived from this software
|
|
3826
|
+
without specific prior written permission.
|
|
3827
|
+
|
|
3828
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
3829
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
3830
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
3831
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
3832
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
3833
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
3834
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
3835
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
3836
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
3837
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3838
|
+
|
|
3839
|
+
---
|
|
3840
|
+
|
|
3841
|
+
Name: vega-functions
|
|
3842
|
+
Version: 6.0.0
|
|
3843
|
+
License: BSD-3-Clause
|
|
3844
|
+
Private: false
|
|
3845
|
+
Description: Custom functions for the Vega expression language.
|
|
3846
|
+
Repository: undefined
|
|
3847
|
+
Author: Vega (https://vega.github.io)
|
|
3848
|
+
License Copyright:
|
|
3849
|
+
===
|
|
3850
|
+
|
|
3851
|
+
Copyright (c) 2015-2023, University of Washington Interactive Data Lab
|
|
3852
|
+
All rights reserved.
|
|
3853
|
+
|
|
3854
|
+
Redistribution and use in source and binary forms, with or without
|
|
3855
|
+
modification, are permitted provided that the following conditions are met:
|
|
3856
|
+
|
|
3857
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
3858
|
+
list of conditions and the following disclaimer.
|
|
3859
|
+
|
|
3860
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
3861
|
+
this list of conditions and the following disclaimer in the documentation
|
|
3862
|
+
and/or other materials provided with the distribution.
|
|
3863
|
+
|
|
3864
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
|
3865
|
+
may be used to endorse or promote products derived from this software
|
|
3866
|
+
without specific prior written permission.
|
|
3867
|
+
|
|
3868
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
3869
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
3870
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
3871
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
3872
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
3873
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
3874
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
3875
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
3876
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
3877
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3878
|
+
|
|
3879
|
+
---
|
|
3880
|
+
|
|
3881
|
+
Name: vega-runtime
|
|
3882
|
+
Version: 7.0.0
|
|
3883
|
+
License: BSD-3-Clause
|
|
3884
|
+
Private: false
|
|
3885
|
+
Description: Runtime support for Vega dataflows.
|
|
3886
|
+
Repository: undefined
|
|
3887
|
+
Author: Vega (https://vega.github.io)
|
|
3888
|
+
License Copyright:
|
|
3889
|
+
===
|
|
3890
|
+
|
|
3891
|
+
Copyright (c) 2015-2023, University of Washington Interactive Data Lab
|
|
3892
|
+
All rights reserved.
|
|
3893
|
+
|
|
3894
|
+
Redistribution and use in source and binary forms, with or without
|
|
3895
|
+
modification, are permitted provided that the following conditions are met:
|
|
3896
|
+
|
|
3897
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
3898
|
+
list of conditions and the following disclaimer.
|
|
3899
|
+
|
|
3900
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
3901
|
+
this list of conditions and the following disclaimer in the documentation
|
|
3902
|
+
and/or other materials provided with the distribution.
|
|
3903
|
+
|
|
3904
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
|
3905
|
+
may be used to endorse or promote products derived from this software
|
|
3906
|
+
without specific prior written permission.
|
|
3907
|
+
|
|
3908
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
3909
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
3910
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
3911
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
3912
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
3913
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
3914
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
3915
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
3916
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
3917
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3918
|
+
|
|
3919
|
+
---
|
|
3920
|
+
|
|
3921
|
+
Name: vega-view
|
|
3922
|
+
Version: 6.0.0
|
|
3923
|
+
License: BSD-3-Clause
|
|
3924
|
+
Private: false
|
|
3925
|
+
Description: View component and transforms for Vega visualizations.
|
|
3926
|
+
Repository: undefined
|
|
3927
|
+
Author: Vega (https://vega.github.io)
|
|
3928
|
+
License Copyright:
|
|
3929
|
+
===
|
|
3930
|
+
|
|
3931
|
+
Copyright (c) 2015-2023, University of Washington Interactive Data Lab
|
|
3932
|
+
All rights reserved.
|
|
3933
|
+
|
|
3934
|
+
Redistribution and use in source and binary forms, with or without
|
|
3935
|
+
modification, are permitted provided that the following conditions are met:
|
|
3936
|
+
|
|
3937
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
3938
|
+
list of conditions and the following disclaimer.
|
|
3939
|
+
|
|
3940
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
3941
|
+
this list of conditions and the following disclaimer in the documentation
|
|
3942
|
+
and/or other materials provided with the distribution.
|
|
3943
|
+
|
|
3944
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
|
3945
|
+
may be used to endorse or promote products derived from this software
|
|
3946
|
+
without specific prior written permission.
|
|
3947
|
+
|
|
3948
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
3949
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
3950
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
3951
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
3952
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
3953
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
3954
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
3955
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
3956
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
3957
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
3958
|
+
|
|
3959
|
+
---
|
|
3960
|
+
|
|
3961
|
+
Name: vega-event-selector
|
|
3962
|
+
Version: 4.0.0
|
|
3963
|
+
License: BSD-3-Clause
|
|
1992
3964
|
Private: false
|
|
1993
|
-
Description:
|
|
1994
|
-
Repository:
|
|
1995
|
-
Author:
|
|
3965
|
+
Description: A CSS-inspired language to select, sequence, and compose DOM events.
|
|
3966
|
+
Repository: undefined
|
|
3967
|
+
Author: Vega (https://vega.github.io)
|
|
1996
3968
|
License Copyright:
|
|
1997
3969
|
===
|
|
1998
3970
|
|
|
1999
|
-
Copyright (c)
|
|
3971
|
+
Copyright (c) 2015-2023, University of Washington Interactive Data Lab
|
|
2000
3972
|
All rights reserved.
|
|
2001
3973
|
|
|
2002
|
-
Redistribution and use in source and binary forms, with or without
|
|
3974
|
+
Redistribution and use in source and binary forms, with or without
|
|
3975
|
+
modification, are permitted provided that the following conditions are met:
|
|
2003
3976
|
|
|
2004
|
-
Redistributions of source code must retain the above copyright notice, this
|
|
3977
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
3978
|
+
list of conditions and the following disclaimer.
|
|
2005
3979
|
|
|
2006
|
-
Redistributions in binary form must reproduce the above copyright notice,
|
|
3980
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
3981
|
+
this list of conditions and the following disclaimer in the documentation
|
|
3982
|
+
and/or other materials provided with the distribution.
|
|
2007
3983
|
|
|
2008
|
-
|
|
2009
|
-
|
|
3984
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
|
3985
|
+
may be used to endorse or promote products derived from this software
|
|
3986
|
+
without specific prior written permission.
|
|
3987
|
+
|
|
3988
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
3989
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
3990
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
3991
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
3992
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
3993
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
3994
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
3995
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
3996
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
3997
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2010
3998
|
|
|
2011
3999
|
---
|
|
2012
4000
|
|
|
2013
|
-
Name:
|
|
2014
|
-
Version:
|
|
2015
|
-
License: BSD-
|
|
4001
|
+
Name: vega-parser
|
|
4002
|
+
Version: 7.0.0
|
|
4003
|
+
License: BSD-3-Clause
|
|
2016
4004
|
Private: false
|
|
2017
|
-
Description:
|
|
2018
|
-
Repository:
|
|
2019
|
-
Author:
|
|
4005
|
+
Description: Parse Vega specifications to runtime dataflows.
|
|
4006
|
+
Repository: undefined
|
|
4007
|
+
Author: Vega (https://vega.github.io)
|
|
2020
4008
|
License Copyright:
|
|
2021
4009
|
===
|
|
2022
4010
|
|
|
2023
|
-
Copyright (c)
|
|
4011
|
+
Copyright (c) 2015-2023, University of Washington Interactive Data Lab
|
|
2024
4012
|
All rights reserved.
|
|
2025
4013
|
|
|
2026
|
-
Redistribution and use in source and binary forms, with or without
|
|
4014
|
+
Redistribution and use in source and binary forms, with or without
|
|
4015
|
+
modification, are permitted provided that the following conditions are met:
|
|
2027
4016
|
|
|
2028
|
-
Redistributions of source code must retain the above copyright notice, this
|
|
4017
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
4018
|
+
list of conditions and the following disclaimer.
|
|
2029
4019
|
|
|
2030
|
-
Redistributions in binary form must reproduce the above copyright notice,
|
|
4020
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
4021
|
+
this list of conditions and the following disclaimer in the documentation
|
|
4022
|
+
and/or other materials provided with the distribution.
|
|
2031
4023
|
|
|
2032
|
-
|
|
2033
|
-
|
|
4024
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
|
4025
|
+
may be used to endorse or promote products derived from this software
|
|
4026
|
+
without specific prior written permission.
|
|
4027
|
+
|
|
4028
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
4029
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
4030
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
4031
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
4032
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
4033
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
4034
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
4035
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
4036
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
4037
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2034
4038
|
|
|
2035
4039
|
---
|
|
2036
4040
|
|
|
2037
|
-
Name:
|
|
2038
|
-
Version:
|
|
2039
|
-
License:
|
|
4041
|
+
Name: vega
|
|
4042
|
+
Version: 6.1.2
|
|
4043
|
+
License: BSD-3-Clause
|
|
2040
4044
|
Private: false
|
|
2041
|
-
Description:
|
|
2042
|
-
Repository: git://github.com/
|
|
2043
|
-
Author:
|
|
4045
|
+
Description: The Vega visualization grammar.
|
|
4046
|
+
Repository: git+https://github.com/vega/vega.git
|
|
4047
|
+
Author: Vega (https://vega.github.io)
|
|
2044
4048
|
License Copyright:
|
|
2045
4049
|
===
|
|
2046
4050
|
|
|
2047
|
-
|
|
4051
|
+
Copyright (c) 2015-2023, University of Washington Interactive Data Lab
|
|
4052
|
+
All rights reserved.
|
|
2048
4053
|
|
|
2049
|
-
|
|
4054
|
+
Redistribution and use in source and binary forms, with or without
|
|
4055
|
+
modification, are permitted provided that the following conditions are met:
|
|
2050
4056
|
|
|
2051
|
-
|
|
4057
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
4058
|
+
list of conditions and the following disclaimer.
|
|
2052
4059
|
|
|
2053
|
-
|
|
4060
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
4061
|
+
this list of conditions and the following disclaimer in the documentation
|
|
4062
|
+
and/or other materials provided with the distribution.
|
|
2054
4063
|
|
|
2055
|
-
|
|
4064
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
|
4065
|
+
may be used to endorse or promote products derived from this software
|
|
4066
|
+
without specific prior written permission.
|
|
2056
4067
|
|
|
2057
|
-
|
|
4068
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
4069
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
4070
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
4071
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
4072
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
4073
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
4074
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
4075
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
4076
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
4077
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2058
4078
|
|
|
2059
4079
|
---
|
|
2060
4080
|
|
|
2061
|
-
Name:
|
|
2062
|
-
Version:
|
|
2063
|
-
License: BSD-
|
|
4081
|
+
Name: vega-lite
|
|
4082
|
+
Version: 6.2.0
|
|
4083
|
+
License: BSD-3-Clause
|
|
2064
4084
|
Private: false
|
|
2065
|
-
Description:
|
|
2066
|
-
Repository: git://github.com/
|
|
2067
|
-
|
|
4085
|
+
Description: Vega-Lite is a concise high-level language for interactive visualization.
|
|
4086
|
+
Repository: git+https://github.com/vega/vega-lite.git
|
|
4087
|
+
Homepage: https://vega.github.io/vega-lite/
|
|
4088
|
+
Author: Vega (https://vega.github.io)
|
|
2068
4089
|
License Copyright:
|
|
2069
4090
|
===
|
|
2070
4091
|
|
|
2071
|
-
Copyright (c)
|
|
4092
|
+
Copyright (c) 2015, University of Washington Interactive Data Lab.
|
|
2072
4093
|
All rights reserved.
|
|
2073
4094
|
|
|
2074
|
-
Redistribution and use in source and binary forms, with or without
|
|
2075
|
-
|
|
2076
|
-
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
|
4095
|
+
Redistribution and use in source and binary forms, with or without
|
|
4096
|
+
modification, are permitted provided that the following conditions are met:
|
|
2077
4097
|
|
|
2078
|
-
Redistributions
|
|
4098
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
4099
|
+
list of conditions and the following disclaimer.
|
|
2079
4100
|
|
|
2080
|
-
|
|
2081
|
-
|
|
4101
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
4102
|
+
this list of conditions and the following disclaimer in the documentation
|
|
4103
|
+
and/or other materials provided with the distribution.
|
|
2082
4104
|
|
|
2083
|
-
|
|
4105
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
|
4106
|
+
may be used to endorse or promote products derived from this software
|
|
4107
|
+
without specific prior written permission.
|
|
2084
4108
|
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
2091
|
-
|
|
2092
|
-
|
|
4109
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
4110
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
4111
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
4112
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
4113
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
4114
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
4115
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
4116
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
4117
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
4118
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2093
4119
|
|
|
2094
4120
|
---
|
|
2095
4121
|
|
|
2096
|
-
Name:
|
|
2097
|
-
Version:
|
|
2098
|
-
License: BSD-
|
|
4122
|
+
Name: vega-schema-url-parser
|
|
4123
|
+
Version: 1.1.0
|
|
4124
|
+
License: BSD-3-Clause
|
|
2099
4125
|
Private: false
|
|
2100
|
-
Description:
|
|
2101
|
-
Repository:
|
|
2102
|
-
Author:
|
|
4126
|
+
Description: A parser to get the library and version from Vega and Vega-Lite schema URLs.
|
|
4127
|
+
Repository: undefined
|
|
4128
|
+
Author: Dominik Moritz <domoritz@gmail.com>
|
|
2103
4129
|
License Copyright:
|
|
2104
4130
|
===
|
|
2105
4131
|
|
|
2106
|
-
|
|
4132
|
+
BSD 3-Clause License
|
|
4133
|
+
|
|
4134
|
+
Copyright (c) 2017, Vega
|
|
2107
4135
|
All rights reserved.
|
|
2108
4136
|
|
|
2109
|
-
Redistribution and use in source and binary forms, with or without
|
|
4137
|
+
Redistribution and use in source and binary forms, with or without
|
|
4138
|
+
modification, are permitted provided that the following conditions are met:
|
|
2110
4139
|
|
|
2111
|
-
Redistributions of source code must retain the above copyright notice, this
|
|
4140
|
+
* Redistributions of source code must retain the above copyright notice, this
|
|
4141
|
+
list of conditions and the following disclaimer.
|
|
2112
4142
|
|
|
2113
|
-
Redistributions in binary form must reproduce the above copyright notice,
|
|
4143
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
|
4144
|
+
this list of conditions and the following disclaimer in the documentation
|
|
4145
|
+
and/or other materials provided with the distribution.
|
|
2114
4146
|
|
|
2115
|
-
|
|
2116
|
-
|
|
4147
|
+
* Neither the name of the copyright holder nor the names of its
|
|
4148
|
+
contributors may be used to endorse or promote products derived from
|
|
4149
|
+
this software without specific prior written permission.
|
|
4150
|
+
|
|
4151
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
4152
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
4153
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
4154
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
4155
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
4156
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
4157
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
4158
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
4159
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
4160
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2117
4161
|
|
|
2118
4162
|
---
|
|
2119
4163
|
|
|
2120
|
-
Name:
|
|
2121
|
-
Version: 2.
|
|
2122
|
-
License: BSD-
|
|
4164
|
+
Name: vega-themes
|
|
4165
|
+
Version: 2.15.0
|
|
4166
|
+
License: BSD-3-Clause
|
|
2123
4167
|
Private: false
|
|
2124
|
-
Description:
|
|
2125
|
-
Repository: https://github.com/
|
|
2126
|
-
|
|
2127
|
-
|
|
4168
|
+
Description: Themes for stylized Vega and Vega-Lite visualizations.
|
|
4169
|
+
Repository: https://github.com/vega/vega-themes.git
|
|
4170
|
+
Author: UW Interactive Data Lab (https://idl.cs.washington.edu)
|
|
4171
|
+
Contributors:
|
|
4172
|
+
Emily Gu (https://github.com/emilygu)
|
|
4173
|
+
Arvind Satyanarayan (http://arvindsatya.com)
|
|
4174
|
+
Jeffrey Heer (https://idl.cs.washington.edu)
|
|
4175
|
+
Dominik Moritz (https://www.domoritz.de)
|
|
2128
4176
|
License Copyright:
|
|
2129
4177
|
===
|
|
2130
4178
|
|
|
2131
|
-
Copyright (c)
|
|
4179
|
+
Copyright (c) 2016, University of Washington Interactive Data Lab
|
|
2132
4180
|
All rights reserved.
|
|
2133
4181
|
|
|
2134
|
-
Redistribution and use in source and binary forms, with or without
|
|
4182
|
+
Redistribution and use in source and binary forms, with or without
|
|
4183
|
+
modification, are permitted provided that the following conditions are met:
|
|
2135
4184
|
|
|
2136
|
-
Redistributions of source code must retain the above copyright notice, this
|
|
4185
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
4186
|
+
list of conditions and the following disclaimer.
|
|
2137
4187
|
|
|
2138
|
-
Redistributions in binary form must reproduce the above copyright notice,
|
|
4188
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
4189
|
+
this list of conditions and the following disclaimer in the documentation
|
|
4190
|
+
and/or other materials provided with the distribution.
|
|
2139
4191
|
|
|
2140
|
-
|
|
2141
|
-
|
|
4192
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
|
4193
|
+
may be used to endorse or promote products derived from this software
|
|
4194
|
+
without specific prior written permission.
|
|
4195
|
+
|
|
4196
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
4197
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
4198
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
4199
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
4200
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
4201
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
4202
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
4203
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
4204
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
4205
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
4206
|
+
|
|
4207
|
+
---
|
|
4208
|
+
|
|
4209
|
+
Name: vega-tooltip
|
|
4210
|
+
Version: 0.22.1
|
|
4211
|
+
License: BSD-3-Clause
|
|
4212
|
+
Private: false
|
|
4213
|
+
Description: A tooltip plugin for Vega-Lite and Vega visualizations.
|
|
4214
|
+
Repository: https://github.com/vega/vega-tooltip.git
|
|
4215
|
+
Homepage: https://github.com/vega/vega-tooltip#readme
|
|
4216
|
+
Author: UW Interactive Data Lab (https://idl.cs.washington.edu)
|
|
4217
|
+
|
|
4218
|
+
---
|
|
4219
|
+
|
|
4220
|
+
Name: vega-embed
|
|
4221
|
+
Version: 6.5.1
|
|
4222
|
+
License: BSD-3-Clause
|
|
4223
|
+
Private: false
|
|
4224
|
+
Description: Publish Vega visualizations as embedded web components.
|
|
4225
|
+
Repository: http://github.com/vega/vega-embed.git
|
|
4226
|
+
Author: UW Interactive Data Lab (http://idl.cs.washington.edu)
|
|
4227
|
+
Contributors:
|
|
4228
|
+
Dominik Moritz (https://www.domoritz.de)
|
|
2142
4229
|
|
|
2143
4230
|
---
|
|
2144
4231
|
|
|
@@ -2795,7 +4882,7 @@ THE SOFTWARE.
|
|
|
2795
4882
|
---
|
|
2796
4883
|
|
|
2797
4884
|
Name: @uiw/codemirror-extensions-basic-setup
|
|
2798
|
-
Version: 4.
|
|
4885
|
+
Version: 4.24.2
|
|
2799
4886
|
License: MIT
|
|
2800
4887
|
Private: false
|
|
2801
4888
|
Description: Basic configuration for the CodeMirror6 code editor.
|
|
@@ -2840,7 +4927,7 @@ THE SOFTWARE.
|
|
|
2840
4927
|
---
|
|
2841
4928
|
|
|
2842
4929
|
Name: @uiw/react-codemirror
|
|
2843
|
-
Version: 4.
|
|
4930
|
+
Version: 4.24.2
|
|
2844
4931
|
License: MIT
|
|
2845
4932
|
Private: false
|
|
2846
4933
|
Description: CodeMirror component for React.
|
|
@@ -2924,4 +5011,73 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
2924
5011
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2925
5012
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2926
5013
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2927
|
-
THE SOFTWARE.
|
|
5014
|
+
THE SOFTWARE.
|
|
5015
|
+
|
|
5016
|
+
---
|
|
5017
|
+
|
|
5018
|
+
Name: redux-persist
|
|
5019
|
+
Version: 6.0.0
|
|
5020
|
+
License: MIT
|
|
5021
|
+
Private: false
|
|
5022
|
+
Description: persist and rehydrate redux stores
|
|
5023
|
+
Repository: undefined
|
|
5024
|
+
Homepage: https://github.com/rt2zz/redux-persist#readme
|
|
5025
|
+
License Copyright:
|
|
5026
|
+
===
|
|
5027
|
+
|
|
5028
|
+
MIT License
|
|
5029
|
+
|
|
5030
|
+
Copyright (c) 2017 Zack Story
|
|
5031
|
+
|
|
5032
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5033
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
5034
|
+
in the Software without restriction, including without limitation the rights
|
|
5035
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
5036
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
5037
|
+
furnished to do so, subject to the following conditions:
|
|
5038
|
+
|
|
5039
|
+
The above copyright notice and this permission notice shall be included in all
|
|
5040
|
+
copies or substantial portions of the Software.
|
|
5041
|
+
|
|
5042
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
5043
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
5044
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
5045
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
5046
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
5047
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
5048
|
+
SOFTWARE.
|
|
5049
|
+
|
|
5050
|
+
---
|
|
5051
|
+
|
|
5052
|
+
Name: i18next
|
|
5053
|
+
Version: 25.2.1
|
|
5054
|
+
License: MIT
|
|
5055
|
+
Private: false
|
|
5056
|
+
Description: i18next internationalization framework
|
|
5057
|
+
Repository: https://github.com/i18next/i18next.git
|
|
5058
|
+
Homepage: https://www.i18next.com
|
|
5059
|
+
Author: Jan Mühlemann <jan.muehlemann@gmail.com> (https://github.com/jamuhl)
|
|
5060
|
+
License Copyright:
|
|
5061
|
+
===
|
|
5062
|
+
|
|
5063
|
+
The MIT License (MIT)
|
|
5064
|
+
|
|
5065
|
+
Copyright (c) 2025 i18next
|
|
5066
|
+
|
|
5067
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5068
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
5069
|
+
in the Software without restriction, including without limitation the rights
|
|
5070
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
5071
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
5072
|
+
furnished to do so, subject to the following conditions:
|
|
5073
|
+
|
|
5074
|
+
The above copyright notice and this permission notice shall be included in all
|
|
5075
|
+
copies or substantial portions of the Software.
|
|
5076
|
+
|
|
5077
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
5078
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
5079
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
5080
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
5081
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
5082
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
5083
|
+
SOFTWARE.
|