├── .gitignore ├── LICENSE ├── README.md ├── dist ├── css │ ├── app.css │ └── print.css ├── img │ └── short-paragraph.png ├── index.html └── js │ └── init.js ├── elm.json ├── package-lock.json ├── package.json └── src ├── Form ├── Mask.elm ├── Model.elm ├── Update.elm ├── Validators.elm └── View.elm ├── Main.elm ├── MinhaReceita ├── Decoder.elm ├── Model.elm └── Update.elm ├── Model.elm ├── Update.elm └── View.elm /.gitignore: -------------------------------------------------------------------------------- 1 | dist/js/app.js 2 | elm-stuff/ 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /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 | # Em nome da LAI! 2 | 3 | Gerador de petições com base na LAI. 4 | 5 | ## Requisitos 6 | 7 | * [Node.js](https://nodejs.org/) com `npm` 8 | 9 | ## Modo desenvolvimento 10 | 11 | ``` 12 | npm start 13 | ``` 14 | 15 | ## Gerar arquivo otimizado para produção em `dist/` 16 | 17 | ``` 18 | npm run build 19 | ``` 20 | -------------------------------------------------------------------------------- /dist/css/app.css: -------------------------------------------------------------------------------- 1 | body > .ui.container { 2 | margin-top: 3em; 3 | } 4 | 5 | .ui.container > h1 { 6 | font-size: 3em; 7 | text-align: center; 8 | font-weight: normal; 9 | } 10 | 11 | footer.ui.divider { 12 | font-size: 1.68rem; 13 | padding: 1rem 0; 14 | text-align: center; 15 | } 16 | 17 | footer a, 18 | footer a:hover { 19 | color: #333; 20 | } 21 | -------------------------------------------------------------------------------- /dist/css/print.css: -------------------------------------------------------------------------------- 1 | @page { 2 | counter-increment: page; 3 | margin: 2.5cm 3.5cm 2.5cm 3.25cm; 4 | orphans: 3; 5 | size: 21cm 29.7cm; 6 | widows: 3; 7 | } 8 | 9 | @bottom-center { 10 | content: counter(page); 11 | } 12 | 13 | html, 14 | body { 15 | margin: 0; 16 | padding: 0; 17 | } 18 | 19 | .print { 20 | width: 100; 21 | } 22 | .do-not-print { 23 | display: none; 24 | } 25 | -------------------------------------------------------------------------------- /dist/img/short-paragraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuducos/em-nome-da-lai/cb147a65f45d9d6e9451918981f29ece576147a5/dist/img/short-paragraph.png -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Em nome da LAI 6 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /dist/js/init.js: -------------------------------------------------------------------------------- 1 | const app = Elm.Main.init({ node: document.getElementById("app") }); 2 | app.ports.print.subscribe(() => window.print()); 3 | app.ports.getWordFile.subscribe(() => { 4 | app.ports.updateWordFile.send( 5 | "data:application/vnd.ms-word;charset=utf-8," + 6 | encodeURIComponent( 7 | [ 8 | '', 9 | "", 10 | '', 11 | "Em nome da LAI!", 12 | "", 13 | "", 14 | document.getElementById("document").innerHTML, 15 | "", 16 | "", 17 | ].join() 18 | ) 19 | ); 20 | }); 21 | -------------------------------------------------------------------------------- /elm.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "application", 3 | "source-directories": [ 4 | "src" 5 | ], 6 | "elm-version": "0.19.1", 7 | "dependencies": { 8 | "direct": { 9 | "elm/browser": "1.0.2", 10 | "elm/core": "1.0.5", 11 | "elm/html": "1.0.0", 12 | "elm/http": "2.0.0", 13 | "elm/json": "1.1.3", 14 | "elm/regex": "1.0.0", 15 | "elm/time": "1.0.0" 16 | }, 17 | "indirect": { 18 | "elm/bytes": "1.0.8", 19 | "elm/file": "1.0.5", 20 | "elm/url": "1.0.0", 21 | "elm/virtual-dom": "1.0.2" 22 | } 23 | }, 24 | "test-dependencies": { 25 | "direct": {}, 26 | "indirect": {} 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "em-nome-da-lai", 3 | "version": "0.0.1", 4 | "lockfileVersion": 2, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "version": "0.0.1", 9 | "license": "GPL-3.0-or-later", 10 | "devDependencies": { 11 | "elm": "^0.19.1-3", 12 | "elm-format": "^0.8.5", 13 | "elm-live": "^3.4.1", 14 | "prettier": "^2.2.1" 15 | } 16 | }, 17 | "node_modules/ajv": { 18 | "version": "6.12.6", 19 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 20 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 21 | "dev": true, 22 | "dependencies": { 23 | "fast-deep-equal": "^3.1.1", 24 | "fast-json-stable-stringify": "^2.0.0", 25 | "json-schema-traverse": "^0.4.1", 26 | "uri-js": "^4.2.2" 27 | } 28 | }, 29 | "node_modules/ansi-regex": { 30 | "version": "2.1.1", 31 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", 32 | "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", 33 | "dev": true, 34 | "engines": { 35 | "node": ">=0.10.0" 36 | } 37 | }, 38 | "node_modules/ansi-styles": { 39 | "version": "2.2.1", 40 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", 41 | "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", 42 | "dev": true, 43 | "engines": { 44 | "node": ">=0.10.0" 45 | } 46 | }, 47 | "node_modules/anymatch": { 48 | "version": "3.1.1", 49 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", 50 | "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", 51 | "dev": true, 52 | "dependencies": { 53 | "normalize-path": "^3.0.0", 54 | "picomatch": "^2.0.4" 55 | }, 56 | "engines": { 57 | "node": ">= 8" 58 | } 59 | }, 60 | "node_modules/asn1": { 61 | "version": "0.2.4", 62 | "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", 63 | "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", 64 | "dev": true, 65 | "dependencies": { 66 | "safer-buffer": "~2.1.0" 67 | } 68 | }, 69 | "node_modules/assert-plus": { 70 | "version": "1.0.0", 71 | "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", 72 | "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", 73 | "dev": true, 74 | "engines": { 75 | "node": ">=0.8" 76 | } 77 | }, 78 | "node_modules/async-each": { 79 | "version": "1.0.3", 80 | "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", 81 | "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", 82 | "dev": true 83 | }, 84 | "node_modules/async-limiter": { 85 | "version": "1.0.1", 86 | "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", 87 | "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", 88 | "dev": true 89 | }, 90 | "node_modules/asynckit": { 91 | "version": "0.4.0", 92 | "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", 93 | "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", 94 | "dev": true 95 | }, 96 | "node_modules/aws-sign2": { 97 | "version": "0.7.0", 98 | "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", 99 | "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", 100 | "dev": true, 101 | "engines": { 102 | "node": "*" 103 | } 104 | }, 105 | "node_modules/aws4": { 106 | "version": "1.11.0", 107 | "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", 108 | "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==", 109 | "dev": true 110 | }, 111 | "node_modules/bcrypt-pbkdf": { 112 | "version": "1.0.2", 113 | "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", 114 | "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", 115 | "dev": true, 116 | "dependencies": { 117 | "tweetnacl": "^0.14.3" 118 | } 119 | }, 120 | "node_modules/binary": { 121 | "version": "0.3.0", 122 | "resolved": "https://registry.npmjs.org/binary/-/binary-0.3.0.tgz", 123 | "integrity": "sha1-n2BVO8XOjDOG87VTz/R0Yq3sqnk=", 124 | "dev": true, 125 | "dependencies": { 126 | "buffers": "~0.1.1", 127 | "chainsaw": "~0.1.0" 128 | } 129 | }, 130 | "node_modules/binary-extensions": { 131 | "version": "2.2.0", 132 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", 133 | "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", 134 | "dev": true, 135 | "engines": { 136 | "node": ">=8" 137 | } 138 | }, 139 | "node_modules/binwrap": { 140 | "version": "0.2.3", 141 | "resolved": "https://registry.npmjs.org/binwrap/-/binwrap-0.2.3.tgz", 142 | "integrity": "sha512-N4Pm7iyDEv0BrAMs+dny8WQa+e0nNTdzn2ODkf/MM6XBtKSCxCSUA1ZOQGoc1n7mUqdgOS5pwjsW91rmXVxy2Q==", 143 | "dev": true, 144 | "dependencies": { 145 | "request": "^2.88.0", 146 | "tar": "^6.1.0", 147 | "unzip-stream": "^0.3.1" 148 | }, 149 | "bin": { 150 | "binwrap-install": "bin/binwrap-install", 151 | "binwrap-prepare": "bin/binwrap-prepare", 152 | "binwrap-test": "bin/binwrap-test" 153 | } 154 | }, 155 | "node_modules/braces": { 156 | "version": "3.0.2", 157 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 158 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 159 | "dev": true, 160 | "dependencies": { 161 | "fill-range": "^7.0.1" 162 | }, 163 | "engines": { 164 | "node": ">=8" 165 | } 166 | }, 167 | "node_modules/buffers": { 168 | "version": "0.1.1", 169 | "resolved": "https://registry.npmjs.org/buffers/-/buffers-0.1.1.tgz", 170 | "integrity": "sha1-skV5w77U1tOWru5tmorn9Ugqt7s=", 171 | "dev": true, 172 | "engines": { 173 | "node": ">=0.2.0" 174 | } 175 | }, 176 | "node_modules/caseless": { 177 | "version": "0.12.0", 178 | "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", 179 | "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", 180 | "dev": true 181 | }, 182 | "node_modules/chainsaw": { 183 | "version": "0.1.0", 184 | "resolved": "https://registry.npmjs.org/chainsaw/-/chainsaw-0.1.0.tgz", 185 | "integrity": "sha1-XqtQsor+WAdNDVgpE4iCi15fvJg=", 186 | "dev": true, 187 | "dependencies": { 188 | "traverse": ">=0.3.0 <0.4" 189 | } 190 | }, 191 | "node_modules/chalk": { 192 | "version": "1.1.3", 193 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", 194 | "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", 195 | "dev": true, 196 | "dependencies": { 197 | "ansi-styles": "^2.2.1", 198 | "escape-string-regexp": "^1.0.2", 199 | "has-ansi": "^2.0.0", 200 | "strip-ansi": "^3.0.0", 201 | "supports-color": "^2.0.0" 202 | }, 203 | "engines": { 204 | "node": ">=0.10.0" 205 | } 206 | }, 207 | "node_modules/charenc": { 208 | "version": "0.0.2", 209 | "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", 210 | "integrity": "sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc=", 211 | "dev": true, 212 | "engines": { 213 | "node": "*" 214 | } 215 | }, 216 | "node_modules/chokidar": { 217 | "version": "3.0.0", 218 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.0.0.tgz", 219 | "integrity": "sha512-ebzWopcacB2J19Jsb5RPtMrzmjUZ5VAQnsL0Ztrix3lswozHbiDp+1Lg3AWSKHdwsps/W2vtshA/x3I827F78g==", 220 | "dev": true, 221 | "dependencies": { 222 | "anymatch": "^3.0.1", 223 | "async-each": "^1.0.3", 224 | "braces": "^3.0.2", 225 | "glob-parent": "^5.0.0", 226 | "is-binary-path": "^2.1.0", 227 | "is-glob": "^4.0.1", 228 | "normalize-path": "^3.0.0", 229 | "readdirp": "^3.0.1" 230 | }, 231 | "engines": { 232 | "node": ">= 8" 233 | }, 234 | "optionalDependencies": { 235 | "fsevents": "^2.0.6" 236 | } 237 | }, 238 | "node_modules/chownr": { 239 | "version": "2.0.0", 240 | "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", 241 | "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", 242 | "dev": true, 243 | "engines": { 244 | "node": ">=10" 245 | } 246 | }, 247 | "node_modules/cli-color": { 248 | "version": "1.2.0", 249 | "resolved": "https://registry.npmjs.org/cli-color/-/cli-color-1.2.0.tgz", 250 | "integrity": "sha1-OlrnT9drYmevZm5p4q+70B3vNNE=", 251 | "dev": true, 252 | "dependencies": { 253 | "ansi-regex": "^2.1.1", 254 | "d": "1", 255 | "es5-ext": "^0.10.12", 256 | "es6-iterator": "2", 257 | "memoizee": "^0.4.3", 258 | "timers-ext": "0.1" 259 | } 260 | }, 261 | "node_modules/combined-stream": { 262 | "version": "1.0.8", 263 | "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", 264 | "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", 265 | "dev": true, 266 | "dependencies": { 267 | "delayed-stream": "~1.0.0" 268 | }, 269 | "engines": { 270 | "node": ">= 0.8" 271 | } 272 | }, 273 | "node_modules/commander": { 274 | "version": "2.17.1", 275 | "resolved": "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz", 276 | "integrity": "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==", 277 | "dev": true 278 | }, 279 | "node_modules/connect-pushstate": { 280 | "version": "1.1.0", 281 | "resolved": "https://registry.npmjs.org/connect-pushstate/-/connect-pushstate-1.1.0.tgz", 282 | "integrity": "sha1-vKsiQnHEOWBKD7D2FMCl9WPojiQ=", 283 | "dev": true 284 | }, 285 | "node_modules/core-util-is": { 286 | "version": "1.0.2", 287 | "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", 288 | "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", 289 | "dev": true 290 | }, 291 | "node_modules/cross-spawn": { 292 | "version": "5.0.1", 293 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.0.1.tgz", 294 | "integrity": "sha1-o7uzAtsil8vqPATt82lB9GE6o5k=", 295 | "dev": true, 296 | "dependencies": { 297 | "lru-cache": "^4.0.1", 298 | "shebang-command": "^1.2.0", 299 | "which": "^1.2.9" 300 | } 301 | }, 302 | "node_modules/crypt": { 303 | "version": "0.0.2", 304 | "resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz", 305 | "integrity": "sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs=", 306 | "dev": true, 307 | "engines": { 308 | "node": "*" 309 | } 310 | }, 311 | "node_modules/d": { 312 | "version": "1.0.1", 313 | "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", 314 | "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", 315 | "dev": true, 316 | "dependencies": { 317 | "es5-ext": "^0.10.50", 318 | "type": "^1.0.1" 319 | } 320 | }, 321 | "node_modules/dashdash": { 322 | "version": "1.14.1", 323 | "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", 324 | "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", 325 | "dev": true, 326 | "dependencies": { 327 | "assert-plus": "^1.0.0" 328 | }, 329 | "engines": { 330 | "node": ">=0.10" 331 | } 332 | }, 333 | "node_modules/debug": { 334 | "version": "2.6.9", 335 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 336 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 337 | "dev": true, 338 | "dependencies": { 339 | "ms": "2.0.0" 340 | } 341 | }, 342 | "node_modules/default-gateway": { 343 | "version": "2.7.2", 344 | "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-2.7.2.tgz", 345 | "integrity": "sha512-lAc4i9QJR0YHSDFdzeBQKfZ1SRDG3hsJNEkrpcZa8QhBfidLAilT60BDEIVUUGqosFp425KOgB3uYqcnQrWafQ==", 346 | "dev": true, 347 | "os": [ 348 | "android", 349 | "darwin", 350 | "freebsd", 351 | "linux", 352 | "openbsd", 353 | "sunos", 354 | "win32" 355 | ], 356 | "dependencies": { 357 | "execa": "^0.10.0", 358 | "ip-regex": "^2.1.0" 359 | }, 360 | "engines": { 361 | "node": ">=4" 362 | } 363 | }, 364 | "node_modules/delayed-stream": { 365 | "version": "1.0.0", 366 | "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", 367 | "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", 368 | "dev": true, 369 | "engines": { 370 | "node": ">=0.4.0" 371 | } 372 | }, 373 | "node_modules/depd": { 374 | "version": "1.1.2", 375 | "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", 376 | "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", 377 | "dev": true, 378 | "engines": { 379 | "node": ">= 0.6" 380 | } 381 | }, 382 | "node_modules/destroy": { 383 | "version": "1.0.4", 384 | "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", 385 | "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", 386 | "dev": true 387 | }, 388 | "node_modules/ecc-jsbn": { 389 | "version": "0.1.2", 390 | "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", 391 | "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", 392 | "dev": true, 393 | "dependencies": { 394 | "jsbn": "~0.1.0", 395 | "safer-buffer": "^2.1.0" 396 | } 397 | }, 398 | "node_modules/ee-first": { 399 | "version": "1.1.1", 400 | "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", 401 | "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", 402 | "dev": true 403 | }, 404 | "node_modules/elm": { 405 | "version": "0.19.1-5", 406 | "resolved": "https://registry.npmjs.org/elm/-/elm-0.19.1-5.tgz", 407 | "integrity": "sha512-dyBoPvFiNLvxOStQJdyq28gZEjS/enZXdZ5yyCtNtDEMbFJJVQq4pYNRKvhrKKdlxNot6d96iQe1uczoqO5yvA==", 408 | "dev": true, 409 | "dependencies": { 410 | "request": "^2.88.0" 411 | }, 412 | "bin": { 413 | "elm": "bin/elm" 414 | }, 415 | "engines": { 416 | "node": ">=7.0.0" 417 | } 418 | }, 419 | "node_modules/elm-format": { 420 | "version": "0.8.5", 421 | "resolved": "https://registry.npmjs.org/elm-format/-/elm-format-0.8.5.tgz", 422 | "integrity": "sha512-/Mjwz5RhJ8cdcMsHT98AEKprSIHyRde+URIPvnHez9WH7Xp+rFCOJx0FNMPIYrbHE9Ei7HDSVwhjDP0i+mlvpQ==", 423 | "dev": true, 424 | "hasInstallScript": true, 425 | "dependencies": { 426 | "binwrap": "^0.2.3" 427 | }, 428 | "bin": { 429 | "elm-format": "bin/elm-format" 430 | } 431 | }, 432 | "node_modules/elm-live": { 433 | "version": "3.4.1", 434 | "resolved": "https://registry.npmjs.org/elm-live/-/elm-live-3.4.1.tgz", 435 | "integrity": "sha512-7J4MCV0uyzfnGznSdVzz9o2vgHQwHSVKgEW/NG7dG7nsDWWxqPudQ/FkHYJFWjkylnRtBZUAtB27ZwnLIsgRUw==", 436 | "dev": true, 437 | "dependencies": { 438 | "chalk": "^1.1.1", 439 | "chokidar": "3.0.0", 440 | "commander": "2.17.1", 441 | "cross-spawn": "5.0.1", 442 | "elm-serve": "0.4.0" 443 | }, 444 | "bin": { 445 | "elm-live": "bin/elm-live.js" 446 | }, 447 | "engines": { 448 | "node": ">= 6.0.0" 449 | } 450 | }, 451 | "node_modules/elm-serve": { 452 | "version": "0.4.0", 453 | "resolved": "https://registry.npmjs.org/elm-serve/-/elm-serve-0.4.0.tgz", 454 | "integrity": "sha512-NYXzzaJT/zw8v7jzDWGXuvX3/soj+5NTLHxX0n/T6DICbmyDj8kO7rlI2wSKs9UTNjXhZ7quFQEKcgcf/SZksw==", 455 | "dev": true, 456 | "dependencies": { 457 | "cli-color": "1.2.0", 458 | "commander": "2.9.0", 459 | "connect-pushstate": "1.1.0", 460 | "finalhandler": "1.1.1", 461 | "http-proxy": "1.17.0", 462 | "internal-ip": "3.0.1", 463 | "minimist": "1.2.0", 464 | "opn": "5.3.0", 465 | "pem": "1.13.2", 466 | "serve-static": "1.13.2", 467 | "supervisor": "0.12.0", 468 | "url-parse": "1.4.3", 469 | "ws": "5.2.0" 470 | }, 471 | "bin": { 472 | "elm-serve": "bin/elm-serve.js" 473 | } 474 | }, 475 | "node_modules/elm-serve/node_modules/commander": { 476 | "version": "2.9.0", 477 | "resolved": "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz", 478 | "integrity": "sha1-nJkJQXbhIkDLItbFFGCYQA/g99Q=", 479 | "dev": true, 480 | "dependencies": { 481 | "graceful-readlink": ">= 1.0.0" 482 | }, 483 | "engines": { 484 | "node": ">= 0.6.x" 485 | } 486 | }, 487 | "node_modules/encodeurl": { 488 | "version": "1.0.2", 489 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", 490 | "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", 491 | "dev": true, 492 | "engines": { 493 | "node": ">= 0.8" 494 | } 495 | }, 496 | "node_modules/es5-ext": { 497 | "version": "0.10.53", 498 | "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.53.tgz", 499 | "integrity": "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==", 500 | "dev": true, 501 | "dependencies": { 502 | "es6-iterator": "~2.0.3", 503 | "es6-symbol": "~3.1.3", 504 | "next-tick": "~1.0.0" 505 | } 506 | }, 507 | "node_modules/es6-iterator": { 508 | "version": "2.0.3", 509 | "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", 510 | "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=", 511 | "dev": true, 512 | "dependencies": { 513 | "d": "1", 514 | "es5-ext": "^0.10.35", 515 | "es6-symbol": "^3.1.1" 516 | } 517 | }, 518 | "node_modules/es6-promisify": { 519 | "version": "6.1.1", 520 | "resolved": "https://registry.npmjs.org/es6-promisify/-/es6-promisify-6.1.1.tgz", 521 | "integrity": "sha512-HBL8I3mIki5C1Cc9QjKUenHtnG0A5/xA8Q/AllRcfiwl2CZFXGK7ddBiCoRwAix4i2KxcQfjtIVcrVbB3vbmwg==", 522 | "dev": true 523 | }, 524 | "node_modules/es6-symbol": { 525 | "version": "3.1.3", 526 | "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", 527 | "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", 528 | "dev": true, 529 | "dependencies": { 530 | "d": "^1.0.1", 531 | "ext": "^1.1.2" 532 | } 533 | }, 534 | "node_modules/es6-weak-map": { 535 | "version": "2.0.3", 536 | "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz", 537 | "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", 538 | "dev": true, 539 | "dependencies": { 540 | "d": "1", 541 | "es5-ext": "^0.10.46", 542 | "es6-iterator": "^2.0.3", 543 | "es6-symbol": "^3.1.1" 544 | } 545 | }, 546 | "node_modules/escape-html": { 547 | "version": "1.0.3", 548 | "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", 549 | "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", 550 | "dev": true 551 | }, 552 | "node_modules/escape-string-regexp": { 553 | "version": "1.0.5", 554 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 555 | "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", 556 | "dev": true, 557 | "engines": { 558 | "node": ">=0.8.0" 559 | } 560 | }, 561 | "node_modules/etag": { 562 | "version": "1.8.1", 563 | "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", 564 | "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", 565 | "dev": true, 566 | "engines": { 567 | "node": ">= 0.6" 568 | } 569 | }, 570 | "node_modules/event-emitter": { 571 | "version": "0.3.5", 572 | "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", 573 | "integrity": "sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk=", 574 | "dev": true, 575 | "dependencies": { 576 | "d": "1", 577 | "es5-ext": "~0.10.14" 578 | } 579 | }, 580 | "node_modules/eventemitter3": { 581 | "version": "3.1.2", 582 | "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.2.tgz", 583 | "integrity": "sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==", 584 | "dev": true 585 | }, 586 | "node_modules/execa": { 587 | "version": "0.10.0", 588 | "resolved": "https://registry.npmjs.org/execa/-/execa-0.10.0.tgz", 589 | "integrity": "sha512-7XOMnz8Ynx1gGo/3hyV9loYNPWM94jG3+3T3Y8tsfSstFmETmENCMU/A/zj8Lyaj1lkgEepKepvd6240tBRvlw==", 590 | "dev": true, 591 | "dependencies": { 592 | "cross-spawn": "^6.0.0", 593 | "get-stream": "^3.0.0", 594 | "is-stream": "^1.1.0", 595 | "npm-run-path": "^2.0.0", 596 | "p-finally": "^1.0.0", 597 | "signal-exit": "^3.0.0", 598 | "strip-eof": "^1.0.0" 599 | }, 600 | "engines": { 601 | "node": ">=4" 602 | } 603 | }, 604 | "node_modules/execa/node_modules/cross-spawn": { 605 | "version": "6.0.5", 606 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", 607 | "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", 608 | "dev": true, 609 | "dependencies": { 610 | "nice-try": "^1.0.4", 611 | "path-key": "^2.0.1", 612 | "semver": "^5.5.0", 613 | "shebang-command": "^1.2.0", 614 | "which": "^1.2.9" 615 | }, 616 | "engines": { 617 | "node": ">=4.8" 618 | } 619 | }, 620 | "node_modules/ext": { 621 | "version": "1.4.0", 622 | "resolved": "https://registry.npmjs.org/ext/-/ext-1.4.0.tgz", 623 | "integrity": "sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A==", 624 | "dev": true, 625 | "dependencies": { 626 | "type": "^2.0.0" 627 | } 628 | }, 629 | "node_modules/ext/node_modules/type": { 630 | "version": "2.5.0", 631 | "resolved": "https://registry.npmjs.org/type/-/type-2.5.0.tgz", 632 | "integrity": "sha512-180WMDQaIMm3+7hGXWf12GtdniDEy7nYcyFMKJn/eZz/6tSLXrUN9V0wKSbMjej0I1WHWbpREDEKHtqPQa9NNw==", 633 | "dev": true 634 | }, 635 | "node_modules/extend": { 636 | "version": "3.0.2", 637 | "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", 638 | "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", 639 | "dev": true 640 | }, 641 | "node_modules/extsprintf": { 642 | "version": "1.3.0", 643 | "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", 644 | "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", 645 | "dev": true, 646 | "engines": [ 647 | "node >=0.6.0" 648 | ] 649 | }, 650 | "node_modules/fast-deep-equal": { 651 | "version": "3.1.3", 652 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 653 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 654 | "dev": true 655 | }, 656 | "node_modules/fast-json-stable-stringify": { 657 | "version": "2.1.0", 658 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 659 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 660 | "dev": true 661 | }, 662 | "node_modules/fill-range": { 663 | "version": "7.0.1", 664 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 665 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 666 | "dev": true, 667 | "dependencies": { 668 | "to-regex-range": "^5.0.1" 669 | }, 670 | "engines": { 671 | "node": ">=8" 672 | } 673 | }, 674 | "node_modules/finalhandler": { 675 | "version": "1.1.1", 676 | "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.1.tgz", 677 | "integrity": "sha512-Y1GUDo39ez4aHAw7MysnUD5JzYX+WaIj8I57kO3aEPT1fFRL4sr7mjei97FgnwhAyyzRYmQZaTHb2+9uZ1dPtg==", 678 | "dev": true, 679 | "dependencies": { 680 | "debug": "2.6.9", 681 | "encodeurl": "~1.0.2", 682 | "escape-html": "~1.0.3", 683 | "on-finished": "~2.3.0", 684 | "parseurl": "~1.3.2", 685 | "statuses": "~1.4.0", 686 | "unpipe": "~1.0.0" 687 | }, 688 | "engines": { 689 | "node": ">= 0.8" 690 | } 691 | }, 692 | "node_modules/follow-redirects": { 693 | "version": "1.13.3", 694 | "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.3.tgz", 695 | "integrity": "sha512-DUgl6+HDzB0iEptNQEXLx/KhTmDb8tZUHSeLqpnjpknR70H0nC2t9N73BK6fN4hOvJ84pKlIQVQ4k5FFlBedKA==", 696 | "dev": true, 697 | "funding": [ 698 | { 699 | "type": "individual", 700 | "url": "https://github.com/sponsors/RubenVerborgh" 701 | } 702 | ], 703 | "engines": { 704 | "node": ">=4.0" 705 | }, 706 | "peerDependenciesMeta": { 707 | "debug": { 708 | "optional": true 709 | } 710 | } 711 | }, 712 | "node_modules/forever-agent": { 713 | "version": "0.6.1", 714 | "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", 715 | "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", 716 | "dev": true, 717 | "engines": { 718 | "node": "*" 719 | } 720 | }, 721 | "node_modules/form-data": { 722 | "version": "2.3.3", 723 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", 724 | "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", 725 | "dev": true, 726 | "dependencies": { 727 | "asynckit": "^0.4.0", 728 | "combined-stream": "^1.0.6", 729 | "mime-types": "^2.1.12" 730 | }, 731 | "engines": { 732 | "node": ">= 0.12" 733 | } 734 | }, 735 | "node_modules/fresh": { 736 | "version": "0.5.2", 737 | "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", 738 | "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", 739 | "dev": true, 740 | "engines": { 741 | "node": ">= 0.6" 742 | } 743 | }, 744 | "node_modules/fs-minipass": { 745 | "version": "2.1.0", 746 | "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", 747 | "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", 748 | "dev": true, 749 | "dependencies": { 750 | "minipass": "^3.0.0" 751 | }, 752 | "engines": { 753 | "node": ">= 8" 754 | } 755 | }, 756 | "node_modules/fsevents": { 757 | "version": "2.3.2", 758 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", 759 | "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", 760 | "dev": true, 761 | "hasInstallScript": true, 762 | "optional": true, 763 | "os": [ 764 | "darwin" 765 | ], 766 | "engines": { 767 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 768 | } 769 | }, 770 | "node_modules/get-stream": { 771 | "version": "3.0.0", 772 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", 773 | "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", 774 | "dev": true, 775 | "engines": { 776 | "node": ">=4" 777 | } 778 | }, 779 | "node_modules/getpass": { 780 | "version": "0.1.7", 781 | "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", 782 | "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", 783 | "dev": true, 784 | "dependencies": { 785 | "assert-plus": "^1.0.0" 786 | } 787 | }, 788 | "node_modules/glob-parent": { 789 | "version": "5.1.2", 790 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 791 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 792 | "dev": true, 793 | "dependencies": { 794 | "is-glob": "^4.0.1" 795 | }, 796 | "engines": { 797 | "node": ">= 6" 798 | } 799 | }, 800 | "node_modules/graceful-readlink": { 801 | "version": "1.0.1", 802 | "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz", 803 | "integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=", 804 | "dev": true 805 | }, 806 | "node_modules/har-schema": { 807 | "version": "2.0.0", 808 | "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", 809 | "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", 810 | "dev": true, 811 | "engines": { 812 | "node": ">=4" 813 | } 814 | }, 815 | "node_modules/har-validator": { 816 | "version": "5.1.5", 817 | "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", 818 | "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", 819 | "dev": true, 820 | "dependencies": { 821 | "ajv": "^6.12.3", 822 | "har-schema": "^2.0.0" 823 | }, 824 | "engines": { 825 | "node": ">=6" 826 | } 827 | }, 828 | "node_modules/has-ansi": { 829 | "version": "2.0.0", 830 | "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", 831 | "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", 832 | "dev": true, 833 | "dependencies": { 834 | "ansi-regex": "^2.0.0" 835 | }, 836 | "engines": { 837 | "node": ">=0.10.0" 838 | } 839 | }, 840 | "node_modules/http-errors": { 841 | "version": "1.6.3", 842 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", 843 | "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", 844 | "dev": true, 845 | "dependencies": { 846 | "depd": "~1.1.2", 847 | "inherits": "2.0.3", 848 | "setprototypeof": "1.1.0", 849 | "statuses": ">= 1.4.0 < 2" 850 | }, 851 | "engines": { 852 | "node": ">= 0.6" 853 | } 854 | }, 855 | "node_modules/http-proxy": { 856 | "version": "1.17.0", 857 | "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.17.0.tgz", 858 | "integrity": "sha512-Taqn+3nNvYRfJ3bGvKfBSRwy1v6eePlm3oc/aWVxZp57DQr5Eq3xhKJi7Z4hZpS8PC3H4qI+Yly5EmFacGuA/g==", 859 | "dev": true, 860 | "dependencies": { 861 | "eventemitter3": "^3.0.0", 862 | "follow-redirects": "^1.0.0", 863 | "requires-port": "^1.0.0" 864 | }, 865 | "engines": { 866 | "node": ">=4.0.0" 867 | } 868 | }, 869 | "node_modules/http-signature": { 870 | "version": "1.2.0", 871 | "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", 872 | "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", 873 | "dev": true, 874 | "dependencies": { 875 | "assert-plus": "^1.0.0", 876 | "jsprim": "^1.2.2", 877 | "sshpk": "^1.7.0" 878 | }, 879 | "engines": { 880 | "node": ">=0.8", 881 | "npm": ">=1.3.7" 882 | } 883 | }, 884 | "node_modules/inherits": { 885 | "version": "2.0.3", 886 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", 887 | "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", 888 | "dev": true 889 | }, 890 | "node_modules/internal-ip": { 891 | "version": "3.0.1", 892 | "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-3.0.1.tgz", 893 | "integrity": "sha512-NXXgESC2nNVtU+pqmC9e6R8B1GpKxzsAQhffvh5AL79qKnodd+L7tnEQmTiUAVngqLalPbSqRA7XGIEL5nCd0Q==", 894 | "dev": true, 895 | "os": [ 896 | "android", 897 | "darwin", 898 | "freebsd", 899 | "linux", 900 | "openbsd", 901 | "sunos", 902 | "win32" 903 | ], 904 | "dependencies": { 905 | "default-gateway": "^2.6.0", 906 | "ipaddr.js": "^1.5.2" 907 | }, 908 | "engines": { 909 | "node": ">=4" 910 | } 911 | }, 912 | "node_modules/ip-regex": { 913 | "version": "2.1.0", 914 | "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", 915 | "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=", 916 | "dev": true, 917 | "engines": { 918 | "node": ">=4" 919 | } 920 | }, 921 | "node_modules/ipaddr.js": { 922 | "version": "1.9.1", 923 | "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", 924 | "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", 925 | "dev": true, 926 | "engines": { 927 | "node": ">= 0.10" 928 | } 929 | }, 930 | "node_modules/is-binary-path": { 931 | "version": "2.1.0", 932 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 933 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 934 | "dev": true, 935 | "dependencies": { 936 | "binary-extensions": "^2.0.0" 937 | }, 938 | "engines": { 939 | "node": ">=8" 940 | } 941 | }, 942 | "node_modules/is-buffer": { 943 | "version": "1.1.6", 944 | "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", 945 | "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", 946 | "dev": true 947 | }, 948 | "node_modules/is-extglob": { 949 | "version": "2.1.1", 950 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 951 | "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", 952 | "dev": true, 953 | "engines": { 954 | "node": ">=0.10.0" 955 | } 956 | }, 957 | "node_modules/is-glob": { 958 | "version": "4.0.1", 959 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", 960 | "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", 961 | "dev": true, 962 | "dependencies": { 963 | "is-extglob": "^2.1.1" 964 | }, 965 | "engines": { 966 | "node": ">=0.10.0" 967 | } 968 | }, 969 | "node_modules/is-number": { 970 | "version": "7.0.0", 971 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 972 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 973 | "dev": true, 974 | "engines": { 975 | "node": ">=0.12.0" 976 | } 977 | }, 978 | "node_modules/is-promise": { 979 | "version": "2.2.2", 980 | "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz", 981 | "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==", 982 | "dev": true 983 | }, 984 | "node_modules/is-stream": { 985 | "version": "1.1.0", 986 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", 987 | "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", 988 | "dev": true, 989 | "engines": { 990 | "node": ">=0.10.0" 991 | } 992 | }, 993 | "node_modules/is-typedarray": { 994 | "version": "1.0.0", 995 | "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", 996 | "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", 997 | "dev": true 998 | }, 999 | "node_modules/is-wsl": { 1000 | "version": "1.1.0", 1001 | "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", 1002 | "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", 1003 | "dev": true, 1004 | "engines": { 1005 | "node": ">=4" 1006 | } 1007 | }, 1008 | "node_modules/isexe": { 1009 | "version": "2.0.0", 1010 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 1011 | "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", 1012 | "dev": true 1013 | }, 1014 | "node_modules/isstream": { 1015 | "version": "0.1.2", 1016 | "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", 1017 | "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", 1018 | "dev": true 1019 | }, 1020 | "node_modules/jsbn": { 1021 | "version": "0.1.1", 1022 | "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", 1023 | "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", 1024 | "dev": true 1025 | }, 1026 | "node_modules/json-schema": { 1027 | "version": "0.2.3", 1028 | "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", 1029 | "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=", 1030 | "dev": true 1031 | }, 1032 | "node_modules/json-schema-traverse": { 1033 | "version": "0.4.1", 1034 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 1035 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 1036 | "dev": true 1037 | }, 1038 | "node_modules/json-stringify-safe": { 1039 | "version": "5.0.1", 1040 | "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", 1041 | "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", 1042 | "dev": true 1043 | }, 1044 | "node_modules/jsprim": { 1045 | "version": "1.4.1", 1046 | "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", 1047 | "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", 1048 | "dev": true, 1049 | "engines": [ 1050 | "node >=0.6.0" 1051 | ], 1052 | "dependencies": { 1053 | "assert-plus": "1.0.0", 1054 | "extsprintf": "1.3.0", 1055 | "json-schema": "0.2.3", 1056 | "verror": "1.10.0" 1057 | } 1058 | }, 1059 | "node_modules/lru-cache": { 1060 | "version": "4.1.5", 1061 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", 1062 | "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", 1063 | "dev": true, 1064 | "dependencies": { 1065 | "pseudomap": "^1.0.2", 1066 | "yallist": "^2.1.2" 1067 | } 1068 | }, 1069 | "node_modules/lru-queue": { 1070 | "version": "0.1.0", 1071 | "resolved": "https://registry.npmjs.org/lru-queue/-/lru-queue-0.1.0.tgz", 1072 | "integrity": "sha1-Jzi9nw089PhEkMVzbEhpmsYyzaM=", 1073 | "dev": true, 1074 | "dependencies": { 1075 | "es5-ext": "~0.10.2" 1076 | } 1077 | }, 1078 | "node_modules/md5": { 1079 | "version": "2.3.0", 1080 | "resolved": "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz", 1081 | "integrity": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==", 1082 | "dev": true, 1083 | "dependencies": { 1084 | "charenc": "0.0.2", 1085 | "crypt": "0.0.2", 1086 | "is-buffer": "~1.1.6" 1087 | } 1088 | }, 1089 | "node_modules/memoizee": { 1090 | "version": "0.4.15", 1091 | "resolved": "https://registry.npmjs.org/memoizee/-/memoizee-0.4.15.tgz", 1092 | "integrity": "sha512-UBWmJpLZd5STPm7PMUlOw/TSy972M+z8gcyQ5veOnSDRREz/0bmpyTfKt3/51DhEBqCZQn1udM/5flcSPYhkdQ==", 1093 | "dev": true, 1094 | "dependencies": { 1095 | "d": "^1.0.1", 1096 | "es5-ext": "^0.10.53", 1097 | "es6-weak-map": "^2.0.3", 1098 | "event-emitter": "^0.3.5", 1099 | "is-promise": "^2.2.2", 1100 | "lru-queue": "^0.1.0", 1101 | "next-tick": "^1.1.0", 1102 | "timers-ext": "^0.1.7" 1103 | } 1104 | }, 1105 | "node_modules/memoizee/node_modules/next-tick": { 1106 | "version": "1.1.0", 1107 | "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", 1108 | "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==", 1109 | "dev": true 1110 | }, 1111 | "node_modules/mime": { 1112 | "version": "1.4.1", 1113 | "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz", 1114 | "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==", 1115 | "dev": true, 1116 | "bin": { 1117 | "mime": "cli.js" 1118 | } 1119 | }, 1120 | "node_modules/mime-db": { 1121 | "version": "1.46.0", 1122 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.46.0.tgz", 1123 | "integrity": "sha512-svXaP8UQRZ5K7or+ZmfNhg2xX3yKDMUzqadsSqi4NCH/KomcH75MAMYAGVlvXn4+b/xOPhS3I2uHKRUzvjY7BQ==", 1124 | "dev": true, 1125 | "engines": { 1126 | "node": ">= 0.6" 1127 | } 1128 | }, 1129 | "node_modules/mime-types": { 1130 | "version": "2.1.29", 1131 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.29.tgz", 1132 | "integrity": "sha512-Y/jMt/S5sR9OaqteJtslsFZKWOIIqMACsJSiHghlCAyhf7jfVYjKBmLiX8OgpWeW+fjJ2b+Az69aPFPkUOY6xQ==", 1133 | "dev": true, 1134 | "dependencies": { 1135 | "mime-db": "1.46.0" 1136 | }, 1137 | "engines": { 1138 | "node": ">= 0.6" 1139 | } 1140 | }, 1141 | "node_modules/minimist": { 1142 | "version": "1.2.0", 1143 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", 1144 | "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", 1145 | "dev": true 1146 | }, 1147 | "node_modules/minipass": { 1148 | "version": "3.1.3", 1149 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz", 1150 | "integrity": "sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg==", 1151 | "dev": true, 1152 | "dependencies": { 1153 | "yallist": "^4.0.0" 1154 | }, 1155 | "engines": { 1156 | "node": ">=8" 1157 | } 1158 | }, 1159 | "node_modules/minipass/node_modules/yallist": { 1160 | "version": "4.0.0", 1161 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 1162 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", 1163 | "dev": true 1164 | }, 1165 | "node_modules/minizlib": { 1166 | "version": "2.1.2", 1167 | "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", 1168 | "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", 1169 | "dev": true, 1170 | "dependencies": { 1171 | "minipass": "^3.0.0", 1172 | "yallist": "^4.0.0" 1173 | }, 1174 | "engines": { 1175 | "node": ">= 8" 1176 | } 1177 | }, 1178 | "node_modules/minizlib/node_modules/yallist": { 1179 | "version": "4.0.0", 1180 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 1181 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", 1182 | "dev": true 1183 | }, 1184 | "node_modules/mkdirp": { 1185 | "version": "1.0.4", 1186 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", 1187 | "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", 1188 | "dev": true, 1189 | "bin": { 1190 | "mkdirp": "bin/cmd.js" 1191 | }, 1192 | "engines": { 1193 | "node": ">=10" 1194 | } 1195 | }, 1196 | "node_modules/ms": { 1197 | "version": "2.0.0", 1198 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 1199 | "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", 1200 | "dev": true 1201 | }, 1202 | "node_modules/next-tick": { 1203 | "version": "1.0.0", 1204 | "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz", 1205 | "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=", 1206 | "dev": true 1207 | }, 1208 | "node_modules/nice-try": { 1209 | "version": "1.0.5", 1210 | "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", 1211 | "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", 1212 | "dev": true 1213 | }, 1214 | "node_modules/normalize-path": { 1215 | "version": "3.0.0", 1216 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 1217 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 1218 | "dev": true, 1219 | "engines": { 1220 | "node": ">=0.10.0" 1221 | } 1222 | }, 1223 | "node_modules/npm-run-path": { 1224 | "version": "2.0.2", 1225 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", 1226 | "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", 1227 | "dev": true, 1228 | "dependencies": { 1229 | "path-key": "^2.0.0" 1230 | }, 1231 | "engines": { 1232 | "node": ">=4" 1233 | } 1234 | }, 1235 | "node_modules/oauth-sign": { 1236 | "version": "0.9.0", 1237 | "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", 1238 | "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", 1239 | "dev": true, 1240 | "engines": { 1241 | "node": "*" 1242 | } 1243 | }, 1244 | "node_modules/on-finished": { 1245 | "version": "2.3.0", 1246 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", 1247 | "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", 1248 | "dev": true, 1249 | "dependencies": { 1250 | "ee-first": "1.1.1" 1251 | }, 1252 | "engines": { 1253 | "node": ">= 0.8" 1254 | } 1255 | }, 1256 | "node_modules/opn": { 1257 | "version": "5.3.0", 1258 | "resolved": "https://registry.npmjs.org/opn/-/opn-5.3.0.tgz", 1259 | "integrity": "sha512-bYJHo/LOmoTd+pfiYhfZDnf9zekVJrY+cnS2a5F2x+w5ppvTqObojTP7WiFG+kVZs9Inw+qQ/lw7TroWwhdd2g==", 1260 | "dev": true, 1261 | "dependencies": { 1262 | "is-wsl": "^1.1.0" 1263 | }, 1264 | "engines": { 1265 | "node": ">=4" 1266 | } 1267 | }, 1268 | "node_modules/os-tmpdir": { 1269 | "version": "1.0.2", 1270 | "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", 1271 | "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", 1272 | "dev": true, 1273 | "engines": { 1274 | "node": ">=0.10.0" 1275 | } 1276 | }, 1277 | "node_modules/p-finally": { 1278 | "version": "1.0.0", 1279 | "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", 1280 | "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", 1281 | "dev": true, 1282 | "engines": { 1283 | "node": ">=4" 1284 | } 1285 | }, 1286 | "node_modules/parseurl": { 1287 | "version": "1.3.3", 1288 | "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", 1289 | "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", 1290 | "dev": true, 1291 | "engines": { 1292 | "node": ">= 0.8" 1293 | } 1294 | }, 1295 | "node_modules/path-key": { 1296 | "version": "2.0.1", 1297 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", 1298 | "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", 1299 | "dev": true, 1300 | "engines": { 1301 | "node": ">=4" 1302 | } 1303 | }, 1304 | "node_modules/pem": { 1305 | "version": "1.13.2", 1306 | "resolved": "https://registry.npmjs.org/pem/-/pem-1.13.2.tgz", 1307 | "integrity": "sha512-MPJWuEb/r6AG+GpZi2JnfNtGAZDeL/8+ERKwXEWRuST5i+4lq/Uy36B352OWIUSPQGH+HR1HEDcIDi+8cKxXNg==", 1308 | "dev": true, 1309 | "dependencies": { 1310 | "es6-promisify": "^6.0.0", 1311 | "md5": "^2.2.1", 1312 | "os-tmpdir": "^1.0.1", 1313 | "which": "^1.3.1" 1314 | }, 1315 | "engines": { 1316 | "node": ">=6.0.0" 1317 | } 1318 | }, 1319 | "node_modules/performance-now": { 1320 | "version": "2.1.0", 1321 | "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", 1322 | "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", 1323 | "dev": true 1324 | }, 1325 | "node_modules/picomatch": { 1326 | "version": "2.2.2", 1327 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", 1328 | "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==", 1329 | "dev": true, 1330 | "engines": { 1331 | "node": ">=8.6" 1332 | }, 1333 | "funding": { 1334 | "url": "https://github.com/sponsors/jonschlinkert" 1335 | } 1336 | }, 1337 | "node_modules/prettier": { 1338 | "version": "2.2.1", 1339 | "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.2.1.tgz", 1340 | "integrity": "sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q==", 1341 | "dev": true, 1342 | "bin": { 1343 | "prettier": "bin-prettier.js" 1344 | }, 1345 | "engines": { 1346 | "node": ">=10.13.0" 1347 | } 1348 | }, 1349 | "node_modules/pseudomap": { 1350 | "version": "1.0.2", 1351 | "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", 1352 | "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", 1353 | "dev": true 1354 | }, 1355 | "node_modules/psl": { 1356 | "version": "1.8.0", 1357 | "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", 1358 | "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==", 1359 | "dev": true 1360 | }, 1361 | "node_modules/punycode": { 1362 | "version": "2.1.1", 1363 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", 1364 | "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", 1365 | "dev": true, 1366 | "engines": { 1367 | "node": ">=6" 1368 | } 1369 | }, 1370 | "node_modules/qs": { 1371 | "version": "6.5.2", 1372 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", 1373 | "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", 1374 | "dev": true, 1375 | "engines": { 1376 | "node": ">=0.6" 1377 | } 1378 | }, 1379 | "node_modules/querystringify": { 1380 | "version": "2.2.0", 1381 | "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", 1382 | "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", 1383 | "dev": true 1384 | }, 1385 | "node_modules/range-parser": { 1386 | "version": "1.2.1", 1387 | "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", 1388 | "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", 1389 | "dev": true, 1390 | "engines": { 1391 | "node": ">= 0.6" 1392 | } 1393 | }, 1394 | "node_modules/readdirp": { 1395 | "version": "3.6.0", 1396 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 1397 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 1398 | "dev": true, 1399 | "dependencies": { 1400 | "picomatch": "^2.2.1" 1401 | }, 1402 | "engines": { 1403 | "node": ">=8.10.0" 1404 | } 1405 | }, 1406 | "node_modules/request": { 1407 | "version": "2.88.2", 1408 | "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", 1409 | "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", 1410 | "dev": true, 1411 | "dependencies": { 1412 | "aws-sign2": "~0.7.0", 1413 | "aws4": "^1.8.0", 1414 | "caseless": "~0.12.0", 1415 | "combined-stream": "~1.0.6", 1416 | "extend": "~3.0.2", 1417 | "forever-agent": "~0.6.1", 1418 | "form-data": "~2.3.2", 1419 | "har-validator": "~5.1.3", 1420 | "http-signature": "~1.2.0", 1421 | "is-typedarray": "~1.0.0", 1422 | "isstream": "~0.1.2", 1423 | "json-stringify-safe": "~5.0.1", 1424 | "mime-types": "~2.1.19", 1425 | "oauth-sign": "~0.9.0", 1426 | "performance-now": "^2.1.0", 1427 | "qs": "~6.5.2", 1428 | "safe-buffer": "^5.1.2", 1429 | "tough-cookie": "~2.5.0", 1430 | "tunnel-agent": "^0.6.0", 1431 | "uuid": "^3.3.2" 1432 | }, 1433 | "engines": { 1434 | "node": ">= 6" 1435 | } 1436 | }, 1437 | "node_modules/requires-port": { 1438 | "version": "1.0.0", 1439 | "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", 1440 | "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", 1441 | "dev": true 1442 | }, 1443 | "node_modules/safe-buffer": { 1444 | "version": "5.2.1", 1445 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 1446 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", 1447 | "dev": true 1448 | }, 1449 | "node_modules/safer-buffer": { 1450 | "version": "2.1.2", 1451 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 1452 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", 1453 | "dev": true 1454 | }, 1455 | "node_modules/semver": { 1456 | "version": "5.7.1", 1457 | "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", 1458 | "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", 1459 | "dev": true, 1460 | "bin": { 1461 | "semver": "bin/semver" 1462 | } 1463 | }, 1464 | "node_modules/send": { 1465 | "version": "0.16.2", 1466 | "resolved": "https://registry.npmjs.org/send/-/send-0.16.2.tgz", 1467 | "integrity": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==", 1468 | "dev": true, 1469 | "dependencies": { 1470 | "debug": "2.6.9", 1471 | "depd": "~1.1.2", 1472 | "destroy": "~1.0.4", 1473 | "encodeurl": "~1.0.2", 1474 | "escape-html": "~1.0.3", 1475 | "etag": "~1.8.1", 1476 | "fresh": "0.5.2", 1477 | "http-errors": "~1.6.2", 1478 | "mime": "1.4.1", 1479 | "ms": "2.0.0", 1480 | "on-finished": "~2.3.0", 1481 | "range-parser": "~1.2.0", 1482 | "statuses": "~1.4.0" 1483 | }, 1484 | "engines": { 1485 | "node": ">= 0.8.0" 1486 | } 1487 | }, 1488 | "node_modules/serve-static": { 1489 | "version": "1.13.2", 1490 | "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz", 1491 | "integrity": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==", 1492 | "dev": true, 1493 | "dependencies": { 1494 | "encodeurl": "~1.0.2", 1495 | "escape-html": "~1.0.3", 1496 | "parseurl": "~1.3.2", 1497 | "send": "0.16.2" 1498 | }, 1499 | "engines": { 1500 | "node": ">= 0.8.0" 1501 | } 1502 | }, 1503 | "node_modules/setprototypeof": { 1504 | "version": "1.1.0", 1505 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", 1506 | "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", 1507 | "dev": true 1508 | }, 1509 | "node_modules/shebang-command": { 1510 | "version": "1.2.0", 1511 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", 1512 | "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", 1513 | "dev": true, 1514 | "dependencies": { 1515 | "shebang-regex": "^1.0.0" 1516 | }, 1517 | "engines": { 1518 | "node": ">=0.10.0" 1519 | } 1520 | }, 1521 | "node_modules/shebang-regex": { 1522 | "version": "1.0.0", 1523 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", 1524 | "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", 1525 | "dev": true, 1526 | "engines": { 1527 | "node": ">=0.10.0" 1528 | } 1529 | }, 1530 | "node_modules/signal-exit": { 1531 | "version": "3.0.3", 1532 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", 1533 | "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==", 1534 | "dev": true 1535 | }, 1536 | "node_modules/sshpk": { 1537 | "version": "1.16.1", 1538 | "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", 1539 | "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", 1540 | "dev": true, 1541 | "dependencies": { 1542 | "asn1": "~0.2.3", 1543 | "assert-plus": "^1.0.0", 1544 | "bcrypt-pbkdf": "^1.0.0", 1545 | "dashdash": "^1.12.0", 1546 | "ecc-jsbn": "~0.1.1", 1547 | "getpass": "^0.1.1", 1548 | "jsbn": "~0.1.0", 1549 | "safer-buffer": "^2.0.2", 1550 | "tweetnacl": "~0.14.0" 1551 | }, 1552 | "bin": { 1553 | "sshpk-conv": "bin/sshpk-conv", 1554 | "sshpk-sign": "bin/sshpk-sign", 1555 | "sshpk-verify": "bin/sshpk-verify" 1556 | }, 1557 | "engines": { 1558 | "node": ">=0.10.0" 1559 | } 1560 | }, 1561 | "node_modules/statuses": { 1562 | "version": "1.4.0", 1563 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz", 1564 | "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==", 1565 | "dev": true, 1566 | "engines": { 1567 | "node": ">= 0.6" 1568 | } 1569 | }, 1570 | "node_modules/strip-ansi": { 1571 | "version": "3.0.1", 1572 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", 1573 | "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", 1574 | "dev": true, 1575 | "dependencies": { 1576 | "ansi-regex": "^2.0.0" 1577 | }, 1578 | "engines": { 1579 | "node": ">=0.10.0" 1580 | } 1581 | }, 1582 | "node_modules/strip-eof": { 1583 | "version": "1.0.0", 1584 | "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", 1585 | "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", 1586 | "dev": true, 1587 | "engines": { 1588 | "node": ">=0.10.0" 1589 | } 1590 | }, 1591 | "node_modules/supervisor": { 1592 | "version": "0.12.0", 1593 | "resolved": "https://registry.npmjs.org/supervisor/-/supervisor-0.12.0.tgz", 1594 | "integrity": "sha1-3n5jNwFbKRhRwQ81OMSn8EkX7ME=", 1595 | "dev": true, 1596 | "bin": { 1597 | "node-supervisor": "lib/cli-wrapper.js", 1598 | "supervisor": "lib/cli-wrapper.js" 1599 | }, 1600 | "engines": { 1601 | "node": ">=0.6.0" 1602 | } 1603 | }, 1604 | "node_modules/supports-color": { 1605 | "version": "2.0.0", 1606 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", 1607 | "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", 1608 | "dev": true, 1609 | "engines": { 1610 | "node": ">=0.8.0" 1611 | } 1612 | }, 1613 | "node_modules/tar": { 1614 | "version": "6.1.0", 1615 | "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.0.tgz", 1616 | "integrity": "sha512-DUCttfhsnLCjwoDoFcI+B2iJgYa93vBnDUATYEeRx6sntCTdN01VnqsIuTlALXla/LWooNg0yEGeB+Y8WdFxGA==", 1617 | "dev": true, 1618 | "dependencies": { 1619 | "chownr": "^2.0.0", 1620 | "fs-minipass": "^2.0.0", 1621 | "minipass": "^3.0.0", 1622 | "minizlib": "^2.1.1", 1623 | "mkdirp": "^1.0.3", 1624 | "yallist": "^4.0.0" 1625 | }, 1626 | "engines": { 1627 | "node": ">= 10" 1628 | } 1629 | }, 1630 | "node_modules/tar/node_modules/yallist": { 1631 | "version": "4.0.0", 1632 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 1633 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", 1634 | "dev": true 1635 | }, 1636 | "node_modules/timers-ext": { 1637 | "version": "0.1.7", 1638 | "resolved": "https://registry.npmjs.org/timers-ext/-/timers-ext-0.1.7.tgz", 1639 | "integrity": "sha512-b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ==", 1640 | "dev": true, 1641 | "dependencies": { 1642 | "es5-ext": "~0.10.46", 1643 | "next-tick": "1" 1644 | } 1645 | }, 1646 | "node_modules/to-regex-range": { 1647 | "version": "5.0.1", 1648 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 1649 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 1650 | "dev": true, 1651 | "dependencies": { 1652 | "is-number": "^7.0.0" 1653 | }, 1654 | "engines": { 1655 | "node": ">=8.0" 1656 | } 1657 | }, 1658 | "node_modules/tough-cookie": { 1659 | "version": "2.5.0", 1660 | "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", 1661 | "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", 1662 | "dev": true, 1663 | "dependencies": { 1664 | "psl": "^1.1.28", 1665 | "punycode": "^2.1.1" 1666 | }, 1667 | "engines": { 1668 | "node": ">=0.8" 1669 | } 1670 | }, 1671 | "node_modules/traverse": { 1672 | "version": "0.3.9", 1673 | "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.3.9.tgz", 1674 | "integrity": "sha1-cXuPIgzAu3tE5AUUwisui7xw2Lk=", 1675 | "dev": true 1676 | }, 1677 | "node_modules/tunnel-agent": { 1678 | "version": "0.6.0", 1679 | "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", 1680 | "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", 1681 | "dev": true, 1682 | "dependencies": { 1683 | "safe-buffer": "^5.0.1" 1684 | }, 1685 | "engines": { 1686 | "node": "*" 1687 | } 1688 | }, 1689 | "node_modules/tweetnacl": { 1690 | "version": "0.14.5", 1691 | "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", 1692 | "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", 1693 | "dev": true 1694 | }, 1695 | "node_modules/type": { 1696 | "version": "1.2.0", 1697 | "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", 1698 | "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==", 1699 | "dev": true 1700 | }, 1701 | "node_modules/unpipe": { 1702 | "version": "1.0.0", 1703 | "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", 1704 | "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", 1705 | "dev": true, 1706 | "engines": { 1707 | "node": ">= 0.8" 1708 | } 1709 | }, 1710 | "node_modules/unzip-stream": { 1711 | "version": "0.3.1", 1712 | "resolved": "https://registry.npmjs.org/unzip-stream/-/unzip-stream-0.3.1.tgz", 1713 | "integrity": "sha512-RzaGXLNt+CW+T41h1zl6pGz3EaeVhYlK+rdAap+7DxW5kqsqePO8kRtWPaCiVqdhZc86EctSPVYNix30YOMzmw==", 1714 | "dev": true, 1715 | "dependencies": { 1716 | "binary": "^0.3.0", 1717 | "mkdirp": "^0.5.1" 1718 | } 1719 | }, 1720 | "node_modules/unzip-stream/node_modules/minimist": { 1721 | "version": "1.2.5", 1722 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", 1723 | "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", 1724 | "dev": true 1725 | }, 1726 | "node_modules/unzip-stream/node_modules/mkdirp": { 1727 | "version": "0.5.5", 1728 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", 1729 | "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", 1730 | "dev": true, 1731 | "dependencies": { 1732 | "minimist": "^1.2.5" 1733 | }, 1734 | "bin": { 1735 | "mkdirp": "bin/cmd.js" 1736 | } 1737 | }, 1738 | "node_modules/uri-js": { 1739 | "version": "4.4.1", 1740 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 1741 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 1742 | "dev": true, 1743 | "dependencies": { 1744 | "punycode": "^2.1.0" 1745 | } 1746 | }, 1747 | "node_modules/url-parse": { 1748 | "version": "1.4.3", 1749 | "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.4.3.tgz", 1750 | "integrity": "sha512-rh+KuAW36YKo0vClhQzLLveoj8FwPJNu65xLb7Mrt+eZht0IPT0IXgSv8gcMegZ6NvjJUALf6Mf25POlMwD1Fw==", 1751 | "dev": true, 1752 | "dependencies": { 1753 | "querystringify": "^2.0.0", 1754 | "requires-port": "^1.0.0" 1755 | } 1756 | }, 1757 | "node_modules/uuid": { 1758 | "version": "3.4.0", 1759 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", 1760 | "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", 1761 | "dev": true, 1762 | "bin": { 1763 | "uuid": "bin/uuid" 1764 | } 1765 | }, 1766 | "node_modules/verror": { 1767 | "version": "1.10.0", 1768 | "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", 1769 | "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", 1770 | "dev": true, 1771 | "engines": [ 1772 | "node >=0.6.0" 1773 | ], 1774 | "dependencies": { 1775 | "assert-plus": "^1.0.0", 1776 | "core-util-is": "1.0.2", 1777 | "extsprintf": "^1.2.0" 1778 | } 1779 | }, 1780 | "node_modules/which": { 1781 | "version": "1.3.1", 1782 | "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", 1783 | "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", 1784 | "dev": true, 1785 | "dependencies": { 1786 | "isexe": "^2.0.0" 1787 | }, 1788 | "bin": { 1789 | "which": "bin/which" 1790 | } 1791 | }, 1792 | "node_modules/ws": { 1793 | "version": "5.2.0", 1794 | "resolved": "https://registry.npmjs.org/ws/-/ws-5.2.0.tgz", 1795 | "integrity": "sha512-c18dMeW+PEQdDFzkhDsnBAlS4Z8KGStBQQUcQ5mf7Nf689jyGk0594L+i9RaQuf4gog6SvWLJorz2NfSaqxZ7w==", 1796 | "dev": true, 1797 | "dependencies": { 1798 | "async-limiter": "~1.0.0" 1799 | } 1800 | }, 1801 | "node_modules/yallist": { 1802 | "version": "2.1.2", 1803 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", 1804 | "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", 1805 | "dev": true 1806 | } 1807 | }, 1808 | "dependencies": { 1809 | "ajv": { 1810 | "version": "6.12.6", 1811 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 1812 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 1813 | "dev": true, 1814 | "requires": { 1815 | "fast-deep-equal": "^3.1.1", 1816 | "fast-json-stable-stringify": "^2.0.0", 1817 | "json-schema-traverse": "^0.4.1", 1818 | "uri-js": "^4.2.2" 1819 | } 1820 | }, 1821 | "ansi-regex": { 1822 | "version": "2.1.1", 1823 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", 1824 | "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", 1825 | "dev": true 1826 | }, 1827 | "ansi-styles": { 1828 | "version": "2.2.1", 1829 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", 1830 | "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", 1831 | "dev": true 1832 | }, 1833 | "anymatch": { 1834 | "version": "3.1.1", 1835 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", 1836 | "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", 1837 | "dev": true, 1838 | "requires": { 1839 | "normalize-path": "^3.0.0", 1840 | "picomatch": "^2.0.4" 1841 | } 1842 | }, 1843 | "asn1": { 1844 | "version": "0.2.4", 1845 | "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", 1846 | "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", 1847 | "dev": true, 1848 | "requires": { 1849 | "safer-buffer": "~2.1.0" 1850 | } 1851 | }, 1852 | "assert-plus": { 1853 | "version": "1.0.0", 1854 | "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", 1855 | "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", 1856 | "dev": true 1857 | }, 1858 | "async-each": { 1859 | "version": "1.0.3", 1860 | "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", 1861 | "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", 1862 | "dev": true 1863 | }, 1864 | "async-limiter": { 1865 | "version": "1.0.1", 1866 | "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", 1867 | "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", 1868 | "dev": true 1869 | }, 1870 | "asynckit": { 1871 | "version": "0.4.0", 1872 | "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", 1873 | "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", 1874 | "dev": true 1875 | }, 1876 | "aws-sign2": { 1877 | "version": "0.7.0", 1878 | "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", 1879 | "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", 1880 | "dev": true 1881 | }, 1882 | "aws4": { 1883 | "version": "1.11.0", 1884 | "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", 1885 | "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==", 1886 | "dev": true 1887 | }, 1888 | "bcrypt-pbkdf": { 1889 | "version": "1.0.2", 1890 | "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", 1891 | "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", 1892 | "dev": true, 1893 | "requires": { 1894 | "tweetnacl": "^0.14.3" 1895 | } 1896 | }, 1897 | "binary": { 1898 | "version": "0.3.0", 1899 | "resolved": "https://registry.npmjs.org/binary/-/binary-0.3.0.tgz", 1900 | "integrity": "sha1-n2BVO8XOjDOG87VTz/R0Yq3sqnk=", 1901 | "dev": true, 1902 | "requires": { 1903 | "buffers": "~0.1.1", 1904 | "chainsaw": "~0.1.0" 1905 | } 1906 | }, 1907 | "binary-extensions": { 1908 | "version": "2.2.0", 1909 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", 1910 | "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", 1911 | "dev": true 1912 | }, 1913 | "binwrap": { 1914 | "version": "0.2.3", 1915 | "resolved": "https://registry.npmjs.org/binwrap/-/binwrap-0.2.3.tgz", 1916 | "integrity": "sha512-N4Pm7iyDEv0BrAMs+dny8WQa+e0nNTdzn2ODkf/MM6XBtKSCxCSUA1ZOQGoc1n7mUqdgOS5pwjsW91rmXVxy2Q==", 1917 | "dev": true, 1918 | "requires": { 1919 | "request": "^2.88.0", 1920 | "tar": "^6.1.0", 1921 | "unzip-stream": "^0.3.1" 1922 | } 1923 | }, 1924 | "braces": { 1925 | "version": "3.0.2", 1926 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 1927 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 1928 | "dev": true, 1929 | "requires": { 1930 | "fill-range": "^7.0.1" 1931 | } 1932 | }, 1933 | "buffers": { 1934 | "version": "0.1.1", 1935 | "resolved": "https://registry.npmjs.org/buffers/-/buffers-0.1.1.tgz", 1936 | "integrity": "sha1-skV5w77U1tOWru5tmorn9Ugqt7s=", 1937 | "dev": true 1938 | }, 1939 | "caseless": { 1940 | "version": "0.12.0", 1941 | "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", 1942 | "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", 1943 | "dev": true 1944 | }, 1945 | "chainsaw": { 1946 | "version": "0.1.0", 1947 | "resolved": "https://registry.npmjs.org/chainsaw/-/chainsaw-0.1.0.tgz", 1948 | "integrity": "sha1-XqtQsor+WAdNDVgpE4iCi15fvJg=", 1949 | "dev": true, 1950 | "requires": { 1951 | "traverse": ">=0.3.0 <0.4" 1952 | } 1953 | }, 1954 | "chalk": { 1955 | "version": "1.1.3", 1956 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", 1957 | "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", 1958 | "dev": true, 1959 | "requires": { 1960 | "ansi-styles": "^2.2.1", 1961 | "escape-string-regexp": "^1.0.2", 1962 | "has-ansi": "^2.0.0", 1963 | "strip-ansi": "^3.0.0", 1964 | "supports-color": "^2.0.0" 1965 | } 1966 | }, 1967 | "charenc": { 1968 | "version": "0.0.2", 1969 | "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", 1970 | "integrity": "sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc=", 1971 | "dev": true 1972 | }, 1973 | "chokidar": { 1974 | "version": "3.0.0", 1975 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.0.0.tgz", 1976 | "integrity": "sha512-ebzWopcacB2J19Jsb5RPtMrzmjUZ5VAQnsL0Ztrix3lswozHbiDp+1Lg3AWSKHdwsps/W2vtshA/x3I827F78g==", 1977 | "dev": true, 1978 | "requires": { 1979 | "anymatch": "^3.0.1", 1980 | "async-each": "^1.0.3", 1981 | "braces": "^3.0.2", 1982 | "fsevents": "^2.0.6", 1983 | "glob-parent": "^5.0.0", 1984 | "is-binary-path": "^2.1.0", 1985 | "is-glob": "^4.0.1", 1986 | "normalize-path": "^3.0.0", 1987 | "readdirp": "^3.0.1" 1988 | } 1989 | }, 1990 | "chownr": { 1991 | "version": "2.0.0", 1992 | "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", 1993 | "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", 1994 | "dev": true 1995 | }, 1996 | "cli-color": { 1997 | "version": "1.2.0", 1998 | "resolved": "https://registry.npmjs.org/cli-color/-/cli-color-1.2.0.tgz", 1999 | "integrity": "sha1-OlrnT9drYmevZm5p4q+70B3vNNE=", 2000 | "dev": true, 2001 | "requires": { 2002 | "ansi-regex": "^2.1.1", 2003 | "d": "1", 2004 | "es5-ext": "^0.10.12", 2005 | "es6-iterator": "2", 2006 | "memoizee": "^0.4.3", 2007 | "timers-ext": "0.1" 2008 | } 2009 | }, 2010 | "combined-stream": { 2011 | "version": "1.0.8", 2012 | "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", 2013 | "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", 2014 | "dev": true, 2015 | "requires": { 2016 | "delayed-stream": "~1.0.0" 2017 | } 2018 | }, 2019 | "commander": { 2020 | "version": "2.17.1", 2021 | "resolved": "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz", 2022 | "integrity": "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==", 2023 | "dev": true 2024 | }, 2025 | "connect-pushstate": { 2026 | "version": "1.1.0", 2027 | "resolved": "https://registry.npmjs.org/connect-pushstate/-/connect-pushstate-1.1.0.tgz", 2028 | "integrity": "sha1-vKsiQnHEOWBKD7D2FMCl9WPojiQ=", 2029 | "dev": true 2030 | }, 2031 | "core-util-is": { 2032 | "version": "1.0.2", 2033 | "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", 2034 | "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", 2035 | "dev": true 2036 | }, 2037 | "cross-spawn": { 2038 | "version": "5.0.1", 2039 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.0.1.tgz", 2040 | "integrity": "sha1-o7uzAtsil8vqPATt82lB9GE6o5k=", 2041 | "dev": true, 2042 | "requires": { 2043 | "lru-cache": "^4.0.1", 2044 | "shebang-command": "^1.2.0", 2045 | "which": "^1.2.9" 2046 | } 2047 | }, 2048 | "crypt": { 2049 | "version": "0.0.2", 2050 | "resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz", 2051 | "integrity": "sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs=", 2052 | "dev": true 2053 | }, 2054 | "d": { 2055 | "version": "1.0.1", 2056 | "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", 2057 | "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", 2058 | "dev": true, 2059 | "requires": { 2060 | "es5-ext": "^0.10.50", 2061 | "type": "^1.0.1" 2062 | } 2063 | }, 2064 | "dashdash": { 2065 | "version": "1.14.1", 2066 | "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", 2067 | "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", 2068 | "dev": true, 2069 | "requires": { 2070 | "assert-plus": "^1.0.0" 2071 | } 2072 | }, 2073 | "debug": { 2074 | "version": "2.6.9", 2075 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 2076 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 2077 | "dev": true, 2078 | "requires": { 2079 | "ms": "2.0.0" 2080 | } 2081 | }, 2082 | "default-gateway": { 2083 | "version": "2.7.2", 2084 | "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-2.7.2.tgz", 2085 | "integrity": "sha512-lAc4i9QJR0YHSDFdzeBQKfZ1SRDG3hsJNEkrpcZa8QhBfidLAilT60BDEIVUUGqosFp425KOgB3uYqcnQrWafQ==", 2086 | "dev": true, 2087 | "requires": { 2088 | "execa": "^0.10.0", 2089 | "ip-regex": "^2.1.0" 2090 | } 2091 | }, 2092 | "delayed-stream": { 2093 | "version": "1.0.0", 2094 | "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", 2095 | "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", 2096 | "dev": true 2097 | }, 2098 | "depd": { 2099 | "version": "1.1.2", 2100 | "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", 2101 | "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", 2102 | "dev": true 2103 | }, 2104 | "destroy": { 2105 | "version": "1.0.4", 2106 | "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", 2107 | "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", 2108 | "dev": true 2109 | }, 2110 | "ecc-jsbn": { 2111 | "version": "0.1.2", 2112 | "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", 2113 | "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", 2114 | "dev": true, 2115 | "requires": { 2116 | "jsbn": "~0.1.0", 2117 | "safer-buffer": "^2.1.0" 2118 | } 2119 | }, 2120 | "ee-first": { 2121 | "version": "1.1.1", 2122 | "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", 2123 | "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", 2124 | "dev": true 2125 | }, 2126 | "elm": { 2127 | "version": "0.19.1-5", 2128 | "resolved": "https://registry.npmjs.org/elm/-/elm-0.19.1-5.tgz", 2129 | "integrity": "sha512-dyBoPvFiNLvxOStQJdyq28gZEjS/enZXdZ5yyCtNtDEMbFJJVQq4pYNRKvhrKKdlxNot6d96iQe1uczoqO5yvA==", 2130 | "dev": true, 2131 | "requires": { 2132 | "request": "^2.88.0" 2133 | } 2134 | }, 2135 | "elm-format": { 2136 | "version": "0.8.5", 2137 | "resolved": "https://registry.npmjs.org/elm-format/-/elm-format-0.8.5.tgz", 2138 | "integrity": "sha512-/Mjwz5RhJ8cdcMsHT98AEKprSIHyRde+URIPvnHez9WH7Xp+rFCOJx0FNMPIYrbHE9Ei7HDSVwhjDP0i+mlvpQ==", 2139 | "dev": true, 2140 | "requires": { 2141 | "binwrap": "^0.2.3" 2142 | } 2143 | }, 2144 | "elm-live": { 2145 | "version": "3.4.1", 2146 | "resolved": "https://registry.npmjs.org/elm-live/-/elm-live-3.4.1.tgz", 2147 | "integrity": "sha512-7J4MCV0uyzfnGznSdVzz9o2vgHQwHSVKgEW/NG7dG7nsDWWxqPudQ/FkHYJFWjkylnRtBZUAtB27ZwnLIsgRUw==", 2148 | "dev": true, 2149 | "requires": { 2150 | "chalk": "^1.1.1", 2151 | "chokidar": "3.0.0", 2152 | "commander": "2.17.1", 2153 | "cross-spawn": "5.0.1", 2154 | "elm-serve": "0.4.0" 2155 | } 2156 | }, 2157 | "elm-serve": { 2158 | "version": "0.4.0", 2159 | "resolved": "https://registry.npmjs.org/elm-serve/-/elm-serve-0.4.0.tgz", 2160 | "integrity": "sha512-NYXzzaJT/zw8v7jzDWGXuvX3/soj+5NTLHxX0n/T6DICbmyDj8kO7rlI2wSKs9UTNjXhZ7quFQEKcgcf/SZksw==", 2161 | "dev": true, 2162 | "requires": { 2163 | "cli-color": "1.2.0", 2164 | "commander": "2.9.0", 2165 | "connect-pushstate": "1.1.0", 2166 | "finalhandler": "1.1.1", 2167 | "http-proxy": "1.17.0", 2168 | "internal-ip": "3.0.1", 2169 | "minimist": "1.2.0", 2170 | "opn": "5.3.0", 2171 | "pem": "1.13.2", 2172 | "serve-static": "1.13.2", 2173 | "supervisor": "0.12.0", 2174 | "url-parse": "1.4.3", 2175 | "ws": "5.2.0" 2176 | }, 2177 | "dependencies": { 2178 | "commander": { 2179 | "version": "2.9.0", 2180 | "resolved": "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz", 2181 | "integrity": "sha1-nJkJQXbhIkDLItbFFGCYQA/g99Q=", 2182 | "dev": true, 2183 | "requires": { 2184 | "graceful-readlink": ">= 1.0.0" 2185 | } 2186 | } 2187 | } 2188 | }, 2189 | "encodeurl": { 2190 | "version": "1.0.2", 2191 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", 2192 | "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", 2193 | "dev": true 2194 | }, 2195 | "es5-ext": { 2196 | "version": "0.10.53", 2197 | "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.53.tgz", 2198 | "integrity": "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==", 2199 | "dev": true, 2200 | "requires": { 2201 | "es6-iterator": "~2.0.3", 2202 | "es6-symbol": "~3.1.3", 2203 | "next-tick": "~1.0.0" 2204 | } 2205 | }, 2206 | "es6-iterator": { 2207 | "version": "2.0.3", 2208 | "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", 2209 | "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=", 2210 | "dev": true, 2211 | "requires": { 2212 | "d": "1", 2213 | "es5-ext": "^0.10.35", 2214 | "es6-symbol": "^3.1.1" 2215 | } 2216 | }, 2217 | "es6-promisify": { 2218 | "version": "6.1.1", 2219 | "resolved": "https://registry.npmjs.org/es6-promisify/-/es6-promisify-6.1.1.tgz", 2220 | "integrity": "sha512-HBL8I3mIki5C1Cc9QjKUenHtnG0A5/xA8Q/AllRcfiwl2CZFXGK7ddBiCoRwAix4i2KxcQfjtIVcrVbB3vbmwg==", 2221 | "dev": true 2222 | }, 2223 | "es6-symbol": { 2224 | "version": "3.1.3", 2225 | "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", 2226 | "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", 2227 | "dev": true, 2228 | "requires": { 2229 | "d": "^1.0.1", 2230 | "ext": "^1.1.2" 2231 | } 2232 | }, 2233 | "es6-weak-map": { 2234 | "version": "2.0.3", 2235 | "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz", 2236 | "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", 2237 | "dev": true, 2238 | "requires": { 2239 | "d": "1", 2240 | "es5-ext": "^0.10.46", 2241 | "es6-iterator": "^2.0.3", 2242 | "es6-symbol": "^3.1.1" 2243 | } 2244 | }, 2245 | "escape-html": { 2246 | "version": "1.0.3", 2247 | "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", 2248 | "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", 2249 | "dev": true 2250 | }, 2251 | "escape-string-regexp": { 2252 | "version": "1.0.5", 2253 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 2254 | "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", 2255 | "dev": true 2256 | }, 2257 | "etag": { 2258 | "version": "1.8.1", 2259 | "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", 2260 | "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", 2261 | "dev": true 2262 | }, 2263 | "event-emitter": { 2264 | "version": "0.3.5", 2265 | "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", 2266 | "integrity": "sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk=", 2267 | "dev": true, 2268 | "requires": { 2269 | "d": "1", 2270 | "es5-ext": "~0.10.14" 2271 | } 2272 | }, 2273 | "eventemitter3": { 2274 | "version": "3.1.2", 2275 | "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.2.tgz", 2276 | "integrity": "sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==", 2277 | "dev": true 2278 | }, 2279 | "execa": { 2280 | "version": "0.10.0", 2281 | "resolved": "https://registry.npmjs.org/execa/-/execa-0.10.0.tgz", 2282 | "integrity": "sha512-7XOMnz8Ynx1gGo/3hyV9loYNPWM94jG3+3T3Y8tsfSstFmETmENCMU/A/zj8Lyaj1lkgEepKepvd6240tBRvlw==", 2283 | "dev": true, 2284 | "requires": { 2285 | "cross-spawn": "^6.0.0", 2286 | "get-stream": "^3.0.0", 2287 | "is-stream": "^1.1.0", 2288 | "npm-run-path": "^2.0.0", 2289 | "p-finally": "^1.0.0", 2290 | "signal-exit": "^3.0.0", 2291 | "strip-eof": "^1.0.0" 2292 | }, 2293 | "dependencies": { 2294 | "cross-spawn": { 2295 | "version": "6.0.5", 2296 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", 2297 | "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", 2298 | "dev": true, 2299 | "requires": { 2300 | "nice-try": "^1.0.4", 2301 | "path-key": "^2.0.1", 2302 | "semver": "^5.5.0", 2303 | "shebang-command": "^1.2.0", 2304 | "which": "^1.2.9" 2305 | } 2306 | } 2307 | } 2308 | }, 2309 | "ext": { 2310 | "version": "1.4.0", 2311 | "resolved": "https://registry.npmjs.org/ext/-/ext-1.4.0.tgz", 2312 | "integrity": "sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A==", 2313 | "dev": true, 2314 | "requires": { 2315 | "type": "^2.0.0" 2316 | }, 2317 | "dependencies": { 2318 | "type": { 2319 | "version": "2.5.0", 2320 | "resolved": "https://registry.npmjs.org/type/-/type-2.5.0.tgz", 2321 | "integrity": "sha512-180WMDQaIMm3+7hGXWf12GtdniDEy7nYcyFMKJn/eZz/6tSLXrUN9V0wKSbMjej0I1WHWbpREDEKHtqPQa9NNw==", 2322 | "dev": true 2323 | } 2324 | } 2325 | }, 2326 | "extend": { 2327 | "version": "3.0.2", 2328 | "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", 2329 | "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", 2330 | "dev": true 2331 | }, 2332 | "extsprintf": { 2333 | "version": "1.3.0", 2334 | "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", 2335 | "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", 2336 | "dev": true 2337 | }, 2338 | "fast-deep-equal": { 2339 | "version": "3.1.3", 2340 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 2341 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 2342 | "dev": true 2343 | }, 2344 | "fast-json-stable-stringify": { 2345 | "version": "2.1.0", 2346 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 2347 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 2348 | "dev": true 2349 | }, 2350 | "fill-range": { 2351 | "version": "7.0.1", 2352 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 2353 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 2354 | "dev": true, 2355 | "requires": { 2356 | "to-regex-range": "^5.0.1" 2357 | } 2358 | }, 2359 | "finalhandler": { 2360 | "version": "1.1.1", 2361 | "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.1.tgz", 2362 | "integrity": "sha512-Y1GUDo39ez4aHAw7MysnUD5JzYX+WaIj8I57kO3aEPT1fFRL4sr7mjei97FgnwhAyyzRYmQZaTHb2+9uZ1dPtg==", 2363 | "dev": true, 2364 | "requires": { 2365 | "debug": "2.6.9", 2366 | "encodeurl": "~1.0.2", 2367 | "escape-html": "~1.0.3", 2368 | "on-finished": "~2.3.0", 2369 | "parseurl": "~1.3.2", 2370 | "statuses": "~1.4.0", 2371 | "unpipe": "~1.0.0" 2372 | } 2373 | }, 2374 | "follow-redirects": { 2375 | "version": "1.13.3", 2376 | "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.3.tgz", 2377 | "integrity": "sha512-DUgl6+HDzB0iEptNQEXLx/KhTmDb8tZUHSeLqpnjpknR70H0nC2t9N73BK6fN4hOvJ84pKlIQVQ4k5FFlBedKA==", 2378 | "dev": true 2379 | }, 2380 | "forever-agent": { 2381 | "version": "0.6.1", 2382 | "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", 2383 | "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", 2384 | "dev": true 2385 | }, 2386 | "form-data": { 2387 | "version": "2.3.3", 2388 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", 2389 | "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", 2390 | "dev": true, 2391 | "requires": { 2392 | "asynckit": "^0.4.0", 2393 | "combined-stream": "^1.0.6", 2394 | "mime-types": "^2.1.12" 2395 | } 2396 | }, 2397 | "fresh": { 2398 | "version": "0.5.2", 2399 | "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", 2400 | "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", 2401 | "dev": true 2402 | }, 2403 | "fs-minipass": { 2404 | "version": "2.1.0", 2405 | "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", 2406 | "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", 2407 | "dev": true, 2408 | "requires": { 2409 | "minipass": "^3.0.0" 2410 | } 2411 | }, 2412 | "fsevents": { 2413 | "version": "2.3.2", 2414 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", 2415 | "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", 2416 | "dev": true, 2417 | "optional": true 2418 | }, 2419 | "get-stream": { 2420 | "version": "3.0.0", 2421 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", 2422 | "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", 2423 | "dev": true 2424 | }, 2425 | "getpass": { 2426 | "version": "0.1.7", 2427 | "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", 2428 | "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", 2429 | "dev": true, 2430 | "requires": { 2431 | "assert-plus": "^1.0.0" 2432 | } 2433 | }, 2434 | "glob-parent": { 2435 | "version": "5.1.2", 2436 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 2437 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 2438 | "dev": true, 2439 | "requires": { 2440 | "is-glob": "^4.0.1" 2441 | } 2442 | }, 2443 | "graceful-readlink": { 2444 | "version": "1.0.1", 2445 | "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz", 2446 | "integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=", 2447 | "dev": true 2448 | }, 2449 | "har-schema": { 2450 | "version": "2.0.0", 2451 | "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", 2452 | "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", 2453 | "dev": true 2454 | }, 2455 | "har-validator": { 2456 | "version": "5.1.5", 2457 | "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", 2458 | "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", 2459 | "dev": true, 2460 | "requires": { 2461 | "ajv": "^6.12.3", 2462 | "har-schema": "^2.0.0" 2463 | } 2464 | }, 2465 | "has-ansi": { 2466 | "version": "2.0.0", 2467 | "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", 2468 | "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", 2469 | "dev": true, 2470 | "requires": { 2471 | "ansi-regex": "^2.0.0" 2472 | } 2473 | }, 2474 | "http-errors": { 2475 | "version": "1.6.3", 2476 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", 2477 | "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", 2478 | "dev": true, 2479 | "requires": { 2480 | "depd": "~1.1.2", 2481 | "inherits": "2.0.3", 2482 | "setprototypeof": "1.1.0", 2483 | "statuses": ">= 1.4.0 < 2" 2484 | } 2485 | }, 2486 | "http-proxy": { 2487 | "version": "1.17.0", 2488 | "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.17.0.tgz", 2489 | "integrity": "sha512-Taqn+3nNvYRfJ3bGvKfBSRwy1v6eePlm3oc/aWVxZp57DQr5Eq3xhKJi7Z4hZpS8PC3H4qI+Yly5EmFacGuA/g==", 2490 | "dev": true, 2491 | "requires": { 2492 | "eventemitter3": "^3.0.0", 2493 | "follow-redirects": "^1.0.0", 2494 | "requires-port": "^1.0.0" 2495 | } 2496 | }, 2497 | "http-signature": { 2498 | "version": "1.2.0", 2499 | "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", 2500 | "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", 2501 | "dev": true, 2502 | "requires": { 2503 | "assert-plus": "^1.0.0", 2504 | "jsprim": "^1.2.2", 2505 | "sshpk": "^1.7.0" 2506 | } 2507 | }, 2508 | "inherits": { 2509 | "version": "2.0.3", 2510 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", 2511 | "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", 2512 | "dev": true 2513 | }, 2514 | "internal-ip": { 2515 | "version": "3.0.1", 2516 | "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-3.0.1.tgz", 2517 | "integrity": "sha512-NXXgESC2nNVtU+pqmC9e6R8B1GpKxzsAQhffvh5AL79qKnodd+L7tnEQmTiUAVngqLalPbSqRA7XGIEL5nCd0Q==", 2518 | "dev": true, 2519 | "requires": { 2520 | "default-gateway": "^2.6.0", 2521 | "ipaddr.js": "^1.5.2" 2522 | } 2523 | }, 2524 | "ip-regex": { 2525 | "version": "2.1.0", 2526 | "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", 2527 | "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=", 2528 | "dev": true 2529 | }, 2530 | "ipaddr.js": { 2531 | "version": "1.9.1", 2532 | "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", 2533 | "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", 2534 | "dev": true 2535 | }, 2536 | "is-binary-path": { 2537 | "version": "2.1.0", 2538 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 2539 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 2540 | "dev": true, 2541 | "requires": { 2542 | "binary-extensions": "^2.0.0" 2543 | } 2544 | }, 2545 | "is-buffer": { 2546 | "version": "1.1.6", 2547 | "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", 2548 | "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", 2549 | "dev": true 2550 | }, 2551 | "is-extglob": { 2552 | "version": "2.1.1", 2553 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 2554 | "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", 2555 | "dev": true 2556 | }, 2557 | "is-glob": { 2558 | "version": "4.0.1", 2559 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", 2560 | "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", 2561 | "dev": true, 2562 | "requires": { 2563 | "is-extglob": "^2.1.1" 2564 | } 2565 | }, 2566 | "is-number": { 2567 | "version": "7.0.0", 2568 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2569 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2570 | "dev": true 2571 | }, 2572 | "is-promise": { 2573 | "version": "2.2.2", 2574 | "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz", 2575 | "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==", 2576 | "dev": true 2577 | }, 2578 | "is-stream": { 2579 | "version": "1.1.0", 2580 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", 2581 | "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", 2582 | "dev": true 2583 | }, 2584 | "is-typedarray": { 2585 | "version": "1.0.0", 2586 | "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", 2587 | "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", 2588 | "dev": true 2589 | }, 2590 | "is-wsl": { 2591 | "version": "1.1.0", 2592 | "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", 2593 | "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", 2594 | "dev": true 2595 | }, 2596 | "isexe": { 2597 | "version": "2.0.0", 2598 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2599 | "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", 2600 | "dev": true 2601 | }, 2602 | "isstream": { 2603 | "version": "0.1.2", 2604 | "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", 2605 | "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", 2606 | "dev": true 2607 | }, 2608 | "jsbn": { 2609 | "version": "0.1.1", 2610 | "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", 2611 | "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", 2612 | "dev": true 2613 | }, 2614 | "json-schema": { 2615 | "version": "0.2.3", 2616 | "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", 2617 | "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=", 2618 | "dev": true 2619 | }, 2620 | "json-schema-traverse": { 2621 | "version": "0.4.1", 2622 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 2623 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 2624 | "dev": true 2625 | }, 2626 | "json-stringify-safe": { 2627 | "version": "5.0.1", 2628 | "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", 2629 | "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", 2630 | "dev": true 2631 | }, 2632 | "jsprim": { 2633 | "version": "1.4.1", 2634 | "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", 2635 | "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", 2636 | "dev": true, 2637 | "requires": { 2638 | "assert-plus": "1.0.0", 2639 | "extsprintf": "1.3.0", 2640 | "json-schema": "0.2.3", 2641 | "verror": "1.10.0" 2642 | } 2643 | }, 2644 | "lru-cache": { 2645 | "version": "4.1.5", 2646 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", 2647 | "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", 2648 | "dev": true, 2649 | "requires": { 2650 | "pseudomap": "^1.0.2", 2651 | "yallist": "^2.1.2" 2652 | } 2653 | }, 2654 | "lru-queue": { 2655 | "version": "0.1.0", 2656 | "resolved": "https://registry.npmjs.org/lru-queue/-/lru-queue-0.1.0.tgz", 2657 | "integrity": "sha1-Jzi9nw089PhEkMVzbEhpmsYyzaM=", 2658 | "dev": true, 2659 | "requires": { 2660 | "es5-ext": "~0.10.2" 2661 | } 2662 | }, 2663 | "md5": { 2664 | "version": "2.3.0", 2665 | "resolved": "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz", 2666 | "integrity": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==", 2667 | "dev": true, 2668 | "requires": { 2669 | "charenc": "0.0.2", 2670 | "crypt": "0.0.2", 2671 | "is-buffer": "~1.1.6" 2672 | } 2673 | }, 2674 | "memoizee": { 2675 | "version": "0.4.15", 2676 | "resolved": "https://registry.npmjs.org/memoizee/-/memoizee-0.4.15.tgz", 2677 | "integrity": "sha512-UBWmJpLZd5STPm7PMUlOw/TSy972M+z8gcyQ5veOnSDRREz/0bmpyTfKt3/51DhEBqCZQn1udM/5flcSPYhkdQ==", 2678 | "dev": true, 2679 | "requires": { 2680 | "d": "^1.0.1", 2681 | "es5-ext": "^0.10.53", 2682 | "es6-weak-map": "^2.0.3", 2683 | "event-emitter": "^0.3.5", 2684 | "is-promise": "^2.2.2", 2685 | "lru-queue": "^0.1.0", 2686 | "next-tick": "^1.1.0", 2687 | "timers-ext": "^0.1.7" 2688 | }, 2689 | "dependencies": { 2690 | "next-tick": { 2691 | "version": "1.1.0", 2692 | "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", 2693 | "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==", 2694 | "dev": true 2695 | } 2696 | } 2697 | }, 2698 | "mime": { 2699 | "version": "1.4.1", 2700 | "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz", 2701 | "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==", 2702 | "dev": true 2703 | }, 2704 | "mime-db": { 2705 | "version": "1.46.0", 2706 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.46.0.tgz", 2707 | "integrity": "sha512-svXaP8UQRZ5K7or+ZmfNhg2xX3yKDMUzqadsSqi4NCH/KomcH75MAMYAGVlvXn4+b/xOPhS3I2uHKRUzvjY7BQ==", 2708 | "dev": true 2709 | }, 2710 | "mime-types": { 2711 | "version": "2.1.29", 2712 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.29.tgz", 2713 | "integrity": "sha512-Y/jMt/S5sR9OaqteJtslsFZKWOIIqMACsJSiHghlCAyhf7jfVYjKBmLiX8OgpWeW+fjJ2b+Az69aPFPkUOY6xQ==", 2714 | "dev": true, 2715 | "requires": { 2716 | "mime-db": "1.46.0" 2717 | } 2718 | }, 2719 | "minimist": { 2720 | "version": "1.2.0", 2721 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", 2722 | "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", 2723 | "dev": true 2724 | }, 2725 | "minipass": { 2726 | "version": "3.1.3", 2727 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz", 2728 | "integrity": "sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg==", 2729 | "dev": true, 2730 | "requires": { 2731 | "yallist": "^4.0.0" 2732 | }, 2733 | "dependencies": { 2734 | "yallist": { 2735 | "version": "4.0.0", 2736 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 2737 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", 2738 | "dev": true 2739 | } 2740 | } 2741 | }, 2742 | "minizlib": { 2743 | "version": "2.1.2", 2744 | "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", 2745 | "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", 2746 | "dev": true, 2747 | "requires": { 2748 | "minipass": "^3.0.0", 2749 | "yallist": "^4.0.0" 2750 | }, 2751 | "dependencies": { 2752 | "yallist": { 2753 | "version": "4.0.0", 2754 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 2755 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", 2756 | "dev": true 2757 | } 2758 | } 2759 | }, 2760 | "mkdirp": { 2761 | "version": "1.0.4", 2762 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", 2763 | "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", 2764 | "dev": true 2765 | }, 2766 | "ms": { 2767 | "version": "2.0.0", 2768 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 2769 | "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", 2770 | "dev": true 2771 | }, 2772 | "next-tick": { 2773 | "version": "1.0.0", 2774 | "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz", 2775 | "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=", 2776 | "dev": true 2777 | }, 2778 | "nice-try": { 2779 | "version": "1.0.5", 2780 | "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", 2781 | "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", 2782 | "dev": true 2783 | }, 2784 | "normalize-path": { 2785 | "version": "3.0.0", 2786 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 2787 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 2788 | "dev": true 2789 | }, 2790 | "npm-run-path": { 2791 | "version": "2.0.2", 2792 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", 2793 | "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", 2794 | "dev": true, 2795 | "requires": { 2796 | "path-key": "^2.0.0" 2797 | } 2798 | }, 2799 | "oauth-sign": { 2800 | "version": "0.9.0", 2801 | "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", 2802 | "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", 2803 | "dev": true 2804 | }, 2805 | "on-finished": { 2806 | "version": "2.3.0", 2807 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", 2808 | "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", 2809 | "dev": true, 2810 | "requires": { 2811 | "ee-first": "1.1.1" 2812 | } 2813 | }, 2814 | "opn": { 2815 | "version": "5.3.0", 2816 | "resolved": "https://registry.npmjs.org/opn/-/opn-5.3.0.tgz", 2817 | "integrity": "sha512-bYJHo/LOmoTd+pfiYhfZDnf9zekVJrY+cnS2a5F2x+w5ppvTqObojTP7WiFG+kVZs9Inw+qQ/lw7TroWwhdd2g==", 2818 | "dev": true, 2819 | "requires": { 2820 | "is-wsl": "^1.1.0" 2821 | } 2822 | }, 2823 | "os-tmpdir": { 2824 | "version": "1.0.2", 2825 | "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", 2826 | "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", 2827 | "dev": true 2828 | }, 2829 | "p-finally": { 2830 | "version": "1.0.0", 2831 | "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", 2832 | "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", 2833 | "dev": true 2834 | }, 2835 | "parseurl": { 2836 | "version": "1.3.3", 2837 | "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", 2838 | "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", 2839 | "dev": true 2840 | }, 2841 | "path-key": { 2842 | "version": "2.0.1", 2843 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", 2844 | "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", 2845 | "dev": true 2846 | }, 2847 | "pem": { 2848 | "version": "1.13.2", 2849 | "resolved": "https://registry.npmjs.org/pem/-/pem-1.13.2.tgz", 2850 | "integrity": "sha512-MPJWuEb/r6AG+GpZi2JnfNtGAZDeL/8+ERKwXEWRuST5i+4lq/Uy36B352OWIUSPQGH+HR1HEDcIDi+8cKxXNg==", 2851 | "dev": true, 2852 | "requires": { 2853 | "es6-promisify": "^6.0.0", 2854 | "md5": "^2.2.1", 2855 | "os-tmpdir": "^1.0.1", 2856 | "which": "^1.3.1" 2857 | } 2858 | }, 2859 | "performance-now": { 2860 | "version": "2.1.0", 2861 | "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", 2862 | "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", 2863 | "dev": true 2864 | }, 2865 | "picomatch": { 2866 | "version": "2.2.2", 2867 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", 2868 | "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==", 2869 | "dev": true 2870 | }, 2871 | "prettier": { 2872 | "version": "2.2.1", 2873 | "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.2.1.tgz", 2874 | "integrity": "sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q==", 2875 | "dev": true 2876 | }, 2877 | "pseudomap": { 2878 | "version": "1.0.2", 2879 | "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", 2880 | "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", 2881 | "dev": true 2882 | }, 2883 | "psl": { 2884 | "version": "1.8.0", 2885 | "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", 2886 | "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==", 2887 | "dev": true 2888 | }, 2889 | "punycode": { 2890 | "version": "2.1.1", 2891 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", 2892 | "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", 2893 | "dev": true 2894 | }, 2895 | "qs": { 2896 | "version": "6.5.2", 2897 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", 2898 | "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", 2899 | "dev": true 2900 | }, 2901 | "querystringify": { 2902 | "version": "2.2.0", 2903 | "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", 2904 | "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", 2905 | "dev": true 2906 | }, 2907 | "range-parser": { 2908 | "version": "1.2.1", 2909 | "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", 2910 | "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", 2911 | "dev": true 2912 | }, 2913 | "readdirp": { 2914 | "version": "3.6.0", 2915 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 2916 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 2917 | "dev": true, 2918 | "requires": { 2919 | "picomatch": "^2.2.1" 2920 | } 2921 | }, 2922 | "request": { 2923 | "version": "2.88.2", 2924 | "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", 2925 | "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", 2926 | "dev": true, 2927 | "requires": { 2928 | "aws-sign2": "~0.7.0", 2929 | "aws4": "^1.8.0", 2930 | "caseless": "~0.12.0", 2931 | "combined-stream": "~1.0.6", 2932 | "extend": "~3.0.2", 2933 | "forever-agent": "~0.6.1", 2934 | "form-data": "~2.3.2", 2935 | "har-validator": "~5.1.3", 2936 | "http-signature": "~1.2.0", 2937 | "is-typedarray": "~1.0.0", 2938 | "isstream": "~0.1.2", 2939 | "json-stringify-safe": "~5.0.1", 2940 | "mime-types": "~2.1.19", 2941 | "oauth-sign": "~0.9.0", 2942 | "performance-now": "^2.1.0", 2943 | "qs": "~6.5.2", 2944 | "safe-buffer": "^5.1.2", 2945 | "tough-cookie": "~2.5.0", 2946 | "tunnel-agent": "^0.6.0", 2947 | "uuid": "^3.3.2" 2948 | } 2949 | }, 2950 | "requires-port": { 2951 | "version": "1.0.0", 2952 | "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", 2953 | "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", 2954 | "dev": true 2955 | }, 2956 | "safe-buffer": { 2957 | "version": "5.2.1", 2958 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 2959 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", 2960 | "dev": true 2961 | }, 2962 | "safer-buffer": { 2963 | "version": "2.1.2", 2964 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 2965 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", 2966 | "dev": true 2967 | }, 2968 | "semver": { 2969 | "version": "5.7.1", 2970 | "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", 2971 | "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", 2972 | "dev": true 2973 | }, 2974 | "send": { 2975 | "version": "0.16.2", 2976 | "resolved": "https://registry.npmjs.org/send/-/send-0.16.2.tgz", 2977 | "integrity": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==", 2978 | "dev": true, 2979 | "requires": { 2980 | "debug": "2.6.9", 2981 | "depd": "~1.1.2", 2982 | "destroy": "~1.0.4", 2983 | "encodeurl": "~1.0.2", 2984 | "escape-html": "~1.0.3", 2985 | "etag": "~1.8.1", 2986 | "fresh": "0.5.2", 2987 | "http-errors": "~1.6.2", 2988 | "mime": "1.4.1", 2989 | "ms": "2.0.0", 2990 | "on-finished": "~2.3.0", 2991 | "range-parser": "~1.2.0", 2992 | "statuses": "~1.4.0" 2993 | } 2994 | }, 2995 | "serve-static": { 2996 | "version": "1.13.2", 2997 | "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz", 2998 | "integrity": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==", 2999 | "dev": true, 3000 | "requires": { 3001 | "encodeurl": "~1.0.2", 3002 | "escape-html": "~1.0.3", 3003 | "parseurl": "~1.3.2", 3004 | "send": "0.16.2" 3005 | } 3006 | }, 3007 | "setprototypeof": { 3008 | "version": "1.1.0", 3009 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", 3010 | "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", 3011 | "dev": true 3012 | }, 3013 | "shebang-command": { 3014 | "version": "1.2.0", 3015 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", 3016 | "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", 3017 | "dev": true, 3018 | "requires": { 3019 | "shebang-regex": "^1.0.0" 3020 | } 3021 | }, 3022 | "shebang-regex": { 3023 | "version": "1.0.0", 3024 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", 3025 | "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", 3026 | "dev": true 3027 | }, 3028 | "signal-exit": { 3029 | "version": "3.0.3", 3030 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", 3031 | "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==", 3032 | "dev": true 3033 | }, 3034 | "sshpk": { 3035 | "version": "1.16.1", 3036 | "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", 3037 | "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", 3038 | "dev": true, 3039 | "requires": { 3040 | "asn1": "~0.2.3", 3041 | "assert-plus": "^1.0.0", 3042 | "bcrypt-pbkdf": "^1.0.0", 3043 | "dashdash": "^1.12.0", 3044 | "ecc-jsbn": "~0.1.1", 3045 | "getpass": "^0.1.1", 3046 | "jsbn": "~0.1.0", 3047 | "safer-buffer": "^2.0.2", 3048 | "tweetnacl": "~0.14.0" 3049 | } 3050 | }, 3051 | "statuses": { 3052 | "version": "1.4.0", 3053 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz", 3054 | "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==", 3055 | "dev": true 3056 | }, 3057 | "strip-ansi": { 3058 | "version": "3.0.1", 3059 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", 3060 | "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", 3061 | "dev": true, 3062 | "requires": { 3063 | "ansi-regex": "^2.0.0" 3064 | } 3065 | }, 3066 | "strip-eof": { 3067 | "version": "1.0.0", 3068 | "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", 3069 | "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", 3070 | "dev": true 3071 | }, 3072 | "supervisor": { 3073 | "version": "0.12.0", 3074 | "resolved": "https://registry.npmjs.org/supervisor/-/supervisor-0.12.0.tgz", 3075 | "integrity": "sha1-3n5jNwFbKRhRwQ81OMSn8EkX7ME=", 3076 | "dev": true 3077 | }, 3078 | "supports-color": { 3079 | "version": "2.0.0", 3080 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", 3081 | "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", 3082 | "dev": true 3083 | }, 3084 | "tar": { 3085 | "version": "6.1.0", 3086 | "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.0.tgz", 3087 | "integrity": "sha512-DUCttfhsnLCjwoDoFcI+B2iJgYa93vBnDUATYEeRx6sntCTdN01VnqsIuTlALXla/LWooNg0yEGeB+Y8WdFxGA==", 3088 | "dev": true, 3089 | "requires": { 3090 | "chownr": "^2.0.0", 3091 | "fs-minipass": "^2.0.0", 3092 | "minipass": "^3.0.0", 3093 | "minizlib": "^2.1.1", 3094 | "mkdirp": "^1.0.3", 3095 | "yallist": "^4.0.0" 3096 | }, 3097 | "dependencies": { 3098 | "yallist": { 3099 | "version": "4.0.0", 3100 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 3101 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", 3102 | "dev": true 3103 | } 3104 | } 3105 | }, 3106 | "timers-ext": { 3107 | "version": "0.1.7", 3108 | "resolved": "https://registry.npmjs.org/timers-ext/-/timers-ext-0.1.7.tgz", 3109 | "integrity": "sha512-b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ==", 3110 | "dev": true, 3111 | "requires": { 3112 | "es5-ext": "~0.10.46", 3113 | "next-tick": "1" 3114 | } 3115 | }, 3116 | "to-regex-range": { 3117 | "version": "5.0.1", 3118 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 3119 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 3120 | "dev": true, 3121 | "requires": { 3122 | "is-number": "^7.0.0" 3123 | } 3124 | }, 3125 | "tough-cookie": { 3126 | "version": "2.5.0", 3127 | "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", 3128 | "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", 3129 | "dev": true, 3130 | "requires": { 3131 | "psl": "^1.1.28", 3132 | "punycode": "^2.1.1" 3133 | } 3134 | }, 3135 | "traverse": { 3136 | "version": "0.3.9", 3137 | "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.3.9.tgz", 3138 | "integrity": "sha1-cXuPIgzAu3tE5AUUwisui7xw2Lk=", 3139 | "dev": true 3140 | }, 3141 | "tunnel-agent": { 3142 | "version": "0.6.0", 3143 | "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", 3144 | "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", 3145 | "dev": true, 3146 | "requires": { 3147 | "safe-buffer": "^5.0.1" 3148 | } 3149 | }, 3150 | "tweetnacl": { 3151 | "version": "0.14.5", 3152 | "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", 3153 | "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", 3154 | "dev": true 3155 | }, 3156 | "type": { 3157 | "version": "1.2.0", 3158 | "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", 3159 | "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==", 3160 | "dev": true 3161 | }, 3162 | "unpipe": { 3163 | "version": "1.0.0", 3164 | "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", 3165 | "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", 3166 | "dev": true 3167 | }, 3168 | "unzip-stream": { 3169 | "version": "0.3.1", 3170 | "resolved": "https://registry.npmjs.org/unzip-stream/-/unzip-stream-0.3.1.tgz", 3171 | "integrity": "sha512-RzaGXLNt+CW+T41h1zl6pGz3EaeVhYlK+rdAap+7DxW5kqsqePO8kRtWPaCiVqdhZc86EctSPVYNix30YOMzmw==", 3172 | "dev": true, 3173 | "requires": { 3174 | "binary": "^0.3.0", 3175 | "mkdirp": "^0.5.1" 3176 | }, 3177 | "dependencies": { 3178 | "minimist": { 3179 | "version": "1.2.5", 3180 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", 3181 | "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", 3182 | "dev": true 3183 | }, 3184 | "mkdirp": { 3185 | "version": "0.5.5", 3186 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", 3187 | "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", 3188 | "dev": true, 3189 | "requires": { 3190 | "minimist": "^1.2.5" 3191 | } 3192 | } 3193 | } 3194 | }, 3195 | "uri-js": { 3196 | "version": "4.4.1", 3197 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 3198 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 3199 | "dev": true, 3200 | "requires": { 3201 | "punycode": "^2.1.0" 3202 | } 3203 | }, 3204 | "url-parse": { 3205 | "version": "1.4.3", 3206 | "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.4.3.tgz", 3207 | "integrity": "sha512-rh+KuAW36YKo0vClhQzLLveoj8FwPJNu65xLb7Mrt+eZht0IPT0IXgSv8gcMegZ6NvjJUALf6Mf25POlMwD1Fw==", 3208 | "dev": true, 3209 | "requires": { 3210 | "querystringify": "^2.0.0", 3211 | "requires-port": "^1.0.0" 3212 | } 3213 | }, 3214 | "uuid": { 3215 | "version": "3.4.0", 3216 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", 3217 | "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", 3218 | "dev": true 3219 | }, 3220 | "verror": { 3221 | "version": "1.10.0", 3222 | "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", 3223 | "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", 3224 | "dev": true, 3225 | "requires": { 3226 | "assert-plus": "^1.0.0", 3227 | "core-util-is": "1.0.2", 3228 | "extsprintf": "^1.2.0" 3229 | } 3230 | }, 3231 | "which": { 3232 | "version": "1.3.1", 3233 | "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", 3234 | "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", 3235 | "dev": true, 3236 | "requires": { 3237 | "isexe": "^2.0.0" 3238 | } 3239 | }, 3240 | "ws": { 3241 | "version": "5.2.0", 3242 | "resolved": "https://registry.npmjs.org/ws/-/ws-5.2.0.tgz", 3243 | "integrity": "sha512-c18dMeW+PEQdDFzkhDsnBAlS4Z8KGStBQQUcQ5mf7Nf689jyGk0594L+i9RaQuf4gog6SvWLJorz2NfSaqxZ7w==", 3244 | "dev": true, 3245 | "requires": { 3246 | "async-limiter": "~1.0.0" 3247 | } 3248 | }, 3249 | "yallist": { 3250 | "version": "2.1.2", 3251 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", 3252 | "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", 3253 | "dev": true 3254 | } 3255 | } 3256 | } 3257 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "em-nome-da-lai", 3 | "version": "0.0.1", 4 | "description": "Em nome da LAI! Gerador de petições com base na LAI.", 5 | "scripts": { 6 | "start": "elm-live src/Main.elm --start-page=index.html --dir=dist/ --path-to-elm=node_modules/.bin/elm --open --hot -- --output=dist/js/app.js --debug", 7 | "build": "elm make src/Main.elm --optimize --output=dist/js/app.js", 8 | "test": "elm-format src/ --validate && prettier dist/ --check" 9 | }, 10 | "repository": { 11 | "type": "git", 12 | "url": "git+https://github.com/cuducos/em-nome-da-lai.git" 13 | }, 14 | "keywords": [ 15 | "lai", 16 | "dados abertos", 17 | "brasil", 18 | "lei de acesso à informação" 19 | ], 20 | "author": "Eduardo Cuducos", 21 | "license": "GPL-3.0-or-later", 22 | "bugs": { 23 | "url": "https://github.com/cuducos/em-nome-da-lai/issues" 24 | }, 25 | "homepage": "https://github.com/cuducos/em-nome-da-lai#readme", 26 | "devDependencies": { 27 | "elm": "^0.19.1-3", 28 | "elm-format": "^0.8.5", 29 | "elm-live": "^3.4.1", 30 | "prettier": "^2.2.1" 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /src/Form/Mask.elm: -------------------------------------------------------------------------------- 1 | module Form.Mask exposing (cnpj, cpf, date, postalCode) 2 | 3 | 4 | cpf : String -> String 5 | cpf value = 6 | let 7 | cleaned : String 8 | cleaned = 9 | String.filter Char.isDigit value 10 | in 11 | String.concat 12 | [ String.slice 0 3 cleaned 13 | , "." 14 | , String.slice 3 6 cleaned 15 | , "." 16 | , String.slice 6 9 cleaned 17 | , "-" 18 | , String.slice 9 11 cleaned 19 | ] 20 | 21 | 22 | cnpj : String -> String 23 | cnpj value = 24 | let 25 | cleaned : String 26 | cleaned = 27 | String.filter Char.isDigit value 28 | in 29 | String.concat 30 | [ String.slice 0 2 cleaned 31 | , "." 32 | , String.slice 2 5 cleaned 33 | , "." 34 | , String.slice 5 8 cleaned 35 | , "/" 36 | , String.slice 8 12 cleaned 37 | , "-" 38 | , String.slice 12 14 cleaned 39 | ] 40 | 41 | 42 | date : String -> String 43 | date value = 44 | let 45 | cleaned : String 46 | cleaned = 47 | String.filter Char.isDigit value 48 | in 49 | String.join 50 | "/" 51 | [ String.slice 0 2 cleaned 52 | , String.slice 2 4 cleaned 53 | , String.slice 4 8 cleaned 54 | ] 55 | 56 | 57 | postalCode : String -> String 58 | postalCode value = 59 | let 60 | cleaned : String 61 | cleaned = 62 | String.filter Char.isDigit value 63 | in 64 | String.concat 65 | [ String.slice 0 5 cleaned 66 | , "-" 67 | , String.slice 5 8 cleaned 68 | ] 69 | -------------------------------------------------------------------------------- /src/Form/Model.elm: -------------------------------------------------------------------------------- 1 | module Form.Model exposing (Field, FieldRow, FieldSet, Width(..), newField) 2 | 3 | 4 | type Width 5 | = One 6 | | Two 7 | | Three 8 | | Four 9 | | Five 10 | | Six 11 | | Seven 12 | | Eight 13 | | Nine 14 | | Ten 15 | | Eleven 16 | | Twelve 17 | | Thirteen 18 | | Fourteen 19 | | Fifteen 20 | | Sixteen 21 | 22 | 23 | type alias Field = 24 | { value : String 25 | , label : String 26 | , width : Width 27 | , validators : List (String -> Bool) 28 | , mask : Maybe (String -> String) 29 | , valid : Bool 30 | , initialized : Bool 31 | , disabled : Bool 32 | } 33 | 34 | 35 | type alias FieldRow = 36 | List Field 37 | 38 | 39 | type alias FieldSet = 40 | { title : String 41 | , valid : Bool 42 | , rows : List FieldRow 43 | } 44 | 45 | 46 | newField : String -> Width -> List (String -> Bool) -> Maybe (String -> String) -> Field 47 | newField label width validators mask = 48 | Field "" label width validators mask False False False 49 | -------------------------------------------------------------------------------- /src/Form/Update.elm: -------------------------------------------------------------------------------- 1 | module Form.Update exposing (disable, enable, field, get, isFormValid, isValid, set) 2 | 3 | import Form.Model exposing (Field, FieldRow, FieldSet) 4 | import Set exposing (Set) 5 | 6 | 7 | get : String -> FieldSet -> Maybe Field 8 | get key s = 9 | s.rows 10 | |> List.concat 11 | |> List.filter (\f -> f.label == key) 12 | |> List.head 13 | 14 | 15 | isValid : String -> FieldSet -> Bool 16 | isValid key s = 17 | s 18 | |> get key 19 | |> Maybe.map .valid 20 | |> Maybe.withDefault False 21 | 22 | 23 | validate : Field -> Field 24 | validate f = 25 | let 26 | notEmpty : String -> Bool 27 | notEmpty value = 28 | value 29 | |> String.trim 30 | |> String.isEmpty 31 | |> not 32 | 33 | validations : List Bool 34 | validations = 35 | f.validators 36 | |> (::) notEmpty 37 | |> List.map (\v -> v f.value) 38 | in 39 | { f | valid = not (List.member False validations) } 40 | 41 | 42 | field : Field -> String -> Field 43 | field f value = 44 | let 45 | mask : String -> String 46 | mask = 47 | Maybe.withDefault (\s -> s) f.mask 48 | 49 | newField : Field 50 | newField = 51 | validate { f | initialized = True, value = value } 52 | in 53 | if newField.valid then 54 | { newField | value = mask newField.value } 55 | 56 | else 57 | newField 58 | 59 | 60 | rows : String -> String -> FieldRow -> FieldRow 61 | rows key value r = 62 | List.map 63 | (\f -> 64 | if f.label == key then 65 | field f value 66 | 67 | else 68 | f 69 | ) 70 | r 71 | 72 | 73 | isFormValid : List FieldSet -> Bool 74 | isFormValid fieldsets = 75 | fieldsets 76 | |> List.map isSetValid 77 | |> List.member False 78 | |> not 79 | 80 | 81 | isSetValid : FieldSet -> Bool 82 | isSetValid s = 83 | s.rows 84 | |> List.concat 85 | |> List.map .valid 86 | |> List.member False 87 | |> not 88 | 89 | 90 | validateSet : FieldSet -> FieldSet 91 | validateSet s = 92 | { s | valid = isSetValid s } 93 | 94 | 95 | set : String -> String -> FieldSet -> FieldSet 96 | set key value s = 97 | validateSet { s | rows = List.map (\r -> rows key value r) s.rows } 98 | 99 | 100 | setDisabledto : Bool -> Set String -> FieldSet -> FieldSet 101 | setDisabledto value keys fieldset = 102 | let 103 | disableFieldsInRow : FieldRow -> FieldRow 104 | disableFieldsInRow = 105 | List.map 106 | (\f -> 107 | if Set.member f.label keys then 108 | { f | disabled = value } 109 | 110 | else 111 | f 112 | ) 113 | in 114 | { fieldset | rows = List.map disableFieldsInRow fieldset.rows } 115 | 116 | 117 | disable : Set String -> FieldSet -> FieldSet 118 | disable = 119 | setDisabledto True 120 | 121 | 122 | enable : Set String -> FieldSet -> FieldSet 123 | enable = 124 | setDisabledto False 125 | -------------------------------------------------------------------------------- /src/Form/Validators.elm: -------------------------------------------------------------------------------- 1 | module Form.Validators exposing (cnpj, cpf, date, postalCode, state) 2 | 3 | import Form.Model exposing (Field) 4 | import Set exposing (Set) 5 | 6 | 7 | states : Set String 8 | states = 9 | Set.fromList 10 | [ "AC" 11 | , "AL" 12 | , "AP" 13 | , "AM" 14 | , "BA" 15 | , "CE" 16 | , "ES" 17 | , "GO" 18 | , "MA" 19 | , "MT" 20 | , "MS" 21 | , "MG" 22 | , "PA" 23 | , "PB" 24 | , "PR" 25 | , "PE" 26 | , "PI" 27 | , "RJ" 28 | , "RN" 29 | , "RS" 30 | , "RO" 31 | , "RR" 32 | , "SC" 33 | , "SP" 34 | , "SE" 35 | , "TO" 36 | , "DF" 37 | ] 38 | 39 | 40 | state : String -> Bool 41 | state value = 42 | Set.member value states 43 | 44 | 45 | cpf : String -> Bool 46 | cpf value = 47 | value 48 | |> String.filter Char.isDigit 49 | |> String.length 50 | |> (==) 11 51 | 52 | 53 | cnpj : String -> Bool 54 | cnpj value = 55 | value 56 | |> String.filter Char.isDigit 57 | |> String.length 58 | |> (==) 14 59 | 60 | 61 | date : String -> Bool 62 | date value = 63 | let 64 | digits : String 65 | digits = 66 | String.filter Char.isDigit value 67 | 68 | day : Int 69 | day = 70 | digits 71 | |> String.slice 0 2 72 | |> String.toInt 73 | |> Maybe.withDefault 0 74 | 75 | month : Int 76 | month = 77 | digits 78 | |> String.slice 2 4 79 | |> String.toInt 80 | |> Maybe.withDefault 0 81 | 82 | year : Int 83 | year = 84 | digits 85 | |> String.slice 4 8 86 | |> String.toInt 87 | |> Maybe.withDefault 0 88 | in 89 | year >= 1900 && year <= 2100 && month >= 1 && month <= 12 && day >= 1 && day <= 31 90 | 91 | 92 | postalCode : String -> Bool 93 | postalCode value = 94 | value 95 | |> String.filter Char.isDigit 96 | |> String.length 97 | |> (==) 8 98 | -------------------------------------------------------------------------------- /src/Form/View.elm: -------------------------------------------------------------------------------- 1 | module Form.View exposing (button, field, set, value) 2 | 3 | import Form.Model exposing (Field, FieldRow, FieldSet, Width(..)) 4 | import Form.Update exposing (get) 5 | import Html exposing (Html) 6 | import Html.Attributes exposing (class) 7 | import Html.Events exposing (onInput) 8 | 9 | 10 | value : String -> FieldSet -> String 11 | value key s = 12 | s 13 | |> get key 14 | |> Maybe.map .value 15 | |> Maybe.withDefault "" 16 | 17 | 18 | widthToString : Width -> List String 19 | widthToString width = 20 | case width of 21 | One -> 22 | [ "one", "wide" ] 23 | 24 | Two -> 25 | [ "two", "wide" ] 26 | 27 | Three -> 28 | [ "three", "wide" ] 29 | 30 | Four -> 31 | [ "four", "wide" ] 32 | 33 | Five -> 34 | [ "five", "wide" ] 35 | 36 | Six -> 37 | [ "six", "wide" ] 38 | 39 | Seven -> 40 | [ "seven", "wide" ] 41 | 42 | Eight -> 43 | [ "eight", "wide" ] 44 | 45 | Nine -> 46 | [ "nine", "wide" ] 47 | 48 | Ten -> 49 | [ "ten", "wide" ] 50 | 51 | Eleven -> 52 | [ "eleven", "wide" ] 53 | 54 | Twelve -> 55 | [ "twelve", "wide" ] 56 | 57 | Thirteen -> 58 | [ "thirteen", "wide" ] 59 | 60 | Fourteen -> 61 | [ "fourteen", "wide" ] 62 | 63 | Fifteen -> 64 | [ "fifteen", "wide" ] 65 | 66 | Sixteen -> 67 | [ "sixteen", "wide" ] 68 | 69 | 70 | fieldClass : Field -> Html.Attribute msg 71 | fieldClass f = 72 | let 73 | error : List String 74 | error = 75 | if not f.initialized || f.valid then 76 | [] 77 | 78 | else 79 | [ "error" ] 80 | in 81 | [ widthToString f.width, [ "field" ], error ] 82 | |> List.concat 83 | |> String.join " " 84 | |> class 85 | 86 | 87 | field : (String -> String -> msg) -> Field -> Html msg 88 | field msg f = 89 | Html.div 90 | [ fieldClass f ] 91 | [ Html.label [] [ Html.text f.label ] 92 | , Html.input [ Html.Attributes.value f.value, onInput (msg f.label) ] [] 93 | ] 94 | 95 | 96 | row : (String -> String -> msg) -> FieldRow -> Html msg 97 | row msg r = 98 | let 99 | fields : List (Html msg) 100 | fields = 101 | List.map (field msg) r 102 | in 103 | Html.div [ class "fields" ] fields 104 | 105 | 106 | set : FieldSet -> (String -> String -> msg) -> List (Html msg) 107 | set s msg = 108 | Html.h4 [ class "ui dividing header" ] [ Html.text s.title ] :: List.map (row msg) s.rows 109 | 110 | 111 | button : String -> String -> Bool -> List (Html.Attribute msg) -> Html msg 112 | button text icon enabled attrs = 113 | let 114 | classesToAttr : List String -> Html.Attribute msg 115 | classesToAttr list = 116 | list 117 | |> String.join " " 118 | |> class 119 | 120 | initialButtonClasses : List String 121 | initialButtonClasses = 122 | [ "ui", "right", "labeled", "icon", "button" ] 123 | 124 | buttonClasses : List String 125 | buttonClasses = 126 | if enabled then 127 | initialButtonClasses 128 | 129 | else 130 | "disabled" :: initialButtonClasses 131 | 132 | buttonsAttrs : List (Html.Attribute msg) 133 | buttonsAttrs = 134 | classesToAttr buttonClasses :: attrs 135 | 136 | iconAttrs : List (Html.Attribute msg) 137 | iconAttrs = 138 | [ icon, "icon" ] 139 | |> String.join " " 140 | |> class 141 | |> List.singleton 142 | in 143 | Html.a 144 | buttonsAttrs 145 | [ Html.i iconAttrs [] 146 | , Html.text text 147 | ] 148 | -------------------------------------------------------------------------------- /src/Main.elm: -------------------------------------------------------------------------------- 1 | module Main exposing (main) 2 | 3 | import Browser 4 | import Form.Mask exposing (cpf) 5 | import Form.Model exposing (FieldSet, Width(..), newField) 6 | import Form.Validators 7 | import Html exposing (Html, br, text) 8 | import Html.Attributes exposing (placeholder, style, value) 9 | import Html.Events exposing (onInput) 10 | import Model exposing (Model) 11 | import Task 12 | import Time 13 | import Update exposing (Msg(..), subscriptions, update) 14 | import View exposing (view) 15 | 16 | 17 | location : FieldSet 18 | location = 19 | FieldSet 20 | "Localização do tribunal" 21 | False 22 | [ [ newField "Cidade" Fourteen [] Nothing 23 | , newField "UF" Two [ Form.Validators.state ] (Just String.toUpper) 24 | ] 25 | ] 26 | 27 | 28 | person : FieldSet 29 | person = 30 | FieldSet 31 | "Informações pessoais" 32 | False 33 | [ [ newField "Nome completo" Sixteen [] Nothing ] 34 | , [ newField "Nacionalidade" Six [] Nothing 35 | , newField "Ocupação" Six [] Nothing 36 | , newField "Estado civil" Four [] Nothing 37 | ] 38 | , [ newField "RG" Eight [] Nothing 39 | , newField "CPF" Eight [ Form.Validators.cpf ] (Just Form.Mask.cpf) 40 | ] 41 | , [ newField "Endereço" Sixteen [] Nothing ] 42 | , [ newField "Cidade" Ten [] Nothing 43 | , newField "UF" Two [ Form.Validators.state ] (Just String.toUpper) 44 | , newField "CEP" Four [ Form.Validators.postalCode ] (Just Form.Mask.postalCode) 45 | ] 46 | ] 47 | 48 | 49 | institution : FieldSet 50 | institution = 51 | FieldSet 52 | "Informações do órgão público" 53 | False 54 | [ [ newField "CNPJ" Sixteen [ Form.Validators.cnpj ] (Just Form.Mask.cnpj) ] 55 | , [ newField "Razão social" Sixteen [] Nothing ] 56 | , [ newField "Endereço" Sixteen [] Nothing ] 57 | , [ newField "Cidade" Ten [] Nothing 58 | , newField "UF" Two [ Form.Validators.state ] (Just String.toUpper) 59 | , newField "CEP" Four [ Form.Validators.postalCode ] (Just Form.Mask.postalCode) 60 | ] 61 | ] 62 | 63 | 64 | ticket : FieldSet 65 | ticket = 66 | FieldSet 67 | "Informações do requerimento pela LAI" 68 | False 69 | [ [ newField "Número do protocolo" Eight [] Nothing 70 | , newField "Data do protocolo" Four [ Form.Validators.date ] (Just Form.Mask.date) 71 | , newField "Data para resposta" Four [ Form.Validators.date ] (Just Form.Mask.date) 72 | ] 73 | ] 74 | 75 | 76 | init : () -> ( Model, Cmd Msg ) 77 | init _ = 78 | ( { form = 79 | { location = location 80 | , person = person 81 | , institution = institution 82 | , ticket = ticket 83 | , valid = False 84 | } 85 | , now = Nothing 86 | , timezone = Time.utc 87 | , documentInHtml = "" 88 | } 89 | , Task.perform UpdateTimezone Time.here 90 | ) 91 | 92 | 93 | main : Program () Model Msg 94 | main = 95 | Browser.element 96 | { init = init 97 | , subscriptions = subscriptions 98 | , view = view 99 | , update = update 100 | } 101 | -------------------------------------------------------------------------------- /src/MinhaReceita/Decoder.elm: -------------------------------------------------------------------------------- 1 | module MinhaReceita.Decoder exposing (companyDecoder) 2 | 3 | import Json.Decode exposing (Decoder, field, string) 4 | import MinhaReceita.Model exposing (Company) 5 | 6 | 7 | companyDecoder : Decoder Company 8 | companyDecoder = 9 | Json.Decode.map8 10 | Company 11 | (field "razao_social" string) 12 | (field "descricao_tipo_logradouro" string) 13 | (field "logradouro" string) 14 | (field "numero" string) 15 | (field "complemento" string) 16 | (field "cep" string) 17 | (field "uf" string) 18 | (field "municipio" string) 19 | -------------------------------------------------------------------------------- /src/MinhaReceita/Model.elm: -------------------------------------------------------------------------------- 1 | module MinhaReceita.Model exposing (Company) 2 | 3 | 4 | type alias Company = 5 | { name : String 6 | , addressType : String 7 | , addressLine1 : String 8 | , addressNumber : String 9 | , addressLine2 : String 10 | , postalCode : String 11 | , state : String 12 | , city : String 13 | } 14 | -------------------------------------------------------------------------------- /src/MinhaReceita/Update.elm: -------------------------------------------------------------------------------- 1 | module MinhaReceita.Update exposing (loadCompany) 2 | 3 | import Http 4 | import MinhaReceita.Decoder exposing (companyDecoder) 5 | import MinhaReceita.Model exposing (Company) 6 | 7 | 8 | loadCompany : (Result Http.Error Company -> msg) -> String -> Cmd msg 9 | loadCompany msg cnpj = 10 | Http.post 11 | { url = "https://minhareceita.org/" 12 | , body = Http.stringBody "application/x-www-form-urlencoded" ("cnpj=" ++ cnpj) 13 | , expect = Http.expectJson msg companyDecoder 14 | } 15 | -------------------------------------------------------------------------------- /src/Model.elm: -------------------------------------------------------------------------------- 1 | module Model exposing (Form, Model) 2 | 3 | import Form.Model exposing (FieldSet) 4 | import Time exposing (Posix, Zone) 5 | 6 | 7 | type alias Form = 8 | { location : FieldSet 9 | , person : FieldSet 10 | , institution : FieldSet 11 | , ticket : FieldSet 12 | , valid : Bool 13 | } 14 | 15 | 16 | type alias Model = 17 | { form : Form 18 | , now : Maybe Posix 19 | , timezone : Zone 20 | , documentInHtml : String 21 | } 22 | -------------------------------------------------------------------------------- /src/Update.elm: -------------------------------------------------------------------------------- 1 | port module Update exposing (Msg(..), subscriptions, update) 2 | 3 | import Dict exposing (Dict) 4 | import Form.Model exposing (Field, FieldSet) 5 | import Form.Update exposing (isFormValid, isValid) 6 | import Http 7 | import MinhaReceita.Model exposing (Company) 8 | import MinhaReceita.Update exposing (loadCompany) 9 | import Model exposing (Form, Model) 10 | import Set 11 | import Time exposing (Posix, Zone) 12 | 13 | 14 | port print : () -> Cmd msg 15 | 16 | 17 | port getWordFile : () -> Cmd msg 18 | 19 | 20 | port updateWordFile : (String -> msg) -> Sub msg 21 | 22 | 23 | type Msg 24 | = UpdateTime Posix 25 | | UpdateTimezone Zone 26 | | Print 27 | | GetWordFile 28 | | UpdateWordFile String 29 | | UpdateLocation String String 30 | | UpdatePerson String String 31 | | UpdateInstitution String String 32 | | UpdateTicket String String 33 | | LoadCompany (Result Http.Error Company) 34 | 35 | 36 | validate : Form -> Form 37 | validate form = 38 | let 39 | valid : Bool 40 | valid = 41 | isFormValid 42 | [ form.location 43 | , form.person 44 | , form.institution 45 | , form.ticket 46 | ] 47 | in 48 | { form | valid = valid } 49 | 50 | 51 | updateForm : String -> Model -> Form -> ( Model, Cmd Msg ) 52 | updateForm key model form = 53 | let 54 | result : ( Model, Cmd Msg ) 55 | result = 56 | update GetWordFile { model | form = validate form } 57 | in 58 | if key == "CNPJ" then 59 | updateAndLoadCompany result 60 | 61 | else 62 | result 63 | 64 | 65 | updateAndLoadCompany : ( Model, Cmd Msg ) -> ( Model, Cmd Msg ) 66 | updateAndLoadCompany result = 67 | let 68 | model : Model 69 | model = 70 | Tuple.first result 71 | 72 | msg : Cmd Msg 73 | msg = 74 | Tuple.second result 75 | 76 | form : Form 77 | form = 78 | model.form 79 | 80 | institution : FieldSet 81 | institution = 82 | Form.Update.disable 83 | (Set.fromList [ "Razão social", "Endereço", "Cidade", "UF", "CEP" ]) 84 | form.institution 85 | in 86 | if Form.Update.isValid "CNPJ" model.form.institution then 87 | ( { model | form = { form | institution = institution } } 88 | , Cmd.batch 89 | [ msg 90 | , model.form.institution 91 | |> Form.Update.get "CNPJ" 92 | |> Maybe.map .value 93 | |> Maybe.withDefault "" 94 | |> loadCompany LoadCompany 95 | ] 96 | ) 97 | 98 | else 99 | result 100 | 101 | 102 | updateCompany : Company -> Model -> ( Model, Cmd Msg ) 103 | updateCompany company model = 104 | let 105 | address : List String 106 | address = 107 | List.filter (String.isEmpty >> not) 108 | [ company.addressType, company.addressLine1, company.addressNumber, company.addressLine2 ] 109 | 110 | asDict : Dict String String 111 | asDict = 112 | Dict.fromList 113 | [ ( "Razão social", company.name ) 114 | , ( "Endereço", String.join " " address ) 115 | , ( "Cidade", company.city ) 116 | , ( "UF", company.state ) 117 | , ( "CEP", company.postalCode ) 118 | ] 119 | 120 | form : Form 121 | form = 122 | model.form 123 | 124 | toUpdate : String -> ( Model, Cmd Msg ) -> ( Model, Cmd Msg ) 125 | toUpdate key ( m, msg ) = 126 | asDict 127 | |> Dict.get key 128 | |> Maybe.map (\v -> updateForm key m { form | institution = Form.Update.set key v m.form.institution }) 129 | |> Maybe.withDefault ( m, msg ) 130 | |> (\( newModel, newMsg ) -> ( newModel, Cmd.batch [ msg, newMsg ] )) 131 | in 132 | List.foldr toUpdate ( model, Cmd.none ) [ "Razão social", "Endereço", "Cidade", "UF", "CEP" ] 133 | 134 | 135 | update : Msg -> Model -> ( Model, Cmd Msg ) 136 | update msg model = 137 | let 138 | form : Form 139 | form = 140 | model.form 141 | in 142 | case msg of 143 | UpdateTime now -> 144 | update GetWordFile { model | now = Just now } 145 | 146 | UpdateTimezone zone -> 147 | ( { model | timezone = zone }, Cmd.none ) 148 | 149 | Print -> 150 | ( model, print () ) 151 | 152 | GetWordFile -> 153 | ( model, getWordFile () ) 154 | 155 | UpdateWordFile documentInHtml -> 156 | ( { model | documentInHtml = documentInHtml }, Cmd.none ) 157 | 158 | UpdateLocation key value -> 159 | updateForm key model { form | location = Form.Update.set key value form.location } 160 | 161 | UpdatePerson key value -> 162 | updateForm key model { form | person = Form.Update.set key value form.person } 163 | 164 | UpdateInstitution key value -> 165 | updateForm key model { form | institution = Form.Update.set key value form.institution } 166 | 167 | UpdateTicket key value -> 168 | updateForm key model { form | ticket = Form.Update.set key value form.ticket } 169 | 170 | LoadCompany (Ok company) -> 171 | updateCompany company model 172 | 173 | LoadCompany (Err err) -> 174 | ( model, Cmd.none ) 175 | 176 | 177 | subscriptions : Model -> Sub Msg 178 | subscriptions model = 179 | case model.now of 180 | Just now -> 181 | updateWordFile UpdateWordFile 182 | 183 | Nothing -> 184 | Sub.batch 185 | [ updateWordFile UpdateWordFile 186 | , Time.every 1 UpdateTime 187 | ] 188 | -------------------------------------------------------------------------------- /src/View.elm: -------------------------------------------------------------------------------- 1 | module View exposing (view) 2 | 3 | import Form.Model exposing (FieldSet) 4 | import Form.Update exposing (isValid) 5 | import Form.View 6 | import Html exposing (Html) 7 | import Html.Attributes exposing (class, download, href, id, src, style, type_, value) 8 | import Html.Events exposing (onClick, onInput) 9 | import Model exposing (Model) 10 | import Time exposing (Month(..), Posix) 11 | import Update exposing (Msg(..)) 12 | 13 | 14 | viewForm : Model -> Html Msg 15 | viewForm model = 16 | let 17 | nodes : List (Html Msg) 18 | nodes = 19 | List.concat 20 | [ Form.View.set model.form.location UpdateLocation 21 | , Form.View.set model.form.person UpdatePerson 22 | , Form.View.set model.form.institution UpdateInstitution 23 | , Form.View.set model.form.ticket UpdateTicket 24 | , [ Form.View.button 25 | "Baixar como arquivo do Word" 26 | "word file" 27 | model.form.valid 28 | [ href model.documentInHtml 29 | , download "em-nome-da-lai.doc" 30 | ] 31 | , Form.View.button 32 | "Imprimir" 33 | "print" 34 | model.form.valid 35 | [ onClick Print ] 36 | ] 37 | ] 38 | in 39 | Html.form [ class "ui form" ] nodes 40 | 41 | 42 | placeholder : List (Html Msg) 43 | placeholder = 44 | [ Html.div 45 | [ class "ui segment" ] 46 | [ Html.p 47 | [] 48 | [ Html.img 49 | [ class "ui wireframe image" 50 | , src "/img/short-paragraph.png" 51 | ] 52 | [] 53 | ] 54 | ] 55 | ] 56 | 57 | 58 | viewTitle : FieldSet -> List (Html Msg) 59 | viewTitle location = 60 | if location.valid then 61 | let 62 | value : String 63 | value = 64 | String.concat 65 | [ "Juiz de Direito do Juizado Especial Cível da Comarca de " 66 | , Form.View.value "Cidade" location 67 | , "/" 68 | , Form.View.value "UF" location 69 | ] 70 | in 71 | [ Html.h1 [ style "text-transform" "uppercase" ] [ Html.text value ] ] 72 | 73 | else 74 | [ Html.h1 [ style "text-transform" "uppercase" ] [ Html.text "Juiz de Direito do Juizado Especial Cível" ] ] 75 | 76 | 77 | viewId : FieldSet -> List (Html Msg) 78 | viewId person = 79 | if person.valid then 80 | let 81 | value : String 82 | value = 83 | String.concat 84 | [ Form.View.value "Nome completo" person 85 | , ", " 86 | , Form.View.value "Nacionalidade" person 87 | , ", " 88 | , Form.View.value "Ocupação" person 89 | , ", " 90 | , Form.View.value "Estado civil" person 91 | , ", RG " 92 | , Form.View.value "RG" person 93 | , ", CPF " 94 | , Form.View.value "CPF" person 95 | , ", residente na " 96 | , Form.View.value "Endereço" person 97 | , ", " 98 | , Form.View.value "Cidade" person 99 | , "/" 100 | , Form.View.value "UF" person 101 | , ", CEP " 102 | , Form.View.value "CEP" person 103 | , ", vem propor a seguinte:" 104 | ] 105 | in 106 | [ Html.p [] [ Html.text value ] ] 107 | 108 | else 109 | placeholder 110 | 111 | 112 | viewInstitution : FieldSet -> List (Html Msg) 113 | viewInstitution institution = 114 | if institution.valid then 115 | let 116 | value : String 117 | value = 118 | String.concat 119 | [ "Em face de " 120 | , Form.View.value "Razão sozial" institution 121 | , ", pessoa jurídica de direito público integrante da administração pública, inscrita no CNPJ sob o nº " 122 | , Form.View.value "CNPJ" institution 123 | , ", com sede na " 124 | , Form.View.value "Endereço" institution 125 | , ", " 126 | , Form.View.value "Cidade" institution 127 | , "/" 128 | , Form.View.value "UF" institution 129 | , ", CEP " 130 | , Form.View.value "CEP" institution 131 | , ":" 132 | ] 133 | in 134 | [ Html.p [] [ Html.text value ] ] 135 | 136 | else 137 | placeholder 138 | 139 | 140 | viewTicket : Model -> List (Html Msg) 141 | viewTicket model = 142 | if model.form.ticket.valid && isValid "Razão social" model.form.institution then 143 | let 144 | paragraph1 : String 145 | paragraph1 = 146 | String.concat 147 | [ "Em " 148 | , Form.View.value "Data do protocolo" model.form.ticket 149 | , " a parte autora protocolou pedido de acesso à informação, com base no art. 10 da Lei Federal 12.527/2011 (LAI) (Doc.1), perante " 150 | , Form.View.value "Razão social" model.form.institution 151 | , ", cujo registro de protocolo foi " 152 | , Form.View.value "Número de protocolo" model.form.ticket 153 | ] 154 | 155 | paragraph2 : String 156 | paragraph2 = 157 | String.concat 158 | [ "Sendo assim, o termo final para entrega da resposta era " 159 | , Form.View.value "Data para resposta" model.form.ticket 160 | , ". Entretanto, até a data de ajuizamento desta ação, não houve resposta. Assim, faz-se necessária esta ação, uma vez que não há outro meio de exercer o direito fundamental de acesso à informação neste caso senão pelo Judiciário." 161 | ] 162 | in 163 | [ Html.p [] [ Html.text "Razão deste processo: o pedido de acesso à informação não foi respondido no prazo legal." ] 164 | , Html.p [] [ Html.text paragraph1 ] 165 | , Html.p [] [ Html.text "Pela LAI, o prazo de resposta é de 20 dias, prorrogáveis, de forma fundamentada e cientificada, por mais 10 dias (art. 11, §§1º e 2º). De acordo com o art. 66 e art. 67 da Lei Federal 9.784/1999, a contagem dos prazos: a) começa no dia da ciência oficial, excluindo o dia do começo e incluindo o do vencimento; b) cair em feriado ou final de semana, prorroga-se até o primeiro dia útil seguinte; c) contam-se em dias corridos." ] 166 | , Html.p [] [ Html.text paragraph2 ] 167 | ] 168 | 169 | else 170 | placeholder 171 | 172 | 173 | viewSignature : Model -> List (Html Msg) 174 | viewSignature model = 175 | if isValid "Nome completo" model.form.person && isValid "Cidade" model.form.location then 176 | let 177 | monthToString : Month -> String 178 | monthToString month = 179 | case month of 180 | Jan -> 181 | "janeiro" 182 | 183 | Feb -> 184 | "fevereiro" 185 | 186 | Mar -> 187 | "março" 188 | 189 | Apr -> 190 | "abril" 191 | 192 | May -> 193 | "maio" 194 | 195 | Jun -> 196 | "junho" 197 | 198 | Jul -> 199 | "julho" 200 | 201 | Aug -> 202 | "agosto" 203 | 204 | Sep -> 205 | "setembro" 206 | 207 | Oct -> 208 | "outubro" 209 | 210 | Nov -> 211 | "novembro" 212 | 213 | Dec -> 214 | "dezembro" 215 | 216 | now : Posix 217 | now = 218 | Maybe.withDefault (Time.millisToPosix 0) model.now 219 | 220 | dateAsString : String 221 | dateAsString = 222 | String.join " de " 223 | [ now |> Time.toDay model.timezone |> String.fromInt 224 | , now |> Time.toMonth model.timezone |> monthToString 225 | , now |> Time.toYear model.timezone |> String.fromInt 226 | ] 227 | 228 | value : String 229 | value = 230 | String.concat [ Form.View.value "Cidade" model.form.location, ", ", dateAsString ] 231 | in 232 | [ Html.div 233 | [] 234 | [ Html.text (Form.View.value "Nome completo" model.form.person) 235 | , Html.br [] [] 236 | , Html.text value 237 | ] 238 | ] 239 | 240 | else 241 | placeholder 242 | 243 | 244 | viewDocument : Model -> List (Html Msg) 245 | viewDocument model = 246 | let 247 | nodes : List (Html Msg) 248 | nodes = 249 | List.concat 250 | [ viewTitle model.form.location 251 | , viewId model.form.person 252 | , [ Html.strong [ style "text-transform" "uppercase" ] [ Html.text "Ação de obrigação de fazer" ] ] 253 | , viewInstitution model.form.institution 254 | , [ Html.strong [ style "text-transform" "uppercase" ] [ Html.text "Fundamentos" ] ] 255 | , viewTicket model 256 | , [ Html.strong [ style "text-transform" "uppercase" ] [ Html.text "Requerimentos" ] 257 | , Html.p [] [ Html.text "Diante do exposto, requer:" ] 258 | , Html.p [] [ Html.text "Quanto às questões procedimentais: a) Informa-se não haver interesse em conciliação; b) Informa-se que o valor da causa é R$100,00; c) Seja a ré citada para, querendo, apresentar contestação;" ] 259 | , Html.p [] [ Html.text "Quanto às questões de mérito:" ] 260 | , Html.p [] [ Html.text "Seja a ação julgada procedente, para fins de obrigar o ente público a atender o requerimento de acesso à informação no prazo de 5 (cinco) dias corridos a contar da data de sentença;" ] 261 | , Html.p [] [ Html.text "Sucessivamente, seja estabelecido que o descumprimento da decisão importará em multa diária de R$100,00 contra o ente público a contar automaticamente do primeiro dia corrido seguinte ao descumprimento (art. 52, V da Lei Federal 9.099/95);" ] 262 | , Html.p [] [ Html.text "Sucessivamente, se o inadimplemento for superior a 30 (trinta) dias corridos, seja estabelecida multa diária no valor de R$100,00 contra a pessoa do agente público responsável pelo cumprimento da Lei de Acesso à Informação no ente público (art. 40, caput da Lei Federal 12.527/2011);" ] 263 | ] 264 | , viewSignature model 265 | ] 266 | in 267 | [ Html.div [ id "document", class "ui padded piled segment" ] nodes ] 268 | 269 | 270 | view : Model -> Html Msg 271 | view model = 272 | Html.div 273 | [ class "ui container" ] 274 | [ Html.div 275 | [ class "ui grid" ] 276 | [ Html.div 277 | [ class "eight wide column do-not-print" ] 278 | [ Html.h1 [] [ Html.text "Em nome da LAI" ] 279 | , Html.p [] [ Html.text "Aqui vem um parágrafo descrevendo o projeto, contanto para que serve, como usar, etc." ] 280 | , Html.p [] [ Html.text "Comentar que nenhum dado é enviado ao servidor e que tudo fica apenas local, no computador de quem usa o site" ] 281 | , viewForm model 282 | ] 283 | , Html.div 284 | [ class "eight wide column print" ] 285 | (viewDocument model) 286 | ] 287 | , Html.footer 288 | [ class "ui divider" ] 289 | [ Html.a 290 | [ href "https://github.com/cuducos/em-nome-da-lai" ] 291 | [ Html.i [ class "git square icon" ] [] ] 292 | ] 293 | ] 294 | --------------------------------------------------------------------------------