Plugin Directory

Changeset 2454677


Ignore:
Timestamp:
01/12/2021 11:22:14 AM (5 years ago)
Author:
rtowebsites
Message:

fix some issues

Location:
dynamictags/trunk
Files:
16 edited

Legend:

Unmodified
Added
Removed
  • dynamictags/trunk/Lib/DynamicTags/Cookies.php

    r2451286 r2454677  
    2323    public function get_categories() {
    2424        return [ Module::TEXT_CATEGORY ];
     25    }
     26
     27    /**
     28     * Legacy for elementor < 3.1
     29     */
     30    protected function _register_controls() {
     31        $this->register_controls();
    2532    }
    2633
  • dynamictags/trunk/Lib/DynamicTags/CurrentLanguage.php

    r2451286 r2454677  
    2424    }
    2525
     26    /**
     27     * Legacy for elementor < 3.1
     28     */
     29    protected function _register_controls() {
     30        $this->register_controls();
     31    }
     32
    2633    protected function register_controls() {
    2734
  • dynamictags/trunk/Lib/DynamicTags/CurrentUserCan.php

    r2451286 r2454677  
    2424    public function get_categories() {
    2525        return [ Module::TEXT_CATEGORY ];
     26    }
     27
     28    /**
     29     * Legacy for elementor < 3.1
     30     */
     31    protected function _register_controls() {
     32        $this->register_controls();
    2633    }
    2734
  • dynamictags/trunk/Lib/DynamicTags/IsPostInCategory.php

    r2451286 r2454677  
    2323    public function get_categories() {
    2424        return [ Module::TEXT_CATEGORY ];
     25    }
     26
     27    /**
     28     * Legacy for elementor < 3.1
     29     */
     30    protected function _register_controls() {
     31        $this->register_controls();
    2532    }
    2633
  • dynamictags/trunk/Lib/DynamicTags/IsPostInList.php

    r2451286 r2454677  
    2222    public function get_categories() {
    2323        return [ Module::TEXT_CATEGORY ];
     24    }
     25
     26    /**
     27     * Legacy for elementor < 3.1
     28     */
     29    protected function _register_controls() {
     30        $this->register_controls();
    2431    }
    2532
  • dynamictags/trunk/Lib/DynamicTags/NumberPostsQuery.php

    r2451286 r2454677  
    2121    public function get_categories() {
    2222        return [ Module::TEXT_CATEGORY, Module::NUMBER_CATEGORY ];
     23    }
     24
     25    /**
     26     * Legacy for elementor < 3.1
     27     */
     28    protected function _register_controls() {
     29        $this->register_controls();
    2330    }
    2431
  • dynamictags/trunk/Lib/DynamicTags/PostContent.php

    r2451286 r2454677  
    2828    }
    2929
     30    /**
     31     * Legacy for elementor < 3.1
     32     */
     33    protected function _register_controls() {
     34        $this->register_controls();
     35    }
    3036
    3137    protected function register_controls() {
  • dynamictags/trunk/Lib/DynamicTags/ServerVars.php

    r2451286 r2454677  
    2626    public function get_categories() {
    2727        return [ Module::TEXT_CATEGORY ];
     28    }
     29
     30    /**
     31     * Legacy for elementor < 3.1
     32     */
     33    protected function _register_controls() {
     34        $this->register_controls();
    2835    }
    2936
  • dynamictags/trunk/Lib/DynamicTags/UserAuthorImageUrl.php

    r2451286 r2454677  
    2424    public function get_categories() {
    2525        return [ Module::TEXT_CATEGORY, Module::URL_CATEGORY ];
     26    }
     27
     28    /**
     29     * Legacy for elementor < 3.1
     30     */
     31    protected function _register_controls() {
     32        $this->register_controls();
    2633    }
    2734
  • dynamictags/trunk/Lib/DynamicTags/UserRole.php

    r2451286 r2454677  
    2323    public function get_categories() {
    2424        return [ Module::TEXT_CATEGORY ];
     25    }
     26
     27    /**
     28     * Legacy for elementor < 3.1
     29     */
     30    protected function _register_controls() {
     31        $this->register_controls();
    2532    }
    2633
  • dynamictags/trunk/Lib/DynamicTags/WidgetContent.php

    r2451286 r2454677  
    2626    public function get_categories() {
    2727        return [ Module::TEXT_CATEGORY ];
     28    }
     29
     30    /**
     31     * Legacy for elementor < 3.1
     32     */
     33    protected function _register_controls() {
     34        $this->register_controls();
    2835    }
    2936
  • dynamictags/trunk/README.txt

    r2451286 r2454677  
    55Requires at least: 5.0
    66Tested up to: 5.7
    7 Stable tag: 1.1.2
     7Stable tag: 1.1.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • dynamictags/trunk/dynamic-tags.php

    r2451286 r2454677  
    2323 * Plugin URI:        https://github.com/RTO-Websites/dynamic-tags/
    2424 * Description:       Dynamic Tags is an Elementor addon that adds some useful dynamic tags.
    25  * Version:           1.1.2
     25 * Version:           1.1.3
    2626 * Author:            RTO GmbH
    2727 * Author URI:        https://www.rto.de
     
    3737}
    3838
    39 define( 'DynamicTags_VERSION', '1.1.2' );
     39define( 'DynamicTags_VERSION', '1.1.3' );
    4040
    4141define( 'DynamicTags_DIR', str_replace( '\\', '/', __DIR__ ) );
  • dynamictags/trunk/gulpfile.js

    r2360854 r2454677  
    66  rename = require('gulp-rename');//https://www.npmjs.org/package/gulp-rename
    77
    8 gulp.task('default', function () {
     8gulp.task('default', function (done) {
    99  // Admin
    1010  var sassAdminFiles = ['Admin/scss/*.*'];
     
    2626    .pipe(minifycss())
    2727    .pipe(gulp.dest('Public/css'));
     28
     29  done();
    2830});
  • dynamictags/trunk/package-lock.json

    r2360854 r2454677  
    5555      "integrity": "sha1-qCJQ3bABXponyoLoLqYDu/pF768="
    5656    },
     57    "anymatch": {
     58      "version": "2.0.0",
     59      "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz",
     60      "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==",
     61      "requires": {
     62        "micromatch": "^3.1.4",
     63        "normalize-path": "^2.1.1"
     64      },
     65      "dependencies": {
     66        "normalize-path": {
     67          "version": "2.1.1",
     68          "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz",
     69          "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=",
     70          "requires": {
     71            "remove-trailing-separator": "^1.0.1"
     72          }
     73        }
     74      }
     75    },
     76    "append-buffer": {
     77      "version": "1.0.2",
     78      "resolved": "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz",
     79      "integrity": "sha1-2CIM9GYIFSXv6lBhTz3mUU36WPE=",
     80      "requires": {
     81        "buffer-equal": "^1.0.0"
     82      }
     83    },
    5784    "aproba": {
    5885      "version": "1.2.0",
     
    108135      "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA="
    109136    },
     137    "arr-filter": {
     138      "version": "1.1.2",
     139      "resolved": "https://registry.npmjs.org/arr-filter/-/arr-filter-1.1.2.tgz",
     140      "integrity": "sha1-Q/3d0JHo7xGqTEXZzcGOLf8XEe4=",
     141      "requires": {
     142        "make-iterator": "^1.0.0"
     143      }
     144    },
    110145    "arr-flatten": {
    111146      "version": "1.1.0",
     
    113148      "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg=="
    114149    },
     150    "arr-map": {
     151      "version": "2.0.2",
     152      "resolved": "https://registry.npmjs.org/arr-map/-/arr-map-2.0.2.tgz",
     153      "integrity": "sha1-Onc0X/wc814qkYJWAfnljy4kysQ=",
     154      "requires": {
     155        "make-iterator": "^1.0.0"
     156      }
     157    },
    115158    "arr-union": {
    116159      "version": "3.1.0",
     
    133176      "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E="
    134177    },
     178    "array-initial": {
     179      "version": "1.1.0",
     180      "resolved": "https://registry.npmjs.org/array-initial/-/array-initial-1.1.0.tgz",
     181      "integrity": "sha1-L6dLJnOTccOUe9enrcc74zSz15U=",
     182      "requires": {
     183        "array-slice": "^1.0.0",
     184        "is-number": "^4.0.0"
     185      },
     186      "dependencies": {
     187        "is-number": {
     188          "version": "4.0.0",
     189          "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz",
     190          "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ=="
     191        }
     192      }
     193    },
     194    "array-last": {
     195      "version": "1.3.0",
     196      "resolved": "https://registry.npmjs.org/array-last/-/array-last-1.3.0.tgz",
     197      "integrity": "sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg==",
     198      "requires": {
     199        "is-number": "^4.0.0"
     200      },
     201      "dependencies": {
     202        "is-number": {
     203          "version": "4.0.0",
     204          "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz",
     205          "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ=="
     206        }
     207      }
     208    },
    135209    "array-slice": {
    136210      "version": "1.1.0",
     
    138212      "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w=="
    139213    },
     214    "array-sort": {
     215      "version": "1.0.0",
     216      "resolved": "https://registry.npmjs.org/array-sort/-/array-sort-1.0.0.tgz",
     217      "integrity": "sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg==",
     218      "requires": {
     219        "default-compare": "^1.0.0",
     220        "get-value": "^2.0.6",
     221        "kind-of": "^5.0.2"
     222      },
     223      "dependencies": {
     224        "kind-of": {
     225          "version": "5.1.0",
     226          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
     227          "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw=="
     228        }
     229      }
     230    },
    140231    "array-uniq": {
    141232      "version": "1.0.3",
     
    166257      "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c="
    167258    },
     259    "async-done": {
     260      "version": "1.3.2",
     261      "resolved": "https://registry.npmjs.org/async-done/-/async-done-1.3.2.tgz",
     262      "integrity": "sha512-uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw==",
     263      "requires": {
     264        "end-of-stream": "^1.1.0",
     265        "once": "^1.3.2",
     266        "process-nextick-args": "^2.0.0",
     267        "stream-exhaust": "^1.0.1"
     268      }
     269    },
     270    "async-each": {
     271      "version": "1.0.3",
     272      "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz",
     273      "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ=="
     274    },
    168275    "async-foreach": {
    169276      "version": "0.1.3",
    170277      "resolved": "https://registry.npmjs.org/async-foreach/-/async-foreach-0.1.3.tgz",
    171278      "integrity": "sha1-NhIfhFwFeBct5Bmpfb6x0W7DRUI="
     279    },
     280    "async-settle": {
     281      "version": "1.0.0",
     282      "resolved": "https://registry.npmjs.org/async-settle/-/async-settle-1.0.0.tgz",
     283      "integrity": "sha1-HQqRS7Aldb7IqPOnTlCA9yssDGs=",
     284      "requires": {
     285        "async-done": "^1.2.2"
     286      }
    172287    },
    173288    "asynckit": {
     
    203318      "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.10.0.tgz",
    204319      "integrity": "sha512-3YDiu347mtVtjpyV3u5kVqQLP242c06zwDOgpeRnybmXlYYsLbtTrUBUm8i8srONt+FWobl5aibnU1030PeeuA=="
     320    },
     321    "bach": {
     322      "version": "1.2.0",
     323      "resolved": "https://registry.npmjs.org/bach/-/bach-1.2.0.tgz",
     324      "integrity": "sha1-Szzpa/JxNPeaG0FKUcFONMO9mIA=",
     325      "requires": {
     326        "arr-filter": "^1.1.1",
     327        "arr-flatten": "^1.0.1",
     328        "arr-map": "^2.0.0",
     329        "array-each": "^1.0.0",
     330        "array-initial": "^1.0.0",
     331        "array-last": "^1.1.1",
     332        "async-done": "^1.2.2",
     333        "async-settle": "^1.0.0",
     334        "now-and-later": "^2.0.0"
     335      }
    205336    },
    206337    "balanced-match": {
     
    271402      "resolved": "https://registry.npmjs.org/beeper/-/beeper-1.1.1.tgz",
    272403      "integrity": "sha1-5tXqjF2tABMEpwsiY4RH9pyy+Ak="
     404    },
     405    "binary-extensions": {
     406      "version": "1.13.1",
     407      "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz",
     408      "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw=="
     409    },
     410    "bindings": {
     411      "version": "1.5.0",
     412      "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz",
     413      "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==",
     414      "optional": true,
     415      "requires": {
     416        "file-uri-to-path": "1.0.0"
     417      }
    273418    },
    274419    "block-stream": {
     
    325470      }
    326471    },
     472    "buffer-equal": {
     473      "version": "1.0.0",
     474      "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.0.tgz",
     475      "integrity": "sha1-WWFrSYME1Var1GaWayLu2j7KX74="
     476    },
     477    "buffer-from": {
     478      "version": "1.1.1",
     479      "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz",
     480      "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A=="
     481    },
    327482    "cache-base": {
    328483      "version": "1.0.1",
     
    341496      }
    342497    },
     498    "call-bind": {
     499      "version": "1.0.2",
     500      "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
     501      "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
     502      "requires": {
     503        "function-bind": "^1.1.1",
     504        "get-intrinsic": "^1.0.2"
     505      }
     506    },
    343507    "camelcase": {
    344508      "version": "2.1.1",
     
    377541      }
    378542    },
     543    "chokidar": {
     544      "version": "2.1.8",
     545      "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz",
     546      "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==",
     547      "requires": {
     548        "anymatch": "^2.0.0",
     549        "async-each": "^1.0.1",
     550        "braces": "^2.3.2",
     551        "fsevents": "^1.2.7",
     552        "glob-parent": "^3.1.0",
     553        "inherits": "^2.0.3",
     554        "is-binary-path": "^1.0.0",
     555        "is-glob": "^4.0.0",
     556        "normalize-path": "^3.0.0",
     557        "path-is-absolute": "^1.0.0",
     558        "readdirp": "^2.2.1",
     559        "upath": "^1.1.1"
     560      }
     561    },
    379562    "class-utils": {
    380563      "version": "0.3.6",
     
    458641      "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4="
    459642    },
     643    "clone-buffer": {
     644      "version": "1.0.0",
     645      "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz",
     646      "integrity": "sha1-4+JbIHrE5wGvch4staFnksrD3Fg="
     647    },
    460648    "clone-stats": {
    461649      "version": "0.0.1",
     
    463651      "integrity": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE="
    464652    },
     653    "cloneable-readable": {
     654      "version": "1.1.3",
     655      "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.3.tgz",
     656      "integrity": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==",
     657      "requires": {
     658        "inherits": "^2.0.1",
     659        "process-nextick-args": "^2.0.0",
     660        "readable-stream": "^2.3.5"
     661      },
     662      "dependencies": {
     663        "isarray": {
     664          "version": "1.0.0",
     665          "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
     666          "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE="
     667        },
     668        "readable-stream": {
     669          "version": "2.3.7",
     670          "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
     671          "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
     672          "requires": {
     673            "core-util-is": "~1.0.0",
     674            "inherits": "~2.0.3",
     675            "isarray": "~1.0.0",
     676            "process-nextick-args": "~2.0.0",
     677            "safe-buffer": "~5.1.1",
     678            "string_decoder": "~1.1.1",
     679            "util-deprecate": "~1.0.1"
     680          }
     681        },
     682        "string_decoder": {
     683          "version": "1.1.1",
     684          "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
     685          "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
     686          "requires": {
     687            "safe-buffer": "~5.1.0"
     688          }
     689        }
     690      }
     691    },
    465692    "code-point-at": {
    466693      "version": "1.1.0",
     
    468695      "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c="
    469696    },
     697    "collection-map": {
     698      "version": "1.0.0",
     699      "resolved": "https://registry.npmjs.org/collection-map/-/collection-map-1.0.0.tgz",
     700      "integrity": "sha1-rqDwb40mx4DCt1SUOFVEsiVa8Yw=",
     701      "requires": {
     702        "arr-map": "^2.0.2",
     703        "for-own": "^1.0.0",
     704        "make-iterator": "^1.0.0"
     705      }
     706    },
    470707    "collection-visit": {
    471708      "version": "1.0.0",
     
    513750      "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
    514751    },
     752    "concat-stream": {
     753      "version": "1.6.2",
     754      "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz",
     755      "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==",
     756      "requires": {
     757        "buffer-from": "^1.0.0",
     758        "inherits": "^2.0.3",
     759        "readable-stream": "^2.2.2",
     760        "typedarray": "^0.0.6"
     761      },
     762      "dependencies": {
     763        "isarray": {
     764          "version": "1.0.0",
     765          "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
     766          "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE="
     767        },
     768        "readable-stream": {
     769          "version": "2.3.7",
     770          "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
     771          "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
     772          "requires": {
     773            "core-util-is": "~1.0.0",
     774            "inherits": "~2.0.3",
     775            "isarray": "~1.0.0",
     776            "process-nextick-args": "~2.0.0",
     777            "safe-buffer": "~5.1.1",
     778            "string_decoder": "~1.1.1",
     779            "util-deprecate": "~1.0.1"
     780          }
     781        },
     782        "string_decoder": {
     783          "version": "1.1.1",
     784          "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
     785          "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
     786          "requires": {
     787            "safe-buffer": "~5.1.0"
     788          }
     789        }
     790      }
     791    },
    515792    "console-control-strings": {
    516793      "version": "1.1.0",
     
    518795      "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4="
    519796    },
     797    "convert-source-map": {
     798      "version": "1.7.0",
     799      "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz",
     800      "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==",
     801      "requires": {
     802        "safe-buffer": "~5.1.1"
     803      }
     804    },
    520805    "copy-descriptor": {
    521806      "version": "0.1.1",
     
    523808      "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40="
    524809    },
     810    "copy-props": {
     811      "version": "2.0.4",
     812      "resolved": "https://registry.npmjs.org/copy-props/-/copy-props-2.0.4.tgz",
     813      "integrity": "sha512-7cjuUME+p+S3HZlbllgsn2CDwS+5eCCX16qBgNC4jgSTf49qR1VKy/Zhl400m0IQXl/bPGEVqncgUUMjrr4s8A==",
     814      "requires": {
     815        "each-props": "^1.3.0",
     816        "is-plain-object": "^2.0.1"
     817      }
     818    },
    525819    "core-util-is": {
    526820      "version": "1.0.2",
     
    556850      }
    557851    },
     852    "d": {
     853      "version": "1.0.1",
     854      "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz",
     855      "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==",
     856      "requires": {
     857        "es5-ext": "^0.10.50",
     858        "type": "^1.0.1"
     859      }
     860    },
    558861    "dashdash": {
    559862      "version": "1.14.1",
     
    587890      "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU="
    588891    },
    589     "defaults": {
    590       "version": "1.0.3",
    591       "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz",
    592       "integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=",
    593       "requires": {
    594         "clone": "^1.0.2"
     892    "default-compare": {
     893      "version": "1.0.0",
     894      "resolved": "https://registry.npmjs.org/default-compare/-/default-compare-1.0.0.tgz",
     895      "integrity": "sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ==",
     896      "requires": {
     897        "kind-of": "^5.0.2"
     898      },
     899      "dependencies": {
     900        "kind-of": {
     901          "version": "5.1.0",
     902          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
     903          "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw=="
     904        }
     905      }
     906    },
     907    "default-resolution": {
     908      "version": "2.0.0",
     909      "resolved": "https://registry.npmjs.org/default-resolution/-/default-resolution-2.0.0.tgz",
     910      "integrity": "sha1-vLgrqnKtebQmp2cy8aga1t8m1oQ="
     911    },
     912    "define-properties": {
     913      "version": "1.1.3",
     914      "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz",
     915      "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==",
     916      "requires": {
     917        "object-keys": "^1.0.12"
    595918      }
    596919    },
     
    642965      "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o="
    643966    },
    644     "deprecated": {
    645       "version": "0.0.1",
    646       "resolved": "https://registry.npmjs.org/deprecated/-/deprecated-0.0.1.tgz",
    647       "integrity": "sha1-+cmvVGSvoeepcUWKi97yqpTVuxk="
    648     },
    649967    "detect-file": {
    650968      "version": "1.0.0",
     
    660978      }
    661979    },
     980    "duplexify": {
     981      "version": "3.7.1",
     982      "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz",
     983      "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==",
     984      "requires": {
     985        "end-of-stream": "^1.0.0",
     986        "inherits": "^2.0.1",
     987        "readable-stream": "^2.0.0",
     988        "stream-shift": "^1.0.0"
     989      },
     990      "dependencies": {
     991        "isarray": {
     992          "version": "1.0.0",
     993          "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
     994          "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE="
     995        },
     996        "readable-stream": {
     997          "version": "2.3.7",
     998          "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
     999          "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
     1000          "requires": {
     1001            "core-util-is": "~1.0.0",
     1002            "inherits": "~2.0.3",
     1003            "isarray": "~1.0.0",
     1004            "process-nextick-args": "~2.0.0",
     1005            "safe-buffer": "~5.1.1",
     1006            "string_decoder": "~1.1.1",
     1007            "util-deprecate": "~1.0.1"
     1008          }
     1009        },
     1010        "string_decoder": {
     1011          "version": "1.1.1",
     1012          "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
     1013          "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
     1014          "requires": {
     1015            "safe-buffer": "~5.1.0"
     1016          }
     1017        }
     1018      }
     1019    },
     1020    "each-props": {
     1021      "version": "1.3.2",
     1022      "resolved": "https://registry.npmjs.org/each-props/-/each-props-1.3.2.tgz",
     1023      "integrity": "sha512-vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA==",
     1024      "requires": {
     1025        "is-plain-object": "^2.0.1",
     1026        "object.defaults": "^1.1.0"
     1027      }
     1028    },
    6621029    "ecc-jsbn": {
    6631030      "version": "0.1.2",
     
    6801047    },
    6811048    "end-of-stream": {
    682       "version": "0.1.5",
    683       "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-0.1.5.tgz",
    684       "integrity": "sha1-jhdyBsPICDfYVjLouTWd/osvbq8=",
    685       "requires": {
    686         "once": "~1.3.0"
     1049      "version": "1.4.4",
     1050      "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
     1051      "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
     1052      "requires": {
     1053        "once": "^1.4.0"
     1054      },
     1055      "dependencies": {
     1056        "once": {
     1057          "version": "1.4.0",
     1058          "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
     1059          "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
     1060          "requires": {
     1061            "wrappy": "1"
     1062          }
     1063        }
    6871064      }
    6881065    },
     
    6931070      "requires": {
    6941071        "is-arrayish": "^0.2.1"
     1072      }
     1073    },
     1074    "es5-ext": {
     1075      "version": "0.10.53",
     1076      "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.53.tgz",
     1077      "integrity": "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==",
     1078      "requires": {
     1079        "es6-iterator": "~2.0.3",
     1080        "es6-symbol": "~3.1.3",
     1081        "next-tick": "~1.0.0"
     1082      }
     1083    },
     1084    "es6-iterator": {
     1085      "version": "2.0.3",
     1086      "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz",
     1087      "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=",
     1088      "requires": {
     1089        "d": "1",
     1090        "es5-ext": "^0.10.35",
     1091        "es6-symbol": "^3.1.1"
     1092      }
     1093    },
     1094    "es6-symbol": {
     1095      "version": "3.1.3",
     1096      "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz",
     1097      "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==",
     1098      "requires": {
     1099        "d": "^1.0.1",
     1100        "ext": "^1.1.2"
     1101      }
     1102    },
     1103    "es6-weak-map": {
     1104      "version": "2.0.3",
     1105      "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz",
     1106      "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==",
     1107      "requires": {
     1108        "d": "1",
     1109        "es5-ext": "^0.10.46",
     1110        "es6-iterator": "^2.0.3",
     1111        "es6-symbol": "^3.1.1"
    6951112      }
    6961113    },
     
    7381155      "requires": {
    7391156        "homedir-polyfill": "^1.0.1"
     1157      }
     1158    },
     1159    "ext": {
     1160      "version": "1.4.0",
     1161      "resolved": "https://registry.npmjs.org/ext/-/ext-1.4.0.tgz",
     1162      "integrity": "sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A==",
     1163      "requires": {
     1164        "type": "^2.0.0"
     1165      },
     1166      "dependencies": {
     1167        "type": {
     1168          "version": "2.1.0",
     1169          "resolved": "https://registry.npmjs.org/type/-/type-2.1.0.tgz",
     1170          "integrity": "sha512-G9absDWvhAWCV2gmF1zKud3OyC61nZDwWvBL2DApaVFogI07CprggiQAOOjvp2NRjYWFzPyu7vwtDrQFq8jeSA=="
     1171        }
    7401172      }
    7411173    },
     
    8491281      "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="
    8501282    },
     1283    "fast-levenshtein": {
     1284      "version": "1.1.4",
     1285      "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.1.4.tgz",
     1286      "integrity": "sha1-5qdUzI8V5YmHqpy9J69m/W9OWvk="
     1287    },
     1288    "file-uri-to-path": {
     1289      "version": "1.0.0",
     1290      "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz",
     1291      "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==",
     1292      "optional": true
     1293    },
    8511294    "fill-range": {
    8521295      "version": "4.0.0",
     
    8701313      }
    8711314    },
    872     "find-index": {
    873       "version": "0.1.1",
    874       "resolved": "https://registry.npmjs.org/find-index/-/find-index-0.1.1.tgz",
    875       "integrity": "sha1-Z101iyyjiS15Whq0cjL4tuLg3eQ="
    876     },
    8771315    "find-up": {
    8781316      "version": "1.1.2",
     
    8851323    },
    8861324    "findup-sync": {
    887       "version": "2.0.0",
    888       "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz",
    889       "integrity": "sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw=",
     1325      "version": "3.0.0",
     1326      "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz",
     1327      "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==",
    8901328      "requires": {
    8911329        "detect-file": "^1.0.0",
    892         "is-glob": "^3.1.0",
     1330        "is-glob": "^4.0.0",
    8931331        "micromatch": "^3.0.4",
    8941332        "resolve-dir": "^1.0.1"
     
    9071345      }
    9081346    },
    909     "first-chunk-stream": {
    910       "version": "1.0.0",
    911       "resolved": "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz",
    912       "integrity": "sha1-Wb+1DNkF9g18OUzT2ayqtOatk04="
    913     },
    9141347    "flagged-respawn": {
    9151348      "version": "1.0.1",
     
    9171350      "integrity": "sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q=="
    9181351    },
     1352    "flush-write-stream": {
     1353      "version": "1.1.1",
     1354      "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz",
     1355      "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==",
     1356      "requires": {
     1357        "inherits": "^2.0.3",
     1358        "readable-stream": "^2.3.6"
     1359      },
     1360      "dependencies": {
     1361        "isarray": {
     1362          "version": "1.0.0",
     1363          "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
     1364          "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE="
     1365        },
     1366        "readable-stream": {
     1367          "version": "2.3.7",
     1368          "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
     1369          "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
     1370          "requires": {
     1371            "core-util-is": "~1.0.0",
     1372            "inherits": "~2.0.3",
     1373            "isarray": "~1.0.0",
     1374            "process-nextick-args": "~2.0.0",
     1375            "safe-buffer": "~5.1.1",
     1376            "string_decoder": "~1.1.1",
     1377            "util-deprecate": "~1.0.1"
     1378          }
     1379        },
     1380        "string_decoder": {
     1381          "version": "1.1.1",
     1382          "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
     1383          "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
     1384          "requires": {
     1385            "safe-buffer": "~5.1.0"
     1386          }
     1387        }
     1388      }
     1389    },
    9191390    "for-in": {
    9201391      "version": "1.0.2",
     
    9531424      }
    9541425    },
     1426    "fs-mkdirp-stream": {
     1427      "version": "1.0.0",
     1428      "resolved": "https://registry.npmjs.org/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz",
     1429      "integrity": "sha1-C3gV/DIBxqaeFNuYzgmMFpNSWes=",
     1430      "requires": {
     1431        "graceful-fs": "^4.1.11",
     1432        "through2": "^2.0.3"
     1433      }
     1434    },
    9551435    "fs.realpath": {
    9561436      "version": "1.0.0",
     
    9581438      "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8="
    9591439    },
     1440    "fsevents": {
     1441      "version": "1.2.13",
     1442      "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz",
     1443      "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==",
     1444      "optional": true,
     1445      "requires": {
     1446        "bindings": "^1.5.0",
     1447        "nan": "^2.12.1"
     1448      }
     1449    },
    9601450    "fstream": {
    9611451      "version": "1.0.12",
     
    9751465        }
    9761466      }
     1467    },
     1468    "function-bind": {
     1469      "version": "1.1.1",
     1470      "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
     1471      "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
    9771472    },
    9781473    "gauge": {
     
    9981493      }
    9991494    },
    1000     "gaze": {
    1001       "version": "0.5.2",
    1002       "resolved": "https://registry.npmjs.org/gaze/-/gaze-0.5.2.tgz",
    1003       "integrity": "sha1-QLcJU30k0dRXZ9takIaJ3+aaxE8=",
    1004       "requires": {
    1005         "globule": "~0.1.0"
    1006       }
    1007     },
    10081495    "get-caller-file": {
    10091496      "version": "2.0.5",
     
    10111498      "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="
    10121499    },
     1500    "get-intrinsic": {
     1501      "version": "1.0.2",
     1502      "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.0.2.tgz",
     1503      "integrity": "sha512-aeX0vrFm21ILl3+JpFFRNe9aUvp6VFZb2/CTbgLb8j75kOhvoNYjt9d8KA/tJG4gSo8nzEDedRl0h7vDmBYRVg==",
     1504      "requires": {
     1505        "function-bind": "^1.1.1",
     1506        "has": "^1.0.3",
     1507        "has-symbols": "^1.0.1"
     1508      }
     1509    },
    10131510    "get-stdin": {
    10141511      "version": "4.0.1",
     
    10301527    },
    10311528    "glob": {
    1032       "version": "4.5.3",
    1033       "resolved": "https://registry.npmjs.org/glob/-/glob-4.5.3.tgz",
    1034       "integrity": "sha1-xstz0yJsHv7wTePFbQEvAzd+4V8=",
    1035       "requires": {
     1529      "version": "7.1.6",
     1530      "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
     1531      "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
     1532      "requires": {
     1533        "fs.realpath": "^1.0.0",
    10361534        "inflight": "^1.0.4",
    10371535        "inherits": "2",
    1038         "minimatch": "^2.0.1",
    1039         "once": "^1.3.0"
     1536        "minimatch": "^3.0.4",
     1537        "once": "^1.3.0",
     1538        "path-is-absolute": "^1.0.0"
     1539      }
     1540    },
     1541    "glob-parent": {
     1542      "version": "3.1.0",
     1543      "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz",
     1544      "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=",
     1545      "requires": {
     1546        "is-glob": "^3.1.0",
     1547        "path-dirname": "^1.0.0"
     1548      },
     1549      "dependencies": {
     1550        "is-glob": {
     1551          "version": "3.1.0",
     1552          "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz",
     1553          "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=",
     1554          "requires": {
     1555            "is-extglob": "^2.1.0"
     1556          }
     1557        }
    10401558      }
    10411559    },
    10421560    "glob-stream": {
    1043       "version": "3.1.18",
    1044       "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-3.1.18.tgz",
    1045       "integrity": "sha1-kXCl8St5Awb9/lmPMT+PeVT9FDs=",
    1046       "requires": {
    1047         "glob": "^4.3.1",
    1048         "glob2base": "^0.0.12",
    1049         "minimatch": "^2.0.1",
    1050         "ordered-read-streams": "^0.1.0",
    1051         "through2": "^0.6.1",
    1052         "unique-stream": "^1.0.0"
    1053       },
    1054       "dependencies": {
     1561      "version": "6.1.0",
     1562      "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-6.1.0.tgz",
     1563      "integrity": "sha1-cEXJlBOz65SIjYOrRtC0BMx73eQ=",
     1564      "requires": {
     1565        "extend": "^3.0.0",
     1566        "glob": "^7.1.1",
     1567        "glob-parent": "^3.1.0",
     1568        "is-negated-glob": "^1.0.0",
     1569        "ordered-read-streams": "^1.0.0",
     1570        "pumpify": "^1.3.5",
     1571        "readable-stream": "^2.1.5",
     1572        "remove-trailing-separator": "^1.0.1",
     1573        "to-absolute-glob": "^2.0.0",
     1574        "unique-stream": "^2.0.2"
     1575      },
     1576      "dependencies": {
     1577        "isarray": {
     1578          "version": "1.0.0",
     1579          "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
     1580          "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE="
     1581        },
    10551582        "readable-stream": {
    1056           "version": "1.0.34",
    1057           "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz",
    1058           "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=",
     1583          "version": "2.3.7",
     1584          "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
     1585          "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
    10591586          "requires": {
    10601587            "core-util-is": "~1.0.0",
    1061             "inherits": "~2.0.1",
    1062             "isarray": "0.0.1",
    1063             "string_decoder": "~0.10.x"
    1064           }
    1065         },
    1066         "through2": {
    1067           "version": "0.6.5",
    1068           "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz",
    1069           "integrity": "sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg=",
    1070           "requires": {
    1071             "readable-stream": ">=1.0.33-1 <1.1.0-0",
    1072             "xtend": ">=4.0.0 <4.1.0-0"
     1588            "inherits": "~2.0.3",
     1589            "isarray": "~1.0.0",
     1590            "process-nextick-args": "~2.0.0",
     1591            "safe-buffer": "~5.1.1",
     1592            "string_decoder": "~1.1.1",
     1593            "util-deprecate": "~1.0.1"
     1594          }
     1595        },
     1596        "string_decoder": {
     1597          "version": "1.1.1",
     1598          "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
     1599          "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
     1600          "requires": {
     1601            "safe-buffer": "~5.1.0"
    10731602          }
    10741603        }
     
    10761605    },
    10771606    "glob-watcher": {
    1078       "version": "0.0.6",
    1079       "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-0.0.6.tgz",
    1080       "integrity": "sha1-uVtKjfdLOcgymLDAXJeLTZo7cQs=",
    1081       "requires": {
    1082         "gaze": "^0.5.1"
    1083       }
    1084     },
    1085     "glob2base": {
    1086       "version": "0.0.12",
    1087       "resolved": "https://registry.npmjs.org/glob2base/-/glob2base-0.0.12.tgz",
    1088       "integrity": "sha1-nUGbPijxLoOjYhZKJ3BVkiycDVY=",
    1089       "requires": {
    1090         "find-index": "^0.1.1"
     1607      "version": "5.0.5",
     1608      "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-5.0.5.tgz",
     1609      "integrity": "sha512-zOZgGGEHPklZNjZQaZ9f41i7F2YwE+tS5ZHrDhbBCk3stwahn5vQxnFmBJZHoYdusR6R1bLSXeGUy/BhctwKzw==",
     1610      "requires": {
     1611        "anymatch": "^2.0.0",
     1612        "async-done": "^1.2.0",
     1613        "chokidar": "^2.0.0",
     1614        "is-negated-glob": "^1.0.0",
     1615        "just-debounce": "^1.0.0",
     1616        "normalize-path": "^3.0.0",
     1617        "object.defaults": "^1.1.0"
    10911618      }
    10921619    },
     
    11131640      }
    11141641    },
    1115     "globule": {
    1116       "version": "0.1.0",
    1117       "resolved": "https://registry.npmjs.org/globule/-/globule-0.1.0.tgz",
    1118       "integrity": "sha1-2cjt3h2nnRJaFRt5UzuXhnY0auU=",
    1119       "requires": {
    1120         "glob": "~3.1.21",
    1121         "lodash": "~1.0.1",
    1122         "minimatch": "~0.2.11"
    1123       },
    1124       "dependencies": {
    1125         "glob": {
    1126           "version": "3.1.21",
    1127           "resolved": "https://registry.npmjs.org/glob/-/glob-3.1.21.tgz",
    1128           "integrity": "sha1-0p4KBV3qUTj00H7UDomC6DwgZs0=",
    1129           "requires": {
    1130             "graceful-fs": "~1.2.0",
    1131             "inherits": "1",
    1132             "minimatch": "~0.2.11"
    1133           }
    1134         },
    1135         "graceful-fs": {
    1136           "version": "1.2.3",
    1137           "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.3.tgz",
    1138           "integrity": "sha1-FaSAaldUfLLS2/J/QuiajDRRs2Q="
    1139         },
    1140         "inherits": {
    1141           "version": "1.0.2",
    1142           "resolved": "https://registry.npmjs.org/inherits/-/inherits-1.0.2.tgz",
    1143           "integrity": "sha1-ykMJ2t7mtUzAuNJH6NfHoJdb3Js="
    1144         },
    1145         "minimatch": {
    1146           "version": "0.2.14",
    1147           "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz",
    1148           "integrity": "sha1-x054BXT2PG+aCQ6Q775u9TpqdWo=",
    1149           "requires": {
    1150             "lru-cache": "2",
    1151             "sigmund": "~1.0.0"
    1152           }
    1153         }
    1154       }
    1155     },
    11561642    "glogg": {
    11571643      "version": "1.0.2",
     
    11631649    },
    11641650    "graceful-fs": {
    1165       "version": "3.0.12",
    1166       "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.12.tgz",
    1167       "integrity": "sha512-J55gaCS4iTTJfTXIxSVw3EMQckcqkpdRv3IR7gu6sq0+tbC363Zx6KH/SEwXASK9JRbhyZmVjJEVJIOxYsB3Qg==",
    1168       "requires": {
    1169         "natives": "^1.1.3"
    1170       }
     1651      "version": "4.2.4",
     1652      "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
     1653      "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw=="
    11711654    },
    11721655    "gulp": {
    1173       "version": "3.9.1",
    1174       "resolved": "https://registry.npmjs.org/gulp/-/gulp-3.9.1.tgz",
    1175       "integrity": "sha1-VxzkWSjdQK9lFPxAEYZgFsE4RbQ=",
    1176       "requires": {
    1177         "archy": "^1.0.0",
    1178         "chalk": "^1.0.0",
    1179         "deprecated": "^0.0.1",
    1180         "gulp-util": "^3.0.0",
    1181         "interpret": "^1.0.0",
    1182         "liftoff": "^2.1.0",
    1183         "minimist": "^1.1.0",
    1184         "orchestrator": "^0.3.0",
    1185         "pretty-hrtime": "^1.0.0",
    1186         "semver": "^4.1.0",
    1187         "tildify": "^1.0.0",
    1188         "v8flags": "^2.0.2",
    1189         "vinyl-fs": "^0.3.0"
     1656      "version": "4.0.2",
     1657      "resolved": "https://registry.npmjs.org/gulp/-/gulp-4.0.2.tgz",
     1658      "integrity": "sha512-dvEs27SCZt2ibF29xYgmnwwCYZxdxhQ/+LFWlbAW8y7jt68L/65402Lz3+CKy0Ov4rOs+NERmDq7YlZaDqUIfA==",
     1659      "requires": {
     1660        "glob-watcher": "^5.0.3",
     1661        "gulp-cli": "^2.2.0",
     1662        "undertaker": "^1.2.1",
     1663        "vinyl-fs": "^3.0.0"
     1664      },
     1665      "dependencies": {
     1666        "camelcase": {
     1667          "version": "3.0.0",
     1668          "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz",
     1669          "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo="
     1670        },
     1671        "cliui": {
     1672          "version": "3.2.0",
     1673          "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz",
     1674          "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=",
     1675          "requires": {
     1676            "string-width": "^1.0.1",
     1677            "strip-ansi": "^3.0.1",
     1678            "wrap-ansi": "^2.0.0"
     1679          }
     1680        },
     1681        "get-caller-file": {
     1682          "version": "1.0.3",
     1683          "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz",
     1684          "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w=="
     1685        },
     1686        "gulp-cli": {
     1687          "version": "2.3.0",
     1688          "resolved": "https://registry.npmjs.org/gulp-cli/-/gulp-cli-2.3.0.tgz",
     1689          "integrity": "sha512-zzGBl5fHo0EKSXsHzjspp3y5CONegCm8ErO5Qh0UzFzk2y4tMvzLWhoDokADbarfZRL2pGpRp7yt6gfJX4ph7A==",
     1690          "requires": {
     1691            "ansi-colors": "^1.0.1",
     1692            "archy": "^1.0.0",
     1693            "array-sort": "^1.0.0",
     1694            "color-support": "^1.1.3",
     1695            "concat-stream": "^1.6.0",
     1696            "copy-props": "^2.0.1",
     1697            "fancy-log": "^1.3.2",
     1698            "gulplog": "^1.0.0",
     1699            "interpret": "^1.4.0",
     1700            "isobject": "^3.0.1",
     1701            "liftoff": "^3.1.0",
     1702            "matchdep": "^2.0.0",
     1703            "mute-stdout": "^1.0.0",
     1704            "pretty-hrtime": "^1.0.0",
     1705            "replace-homedir": "^1.0.0",
     1706            "semver-greatest-satisfied-range": "^1.1.0",
     1707            "v8flags": "^3.2.0",
     1708            "yargs": "^7.1.0"
     1709          }
     1710        },
     1711        "require-main-filename": {
     1712          "version": "1.0.1",
     1713          "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz",
     1714          "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE="
     1715        },
     1716        "which-module": {
     1717          "version": "1.0.0",
     1718          "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz",
     1719          "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8="
     1720        },
     1721        "wrap-ansi": {
     1722          "version": "2.1.0",
     1723          "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz",
     1724          "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=",
     1725          "requires": {
     1726            "string-width": "^1.0.1",
     1727            "strip-ansi": "^3.0.1"
     1728          }
     1729        },
     1730        "y18n": {
     1731          "version": "3.2.2",
     1732          "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz",
     1733          "integrity": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ=="
     1734        },
     1735        "yargs": {
     1736          "version": "7.1.1",
     1737          "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.1.tgz",
     1738          "integrity": "sha512-huO4Fr1f9PmiJJdll5kwoS2e4GqzGSsMT3PPMpOwoVkOK8ckqAewMTZyA6LXVQWflleb/Z8oPBEvNsMft0XE+g==",
     1739          "requires": {
     1740            "camelcase": "^3.0.0",
     1741            "cliui": "^3.2.0",
     1742            "decamelize": "^1.1.1",
     1743            "get-caller-file": "^1.0.1",
     1744            "os-locale": "^1.4.0",
     1745            "read-pkg-up": "^1.0.1",
     1746            "require-directory": "^2.1.1",
     1747            "require-main-filename": "^1.0.1",
     1748            "set-blocking": "^2.0.0",
     1749            "string-width": "^1.0.2",
     1750            "which-module": "^1.0.0",
     1751            "y18n": "^3.2.1",
     1752            "yargs-parser": "5.0.0-security.0"
     1753          }
     1754        },
     1755        "yargs-parser": {
     1756          "version": "5.0.0-security.0",
     1757          "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.0-security.0.tgz",
     1758          "integrity": "sha512-T69y4Ps64LNesYxeYGYPvfoMTt/7y1XtfpIslUeK4um+9Hu7hlGoRtaDLvdXb7+/tfq4opVa2HRY5xGip022rQ==",
     1759          "requires": {
     1760            "camelcase": "^3.0.0",
     1761            "object.assign": "^4.1.0"
     1762          }
     1763        }
    11901764      }
    11911765    },
     
    13651939      }
    13661940    },
     1941    "has": {
     1942      "version": "1.0.3",
     1943      "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
     1944      "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
     1945      "requires": {
     1946        "function-bind": "^1.1.1"
     1947      }
     1948    },
    13671949    "has-ansi": {
    13681950      "version": "2.0.0",
     
    13861968      }
    13871969    },
     1970    "has-symbols": {
     1971      "version": "1.0.1",
     1972      "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
     1973      "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg=="
     1974    },
    13881975    "has-unicode": {
    13891976      "version": "2.0.1",
     
    14712058    },
    14722059    "ini": {
    1473       "version": "1.3.5",
    1474       "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz",
    1475       "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw=="
     2060      "version": "1.3.8",
     2061      "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
     2062      "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="
    14762063    },
    14772064    "interpret": {
     
    14802067      "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA=="
    14812068    },
     2069    "invert-kv": {
     2070      "version": "1.0.0",
     2071      "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz",
     2072      "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY="
     2073    },
    14822074    "is-absolute": {
    14832075      "version": "1.0.0",
     
    15122104      "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0="
    15132105    },
     2106    "is-binary-path": {
     2107      "version": "1.0.1",
     2108      "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz",
     2109      "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=",
     2110      "requires": {
     2111        "binary-extensions": "^1.0.0"
     2112      }
     2113    },
    15142114    "is-buffer": {
    15152115      "version": "1.1.6",
     
    15762176    },
    15772177    "is-glob": {
    1578       "version": "3.1.0",
    1579       "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz",
    1580       "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=",
    1581       "requires": {
    1582         "is-extglob": "^2.1.0"
    1583       }
     2178      "version": "4.0.1",
     2179      "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz",
     2180      "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==",
     2181      "requires": {
     2182        "is-extglob": "^2.1.1"
     2183      }
     2184    },
     2185    "is-negated-glob": {
     2186      "version": "1.0.0",
     2187      "resolved": "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz",
     2188      "integrity": "sha1-aRC8pdqMleeEtXUbl2z1oQ/uNtI="
    15842189    },
    15852190    "is-number": {
     
    16352240      "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI="
    16362241    },
     2242    "is-valid-glob": {
     2243      "version": "1.0.0",
     2244      "resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz",
     2245      "integrity": "sha1-Kb8+/3Ab4tTTFdusw5vDn+j2Aao="
     2246    },
    16372247    "is-windows": {
    16382248      "version": "1.0.2",
     
    16802290      "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
    16812291    },
     2292    "json-stable-stringify-without-jsonify": {
     2293      "version": "1.0.1",
     2294      "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
     2295      "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE="
     2296    },
    16822297    "json-stringify-safe": {
    16832298      "version": "5.0.1",
     
    16962311      }
    16972312    },
     2313    "just-debounce": {
     2314      "version": "1.0.0",
     2315      "resolved": "https://registry.npmjs.org/just-debounce/-/just-debounce-1.0.0.tgz",
     2316      "integrity": "sha1-h/zPrv/AtozRnVX2cilD+SnqNeo="
     2317    },
    16982318    "kind-of": {
    16992319      "version": "6.0.3",
     
    17012321      "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="
    17022322    },
     2323    "last-run": {
     2324      "version": "1.1.1",
     2325      "resolved": "https://registry.npmjs.org/last-run/-/last-run-1.1.1.tgz",
     2326      "integrity": "sha1-RblpQsF7HHnHchmCWbqUO+v4yls=",
     2327      "requires": {
     2328        "default-resolution": "^2.0.0",
     2329        "es6-weak-map": "^2.0.1"
     2330      }
     2331    },
     2332    "lazystream": {
     2333      "version": "1.0.0",
     2334      "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.0.tgz",
     2335      "integrity": "sha1-9plf4PggOS9hOWvolGJAe7dxaOQ=",
     2336      "requires": {
     2337        "readable-stream": "^2.0.5"
     2338      },
     2339      "dependencies": {
     2340        "isarray": {
     2341          "version": "1.0.0",
     2342          "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
     2343          "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE="
     2344        },
     2345        "readable-stream": {
     2346          "version": "2.3.7",
     2347          "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
     2348          "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
     2349          "requires": {
     2350            "core-util-is": "~1.0.0",
     2351            "inherits": "~2.0.3",
     2352            "isarray": "~1.0.0",
     2353            "process-nextick-args": "~2.0.0",
     2354            "safe-buffer": "~5.1.1",
     2355            "string_decoder": "~1.1.1",
     2356            "util-deprecate": "~1.0.1"
     2357          }
     2358        },
     2359        "string_decoder": {
     2360          "version": "1.1.1",
     2361          "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
     2362          "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
     2363          "requires": {
     2364            "safe-buffer": "~5.1.0"
     2365          }
     2366        }
     2367      }
     2368    },
     2369    "lcid": {
     2370      "version": "1.0.0",
     2371      "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz",
     2372      "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=",
     2373      "requires": {
     2374        "invert-kv": "^1.0.0"
     2375      }
     2376    },
     2377    "lead": {
     2378      "version": "1.0.0",
     2379      "resolved": "https://registry.npmjs.org/lead/-/lead-1.0.0.tgz",
     2380      "integrity": "sha1-bxT5mje+Op3XhPVJVpDlkDRm7kI=",
     2381      "requires": {
     2382        "flush-write-stream": "^1.0.2"
     2383      }
     2384    },
    17032385    "liftoff": {
    1704       "version": "2.5.0",
    1705       "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-2.5.0.tgz",
    1706       "integrity": "sha1-IAkpG7Mc6oYbvxCnwVooyvdcMew=",
     2386      "version": "3.1.0",
     2387      "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-3.1.0.tgz",
     2388      "integrity": "sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog==",
    17072389      "requires": {
    17082390        "extend": "^3.0.0",
    1709         "findup-sync": "^2.0.0",
     2391        "findup-sync": "^3.0.0",
    17102392        "fined": "^1.0.1",
    17112393        "flagged-respawn": "^1.0.0",
     
    17582440        }
    17592441      }
    1760     },
    1761     "lodash": {
    1762       "version": "1.0.2",
    1763       "resolved": "https://registry.npmjs.org/lodash/-/lodash-1.0.2.tgz",
    1764       "integrity": "sha1-j1dWDIO1n8JwvT1WG2kAQ0MOJVE="
    17652442    },
    17662443    "lodash._basecopy": {
     
    18762553      }
    18772554    },
    1878     "lru-cache": {
    1879       "version": "2.7.3",
    1880       "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz",
    1881       "integrity": "sha1-bUUk6LlV+V1PW1iFHOId1y+06VI="
    1882     },
    18832555    "make-iterator": {
    18842556      "version": "1.0.1",
     
    19052577      "requires": {
    19062578        "object-visit": "^1.0.0"
     2579      }
     2580    },
     2581    "matchdep": {
     2582      "version": "2.0.0",
     2583      "resolved": "https://registry.npmjs.org/matchdep/-/matchdep-2.0.0.tgz",
     2584      "integrity": "sha1-xvNINKDY28OzfCfui7yyfHd1WC4=",
     2585      "requires": {
     2586        "findup-sync": "^2.0.0",
     2587        "micromatch": "^3.0.4",
     2588        "resolve": "^1.4.0",
     2589        "stack-trace": "0.0.10"
     2590      },
     2591      "dependencies": {
     2592        "findup-sync": {
     2593          "version": "2.0.0",
     2594          "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz",
     2595          "integrity": "sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw=",
     2596          "requires": {
     2597            "detect-file": "^1.0.0",
     2598            "is-glob": "^3.1.0",
     2599            "micromatch": "^3.0.4",
     2600            "resolve-dir": "^1.0.1"
     2601          }
     2602        },
     2603        "is-glob": {
     2604          "version": "3.1.0",
     2605          "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz",
     2606          "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=",
     2607          "requires": {
     2608            "is-extglob": "^2.1.0"
     2609          }
     2610        }
    19072611      }
    19082612    },
     
    19652669    },
    19662670    "minimatch": {
    1967       "version": "2.0.10",
    1968       "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz",
    1969       "integrity": "sha1-jQh8OcazjAAbl/ynzm0OHoCvusc=",
    1970       "requires": {
    1971         "brace-expansion": "^1.0.0"
     2671      "version": "3.0.4",
     2672      "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
     2673      "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
     2674      "requires": {
     2675        "brace-expansion": "^1.1.7"
    19722676      }
    19732677    },
     
    20162720        "duplexer2": "0.0.2"
    20172721      }
     2722    },
     2723    "mute-stdout": {
     2724      "version": "1.0.1",
     2725      "resolved": "https://registry.npmjs.org/mute-stdout/-/mute-stdout-1.0.1.tgz",
     2726      "integrity": "sha512-kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg=="
    20182727    },
    20192728    "nan": {
     
    20402749      }
    20412750    },
    2042     "natives": {
    2043       "version": "1.1.6",
    2044       "resolved": "https://registry.npmjs.org/natives/-/natives-1.1.6.tgz",
    2045       "integrity": "sha512-6+TDFewD4yxY14ptjKaS63GVdtKiES1pTPyxn9Jb0rBqPMZ7VcCiooEhPNsr+mqHtMGxa/5c/HhcC4uPEUw/nA=="
     2751    "next-tick": {
     2752      "version": "1.0.0",
     2753      "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz",
     2754      "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw="
    20462755    },
    20472756    "node-gyp": {
     
    21862895      }
    21872896    },
     2897    "normalize-path": {
     2898      "version": "3.0.0",
     2899      "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
     2900      "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="
     2901    },
    21882902    "normalize-range": {
    21892903      "version": "0.1.2",
     
    21912905      "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI="
    21922906    },
     2907    "now-and-later": {
     2908      "version": "2.0.1",
     2909      "resolved": "https://registry.npmjs.org/now-and-later/-/now-and-later-2.0.1.tgz",
     2910      "integrity": "sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ==",
     2911      "requires": {
     2912        "once": "^1.3.2"
     2913      }
     2914    },
    21932915    "npmlog": {
    21942916      "version": "4.1.2",
     
    22502972      }
    22512973    },
     2974    "object-keys": {
     2975      "version": "1.1.1",
     2976      "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
     2977      "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA=="
     2978    },
    22522979    "object-visit": {
    22532980      "version": "1.0.1",
     
    22582985      }
    22592986    },
     2987    "object.assign": {
     2988      "version": "4.1.2",
     2989      "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz",
     2990      "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==",
     2991      "requires": {
     2992        "call-bind": "^1.0.0",
     2993        "define-properties": "^1.1.3",
     2994        "has-symbols": "^1.0.1",
     2995        "object-keys": "^1.1.1"
     2996      }
     2997    },
    22602998    "object.defaults": {
    22612999      "version": "1.1.0",
     
    22863024      }
    22873025    },
     3026    "object.reduce": {
     3027      "version": "1.0.1",
     3028      "resolved": "https://registry.npmjs.org/object.reduce/-/object.reduce-1.0.1.tgz",
     3029      "integrity": "sha1-b+NI8qx/oPlcpiEiZZkJaCW7A60=",
     3030      "requires": {
     3031        "for-own": "^1.0.0",
     3032        "make-iterator": "^1.0.0"
     3033      }
     3034    },
    22883035    "once": {
    22893036      "version": "1.3.3",
     
    22943041      }
    22953042    },
    2296     "orchestrator": {
    2297       "version": "0.3.8",
    2298       "resolved": "https://registry.npmjs.org/orchestrator/-/orchestrator-0.3.8.tgz",
    2299       "integrity": "sha1-FOfp4nZPcxX7rBhOUGx6pt+UrX4=",
    2300       "requires": {
    2301         "end-of-stream": "~0.1.5",
    2302         "sequencify": "~0.0.7",
    2303         "stream-consume": "~0.1.0"
    2304       }
    2305     },
    23063043    "ordered-read-streams": {
    2307       "version": "0.1.0",
    2308       "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-0.1.0.tgz",
    2309       "integrity": "sha1-/VZamvjrRHO6abbtijQ1LLVS8SY="
     3044      "version": "1.0.1",
     3045      "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz",
     3046      "integrity": "sha1-d8DLN8QVJdZBZtmQ/61+xqDhNj4=",
     3047      "requires": {
     3048        "readable-stream": "^2.0.1"
     3049      },
     3050      "dependencies": {
     3051        "isarray": {
     3052          "version": "1.0.0",
     3053          "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
     3054          "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE="
     3055        },
     3056        "readable-stream": {
     3057          "version": "2.3.7",
     3058          "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
     3059          "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
     3060          "requires": {
     3061            "core-util-is": "~1.0.0",
     3062            "inherits": "~2.0.3",
     3063            "isarray": "~1.0.0",
     3064            "process-nextick-args": "~2.0.0",
     3065            "safe-buffer": "~5.1.1",
     3066            "string_decoder": "~1.1.1",
     3067            "util-deprecate": "~1.0.1"
     3068          }
     3069        },
     3070        "string_decoder": {
     3071          "version": "1.1.1",
     3072          "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
     3073          "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
     3074          "requires": {
     3075            "safe-buffer": "~5.1.0"
     3076          }
     3077        }
     3078      }
    23103079    },
    23113080    "os-homedir": {
     
    23143083      "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M="
    23153084    },
     3085    "os-locale": {
     3086      "version": "1.4.0",
     3087      "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz",
     3088      "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=",
     3089      "requires": {
     3090        "lcid": "^1.0.0"
     3091      }
     3092    },
    23163093    "os-tmpdir": {
    23173094      "version": "1.0.2",
     
    23823159      "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ="
    23833160    },
     3161    "path-dirname": {
     3162      "version": "1.0.2",
     3163      "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz",
     3164      "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA="
     3165    },
    23843166    "path-exists": {
    23853167      "version": "2.1.0",
     
    25373319      "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ=="
    25383320    },
     3321    "pump": {
     3322      "version": "2.0.1",
     3323      "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz",
     3324      "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==",
     3325      "requires": {
     3326        "end-of-stream": "^1.1.0",
     3327        "once": "^1.3.1"
     3328      }
     3329    },
     3330    "pumpify": {
     3331      "version": "1.5.1",
     3332      "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz",
     3333      "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==",
     3334      "requires": {
     3335        "duplexify": "^3.6.0",
     3336        "inherits": "^2.0.3",
     3337        "pump": "^2.0.0"
     3338      }
     3339    },
    25393340    "punycode": {
    25403341      "version": "2.1.1",
     
    25773378      }
    25783379    },
     3380    "readdirp": {
     3381      "version": "2.2.1",
     3382      "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz",
     3383      "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==",
     3384      "requires": {
     3385        "graceful-fs": "^4.1.11",
     3386        "micromatch": "^3.1.10",
     3387        "readable-stream": "^2.0.2"
     3388      },
     3389      "dependencies": {
     3390        "isarray": {
     3391          "version": "1.0.0",
     3392          "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
     3393          "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE="
     3394        },
     3395        "readable-stream": {
     3396          "version": "2.3.7",
     3397          "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
     3398          "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
     3399          "requires": {
     3400            "core-util-is": "~1.0.0",
     3401            "inherits": "~2.0.3",
     3402            "isarray": "~1.0.0",
     3403            "process-nextick-args": "~2.0.0",
     3404            "safe-buffer": "~5.1.1",
     3405            "string_decoder": "~1.1.1",
     3406            "util-deprecate": "~1.0.1"
     3407          }
     3408        },
     3409        "string_decoder": {
     3410          "version": "1.1.1",
     3411          "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
     3412          "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
     3413          "requires": {
     3414            "safe-buffer": "~5.1.0"
     3415          }
     3416        }
     3417      }
     3418    },
    25793419    "rechoir": {
    25803420      "version": "0.6.2",
     
    26033443      }
    26043444    },
     3445    "remove-bom-buffer": {
     3446      "version": "3.0.0",
     3447      "resolved": "https://registry.npmjs.org/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz",
     3448      "integrity": "sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==",
     3449      "requires": {
     3450        "is-buffer": "^1.1.5",
     3451        "is-utf8": "^0.2.1"
     3452      }
     3453    },
     3454    "remove-bom-stream": {
     3455      "version": "1.2.0",
     3456      "resolved": "https://registry.npmjs.org/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz",
     3457      "integrity": "sha1-BfGlk/FuQuH7kOv1nejlaVJflSM=",
     3458      "requires": {
     3459        "remove-bom-buffer": "^3.0.0",
     3460        "safe-buffer": "^5.1.0",
     3461        "through2": "^2.0.3"
     3462      }
     3463    },
     3464    "remove-trailing-separator": {
     3465      "version": "1.1.0",
     3466      "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz",
     3467      "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8="
     3468    },
    26053469    "repeat-element": {
    26063470      "version": "1.1.3",
     
    26253489      "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz",
    26263490      "integrity": "sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ="
     3491    },
     3492    "replace-homedir": {
     3493      "version": "1.0.0",
     3494      "resolved": "https://registry.npmjs.org/replace-homedir/-/replace-homedir-1.0.0.tgz",
     3495      "integrity": "sha1-6H9tUTuSjd6AgmDBK+f+xv9ueYw=",
     3496      "requires": {
     3497        "homedir-polyfill": "^1.0.1",
     3498        "is-absolute": "^1.0.0",
     3499        "remove-trailing-separator": "^1.1.0"
     3500      }
    26273501    },
    26283502    "request": {
     
    26803554      }
    26813555    },
     3556    "resolve-options": {
     3557      "version": "1.1.0",
     3558      "resolved": "https://registry.npmjs.org/resolve-options/-/resolve-options-1.1.0.tgz",
     3559      "integrity": "sha1-MrueOcBtZzONyTeMDW1gdFZq0TE=",
     3560      "requires": {
     3561        "value-or-function": "^3.0.0"
     3562      }
     3563    },
    26823564    "resolve-url": {
    26833565      "version": "0.2.1",
     
    28023684      "integrity": "sha1-MAvG4OhjdPe6YQaLWx7NV/xlMto="
    28033685    },
    2804     "sequencify": {
    2805       "version": "0.0.7",
    2806       "resolved": "https://registry.npmjs.org/sequencify/-/sequencify-0.0.7.tgz",
    2807       "integrity": "sha1-kM/xnQLgcCf9dn9erT57ldHnOAw="
     3686    "semver-greatest-satisfied-range": {
     3687      "version": "1.1.0",
     3688      "resolved": "https://registry.npmjs.org/semver-greatest-satisfied-range/-/semver-greatest-satisfied-range-1.1.0.tgz",
     3689      "integrity": "sha1-E+jCZYq5aRywzXEJMkAoDTb3els=",
     3690      "requires": {
     3691        "sver-compat": "^1.5.0"
     3692      }
    28083693    },
    28093694    "set-blocking": {
     
    28323717        }
    28333718      }
    2834     },
    2835     "sigmund": {
    2836       "version": "1.0.1",
    2837       "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz",
    2838       "integrity": "sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA="
    28393719    },
    28403720    "signal-exit": {
     
    30193899      }
    30203900    },
     3901    "stack-trace": {
     3902      "version": "0.0.10",
     3903      "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz",
     3904      "integrity": "sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA="
     3905    },
    30213906    "static-extend": {
    30223907      "version": "0.1.2",
     
    30753960      }
    30763961    },
    3077     "stream-consume": {
    3078       "version": "0.1.1",
    3079       "resolved": "https://registry.npmjs.org/stream-consume/-/stream-consume-0.1.1.tgz",
    3080       "integrity": "sha512-tNa3hzgkjEP7XbCkbRXe1jpg+ievoa0O4SCFlMOYEscGSS4JJsckGL8swUyAa/ApGU3Ae4t6Honor4HhL+tRyg=="
     3962    "stream-exhaust": {
     3963      "version": "1.0.2",
     3964      "resolved": "https://registry.npmjs.org/stream-exhaust/-/stream-exhaust-1.0.2.tgz",
     3965      "integrity": "sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw=="
     3966    },
     3967    "stream-shift": {
     3968      "version": "1.0.1",
     3969      "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz",
     3970      "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ=="
    30813971    },
    30823972    "string-width": {
     
    31033993      }
    31043994    },
    3105     "strip-bom": {
    3106       "version": "1.0.0",
    3107       "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-1.0.0.tgz",
    3108       "integrity": "sha1-hbiGLzhEtabV7IRnqTWYFzo295Q=",
    3109       "requires": {
    3110         "first-chunk-stream": "^1.0.0",
    3111         "is-utf8": "^0.2.0"
    3112       }
    3113     },
    31143995    "strip-indent": {
    31153996      "version": "1.0.1",
     
    31244005      "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
    31254006      "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
     4007    },
     4008    "sver-compat": {
     4009      "version": "1.5.0",
     4010      "resolved": "https://registry.npmjs.org/sver-compat/-/sver-compat-1.5.0.tgz",
     4011      "integrity": "sha1-PPh9/rTQe0o/FIJ7wYaz/QxkXNg=",
     4012      "requires": {
     4013        "es6-iterator": "^2.0.1",
     4014        "es6-symbol": "^3.1.1"
     4015      }
    31264016    },
    31274017    "tar": {
     
    31734063      }
    31744064    },
    3175     "tildify": {
    3176       "version": "1.2.0",
    3177       "resolved": "https://registry.npmjs.org/tildify/-/tildify-1.2.0.tgz",
    3178       "integrity": "sha1-3OwD9V3Km3qj5bBPIYF+tW5jWIo=",
    3179       "requires": {
    3180         "os-homedir": "^1.0.0"
     4065    "through2-filter": {
     4066      "version": "3.0.0",
     4067      "resolved": "https://registry.npmjs.org/through2-filter/-/through2-filter-3.0.0.tgz",
     4068      "integrity": "sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA==",
     4069      "requires": {
     4070        "through2": "~2.0.0",
     4071        "xtend": "~4.0.0"
    31814072      }
    31824073    },
     
    31864077      "integrity": "sha1-dkpaEa9QVhkhsTPztE5hhofg9cM="
    31874078    },
     4079    "to-absolute-glob": {
     4080      "version": "2.0.2",
     4081      "resolved": "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz",
     4082      "integrity": "sha1-GGX0PZ50sIItufFFt4z/fQ98hJs=",
     4083      "requires": {
     4084        "is-absolute": "^1.0.0",
     4085        "is-negated-glob": "^1.0.0"
     4086      }
     4087    },
    31884088    "to-object-path": {
    31894089      "version": "0.3.0",
     
    32224122        "is-number": "^3.0.0",
    32234123        "repeat-string": "^1.6.1"
     4124      }
     4125    },
     4126    "to-through": {
     4127      "version": "2.0.0",
     4128      "resolved": "https://registry.npmjs.org/to-through/-/to-through-2.0.0.tgz",
     4129      "integrity": "sha1-/JKtq6ByZHvAtn1rA2ZKoZUJOvY=",
     4130      "requires": {
     4131        "through2": "^2.0.3"
    32244132      }
    32254133    },
     
    32824190      "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q="
    32834191    },
     4192    "type": {
     4193      "version": "1.2.0",
     4194      "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz",
     4195      "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg=="
     4196    },
     4197    "typedarray": {
     4198      "version": "0.0.6",
     4199      "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz",
     4200      "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c="
     4201    },
    32844202    "unc-path-regex": {
    32854203      "version": "0.1.2",
     
    32874205      "integrity": "sha1-5z3T17DXxe2G+6xrCufYxqadUPo="
    32884206    },
     4207    "undertaker": {
     4208      "version": "1.3.0",
     4209      "resolved": "https://registry.npmjs.org/undertaker/-/undertaker-1.3.0.tgz",
     4210      "integrity": "sha512-/RXwi5m/Mu3H6IHQGww3GNt1PNXlbeCuclF2QYR14L/2CHPz3DFZkvB5hZ0N/QUkiXWCACML2jXViIQEQc2MLg==",
     4211      "requires": {
     4212        "arr-flatten": "^1.0.1",
     4213        "arr-map": "^2.0.0",
     4214        "bach": "^1.0.0",
     4215        "collection-map": "^1.0.0",
     4216        "es6-weak-map": "^2.0.1",
     4217        "fast-levenshtein": "^1.0.0",
     4218        "last-run": "^1.1.0",
     4219        "object.defaults": "^1.0.0",
     4220        "object.reduce": "^1.0.0",
     4221        "undertaker-registry": "^1.0.0"
     4222      }
     4223    },
     4224    "undertaker-registry": {
     4225      "version": "1.0.1",
     4226      "resolved": "https://registry.npmjs.org/undertaker-registry/-/undertaker-registry-1.0.1.tgz",
     4227      "integrity": "sha1-XkvaMI5KiirlhPm5pDWaSZglzFA="
     4228    },
    32894229    "union-value": {
    32904230      "version": "1.0.1",
     
    32994239    },
    33004240    "unique-stream": {
    3301       "version": "1.0.0",
    3302       "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-1.0.0.tgz",
    3303       "integrity": "sha1-1ZpKdUJ0R9mqbJHnAmP40mpLEEs="
     4241      "version": "2.3.1",
     4242      "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-2.3.1.tgz",
     4243      "integrity": "sha512-2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A==",
     4244      "requires": {
     4245        "json-stable-stringify-without-jsonify": "^1.0.1",
     4246        "through2-filter": "^3.0.0"
     4247      }
    33044248    },
    33054249    "unset-value": {
     
    33444288      }
    33454289    },
     4290    "upath": {
     4291      "version": "1.2.0",
     4292      "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz",
     4293      "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg=="
     4294    },
    33464295    "uri-js": {
    33474296      "version": "4.2.2",
     
    33624311      "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ=="
    33634312    },
    3364     "user-home": {
    3365       "version": "1.1.1",
    3366       "resolved": "https://registry.npmjs.org/user-home/-/user-home-1.1.1.tgz",
    3367       "integrity": "sha1-K1viOjK2Onyd640PKNSFcko98ZA="
    3368     },
    33694313    "util-deprecate": {
    33704314      "version": "1.0.2",
     
    33784322    },
    33794323    "v8flags": {
    3380       "version": "2.1.1",
    3381       "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-2.1.1.tgz",
    3382       "integrity": "sha1-qrGh+jDUX4jdMhFIh1rALAtV5bQ=",
    3383       "requires": {
    3384         "user-home": "^1.1.1"
     4324      "version": "3.2.0",
     4325      "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-3.2.0.tgz",
     4326      "integrity": "sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==",
     4327      "requires": {
     4328        "homedir-polyfill": "^1.0.1"
    33854329      }
    33864330    },
     
    33944338      }
    33954339    },
     4340    "value-or-function": {
     4341      "version": "3.0.0",
     4342      "resolved": "https://registry.npmjs.org/value-or-function/-/value-or-function-3.0.0.tgz",
     4343      "integrity": "sha1-HCQ6ULWVwb5Up1S/7OhWO5/42BM="
     4344    },
    33964345    "verror": {
    33974346      "version": "1.10.0",
     
    34154364    },
    34164365    "vinyl-fs": {
    3417       "version": "0.3.14",
    3418       "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-0.3.14.tgz",
    3419       "integrity": "sha1-mmhRzhysHBzqX+hsCTHWIMLPqeY=",
    3420       "requires": {
    3421         "defaults": "^1.0.0",
    3422         "glob-stream": "^3.1.5",
    3423         "glob-watcher": "^0.0.6",
    3424         "graceful-fs": "^3.0.0",
    3425         "mkdirp": "^0.5.0",
    3426         "strip-bom": "^1.0.0",
    3427         "through2": "^0.6.1",
    3428         "vinyl": "^0.4.0"
     4366      "version": "3.0.3",
     4367      "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-3.0.3.tgz",
     4368      "integrity": "sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==",
     4369      "requires": {
     4370        "fs-mkdirp-stream": "^1.0.0",
     4371        "glob-stream": "^6.1.0",
     4372        "graceful-fs": "^4.0.0",
     4373        "is-valid-glob": "^1.0.0",
     4374        "lazystream": "^1.0.0",
     4375        "lead": "^1.0.0",
     4376        "object.assign": "^4.0.4",
     4377        "pumpify": "^1.3.5",
     4378        "readable-stream": "^2.3.3",
     4379        "remove-bom-buffer": "^3.0.0",
     4380        "remove-bom-stream": "^1.2.0",
     4381        "resolve-options": "^1.1.0",
     4382        "through2": "^2.0.0",
     4383        "to-through": "^2.0.0",
     4384        "value-or-function": "^3.0.0",
     4385        "vinyl": "^2.0.0",
     4386        "vinyl-sourcemap": "^1.1.0"
    34294387      },
    34304388      "dependencies": {
    34314389        "clone": {
    3432           "version": "0.2.0",
    3433           "resolved": "https://registry.npmjs.org/clone/-/clone-0.2.0.tgz",
    3434           "integrity": "sha1-xhJqkK1Pctv1rNskPMN3JP6T/B8="
     4390          "version": "2.1.2",
     4391          "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz",
     4392          "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18="
     4393        },
     4394        "clone-stats": {
     4395          "version": "1.0.0",
     4396          "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz",
     4397          "integrity": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA="
     4398        },
     4399        "isarray": {
     4400          "version": "1.0.0",
     4401          "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
     4402          "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE="
    34354403        },
    34364404        "readable-stream": {
    3437           "version": "1.0.34",
    3438           "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz",
    3439           "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=",
     4405          "version": "2.3.7",
     4406          "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
     4407          "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
    34404408          "requires": {
    34414409            "core-util-is": "~1.0.0",
    3442             "inherits": "~2.0.1",
    3443             "isarray": "0.0.1",
    3444             "string_decoder": "~0.10.x"
    3445           }
    3446         },
    3447         "through2": {
    3448           "version": "0.6.5",
    3449           "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz",
    3450           "integrity": "sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg=",
    3451           "requires": {
    3452             "readable-stream": ">=1.0.33-1 <1.1.0-0",
    3453             "xtend": ">=4.0.0 <4.1.0-0"
     4410            "inherits": "~2.0.3",
     4411            "isarray": "~1.0.0",
     4412            "process-nextick-args": "~2.0.0",
     4413            "safe-buffer": "~5.1.1",
     4414            "string_decoder": "~1.1.1",
     4415            "util-deprecate": "~1.0.1"
     4416          }
     4417        },
     4418        "replace-ext": {
     4419          "version": "1.0.1",
     4420          "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz",
     4421          "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw=="
     4422        },
     4423        "string_decoder": {
     4424          "version": "1.1.1",
     4425          "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
     4426          "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
     4427          "requires": {
     4428            "safe-buffer": "~5.1.0"
    34544429          }
    34554430        },
    34564431        "vinyl": {
    3457           "version": "0.4.6",
    3458           "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.4.6.tgz",
    3459           "integrity": "sha1-LzVsh6VQolVGHza76ypbqL94SEc=",
    3460           "requires": {
    3461             "clone": "^0.2.0",
    3462             "clone-stats": "^0.0.1"
     4432          "version": "2.2.1",
     4433          "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz",
     4434          "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==",
     4435          "requires": {
     4436            "clone": "^2.1.1",
     4437            "clone-buffer": "^1.0.0",
     4438            "clone-stats": "^1.0.0",
     4439            "cloneable-readable": "^1.0.0",
     4440            "remove-trailing-separator": "^1.0.1",
     4441            "replace-ext": "^1.0.0"
     4442          }
     4443        }
     4444      }
     4445    },
     4446    "vinyl-sourcemap": {
     4447      "version": "1.1.0",
     4448      "resolved": "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz",
     4449      "integrity": "sha1-kqgAWTo4cDqM2xHYswCtS+Y7PhY=",
     4450      "requires": {
     4451        "append-buffer": "^1.0.2",
     4452        "convert-source-map": "^1.5.0",
     4453        "graceful-fs": "^4.1.6",
     4454        "normalize-path": "^2.1.1",
     4455        "now-and-later": "^2.0.0",
     4456        "remove-bom-buffer": "^3.0.0",
     4457        "vinyl": "^2.0.0"
     4458      },
     4459      "dependencies": {
     4460        "clone": {
     4461          "version": "2.1.2",
     4462          "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz",
     4463          "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18="
     4464        },
     4465        "clone-stats": {
     4466          "version": "1.0.0",
     4467          "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz",
     4468          "integrity": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA="
     4469        },
     4470        "normalize-path": {
     4471          "version": "2.1.1",
     4472          "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz",
     4473          "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=",
     4474          "requires": {
     4475            "remove-trailing-separator": "^1.0.1"
     4476          }
     4477        },
     4478        "replace-ext": {
     4479          "version": "1.0.1",
     4480          "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz",
     4481          "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw=="
     4482        },
     4483        "vinyl": {
     4484          "version": "2.2.1",
     4485          "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz",
     4486          "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==",
     4487          "requires": {
     4488            "clone": "^2.1.1",
     4489            "clone-buffer": "^1.0.0",
     4490            "clone-stats": "^1.0.0",
     4491            "cloneable-readable": "^1.0.0",
     4492            "remove-trailing-separator": "^1.0.1",
     4493            "replace-ext": "^1.0.0"
    34634494          }
    34644495        }
  • dynamictags/trunk/package.json

    r2360854 r2454677  
    33  "lockfileVersion": 1,
    44  "dependencies": {
    5     "gulp": "^3.9.1",
     5    "gulp": "^4.0.2",
    66    "gulp-autoprefixer": "^5.0.0",
    77    "gulp-clean-css": "^4.2.0",
Note: See TracChangeset for help on using the changeset viewer.