├── .gitignore ├── LICENSE ├── README.md ├── agenda ├── package-lock.json └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Created by https://www.toptal.com/developers/gitignore/api/node 3 | # Edit at https://www.toptal.com/developers/gitignore?templates=node 4 | 5 | ### Node ### 6 | # Logs 7 | logs 8 | *.log 9 | npm-debug.log* 10 | yarn-debug.log* 11 | yarn-error.log* 12 | lerna-debug.log* 13 | .pnpm-debug.log* 14 | 15 | # Diagnostic reports (https://nodejs.org/api/report.html) 16 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 17 | 18 | # Runtime data 19 | pids 20 | *.pid 21 | *.seed 22 | *.pid.lock 23 | 24 | # Directory for instrumented libs generated by jscoverage/JSCover 25 | lib-cov 26 | 27 | # Coverage directory used by tools like istanbul 28 | coverage 29 | *.lcov 30 | 31 | # nyc test coverage 32 | .nyc_output 33 | 34 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 35 | .grunt 36 | 37 | # Bower dependency directory (https://bower.io/) 38 | bower_components 39 | 40 | # node-waf configuration 41 | .lock-wscript 42 | 43 | # Compiled binary addons (https://nodejs.org/api/addons.html) 44 | build/Release 45 | 46 | # Dependency directories 47 | node_modules/ 48 | jspm_packages/ 49 | 50 | # Snowpack dependency directory (https://snowpack.dev/) 51 | web_modules/ 52 | 53 | # TypeScript cache 54 | *.tsbuildinfo 55 | 56 | # Optional npm cache directory 57 | .npm 58 | 59 | # Optional eslint cache 60 | .eslintcache 61 | 62 | # Microbundle cache 63 | .rpt2_cache/ 64 | .rts2_cache_cjs/ 65 | .rts2_cache_es/ 66 | .rts2_cache_umd/ 67 | 68 | # Optional REPL history 69 | .node_repl_history 70 | 71 | # Output of 'npm pack' 72 | *.tgz 73 | 74 | # Yarn Integrity file 75 | .yarn-integrity 76 | 77 | # dotenv environment variables file 78 | .env 79 | .env.test 80 | .env.production 81 | 82 | # parcel-bundler cache (https://parceljs.org/) 83 | .cache 84 | .parcel-cache 85 | 86 | # Next.js build output 87 | .next 88 | out 89 | 90 | # Nuxt.js build / generate output 91 | .nuxt 92 | dist 93 | 94 | # Gatsby files 95 | .cache/ 96 | # Comment in the public line in if your project uses Gatsby and not Next.js 97 | # https://nextjs.org/blog/next-9-1#public-directory-support 98 | # public 99 | 100 | # vuepress build output 101 | .vuepress/dist 102 | 103 | # Serverless directories 104 | .serverless/ 105 | 106 | # FuseBox cache 107 | .fusebox/ 108 | 109 | # DynamoDB Local files 110 | .dynamodb/ 111 | 112 | # TernJS port file 113 | .tern-port 114 | 115 | # Stores VSCode versions used for testing VSCode extensions 116 | .vscode-test 117 | 118 | # yarn v2 119 | .yarn/cache 120 | .yarn/unplugged 121 | .yarn/build-state.yml 122 | .yarn/install-state.gz 123 | .pnp.* 124 | 125 | ### Node Patch ### 126 | # Serverless Webpack directories 127 | .webpack/ 128 | 129 | # Optional stylelint cache 130 | .stylelintcache 131 | 132 | # SvelteKit build / generate output 133 | .svelte-kit 134 | 135 | # End of https://www.toptal.com/developers/gitignore/api/node 136 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Nice Khal Agenda 2 | 3 | ![image](https://user-images.githubusercontent.com/1681236/147759942-0b613bf3-f333-448c-b748-f1a40de79332.png) 4 | 5 | 6 | An nice-looking agenda view optimized for MS teams events 7 | 8 | Requires NodeJS and [Khal](https://github.com/pimutils/khal). 9 | 10 | ## Setup 11 | 12 | * Clone this repo Run `npm i` or `yarn` Create a symlink to somewhere in your 13 | PATH: `sudo ln -s ~/PATH/TO/THIS/REPO/agenda /usr/local/bin/agenda` 14 | * (optional) set the `AGENDA_CALENDARS` env var (`export 15 | AGENDA_CALENDARS="'mycalendarnamefromkhal'"`) to filter by specific calendar 16 | name(s) 17 | * Type `agenda` to start. 18 | 19 | 20 | *Note: this script expects the Khal database to be at the default location of 21 | `$XDG_DATA_HOME/khal/khal.db`. If it's in a different place you'll need to edit 22 | line 8 of the `agenda` file.* 23 | 24 | 25 | ## Features & Usage 26 | 27 | * Highlight an item with j/k to go up/down. 28 | * Press enter to open the link to the online meeting if one was found in the 29 | current event 30 | * The agenda view will auto-refresh itself 31 | -------------------------------------------------------------------------------- /agenda: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | const blessed = require('blessed'); 4 | const sqlite3 = require('sqlite3').verbose(); 5 | const ical = require('node-ical'); 6 | const moment = require('moment') 7 | const open = require('open') 8 | const db = new sqlite3.Database(process.env.HOME + "/.local/share/khal/khal.db"); 9 | 10 | /** 11 | * Should be something like 'calendarname' (including single quotes) 12 | * Separate with a comma e.g. "'calendara', 'calendarb'" 13 | **/ 14 | const AGENDA_CALENDARS = process.env.AGENDA_CALENDARS 15 | 16 | // Create a screen object. 17 | const screen = blessed.screen({ 18 | smartCSR: true, 19 | dockBorders: true, 20 | terminal: 'xterm-256color', 21 | fullUnicode: true 22 | }); 23 | 24 | screen.title = 'Agenda'; 25 | 26 | const getEvent = data => { 27 | for (let k in data) { 28 | if (data.hasOwnProperty(k) && data[k].type == 'VEVENT') { 29 | return data[k]; 30 | } 31 | } 32 | } 33 | 34 | const title = blessed.box({ 35 | left: 'center', 36 | width: '100%', 37 | height: 4, 38 | content: "Agenda", 39 | align: 'center', 40 | border: { 41 | type: 'bg', 42 | bg: '#1d1d1b' 43 | }, 44 | style: { 45 | fg: 'white', 46 | bg: '#1d1d1b', 47 | bold: true 48 | } 49 | }) 50 | 51 | let agenda 52 | 53 | screen.append(title) 54 | 55 | function renderAgenda() { 56 | agenda && agenda.destroy() 57 | agenda = blessed.layout({ 58 | top: 3, 59 | content: "", 60 | left: 'center', 61 | width: '100%', 62 | tags: true, 63 | keys: true, 64 | padding: { 65 | top: 1, 66 | left: 2, 67 | right: 2, 68 | bottom: 1 69 | }, 70 | style: { 71 | fg: 'white' 72 | } 73 | }); 74 | screen.append(agenda) 75 | let agendaItems = [] 76 | let currSelection = 0 77 | 78 | db.serialize(function () { 79 | let todayAppended 80 | let tomorrowAppended 81 | const from = Math.round(Date.now() / 1000) - 600 82 | const to = from + 86400 83 | const calendarFilter = AGENDA_CALENDARS ? ` AND events.calendar IN (${AGENDA_CALENDARS})` : '' 84 | 85 | db.each(`SELECT item, recs_loc.href, dtstart, dtend, ref, etag, dtype, events.calendar 86 | FROM recs_loc JOIN events ON 87 | recs_loc.href = events.href AND 88 | recs_loc.calendar = events.calendar WHERE 89 | (dtstart >= ${from} AND dtend <= ${to})${calendarFilter} 90 | ORDER BY dtstart`, 91 | function (err, row) { 92 | if (err) { 93 | console.error(err) 94 | return 95 | } 96 | const ev = getEvent(ical.sync.parseICS(row.item)); 97 | let startDate 98 | if (ev.rrule) { 99 | const dates = ev.rrule.between(new Date(from * 1000), new Date(to * 1000)) 100 | if (!dates.length) return; 101 | startDate = moment(dates[0]) 102 | } else { 103 | startDate = moment(ev.start) 104 | } 105 | const listItem = blessed.box({ 106 | content: "", 107 | left: 'center', 108 | keys: true, 109 | width: '100%-4', 110 | height: 'shrink', 111 | focusable: true, 112 | tags: true, 113 | style: { 114 | focus: { 115 | fg: 'green' 116 | } 117 | } 118 | }); 119 | 120 | listItem.on('keypress', (key, e) => { 121 | if (key === 'j' && currSelection < (agendaItems.length - 1)) { 122 | currSelection++ 123 | screen.focusNext() 124 | } 125 | if (key === 'k' && currSelection > 0) { 126 | currSelection-- 127 | screen.focusPrevious() 128 | } 129 | if ((e.name === 'enter' || e.name === 'return') && agendaItems[currSelection]) { 130 | const agendaItem = agendaItems[currSelection] 131 | if (agendaItem.msteams && agendaItem.meetingLink) { 132 | open(agendaItem.meetingLink, {app: {name: 'teams'}}) 133 | } else if (agendaItem.meetingLink) { 134 | open(agendaItem.meetingLink) 135 | } else { 136 | // TODO pop up with description 137 | } 138 | } 139 | }) 140 | 141 | // render headings if needed 142 | if (startDate.date() === new Date().getDate() && !todayAppended) { 143 | const heading = blessed.box({ 144 | width: '100%-4', 145 | padding: { 146 | bottom: 1 147 | }, 148 | content: `{blue-fg}{bold}Today/Now{/} :: {cyan-fg}${moment().format("dddd Do")}{/cyan-fg}`, 149 | tags: true 150 | }) 151 | agenda.append(heading) 152 | todayAppended = true 153 | } 154 | if (startDate.date() === (new Date().getDate() + 1) && !tomorrowAppended) { 155 | const heading = blessed.box({ 156 | width: '100%-4', 157 | padding: { 158 | top: todayAppended ? 2 : 0, 159 | bottom: 1 160 | }, 161 | content: `{bold}{blue-fg}Tomorrow{/} :: {cyan-fg}${moment().add(1, 'day').format("dddd Do")}{/}`, 162 | tags: true 163 | }) 164 | agenda.append(heading) 165 | tomorrowAppended = true 166 | } 167 | 168 | const agendaItem = { 169 | element: listItem, 170 | meetingLink: ev['MICROSOFT-SKYPETEAMSMEETINGURL'] 171 | } 172 | 173 | if (agendaItem?.meetingLink?.includes("teams.microsoft.com") || ev.location?.includes("teams.microsoft.com")) { 174 | agendaItem.meetingLink = agendaItem.meetingLink.replace(/^https/, "msteams") 175 | agendaItem.msteams = true 176 | } 177 | 178 | if (ev.location?.includes("zoom.us")) { 179 | const link = ev.location.split(",").find(v => v.includes("zoom.us")) 180 | if (link) agendaItem.meetingLink = link 181 | agendaItem.zoom = true 182 | } 183 | 184 | const location = (agendaItem.msteams ? 'Microsoft Teams Meeting' : (agendaItem.zoom ? 'Zoom Meeting' : ev.location)) 185 | 186 | listItem.setContent(`\ 187 | ╷ 188 | {#fff-fg}${startDate.format("HH:mm")}{/} │ {#6272a4-fg}${startDate.fromNow()}{/} 189 | {#fff-fg}{/} │ {bold}{white-fg}${ev.summary.val || ev.summary}{/} 190 | ${moment(ev.end).format("{#fff-fg}HH:mm{/}")} │ {white-fg}${location}{/} 191 | ╵ `) 192 | agendaItems.push(agendaItem) 193 | agenda.append(listItem) 194 | 195 | screen.render() 196 | agendaItems.length === 1 && agendaItems[0].element.focus() 197 | }); 198 | }); 199 | } 200 | renderAgenda() 201 | 202 | setInterval(renderAgenda, 5000) 203 | 204 | 205 | // Quit on Escape, q, or Control-C. 206 | screen.key(['escape', 'q', 'C-c'], function (_ch, _key) { 207 | screen.destroy() 208 | }); 209 | 210 | // Render the screen. 211 | screen.render(); 212 | 213 | // close the db 214 | screen.on('destroy', () => { 215 | db.close(); 216 | return process.exit(0); 217 | }) 218 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "agenda", 3 | "version": "1.0.0", 4 | "lockfileVersion": 1, 5 | "requires": true, 6 | "dependencies": { 7 | "abbrev": { 8 | "version": "1.1.1", 9 | "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", 10 | "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" 11 | }, 12 | "ajv": { 13 | "version": "6.12.6", 14 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 15 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 16 | "optional": true, 17 | "requires": { 18 | "fast-deep-equal": "^3.1.1", 19 | "fast-json-stable-stringify": "^2.0.0", 20 | "json-schema-traverse": "^0.4.1", 21 | "uri-js": "^4.2.2" 22 | } 23 | }, 24 | "ansi-regex": { 25 | "version": "2.1.1", 26 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", 27 | "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" 28 | }, 29 | "aproba": { 30 | "version": "1.2.0", 31 | "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", 32 | "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" 33 | }, 34 | "are-we-there-yet": { 35 | "version": "1.1.7", 36 | "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz", 37 | "integrity": "sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==", 38 | "requires": { 39 | "delegates": "^1.0.0", 40 | "readable-stream": "^2.0.6" 41 | } 42 | }, 43 | "asn1": { 44 | "version": "0.2.6", 45 | "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", 46 | "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", 47 | "optional": true, 48 | "requires": { 49 | "safer-buffer": "~2.1.0" 50 | } 51 | }, 52 | "assert-plus": { 53 | "version": "1.0.0", 54 | "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", 55 | "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", 56 | "optional": true 57 | }, 58 | "asynckit": { 59 | "version": "0.4.0", 60 | "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", 61 | "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", 62 | "optional": true 63 | }, 64 | "aws-sign2": { 65 | "version": "0.7.0", 66 | "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", 67 | "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", 68 | "optional": true 69 | }, 70 | "aws4": { 71 | "version": "1.11.0", 72 | "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", 73 | "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==", 74 | "optional": true 75 | }, 76 | "axios": { 77 | "version": "0.24.0", 78 | "resolved": "https://registry.npmjs.org/axios/-/axios-0.24.0.tgz", 79 | "integrity": "sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==", 80 | "requires": { 81 | "follow-redirects": "^1.14.4" 82 | } 83 | }, 84 | "balanced-match": { 85 | "version": "1.0.2", 86 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 87 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" 88 | }, 89 | "bcrypt-pbkdf": { 90 | "version": "1.0.2", 91 | "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", 92 | "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", 93 | "optional": true, 94 | "requires": { 95 | "tweetnacl": "^0.14.3" 96 | } 97 | }, 98 | "blessed": { 99 | "version": "0.1.81", 100 | "resolved": "https://registry.npmjs.org/blessed/-/blessed-0.1.81.tgz", 101 | "integrity": "sha1-+WLWh+wsNpVwrnGvhDJW5tDKESk=" 102 | }, 103 | "block-stream": { 104 | "version": "0.0.9", 105 | "resolved": "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz", 106 | "integrity": "sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo=", 107 | "optional": true, 108 | "requires": { 109 | "inherits": "~2.0.0" 110 | } 111 | }, 112 | "brace-expansion": { 113 | "version": "1.1.11", 114 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 115 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 116 | "requires": { 117 | "balanced-match": "^1.0.0", 118 | "concat-map": "0.0.1" 119 | } 120 | }, 121 | "caseless": { 122 | "version": "0.12.0", 123 | "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", 124 | "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", 125 | "optional": true 126 | }, 127 | "chownr": { 128 | "version": "1.1.4", 129 | "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", 130 | "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" 131 | }, 132 | "code-point-at": { 133 | "version": "1.1.0", 134 | "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", 135 | "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" 136 | }, 137 | "combined-stream": { 138 | "version": "1.0.8", 139 | "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", 140 | "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", 141 | "optional": true, 142 | "requires": { 143 | "delayed-stream": "~1.0.0" 144 | } 145 | }, 146 | "concat-map": { 147 | "version": "0.0.1", 148 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 149 | "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" 150 | }, 151 | "console-control-strings": { 152 | "version": "1.1.0", 153 | "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", 154 | "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=" 155 | }, 156 | "core-util-is": { 157 | "version": "1.0.3", 158 | "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", 159 | "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" 160 | }, 161 | "dashdash": { 162 | "version": "1.14.1", 163 | "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", 164 | "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", 165 | "optional": true, 166 | "requires": { 167 | "assert-plus": "^1.0.0" 168 | } 169 | }, 170 | "debug": { 171 | "version": "3.2.7", 172 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 173 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 174 | "requires": { 175 | "ms": "^2.1.1" 176 | } 177 | }, 178 | "deep-extend": { 179 | "version": "0.6.0", 180 | "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", 181 | "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" 182 | }, 183 | "define-lazy-prop": { 184 | "version": "2.0.0", 185 | "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", 186 | "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==" 187 | }, 188 | "delayed-stream": { 189 | "version": "1.0.0", 190 | "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", 191 | "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", 192 | "optional": true 193 | }, 194 | "delegates": { 195 | "version": "1.0.0", 196 | "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", 197 | "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=" 198 | }, 199 | "detect-libc": { 200 | "version": "1.0.3", 201 | "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", 202 | "integrity": "sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=" 203 | }, 204 | "ecc-jsbn": { 205 | "version": "0.1.2", 206 | "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", 207 | "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", 208 | "optional": true, 209 | "requires": { 210 | "jsbn": "~0.1.0", 211 | "safer-buffer": "^2.1.0" 212 | } 213 | }, 214 | "extend": { 215 | "version": "3.0.2", 216 | "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", 217 | "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", 218 | "optional": true 219 | }, 220 | "extsprintf": { 221 | "version": "1.3.0", 222 | "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", 223 | "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", 224 | "optional": true 225 | }, 226 | "fast-deep-equal": { 227 | "version": "3.1.3", 228 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 229 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 230 | "optional": true 231 | }, 232 | "fast-json-stable-stringify": { 233 | "version": "2.1.0", 234 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 235 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 236 | "optional": true 237 | }, 238 | "follow-redirects": { 239 | "version": "1.14.8", 240 | "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.8.tgz", 241 | "integrity": "sha512-1x0S9UVJHsQprFcEC/qnNzBLcIxsjAV905f/UkQxbclCsoTWlacCNOpQa/anodLl2uaEKFhfWOvM2Qg77+15zA==" 242 | }, 243 | "forever-agent": { 244 | "version": "0.6.1", 245 | "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", 246 | "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", 247 | "optional": true 248 | }, 249 | "form-data": { 250 | "version": "2.3.3", 251 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", 252 | "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", 253 | "optional": true, 254 | "requires": { 255 | "asynckit": "^0.4.0", 256 | "combined-stream": "^1.0.6", 257 | "mime-types": "^2.1.12" 258 | } 259 | }, 260 | "fs-minipass": { 261 | "version": "1.2.7", 262 | "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.7.tgz", 263 | "integrity": "sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==", 264 | "requires": { 265 | "minipass": "^2.6.0" 266 | } 267 | }, 268 | "fs.realpath": { 269 | "version": "1.0.0", 270 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 271 | "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" 272 | }, 273 | "fstream": { 274 | "version": "1.0.12", 275 | "resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz", 276 | "integrity": "sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==", 277 | "optional": true, 278 | "requires": { 279 | "graceful-fs": "^4.1.2", 280 | "inherits": "~2.0.0", 281 | "mkdirp": ">=0.5 0", 282 | "rimraf": "2" 283 | } 284 | }, 285 | "gauge": { 286 | "version": "2.7.4", 287 | "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", 288 | "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", 289 | "requires": { 290 | "aproba": "^1.0.3", 291 | "console-control-strings": "^1.0.0", 292 | "has-unicode": "^2.0.0", 293 | "object-assign": "^4.1.0", 294 | "signal-exit": "^3.0.0", 295 | "string-width": "^1.0.1", 296 | "strip-ansi": "^3.0.1", 297 | "wide-align": "^1.1.0" 298 | } 299 | }, 300 | "getpass": { 301 | "version": "0.1.7", 302 | "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", 303 | "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", 304 | "optional": true, 305 | "requires": { 306 | "assert-plus": "^1.0.0" 307 | } 308 | }, 309 | "glob": { 310 | "version": "7.2.0", 311 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", 312 | "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", 313 | "requires": { 314 | "fs.realpath": "^1.0.0", 315 | "inflight": "^1.0.4", 316 | "inherits": "2", 317 | "minimatch": "^3.0.4", 318 | "once": "^1.3.0", 319 | "path-is-absolute": "^1.0.0" 320 | } 321 | }, 322 | "graceful-fs": { 323 | "version": "4.2.8", 324 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", 325 | "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==", 326 | "optional": true 327 | }, 328 | "har-schema": { 329 | "version": "2.0.0", 330 | "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", 331 | "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", 332 | "optional": true 333 | }, 334 | "har-validator": { 335 | "version": "5.1.5", 336 | "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", 337 | "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", 338 | "optional": true, 339 | "requires": { 340 | "ajv": "^6.12.3", 341 | "har-schema": "^2.0.0" 342 | } 343 | }, 344 | "has-unicode": { 345 | "version": "2.0.1", 346 | "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", 347 | "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=" 348 | }, 349 | "http-signature": { 350 | "version": "1.2.0", 351 | "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", 352 | "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", 353 | "optional": true, 354 | "requires": { 355 | "assert-plus": "^1.0.0", 356 | "jsprim": "^1.2.2", 357 | "sshpk": "^1.7.0" 358 | } 359 | }, 360 | "iconv-lite": { 361 | "version": "0.4.24", 362 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", 363 | "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", 364 | "requires": { 365 | "safer-buffer": ">= 2.1.2 < 3" 366 | } 367 | }, 368 | "ignore-walk": { 369 | "version": "3.0.4", 370 | "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.4.tgz", 371 | "integrity": "sha512-PY6Ii8o1jMRA1z4F2hRkH/xN59ox43DavKvD3oDpfurRlOJyAHpifIwpbdv1n4jt4ov0jSpw3kQ4GhJnpBL6WQ==", 372 | "requires": { 373 | "minimatch": "^3.0.4" 374 | } 375 | }, 376 | "inflight": { 377 | "version": "1.0.6", 378 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 379 | "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", 380 | "requires": { 381 | "once": "^1.3.0", 382 | "wrappy": "1" 383 | } 384 | }, 385 | "inherits": { 386 | "version": "2.0.4", 387 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 388 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" 389 | }, 390 | "ini": { 391 | "version": "1.3.8", 392 | "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", 393 | "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" 394 | }, 395 | "is-docker": { 396 | "version": "2.2.1", 397 | "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", 398 | "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" 399 | }, 400 | "is-fullwidth-code-point": { 401 | "version": "1.0.0", 402 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", 403 | "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", 404 | "requires": { 405 | "number-is-nan": "^1.0.0" 406 | } 407 | }, 408 | "is-typedarray": { 409 | "version": "1.0.0", 410 | "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", 411 | "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", 412 | "optional": true 413 | }, 414 | "is-wsl": { 415 | "version": "2.2.0", 416 | "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", 417 | "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", 418 | "requires": { 419 | "is-docker": "^2.0.0" 420 | } 421 | }, 422 | "isarray": { 423 | "version": "1.0.0", 424 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", 425 | "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" 426 | }, 427 | "isexe": { 428 | "version": "2.0.0", 429 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 430 | "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", 431 | "optional": true 432 | }, 433 | "isstream": { 434 | "version": "0.1.2", 435 | "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", 436 | "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", 437 | "optional": true 438 | }, 439 | "jsbn": { 440 | "version": "0.1.1", 441 | "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", 442 | "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", 443 | "optional": true 444 | }, 445 | "json-schema": { 446 | "version": "0.4.0", 447 | "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", 448 | "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", 449 | "optional": true 450 | }, 451 | "json-schema-traverse": { 452 | "version": "0.4.1", 453 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 454 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 455 | "optional": true 456 | }, 457 | "json-stringify-safe": { 458 | "version": "5.0.1", 459 | "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", 460 | "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", 461 | "optional": true 462 | }, 463 | "jsprim": { 464 | "version": "1.4.2", 465 | "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", 466 | "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", 467 | "optional": true, 468 | "requires": { 469 | "assert-plus": "1.0.0", 470 | "extsprintf": "1.3.0", 471 | "json-schema": "0.4.0", 472 | "verror": "1.10.0" 473 | } 474 | }, 475 | "luxon": { 476 | "version": "1.28.0", 477 | "resolved": "https://registry.npmjs.org/luxon/-/luxon-1.28.0.tgz", 478 | "integrity": "sha512-TfTiyvZhwBYM/7QdAVDh+7dBTBA29v4ik0Ce9zda3Mnf8on1S5KJI8P2jKFZ8+5C0jhmr0KwJEO/Wdpm0VeWJQ==", 479 | "optional": true 480 | }, 481 | "mime-db": { 482 | "version": "1.51.0", 483 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.51.0.tgz", 484 | "integrity": "sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==", 485 | "optional": true 486 | }, 487 | "mime-types": { 488 | "version": "2.1.34", 489 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.34.tgz", 490 | "integrity": "sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==", 491 | "optional": true, 492 | "requires": { 493 | "mime-db": "1.51.0" 494 | } 495 | }, 496 | "minimatch": { 497 | "version": "3.0.4", 498 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", 499 | "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", 500 | "requires": { 501 | "brace-expansion": "^1.1.7" 502 | } 503 | }, 504 | "minimist": { 505 | "version": "1.2.5", 506 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", 507 | "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" 508 | }, 509 | "minipass": { 510 | "version": "2.9.0", 511 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz", 512 | "integrity": "sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==", 513 | "requires": { 514 | "safe-buffer": "^5.1.2", 515 | "yallist": "^3.0.0" 516 | } 517 | }, 518 | "minizlib": { 519 | "version": "1.3.3", 520 | "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-1.3.3.tgz", 521 | "integrity": "sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==", 522 | "requires": { 523 | "minipass": "^2.9.0" 524 | } 525 | }, 526 | "mkdirp": { 527 | "version": "0.5.5", 528 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", 529 | "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", 530 | "requires": { 531 | "minimist": "^1.2.5" 532 | } 533 | }, 534 | "moment": { 535 | "version": "2.29.1", 536 | "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.1.tgz", 537 | "integrity": "sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ==" 538 | }, 539 | "moment-timezone": { 540 | "version": "0.5.34", 541 | "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.34.tgz", 542 | "integrity": "sha512-3zAEHh2hKUs3EXLESx/wsgw6IQdusOT8Bxm3D9UrHPQR7zlMmzwybC8zHEM1tQ4LJwP7fcxrWr8tuBg05fFCbg==", 543 | "requires": { 544 | "moment": ">= 2.9.0" 545 | } 546 | }, 547 | "ms": { 548 | "version": "2.1.3", 549 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 550 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" 551 | }, 552 | "needle": { 553 | "version": "2.9.1", 554 | "resolved": "https://registry.npmjs.org/needle/-/needle-2.9.1.tgz", 555 | "integrity": "sha512-6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ==", 556 | "requires": { 557 | "debug": "^3.2.6", 558 | "iconv-lite": "^0.4.4", 559 | "sax": "^1.2.4" 560 | } 561 | }, 562 | "node-addon-api": { 563 | "version": "3.2.1", 564 | "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.2.1.tgz", 565 | "integrity": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==" 566 | }, 567 | "node-gyp": { 568 | "version": "3.8.0", 569 | "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-3.8.0.tgz", 570 | "integrity": "sha512-3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA==", 571 | "optional": true, 572 | "requires": { 573 | "fstream": "^1.0.0", 574 | "glob": "^7.0.3", 575 | "graceful-fs": "^4.1.2", 576 | "mkdirp": "^0.5.0", 577 | "nopt": "2 || 3", 578 | "npmlog": "0 || 1 || 2 || 3 || 4", 579 | "osenv": "0", 580 | "request": "^2.87.0", 581 | "rimraf": "2", 582 | "semver": "~5.3.0", 583 | "tar": "^2.0.0", 584 | "which": "1" 585 | } 586 | }, 587 | "node-ical": { 588 | "version": "0.14.1", 589 | "resolved": "https://registry.npmjs.org/node-ical/-/node-ical-0.14.1.tgz", 590 | "integrity": "sha512-EUlbAWK0iaKFqimtGCyKOnldtvBNyzLqk9NCTAO6TiVby8vsEcAOlIrkUjZKM0Wrvh3YBCbeWbW+xA2cw5BdDw==", 591 | "requires": { 592 | "axios": "^0.24.0", 593 | "moment-timezone": "^0.5.31", 594 | "rrule": "2.6.4", 595 | "uuid": "^8.3.1" 596 | }, 597 | "dependencies": { 598 | "uuid": { 599 | "version": "8.3.2", 600 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", 601 | "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" 602 | } 603 | } 604 | }, 605 | "node-pre-gyp": { 606 | "version": "0.11.0", 607 | "resolved": "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.11.0.tgz", 608 | "integrity": "sha512-TwWAOZb0j7e9eGaf9esRx3ZcLaE5tQ2lvYy1pb5IAaG1a2e2Kv5Lms1Y4hpj+ciXJRofIxxlt5haeQ/2ANeE0Q==", 609 | "requires": { 610 | "detect-libc": "^1.0.2", 611 | "mkdirp": "^0.5.1", 612 | "needle": "^2.2.1", 613 | "nopt": "^4.0.1", 614 | "npm-packlist": "^1.1.6", 615 | "npmlog": "^4.0.2", 616 | "rc": "^1.2.7", 617 | "rimraf": "^2.6.1", 618 | "semver": "^5.3.0", 619 | "tar": "^4" 620 | }, 621 | "dependencies": { 622 | "nopt": { 623 | "version": "4.0.3", 624 | "resolved": "https://registry.npmjs.org/nopt/-/nopt-4.0.3.tgz", 625 | "integrity": "sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg==", 626 | "requires": { 627 | "abbrev": "1", 628 | "osenv": "^0.1.4" 629 | } 630 | }, 631 | "safe-buffer": { 632 | "version": "5.2.1", 633 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 634 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" 635 | }, 636 | "tar": { 637 | "version": "4.4.19", 638 | "resolved": "https://registry.npmjs.org/tar/-/tar-4.4.19.tgz", 639 | "integrity": "sha512-a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA==", 640 | "requires": { 641 | "chownr": "^1.1.4", 642 | "fs-minipass": "^1.2.7", 643 | "minipass": "^2.9.0", 644 | "minizlib": "^1.3.3", 645 | "mkdirp": "^0.5.5", 646 | "safe-buffer": "^5.2.1", 647 | "yallist": "^3.1.1" 648 | } 649 | } 650 | } 651 | }, 652 | "nopt": { 653 | "version": "3.0.6", 654 | "resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz", 655 | "integrity": "sha1-xkZdvwirzU2zWTF/eaxopkayj/k=", 656 | "optional": true, 657 | "requires": { 658 | "abbrev": "1" 659 | } 660 | }, 661 | "npm-bundled": { 662 | "version": "1.1.2", 663 | "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.1.2.tgz", 664 | "integrity": "sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==", 665 | "requires": { 666 | "npm-normalize-package-bin": "^1.0.1" 667 | } 668 | }, 669 | "npm-normalize-package-bin": { 670 | "version": "1.0.1", 671 | "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz", 672 | "integrity": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==" 673 | }, 674 | "npm-packlist": { 675 | "version": "1.4.8", 676 | "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.4.8.tgz", 677 | "integrity": "sha512-5+AZgwru5IevF5ZdnFglB5wNlHG1AOOuw28WhUq8/8emhBmLv6jX5by4WJCh7lW0uSYZYS6DXqIsyZVIXRZU9A==", 678 | "requires": { 679 | "ignore-walk": "^3.0.1", 680 | "npm-bundled": "^1.0.1", 681 | "npm-normalize-package-bin": "^1.0.1" 682 | } 683 | }, 684 | "npmlog": { 685 | "version": "4.1.2", 686 | "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", 687 | "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", 688 | "requires": { 689 | "are-we-there-yet": "~1.1.2", 690 | "console-control-strings": "~1.1.0", 691 | "gauge": "~2.7.3", 692 | "set-blocking": "~2.0.0" 693 | } 694 | }, 695 | "number-is-nan": { 696 | "version": "1.0.1", 697 | "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", 698 | "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" 699 | }, 700 | "oauth-sign": { 701 | "version": "0.9.0", 702 | "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", 703 | "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", 704 | "optional": true 705 | }, 706 | "object-assign": { 707 | "version": "4.1.1", 708 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 709 | "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" 710 | }, 711 | "once": { 712 | "version": "1.4.0", 713 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 714 | "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", 715 | "requires": { 716 | "wrappy": "1" 717 | } 718 | }, 719 | "open": { 720 | "version": "8.4.0", 721 | "resolved": "https://registry.npmjs.org/open/-/open-8.4.0.tgz", 722 | "integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==", 723 | "requires": { 724 | "define-lazy-prop": "^2.0.0", 725 | "is-docker": "^2.1.1", 726 | "is-wsl": "^2.2.0" 727 | } 728 | }, 729 | "os-homedir": { 730 | "version": "1.0.2", 731 | "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", 732 | "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=" 733 | }, 734 | "os-tmpdir": { 735 | "version": "1.0.2", 736 | "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", 737 | "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=" 738 | }, 739 | "osenv": { 740 | "version": "0.1.5", 741 | "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz", 742 | "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", 743 | "requires": { 744 | "os-homedir": "^1.0.0", 745 | "os-tmpdir": "^1.0.0" 746 | } 747 | }, 748 | "path-is-absolute": { 749 | "version": "1.0.1", 750 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 751 | "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" 752 | }, 753 | "performance-now": { 754 | "version": "2.1.0", 755 | "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", 756 | "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", 757 | "optional": true 758 | }, 759 | "process-nextick-args": { 760 | "version": "2.0.1", 761 | "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", 762 | "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" 763 | }, 764 | "psl": { 765 | "version": "1.8.0", 766 | "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", 767 | "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==", 768 | "optional": true 769 | }, 770 | "punycode": { 771 | "version": "2.1.1", 772 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", 773 | "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", 774 | "optional": true 775 | }, 776 | "qs": { 777 | "version": "6.5.2", 778 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", 779 | "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", 780 | "optional": true 781 | }, 782 | "rc": { 783 | "version": "1.2.8", 784 | "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", 785 | "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", 786 | "requires": { 787 | "deep-extend": "^0.6.0", 788 | "ini": "~1.3.0", 789 | "minimist": "^1.2.0", 790 | "strip-json-comments": "~2.0.1" 791 | } 792 | }, 793 | "readable-stream": { 794 | "version": "2.3.7", 795 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", 796 | "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", 797 | "requires": { 798 | "core-util-is": "~1.0.0", 799 | "inherits": "~2.0.3", 800 | "isarray": "~1.0.0", 801 | "process-nextick-args": "~2.0.0", 802 | "safe-buffer": "~5.1.1", 803 | "string_decoder": "~1.1.1", 804 | "util-deprecate": "~1.0.1" 805 | } 806 | }, 807 | "request": { 808 | "version": "2.88.2", 809 | "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", 810 | "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", 811 | "optional": true, 812 | "requires": { 813 | "aws-sign2": "~0.7.0", 814 | "aws4": "^1.8.0", 815 | "caseless": "~0.12.0", 816 | "combined-stream": "~1.0.6", 817 | "extend": "~3.0.2", 818 | "forever-agent": "~0.6.1", 819 | "form-data": "~2.3.2", 820 | "har-validator": "~5.1.3", 821 | "http-signature": "~1.2.0", 822 | "is-typedarray": "~1.0.0", 823 | "isstream": "~0.1.2", 824 | "json-stringify-safe": "~5.0.1", 825 | "mime-types": "~2.1.19", 826 | "oauth-sign": "~0.9.0", 827 | "performance-now": "^2.1.0", 828 | "qs": "~6.5.2", 829 | "safe-buffer": "^5.1.2", 830 | "tough-cookie": "~2.5.0", 831 | "tunnel-agent": "^0.6.0", 832 | "uuid": "^3.3.2" 833 | } 834 | }, 835 | "rimraf": { 836 | "version": "2.7.1", 837 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", 838 | "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", 839 | "requires": { 840 | "glob": "^7.1.3" 841 | } 842 | }, 843 | "rrule": { 844 | "version": "2.6.4", 845 | "resolved": "https://registry.npmjs.org/rrule/-/rrule-2.6.4.tgz", 846 | "integrity": "sha512-sLdnh4lmjUqq8liFiOUXD5kWp/FcnbDLPwq5YAc/RrN6120XOPb86Ae5zxF7ttBVq8O3LxjjORMEit1baluahA==", 847 | "requires": { 848 | "luxon": "^1.21.3", 849 | "tslib": "^1.10.0" 850 | } 851 | }, 852 | "safe-buffer": { 853 | "version": "5.1.2", 854 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", 855 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" 856 | }, 857 | "safer-buffer": { 858 | "version": "2.1.2", 859 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 860 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" 861 | }, 862 | "sax": { 863 | "version": "1.2.4", 864 | "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", 865 | "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" 866 | }, 867 | "semver": { 868 | "version": "5.3.0", 869 | "resolved": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz", 870 | "integrity": "sha1-myzl094C0XxgEq0yaqa00M9U+U8=" 871 | }, 872 | "set-blocking": { 873 | "version": "2.0.0", 874 | "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", 875 | "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" 876 | }, 877 | "signal-exit": { 878 | "version": "3.0.6", 879 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.6.tgz", 880 | "integrity": "sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ==" 881 | }, 882 | "sqlite3": { 883 | "version": "5.0.2", 884 | "resolved": "https://registry.npmjs.org/sqlite3/-/sqlite3-5.0.2.tgz", 885 | "integrity": "sha512-1SdTNo+BVU211Xj1csWa8lV6KM0CtucDwRyA0VHl91wEH1Mgh7RxUpI4rVvG7OhHrzCSGaVyW5g8vKvlrk9DJA==", 886 | "requires": { 887 | "node-addon-api": "^3.0.0", 888 | "node-gyp": "3.x", 889 | "node-pre-gyp": "^0.11.0" 890 | } 891 | }, 892 | "sshpk": { 893 | "version": "1.16.1", 894 | "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", 895 | "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", 896 | "optional": true, 897 | "requires": { 898 | "asn1": "~0.2.3", 899 | "assert-plus": "^1.0.0", 900 | "bcrypt-pbkdf": "^1.0.0", 901 | "dashdash": "^1.12.0", 902 | "ecc-jsbn": "~0.1.1", 903 | "getpass": "^0.1.1", 904 | "jsbn": "~0.1.0", 905 | "safer-buffer": "^2.0.2", 906 | "tweetnacl": "~0.14.0" 907 | } 908 | }, 909 | "string-width": { 910 | "version": "1.0.2", 911 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", 912 | "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", 913 | "requires": { 914 | "code-point-at": "^1.0.0", 915 | "is-fullwidth-code-point": "^1.0.0", 916 | "strip-ansi": "^3.0.0" 917 | } 918 | }, 919 | "string_decoder": { 920 | "version": "1.1.1", 921 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", 922 | "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", 923 | "requires": { 924 | "safe-buffer": "~5.1.0" 925 | } 926 | }, 927 | "strip-ansi": { 928 | "version": "3.0.1", 929 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", 930 | "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", 931 | "requires": { 932 | "ansi-regex": "^2.0.0" 933 | } 934 | }, 935 | "strip-json-comments": { 936 | "version": "2.0.1", 937 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", 938 | "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=" 939 | }, 940 | "tar": { 941 | "version": "2.2.2", 942 | "resolved": "https://registry.npmjs.org/tar/-/tar-2.2.2.tgz", 943 | "integrity": "sha512-FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA==", 944 | "optional": true, 945 | "requires": { 946 | "block-stream": "*", 947 | "fstream": "^1.0.12", 948 | "inherits": "2" 949 | } 950 | }, 951 | "tough-cookie": { 952 | "version": "2.5.0", 953 | "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", 954 | "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", 955 | "optional": true, 956 | "requires": { 957 | "psl": "^1.1.28", 958 | "punycode": "^2.1.1" 959 | } 960 | }, 961 | "tslib": { 962 | "version": "1.14.1", 963 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", 964 | "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" 965 | }, 966 | "tunnel-agent": { 967 | "version": "0.6.0", 968 | "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", 969 | "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", 970 | "optional": true, 971 | "requires": { 972 | "safe-buffer": "^5.0.1" 973 | } 974 | }, 975 | "tweetnacl": { 976 | "version": "0.14.5", 977 | "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", 978 | "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", 979 | "optional": true 980 | }, 981 | "uri-js": { 982 | "version": "4.4.1", 983 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 984 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 985 | "optional": true, 986 | "requires": { 987 | "punycode": "^2.1.0" 988 | } 989 | }, 990 | "util-deprecate": { 991 | "version": "1.0.2", 992 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 993 | "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" 994 | }, 995 | "uuid": { 996 | "version": "3.4.0", 997 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", 998 | "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", 999 | "optional": true 1000 | }, 1001 | "verror": { 1002 | "version": "1.10.0", 1003 | "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", 1004 | "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", 1005 | "optional": true, 1006 | "requires": { 1007 | "assert-plus": "^1.0.0", 1008 | "core-util-is": "1.0.2", 1009 | "extsprintf": "^1.2.0" 1010 | }, 1011 | "dependencies": { 1012 | "core-util-is": { 1013 | "version": "1.0.2", 1014 | "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", 1015 | "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", 1016 | "optional": true 1017 | } 1018 | } 1019 | }, 1020 | "which": { 1021 | "version": "1.3.1", 1022 | "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", 1023 | "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", 1024 | "optional": true, 1025 | "requires": { 1026 | "isexe": "^2.0.0" 1027 | } 1028 | }, 1029 | "wide-align": { 1030 | "version": "1.1.5", 1031 | "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", 1032 | "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", 1033 | "requires": { 1034 | "string-width": "^1.0.2 || 2 || 3 || 4" 1035 | } 1036 | }, 1037 | "wrappy": { 1038 | "version": "1.0.2", 1039 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 1040 | "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" 1041 | }, 1042 | "yallist": { 1043 | "version": "3.1.1", 1044 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", 1045 | "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" 1046 | } 1047 | } 1048 | } 1049 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "agenda", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "keywords": [], 10 | "author": "", 11 | "license": "ISC", 12 | "dependencies": { 13 | "blessed": "^0.1.81", 14 | "moment": "^2.29.1", 15 | "node-ical": "^0.14.1", 16 | "open": "^8.4.0", 17 | "sqlite3": "^5.0.2" 18 | } 19 | } 20 | --------------------------------------------------------------------------------