├── .gitignore ├── EJEMPLOS ├── archivo.txt ├── asincronia_basica.js ├── eventos.js ├── fichero.py ├── ficheros.js ├── nmap.js ├── nmap_distribuido.js ├── ping.js ├── process_env.js ├── server.js └── server_eventos.js ├── LICENSE ├── README.md ├── docker-compose.yml ├── ideas.md ├── images └── portada.png ├── package-lock.json ├── package.json ├── proxy-cosas ├── basic-server.js └── tor-proxy.js ├── scraping-science ├── proxy-picture.js └── simple.js └── server-cosas ├── server-api.js └── tor-identification.js /.gitignore: -------------------------------------------------------------------------------- 1 | NOTAS/ 2 | 3 | 4 | # Created by https://www.gitignore.io/api/node,code,linux,macos,emacs,python,eclipse,pycharm,webstorm,phpstorm 5 | # Edit at https://www.gitignore.io/?templates=node,code,linux,macos,emacs,python,eclipse,pycharm,webstorm,phpstorm 6 | 7 | ### Code ### 8 | .vscode/* 9 | !.vscode/settings.json 10 | !.vscode/tasks.json 11 | !.vscode/launch.json 12 | !.vscode/extensions.json 13 | 14 | ### Eclipse ### 15 | .metadata 16 | bin/ 17 | tmp/ 18 | *.tmp 19 | *.bak 20 | *.swp 21 | *~.nib 22 | local.properties 23 | .settings/ 24 | .loadpath 25 | .recommenders 26 | 27 | # External tool builders 28 | .externalToolBuilders/ 29 | 30 | # Locally stored "Eclipse launch configurations" 31 | *.launch 32 | 33 | # PyDev specific (Python IDE for Eclipse) 34 | *.pydevproject 35 | 36 | # CDT-specific (C/C++ Development Tooling) 37 | .cproject 38 | 39 | # CDT- autotools 40 | .autotools 41 | 42 | # Java annotation processor (APT) 43 | .factorypath 44 | 45 | # PDT-specific (PHP Development Tools) 46 | .buildpath 47 | 48 | # sbteclipse plugin 49 | .target 50 | 51 | # Tern plugin 52 | .tern-project 53 | 54 | # TeXlipse plugin 55 | .texlipse 56 | 57 | # STS (Spring Tool Suite) 58 | .springBeans 59 | 60 | # Code Recommenders 61 | .recommenders/ 62 | 63 | # Annotation Processing 64 | .apt_generated/ 65 | 66 | # Scala IDE specific (Scala & Java development for Eclipse) 67 | .cache-main 68 | .scala_dependencies 69 | .worksheet 70 | 71 | ### Eclipse Patch ### 72 | # Eclipse Core 73 | .project 74 | 75 | # JDT-specific (Eclipse Java Development Tools) 76 | .classpath 77 | 78 | # Annotation Processing 79 | .apt_generated 80 | 81 | .sts4-cache/ 82 | 83 | ### Emacs ### 84 | # -*- mode: gitignore; -*- 85 | *~ 86 | \#*\# 87 | /.emacs.desktop 88 | /.emacs.desktop.lock 89 | *.elc 90 | auto-save-list 91 | tramp 92 | .\#* 93 | 94 | # Org-mode 95 | .org-id-locations 96 | *_archive 97 | 98 | # flymake-mode 99 | *_flymake.* 100 | 101 | # eshell files 102 | /eshell/history 103 | /eshell/lastdir 104 | 105 | # elpa packages 106 | /elpa/ 107 | 108 | # reftex files 109 | *.rel 110 | 111 | # AUCTeX auto folder 112 | /auto/ 113 | 114 | # cask packages 115 | .cask/ 116 | dist/ 117 | 118 | # Flycheck 119 | flycheck_*.el 120 | 121 | # server auth directory 122 | /server/ 123 | 124 | # projectiles files 125 | .projectile 126 | 127 | # directory configuration 128 | .dir-locals.el 129 | 130 | # network security 131 | /network-security.data 132 | 133 | 134 | ### Linux ### 135 | 136 | # temporary files which can be created if a process still has a handle open of a deleted file 137 | .fuse_hidden* 138 | 139 | # KDE directory preferences 140 | .directory 141 | 142 | # Linux trash folder which might appear on any partition or disk 143 | .Trash-* 144 | 145 | # .nfs files are created when an open file is removed but is still being accessed 146 | .nfs* 147 | 148 | ### macOS ### 149 | # General 150 | .DS_Store 151 | .AppleDouble 152 | .LSOverride 153 | 154 | # Icon must end with two \r 155 | Icon 156 | 157 | # Thumbnails 158 | ._* 159 | 160 | # Files that might appear in the root of a volume 161 | .DocumentRevisions-V100 162 | .fseventsd 163 | .Spotlight-V100 164 | .TemporaryItems 165 | .Trashes 166 | .VolumeIcon.icns 167 | .com.apple.timemachine.donotpresent 168 | 169 | # Directories potentially created on remote AFP share 170 | .AppleDB 171 | .AppleDesktop 172 | Network Trash Folder 173 | Temporary Items 174 | .apdisk 175 | 176 | ### Node ### 177 | # Logs 178 | logs 179 | *.log 180 | npm-debug.log* 181 | yarn-debug.log* 182 | yarn-error.log* 183 | lerna-debug.log* 184 | 185 | # Diagnostic reports (https://nodejs.org/api/report.html) 186 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 187 | 188 | # Runtime data 189 | pids 190 | *.pid 191 | *.seed 192 | *.pid.lock 193 | 194 | # Directory for instrumented libs generated by jscoverage/JSCover 195 | lib-cov 196 | 197 | # Coverage directory used by tools like istanbul 198 | coverage 199 | *.lcov 200 | 201 | # nyc test coverage 202 | .nyc_output 203 | 204 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 205 | .grunt 206 | 207 | # Bower dependency directory (https://bower.io/) 208 | bower_components 209 | 210 | # node-waf configuration 211 | .lock-wscript 212 | 213 | # Compiled binary addons (https://nodejs.org/api/addons.html) 214 | build/Release 215 | 216 | # Dependency directories 217 | node_modules/ 218 | jspm_packages/ 219 | 220 | # TypeScript v1 declaration files 221 | typings/ 222 | 223 | # TypeScript cache 224 | *.tsbuildinfo 225 | 226 | # Optional npm cache directory 227 | .npm 228 | 229 | # Optional eslint cache 230 | .eslintcache 231 | 232 | # Optional REPL history 233 | .node_repl_history 234 | 235 | # Output of 'npm pack' 236 | *.tgz 237 | 238 | # Yarn Integrity file 239 | .yarn-integrity 240 | 241 | # dotenv environment variables file 242 | .env 243 | .env.test 244 | 245 | # parcel-bundler cache (https://parceljs.org/) 246 | .cache 247 | 248 | # next.js build output 249 | .next 250 | 251 | # nuxt.js build output 252 | .nuxt 253 | 254 | # vuepress build output 255 | .vuepress/dist 256 | 257 | # Serverless directories 258 | .serverless/ 259 | 260 | # FuseBox cache 261 | .fusebox/ 262 | 263 | # DynamoDB Local files 264 | .dynamodb/ 265 | 266 | ### PhpStorm ### 267 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm 268 | # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 269 | 270 | # User-specific stuff 271 | .idea/**/workspace.xml 272 | .idea/**/tasks.xml 273 | .idea/**/usage.statistics.xml 274 | .idea/**/dictionaries 275 | .idea/**/shelf 276 | 277 | # Generated files 278 | .idea/**/contentModel.xml 279 | 280 | # Sensitive or high-churn files 281 | .idea/**/dataSources/ 282 | .idea/**/dataSources.ids 283 | .idea/**/dataSources.local.xml 284 | .idea/**/sqlDataSources.xml 285 | .idea/**/dynamic.xml 286 | .idea/**/uiDesigner.xml 287 | .idea/**/dbnavigator.xml 288 | 289 | # Gradle 290 | .idea/**/gradle.xml 291 | .idea/**/libraries 292 | 293 | # Gradle and Maven with auto-import 294 | # When using Gradle or Maven with auto-import, you should exclude module files, 295 | # since they will be recreated, and may cause churn. Uncomment if using 296 | # auto-import. 297 | # .idea/modules.xml 298 | # .idea/*.iml 299 | # .idea/modules 300 | # *.iml 301 | # *.ipr 302 | 303 | # CMake 304 | cmake-build-*/ 305 | 306 | # Mongo Explorer plugin 307 | .idea/**/mongoSettings.xml 308 | 309 | # File-based project format 310 | *.iws 311 | 312 | # IntelliJ 313 | out/ 314 | 315 | # mpeltonen/sbt-idea plugin 316 | .idea_modules/ 317 | 318 | # JIRA plugin 319 | atlassian-ide-plugin.xml 320 | 321 | # Cursive Clojure plugin 322 | .idea/replstate.xml 323 | 324 | # Crashlytics plugin (for Android Studio and IntelliJ) 325 | com_crashlytics_export_strings.xml 326 | crashlytics.properties 327 | crashlytics-build.properties 328 | fabric.properties 329 | 330 | # Editor-based Rest Client 331 | .idea/httpRequests 332 | 333 | # Android studio 3.1+ serialized cache file 334 | .idea/caches/build_file_checksums.ser 335 | 336 | ### PhpStorm Patch ### 337 | # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 338 | 339 | # *.iml 340 | # modules.xml 341 | # .idea/misc.xml 342 | # *.ipr 343 | 344 | # Sonarlint plugin 345 | .idea/sonarlint 346 | 347 | ### PyCharm ### 348 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm 349 | # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 350 | 351 | # User-specific stuff 352 | 353 | # Generated files 354 | 355 | # Sensitive or high-churn files 356 | 357 | # Gradle 358 | 359 | # Gradle and Maven with auto-import 360 | # When using Gradle or Maven with auto-import, you should exclude module files, 361 | # since they will be recreated, and may cause churn. Uncomment if using 362 | # auto-import. 363 | # .idea/modules.xml 364 | # .idea/*.iml 365 | # .idea/modules 366 | # *.iml 367 | # *.ipr 368 | 369 | # CMake 370 | 371 | # Mongo Explorer plugin 372 | 373 | # File-based project format 374 | 375 | # IntelliJ 376 | 377 | # mpeltonen/sbt-idea plugin 378 | 379 | # JIRA plugin 380 | 381 | # Cursive Clojure plugin 382 | 383 | # Crashlytics plugin (for Android Studio and IntelliJ) 384 | 385 | # Editor-based Rest Client 386 | 387 | # Android studio 3.1+ serialized cache file 388 | 389 | ### PyCharm Patch ### 390 | # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 391 | 392 | # *.iml 393 | # modules.xml 394 | # .idea/misc.xml 395 | # *.ipr 396 | 397 | # Sonarlint plugin 398 | 399 | ### Python ### 400 | # Byte-compiled / optimized / DLL files 401 | __pycache__/ 402 | *.py[cod] 403 | *$py.class 404 | 405 | # C extensions 406 | *.so 407 | 408 | # Distribution / packaging 409 | .Python 410 | build/ 411 | develop-eggs/ 412 | downloads/ 413 | eggs/ 414 | .eggs/ 415 | lib/ 416 | lib64/ 417 | parts/ 418 | sdist/ 419 | var/ 420 | wheels/ 421 | pip-wheel-metadata/ 422 | share/python-wheels/ 423 | *.egg-info/ 424 | .installed.cfg 425 | *.egg 426 | MANIFEST 427 | 428 | # PyInstaller 429 | # Usually these files are written by a python script from a template 430 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 431 | *.manifest 432 | *.spec 433 | 434 | # Installer logs 435 | pip-log.txt 436 | pip-delete-this-directory.txt 437 | 438 | # Unit test / coverage reports 439 | htmlcov/ 440 | .tox/ 441 | .nox/ 442 | .coverage 443 | .coverage.* 444 | nosetests.xml 445 | coverage.xml 446 | *.cover 447 | .hypothesis/ 448 | .pytest_cache/ 449 | 450 | # Translations 451 | *.mo 452 | *.pot 453 | 454 | # Django stuff: 455 | local_settings.py 456 | db.sqlite3 457 | db.sqlite3-journal 458 | 459 | # Flask stuff: 460 | instance/ 461 | .webassets-cache 462 | 463 | # Scrapy stuff: 464 | .scrapy 465 | 466 | # Sphinx documentation 467 | docs/_build/ 468 | 469 | # PyBuilder 470 | target/ 471 | 472 | # Jupyter Notebook 473 | .ipynb_checkpoints 474 | 475 | # IPython 476 | profile_default/ 477 | ipython_config.py 478 | 479 | # pyenv 480 | .python-version 481 | 482 | # pipenv 483 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 484 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 485 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 486 | # install all needed dependencies. 487 | #Pipfile.lock 488 | 489 | # celery beat schedule file 490 | celerybeat-schedule 491 | 492 | # SageMath parsed files 493 | *.sage.py 494 | 495 | # Environments 496 | .venv 497 | env/ 498 | venv/ 499 | ENV/ 500 | env.bak/ 501 | venv.bak/ 502 | 503 | # Spyder project settings 504 | .spyderproject 505 | .spyproject 506 | 507 | # Rope project settings 508 | .ropeproject 509 | 510 | # mkdocs documentation 511 | /site 512 | 513 | # mypy 514 | .mypy_cache/ 515 | .dmypy.json 516 | dmypy.json 517 | 518 | # Pyre type checker 519 | .pyre/ 520 | 521 | ### WebStorm ### 522 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm 523 | # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 524 | 525 | # User-specific stuff 526 | 527 | # Generated files 528 | 529 | # Sensitive or high-churn files 530 | 531 | # Gradle 532 | 533 | # Gradle and Maven with auto-import 534 | # When using Gradle or Maven with auto-import, you should exclude module files, 535 | # since they will be recreated, and may cause churn. Uncomment if using 536 | # auto-import. 537 | # .idea/modules.xml 538 | # .idea/*.iml 539 | # .idea/modules 540 | # *.iml 541 | # *.ipr 542 | 543 | # CMake 544 | 545 | # Mongo Explorer plugin 546 | 547 | # File-based project format 548 | 549 | # IntelliJ 550 | 551 | # mpeltonen/sbt-idea plugin 552 | 553 | # JIRA plugin 554 | 555 | # Cursive Clojure plugin 556 | 557 | # Crashlytics plugin (for Android Studio and IntelliJ) 558 | 559 | # Editor-based Rest Client 560 | 561 | # Android studio 3.1+ serialized cache file 562 | 563 | ### WebStorm Patch ### 564 | # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 565 | 566 | # *.iml 567 | # modules.xml 568 | # .idea/misc.xml 569 | # *.ipr 570 | 571 | # Sonarlint plugin 572 | 573 | # End of https://www.gitignore.io/api/node,code,linux,macos,emacs,python,eclipse,pycharm,webstorm,phpstorm 574 | 575 | 576 | # Logs 577 | logs 578 | *.log 579 | npm-debug.log* 580 | yarn-debug.log* 581 | yarn-error.log* 582 | 583 | # Runtime data 584 | pids 585 | *.pid 586 | *.seed 587 | *.pid.lock 588 | 589 | # Directory for instrumented libs generated by jscoverage/JSCover 590 | lib-cov 591 | 592 | # Coverage directory used by tools like istanbul 593 | coverage 594 | 595 | # nyc test coverage 596 | .nyc_output 597 | 598 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 599 | .grunt 600 | 601 | # Bower dependency directory (https://bower.io/) 602 | bower_components 603 | 604 | # node-waf configuration 605 | .lock-wscript 606 | 607 | # Compiled binary addons (https://nodejs.org/api/addons.html) 608 | build/Release 609 | 610 | # Dependency directories 611 | node_modules/ 612 | jspm_packages/ 613 | 614 | # TypeScript v1 declaration files 615 | typings/ 616 | 617 | # Optional npm cache directory 618 | .npm 619 | 620 | # Optional eslint cache 621 | .eslintcache 622 | 623 | # Optional REPL history 624 | .node_repl_history 625 | 626 | # Output of 'npm pack' 627 | *.tgz 628 | 629 | # Yarn Integrity file 630 | .yarn-integrity 631 | 632 | # dotenv environment variables file 633 | .env 634 | 635 | # next.js build output 636 | .next 637 | 638 | 639 | -------------------------------------------------------------------------------- /EJEMPLOS/archivo.txt: -------------------------------------------------------------------------------- 1 | 2 | Un texto aleatorio... o no... -------------------------------------------------------------------------------- /EJEMPLOS/asincronia_basica.js: -------------------------------------------------------------------------------- 1 | /* ----- callbacks ----*/ 2 | function sleep (callback) { 3 | setTimeout(() => { 4 | console.log("Hola mundo"); 5 | callback() 6 | }, 1000); 7 | } 8 | /* 9 | console.log("---- inicio ----") 10 | 11 | sleep(function () { 12 | console.log("---- fin -----") 13 | }) 14 | */ 15 | 16 | 17 | 18 | /* ---- PROMSESAS ---- */ 19 | function sleepPromise (callback) { 20 | return new Promise((resolve, reject) => { 21 | setTimeout(() => { 22 | console.log("Hola mundo"); 23 | resolve() 24 | }, 1000); 25 | }) 26 | 27 | } 28 | 29 | console.log("---- inicio ----") 30 | 31 | sleepPromise() 32 | .then(sleepPromise) 33 | .then(function () { 34 | console.log("---- fin -----") 35 | }) 36 | -------------------------------------------------------------------------------- /EJEMPLOS/eventos.js: -------------------------------------------------------------------------------- 1 | //import eventos from 'events'; 2 | const eventos = require('events'); 3 | 4 | const EmisorEventos = eventos.EventEmitter; 5 | const ee = new EmisorEventos(); 6 | 7 | ee.on('datos', fecha => { 8 | console.log(fecha); 9 | }); 10 | 11 | setInterval(() => { 12 | ee.emit('datos', Date.now()); 13 | }, 500); -------------------------------------------------------------------------------- /EJEMPLOS/fichero.py: -------------------------------------------------------------------------------- 1 | 2 | print("Hola desde python") -------------------------------------------------------------------------------- /EJEMPLOS/ficheros.js: -------------------------------------------------------------------------------- 1 | //import fs from 'fs'; 2 | const fs = require('fs'); 3 | /* 4 | fs.readFile('./archivo.txt', 'utf8', function (err, data) { 5 | if (!err) { 6 | console.log(data); 7 | } else { 8 | throw err; 9 | } 10 | }); 11 | */ 12 | console.log("--- inicio ---") 13 | const data = fs.readFileSync('./archivo.txt', 'utf8') 14 | console.log("data:", data) 15 | console.log("--- fin ---") -------------------------------------------------------------------------------- /EJEMPLOS/nmap.js: -------------------------------------------------------------------------------- 1 | const {exec} = require('child_process'); 2 | 3 | /* 4 | exec('nmap osweekends.com', (err, stdout, stderr) => { 5 | if(!err){ 6 | console.log('RESPUESTA:', stdout) 7 | } else { 8 | console.log('Error: '+err) 9 | } 10 | }) 11 | */ 12 | exec('python3 fichero.py', (err, stdout, stderr) => { 13 | if(!err){ 14 | console.log('RESPUESTA:', stdout) 15 | } else { 16 | console.log('Error: '+err) 17 | } 18 | }) -------------------------------------------------------------------------------- /EJEMPLOS/nmap_distribuido.js: -------------------------------------------------------------------------------- 1 | const {exec} = require('child_process'); 2 | 3 | function execPromise (dominio){ 4 | return new Promise(function (resolve, reject) { 5 | exec(`nmap ${dominio}`, (err, stdout, stderr) => { 6 | if(err) { 7 | reject(err) 8 | } else { 9 | resolve({stdout, stderr}) 10 | } 11 | }) 12 | }) 13 | } 14 | 15 | 16 | 17 | Promise.all([execPromise('hackmadrid.org'), execPromise('osweekends.com'), execPromise('google.es')]) 18 | .then(function (responses) { 19 | console.log('responses:', responses) 20 | /* 21 | const stdout = responses[0].stdout 22 | const stderr = responses[0].stderr 23 | 24 | console.log('RESPUESTA:', stdout) 25 | console.log('RESPUESTA [stderr]:', stderr) 26 | */ 27 | }) 28 | .catch(function (err) { 29 | console.log("SE ROMPIO!", err) 30 | }) -------------------------------------------------------------------------------- /EJEMPLOS/ping.js: -------------------------------------------------------------------------------- 1 | const {spawn} = require('child_process'), 2 | ping = spawn('ping', ['hackmadrid.org']); 3 | 4 | ping.stdout.setEncoding('utf8'); 5 | ping.stdout.on('data', console.log); -------------------------------------------------------------------------------- /EJEMPLOS/process_env.js: -------------------------------------------------------------------------------- 1 | // SECRETO=banan node process_env.js 2 | console.log(`data: ${process.env.SECRETO || "no hay secreto"}`) -------------------------------------------------------------------------------- /EJEMPLOS/server.js: -------------------------------------------------------------------------------- 1 | //import http from 'http'; 2 | const http = require('http'); 3 | 4 | const port = 3000; 5 | const ip = "127.0.0.1"; 6 | const msg = JSON.stringify({msg: 'Hola a todos, ahora usando HTTP'}); 7 | 8 | 9 | http.createServer((req, res) => { 10 | console.log(req.headers) 11 | res.writeHead(666, {'Content-Type': 'application/json'}); 12 | res.end(msg); 13 | }).listen(port, ip); 14 | console.log(`Server running at http://${ip}:${port}/`); -------------------------------------------------------------------------------- /EJEMPLOS/server_eventos.js: -------------------------------------------------------------------------------- 1 | 2 | //import http from 'http'; 3 | const http = require('http'); 4 | 5 | const port = 3000; 6 | const ip = "127.0.0.1"; 7 | const msg = JSON.stringify({msg: 'Hola a todos, ahora usando HTTP'}); 8 | 9 | 10 | http.createServer() 11 | .on('request', (req, res) => { 12 | //console.log(req.headers) 13 | res.writeHead(666, {'Content-Type': 'application/json'}); 14 | res.end(msg); 15 | }) 16 | .on('request', (req, res) => { 17 | console.log(req.headers) 18 | }) 19 | .listen(port, ip); 20 | console.log(`Server running at http://${ip}:${port}/`); -------------------------------------------------------------------------------- /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 | # workshop Node4hackers 2 | 3 | Repositorio de trabajo del Workshop node4hackers 4 | 5 | ### Vídeo del evento 6 | 7 | [![](http://img.youtube.com/vi/Lk0-14Xwjo0/0.jpg)](http://www.youtube.com/watch?v=Lk0-14Xwjo0) 8 | 9 | **[índice de contenido en el vídeo](http://www.youtube.com/watch?v=Lk0-14Xwjo0)** 10 | - Intro: 0:00 - 04:40 11 | - Consola y termina : 04:40 - 07:00 12 | - Asincronía: 07:00 - 19:00 13 | - Servidor HTTP (sin librerías): 19:00 - 27:50 14 | - Gestión de ficheros (nativo): 27:50 - 35:30 15 | - Eventos en Nodejs: 35:30 - 42:38 16 | - Variables de entorno: 42:38 - 45:05 17 | - Procesos hijo en Node.js: 45:05 - 01:11:00 18 | - Express y TOR Proxy: 01:11:00 - 01:40:20 19 | - _Descanso: 01:40:20 - 01:40:40_ 20 | - Planificación de la parte 2: 01:40:40 - 01:42:56 21 | - Condensando decenas de peticiones HTTP con Express: 01:42:56 - 02:04:40 22 | - Analizar IPs de Tor y Nodos: 02:04:40 - 02:36:00 23 | - Scraping: 02:36:00 - 03:07:13 24 | 25 | **[Hilo de debate en Twitter](https://twitter.com/kom_256/status/1151540430317740033)** 26 | 27 | ### Antes del evento 28 | 29 | - Debes instalar Node [(Pasos y documentación)](https://nodejs.org/es/download/) 30 | - Debes instalar Docker [(Pasos y documentación)](https://docs.docker.com/install/) 31 | - En general no existe problema por usar cualquier sistema operativo, pero algunas librerías de terceros (que podríamos usar) solo las he probado en Linux/OSX, pero esto no será un problema para disfrutar el taller en cualquier caso :-) 32 | - Prevemos tener problemas de conectividad por lo que deberíais hacer los siguientes pasos: 33 | - Clonaros este repositorio en el equipo que useis durante el taller `$ git clone https://github.com/UlisesGascon/workshop-node4hackers` 34 | - Entrar en la carpeta del repositorio clonado `$ cd workshop-node4hackers` 35 | - Instalar las dependencias que podríamos usar `$ npm install`, esto debería generaros una carpeta (muy pesada) `/node_modules` y mostraros mucha información por la terminal (incluyendo warnings) esto es "normal" y hablaremos de ello en durante el taller 36 | - Nos bajamos la imagen de docker de [osminogin/tor-simple](https://hub.docker.com/r/osminogin/tor-simple/) con el siguiente comando: `$ docker pull osminogin/tor-simple` 37 | - Con todo esto... ¡ya estás listo para el workshop! 38 | 39 | ### Durante el evento 40 | 41 | - Seguramente tengamos baja conectividad y seamos muchas personas, es importante ser paciente 42 | - Es normal perderse, para evitar esto cada pocos minutos iré subiendo lo que estoy haciendo al repositorio de github. Podras re-engancharte siplemente haciendo `git pull origin master` en la consola. Ya que esto te traerá todos los cambios :-) 43 | - Si ves que puedes ayudar a otras personas, es una gran oportundiad que no deberias dejar pasar. Somos una comunidad princpalmente porque nos apoyamos entre todos y todas ^^. 44 | - Muchas cosas las decidiremos al empezar (descansos, etc..) 45 | - Si tienes una duda o quieres aportar algo, no dudes en hacerlo. 46 | - Yo intentaré grabar la sesión con lo que no será tan crítico que sigas mis pasos e intentes replicar lo que hago en tiempo real porque luego tendrás el video para verlo todo de nuevo y rebobinar las veces que necesites. Recuerda que también voy subiendo el código cada poquito tiempo. 47 | - Mi objetivo como ponente es facilitaros todo lo que hago durante el taller con lo que tendréis todo el material, recursos, links, código, etc... asi te quitamos esa presión y puedes disfrutar mucho más de la experiencia ;-) 48 | 49 | ### Después del evento 50 | - Los PRs son super bienvenidos! 51 | - Puedes entrar en este repo y usar el código como quieras, recuerda que este repo tiene una licencia AGPLv3. 52 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | version: '3.7' 2 | services: 3 | tor-node: 4 | image: osminogin/tor-simple 5 | ports: 6 | - 9050:9050 -------------------------------------------------------------------------------- /ideas.md: -------------------------------------------------------------------------------- 1 | # Ideas sobre las que trabajaremos 2 | 3 | ### Ejecutables :trollface: 4 | 5 | ```bash 6 | #!/usr/bin/env node 7 | # chmod +x filename.js 8 | # ./filename.js 9 | ``` 10 | 11 | ### PGP 12 | 13 | - https://www.npmjs.com/package/openpgp 14 | - https://blog.castiel.me/posts/2016-11-16-play-with-cryptography-with-openpgpjs/ 15 | 16 | ### Hashes 17 | - https://www.hacksparrow.com/nodejs/how-to-generate-md5-sha1-sha512-sha256-checksum-hashes.html 18 | - https://send.firefox.com/ 19 | - https://stackoverflow.com/questions/11944932/how-to-download-a-file-with-node-js-without-using-third-party-libraries 20 | - https://nodejs.org/api/stream.html 21 | - https://blog.abelotech.com/posts/calculate-checksum-hash-nodejs-javascript/ 22 | - https://www.npmjs.com/package/ssri 23 | - https://wetransfer.com 24 | 25 | ### CLI 26 | 27 | - https://www.npmjs.com/package/vorpal 28 | - https://github.com/terkelg/prompts 29 | 30 | ### Comunicaciones 31 | 32 | **Librerias** 33 | - https://www.npmjs.com/package/public-ip 34 | - https://www.npmjs.com/package/iplocation 35 | - https://www.npmjs.com/package/macaddress 36 | - https://www.npmjs.com/package/speedtest-net 37 | 38 | **Nmap** 39 | - https://highon.coffee/blog/nmap-cheat-sheet/ 40 | - https://www.securityhacklabs.net/articulo/los-5-scripts-mas-intrusivos-y-avanzados-de-nmap-que-deberia-conocer 41 | - https://www.cyberciti.biz/security/nmap-command-examples-tutorials/ 42 | 43 | 44 | ### System info 45 | - https://www.npmjs.com/package/systeminformation 46 | - https://www.npmjs.com/package/systeminformation#14-get-all-at-once---functions 47 | 48 | 49 | ## TOR 50 | 51 | - Montar un proxy 52 | - Montar un proxy hibrido (con/sin tor) 53 | 54 | ### Identificar trafico de tor 55 | - https://torstatus.blutmagie.de/ 56 | - https://onionoo.torproject.org/details 57 | - https://onionite.now.sh/ 58 | - https://ngrok.com/ 59 | 60 | ### Scraping 61 | 62 | - Usando request y jsdom 63 | - puppeteer vs hackmadrid.org 64 | 65 | ## Desktop con Electron 66 | 67 | - https://electronjs.org/ 68 | - https://github.com/electron/electron-api-demos 69 | - https://github.com/sindresorhus/generator-electron/tree/master/app 70 | - https://www.christianengvall.se/electron-hello-world/ -------------------------------------------------------------------------------- /images/portada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlisesGascon/workshop-node4hackers/43611d123295346f3d47fc0ef54916fdeefd00df/images/portada.png -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "workshop-node4hackers", 3 | "version": "1.0.0", 4 | "lockfileVersion": 1, 5 | "requires": true, 6 | "dependencies": { 7 | "@sindresorhus/is": { 8 | "version": "0.14.0", 9 | "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", 10 | "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==" 11 | }, 12 | "@sindresorhus/jimp": { 13 | "version": "0.3.0", 14 | "resolved": "https://registry.npmjs.org/@sindresorhus/jimp/-/jimp-0.3.0.tgz", 15 | "integrity": "sha512-ikwHOfJF0umx1eV/JpQDMsFxODvCSdD9zdIQVDEjcTNpfofz7+PZrjfKUFkG3iQ9mSUG3BwODv0XOEvTRNdovw==", 16 | "requires": { 17 | "bignumber.js": "^2.1.0", 18 | "bmp-js": "0.0.3", 19 | "exif-parser": "^0.1.9", 20 | "file-type": "^3.1.0", 21 | "jpeg-js": "^0.2.0", 22 | "load-bmfont": "^1.2.3", 23 | "mime": "^1.3.4", 24 | "mkdirp": "0.5.1", 25 | "pixelmatch": "^4.0.0", 26 | "pngjs": "^3.0.0", 27 | "raw-body": "^2.3.2", 28 | "tinycolor2": "^1.1.2", 29 | "utif": "^1.1.2" 30 | } 31 | }, 32 | "@szmarczak/http-timer": { 33 | "version": "1.1.2", 34 | "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", 35 | "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", 36 | "requires": { 37 | "defer-to-connect": "^1.0.1" 38 | } 39 | }, 40 | "abab": { 41 | "version": "2.0.0", 42 | "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.0.tgz", 43 | "integrity": "sha512-sY5AXXVZv4Y1VACTtR11UJCPHHudgY5i26Qj5TypE6DKlIApbwb5uqhXcJ5UUGbvZNRh7EeIoW+LrJumBsKp7w==" 44 | }, 45 | "accepts": { 46 | "version": "1.3.7", 47 | "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", 48 | "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", 49 | "requires": { 50 | "mime-types": "~2.1.24", 51 | "negotiator": "0.6.2" 52 | } 53 | }, 54 | "acorn": { 55 | "version": "6.2.1", 56 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.2.1.tgz", 57 | "integrity": "sha512-JD0xT5FCRDNyjDda3Lrg/IxFscp9q4tiYtxE1/nOzlKCk7hIRuYjhq1kCNkbPjMRMZuFq20HNQn1I9k8Oj0E+Q==" 58 | }, 59 | "acorn-globals": { 60 | "version": "4.3.2", 61 | "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.2.tgz", 62 | "integrity": "sha512-BbzvZhVtZP+Bs1J1HcwrQe8ycfO0wStkSGxuul3He3GkHOIZ6eTqOkPuw9IP1X3+IkOo4wiJmwkobzXYz4wewQ==", 63 | "requires": { 64 | "acorn": "^6.0.1", 65 | "acorn-walk": "^6.0.1" 66 | } 67 | }, 68 | "acorn-walk": { 69 | "version": "6.2.0", 70 | "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.2.0.tgz", 71 | "integrity": "sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==" 72 | }, 73 | "agent-base": { 74 | "version": "4.3.0", 75 | "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-4.3.0.tgz", 76 | "integrity": "sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg==", 77 | "requires": { 78 | "es6-promisify": "^5.0.0" 79 | } 80 | }, 81 | "ajv": { 82 | "version": "6.10.2", 83 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz", 84 | "integrity": "sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==", 85 | "requires": { 86 | "fast-deep-equal": "^2.0.1", 87 | "fast-json-stable-stringify": "^2.0.0", 88 | "json-schema-traverse": "^0.4.1", 89 | "uri-js": "^4.2.2" 90 | } 91 | }, 92 | "ansi-escapes": { 93 | "version": "4.2.0", 94 | "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.2.0.tgz", 95 | "integrity": "sha512-0+VX4uhi8m3aNbzoqKmkAVOEj6uQzcUHXoFPkKjhZPTpGRUBqVh930KbB6PS4zIyDZccphlLIYlu8nsjFzkXwg==", 96 | "requires": { 97 | "type-fest": "^0.5.2" 98 | } 99 | }, 100 | "ansi-regex": { 101 | "version": "2.1.1", 102 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", 103 | "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" 104 | }, 105 | "ansi-styles": { 106 | "version": "3.2.1", 107 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 108 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 109 | "requires": { 110 | "color-convert": "^1.9.0" 111 | } 112 | }, 113 | "app-path": { 114 | "version": "3.2.0", 115 | "resolved": "https://registry.npmjs.org/app-path/-/app-path-3.2.0.tgz", 116 | "integrity": "sha512-PQPaKXi64FZuofJkrtaO3I5RZESm9Yjv7tkeJaDz4EZMeBBfGtr5MyQ3m5AC7F0HVrISBLatPxAAAgvbe418fQ==", 117 | "requires": { 118 | "execa": "^1.0.0" 119 | } 120 | }, 121 | "aproba": { 122 | "version": "1.2.0", 123 | "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", 124 | "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" 125 | }, 126 | "are-we-there-yet": { 127 | "version": "1.1.5", 128 | "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz", 129 | "integrity": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==", 130 | "requires": { 131 | "delegates": "^1.0.0", 132 | "readable-stream": "^2.0.6" 133 | } 134 | }, 135 | "array-equal": { 136 | "version": "1.0.0", 137 | "resolved": "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz", 138 | "integrity": "sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=" 139 | }, 140 | "array-flatten": { 141 | "version": "1.1.1", 142 | "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", 143 | "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" 144 | }, 145 | "asn1": { 146 | "version": "0.2.4", 147 | "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", 148 | "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", 149 | "requires": { 150 | "safer-buffer": "~2.1.0" 151 | } 152 | }, 153 | "asn1.js": { 154 | "version": "5.2.0", 155 | "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.2.0.tgz", 156 | "integrity": "sha512-Q7hnYGGNYbcmGrCPulXfkEw7oW7qjWeM4ZTALmgpuIcZLxyqqKYWxCZg2UBm8bklrnB4m2mGyJPWfoktdORD8A==", 157 | "requires": { 158 | "bn.js": "^4.0.0", 159 | "inherits": "^2.0.1", 160 | "minimalistic-assert": "^1.0.0" 161 | } 162 | }, 163 | "assert-plus": { 164 | "version": "1.0.0", 165 | "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", 166 | "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" 167 | }, 168 | "async-limiter": { 169 | "version": "1.0.0", 170 | "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz", 171 | "integrity": "sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg==" 172 | }, 173 | "asynckit": { 174 | "version": "0.4.0", 175 | "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", 176 | "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" 177 | }, 178 | "aws-sign2": { 179 | "version": "0.7.0", 180 | "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", 181 | "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" 182 | }, 183 | "aws4": { 184 | "version": "1.8.0", 185 | "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz", 186 | "integrity": "sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==" 187 | }, 188 | "babel-polyfill": { 189 | "version": "6.26.0", 190 | "resolved": "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.26.0.tgz", 191 | "integrity": "sha1-N5k3q8Z9eJWXCtxiHyhM2WbPIVM=", 192 | "requires": { 193 | "babel-runtime": "^6.26.0", 194 | "core-js": "^2.5.0", 195 | "regenerator-runtime": "^0.10.5" 196 | } 197 | }, 198 | "babel-runtime": { 199 | "version": "6.26.0", 200 | "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", 201 | "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", 202 | "requires": { 203 | "core-js": "^2.4.0", 204 | "regenerator-runtime": "^0.11.0" 205 | }, 206 | "dependencies": { 207 | "regenerator-runtime": { 208 | "version": "0.11.1", 209 | "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", 210 | "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==" 211 | } 212 | } 213 | }, 214 | "balanced-match": { 215 | "version": "1.0.0", 216 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", 217 | "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" 218 | }, 219 | "base64-js": { 220 | "version": "1.3.0", 221 | "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz", 222 | "integrity": "sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw==" 223 | }, 224 | "bcrypt-pbkdf": { 225 | "version": "1.0.2", 226 | "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", 227 | "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", 228 | "requires": { 229 | "tweetnacl": "^0.14.3" 230 | } 231 | }, 232 | "bignumber.js": { 233 | "version": "2.4.0", 234 | "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-2.4.0.tgz", 235 | "integrity": "sha1-g4qZLan51zfg9LLbC+YrsJ3Qxeg=" 236 | }, 237 | "bl": { 238 | "version": "1.2.2", 239 | "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.2.tgz", 240 | "integrity": "sha512-e8tQYnZodmebYDWGH7KMRvtzKXaJHx3BbilrgZCfvyLUYdKpK1t5PSPmpkny/SgiTSCnjfLW7v5rlONXVFkQEA==", 241 | "requires": { 242 | "readable-stream": "^2.3.5", 243 | "safe-buffer": "^5.1.1" 244 | } 245 | }, 246 | "bmp-js": { 247 | "version": "0.0.3", 248 | "resolved": "https://registry.npmjs.org/bmp-js/-/bmp-js-0.0.3.tgz", 249 | "integrity": "sha1-ZBE+nHzxICs3btYHvzBibr5XsYo=" 250 | }, 251 | "bn.js": { 252 | "version": "4.11.8", 253 | "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz", 254 | "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==" 255 | }, 256 | "body-parser": { 257 | "version": "1.19.0", 258 | "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", 259 | "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", 260 | "requires": { 261 | "bytes": "3.1.0", 262 | "content-type": "~1.0.4", 263 | "debug": "2.6.9", 264 | "depd": "~1.1.2", 265 | "http-errors": "1.7.2", 266 | "iconv-lite": "0.4.24", 267 | "on-finished": "~2.3.0", 268 | "qs": "6.7.0", 269 | "raw-body": "2.4.0", 270 | "type-is": "~1.6.17" 271 | } 272 | }, 273 | "brace-expansion": { 274 | "version": "1.1.11", 275 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 276 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 277 | "requires": { 278 | "balanced-match": "^1.0.0", 279 | "concat-map": "0.0.1" 280 | } 281 | }, 282 | "browser-process-hrtime": { 283 | "version": "0.1.3", 284 | "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-0.1.3.tgz", 285 | "integrity": "sha512-bRFnI4NnjO6cnyLmOV/7PVoDEMJChlcfN0z4s1YMBY989/SvlfMI1lgCnkFUs53e9gQF+w7qu7XdllSTiSl8Aw==" 286 | }, 287 | "buffer-alloc": { 288 | "version": "1.2.0", 289 | "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", 290 | "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", 291 | "requires": { 292 | "buffer-alloc-unsafe": "^1.1.0", 293 | "buffer-fill": "^1.0.0" 294 | } 295 | }, 296 | "buffer-alloc-unsafe": { 297 | "version": "1.1.0", 298 | "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", 299 | "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==" 300 | }, 301 | "buffer-equal": { 302 | "version": "0.0.1", 303 | "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-0.0.1.tgz", 304 | "integrity": "sha1-kbx0sR6kBbyRa8aqkI+q+ltKrEs=" 305 | }, 306 | "buffer-fill": { 307 | "version": "1.0.0", 308 | "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", 309 | "integrity": "sha1-+PeLdniYiO858gXNY39o5wISKyw=" 310 | }, 311 | "buffer-from": { 312 | "version": "1.1.1", 313 | "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", 314 | "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" 315 | }, 316 | "bytes": { 317 | "version": "3.1.0", 318 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", 319 | "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" 320 | }, 321 | "cacheable-request": { 322 | "version": "6.1.0", 323 | "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", 324 | "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", 325 | "requires": { 326 | "clone-response": "^1.0.2", 327 | "get-stream": "^5.1.0", 328 | "http-cache-semantics": "^4.0.0", 329 | "keyv": "^3.0.0", 330 | "lowercase-keys": "^2.0.0", 331 | "normalize-url": "^4.1.0", 332 | "responselike": "^1.0.2" 333 | }, 334 | "dependencies": { 335 | "get-stream": { 336 | "version": "5.1.0", 337 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.1.0.tgz", 338 | "integrity": "sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw==", 339 | "requires": { 340 | "pump": "^3.0.0" 341 | } 342 | }, 343 | "lowercase-keys": { 344 | "version": "2.0.0", 345 | "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", 346 | "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" 347 | } 348 | } 349 | }, 350 | "caseless": { 351 | "version": "0.12.0", 352 | "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", 353 | "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" 354 | }, 355 | "chalk": { 356 | "version": "2.4.2", 357 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 358 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 359 | "requires": { 360 | "ansi-styles": "^3.2.1", 361 | "escape-string-regexp": "^1.0.5", 362 | "supports-color": "^5.3.0" 363 | } 364 | }, 365 | "chownr": { 366 | "version": "1.1.2", 367 | "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.2.tgz", 368 | "integrity": "sha512-GkfeAQh+QNy3wquu9oIZr6SS5x7wGdSgNQvD10X3r+AZr1Oys22HW8kAmDMvNg2+Dm0TeGaEuO8gFwdBXxwO8A==" 369 | }, 370 | "cli-cursor": { 371 | "version": "1.0.2", 372 | "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-1.0.2.tgz", 373 | "integrity": "sha1-ZNo/fValRBLll5S9Ytw1KV6PKYc=", 374 | "requires": { 375 | "restore-cursor": "^1.0.1" 376 | } 377 | }, 378 | "cli-width": { 379 | "version": "1.1.1", 380 | "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-1.1.1.tgz", 381 | "integrity": "sha1-pNKT72frt7iNSk1CwMzwDE0eNm0=" 382 | }, 383 | "clone-response": { 384 | "version": "1.0.2", 385 | "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", 386 | "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", 387 | "requires": { 388 | "mimic-response": "^1.0.0" 389 | } 390 | }, 391 | "code-point-at": { 392 | "version": "1.1.0", 393 | "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", 394 | "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" 395 | }, 396 | "color-convert": { 397 | "version": "1.9.3", 398 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 399 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 400 | "requires": { 401 | "color-name": "1.1.3" 402 | } 403 | }, 404 | "color-name": { 405 | "version": "1.1.3", 406 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 407 | "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" 408 | }, 409 | "combined-stream": { 410 | "version": "1.0.8", 411 | "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", 412 | "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", 413 | "requires": { 414 | "delayed-stream": "~1.0.0" 415 | } 416 | }, 417 | "concat-map": { 418 | "version": "0.0.1", 419 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 420 | "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" 421 | }, 422 | "concat-stream": { 423 | "version": "1.6.2", 424 | "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", 425 | "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", 426 | "requires": { 427 | "buffer-from": "^1.0.0", 428 | "inherits": "^2.0.3", 429 | "readable-stream": "^2.2.2", 430 | "typedarray": "^0.0.6" 431 | } 432 | }, 433 | "console-control-strings": { 434 | "version": "1.1.0", 435 | "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", 436 | "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=" 437 | }, 438 | "content-disposition": { 439 | "version": "0.5.3", 440 | "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", 441 | "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", 442 | "requires": { 443 | "safe-buffer": "5.1.2" 444 | } 445 | }, 446 | "content-type": { 447 | "version": "1.0.4", 448 | "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", 449 | "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" 450 | }, 451 | "cookie": { 452 | "version": "0.4.0", 453 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", 454 | "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==" 455 | }, 456 | "cookie-signature": { 457 | "version": "1.0.6", 458 | "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", 459 | "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" 460 | }, 461 | "core-js": { 462 | "version": "2.6.9", 463 | "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.9.tgz", 464 | "integrity": "sha512-HOpZf6eXmnl7la+cUdMnLvUxKNqLUzJvgIziQ0DiF3JwSImNphIqdGqzj6hIKyX04MmV0poclQ7+wjWvxQyR2A==" 465 | }, 466 | "core-util-is": { 467 | "version": "1.0.2", 468 | "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", 469 | "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" 470 | }, 471 | "cross-spawn": { 472 | "version": "6.0.5", 473 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", 474 | "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", 475 | "requires": { 476 | "nice-try": "^1.0.4", 477 | "path-key": "^2.0.1", 478 | "semver": "^5.5.0", 479 | "shebang-command": "^1.2.0", 480 | "which": "^1.2.9" 481 | } 482 | }, 483 | "cssom": { 484 | "version": "0.3.8", 485 | "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", 486 | "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" 487 | }, 488 | "cssstyle": { 489 | "version": "1.4.0", 490 | "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-1.4.0.tgz", 491 | "integrity": "sha512-GBrLZYZ4X4x6/QEoBnIrqb8B/f5l4+8me2dkom/j1Gtbxy0kBv6OGzKuAsGM75bkGwGAFkt56Iwg28S3XTZgSA==", 492 | "requires": { 493 | "cssom": "0.3.x" 494 | } 495 | }, 496 | "dashdash": { 497 | "version": "1.14.1", 498 | "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", 499 | "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", 500 | "requires": { 501 | "assert-plus": "^1.0.0" 502 | } 503 | }, 504 | "data-urls": { 505 | "version": "1.1.0", 506 | "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-1.1.0.tgz", 507 | "integrity": "sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ==", 508 | "requires": { 509 | "abab": "^2.0.0", 510 | "whatwg-mimetype": "^2.2.0", 511 | "whatwg-url": "^7.0.0" 512 | } 513 | }, 514 | "debug": { 515 | "version": "2.6.9", 516 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 517 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 518 | "requires": { 519 | "ms": "2.0.0" 520 | } 521 | }, 522 | "decompress-response": { 523 | "version": "3.3.0", 524 | "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", 525 | "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", 526 | "requires": { 527 | "mimic-response": "^1.0.0" 528 | } 529 | }, 530 | "deep-extend": { 531 | "version": "0.6.0", 532 | "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", 533 | "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" 534 | }, 535 | "deep-is": { 536 | "version": "0.1.3", 537 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", 538 | "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=" 539 | }, 540 | "defer-to-connect": { 541 | "version": "1.0.2", 542 | "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.0.2.tgz", 543 | "integrity": "sha512-k09hcQcTDY+cwgiwa6PYKLm3jlagNzQ+RSvhjzESOGOx+MNOuXkxTfEvPrO1IOQ81tArCFYQgi631clB70RpQw==" 544 | }, 545 | "define-properties": { 546 | "version": "1.1.3", 547 | "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", 548 | "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", 549 | "requires": { 550 | "object-keys": "^1.0.12" 551 | } 552 | }, 553 | "delayed-stream": { 554 | "version": "1.0.0", 555 | "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", 556 | "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" 557 | }, 558 | "delegates": { 559 | "version": "1.0.0", 560 | "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", 561 | "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=" 562 | }, 563 | "depd": { 564 | "version": "1.1.2", 565 | "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", 566 | "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" 567 | }, 568 | "destroy": { 569 | "version": "1.0.4", 570 | "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", 571 | "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" 572 | }, 573 | "detect-libc": { 574 | "version": "1.0.3", 575 | "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", 576 | "integrity": "sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=" 577 | }, 578 | "dns-packet": { 579 | "version": "5.2.1", 580 | "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.2.1.tgz", 581 | "integrity": "sha512-JHj2yJeKOqlxzeuYpN1d56GfhzivAxavNwHj9co3qptECel27B1rLY5PifJAvubsInX5pGLDjAHuCfCUc2Zv/w==", 582 | "requires": { 583 | "ip": "^1.1.5" 584 | } 585 | }, 586 | "dns-socket": { 587 | "version": "4.2.0", 588 | "resolved": "https://registry.npmjs.org/dns-socket/-/dns-socket-4.2.0.tgz", 589 | "integrity": "sha512-4XuD3z28jht3jvHbiom6fAipgG5LkjYeDLrX5OH8cbl0AtzTyUUAxGckcW8T7z0pLfBBV5qOiuC4wUEohk6FrQ==", 590 | "requires": { 591 | "dns-packet": "^5.1.2" 592 | } 593 | }, 594 | "dom-walk": { 595 | "version": "0.1.1", 596 | "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.1.tgz", 597 | "integrity": "sha1-ZyIm3HTI95mtNTB9+TaroRrNYBg=" 598 | }, 599 | "domexception": { 600 | "version": "1.0.1", 601 | "resolved": "https://registry.npmjs.org/domexception/-/domexception-1.0.1.tgz", 602 | "integrity": "sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==", 603 | "requires": { 604 | "webidl-conversions": "^4.0.2" 605 | } 606 | }, 607 | "draftlog": { 608 | "version": "1.0.12", 609 | "resolved": "https://registry.npmjs.org/draftlog/-/draftlog-1.0.12.tgz", 610 | "integrity": "sha1-fbajxbYhBrsy3Uo11nvMy2x9naA=" 611 | }, 612 | "duplexer3": { 613 | "version": "0.1.4", 614 | "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", 615 | "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=" 616 | }, 617 | "ecc-jsbn": { 618 | "version": "0.1.2", 619 | "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", 620 | "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", 621 | "requires": { 622 | "jsbn": "~0.1.0", 623 | "safer-buffer": "^2.1.0" 624 | } 625 | }, 626 | "ee-first": { 627 | "version": "1.1.1", 628 | "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", 629 | "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" 630 | }, 631 | "encodeurl": { 632 | "version": "1.0.2", 633 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", 634 | "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" 635 | }, 636 | "end-of-stream": { 637 | "version": "1.4.1", 638 | "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz", 639 | "integrity": "sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==", 640 | "requires": { 641 | "once": "^1.4.0" 642 | } 643 | }, 644 | "es-abstract": { 645 | "version": "1.13.0", 646 | "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.13.0.tgz", 647 | "integrity": "sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg==", 648 | "requires": { 649 | "es-to-primitive": "^1.2.0", 650 | "function-bind": "^1.1.1", 651 | "has": "^1.0.3", 652 | "is-callable": "^1.1.4", 653 | "is-regex": "^1.0.4", 654 | "object-keys": "^1.0.12" 655 | } 656 | }, 657 | "es-to-primitive": { 658 | "version": "1.2.0", 659 | "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.0.tgz", 660 | "integrity": "sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg==", 661 | "requires": { 662 | "is-callable": "^1.1.4", 663 | "is-date-object": "^1.0.1", 664 | "is-symbol": "^1.0.2" 665 | } 666 | }, 667 | "es6-promise": { 668 | "version": "4.2.8", 669 | "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz", 670 | "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==" 671 | }, 672 | "es6-promisify": { 673 | "version": "5.0.0", 674 | "resolved": "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz", 675 | "integrity": "sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM=", 676 | "requires": { 677 | "es6-promise": "^4.0.3" 678 | } 679 | }, 680 | "escape-html": { 681 | "version": "1.0.3", 682 | "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", 683 | "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" 684 | }, 685 | "escape-string-regexp": { 686 | "version": "1.0.5", 687 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 688 | "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" 689 | }, 690 | "escodegen": { 691 | "version": "1.11.1", 692 | "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.11.1.tgz", 693 | "integrity": "sha512-JwiqFD9KdGVVpeuRa68yU3zZnBEOcPs0nKW7wZzXky8Z7tffdYUHbe11bPCV5jYlK6DVdKLWLm0f5I/QlL0Kmw==", 694 | "requires": { 695 | "esprima": "^3.1.3", 696 | "estraverse": "^4.2.0", 697 | "esutils": "^2.0.2", 698 | "optionator": "^0.8.1", 699 | "source-map": "~0.6.1" 700 | } 701 | }, 702 | "esprima": { 703 | "version": "3.1.3", 704 | "resolved": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz", 705 | "integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=" 706 | }, 707 | "estraverse": { 708 | "version": "4.2.0", 709 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz", 710 | "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=" 711 | }, 712 | "esutils": { 713 | "version": "2.0.2", 714 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", 715 | "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=" 716 | }, 717 | "etag": { 718 | "version": "1.8.1", 719 | "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", 720 | "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" 721 | }, 722 | "execa": { 723 | "version": "1.0.0", 724 | "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", 725 | "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", 726 | "requires": { 727 | "cross-spawn": "^6.0.0", 728 | "get-stream": "^4.0.0", 729 | "is-stream": "^1.1.0", 730 | "npm-run-path": "^2.0.0", 731 | "p-finally": "^1.0.0", 732 | "signal-exit": "^3.0.0", 733 | "strip-eof": "^1.0.0" 734 | } 735 | }, 736 | "exif-parser": { 737 | "version": "0.1.12", 738 | "resolved": "https://registry.npmjs.org/exif-parser/-/exif-parser-0.1.12.tgz", 739 | "integrity": "sha1-WKnS1ywCwfbwKg70qRZicrd2CSI=" 740 | }, 741 | "exit-hook": { 742 | "version": "1.1.1", 743 | "resolved": "https://registry.npmjs.org/exit-hook/-/exit-hook-1.1.1.tgz", 744 | "integrity": "sha1-8FyiM7SMBdVP/wd2XfhQfpXAL/g=" 745 | }, 746 | "expand-template": { 747 | "version": "1.1.1", 748 | "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-1.1.1.tgz", 749 | "integrity": "sha512-cebqLtV8KOZfw0UI8TEFWxtczxxC1jvyUvx6H4fyp1K1FN7A4Q+uggVUlOsI1K8AGU0rwOGqP8nCapdrw8CYQg==" 750 | }, 751 | "express": { 752 | "version": "4.17.1", 753 | "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", 754 | "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", 755 | "requires": { 756 | "accepts": "~1.3.7", 757 | "array-flatten": "1.1.1", 758 | "body-parser": "1.19.0", 759 | "content-disposition": "0.5.3", 760 | "content-type": "~1.0.4", 761 | "cookie": "0.4.0", 762 | "cookie-signature": "1.0.6", 763 | "debug": "2.6.9", 764 | "depd": "~1.1.2", 765 | "encodeurl": "~1.0.2", 766 | "escape-html": "~1.0.3", 767 | "etag": "~1.8.1", 768 | "finalhandler": "~1.1.2", 769 | "fresh": "0.5.2", 770 | "merge-descriptors": "1.0.1", 771 | "methods": "~1.1.2", 772 | "on-finished": "~2.3.0", 773 | "parseurl": "~1.3.3", 774 | "path-to-regexp": "0.1.7", 775 | "proxy-addr": "~2.0.5", 776 | "qs": "6.7.0", 777 | "range-parser": "~1.2.1", 778 | "safe-buffer": "5.1.2", 779 | "send": "0.17.1", 780 | "serve-static": "1.14.1", 781 | "setprototypeof": "1.1.1", 782 | "statuses": "~1.5.0", 783 | "type-is": "~1.6.18", 784 | "utils-merge": "1.0.1", 785 | "vary": "~1.1.2" 786 | } 787 | }, 788 | "extend": { 789 | "version": "3.0.2", 790 | "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", 791 | "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" 792 | }, 793 | "extract-zip": { 794 | "version": "1.6.7", 795 | "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.6.7.tgz", 796 | "integrity": "sha1-qEC0uK9kAyZMjbV/Txp0Mz74H+k=", 797 | "requires": { 798 | "concat-stream": "1.6.2", 799 | "debug": "2.6.9", 800 | "mkdirp": "0.5.1", 801 | "yauzl": "2.4.1" 802 | } 803 | }, 804 | "extsprintf": { 805 | "version": "1.3.0", 806 | "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", 807 | "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" 808 | }, 809 | "fast-deep-equal": { 810 | "version": "2.0.1", 811 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", 812 | "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=" 813 | }, 814 | "fast-json-stable-stringify": { 815 | "version": "2.0.0", 816 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", 817 | "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=" 818 | }, 819 | "fast-levenshtein": { 820 | "version": "2.0.6", 821 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 822 | "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" 823 | }, 824 | "fd-slicer": { 825 | "version": "1.0.1", 826 | "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.0.1.tgz", 827 | "integrity": "sha1-i1vL2ewyfFBBv5qwI/1nUPEXfmU=", 828 | "requires": { 829 | "pend": "~1.2.0" 830 | } 831 | }, 832 | "figgy-pudding": { 833 | "version": "3.5.1", 834 | "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.1.tgz", 835 | "integrity": "sha512-vNKxJHTEKNThjfrdJwHc7brvM6eVevuO5nTj6ez8ZQ1qbXTvGthucRF7S4vf2cr71QVnT70V34v0S1DyQsti0w==" 836 | }, 837 | "figures": { 838 | "version": "1.7.0", 839 | "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", 840 | "integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=", 841 | "requires": { 842 | "escape-string-regexp": "^1.0.5", 843 | "object-assign": "^4.1.0" 844 | } 845 | }, 846 | "file-type": { 847 | "version": "3.9.0", 848 | "resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz", 849 | "integrity": "sha1-JXoHg4TR24CHvESdEH1SpSZyuek=" 850 | }, 851 | "finalhandler": { 852 | "version": "1.1.2", 853 | "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", 854 | "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", 855 | "requires": { 856 | "debug": "2.6.9", 857 | "encodeurl": "~1.0.2", 858 | "escape-html": "~1.0.3", 859 | "on-finished": "~2.3.0", 860 | "parseurl": "~1.3.3", 861 | "statuses": "~1.5.0", 862 | "unpipe": "~1.0.0" 863 | } 864 | }, 865 | "for-each": { 866 | "version": "0.3.3", 867 | "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", 868 | "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", 869 | "requires": { 870 | "is-callable": "^1.1.3" 871 | } 872 | }, 873 | "forever-agent": { 874 | "version": "0.6.1", 875 | "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", 876 | "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" 877 | }, 878 | "form-data": { 879 | "version": "2.3.3", 880 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", 881 | "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", 882 | "requires": { 883 | "asynckit": "^0.4.0", 884 | "combined-stream": "^1.0.6", 885 | "mime-types": "^2.1.12" 886 | } 887 | }, 888 | "forwarded": { 889 | "version": "0.1.2", 890 | "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", 891 | "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=" 892 | }, 893 | "fresh": { 894 | "version": "0.5.2", 895 | "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", 896 | "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" 897 | }, 898 | "fs-constants": { 899 | "version": "1.0.0", 900 | "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", 901 | "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" 902 | }, 903 | "fs.realpath": { 904 | "version": "1.0.0", 905 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 906 | "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" 907 | }, 908 | "function-bind": { 909 | "version": "1.1.1", 910 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", 911 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" 912 | }, 913 | "gauge": { 914 | "version": "2.7.4", 915 | "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", 916 | "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", 917 | "requires": { 918 | "aproba": "^1.0.3", 919 | "console-control-strings": "^1.0.0", 920 | "has-unicode": "^2.0.0", 921 | "object-assign": "^4.1.0", 922 | "signal-exit": "^3.0.0", 923 | "string-width": "^1.0.1", 924 | "strip-ansi": "^3.0.1", 925 | "wide-align": "^1.1.0" 926 | } 927 | }, 928 | "get-stream": { 929 | "version": "4.1.0", 930 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", 931 | "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", 932 | "requires": { 933 | "pump": "^3.0.0" 934 | } 935 | }, 936 | "getpass": { 937 | "version": "0.1.7", 938 | "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", 939 | "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", 940 | "requires": { 941 | "assert-plus": "^1.0.0" 942 | } 943 | }, 944 | "github-from-package": { 945 | "version": "0.0.0", 946 | "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", 947 | "integrity": "sha1-l/tdlr/eiXMxPyDoKI75oWf6ZM4=" 948 | }, 949 | "glob": { 950 | "version": "7.1.4", 951 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", 952 | "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", 953 | "requires": { 954 | "fs.realpath": "^1.0.0", 955 | "inflight": "^1.0.4", 956 | "inherits": "2", 957 | "minimatch": "^3.0.4", 958 | "once": "^1.3.0", 959 | "path-is-absolute": "^1.0.0" 960 | } 961 | }, 962 | "global": { 963 | "version": "4.3.2", 964 | "resolved": "https://registry.npmjs.org/global/-/global-4.3.2.tgz", 965 | "integrity": "sha1-52mJJopsdMOJCLEwWxD8DjlOnQ8=", 966 | "requires": { 967 | "min-document": "^2.19.0", 968 | "process": "~0.5.1" 969 | } 970 | }, 971 | "got": { 972 | "version": "9.6.0", 973 | "resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz", 974 | "integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==", 975 | "requires": { 976 | "@sindresorhus/is": "^0.14.0", 977 | "@szmarczak/http-timer": "^1.1.2", 978 | "cacheable-request": "^6.0.0", 979 | "decompress-response": "^3.3.0", 980 | "duplexer3": "^0.1.4", 981 | "get-stream": "^4.1.0", 982 | "lowercase-keys": "^1.0.1", 983 | "mimic-response": "^1.0.1", 984 | "p-cancelable": "^1.0.0", 985 | "to-readable-stream": "^1.0.0", 986 | "url-parse-lax": "^3.0.0" 987 | } 988 | }, 989 | "graceful-fs": { 990 | "version": "4.2.0", 991 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.0.tgz", 992 | "integrity": "sha512-jpSvDPV4Cq/bgtpndIWbI5hmYxhQGHPC4d4cqBPb4DLniCfhJokdXhwhaDuLBGLQdvvRum/UiX6ECVIPvDXqdg==" 993 | }, 994 | "har-schema": { 995 | "version": "2.0.0", 996 | "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", 997 | "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" 998 | }, 999 | "har-validator": { 1000 | "version": "5.1.3", 1001 | "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz", 1002 | "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==", 1003 | "requires": { 1004 | "ajv": "^6.5.5", 1005 | "har-schema": "^2.0.0" 1006 | } 1007 | }, 1008 | "has": { 1009 | "version": "1.0.3", 1010 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", 1011 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", 1012 | "requires": { 1013 | "function-bind": "^1.1.1" 1014 | } 1015 | }, 1016 | "has-ansi": { 1017 | "version": "2.0.0", 1018 | "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", 1019 | "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", 1020 | "requires": { 1021 | "ansi-regex": "^2.0.0" 1022 | } 1023 | }, 1024 | "has-flag": { 1025 | "version": "3.0.0", 1026 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 1027 | "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" 1028 | }, 1029 | "has-symbols": { 1030 | "version": "1.0.0", 1031 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz", 1032 | "integrity": "sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=" 1033 | }, 1034 | "has-unicode": { 1035 | "version": "2.0.1", 1036 | "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", 1037 | "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=" 1038 | }, 1039 | "html-encoding-sniffer": { 1040 | "version": "1.0.2", 1041 | "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz", 1042 | "integrity": "sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw==", 1043 | "requires": { 1044 | "whatwg-encoding": "^1.0.1" 1045 | } 1046 | }, 1047 | "http-cache-semantics": { 1048 | "version": "4.0.3", 1049 | "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.0.3.tgz", 1050 | "integrity": "sha512-TcIMG3qeVLgDr1TEd2XvHaTnMPwYQUQMIBLy+5pLSDKYFc7UIqj39w8EGzZkaxoLv/l2K8HaI0t5AVA+YYgUew==" 1051 | }, 1052 | "http-errors": { 1053 | "version": "1.7.2", 1054 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", 1055 | "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", 1056 | "requires": { 1057 | "depd": "~1.1.2", 1058 | "inherits": "2.0.3", 1059 | "setprototypeof": "1.1.1", 1060 | "statuses": ">= 1.5.0 < 2", 1061 | "toidentifier": "1.0.0" 1062 | } 1063 | }, 1064 | "http-proxy-agent": { 1065 | "version": "2.1.0", 1066 | "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-2.1.0.tgz", 1067 | "integrity": "sha512-qwHbBLV7WviBl0rQsOzH6o5lwyOIvwp/BdFnvVxXORldu5TmjFfjzBcWUWS5kWAZhmv+JtiDhSuQCp4sBfbIgg==", 1068 | "requires": { 1069 | "agent-base": "4", 1070 | "debug": "3.1.0" 1071 | }, 1072 | "dependencies": { 1073 | "debug": { 1074 | "version": "3.1.0", 1075 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", 1076 | "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", 1077 | "requires": { 1078 | "ms": "2.0.0" 1079 | } 1080 | } 1081 | } 1082 | }, 1083 | "http-signature": { 1084 | "version": "1.2.0", 1085 | "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", 1086 | "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", 1087 | "requires": { 1088 | "assert-plus": "^1.0.0", 1089 | "jsprim": "^1.2.2", 1090 | "sshpk": "^1.7.0" 1091 | } 1092 | }, 1093 | "https-proxy-agent": { 1094 | "version": "2.2.2", 1095 | "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.2.tgz", 1096 | "integrity": "sha512-c8Ndjc9Bkpfx/vCJueCPy0jlP4ccCCSNDp8xwCZzPjKJUm+B+u9WX2x98Qx4n1PiMNTWo3D7KK5ifNV/yJyRzg==", 1097 | "requires": { 1098 | "agent-base": "^4.3.0", 1099 | "debug": "^3.1.0" 1100 | }, 1101 | "dependencies": { 1102 | "debug": { 1103 | "version": "3.2.6", 1104 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", 1105 | "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", 1106 | "requires": { 1107 | "ms": "^2.1.1" 1108 | } 1109 | }, 1110 | "ms": { 1111 | "version": "2.1.2", 1112 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 1113 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 1114 | } 1115 | } 1116 | }, 1117 | "iconv-lite": { 1118 | "version": "0.4.24", 1119 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", 1120 | "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", 1121 | "requires": { 1122 | "safer-buffer": ">= 2.1.2 < 3" 1123 | } 1124 | }, 1125 | "imurmurhash": { 1126 | "version": "0.1.4", 1127 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 1128 | "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" 1129 | }, 1130 | "in-publish": { 1131 | "version": "2.0.0", 1132 | "resolved": "https://registry.npmjs.org/in-publish/-/in-publish-2.0.0.tgz", 1133 | "integrity": "sha1-4g/146KvwmkDILbcVSaCqcf631E=" 1134 | }, 1135 | "inflight": { 1136 | "version": "1.0.6", 1137 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 1138 | "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", 1139 | "requires": { 1140 | "once": "^1.3.0", 1141 | "wrappy": "1" 1142 | } 1143 | }, 1144 | "inherits": { 1145 | "version": "2.0.3", 1146 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", 1147 | "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" 1148 | }, 1149 | "ini": { 1150 | "version": "1.3.5", 1151 | "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz", 1152 | "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==" 1153 | }, 1154 | "inquirer": { 1155 | "version": "0.11.0", 1156 | "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-0.11.0.tgz", 1157 | "integrity": "sha1-dEi/qSQJKvMR1HFzu6uZDK4rsCc=", 1158 | "requires": { 1159 | "ansi-escapes": "^1.1.0", 1160 | "ansi-regex": "^2.0.0", 1161 | "chalk": "^1.0.0", 1162 | "cli-cursor": "^1.0.1", 1163 | "cli-width": "^1.0.1", 1164 | "figures": "^1.3.5", 1165 | "lodash": "^3.3.1", 1166 | "readline2": "^1.0.1", 1167 | "run-async": "^0.1.0", 1168 | "rx-lite": "^3.1.2", 1169 | "strip-ansi": "^3.0.0", 1170 | "through": "^2.3.6" 1171 | }, 1172 | "dependencies": { 1173 | "ansi-escapes": { 1174 | "version": "1.4.0", 1175 | "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz", 1176 | "integrity": "sha1-06ioOzGapneTZisT52HHkRQiMG4=" 1177 | }, 1178 | "ansi-styles": { 1179 | "version": "2.2.1", 1180 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", 1181 | "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" 1182 | }, 1183 | "chalk": { 1184 | "version": "1.1.3", 1185 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", 1186 | "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", 1187 | "requires": { 1188 | "ansi-styles": "^2.2.1", 1189 | "escape-string-regexp": "^1.0.2", 1190 | "has-ansi": "^2.0.0", 1191 | "strip-ansi": "^3.0.0", 1192 | "supports-color": "^2.0.0" 1193 | } 1194 | }, 1195 | "lodash": { 1196 | "version": "3.10.1", 1197 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", 1198 | "integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=" 1199 | }, 1200 | "supports-color": { 1201 | "version": "2.0.0", 1202 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", 1203 | "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" 1204 | } 1205 | } 1206 | }, 1207 | "ip": { 1208 | "version": "1.1.5", 1209 | "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", 1210 | "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=" 1211 | }, 1212 | "ip-regex": { 1213 | "version": "2.1.0", 1214 | "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", 1215 | "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=" 1216 | }, 1217 | "ip-validator": { 1218 | "version": "0.0.1", 1219 | "resolved": "https://registry.npmjs.org/ip-validator/-/ip-validator-0.0.1.tgz", 1220 | "integrity": "sha1-ZZ62AB04w1vqtRRVovdRuEMpnrU=" 1221 | }, 1222 | "ipaddr.js": { 1223 | "version": "1.9.0", 1224 | "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.0.tgz", 1225 | "integrity": "sha512-M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA==" 1226 | }, 1227 | "iplocation": { 1228 | "version": "6.1.0", 1229 | "resolved": "https://registry.npmjs.org/iplocation/-/iplocation-6.1.0.tgz", 1230 | "integrity": "sha512-odCKZpe7PQ4fpZ8Jdl/hKuMobhw5NDcA58fOCX3Zo4BtopvxI3jhwiEPgPW9ACOLzGYoTITF/oiuYoY97uAjWQ==", 1231 | "requires": { 1232 | "debug": "^3.0.0", 1233 | "ip-validator": "0.0.1", 1234 | "request": "=2.88.0" 1235 | }, 1236 | "dependencies": { 1237 | "debug": { 1238 | "version": "3.2.6", 1239 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", 1240 | "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", 1241 | "requires": { 1242 | "ms": "^2.1.1" 1243 | } 1244 | }, 1245 | "ms": { 1246 | "version": "2.1.2", 1247 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 1248 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 1249 | } 1250 | } 1251 | }, 1252 | "is-callable": { 1253 | "version": "1.1.4", 1254 | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz", 1255 | "integrity": "sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==" 1256 | }, 1257 | "is-date-object": { 1258 | "version": "1.0.1", 1259 | "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz", 1260 | "integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=" 1261 | }, 1262 | "is-extglob": { 1263 | "version": "1.0.0", 1264 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", 1265 | "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=" 1266 | }, 1267 | "is-fullwidth-code-point": { 1268 | "version": "1.0.0", 1269 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", 1270 | "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", 1271 | "requires": { 1272 | "number-is-nan": "^1.0.0" 1273 | } 1274 | }, 1275 | "is-function": { 1276 | "version": "1.0.1", 1277 | "resolved": "https://registry.npmjs.org/is-function/-/is-function-1.0.1.tgz", 1278 | "integrity": "sha1-Es+5i2W1fdPRk6MSH19uL0N2ArU=" 1279 | }, 1280 | "is-glob": { 1281 | "version": "2.0.1", 1282 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", 1283 | "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", 1284 | "requires": { 1285 | "is-extglob": "^1.0.0" 1286 | } 1287 | }, 1288 | "is-invalid-path": { 1289 | "version": "0.1.0", 1290 | "resolved": "https://registry.npmjs.org/is-invalid-path/-/is-invalid-path-0.1.0.tgz", 1291 | "integrity": "sha1-MHqFWzzxqTi0TqcNLGEQYFNxTzQ=", 1292 | "requires": { 1293 | "is-glob": "^2.0.0" 1294 | } 1295 | }, 1296 | "is-ip": { 1297 | "version": "3.1.0", 1298 | "resolved": "https://registry.npmjs.org/is-ip/-/is-ip-3.1.0.tgz", 1299 | "integrity": "sha512-35vd5necO7IitFPjd/YBeqwWnyDWbuLH9ZXQdMfDA8TEo7pv5X8yfrvVO3xbJbLUlERCMvf6X0hTUamQxCYJ9Q==", 1300 | "requires": { 1301 | "ip-regex": "^4.0.0" 1302 | }, 1303 | "dependencies": { 1304 | "ip-regex": { 1305 | "version": "4.1.0", 1306 | "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-4.1.0.tgz", 1307 | "integrity": "sha512-pKnZpbgCTfH/1NLIlOduP/V+WRXzC2MOz3Qo8xmxk8C5GudJLgK5QyLVXOSWy3ParAH7Eemurl3xjv/WXYFvMA==" 1308 | } 1309 | } 1310 | }, 1311 | "is-promise": { 1312 | "version": "2.1.0", 1313 | "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", 1314 | "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=" 1315 | }, 1316 | "is-regex": { 1317 | "version": "1.0.4", 1318 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz", 1319 | "integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=", 1320 | "requires": { 1321 | "has": "^1.0.1" 1322 | } 1323 | }, 1324 | "is-stream": { 1325 | "version": "1.1.0", 1326 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", 1327 | "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" 1328 | }, 1329 | "is-symbol": { 1330 | "version": "1.0.2", 1331 | "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.2.tgz", 1332 | "integrity": "sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw==", 1333 | "requires": { 1334 | "has-symbols": "^1.0.0" 1335 | } 1336 | }, 1337 | "is-typedarray": { 1338 | "version": "1.0.0", 1339 | "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", 1340 | "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" 1341 | }, 1342 | "is-valid-path": { 1343 | "version": "0.1.1", 1344 | "resolved": "https://registry.npmjs.org/is-valid-path/-/is-valid-path-0.1.1.tgz", 1345 | "integrity": "sha1-EQ+f90w39mPh7HkV60UfLbk6yd8=", 1346 | "requires": { 1347 | "is-invalid-path": "^0.1.0" 1348 | } 1349 | }, 1350 | "isarray": { 1351 | "version": "1.0.0", 1352 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", 1353 | "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" 1354 | }, 1355 | "isexe": { 1356 | "version": "2.0.0", 1357 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 1358 | "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" 1359 | }, 1360 | "isstream": { 1361 | "version": "0.1.2", 1362 | "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", 1363 | "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" 1364 | }, 1365 | "iterm2-version": { 1366 | "version": "4.2.0", 1367 | "resolved": "https://registry.npmjs.org/iterm2-version/-/iterm2-version-4.2.0.tgz", 1368 | "integrity": "sha512-IoiNVk4SMPu6uTcK+1nA5QaHNok2BMDLjSl5UomrOixe5g4GkylhPwuiGdw00ysSCrXAKNMfFTu+u/Lk5f6OLQ==", 1369 | "requires": { 1370 | "app-path": "^3.2.0", 1371 | "plist": "^3.0.1" 1372 | } 1373 | }, 1374 | "jpeg-js": { 1375 | "version": "0.2.0", 1376 | "resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.2.0.tgz", 1377 | "integrity": "sha1-U+RI7J0mPmgyZkZ+lELSxaLvVII=" 1378 | }, 1379 | "jpgjs": { 1380 | "version": "github:notmasteryet/jpgjs#f1d30922fda93417669246f5a25cf2393dd9c108", 1381 | "from": "github:notmasteryet/jpgjs" 1382 | }, 1383 | "jsbn": { 1384 | "version": "0.1.1", 1385 | "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", 1386 | "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" 1387 | }, 1388 | "jsdom": { 1389 | "version": "15.1.1", 1390 | "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-15.1.1.tgz", 1391 | "integrity": "sha512-cQZRBB33arrDAeCrAEWn1U3SvrvC8XysBua9Oqg1yWrsY/gYcusloJC3RZJXuY5eehSCmws8f2YeliCqGSkrtQ==", 1392 | "requires": { 1393 | "abab": "^2.0.0", 1394 | "acorn": "^6.1.1", 1395 | "acorn-globals": "^4.3.2", 1396 | "array-equal": "^1.0.0", 1397 | "cssom": "^0.3.6", 1398 | "cssstyle": "^1.2.2", 1399 | "data-urls": "^1.1.0", 1400 | "domexception": "^1.0.1", 1401 | "escodegen": "^1.11.1", 1402 | "html-encoding-sniffer": "^1.0.2", 1403 | "nwsapi": "^2.1.4", 1404 | "parse5": "5.1.0", 1405 | "pn": "^1.1.0", 1406 | "request": "^2.88.0", 1407 | "request-promise-native": "^1.0.7", 1408 | "saxes": "^3.1.9", 1409 | "symbol-tree": "^3.2.2", 1410 | "tough-cookie": "^3.0.1", 1411 | "w3c-hr-time": "^1.0.1", 1412 | "w3c-xmlserializer": "^1.1.2", 1413 | "webidl-conversions": "^4.0.2", 1414 | "whatwg-encoding": "^1.0.5", 1415 | "whatwg-mimetype": "^2.3.0", 1416 | "whatwg-url": "^7.0.0", 1417 | "ws": "^7.0.0", 1418 | "xml-name-validator": "^3.0.0" 1419 | }, 1420 | "dependencies": { 1421 | "tough-cookie": { 1422 | "version": "3.0.1", 1423 | "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-3.0.1.tgz", 1424 | "integrity": "sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg==", 1425 | "requires": { 1426 | "ip-regex": "^2.1.0", 1427 | "psl": "^1.1.28", 1428 | "punycode": "^2.1.1" 1429 | } 1430 | } 1431 | } 1432 | }, 1433 | "json-buffer": { 1434 | "version": "3.0.0", 1435 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", 1436 | "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=" 1437 | }, 1438 | "json-schema": { 1439 | "version": "0.2.3", 1440 | "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", 1441 | "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" 1442 | }, 1443 | "json-schema-traverse": { 1444 | "version": "0.4.1", 1445 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 1446 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" 1447 | }, 1448 | "json-stringify-safe": { 1449 | "version": "5.0.1", 1450 | "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", 1451 | "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" 1452 | }, 1453 | "jsprim": { 1454 | "version": "1.4.1", 1455 | "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", 1456 | "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", 1457 | "requires": { 1458 | "assert-plus": "1.0.0", 1459 | "extsprintf": "1.3.0", 1460 | "json-schema": "0.2.3", 1461 | "verror": "1.10.0" 1462 | } 1463 | }, 1464 | "keyv": { 1465 | "version": "3.1.0", 1466 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", 1467 | "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", 1468 | "requires": { 1469 | "json-buffer": "3.0.0" 1470 | } 1471 | }, 1472 | "kleur": { 1473 | "version": "3.0.3", 1474 | "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", 1475 | "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" 1476 | }, 1477 | "levn": { 1478 | "version": "0.3.0", 1479 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", 1480 | "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", 1481 | "requires": { 1482 | "prelude-ls": "~1.1.2", 1483 | "type-check": "~0.3.2" 1484 | } 1485 | }, 1486 | "load-bmfont": { 1487 | "version": "1.4.0", 1488 | "resolved": "https://registry.npmjs.org/load-bmfont/-/load-bmfont-1.4.0.tgz", 1489 | "integrity": "sha512-kT63aTAlNhZARowaNYcY29Fn/QYkc52M3l6V1ifRcPewg2lvUZDAj7R6dXjOL9D0sict76op3T5+odumDSF81g==", 1490 | "requires": { 1491 | "buffer-equal": "0.0.1", 1492 | "mime": "^1.3.4", 1493 | "parse-bmfont-ascii": "^1.0.3", 1494 | "parse-bmfont-binary": "^1.0.5", 1495 | "parse-bmfont-xml": "^1.1.4", 1496 | "phin": "^2.9.1", 1497 | "xhr": "^2.0.1", 1498 | "xtend": "^4.0.0" 1499 | } 1500 | }, 1501 | "lodash": { 1502 | "version": "4.17.15", 1503 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz", 1504 | "integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==" 1505 | }, 1506 | "lodash.sortby": { 1507 | "version": "4.7.0", 1508 | "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", 1509 | "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=" 1510 | }, 1511 | "log-update": { 1512 | "version": "1.0.2", 1513 | "resolved": "https://registry.npmjs.org/log-update/-/log-update-1.0.2.tgz", 1514 | "integrity": "sha1-GZKfZMQJPS0ucHWh2tivWcKWuNE=", 1515 | "requires": { 1516 | "ansi-escapes": "^1.0.0", 1517 | "cli-cursor": "^1.0.2" 1518 | }, 1519 | "dependencies": { 1520 | "ansi-escapes": { 1521 | "version": "1.4.0", 1522 | "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz", 1523 | "integrity": "sha1-06ioOzGapneTZisT52HHkRQiMG4=" 1524 | } 1525 | } 1526 | }, 1527 | "lowdb": { 1528 | "version": "1.0.0", 1529 | "resolved": "https://registry.npmjs.org/lowdb/-/lowdb-1.0.0.tgz", 1530 | "integrity": "sha512-2+x8esE/Wb9SQ1F9IHaYWfsC9FIecLOPrK4g17FGEayjUWH172H6nwicRovGvSE2CPZouc2MCIqCI7h9d+GftQ==", 1531 | "requires": { 1532 | "graceful-fs": "^4.1.3", 1533 | "is-promise": "^2.1.0", 1534 | "lodash": "4", 1535 | "pify": "^3.0.0", 1536 | "steno": "^0.4.1" 1537 | } 1538 | }, 1539 | "lowercase-keys": { 1540 | "version": "1.0.1", 1541 | "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", 1542 | "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==" 1543 | }, 1544 | "macaddress": { 1545 | "version": "0.2.9", 1546 | "resolved": "https://registry.npmjs.org/macaddress/-/macaddress-0.2.9.tgz", 1547 | "integrity": "sha512-k4F1JUof6cQXxNFzx3thLby4oJzXTXQueAOOts944Vqizn+Rjc2QNFenT9FJSLU1CH3PmrHRSyZs2E+Cqw+P2w==" 1548 | }, 1549 | "media-typer": { 1550 | "version": "0.3.0", 1551 | "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", 1552 | "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" 1553 | }, 1554 | "merge-descriptors": { 1555 | "version": "1.0.1", 1556 | "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", 1557 | "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" 1558 | }, 1559 | "methods": { 1560 | "version": "1.1.2", 1561 | "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", 1562 | "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" 1563 | }, 1564 | "mime": { 1565 | "version": "1.6.0", 1566 | "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", 1567 | "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" 1568 | }, 1569 | "mime-db": { 1570 | "version": "1.40.0", 1571 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.40.0.tgz", 1572 | "integrity": "sha512-jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA==" 1573 | }, 1574 | "mime-types": { 1575 | "version": "2.1.24", 1576 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.24.tgz", 1577 | "integrity": "sha512-WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ==", 1578 | "requires": { 1579 | "mime-db": "1.40.0" 1580 | } 1581 | }, 1582 | "mimic-response": { 1583 | "version": "1.0.1", 1584 | "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", 1585 | "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" 1586 | }, 1587 | "min-document": { 1588 | "version": "2.19.0", 1589 | "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz", 1590 | "integrity": "sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=", 1591 | "requires": { 1592 | "dom-walk": "^0.1.0" 1593 | } 1594 | }, 1595 | "minimalistic-assert": { 1596 | "version": "1.0.1", 1597 | "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", 1598 | "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" 1599 | }, 1600 | "minimatch": { 1601 | "version": "3.0.4", 1602 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", 1603 | "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", 1604 | "requires": { 1605 | "brace-expansion": "^1.1.7" 1606 | } 1607 | }, 1608 | "minimist": { 1609 | "version": "0.0.8", 1610 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", 1611 | "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" 1612 | }, 1613 | "mkdirp": { 1614 | "version": "0.5.1", 1615 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", 1616 | "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", 1617 | "requires": { 1618 | "minimist": "0.0.8" 1619 | } 1620 | }, 1621 | "ms": { 1622 | "version": "2.0.0", 1623 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 1624 | "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" 1625 | }, 1626 | "mute-stream": { 1627 | "version": "0.0.5", 1628 | "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.5.tgz", 1629 | "integrity": "sha1-j7+rsKmKJT0xhDMfno3rc3L6xsA=" 1630 | }, 1631 | "nan": { 1632 | "version": "2.14.0", 1633 | "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.0.tgz", 1634 | "integrity": "sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==" 1635 | }, 1636 | "negotiator": { 1637 | "version": "0.6.2", 1638 | "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", 1639 | "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==" 1640 | }, 1641 | "nice-try": { 1642 | "version": "1.0.5", 1643 | "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", 1644 | "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" 1645 | }, 1646 | "node-abi": { 1647 | "version": "2.9.0", 1648 | "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-2.9.0.tgz", 1649 | "integrity": "sha512-jmEOvv0eanWjhX8dX1pmjb7oJl1U1oR4FOh0b2GnvALwSYoOdU7sj+kLDSAyjo4pfC9aj/IxkloxdLJQhSSQBA==", 1650 | "requires": { 1651 | "semver": "^5.4.1" 1652 | } 1653 | }, 1654 | "node-fetch": { 1655 | "version": "2.6.0", 1656 | "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.0.tgz", 1657 | "integrity": "sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA==" 1658 | }, 1659 | "node-localstorage": { 1660 | "version": "1.3.1", 1661 | "resolved": "https://registry.npmjs.org/node-localstorage/-/node-localstorage-1.3.1.tgz", 1662 | "integrity": "sha512-NMWCSWWc6JbHT5PyWlNT2i8r7PgGYXVntmKawY83k/M0UJScZ5jirb61TLnqKwd815DfBQu+lR3sRw08SPzIaQ==", 1663 | "requires": { 1664 | "write-file-atomic": "^1.1.4" 1665 | } 1666 | }, 1667 | "noop-logger": { 1668 | "version": "0.1.1", 1669 | "resolved": "https://registry.npmjs.org/noop-logger/-/noop-logger-0.1.1.tgz", 1670 | "integrity": "sha1-lKKxYzxPExdVMAfYlm/Q6EG2pMI=" 1671 | }, 1672 | "normalize-url": { 1673 | "version": "4.3.0", 1674 | "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.3.0.tgz", 1675 | "integrity": "sha512-0NLtR71o4k6GLP+mr6Ty34c5GA6CMoEsncKJxvQd8NzPxaHRJNnb5gZE8R1XF4CPIS7QPHLJ74IFszwtNVAHVQ==" 1676 | }, 1677 | "npm-run-path": { 1678 | "version": "2.0.2", 1679 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", 1680 | "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", 1681 | "requires": { 1682 | "path-key": "^2.0.0" 1683 | } 1684 | }, 1685 | "npmlog": { 1686 | "version": "4.1.2", 1687 | "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", 1688 | "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", 1689 | "requires": { 1690 | "are-we-there-yet": "~1.1.2", 1691 | "console-control-strings": "~1.1.0", 1692 | "gauge": "~2.7.3", 1693 | "set-blocking": "~2.0.0" 1694 | } 1695 | }, 1696 | "number-is-nan": { 1697 | "version": "1.0.1", 1698 | "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", 1699 | "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" 1700 | }, 1701 | "nwsapi": { 1702 | "version": "2.1.4", 1703 | "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.1.4.tgz", 1704 | "integrity": "sha512-iGfd9Y6SFdTNldEy2L0GUhcarIutFmk+MPWIn9dmj8NMIup03G08uUF2KGbbmv/Ux4RT0VZJoP/sVbWA6d/VIw==" 1705 | }, 1706 | "oauth-sign": { 1707 | "version": "0.9.0", 1708 | "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", 1709 | "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" 1710 | }, 1711 | "object-assign": { 1712 | "version": "4.1.1", 1713 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 1714 | "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" 1715 | }, 1716 | "object-keys": { 1717 | "version": "1.1.1", 1718 | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", 1719 | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" 1720 | }, 1721 | "on-finished": { 1722 | "version": "2.3.0", 1723 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", 1724 | "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", 1725 | "requires": { 1726 | "ee-first": "1.1.1" 1727 | } 1728 | }, 1729 | "once": { 1730 | "version": "1.4.0", 1731 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 1732 | "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", 1733 | "requires": { 1734 | "wrappy": "1" 1735 | } 1736 | }, 1737 | "onetime": { 1738 | "version": "1.1.0", 1739 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz", 1740 | "integrity": "sha1-ofeDj4MUxRbwXs78vEzP4EtO14k=" 1741 | }, 1742 | "openpgp": { 1743 | "version": "4.5.5", 1744 | "resolved": "https://registry.npmjs.org/openpgp/-/openpgp-4.5.5.tgz", 1745 | "integrity": "sha512-naG9hi3EIBXYtl8FplXbfYKQCmO7JUwAFBOlejyaLi4XSmFvTtAUSxB5vTchsw7tBbejYZj01dhgqhtYRDLfRg==", 1746 | "requires": { 1747 | "asn1.js": "^5.0.0", 1748 | "node-fetch": "^2.1.2", 1749 | "node-localstorage": "~1.3.0" 1750 | } 1751 | }, 1752 | "optionator": { 1753 | "version": "0.8.2", 1754 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz", 1755 | "integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=", 1756 | "requires": { 1757 | "deep-is": "~0.1.3", 1758 | "fast-levenshtein": "~2.0.4", 1759 | "levn": "~0.3.0", 1760 | "prelude-ls": "~1.1.2", 1761 | "type-check": "~0.3.2", 1762 | "wordwrap": "~1.0.0" 1763 | } 1764 | }, 1765 | "os-homedir": { 1766 | "version": "1.0.2", 1767 | "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", 1768 | "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=" 1769 | }, 1770 | "p-cancelable": { 1771 | "version": "1.1.0", 1772 | "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", 1773 | "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==" 1774 | }, 1775 | "p-finally": { 1776 | "version": "1.0.0", 1777 | "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", 1778 | "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=" 1779 | }, 1780 | "pako": { 1781 | "version": "1.0.10", 1782 | "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.10.tgz", 1783 | "integrity": "sha512-0DTvPVU3ed8+HNXOu5Bs+o//Mbdj9VNQMUOe9oKCwh8l0GNwpTDMKCWbRjgtD291AWnkAgkqA/LOnQS8AmS1tw==" 1784 | }, 1785 | "parse-bmfont-ascii": { 1786 | "version": "1.0.6", 1787 | "resolved": "https://registry.npmjs.org/parse-bmfont-ascii/-/parse-bmfont-ascii-1.0.6.tgz", 1788 | "integrity": "sha1-Eaw8P/WPfCAgqyJ2kHkQjU36AoU=" 1789 | }, 1790 | "parse-bmfont-binary": { 1791 | "version": "1.0.6", 1792 | "resolved": "https://registry.npmjs.org/parse-bmfont-binary/-/parse-bmfont-binary-1.0.6.tgz", 1793 | "integrity": "sha1-0Di0dtPp3Z2x4RoLDlOiJ5K2kAY=" 1794 | }, 1795 | "parse-bmfont-xml": { 1796 | "version": "1.1.4", 1797 | "resolved": "https://registry.npmjs.org/parse-bmfont-xml/-/parse-bmfont-xml-1.1.4.tgz", 1798 | "integrity": "sha512-bjnliEOmGv3y1aMEfREMBJ9tfL3WR0i0CKPj61DnSLaoxWR3nLrsQrEbCId/8rF4NyRF0cCqisSVXyQYWM+mCQ==", 1799 | "requires": { 1800 | "xml-parse-from-string": "^1.0.0", 1801 | "xml2js": "^0.4.5" 1802 | } 1803 | }, 1804 | "parse-headers": { 1805 | "version": "2.0.2", 1806 | "resolved": "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.2.tgz", 1807 | "integrity": "sha512-/LypJhzFmyBIDYP9aDVgeyEb5sQfbfY5mnDq4hVhlQ69js87wXfmEI5V3xI6vvXasqebp0oCytYFLxsBVfCzSg==", 1808 | "requires": { 1809 | "for-each": "^0.3.3", 1810 | "string.prototype.trim": "^1.1.2" 1811 | } 1812 | }, 1813 | "parse5": { 1814 | "version": "5.1.0", 1815 | "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.0.tgz", 1816 | "integrity": "sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ==" 1817 | }, 1818 | "parseurl": { 1819 | "version": "1.3.3", 1820 | "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", 1821 | "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" 1822 | }, 1823 | "path-is-absolute": { 1824 | "version": "1.0.1", 1825 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 1826 | "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" 1827 | }, 1828 | "path-key": { 1829 | "version": "2.0.1", 1830 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", 1831 | "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=" 1832 | }, 1833 | "path-to-regexp": { 1834 | "version": "0.1.7", 1835 | "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", 1836 | "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" 1837 | }, 1838 | "pend": { 1839 | "version": "1.2.0", 1840 | "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", 1841 | "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=" 1842 | }, 1843 | "performance-now": { 1844 | "version": "2.1.0", 1845 | "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", 1846 | "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" 1847 | }, 1848 | "phin": { 1849 | "version": "2.9.3", 1850 | "resolved": "https://registry.npmjs.org/phin/-/phin-2.9.3.tgz", 1851 | "integrity": "sha512-CzFr90qM24ju5f88quFC/6qohjC144rehe5n6DH900lgXmUe86+xCKc10ev56gRKC4/BkHUoG4uSiQgBiIXwDA==" 1852 | }, 1853 | "pify": { 1854 | "version": "3.0.0", 1855 | "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", 1856 | "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" 1857 | }, 1858 | "pixelmatch": { 1859 | "version": "4.0.2", 1860 | "resolved": "https://registry.npmjs.org/pixelmatch/-/pixelmatch-4.0.2.tgz", 1861 | "integrity": "sha1-j0fc7FARtHe2fbA8JDvB8wheiFQ=", 1862 | "requires": { 1863 | "pngjs": "^3.0.0" 1864 | } 1865 | }, 1866 | "plist": { 1867 | "version": "3.0.1", 1868 | "resolved": "https://registry.npmjs.org/plist/-/plist-3.0.1.tgz", 1869 | "integrity": "sha512-GpgvHHocGRyQm74b6FWEZZVRroHKE1I0/BTjAmySaohK+cUn+hZpbqXkc3KWgW3gQYkqcQej35FohcT0FRlkRQ==", 1870 | "requires": { 1871 | "base64-js": "^1.2.3", 1872 | "xmlbuilder": "^9.0.7", 1873 | "xmldom": "0.1.x" 1874 | } 1875 | }, 1876 | "pn": { 1877 | "version": "1.1.0", 1878 | "resolved": "https://registry.npmjs.org/pn/-/pn-1.1.0.tgz", 1879 | "integrity": "sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA==" 1880 | }, 1881 | "pngjs": { 1882 | "version": "3.4.0", 1883 | "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-3.4.0.tgz", 1884 | "integrity": "sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==" 1885 | }, 1886 | "prebuild-install": { 1887 | "version": "2.5.3", 1888 | "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-2.5.3.tgz", 1889 | "integrity": "sha512-/rI36cN2g7vDQnKWN8Uzupi++KjyqS9iS+/fpwG4Ea8d0Pip0PQ5bshUNzVwt+/D2MRfhVAplYMMvWLqWrCF/g==", 1890 | "requires": { 1891 | "detect-libc": "^1.0.3", 1892 | "expand-template": "^1.0.2", 1893 | "github-from-package": "0.0.0", 1894 | "minimist": "^1.2.0", 1895 | "mkdirp": "^0.5.1", 1896 | "node-abi": "^2.2.0", 1897 | "noop-logger": "^0.1.1", 1898 | "npmlog": "^4.0.1", 1899 | "os-homedir": "^1.0.1", 1900 | "pump": "^2.0.1", 1901 | "rc": "^1.1.6", 1902 | "simple-get": "^2.7.0", 1903 | "tar-fs": "^1.13.0", 1904 | "tunnel-agent": "^0.6.0", 1905 | "which-pm-runs": "^1.0.0" 1906 | }, 1907 | "dependencies": { 1908 | "minimist": { 1909 | "version": "1.2.0", 1910 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", 1911 | "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" 1912 | }, 1913 | "pump": { 1914 | "version": "2.0.1", 1915 | "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", 1916 | "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", 1917 | "requires": { 1918 | "end-of-stream": "^1.1.0", 1919 | "once": "^1.3.1" 1920 | } 1921 | } 1922 | } 1923 | }, 1924 | "prelude-ls": { 1925 | "version": "1.1.2", 1926 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", 1927 | "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=" 1928 | }, 1929 | "prepend-http": { 1930 | "version": "2.0.0", 1931 | "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", 1932 | "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=" 1933 | }, 1934 | "process": { 1935 | "version": "0.5.2", 1936 | "resolved": "https://registry.npmjs.org/process/-/process-0.5.2.tgz", 1937 | "integrity": "sha1-FjjYqONML0QKkduVq5rrZ3/Bhc8=" 1938 | }, 1939 | "process-nextick-args": { 1940 | "version": "2.0.1", 1941 | "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", 1942 | "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" 1943 | }, 1944 | "progress": { 1945 | "version": "2.0.3", 1946 | "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", 1947 | "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" 1948 | }, 1949 | "prompts": { 1950 | "version": "2.1.0", 1951 | "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.1.0.tgz", 1952 | "integrity": "sha512-+x5TozgqYdOwWsQFZizE/Tra3fKvAoy037kOyU6cgz84n8f6zxngLOV4O32kTwt9FcLCxAqw0P/c8rOr9y+Gfg==", 1953 | "requires": { 1954 | "kleur": "^3.0.2", 1955 | "sisteransi": "^1.0.0" 1956 | } 1957 | }, 1958 | "proxy-addr": { 1959 | "version": "2.0.5", 1960 | "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.5.tgz", 1961 | "integrity": "sha512-t/7RxHXPH6cJtP0pRG6smSr9QJidhB+3kXu0KgXnbGYMgzEnUxRQ4/LDdfOwZEMyIh3/xHb8PX3t+lfL9z+YVQ==", 1962 | "requires": { 1963 | "forwarded": "~0.1.2", 1964 | "ipaddr.js": "1.9.0" 1965 | } 1966 | }, 1967 | "proxy-from-env": { 1968 | "version": "1.0.0", 1969 | "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.0.0.tgz", 1970 | "integrity": "sha1-M8UDmPcOp+uW0h97gXYwpVeRx+4=" 1971 | }, 1972 | "psl": { 1973 | "version": "1.2.0", 1974 | "resolved": "https://registry.npmjs.org/psl/-/psl-1.2.0.tgz", 1975 | "integrity": "sha512-GEn74ZffufCmkDDLNcl3uuyF/aSD6exEyh1v/ZSdAomB82t6G9hzJVRx0jBmLDW+VfZqks3aScmMw9DszwUalA==" 1976 | }, 1977 | "public-ip": { 1978 | "version": "3.1.0", 1979 | "resolved": "https://registry.npmjs.org/public-ip/-/public-ip-3.1.0.tgz", 1980 | "integrity": "sha512-d7JsmLV7nbwUYqdYWD331eMql6R3xuFozJjLDwq6pzpYCdktCbikVqyfDeyOnG5sfVqgJlWUFELf3MwS322mxQ==", 1981 | "requires": { 1982 | "dns-socket": "^4.2.0", 1983 | "got": "^9.6.0", 1984 | "is-ip": "^3.0.0" 1985 | } 1986 | }, 1987 | "pump": { 1988 | "version": "3.0.0", 1989 | "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", 1990 | "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", 1991 | "requires": { 1992 | "end-of-stream": "^1.1.0", 1993 | "once": "^1.3.1" 1994 | } 1995 | }, 1996 | "punycode": { 1997 | "version": "2.1.1", 1998 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", 1999 | "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" 2000 | }, 2001 | "puppeteer": { 2002 | "version": "1.19.0", 2003 | "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.19.0.tgz", 2004 | "integrity": "sha512-2S6E6ygpoqcECaagDbBopoSOPDv0pAZvTbnBgUY+6hq0/XDFDOLEMNlHF/SKJlzcaZ9ckiKjKDuueWI3FN/WXw==", 2005 | "requires": { 2006 | "debug": "^4.1.0", 2007 | "extract-zip": "^1.6.6", 2008 | "https-proxy-agent": "^2.2.1", 2009 | "mime": "^2.0.3", 2010 | "progress": "^2.0.1", 2011 | "proxy-from-env": "^1.0.0", 2012 | "rimraf": "^2.6.1", 2013 | "ws": "^6.1.0" 2014 | }, 2015 | "dependencies": { 2016 | "debug": { 2017 | "version": "4.1.1", 2018 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", 2019 | "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", 2020 | "requires": { 2021 | "ms": "^2.1.1" 2022 | } 2023 | }, 2024 | "mime": { 2025 | "version": "2.4.4", 2026 | "resolved": "https://registry.npmjs.org/mime/-/mime-2.4.4.tgz", 2027 | "integrity": "sha512-LRxmNwziLPT828z+4YkNzloCFC2YM4wrB99k+AV5ZbEyfGNWfG8SO1FUXLmLDBSo89NrJZ4DIWeLjy1CHGhMGA==" 2028 | }, 2029 | "ms": { 2030 | "version": "2.1.2", 2031 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 2032 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 2033 | }, 2034 | "ws": { 2035 | "version": "6.2.1", 2036 | "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.1.tgz", 2037 | "integrity": "sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==", 2038 | "requires": { 2039 | "async-limiter": "~1.0.0" 2040 | } 2041 | } 2042 | } 2043 | }, 2044 | "qs": { 2045 | "version": "6.7.0", 2046 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", 2047 | "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==" 2048 | }, 2049 | "ramda": { 2050 | "version": "0.26.1", 2051 | "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.26.1.tgz", 2052 | "integrity": "sha512-hLWjpy7EnsDBb0p+Z3B7rPi3GDeRG5ZtiI33kJhTt+ORCd38AbAIjB/9zRIUoeTbE/AVX5ZkU7m6bznsvrf8eQ==" 2053 | }, 2054 | "range-parser": { 2055 | "version": "1.2.1", 2056 | "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", 2057 | "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" 2058 | }, 2059 | "raw-body": { 2060 | "version": "2.4.0", 2061 | "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", 2062 | "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", 2063 | "requires": { 2064 | "bytes": "3.1.0", 2065 | "http-errors": "1.7.2", 2066 | "iconv-lite": "0.4.24", 2067 | "unpipe": "1.0.0" 2068 | } 2069 | }, 2070 | "rc": { 2071 | "version": "1.2.8", 2072 | "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", 2073 | "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", 2074 | "requires": { 2075 | "deep-extend": "^0.6.0", 2076 | "ini": "~1.3.0", 2077 | "minimist": "^1.2.0", 2078 | "strip-json-comments": "~2.0.1" 2079 | }, 2080 | "dependencies": { 2081 | "minimist": { 2082 | "version": "1.2.0", 2083 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", 2084 | "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" 2085 | } 2086 | } 2087 | }, 2088 | "readable-stream": { 2089 | "version": "2.3.6", 2090 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", 2091 | "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", 2092 | "requires": { 2093 | "core-util-is": "~1.0.0", 2094 | "inherits": "~2.0.3", 2095 | "isarray": "~1.0.0", 2096 | "process-nextick-args": "~2.0.0", 2097 | "safe-buffer": "~5.1.1", 2098 | "string_decoder": "~1.1.1", 2099 | "util-deprecate": "~1.0.1" 2100 | } 2101 | }, 2102 | "readline2": { 2103 | "version": "1.0.1", 2104 | "resolved": "https://registry.npmjs.org/readline2/-/readline2-1.0.1.tgz", 2105 | "integrity": "sha1-QQWWCP/BVHV7cV2ZidGZ/783LjU=", 2106 | "requires": { 2107 | "code-point-at": "^1.0.0", 2108 | "is-fullwidth-code-point": "^1.0.0", 2109 | "mute-stream": "0.0.5" 2110 | } 2111 | }, 2112 | "regenerator-runtime": { 2113 | "version": "0.10.5", 2114 | "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz", 2115 | "integrity": "sha1-M2w+/BIgrc7dosn6tntaeVWjNlg=" 2116 | }, 2117 | "request": { 2118 | "version": "2.88.0", 2119 | "resolved": "https://registry.npmjs.org/request/-/request-2.88.0.tgz", 2120 | "integrity": "sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==", 2121 | "requires": { 2122 | "aws-sign2": "~0.7.0", 2123 | "aws4": "^1.8.0", 2124 | "caseless": "~0.12.0", 2125 | "combined-stream": "~1.0.6", 2126 | "extend": "~3.0.2", 2127 | "forever-agent": "~0.6.1", 2128 | "form-data": "~2.3.2", 2129 | "har-validator": "~5.1.0", 2130 | "http-signature": "~1.2.0", 2131 | "is-typedarray": "~1.0.0", 2132 | "isstream": "~0.1.2", 2133 | "json-stringify-safe": "~5.0.1", 2134 | "mime-types": "~2.1.19", 2135 | "oauth-sign": "~0.9.0", 2136 | "performance-now": "^2.1.0", 2137 | "qs": "~6.5.2", 2138 | "safe-buffer": "^5.1.2", 2139 | "tough-cookie": "~2.4.3", 2140 | "tunnel-agent": "^0.6.0", 2141 | "uuid": "^3.3.2" 2142 | }, 2143 | "dependencies": { 2144 | "qs": { 2145 | "version": "6.5.2", 2146 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", 2147 | "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" 2148 | } 2149 | } 2150 | }, 2151 | "request-promise-core": { 2152 | "version": "1.1.2", 2153 | "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.2.tgz", 2154 | "integrity": "sha512-UHYyq1MO8GsefGEt7EprS8UrXsm1TxEvFUX1IMTuSLU2Rh7fTIdFtl8xD7JiEYiWU2dl+NYAjCTksTehQUxPag==", 2155 | "requires": { 2156 | "lodash": "^4.17.11" 2157 | } 2158 | }, 2159 | "request-promise-native": { 2160 | "version": "1.0.7", 2161 | "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.7.tgz", 2162 | "integrity": "sha512-rIMnbBdgNViL37nZ1b3L/VfPOpSi0TqVDQPAvO6U14lMzOLrt5nilxCQqtDKhZeDiW0/hkCXGoQjhgJd/tCh6w==", 2163 | "requires": { 2164 | "request-promise-core": "1.1.2", 2165 | "stealthy-require": "^1.1.1", 2166 | "tough-cookie": "^2.3.3" 2167 | } 2168 | }, 2169 | "responselike": { 2170 | "version": "1.0.2", 2171 | "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", 2172 | "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", 2173 | "requires": { 2174 | "lowercase-keys": "^1.0.0" 2175 | } 2176 | }, 2177 | "restore-cursor": { 2178 | "version": "1.0.1", 2179 | "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-1.0.1.tgz", 2180 | "integrity": "sha1-NGYfRohjJ/7SmRR5FSJS35LapUE=", 2181 | "requires": { 2182 | "exit-hook": "^1.0.0", 2183 | "onetime": "^1.0.0" 2184 | } 2185 | }, 2186 | "rimraf": { 2187 | "version": "2.6.3", 2188 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", 2189 | "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", 2190 | "requires": { 2191 | "glob": "^7.1.3" 2192 | } 2193 | }, 2194 | "robotjs": { 2195 | "version": "0.5.1", 2196 | "resolved": "https://registry.npmjs.org/robotjs/-/robotjs-0.5.1.tgz", 2197 | "integrity": "sha512-5qKsJs+0rI94WZRr3S0TleDGaiK9yeQ8PIDHwJUXWWnaHuTrbOluvw/WwSm3V7LfeLNcOHcsorP4umgmYzPLFw==", 2198 | "requires": { 2199 | "nan": "^2.2.1", 2200 | "prebuild-install": "^2.1.1" 2201 | } 2202 | }, 2203 | "run-async": { 2204 | "version": "0.1.0", 2205 | "resolved": "https://registry.npmjs.org/run-async/-/run-async-0.1.0.tgz", 2206 | "integrity": "sha1-yK1KXhEGYeQCp9IbUw4AnyX444k=", 2207 | "requires": { 2208 | "once": "^1.3.0" 2209 | } 2210 | }, 2211 | "rx-lite": { 2212 | "version": "3.1.2", 2213 | "resolved": "https://registry.npmjs.org/rx-lite/-/rx-lite-3.1.2.tgz", 2214 | "integrity": "sha1-Gc5QLKVyZl87ZHsQk5+X/RYV8QI=" 2215 | }, 2216 | "safe-buffer": { 2217 | "version": "5.1.2", 2218 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", 2219 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" 2220 | }, 2221 | "safer-buffer": { 2222 | "version": "2.1.2", 2223 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 2224 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" 2225 | }, 2226 | "sax": { 2227 | "version": "1.2.4", 2228 | "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", 2229 | "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" 2230 | }, 2231 | "saxes": { 2232 | "version": "3.1.11", 2233 | "resolved": "https://registry.npmjs.org/saxes/-/saxes-3.1.11.tgz", 2234 | "integrity": "sha512-Ydydq3zC+WYDJK1+gRxRapLIED9PWeSuuS41wqyoRmzvhhh9nc+QQrVMKJYzJFULazeGhzSV0QleN2wD3boh2g==", 2235 | "requires": { 2236 | "xmlchars": "^2.1.1" 2237 | } 2238 | }, 2239 | "semver": { 2240 | "version": "5.7.0", 2241 | "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", 2242 | "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==" 2243 | }, 2244 | "send": { 2245 | "version": "0.17.1", 2246 | "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", 2247 | "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", 2248 | "requires": { 2249 | "debug": "2.6.9", 2250 | "depd": "~1.1.2", 2251 | "destroy": "~1.0.4", 2252 | "encodeurl": "~1.0.2", 2253 | "escape-html": "~1.0.3", 2254 | "etag": "~1.8.1", 2255 | "fresh": "0.5.2", 2256 | "http-errors": "~1.7.2", 2257 | "mime": "1.6.0", 2258 | "ms": "2.1.1", 2259 | "on-finished": "~2.3.0", 2260 | "range-parser": "~1.2.1", 2261 | "statuses": "~1.5.0" 2262 | }, 2263 | "dependencies": { 2264 | "ms": { 2265 | "version": "2.1.1", 2266 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", 2267 | "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" 2268 | } 2269 | } 2270 | }, 2271 | "serve-static": { 2272 | "version": "1.14.1", 2273 | "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", 2274 | "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", 2275 | "requires": { 2276 | "encodeurl": "~1.0.2", 2277 | "escape-html": "~1.0.3", 2278 | "parseurl": "~1.3.3", 2279 | "send": "0.17.1" 2280 | } 2281 | }, 2282 | "set-blocking": { 2283 | "version": "2.0.0", 2284 | "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", 2285 | "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" 2286 | }, 2287 | "setprototypeof": { 2288 | "version": "1.1.1", 2289 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", 2290 | "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" 2291 | }, 2292 | "shebang-command": { 2293 | "version": "1.2.0", 2294 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", 2295 | "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", 2296 | "requires": { 2297 | "shebang-regex": "^1.0.0" 2298 | } 2299 | }, 2300 | "shebang-regex": { 2301 | "version": "1.0.0", 2302 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", 2303 | "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=" 2304 | }, 2305 | "signal-exit": { 2306 | "version": "3.0.2", 2307 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", 2308 | "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=" 2309 | }, 2310 | "simple-concat": { 2311 | "version": "1.0.0", 2312 | "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.0.tgz", 2313 | "integrity": "sha1-c0TLuLbib7J9ZrL8hvn21Zl1IcY=" 2314 | }, 2315 | "simple-get": { 2316 | "version": "2.8.1", 2317 | "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-2.8.1.tgz", 2318 | "integrity": "sha512-lSSHRSw3mQNUGPAYRqo7xy9dhKmxFXIjLjp4KHpf99GEH2VH7C3AM+Qfx6du6jhfUi6Vm7XnbEVEf7Wb6N8jRw==", 2319 | "requires": { 2320 | "decompress-response": "^3.3.0", 2321 | "once": "^1.3.1", 2322 | "simple-concat": "^1.0.0" 2323 | } 2324 | }, 2325 | "sisteransi": { 2326 | "version": "1.0.2", 2327 | "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.2.tgz", 2328 | "integrity": "sha512-ZcYcZcT69nSLAR2oLN2JwNmLkJEKGooFMCdvOkFrToUt/WfcRWqhIg4P4KwY4dmLbuyXIx4o4YmPsvMRJYJd/w==" 2329 | }, 2330 | "slide": { 2331 | "version": "1.1.6", 2332 | "resolved": "https://registry.npmjs.org/slide/-/slide-1.1.6.tgz", 2333 | "integrity": "sha1-VusCfWW00tzmyy4tMsTUr8nh1wc=" 2334 | }, 2335 | "smart-buffer": { 2336 | "version": "4.0.2", 2337 | "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.0.2.tgz", 2338 | "integrity": "sha512-JDhEpTKzXusOqXZ0BUIdH+CjFdO/CR3tLlf5CN34IypI+xMmXW1uB16OOY8z3cICbJlDAVJzNbwBhNO0wt9OAw==" 2339 | }, 2340 | "socks": { 2341 | "version": "2.3.2", 2342 | "resolved": "https://registry.npmjs.org/socks/-/socks-2.3.2.tgz", 2343 | "integrity": "sha512-pCpjxQgOByDHLlNqlnh/mNSAxIUkyBBuwwhTcV+enZGbDaClPvHdvm6uvOwZfFJkam7cGhBNbb4JxiP8UZkRvQ==", 2344 | "requires": { 2345 | "ip": "^1.1.5", 2346 | "smart-buffer": "4.0.2" 2347 | } 2348 | }, 2349 | "socks-proxy-agent": { 2350 | "version": "4.0.2", 2351 | "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-4.0.2.tgz", 2352 | "integrity": "sha512-NT6syHhI9LmuEMSK6Kd2V7gNv5KFZoLE7V5udWmn0de+3Mkj3UMA/AJPLyeNUVmElCurSHtUdM3ETpR3z770Wg==", 2353 | "requires": { 2354 | "agent-base": "~4.2.1", 2355 | "socks": "~2.3.2" 2356 | }, 2357 | "dependencies": { 2358 | "agent-base": { 2359 | "version": "4.2.1", 2360 | "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-4.2.1.tgz", 2361 | "integrity": "sha512-JVwXMr9nHYTUXsBFKUqhJwvlcYU/blreOEUkhNR2eXZIvwd+c+o5V4MgDPKWnMS/56awN3TRzIP+KoPn+roQtg==", 2362 | "requires": { 2363 | "es6-promisify": "^5.0.0" 2364 | } 2365 | } 2366 | } 2367 | }, 2368 | "source-map": { 2369 | "version": "0.6.1", 2370 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", 2371 | "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", 2372 | "optional": true 2373 | }, 2374 | "speedtest-net": { 2375 | "version": "1.5.1", 2376 | "resolved": "https://registry.npmjs.org/speedtest-net/-/speedtest-net-1.5.1.tgz", 2377 | "integrity": "sha512-az10ue3vkUUt49p5ommRO5eKXB5GfzyLehWCNRUnO686GjtdXJcSJFPnluc93UdoWTtWbr4fCVeH9Kka1OpHIA==", 2378 | "requires": { 2379 | "chalk": "^2.4.1", 2380 | "draftlog": "^1.0.12", 2381 | "http-proxy-agent": "^2.0.0", 2382 | "https-proxy-agent": "^2.1.1", 2383 | "xml2js": "^0.4.4" 2384 | } 2385 | }, 2386 | "sshpk": { 2387 | "version": "1.16.1", 2388 | "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", 2389 | "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", 2390 | "requires": { 2391 | "asn1": "~0.2.3", 2392 | "assert-plus": "^1.0.0", 2393 | "bcrypt-pbkdf": "^1.0.0", 2394 | "dashdash": "^1.12.0", 2395 | "ecc-jsbn": "~0.1.1", 2396 | "getpass": "^0.1.1", 2397 | "jsbn": "~0.1.0", 2398 | "safer-buffer": "^2.0.2", 2399 | "tweetnacl": "~0.14.0" 2400 | } 2401 | }, 2402 | "ssri": { 2403 | "version": "6.0.1", 2404 | "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz", 2405 | "integrity": "sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==", 2406 | "requires": { 2407 | "figgy-pudding": "^3.5.1" 2408 | } 2409 | }, 2410 | "statuses": { 2411 | "version": "1.5.0", 2412 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", 2413 | "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" 2414 | }, 2415 | "stealthy-require": { 2416 | "version": "1.1.1", 2417 | "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", 2418 | "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=" 2419 | }, 2420 | "steno": { 2421 | "version": "0.4.4", 2422 | "resolved": "https://registry.npmjs.org/steno/-/steno-0.4.4.tgz", 2423 | "integrity": "sha1-BxEFvfwobmYVwEA8J+nXtdy4Vcs=", 2424 | "requires": { 2425 | "graceful-fs": "^4.1.3" 2426 | } 2427 | }, 2428 | "string-width": { 2429 | "version": "1.0.2", 2430 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", 2431 | "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", 2432 | "requires": { 2433 | "code-point-at": "^1.0.0", 2434 | "is-fullwidth-code-point": "^1.0.0", 2435 | "strip-ansi": "^3.0.0" 2436 | } 2437 | }, 2438 | "string.prototype.trim": { 2439 | "version": "1.2.0", 2440 | "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.0.tgz", 2441 | "integrity": "sha512-9EIjYD/WdlvLpn987+ctkLf0FfvBefOCuiEr2henD8X+7jfwPnyvTdmW8OJhj5p+M0/96mBdynLWkxUr+rHlpg==", 2442 | "requires": { 2443 | "define-properties": "^1.1.3", 2444 | "es-abstract": "^1.13.0", 2445 | "function-bind": "^1.1.1" 2446 | } 2447 | }, 2448 | "string_decoder": { 2449 | "version": "1.1.1", 2450 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", 2451 | "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", 2452 | "requires": { 2453 | "safe-buffer": "~5.1.0" 2454 | } 2455 | }, 2456 | "strip-ansi": { 2457 | "version": "3.0.1", 2458 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", 2459 | "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", 2460 | "requires": { 2461 | "ansi-regex": "^2.0.0" 2462 | } 2463 | }, 2464 | "strip-eof": { 2465 | "version": "1.0.0", 2466 | "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", 2467 | "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=" 2468 | }, 2469 | "strip-json-comments": { 2470 | "version": "2.0.1", 2471 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", 2472 | "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=" 2473 | }, 2474 | "supports-color": { 2475 | "version": "5.5.0", 2476 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 2477 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 2478 | "requires": { 2479 | "has-flag": "^3.0.0" 2480 | } 2481 | }, 2482 | "symbol-tree": { 2483 | "version": "3.2.4", 2484 | "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", 2485 | "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" 2486 | }, 2487 | "systeminformation": { 2488 | "version": "4.14.4", 2489 | "resolved": "https://registry.npmjs.org/systeminformation/-/systeminformation-4.14.4.tgz", 2490 | "integrity": "sha512-ib2dodksiiaGOW4rcKvFr5naHkODI9GwQPugLb6FLKppkIsE7rj2dfY2UdMBr7oX0/iZP981hoxmbk2e6zl99Q==" 2491 | }, 2492 | "tar-fs": { 2493 | "version": "1.16.3", 2494 | "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-1.16.3.tgz", 2495 | "integrity": "sha512-NvCeXpYx7OsmOh8zIOP/ebG55zZmxLE0etfWRbWok+q2Qo8x/vOR/IJT1taADXPe+jsiu9axDb3X4B+iIgNlKw==", 2496 | "requires": { 2497 | "chownr": "^1.0.1", 2498 | "mkdirp": "^0.5.1", 2499 | "pump": "^1.0.0", 2500 | "tar-stream": "^1.1.2" 2501 | }, 2502 | "dependencies": { 2503 | "pump": { 2504 | "version": "1.0.3", 2505 | "resolved": "https://registry.npmjs.org/pump/-/pump-1.0.3.tgz", 2506 | "integrity": "sha512-8k0JupWme55+9tCVE+FS5ULT3K6AbgqrGa58lTT49RpyfwwcGedHqaC5LlQNdEAumn/wFsu6aPwkuPMioy8kqw==", 2507 | "requires": { 2508 | "end-of-stream": "^1.1.0", 2509 | "once": "^1.3.1" 2510 | } 2511 | } 2512 | } 2513 | }, 2514 | "tar-stream": { 2515 | "version": "1.6.2", 2516 | "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz", 2517 | "integrity": "sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==", 2518 | "requires": { 2519 | "bl": "^1.0.0", 2520 | "buffer-alloc": "^1.2.0", 2521 | "end-of-stream": "^1.0.0", 2522 | "fs-constants": "^1.0.0", 2523 | "readable-stream": "^2.3.0", 2524 | "to-buffer": "^1.1.1", 2525 | "xtend": "^4.0.0" 2526 | } 2527 | }, 2528 | "term-img": { 2529 | "version": "4.1.0", 2530 | "resolved": "https://registry.npmjs.org/term-img/-/term-img-4.1.0.tgz", 2531 | "integrity": "sha512-DFpBhaF5j+2f7kheKFc1ajsAUUDGOaNPpKPtiIMxlbfud6mvfFZuWGnTRpaujUa5J7yl6cIw/h6nyr4mSsENPg==", 2532 | "requires": { 2533 | "ansi-escapes": "^4.1.0", 2534 | "iterm2-version": "^4.1.0" 2535 | } 2536 | }, 2537 | "terminal-image": { 2538 | "version": "0.2.0", 2539 | "resolved": "https://registry.npmjs.org/terminal-image/-/terminal-image-0.2.0.tgz", 2540 | "integrity": "sha512-VghwOgzE9PFefbuXI1TwVRbjeqgdKylqzU5ivlYDmplLwgT2+yNG/vsEbGvy6R3dNMeQ8KzdCT4WemRmeKLdXg==", 2541 | "requires": { 2542 | "@sindresorhus/jimp": "^0.3.0", 2543 | "chalk": "^2.4.2", 2544 | "term-img": "^4.1.0" 2545 | } 2546 | }, 2547 | "through": { 2548 | "version": "2.3.8", 2549 | "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", 2550 | "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" 2551 | }, 2552 | "tinycolor2": { 2553 | "version": "1.4.1", 2554 | "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.1.tgz", 2555 | "integrity": "sha1-9PrTM0R7wLB9TcjpIJ2POaisd+g=" 2556 | }, 2557 | "to-buffer": { 2558 | "version": "1.1.1", 2559 | "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz", 2560 | "integrity": "sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==" 2561 | }, 2562 | "to-readable-stream": { 2563 | "version": "1.0.0", 2564 | "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", 2565 | "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==" 2566 | }, 2567 | "toidentifier": { 2568 | "version": "1.0.0", 2569 | "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", 2570 | "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==" 2571 | }, 2572 | "tor-request": { 2573 | "version": "3.1.0", 2574 | "resolved": "https://registry.npmjs.org/tor-request/-/tor-request-3.1.0.tgz", 2575 | "integrity": "sha512-153kvMc+f3U0TOncrxpQlbYRnRdfVHVOtlkVwSsgsUzU4RiuvIW8UyyIOMSMfVlu1u887d/FgHZF9K2YmOK3Mw==", 2576 | "requires": { 2577 | "request": "~2.88.0", 2578 | "socks-proxy-agent": "~4.0.1" 2579 | } 2580 | }, 2581 | "tough-cookie": { 2582 | "version": "2.4.3", 2583 | "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz", 2584 | "integrity": "sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==", 2585 | "requires": { 2586 | "psl": "^1.1.24", 2587 | "punycode": "^1.4.1" 2588 | }, 2589 | "dependencies": { 2590 | "punycode": { 2591 | "version": "1.4.1", 2592 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", 2593 | "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" 2594 | } 2595 | } 2596 | }, 2597 | "tr46": { 2598 | "version": "1.0.1", 2599 | "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", 2600 | "integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=", 2601 | "requires": { 2602 | "punycode": "^2.1.0" 2603 | } 2604 | }, 2605 | "tunnel-agent": { 2606 | "version": "0.6.0", 2607 | "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", 2608 | "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", 2609 | "requires": { 2610 | "safe-buffer": "^5.0.1" 2611 | } 2612 | }, 2613 | "tweetnacl": { 2614 | "version": "0.14.5", 2615 | "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", 2616 | "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" 2617 | }, 2618 | "type-check": { 2619 | "version": "0.3.2", 2620 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", 2621 | "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", 2622 | "requires": { 2623 | "prelude-ls": "~1.1.2" 2624 | } 2625 | }, 2626 | "type-fest": { 2627 | "version": "0.5.2", 2628 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.5.2.tgz", 2629 | "integrity": "sha512-DWkS49EQKVX//Tbupb9TFa19c7+MK1XmzkrZUR8TAktmE/DizXoaoJV6TZ/tSIPXipqNiRI6CyAe7x69Jb6RSw==" 2630 | }, 2631 | "type-is": { 2632 | "version": "1.6.18", 2633 | "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", 2634 | "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", 2635 | "requires": { 2636 | "media-typer": "0.3.0", 2637 | "mime-types": "~2.1.24" 2638 | } 2639 | }, 2640 | "typedarray": { 2641 | "version": "0.0.6", 2642 | "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", 2643 | "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" 2644 | }, 2645 | "unpipe": { 2646 | "version": "1.0.0", 2647 | "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", 2648 | "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" 2649 | }, 2650 | "uri-js": { 2651 | "version": "4.2.2", 2652 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", 2653 | "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", 2654 | "requires": { 2655 | "punycode": "^2.1.0" 2656 | } 2657 | }, 2658 | "url-parse-lax": { 2659 | "version": "3.0.0", 2660 | "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", 2661 | "integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=", 2662 | "requires": { 2663 | "prepend-http": "^2.0.0" 2664 | } 2665 | }, 2666 | "utif": { 2667 | "version": "1.3.0", 2668 | "resolved": "https://registry.npmjs.org/utif/-/utif-1.3.0.tgz", 2669 | "integrity": "sha512-Rv9/OsKlBgMlLGai2EAoVheIbdBlndMunkXH4BuU81R2+Nky24I670OdGIb+NMpCbuHGyKjk9OQ7hdyOxuNXgw==", 2670 | "requires": { 2671 | "jpgjs": "github:notmasteryet/jpgjs", 2672 | "pako": "^1.0.5" 2673 | } 2674 | }, 2675 | "util-deprecate": { 2676 | "version": "1.0.2", 2677 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 2678 | "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" 2679 | }, 2680 | "utils-merge": { 2681 | "version": "1.0.1", 2682 | "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", 2683 | "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" 2684 | }, 2685 | "uuid": { 2686 | "version": "3.3.2", 2687 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz", 2688 | "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==" 2689 | }, 2690 | "vary": { 2691 | "version": "1.1.2", 2692 | "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", 2693 | "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" 2694 | }, 2695 | "verror": { 2696 | "version": "1.10.0", 2697 | "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", 2698 | "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", 2699 | "requires": { 2700 | "assert-plus": "^1.0.0", 2701 | "core-util-is": "1.0.2", 2702 | "extsprintf": "^1.2.0" 2703 | } 2704 | }, 2705 | "vorpal": { 2706 | "version": "1.12.0", 2707 | "resolved": "https://registry.npmjs.org/vorpal/-/vorpal-1.12.0.tgz", 2708 | "integrity": "sha1-S+eypOSPj8/JzzZIxBnTEcUiFZ0=", 2709 | "requires": { 2710 | "babel-polyfill": "^6.3.14", 2711 | "chalk": "^1.1.0", 2712 | "in-publish": "^2.0.0", 2713 | "inquirer": "0.11.0", 2714 | "lodash": "^4.5.1", 2715 | "log-update": "^1.0.2", 2716 | "minimist": "^1.2.0", 2717 | "node-localstorage": "^0.6.0", 2718 | "strip-ansi": "^3.0.0", 2719 | "wrap-ansi": "^2.0.0" 2720 | }, 2721 | "dependencies": { 2722 | "ansi-styles": { 2723 | "version": "2.2.1", 2724 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", 2725 | "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" 2726 | }, 2727 | "chalk": { 2728 | "version": "1.1.3", 2729 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", 2730 | "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", 2731 | "requires": { 2732 | "ansi-styles": "^2.2.1", 2733 | "escape-string-regexp": "^1.0.2", 2734 | "has-ansi": "^2.0.0", 2735 | "strip-ansi": "^3.0.0", 2736 | "supports-color": "^2.0.0" 2737 | } 2738 | }, 2739 | "minimist": { 2740 | "version": "1.2.0", 2741 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", 2742 | "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" 2743 | }, 2744 | "node-localstorage": { 2745 | "version": "0.6.0", 2746 | "resolved": "https://registry.npmjs.org/node-localstorage/-/node-localstorage-0.6.0.tgz", 2747 | "integrity": "sha1-RaBgHGky395mRKIzYfG+Fzx1068=" 2748 | }, 2749 | "supports-color": { 2750 | "version": "2.0.0", 2751 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", 2752 | "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" 2753 | } 2754 | } 2755 | }, 2756 | "w3c-hr-time": { 2757 | "version": "1.0.1", 2758 | "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz", 2759 | "integrity": "sha1-gqwr/2PZUOqeMYmlimViX+3xkEU=", 2760 | "requires": { 2761 | "browser-process-hrtime": "^0.1.2" 2762 | } 2763 | }, 2764 | "w3c-xmlserializer": { 2765 | "version": "1.1.2", 2766 | "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-1.1.2.tgz", 2767 | "integrity": "sha512-p10l/ayESzrBMYWRID6xbuCKh2Fp77+sA0doRuGn4tTIMrrZVeqfpKjXHY+oDh3K4nLdPgNwMTVP6Vp4pvqbNg==", 2768 | "requires": { 2769 | "domexception": "^1.0.1", 2770 | "webidl-conversions": "^4.0.2", 2771 | "xml-name-validator": "^3.0.0" 2772 | } 2773 | }, 2774 | "webidl-conversions": { 2775 | "version": "4.0.2", 2776 | "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", 2777 | "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==" 2778 | }, 2779 | "whatwg-encoding": { 2780 | "version": "1.0.5", 2781 | "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", 2782 | "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", 2783 | "requires": { 2784 | "iconv-lite": "0.4.24" 2785 | } 2786 | }, 2787 | "whatwg-mimetype": { 2788 | "version": "2.3.0", 2789 | "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", 2790 | "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==" 2791 | }, 2792 | "whatwg-url": { 2793 | "version": "7.0.0", 2794 | "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.0.0.tgz", 2795 | "integrity": "sha512-37GeVSIJ3kn1JgKyjiYNmSLP1yzbpb29jdmwBSgkD9h40/hyrR/OifpVUndji3tmwGgD8qpw7iQu3RSbCrBpsQ==", 2796 | "requires": { 2797 | "lodash.sortby": "^4.7.0", 2798 | "tr46": "^1.0.1", 2799 | "webidl-conversions": "^4.0.2" 2800 | } 2801 | }, 2802 | "which": { 2803 | "version": "1.3.1", 2804 | "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", 2805 | "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", 2806 | "requires": { 2807 | "isexe": "^2.0.0" 2808 | } 2809 | }, 2810 | "which-pm-runs": { 2811 | "version": "1.0.0", 2812 | "resolved": "https://registry.npmjs.org/which-pm-runs/-/which-pm-runs-1.0.0.tgz", 2813 | "integrity": "sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs=" 2814 | }, 2815 | "wide-align": { 2816 | "version": "1.1.3", 2817 | "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", 2818 | "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", 2819 | "requires": { 2820 | "string-width": "^1.0.2 || 2" 2821 | } 2822 | }, 2823 | "wordwrap": { 2824 | "version": "1.0.0", 2825 | "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", 2826 | "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=" 2827 | }, 2828 | "wrap-ansi": { 2829 | "version": "2.1.0", 2830 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", 2831 | "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", 2832 | "requires": { 2833 | "string-width": "^1.0.1", 2834 | "strip-ansi": "^3.0.1" 2835 | } 2836 | }, 2837 | "wrappy": { 2838 | "version": "1.0.2", 2839 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 2840 | "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" 2841 | }, 2842 | "write-file-atomic": { 2843 | "version": "1.3.4", 2844 | "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-1.3.4.tgz", 2845 | "integrity": "sha1-+Aek8LHZ6ROuekgRLmzDrxmRtF8=", 2846 | "requires": { 2847 | "graceful-fs": "^4.1.11", 2848 | "imurmurhash": "^0.1.4", 2849 | "slide": "^1.1.5" 2850 | } 2851 | }, 2852 | "ws": { 2853 | "version": "7.1.1", 2854 | "resolved": "https://registry.npmjs.org/ws/-/ws-7.1.1.tgz", 2855 | "integrity": "sha512-o41D/WmDeca0BqYhsr3nJzQyg9NF5X8l/UdnFNux9cS3lwB+swm8qGWX5rn+aD6xfBU3rGmtHij7g7x6LxFU3A==", 2856 | "requires": { 2857 | "async-limiter": "^1.0.0" 2858 | } 2859 | }, 2860 | "xhr": { 2861 | "version": "2.5.0", 2862 | "resolved": "https://registry.npmjs.org/xhr/-/xhr-2.5.0.tgz", 2863 | "integrity": "sha512-4nlO/14t3BNUZRXIXfXe+3N6w3s1KoxcJUUURctd64BLRe67E4gRwp4PjywtDY72fXpZ1y6Ch0VZQRY/gMPzzQ==", 2864 | "requires": { 2865 | "global": "~4.3.0", 2866 | "is-function": "^1.0.1", 2867 | "parse-headers": "^2.0.0", 2868 | "xtend": "^4.0.0" 2869 | } 2870 | }, 2871 | "xml-name-validator": { 2872 | "version": "3.0.0", 2873 | "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", 2874 | "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==" 2875 | }, 2876 | "xml-parse-from-string": { 2877 | "version": "1.0.1", 2878 | "resolved": "https://registry.npmjs.org/xml-parse-from-string/-/xml-parse-from-string-1.0.1.tgz", 2879 | "integrity": "sha1-qQKekp09vN7RafPG4oI42VpdWig=" 2880 | }, 2881 | "xml2js": { 2882 | "version": "0.4.19", 2883 | "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.19.tgz", 2884 | "integrity": "sha512-esZnJZJOiJR9wWKMyuvSE1y6Dq5LCuJanqhxslH2bxM6duahNZ+HMpCLhBQGZkbX6xRf8x1Y2eJlgt2q3qo49Q==", 2885 | "requires": { 2886 | "sax": ">=0.6.0", 2887 | "xmlbuilder": "~9.0.1" 2888 | } 2889 | }, 2890 | "xmlbuilder": { 2891 | "version": "9.0.7", 2892 | "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.7.tgz", 2893 | "integrity": "sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0=" 2894 | }, 2895 | "xmlchars": { 2896 | "version": "2.1.1", 2897 | "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.1.1.tgz", 2898 | "integrity": "sha512-7hew1RPJ1iIuje/Y01bGD/mXokXxegAgVS+e+E0wSi2ILHQkYAH1+JXARwTjZSM4Z4Z+c73aKspEcqj+zPPL/w==" 2899 | }, 2900 | "xmldom": { 2901 | "version": "0.1.27", 2902 | "resolved": "https://registry.npmjs.org/xmldom/-/xmldom-0.1.27.tgz", 2903 | "integrity": "sha1-1QH5ezvbQDr4757MIFcxh6rawOk=" 2904 | }, 2905 | "xtend": { 2906 | "version": "4.0.2", 2907 | "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", 2908 | "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" 2909 | }, 2910 | "yauzl": { 2911 | "version": "2.4.1", 2912 | "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.4.1.tgz", 2913 | "integrity": "sha1-lSj0QtqxsihOWLQ3m7GU4i4MQAU=", 2914 | "requires": { 2915 | "fd-slicer": "~1.0.1" 2916 | } 2917 | } 2918 | } 2919 | } 2920 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "workshop-node4hackers", 3 | "version": "1.0.0", 4 | "description": "Repositorio de trabajo del Workshop node4hackers", 5 | "main": "index.js", 6 | "scripts": { 7 | "docker-tor": "docker run -p 127.0.0.1:9050:9050 --name tor osminogin/tor-simple", 8 | "start-infra": "docker-compose up", 9 | "stop-infra": "docker-compose down" 10 | }, 11 | "repository": { 12 | "type": "git", 13 | "url": "git+https://github.com/UlisesGascon/workshop-node4hackers.git" 14 | }, 15 | "author": "", 16 | "license": "ISC", 17 | "bugs": { 18 | "url": "https://github.com/UlisesGascon/workshop-node4hackers/issues" 19 | }, 20 | "homepage": "https://github.com/UlisesGascon/workshop-node4hackers#readme", 21 | "dependencies": { 22 | "chalk": "^2.4.2", 23 | "express": "^4.17.1", 24 | "got": "^9.6.0", 25 | "iplocation": "^6.1.0", 26 | "is-valid-path": "^0.1.1", 27 | "jsdom": "^15.1.1", 28 | "lodash": "^4.17.15", 29 | "lowdb": "^1.0.0", 30 | "macaddress": "^0.2.9", 31 | "openpgp": "^4.5.5", 32 | "prompts": "^2.1.0", 33 | "public-ip": "^3.1.0", 34 | "puppeteer": "^1.19.0", 35 | "ramda": "^0.26.1", 36 | "request": "^2.88.0", 37 | "robotjs": "^0.5.1", 38 | "speedtest-net": "^1.5.1", 39 | "ssri": "^6.0.1", 40 | "systeminformation": "^4.14.4", 41 | "terminal-image": "^0.2.0", 42 | "tor-request": "^3.1.0", 43 | "uuid": "^3.3.2", 44 | "vorpal": "^1.12.0" 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /proxy-cosas/basic-server.js: -------------------------------------------------------------------------------- 1 | const express = require('express'); 2 | const app = express() 3 | const port = 3000 4 | 5 | app.get('/', function (req, res) { 6 | res.send('Hello World!') 7 | }) 8 | 9 | app.get('/name', function (req, res) { 10 | res.send(`Hola ${req.query.nombre}!`) 11 | }) 12 | 13 | app.listen(port, function () { 14 | console.log(`Example app listening on port ${port}!`) 15 | }) -------------------------------------------------------------------------------- /proxy-cosas/tor-proxy.js: -------------------------------------------------------------------------------- 1 | const express = require('express'); 2 | const tr = require('tor-request'); 3 | const got = require('got'); 4 | const app = express() 5 | const port = 3000 6 | 7 | app.get('/', function (req, res) { 8 | res.send('Hello World!') 9 | }) 10 | 11 | app.get('/tor-proxy', function (req, res) { 12 | /* 13 | - http://127.0.0.1:3000/tor-proxy?url=https://check.torproject.org/ 14 | - http://127.0.0.1:3000/tor-proxy?url=hackamdrid.org 15 | */ 16 | const url = req.query.url 17 | if(!url) { 18 | return res.status(666).send("Me faltan datos!") 19 | } 20 | 21 | tr.request(url, function (err, response, body) { 22 | 23 | if (err) { 24 | console.log(err) 25 | return res.status(500).send(err) 26 | } 27 | 28 | res.send(body) 29 | }); 30 | }) 31 | 32 | app.get('/proxy', function (req, res) { 33 | /* 34 | - http://127.0.0.1:3000/proxy?url=https://check.torproject.org/ 35 | - http://127.0.0.1:3000/proxy?url=hackamdrid.org 36 | */ 37 | const url = req.query.url 38 | if(!url) { 39 | return res.status(666).send("Me faltan datos!") 40 | } 41 | got(url) 42 | .then((response) => res.send(response.body)) 43 | .catch(err => res.status(500).send(err)) 44 | }) 45 | 46 | app.listen(port, function () { 47 | console.log(`Example app listening on port ${port}!`) 48 | }) 49 | -------------------------------------------------------------------------------- /scraping-science/proxy-picture.js: -------------------------------------------------------------------------------- 1 | const express = require('express'); 2 | const got = require('got'); 3 | const jsdom = require("jsdom"); 4 | const fs = require('fs') 5 | const { JSDOM } = jsdom; 6 | const app = express() 7 | const port = 3000 8 | const path = require('path'); 9 | const puppeteer = require('puppeteer'); 10 | 11 | const generateImg = async (url,imgName) => { 12 | const browser = await puppeteer.launch(); 13 | const page = await browser.newPage(); 14 | await page.goto(url); 15 | await page.screenshot({path: imgName}); 16 | await browser.close(); 17 | }; 18 | 19 | 20 | app.get('/', function (req, res) { 21 | res.send('Hello World!') 22 | }) 23 | 24 | 25 | app.get('/pictures', function (req, res) { 26 | /* 27 | - http://127.0.0.1:3000/pictures?url=hackamdrid.org 28 | */ 29 | const url = req.query.url 30 | const selector = req.query.selector || "img" 31 | if(!url) { 32 | return res.status(666).send("Me faltan datos!") 33 | } 34 | got(url) 35 | .then((response) => { 36 | const dom = new JSDOM(response.body); 37 | const urls = (Array.from(dom.window.document.querySelectorAll(selector)) 38 | .map(image => image.src)) 39 | res.json({pictures: urls, url}) 40 | }) 41 | .catch(err => res.status(500).send(err)) 42 | }) 43 | 44 | app.get('/captura', function(req, res) { 45 | let url = req.query.url 46 | if(!url) { 47 | return res.status(666).send("Me faltan datos!") 48 | } 49 | url=url.startsWith('http://') || url.startsWith('https://')?url:'https://'+url; 50 | let imgName = 'screenshot.png' 51 | let imgPath= path.join(__dirname,imgName) 52 | 53 | generateImg(url,imgName) 54 | .then(raw => res.sendFile(imgPath)) 55 | .catch(err => { 56 | console.log(err); 57 | res.status(666).send(err) 58 | }) 59 | 60 | }) 61 | 62 | app.listen(port, function () { 63 | console.log(`Example app listening on port ${port}!`) 64 | }) 65 | -------------------------------------------------------------------------------- /scraping-science/simple.js: -------------------------------------------------------------------------------- 1 | const puppeteer = require('puppeteer'); 2 | 3 | (async () => { 4 | const browser = await puppeteer.launch(); 5 | const page = await browser.newPage(); 6 | await page.goto('https://hackmadrid.org'); 7 | await page.screenshot({path: 'hackmadrid.png'}); 8 | 9 | //Array.from(document.querySelectorAll("img")).map(img => img.src) 10 | 11 | const photos = await page.evaluate(() => { 12 | const images = Array.from(document.querySelectorAll('.image > img')); 13 | return images.map(img => img.src); 14 | }) 15 | 16 | console.log('photos:', photos); 17 | 18 | await browser.close(); 19 | })(); -------------------------------------------------------------------------------- /server-cosas/server-api.js: -------------------------------------------------------------------------------- 1 | const express = require('express'); 2 | const got = require('got'); 3 | const app = express() 4 | const port = 3000 5 | 6 | app.get('/', function (req, res) { 7 | res.send('Hello World!') 8 | }) 9 | 10 | app.get('/api', function (req, res) { 11 | function allRequestWeather (list) { 12 | return Promise.all(list.map(station => got(`http://airemad.com/api/v1/weather/${station.id}`))) 13 | } 14 | 15 | function transformResponse (responses) { 16 | return responses.map(response => JSON.parse(response.body)) 17 | } 18 | 19 | const url = "http://airemad.com/api/v1/station" 20 | got(url) 21 | .then(response => allRequestWeather(JSON.parse(response.body))) 22 | .then(transformResponse) 23 | .then((data) => res.json(data)) 24 | .catch(err => res.status(500).send(err)) 25 | }) 26 | 27 | app.listen(port, function () { 28 | console.log(`Example app listening on port ${port}!`) 29 | }) 30 | 31 | // http://airemad.com/api/v1/station -------------------------------------------------------------------------------- /server-cosas/tor-identification.js: -------------------------------------------------------------------------------- 1 | const low = require('lowdb') 2 | const got = require('got'); 3 | 4 | const FileSync = require('lowdb/adapters/FileSync') 5 | 6 | const adapter = new FileSync('db.json') 7 | const db = low(adapter) 8 | 9 | const express = require('express'); 10 | const app = express() 11 | const port = 3000 12 | 13 | db.defaults({ raw: {}, node_ips: [], exit: []}).write() 14 | 15 | function getData() { 16 | const url = "https://onionoo.torproject.org/details" 17 | return got(url) 18 | .then(response => { 19 | const data = JSON.parse(response.body); 20 | db.set('raw', data).write() 21 | const ips = data.relays.map(relay => relay.or_addresses).reduce((a, p) => a.concat(p)); 22 | db.set('node_ips', ips).write() 23 | 24 | }) 25 | } 26 | 27 | function getIps () { 28 | return db.get('node_ips').value() 29 | } 30 | 31 | function checkIp (ip) { 32 | const ips = db.get('node_ips').value() 33 | return ips.includes(ip) 34 | } 35 | 36 | app.get('/', function (req, res) { 37 | res.send('Hello World!') 38 | }) 39 | 40 | app.get('/tor-nodes', function(req, res) { 41 | res.json(getIps()) 42 | }) 43 | 44 | app.get('/check-ip/:ip', function (req, res) { 45 | const ip = req.params.ip; 46 | res.json({ip, isNode: checkIp(ip)}) 47 | }) 48 | 49 | app.listen(port, function () { 50 | console.log(`Example app listening on port ${port}!`) 51 | }) 52 | 53 | //CRON 54 | setInterval(getData, 50000) --------------------------------------------------------------------------------