├── .eslintignore ├── .gitignore ├── .babelrc ├── .gitattributes ├── index.js ├── .editorconfig ├── release ├── angular-duplicate-requests-filter.min.js ├── angular-duplicate-requests-filter.min.js.map └── angular-duplicate-requests-filter.js ├── package.json ├── README.md ├── src └── duplicate-requests-filter.js ├── gulpfile.js ├── .eslintrc.yaml └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | release 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015-without-strict"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Set the default behavior, in case people don't have core.autocrlf set. 2 | * text eol=lf 3 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | require('./release/angular-duplicate-requests-filter'); 2 | module.exports = 'DuplicateRequestsFilter.Decorator'; 3 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # This is the root file 2 | root = true 3 | 4 | # All files 5 | [*] 6 | charset = utf-8 7 | end_of_line = lf 8 | indent_size = 2 9 | indent_style = space 10 | insert_final_newline = true 11 | trim_trailing_whitespace = true 12 | 13 | # JS 14 | [{*.js}] 15 | quote_type = single 16 | curly_bracket_next_line = false 17 | spaces_around_operators = true 18 | space_after_control_statements = true 19 | space_after_anonymous_functions = false 20 | spaces_in_brackets = false 21 | -------------------------------------------------------------------------------- /release/angular-duplicate-requests-filter.min.js: -------------------------------------------------------------------------------- 1 | var _typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};!function(t,e,o){"use strict";e.module("DuplicateRequestsFilter.Decorator",[]).config(["$provide",function(t){t.decorator("$http",["$delegate","$q",function(t,o){function r(t){var e=0,o=t.length;if(0===o)return e;for(var r=0;r>>0}function n(t){var o=t.method+t.url;return t.params&&"object"===_typeof(t.params)&&(o+=e.toJson(t.params)),t.data&&"object"===_typeof(t.data)&&(o+=e.toJson(t.data)),r(o)}function u(t){if(t.ignoreDuplicateRequest)return c(t);var e=n(t);return a[e]?t.rejectDuplicateRequest?o.reject({data:"",headers:{},status:t.rejectDuplicateStatusCode||400,config:t}):a[e]:(a[e]=c(t).finally(function(){delete a[e]}),a[e])}var a={},c=t;return Object.keys(c).filter(function(t){return"function"==typeof c[t]}).forEach(function(t){return u[t]=c[t]}),u.defaults=c.defaults,u}])}])}(window,window.angular); 2 | //# sourceMappingURL=angular-duplicate-requests-filter.min.js.map 3 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@meanie/angular-duplicate-requests-filter", 3 | "description": "A decorator for the Angular $http service to filter duplicate requests", 4 | "version": "2.1.1", 5 | "homepage": "https://github.com/meanie/angular-duplicate-requests-filter", 6 | "author": { 7 | "name": "Adam Reis", 8 | "email": "adam@reis.nz", 9 | "url": "https://adam.reis.nz/" 10 | }, 11 | "contributors": [], 12 | "license": "MIT", 13 | "publishConfig": { 14 | "access": "public" 15 | }, 16 | "repository": { 17 | "type": "git", 18 | "url": "https://github.com/meanie/angular-duplicate-requests-filter" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/meanie/angular-duplicate-requests-filter/issues" 22 | }, 23 | "instructions": { 24 | "url": "https://github.com/meanie/angular-duplicate-requests-filter#usage" 25 | }, 26 | "keywords": [ 27 | "meanie", 28 | "angular", 29 | "angularjs", 30 | "$http", 31 | "http", 32 | "decorator", 33 | "duplicate", 34 | "requests" 35 | ], 36 | "main": "index.js", 37 | "scripts": { 38 | "release": "gulp release", 39 | "version": "yarn release && git add release/*", 40 | "postversion": "git push && git push --tags && npm publish" 41 | }, 42 | "devDependencies": { 43 | "babel-core": "^6.26.0", 44 | "babel-preset-es2015-without-strict": "^0.0.4", 45 | "gulp": "github:gulpjs/gulp#4.0", 46 | "gulp-babel": "^7.0.0", 47 | "gulp-concat": "^2.6.1", 48 | "gulp-filter": "^5.0.1", 49 | "gulp-ng-annotate": "^2.0.0", 50 | "gulp-rename": "^1.2.2", 51 | "gulp-sourcemaps": "^2.6.1", 52 | "gulp-uglify": "^3.0.0", 53 | "gulp-wrapper": "^1.0.0" 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # @meanie/angular-duplicate-requests-filter 2 | 3 | [![npm version](https://img.shields.io/npm/v/@meanie/angular-duplicate-requests-filter.svg)](https://www.npmjs.com/package/@meanie/angular-duplicate-requests-filter) 4 | [![node dependencies](https://david-dm.org/meanie/angular-duplicate-requests-filter.svg)](https://david-dm.org/meanie/angular-duplicate-requests-filter) 5 | [![github issues](https://img.shields.io/github/issues/meanie/angular-duplicate-requests-filter.svg)](https://github.com/meanie/angular-duplicate-requests-filter/issues) 6 | [![codacy](https://img.shields.io/codacy/2267d0906e9e4766a264332be4365050.svg)](https://www.codacy.com/app/meanie/angular-duplicate-requests-filter) 7 | 8 | 9 | A decorator for the Angular $http service to filter duplicate requests 10 | 11 | ![Meanie](https://raw.githubusercontent.com/meanie/meanie/master/meanie-logo-full.png) 12 | 13 | ## Installation 14 | 15 | You can install this package using `yarn` or `npm`: 16 | 17 | ```shell 18 | #yarn 19 | yarn add @meanie/angular-duplicate-requests-filter 20 | 21 | #npm 22 | npm install @meanie/angular-duplicate-requests-filter --save 23 | ``` 24 | 25 | Include the script `node_modules/@meanie/angular-duplicate-requests-filter/release/angular-duplicate-requests-filter.js` in your build process, or add it via a ` 29 | ``` 30 | 31 | Add `DuplicateRequestsFilter.Decorator` as a dependency for your app. 32 | 33 | ## Usage 34 | 35 | Including the module as a dependency is enough and will automatically enable duplicate request filtering. 36 | 37 | ## Issues & feature requests 38 | 39 | Please report any bugs, issues, suggestions and feature requests in the [@meanie/angular-duplicate-requests-filter issue tracker](https://github.com/meanie/angular-duplicate-requests-filter/issues). 40 | 41 | ## Contributing 42 | 43 | Pull requests are welcome! If you would like to contribute to Meanie, please check out the [Meanie contributing guidelines](https://github.com/meanie/meanie/blob/master/CONTRIBUTING.md). 44 | 45 | ## Sponsor 46 | 47 | This package has been kindly sponsored by [Hello Club](https://helloclub.com?source=meanie), an [all in one club and membership management solution](https://helloclub.com?source=meanie) complete with booking system, automated membership renewals, online payments and integrated access and light control. Check us out if you happen to belong to any kind of club or if you know someone who helps run a club! 48 | 49 | ## License 50 | 51 | (MIT License) 52 | 53 | Copyright 2016-2020, Adam Reis 54 | -------------------------------------------------------------------------------- /src/duplicate-requests-filter.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * Module definition and dependencies 4 | */ 5 | angular.module('DuplicateRequestsFilter.Decorator', []) 6 | 7 | /** 8 | * Config 9 | */ 10 | .config(function($provide) { 11 | 12 | /** 13 | * Decorator for the $http service 14 | */ 15 | $provide.decorator('$http', function($delegate, $q) { 16 | 17 | //Pending requests and local $http let for natural reference 18 | let pendingRequests = {}; 19 | let $http = $delegate; 20 | 21 | /** 22 | * Hash generator 23 | */ 24 | function hash(str) { 25 | let h = 0; 26 | let strlen = str.length; 27 | if (strlen === 0) { 28 | return h; 29 | } 30 | for (let i = 0, n; i < strlen; ++i) { 31 | n = str.charCodeAt(i); 32 | h = ((h << 5) - h) + n; 33 | h = h & h; 34 | } 35 | return h >>> 0; 36 | } 37 | 38 | /** 39 | * Helper to generate a unique identifier for a request 40 | */ 41 | function getRequestIdentifier(config) { 42 | let str = config.method + config.url; 43 | if (config.params && typeof config.params === 'object') { 44 | str += angular.toJson(config.params); 45 | } 46 | if (config.data && typeof config.data === 'object') { 47 | str += angular.toJson(config.data); 48 | } 49 | return hash(str); 50 | } 51 | 52 | /** 53 | * Modified $http service 54 | */ 55 | function $duplicateRequestsFilter(config) { 56 | 57 | //Ignore for this request? 58 | if (config.ignoreDuplicateRequest) { 59 | return $http(config); 60 | } 61 | 62 | //Get unique request identifier 63 | let identifier = getRequestIdentifier(config); 64 | 65 | //Check if such a request is pending already 66 | if (pendingRequests[identifier]) { 67 | if (config.rejectDuplicateRequest) { 68 | return $q.reject({ 69 | data: '', 70 | headers: {}, 71 | status: config.rejectDuplicateStatusCode || 400, 72 | config: config, 73 | }); 74 | } 75 | return pendingRequests[identifier]; 76 | } 77 | 78 | //Create promise using $http and make sure it's reset when resolved 79 | pendingRequests[identifier] = $http(config).finally(() => { 80 | delete pendingRequests[identifier]; 81 | }); 82 | 83 | //Return promise 84 | return pendingRequests[identifier]; 85 | } 86 | 87 | //Map rest of methods 88 | Object 89 | .keys($http) 90 | .filter(key => (typeof $http[key] === 'function')) 91 | .forEach(key => $duplicateRequestsFilter[key] = $http[key]); 92 | 93 | //Map defaults 94 | $duplicateRequestsFilter.defaults = $http.defaults; 95 | 96 | //Return it 97 | return $duplicateRequestsFilter; 98 | }); 99 | }); 100 | -------------------------------------------------------------------------------- /release/angular-duplicate-requests-filter.min.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["duplicate-requests-filter.js"],"names":["angular","hash","i","n","str","h","getRequestIdentifier","config","$duplicateRequestsFilter","data","pendingRequests","forEach","identifier","$http","$delegate","defaults","window"],"mappings":"uOAKAA,0JAyBWC,EAAIC,OACPC,EAAIC,EACJC,EAAWD,EAAKC,UACRA,IAARA,+DAQJ,OAASC,IAAAA,WAMLF,EAAsBG,wBAQ1B,OANEA,EAAON,QAAKG,WAAAA,QAAAA,EAAAA,2FAMLI,EAAAA,+DAcKF,EAAAC,YAGEA,sCAGZE,KAAOC,kHAgBRC,EAAQC,IAnEX,IAAAF,KACEG,EAAQC,2CAqEVN,MAAyBO,mBAAzBP,EAAAA,4CAODQ,EArGHD,SAAAF,EAAAE","file":"angular-duplicate-requests-filter.min.js","sourcesContent":["(function(window, angular, undefined) {'use strict';\n\n/**\n * Module definition and dependencies\n */\nangular.module('DuplicateRequestsFilter.Decorator', [])\n\n/**\n * Config\n */\n.config(function($provide) {\n\n /**\n * Decorator for the $http service\n */\n $provide.decorator('$http', function($delegate, $q) {\n\n //Pending requests and local $http let for natural reference\n let pendingRequests = {};\n let $http = $delegate;\n\n /**\n * Hash generator\n */\n function hash(str) {\n let h = 0;\n let strlen = str.length;\n if (strlen === 0) {\n return h;\n }\n for (let i = 0, n; i < strlen; ++i) {\n n = str.charCodeAt(i);\n h = ((h << 5) - h) + n;\n h = h & h;\n }\n return h >>> 0;\n }\n\n /**\n * Helper to generate a unique identifier for a request\n */\n function getRequestIdentifier(config) {\n let str = config.method + config.url;\n if (config.params && typeof config.params === 'object') {\n str += angular.toJson(config.params);\n }\n if (config.data && typeof config.data === 'object') {\n str += angular.toJson(config.data);\n }\n return hash(str);\n }\n\n /**\n * Modified $http service\n */\n function $duplicateRequestsFilter(config) {\n\n //Ignore for this request?\n if (config.ignoreDuplicateRequest) {\n return $http(config);\n }\n\n //Get unique request identifier\n let identifier = getRequestIdentifier(config);\n\n //Check if such a request is pending already\n if (pendingRequests[identifier]) {\n if (config.rejectDuplicateRequest) {\n return $q.reject({\n data: '',\n headers: {},\n status: config.rejectDuplicateStatusCode || 400,\n config: config,\n });\n }\n return pendingRequests[identifier];\n }\n\n //Create promise using $http and make sure it's reset when resolved\n pendingRequests[identifier] = $http(config).finally(() => {\n delete pendingRequests[identifier];\n });\n\n //Return promise\n return pendingRequests[identifier];\n }\n\n //Map rest of methods\n Object\n .keys($http)\n .filter(key => (typeof $http[key] === 'function'))\n .forEach(key => $duplicateRequestsFilter[key] = $http[key]);\n\n //Map defaults\n $duplicateRequestsFilter.defaults = $http.defaults;\n\n //Return it\n return $duplicateRequestsFilter;\n });\n});\n\n})(window, window.angular);\n"]} -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** 4 | * Dependencies 5 | */ 6 | const fs = require('fs'); 7 | const gulp = require('gulp'); 8 | const babel = require('gulp-babel'); 9 | const concat = require('gulp-concat'); 10 | const uglify = require('gulp-uglify'); 11 | const rename = require('gulp-rename'); 12 | const filter = require('gulp-filter'); 13 | const wrapper = require('gulp-wrapper'); 14 | const sourcemaps = require('gulp-sourcemaps'); 15 | const ngAnnotate = require('gulp-ng-annotate'); 16 | 17 | /** 18 | * Package and configuration 19 | */ 20 | let pkg = require('./package.json'); 21 | 22 | /***************************************************************************** 23 | * Helpers 24 | ***/ 25 | 26 | /** 27 | * Get package JSON directly from file system 28 | */ 29 | function packageJson() { 30 | return (pkg = JSON.parse(fs.readFileSync('./package.json', 'utf8'))); 31 | } 32 | 33 | /** 34 | * Get package file name 35 | */ 36 | function packageFileName(filename, ext) { 37 | if (!ext) { 38 | ext = filename; 39 | filename = pkg.name.replace('@meanie/', ''); 40 | } 41 | return filename + (ext || ''); 42 | } 43 | 44 | /** 45 | * Generate angular wrapper for module files 46 | */ 47 | function angularWrapper() { 48 | return { 49 | header: '(function(window, angular, undefined) {\'use strict\';\n', 50 | footer: '\n})(window, window.angular);\n', 51 | }; 52 | } 53 | 54 | /** 55 | * Generate banner wrapper for compiled files 56 | */ 57 | function bannerWrapper() { 58 | 59 | //Refresh package JSON 60 | packageJson(); 61 | 62 | //Get date and author 63 | const today = new Date(); 64 | const author = pkg.author.name + ' <' + pkg.author.email + '>'; 65 | 66 | //Format banner 67 | const banner = 68 | '/**\n' + 69 | ' * ' + pkg.name + 70 | ' * ' + pkg.homepage + '\n' + 71 | ' *\n' + 72 | ' * Copyright (c) ' + today.getFullYear() + ' ' + author + '\n' + 73 | ' * License: MIT\n' + 74 | ' */\n'; 75 | 76 | //Return wrapper 77 | return { 78 | header: banner, 79 | footer: '', 80 | }; 81 | } 82 | 83 | /***************************************************************************** 84 | * Release task 85 | ***/ 86 | 87 | /** 88 | * Build release files 89 | */ 90 | function release() { 91 | const jsFilter = filter(['*.js'], { 92 | restore: true, 93 | }); 94 | return gulp.src([ 95 | 'src/**/*.js', 96 | ]) 97 | .pipe(wrapper(angularWrapper())) 98 | .pipe(sourcemaps.init()) 99 | .pipe(babel({ 100 | compact: false, 101 | })) 102 | .pipe(ngAnnotate({ 103 | single_quotes: true, 104 | })) 105 | .pipe(concat(packageFileName('.js'))) 106 | .pipe(wrapper(bannerWrapper())) 107 | .pipe(gulp.dest('release')) 108 | .pipe(rename(packageFileName('.min.js'))) 109 | .pipe(uglify()) 110 | .pipe(sourcemaps.write('./')) 111 | .pipe(jsFilter) 112 | .pipe(wrapper(bannerWrapper())) 113 | .pipe(jsFilter.restore) 114 | .pipe(gulp.dest('release')); 115 | } 116 | 117 | /** 118 | * Build a release version 119 | */ 120 | gulp.task('release', release); 121 | gulp.task('default', release); 122 | -------------------------------------------------------------------------------- /.eslintrc.yaml: -------------------------------------------------------------------------------- 1 | root: true 2 | extends: eslint:recommended 3 | parserOptions: 4 | ecmaVersion: 2017 5 | ecmaFeatures: 6 | impliedStrict: true 7 | sourceType: module 8 | env: 9 | es6: true 10 | browser: true 11 | node: true 12 | mocha: true 13 | jasmine: true 14 | globals: 15 | angular: false 16 | Raven: false 17 | rules: 18 | linebreak-style: 19 | - error 20 | - unix 21 | max-len: 22 | - warn 23 | - code: 80 24 | tabWidth: 2 25 | ignoreComments: true 26 | ignoreUrls: true 27 | ignoreTemplateLiterals: true 28 | ignoreRegExpLiterals: true 29 | indent: 30 | - error 31 | - 2 32 | - SwitchCase: 1 33 | VariableDeclarator: 34 | let: 2 35 | const: 3 36 | MemberExpression: off 37 | semi: 38 | - error 39 | - always 40 | consistent-this: 41 | - error 42 | - self 43 | - $ctrl 44 | quotes: 45 | - error 46 | - single 47 | - allowTemplateLiterals: true 48 | quote-props: 49 | - error 50 | - as-needed 51 | curly: 52 | - error 53 | - all 54 | comma-dangle: 55 | - error 56 | - always-multiline 57 | new-cap: 58 | - error 59 | - newIsCap: true 60 | capIsNew: true 61 | properties: false 62 | camelcase: 63 | - error 64 | - properties: never 65 | array-bracket-spacing: 66 | - error 67 | - never 68 | arrow-spacing: 69 | - error 70 | - before: true 71 | after: true 72 | block-spacing: 73 | - error 74 | - always 75 | comma-spacing: 76 | - error 77 | - before: false 78 | after: true 79 | computed-property-spacing: 80 | - error 81 | - never 82 | generator-star-spacing: 83 | - error 84 | - before: true 85 | after: false 86 | key-spacing: 87 | - error 88 | - beforeColon: false 89 | afterColon: true 90 | mode: minimum 91 | keyword-spacing: 92 | - error 93 | - before: true 94 | semi-spacing: 95 | - error 96 | - before: false 97 | after: true 98 | space-in-parens: 99 | - error 100 | - never 101 | space-unary-ops: 102 | - error 103 | - words: true 104 | nonwords: false 105 | space-before-function-paren: 106 | - error 107 | - never 108 | space-before-blocks: 109 | - error 110 | - always 111 | yoda: 112 | - error 113 | - never 114 | wrap-iife: 115 | - error 116 | - outside 117 | eqeqeq: 118 | - error 119 | - always 120 | newline-per-chained-call: 121 | - error 122 | - ignoreChainWithDepth: 3 123 | one-var-declaration-per-line: 124 | - error 125 | - initializations 126 | brace-style: 127 | - error 128 | - stroustrup 129 | no-implicit-coercion: 130 | - error 131 | - boolean: false 132 | no-multiple-empty-lines: 133 | - error 134 | - max: 1 135 | no-unused-vars: 136 | - error 137 | - vars: all 138 | args: all 139 | eol-last: error 140 | dot-notation: error 141 | space-infix-ops: error 142 | no-with: error 143 | no-unreachable: error 144 | no-redeclare: error 145 | no-unexpected-multiline: error 146 | no-multi-spaces: error 147 | no-multi-str: error 148 | no-trailing-spaces: error 149 | no-mixed-spaces-and-tabs: error 150 | no-spaced-func: error 151 | no-whitespace-before-property: error 152 | no-lonely-if: error 153 | no-var: error 154 | no-console: warn 155 | -------------------------------------------------------------------------------- /release/angular-duplicate-requests-filter.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @meanie/angular-duplicate-requests-filter * https://github.com/meanie/angular-duplicate-requests-filter 3 | * 4 | * Copyright (c) 2020 Adam Reis 5 | * License: MIT 6 | */ 7 | var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; 8 | 9 | (function (window, angular, undefined) { 10 | 'use strict'; 11 | 12 | /** 13 | * Module definition and dependencies 14 | */ 15 | 16 | angular.module('DuplicateRequestsFilter.Decorator', []) 17 | 18 | /** 19 | * Config 20 | */ 21 | .config(['$provide', function ($provide) { 22 | 23 | /** 24 | * Decorator for the $http service 25 | */ 26 | $provide.decorator('$http', ['$delegate', '$q', function ($delegate, $q) { 27 | 28 | //Pending requests and local $http let for natural reference 29 | var pendingRequests = {}; 30 | var $http = $delegate; 31 | 32 | /** 33 | * Hash generator 34 | */ 35 | function hash(str) { 36 | var h = 0; 37 | var strlen = str.length; 38 | if (strlen === 0) { 39 | return h; 40 | } 41 | for (var i = 0, n; i < strlen; ++i) { 42 | n = str.charCodeAt(i); 43 | h = (h << 5) - h + n; 44 | h = h & h; 45 | } 46 | return h >>> 0; 47 | } 48 | 49 | /** 50 | * Helper to generate a unique identifier for a request 51 | */ 52 | function getRequestIdentifier(config) { 53 | var str = config.method + config.url; 54 | if (config.params && _typeof(config.params) === 'object') { 55 | str += angular.toJson(config.params); 56 | } 57 | if (config.data && _typeof(config.data) === 'object') { 58 | str += angular.toJson(config.data); 59 | } 60 | return hash(str); 61 | } 62 | 63 | /** 64 | * Modified $http service 65 | */ 66 | function $duplicateRequestsFilter(config) { 67 | 68 | //Ignore for this request? 69 | if (config.ignoreDuplicateRequest) { 70 | return $http(config); 71 | } 72 | 73 | //Get unique request identifier 74 | var identifier = getRequestIdentifier(config); 75 | 76 | //Check if such a request is pending already 77 | if (pendingRequests[identifier]) { 78 | if (config.rejectDuplicateRequest) { 79 | return $q.reject({ 80 | data: '', 81 | headers: {}, 82 | status: config.rejectDuplicateStatusCode || 400, 83 | config: config 84 | }); 85 | } 86 | return pendingRequests[identifier]; 87 | } 88 | 89 | //Create promise using $http and make sure it's reset when resolved 90 | pendingRequests[identifier] = $http(config).finally(function () { 91 | delete pendingRequests[identifier]; 92 | }); 93 | 94 | //Return promise 95 | return pendingRequests[identifier]; 96 | } 97 | 98 | //Map rest of methods 99 | Object.keys($http).filter(function (key) { 100 | return typeof $http[key] === 'function'; 101 | }).forEach(function (key) { 102 | return $duplicateRequestsFilter[key] = $http[key]; 103 | }); 104 | 105 | //Map defaults 106 | $duplicateRequestsFilter.defaults = $http.defaults; 107 | 108 | //Return it 109 | return $duplicateRequestsFilter; 110 | }]); 111 | }]); 112 | })(window, window.angular); -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@gulp-sourcemaps/identity-map@1.X": 6 | version "1.0.1" 7 | resolved "https://registry.yarnpkg.com/@gulp-sourcemaps/identity-map/-/identity-map-1.0.1.tgz#cfa23bc5840f9104ce32a65e74db7e7a974bbee1" 8 | dependencies: 9 | acorn "^5.0.3" 10 | css "^2.2.1" 11 | normalize-path "^2.1.1" 12 | source-map "^0.5.6" 13 | through2 "^2.0.3" 14 | 15 | "@gulp-sourcemaps/map-sources@1.X": 16 | version "1.0.0" 17 | resolved "https://registry.yarnpkg.com/@gulp-sourcemaps/map-sources/-/map-sources-1.0.0.tgz#890ae7c5d8c877f6d384860215ace9d7ec945bda" 18 | dependencies: 19 | normalize-path "^2.0.1" 20 | through2 "^2.0.3" 21 | 22 | abbrev@1: 23 | version "1.1.0" 24 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 25 | 26 | acorn@4.X: 27 | version "4.0.13" 28 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 29 | 30 | acorn@^5.0.3: 31 | version "5.1.1" 32 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.1.tgz#53fe161111f912ab999ee887a90a0bc52822fd75" 33 | 34 | acorn@~2.6.4: 35 | version "2.6.4" 36 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-2.6.4.tgz#eb1f45b4a43fa31d03701a5ec46f3b52673e90ee" 37 | 38 | ajv@^4.9.1: 39 | version "4.11.8" 40 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 41 | dependencies: 42 | co "^4.6.0" 43 | json-stable-stringify "^1.0.1" 44 | 45 | alter@~0.2.0: 46 | version "0.2.0" 47 | resolved "https://registry.yarnpkg.com/alter/-/alter-0.2.0.tgz#c7588808617572034aae62480af26b1d4d1cb3cd" 48 | dependencies: 49 | stable "~0.1.3" 50 | 51 | amdefine@>=0.0.4: 52 | version "1.0.1" 53 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 54 | 55 | ansi-regex@^2.0.0: 56 | version "2.1.1" 57 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 58 | 59 | ansi-styles@^2.2.1: 60 | version "2.2.1" 61 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 62 | 63 | anymatch@^1.3.0: 64 | version "1.3.2" 65 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 66 | dependencies: 67 | micromatch "^2.1.5" 68 | normalize-path "^2.0.0" 69 | 70 | aproba@^1.0.3: 71 | version "1.1.2" 72 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1" 73 | 74 | archy@^1.0.0: 75 | version "1.0.0" 76 | resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" 77 | 78 | are-we-there-yet@~1.1.2: 79 | version "1.1.4" 80 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 81 | dependencies: 82 | delegates "^1.0.0" 83 | readable-stream "^2.0.6" 84 | 85 | arr-diff@^2.0.0: 86 | version "2.0.0" 87 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 88 | dependencies: 89 | arr-flatten "^1.0.1" 90 | 91 | arr-filter@^1.1.1: 92 | version "1.1.2" 93 | resolved "https://registry.yarnpkg.com/arr-filter/-/arr-filter-1.1.2.tgz#43fdddd091e8ef11aa4c45d9cdc18e2dff1711ee" 94 | dependencies: 95 | make-iterator "^1.0.0" 96 | 97 | arr-flatten@^1.0.1: 98 | version "1.1.0" 99 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 100 | 101 | arr-map@^2.0.0, arr-map@^2.0.2: 102 | version "2.0.2" 103 | resolved "https://registry.yarnpkg.com/arr-map/-/arr-map-2.0.2.tgz#3a77345ffc1cf35e2a91825601f9e58f2e24cac4" 104 | dependencies: 105 | make-iterator "^1.0.0" 106 | 107 | array-differ@^1.0.0: 108 | version "1.0.0" 109 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 110 | 111 | array-each@^1.0.0, array-each@^1.0.1: 112 | version "1.0.1" 113 | resolved "https://registry.yarnpkg.com/array-each/-/array-each-1.0.1.tgz#a794af0c05ab1752846ee753a1f211a05ba0c44f" 114 | 115 | array-initial@^1.0.0: 116 | version "1.0.1" 117 | resolved "https://registry.yarnpkg.com/array-initial/-/array-initial-1.0.1.tgz#86122222a29c1ed42347f6334111afa40f8b20ec" 118 | dependencies: 119 | array-slice "^1.0.0" 120 | is-number "^3.0.0" 121 | 122 | array-last@^1.1.1: 123 | version "1.2.0" 124 | resolved "https://registry.yarnpkg.com/array-last/-/array-last-1.2.0.tgz#0884a67ec2ac2a08133fc00f66779cfedb010986" 125 | dependencies: 126 | is-number "^3.0.0" 127 | 128 | array-slice@^1.0.0: 129 | version "1.0.0" 130 | resolved "https://registry.yarnpkg.com/array-slice/-/array-slice-1.0.0.tgz#e73034f00dcc1f40876008fd20feae77bd4b7c2f" 131 | 132 | array-union@^1.0.1: 133 | version "1.0.2" 134 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 135 | dependencies: 136 | array-uniq "^1.0.1" 137 | 138 | array-uniq@^1.0.1, array-uniq@^1.0.2: 139 | version "1.0.3" 140 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 141 | 142 | array-unique@^0.2.1: 143 | version "0.2.1" 144 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 145 | 146 | arrify@^1.0.0: 147 | version "1.0.1" 148 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 149 | 150 | asn1@~0.2.3: 151 | version "0.2.3" 152 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 153 | 154 | assert-plus@1.0.0, assert-plus@^1.0.0: 155 | version "1.0.0" 156 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 157 | 158 | assert-plus@^0.2.0: 159 | version "0.2.0" 160 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 161 | 162 | async-done@^1.2.0, async-done@^1.2.2: 163 | version "1.2.3" 164 | resolved "https://registry.yarnpkg.com/async-done/-/async-done-1.2.3.tgz#6c7abc7d61ca27fe6f1f2ba3206ea9ae60a43983" 165 | dependencies: 166 | end-of-stream "^1.1.0" 167 | once "^1.3.2" 168 | process-nextick-args "^1.0.7" 169 | stream-exhaust "^1.0.1" 170 | 171 | async-each@^1.0.0: 172 | version "1.0.1" 173 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 174 | 175 | async-settle@^1.0.0: 176 | version "1.0.0" 177 | resolved "https://registry.yarnpkg.com/async-settle/-/async-settle-1.0.0.tgz#1d0a914bb02575bec8a8f3a74e5080f72b2c0c6b" 178 | dependencies: 179 | async-done "^1.2.2" 180 | 181 | asynckit@^0.4.0: 182 | version "0.4.0" 183 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 184 | 185 | atob@~1.1.0: 186 | version "1.1.3" 187 | resolved "https://registry.yarnpkg.com/atob/-/atob-1.1.3.tgz#95f13629b12c3a51a5d215abdce2aa9f32f80773" 188 | 189 | aws-sign2@~0.6.0: 190 | version "0.6.0" 191 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 192 | 193 | aws4@^1.2.1: 194 | version "1.6.0" 195 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 196 | 197 | babel-code-frame@^6.26.0: 198 | version "6.26.0" 199 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 200 | dependencies: 201 | chalk "^1.1.3" 202 | esutils "^2.0.2" 203 | js-tokens "^3.0.2" 204 | 205 | babel-core@^6.26.0: 206 | version "6.26.0" 207 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 208 | dependencies: 209 | babel-code-frame "^6.26.0" 210 | babel-generator "^6.26.0" 211 | babel-helpers "^6.24.1" 212 | babel-messages "^6.23.0" 213 | babel-register "^6.26.0" 214 | babel-runtime "^6.26.0" 215 | babel-template "^6.26.0" 216 | babel-traverse "^6.26.0" 217 | babel-types "^6.26.0" 218 | babylon "^6.18.0" 219 | convert-source-map "^1.5.0" 220 | debug "^2.6.8" 221 | json5 "^0.5.1" 222 | lodash "^4.17.4" 223 | minimatch "^3.0.4" 224 | path-is-absolute "^1.0.1" 225 | private "^0.1.7" 226 | slash "^1.0.0" 227 | source-map "^0.5.6" 228 | 229 | babel-generator@^6.26.0: 230 | version "6.26.0" 231 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 232 | dependencies: 233 | babel-messages "^6.23.0" 234 | babel-runtime "^6.26.0" 235 | babel-types "^6.26.0" 236 | detect-indent "^4.0.0" 237 | jsesc "^1.3.0" 238 | lodash "^4.17.4" 239 | source-map "^0.5.6" 240 | trim-right "^1.0.1" 241 | 242 | babel-helper-call-delegate@^6.24.1: 243 | version "6.24.1" 244 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 245 | dependencies: 246 | babel-helper-hoist-variables "^6.24.1" 247 | babel-runtime "^6.22.0" 248 | babel-traverse "^6.24.1" 249 | babel-types "^6.24.1" 250 | 251 | babel-helper-define-map@^6.24.1: 252 | version "6.26.0" 253 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 254 | dependencies: 255 | babel-helper-function-name "^6.24.1" 256 | babel-runtime "^6.26.0" 257 | babel-types "^6.26.0" 258 | lodash "^4.17.4" 259 | 260 | babel-helper-function-name@^6.24.1: 261 | version "6.24.1" 262 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 263 | dependencies: 264 | babel-helper-get-function-arity "^6.24.1" 265 | babel-runtime "^6.22.0" 266 | babel-template "^6.24.1" 267 | babel-traverse "^6.24.1" 268 | babel-types "^6.24.1" 269 | 270 | babel-helper-get-function-arity@^6.24.1: 271 | version "6.24.1" 272 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 273 | dependencies: 274 | babel-runtime "^6.22.0" 275 | babel-types "^6.24.1" 276 | 277 | babel-helper-hoist-variables@^6.24.1: 278 | version "6.24.1" 279 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 280 | dependencies: 281 | babel-runtime "^6.22.0" 282 | babel-types "^6.24.1" 283 | 284 | babel-helper-optimise-call-expression@^6.24.1: 285 | version "6.24.1" 286 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 287 | dependencies: 288 | babel-runtime "^6.22.0" 289 | babel-types "^6.24.1" 290 | 291 | babel-helper-regex@^6.24.1: 292 | version "6.26.0" 293 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 294 | dependencies: 295 | babel-runtime "^6.26.0" 296 | babel-types "^6.26.0" 297 | lodash "^4.17.4" 298 | 299 | babel-helper-replace-supers@^6.24.1: 300 | version "6.24.1" 301 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 302 | dependencies: 303 | babel-helper-optimise-call-expression "^6.24.1" 304 | babel-messages "^6.23.0" 305 | babel-runtime "^6.22.0" 306 | babel-template "^6.24.1" 307 | babel-traverse "^6.24.1" 308 | babel-types "^6.24.1" 309 | 310 | babel-helpers@^6.24.1: 311 | version "6.24.1" 312 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 313 | dependencies: 314 | babel-runtime "^6.22.0" 315 | babel-template "^6.24.1" 316 | 317 | babel-messages@^6.23.0: 318 | version "6.23.0" 319 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 320 | dependencies: 321 | babel-runtime "^6.22.0" 322 | 323 | babel-plugin-check-es2015-constants@^6.3.13: 324 | version "6.22.0" 325 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 326 | dependencies: 327 | babel-runtime "^6.22.0" 328 | 329 | babel-plugin-transform-es2015-arrow-functions@^6.3.13: 330 | version "6.22.0" 331 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 332 | dependencies: 333 | babel-runtime "^6.22.0" 334 | 335 | babel-plugin-transform-es2015-block-scoped-functions@^6.3.13: 336 | version "6.22.0" 337 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 338 | dependencies: 339 | babel-runtime "^6.22.0" 340 | 341 | babel-plugin-transform-es2015-block-scoping@^6.9.0: 342 | version "6.26.0" 343 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 344 | dependencies: 345 | babel-runtime "^6.26.0" 346 | babel-template "^6.26.0" 347 | babel-traverse "^6.26.0" 348 | babel-types "^6.26.0" 349 | lodash "^4.17.4" 350 | 351 | babel-plugin-transform-es2015-classes@^6.9.0: 352 | version "6.24.1" 353 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 354 | dependencies: 355 | babel-helper-define-map "^6.24.1" 356 | babel-helper-function-name "^6.24.1" 357 | babel-helper-optimise-call-expression "^6.24.1" 358 | babel-helper-replace-supers "^6.24.1" 359 | babel-messages "^6.23.0" 360 | babel-runtime "^6.22.0" 361 | babel-template "^6.24.1" 362 | babel-traverse "^6.24.1" 363 | babel-types "^6.24.1" 364 | 365 | babel-plugin-transform-es2015-computed-properties@^6.3.13: 366 | version "6.24.1" 367 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 368 | dependencies: 369 | babel-runtime "^6.22.0" 370 | babel-template "^6.24.1" 371 | 372 | babel-plugin-transform-es2015-destructuring@^6.9.0: 373 | version "6.23.0" 374 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 375 | dependencies: 376 | babel-runtime "^6.22.0" 377 | 378 | babel-plugin-transform-es2015-duplicate-keys@^6.6.0: 379 | version "6.24.1" 380 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 381 | dependencies: 382 | babel-runtime "^6.22.0" 383 | babel-types "^6.24.1" 384 | 385 | babel-plugin-transform-es2015-for-of@^6.6.0: 386 | version "6.23.0" 387 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 388 | dependencies: 389 | babel-runtime "^6.22.0" 390 | 391 | babel-plugin-transform-es2015-function-name@^6.9.0: 392 | version "6.24.1" 393 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 394 | dependencies: 395 | babel-helper-function-name "^6.24.1" 396 | babel-runtime "^6.22.0" 397 | babel-types "^6.24.1" 398 | 399 | babel-plugin-transform-es2015-literals@^6.3.13: 400 | version "6.22.0" 401 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 402 | dependencies: 403 | babel-runtime "^6.22.0" 404 | 405 | babel-plugin-transform-es2015-modules-commonjs@^6.6.0: 406 | version "6.26.0" 407 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 408 | dependencies: 409 | babel-plugin-transform-strict-mode "^6.24.1" 410 | babel-runtime "^6.26.0" 411 | babel-template "^6.26.0" 412 | babel-types "^6.26.0" 413 | 414 | babel-plugin-transform-es2015-object-super@^6.3.13: 415 | version "6.24.1" 416 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 417 | dependencies: 418 | babel-helper-replace-supers "^6.24.1" 419 | babel-runtime "^6.22.0" 420 | 421 | babel-plugin-transform-es2015-parameters@^6.9.0: 422 | version "6.24.1" 423 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 424 | dependencies: 425 | babel-helper-call-delegate "^6.24.1" 426 | babel-helper-get-function-arity "^6.24.1" 427 | babel-runtime "^6.22.0" 428 | babel-template "^6.24.1" 429 | babel-traverse "^6.24.1" 430 | babel-types "^6.24.1" 431 | 432 | babel-plugin-transform-es2015-shorthand-properties@^6.3.13: 433 | version "6.24.1" 434 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 435 | dependencies: 436 | babel-runtime "^6.22.0" 437 | babel-types "^6.24.1" 438 | 439 | babel-plugin-transform-es2015-spread@^6.3.13: 440 | version "6.22.0" 441 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 442 | dependencies: 443 | babel-runtime "^6.22.0" 444 | 445 | babel-plugin-transform-es2015-sticky-regex@^6.3.13: 446 | version "6.24.1" 447 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 448 | dependencies: 449 | babel-helper-regex "^6.24.1" 450 | babel-runtime "^6.22.0" 451 | babel-types "^6.24.1" 452 | 453 | babel-plugin-transform-es2015-template-literals@^6.6.0: 454 | version "6.22.0" 455 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 456 | dependencies: 457 | babel-runtime "^6.22.0" 458 | 459 | babel-plugin-transform-es2015-typeof-symbol@^6.6.0: 460 | version "6.23.0" 461 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 462 | dependencies: 463 | babel-runtime "^6.22.0" 464 | 465 | babel-plugin-transform-es2015-unicode-regex@^6.3.13: 466 | version "6.24.1" 467 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 468 | dependencies: 469 | babel-helper-regex "^6.24.1" 470 | babel-runtime "^6.22.0" 471 | regexpu-core "^2.0.0" 472 | 473 | babel-plugin-transform-regenerator@^6.9.0: 474 | version "6.26.0" 475 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 476 | dependencies: 477 | regenerator-transform "^0.10.0" 478 | 479 | babel-plugin-transform-strict-mode@^6.24.1: 480 | version "6.24.1" 481 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 482 | dependencies: 483 | babel-runtime "^6.22.0" 484 | babel-types "^6.24.1" 485 | 486 | babel-preset-es2015-without-strict@^0.0.4: 487 | version "0.0.4" 488 | resolved "https://registry.yarnpkg.com/babel-preset-es2015-without-strict/-/babel-preset-es2015-without-strict-0.0.4.tgz#88c9f36e79d4762c58347b1a698a07c35b6bda5d" 489 | dependencies: 490 | babel-plugin-check-es2015-constants "^6.3.13" 491 | babel-plugin-transform-es2015-arrow-functions "^6.3.13" 492 | babel-plugin-transform-es2015-block-scoped-functions "^6.3.13" 493 | babel-plugin-transform-es2015-block-scoping "^6.9.0" 494 | babel-plugin-transform-es2015-classes "^6.9.0" 495 | babel-plugin-transform-es2015-computed-properties "^6.3.13" 496 | babel-plugin-transform-es2015-destructuring "^6.9.0" 497 | babel-plugin-transform-es2015-duplicate-keys "^6.6.0" 498 | babel-plugin-transform-es2015-for-of "^6.6.0" 499 | babel-plugin-transform-es2015-function-name "^6.9.0" 500 | babel-plugin-transform-es2015-literals "^6.3.13" 501 | babel-plugin-transform-es2015-modules-commonjs "^6.6.0" 502 | babel-plugin-transform-es2015-object-super "^6.3.13" 503 | babel-plugin-transform-es2015-parameters "^6.9.0" 504 | babel-plugin-transform-es2015-shorthand-properties "^6.3.13" 505 | babel-plugin-transform-es2015-spread "^6.3.13" 506 | babel-plugin-transform-es2015-sticky-regex "^6.3.13" 507 | babel-plugin-transform-es2015-template-literals "^6.6.0" 508 | babel-plugin-transform-es2015-typeof-symbol "^6.6.0" 509 | babel-plugin-transform-es2015-unicode-regex "^6.3.13" 510 | babel-plugin-transform-regenerator "^6.9.0" 511 | 512 | babel-register@^6.26.0: 513 | version "6.26.0" 514 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 515 | dependencies: 516 | babel-core "^6.26.0" 517 | babel-runtime "^6.26.0" 518 | core-js "^2.5.0" 519 | home-or-tmp "^2.0.0" 520 | lodash "^4.17.4" 521 | mkdirp "^0.5.1" 522 | source-map-support "^0.4.15" 523 | 524 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 525 | version "6.26.0" 526 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 527 | dependencies: 528 | core-js "^2.4.0" 529 | regenerator-runtime "^0.11.0" 530 | 531 | babel-template@^6.24.1, babel-template@^6.26.0: 532 | version "6.26.0" 533 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 534 | dependencies: 535 | babel-runtime "^6.26.0" 536 | babel-traverse "^6.26.0" 537 | babel-types "^6.26.0" 538 | babylon "^6.18.0" 539 | lodash "^4.17.4" 540 | 541 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 542 | version "6.26.0" 543 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 544 | dependencies: 545 | babel-code-frame "^6.26.0" 546 | babel-messages "^6.23.0" 547 | babel-runtime "^6.26.0" 548 | babel-types "^6.26.0" 549 | babylon "^6.18.0" 550 | debug "^2.6.8" 551 | globals "^9.18.0" 552 | invariant "^2.2.2" 553 | lodash "^4.17.4" 554 | 555 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 556 | version "6.26.0" 557 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 558 | dependencies: 559 | babel-runtime "^6.26.0" 560 | esutils "^2.0.2" 561 | lodash "^4.17.4" 562 | to-fast-properties "^1.0.3" 563 | 564 | babylon@^6.18.0: 565 | version "6.18.0" 566 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 567 | 568 | bach@^1.0.0: 569 | version "1.2.0" 570 | resolved "https://registry.yarnpkg.com/bach/-/bach-1.2.0.tgz#4b3ce96bf27134f79a1b414a51c14e34c3bd9880" 571 | dependencies: 572 | arr-filter "^1.1.1" 573 | arr-flatten "^1.0.1" 574 | arr-map "^2.0.0" 575 | array-each "^1.0.0" 576 | array-initial "^1.0.0" 577 | array-last "^1.1.1" 578 | async-done "^1.2.2" 579 | async-settle "^1.0.0" 580 | now-and-later "^2.0.0" 581 | 582 | balanced-match@^1.0.0: 583 | version "1.0.0" 584 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 585 | 586 | bcrypt-pbkdf@^1.0.0: 587 | version "1.0.1" 588 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 589 | dependencies: 590 | tweetnacl "^0.14.3" 591 | 592 | beeper@^1.0.0: 593 | version "1.1.1" 594 | resolved "https://registry.yarnpkg.com/beeper/-/beeper-1.1.1.tgz#e6d5ea8c5dad001304a70b22638447f69cb2f809" 595 | 596 | binary-extensions@^1.0.0: 597 | version "1.10.0" 598 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.10.0.tgz#9aeb9a6c5e88638aad171e167f5900abe24835d0" 599 | 600 | block-stream@*: 601 | version "0.0.9" 602 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 603 | dependencies: 604 | inherits "~2.0.0" 605 | 606 | boom@2.x.x: 607 | version "2.10.1" 608 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 609 | dependencies: 610 | hoek "2.x.x" 611 | 612 | brace-expansion@^1.1.7: 613 | version "1.1.8" 614 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 615 | dependencies: 616 | balanced-match "^1.0.0" 617 | concat-map "0.0.1" 618 | 619 | braces@^1.8.2: 620 | version "1.8.5" 621 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 622 | dependencies: 623 | expand-range "^1.8.1" 624 | preserve "^0.2.0" 625 | repeat-element "^1.1.2" 626 | 627 | bufferstreams@^1.1.0: 628 | version "1.1.1" 629 | resolved "https://registry.yarnpkg.com/bufferstreams/-/bufferstreams-1.1.1.tgz#0161373060ac5988eff99058731114f6e195d51e" 630 | dependencies: 631 | readable-stream "^2.0.2" 632 | 633 | camelcase@^2.0.1: 634 | version "2.1.1" 635 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 636 | 637 | caseless@~0.12.0: 638 | version "0.12.0" 639 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 640 | 641 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 642 | version "1.1.3" 643 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 644 | dependencies: 645 | ansi-styles "^2.2.1" 646 | escape-string-regexp "^1.0.2" 647 | has-ansi "^2.0.0" 648 | strip-ansi "^3.0.0" 649 | supports-color "^2.0.0" 650 | 651 | chokidar@^1.4.3: 652 | version "1.7.0" 653 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 654 | dependencies: 655 | anymatch "^1.3.0" 656 | async-each "^1.0.0" 657 | glob-parent "^2.0.0" 658 | inherits "^2.0.1" 659 | is-binary-path "^1.0.0" 660 | is-glob "^2.0.0" 661 | path-is-absolute "^1.0.0" 662 | readdirp "^2.0.0" 663 | optionalDependencies: 664 | fsevents "^1.0.0" 665 | 666 | cliui@^3.0.3: 667 | version "3.2.0" 668 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 669 | dependencies: 670 | string-width "^1.0.1" 671 | strip-ansi "^3.0.1" 672 | wrap-ansi "^2.0.0" 673 | 674 | clone-buffer@^1.0.0: 675 | version "1.0.0" 676 | resolved "https://registry.yarnpkg.com/clone-buffer/-/clone-buffer-1.0.0.tgz#e3e25b207ac4e701af721e2cb5a16792cac3dc58" 677 | 678 | clone-stats@^0.0.1: 679 | version "0.0.1" 680 | resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-0.0.1.tgz#b88f94a82cf38b8791d58046ea4029ad88ca99d1" 681 | 682 | clone-stats@^1.0.0: 683 | version "1.0.0" 684 | resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-1.0.0.tgz#b3782dff8bb5474e18b9b6bf0fdfe782f8777680" 685 | 686 | clone@^1.0.0: 687 | version "1.0.2" 688 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" 689 | 690 | clone@^2.1.1: 691 | version "2.1.1" 692 | resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.1.tgz#d217d1e961118e3ac9a4b8bba3285553bf647cdb" 693 | 694 | cloneable-readable@^1.0.0: 695 | version "1.0.0" 696 | resolved "https://registry.yarnpkg.com/cloneable-readable/-/cloneable-readable-1.0.0.tgz#a6290d413f217a61232f95e458ff38418cfb0117" 697 | dependencies: 698 | inherits "^2.0.1" 699 | process-nextick-args "^1.0.6" 700 | through2 "^2.0.1" 701 | 702 | co@^4.6.0: 703 | version "4.6.0" 704 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 705 | 706 | code-point-at@^1.0.0: 707 | version "1.1.0" 708 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 709 | 710 | collection-map@^1.0.0: 711 | version "1.0.0" 712 | resolved "https://registry.yarnpkg.com/collection-map/-/collection-map-1.0.0.tgz#aea0f06f8d26c780c2b75494385544b2255af18c" 713 | dependencies: 714 | arr-map "^2.0.2" 715 | for-own "^1.0.0" 716 | make-iterator "^1.0.0" 717 | 718 | combined-stream@^1.0.5, combined-stream@~1.0.5: 719 | version "1.0.5" 720 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 721 | dependencies: 722 | delayed-stream "~1.0.0" 723 | 724 | commander@~2.11.0: 725 | version "2.11.0" 726 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" 727 | 728 | concat-map@0.0.1: 729 | version "0.0.1" 730 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 731 | 732 | concat-with-sourcemaps@^1.0.0: 733 | version "1.0.4" 734 | resolved "https://registry.yarnpkg.com/concat-with-sourcemaps/-/concat-with-sourcemaps-1.0.4.tgz#f55b3be2aeb47601b10a2d5259ccfb70fd2f1dd6" 735 | dependencies: 736 | source-map "^0.5.1" 737 | 738 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 739 | version "1.1.0" 740 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 741 | 742 | convert-source-map@1.X, convert-source-map@^1.1.1, convert-source-map@^1.5.0: 743 | version "1.5.0" 744 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 745 | 746 | convert-source-map@~1.1.2: 747 | version "1.1.3" 748 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.1.3.tgz#4829c877e9fe49b3161f3bf3673888e204699860" 749 | 750 | copy-props@^1.4.1: 751 | version "1.6.0" 752 | resolved "https://registry.yarnpkg.com/copy-props/-/copy-props-1.6.0.tgz#f0324bbee99771101e7b3ada112f313c393db8ed" 753 | dependencies: 754 | each-props "^1.2.1" 755 | is-plain-object "^2.0.1" 756 | 757 | core-js@^2.4.0, core-js@^2.5.0: 758 | version "2.5.1" 759 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b" 760 | 761 | core-util-is@1.0.2, core-util-is@~1.0.0: 762 | version "1.0.2" 763 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 764 | 765 | cryptiles@2.x.x: 766 | version "2.0.5" 767 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 768 | dependencies: 769 | boom "2.x.x" 770 | 771 | css@2.X, css@^2.2.1: 772 | version "2.2.1" 773 | resolved "https://registry.yarnpkg.com/css/-/css-2.2.1.tgz#73a4c81de85db664d4ee674f7d47085e3b2d55dc" 774 | dependencies: 775 | inherits "^2.0.1" 776 | source-map "^0.1.38" 777 | source-map-resolve "^0.3.0" 778 | urix "^0.1.0" 779 | 780 | d@1: 781 | version "1.0.0" 782 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 783 | dependencies: 784 | es5-ext "^0.10.9" 785 | 786 | dashdash@^1.12.0: 787 | version "1.14.1" 788 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 789 | dependencies: 790 | assert-plus "^1.0.0" 791 | 792 | dateformat@^2.0.0: 793 | version "2.0.0" 794 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-2.0.0.tgz#2743e3abb5c3fc2462e527dca445e04e9f4dee17" 795 | 796 | debug-fabulous@>=0.1.1: 797 | version "0.1.1" 798 | resolved "https://registry.yarnpkg.com/debug-fabulous/-/debug-fabulous-0.1.1.tgz#1b970878c9fa4fbd1c88306eab323c830c58f1d6" 799 | dependencies: 800 | debug "2.3.0" 801 | memoizee "^0.4.5" 802 | object-assign "4.1.0" 803 | 804 | debug@2.3.0: 805 | version "2.3.0" 806 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.3.0.tgz#3912dc55d7167fc3af17d2b85c13f93deaedaa43" 807 | dependencies: 808 | ms "0.7.2" 809 | 810 | debug@^2.2.0, debug@^2.6.8: 811 | version "2.6.8" 812 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 813 | dependencies: 814 | ms "2.0.0" 815 | 816 | decamelize@^1.1.1: 817 | version "1.2.0" 818 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 819 | 820 | deep-extend@~0.4.0: 821 | version "0.4.2" 822 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 823 | 824 | default-resolution@^2.0.0: 825 | version "2.0.0" 826 | resolved "https://registry.yarnpkg.com/default-resolution/-/default-resolution-2.0.0.tgz#bcb82baa72ad79b426a76732f1a81ad6df26d684" 827 | 828 | delayed-stream@~1.0.0: 829 | version "1.0.0" 830 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 831 | 832 | delegates@^1.0.0: 833 | version "1.0.0" 834 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 835 | 836 | detect-file@^0.1.0: 837 | version "0.1.0" 838 | resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-0.1.0.tgz#4935dedfd9488648e006b0129566e9386711ea63" 839 | dependencies: 840 | fs-exists-sync "^0.1.0" 841 | 842 | detect-indent@^4.0.0: 843 | version "4.0.0" 844 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 845 | dependencies: 846 | repeating "^2.0.0" 847 | 848 | detect-newline@2.X: 849 | version "2.1.0" 850 | resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" 851 | 852 | duplexer2@0.0.2: 853 | version "0.0.2" 854 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.0.2.tgz#c614dcf67e2fb14995a91711e5a617e8a60a31db" 855 | dependencies: 856 | readable-stream "~1.1.9" 857 | 858 | duplexify@^3.2.0: 859 | version "3.5.1" 860 | resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.5.1.tgz#4e1516be68838bc90a49994f0b39a6e5960befcd" 861 | dependencies: 862 | end-of-stream "^1.0.0" 863 | inherits "^2.0.1" 864 | readable-stream "^2.0.0" 865 | stream-shift "^1.0.0" 866 | 867 | each-props@^1.2.1: 868 | version "1.3.1" 869 | resolved "https://registry.yarnpkg.com/each-props/-/each-props-1.3.1.tgz#fc138f51e3a2774286d4858e02d6e7de462de158" 870 | dependencies: 871 | is-plain-object "^2.0.1" 872 | object.defaults "^1.1.0" 873 | 874 | ecc-jsbn@~0.1.1: 875 | version "0.1.1" 876 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 877 | dependencies: 878 | jsbn "~0.1.0" 879 | 880 | end-of-stream@^1.0.0, end-of-stream@^1.1.0: 881 | version "1.4.0" 882 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.0.tgz#7a90d833efda6cfa6eac0f4949dbb0fad3a63206" 883 | dependencies: 884 | once "^1.4.0" 885 | 886 | es5-ext@^0.10.14, es5-ext@^0.10.30, es5-ext@^0.10.9, es5-ext@~0.10.14, es5-ext@~0.10.2: 887 | version "0.10.30" 888 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.30.tgz#7141a16836697dbabfaaaeee41495ce29f52c939" 889 | dependencies: 890 | es6-iterator "2" 891 | es6-symbol "~3.1" 892 | 893 | es6-iterator@2, es6-iterator@^2.0.1: 894 | version "2.0.1" 895 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512" 896 | dependencies: 897 | d "1" 898 | es5-ext "^0.10.14" 899 | es6-symbol "^3.1" 900 | 901 | es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1: 902 | version "3.1.1" 903 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 904 | dependencies: 905 | d "1" 906 | es5-ext "~0.10.14" 907 | 908 | es6-weak-map@^2.0.1, es6-weak-map@^2.0.2: 909 | version "2.0.2" 910 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 911 | dependencies: 912 | d "1" 913 | es5-ext "^0.10.14" 914 | es6-iterator "^2.0.1" 915 | es6-symbol "^3.1.1" 916 | 917 | escape-string-regexp@^1.0.2: 918 | version "1.0.5" 919 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 920 | 921 | esutils@^2.0.2: 922 | version "2.0.2" 923 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 924 | 925 | event-emitter@^0.3.5: 926 | version "0.3.5" 927 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 928 | dependencies: 929 | d "1" 930 | es5-ext "~0.10.14" 931 | 932 | expand-brackets@^0.1.4: 933 | version "0.1.5" 934 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 935 | dependencies: 936 | is-posix-bracket "^0.1.0" 937 | 938 | expand-range@^1.8.1: 939 | version "1.8.2" 940 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 941 | dependencies: 942 | fill-range "^2.1.0" 943 | 944 | expand-tilde@^1.2.2: 945 | version "1.2.2" 946 | resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-1.2.2.tgz#0b81eba897e5a3d31d1c3d102f8f01441e559449" 947 | dependencies: 948 | os-homedir "^1.0.1" 949 | 950 | expand-tilde@^2.0.2: 951 | version "2.0.2" 952 | resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502" 953 | dependencies: 954 | homedir-polyfill "^1.0.1" 955 | 956 | extend-shallow@^2.0.1: 957 | version "2.0.1" 958 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 959 | dependencies: 960 | is-extendable "^0.1.0" 961 | 962 | extend@^3.0.0, extend@~3.0.0: 963 | version "3.0.1" 964 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 965 | 966 | extglob@^0.3.1: 967 | version "0.3.2" 968 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 969 | dependencies: 970 | is-extglob "^1.0.0" 971 | 972 | extsprintf@1.3.0, extsprintf@^1.2.0: 973 | version "1.3.0" 974 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 975 | 976 | fancy-log@^1.1.0: 977 | version "1.3.0" 978 | resolved "https://registry.yarnpkg.com/fancy-log/-/fancy-log-1.3.0.tgz#45be17d02bb9917d60ccffd4995c999e6c8c9948" 979 | dependencies: 980 | chalk "^1.1.1" 981 | time-stamp "^1.0.0" 982 | 983 | filename-regex@^2.0.0: 984 | version "2.0.1" 985 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 986 | 987 | fill-range@^2.1.0: 988 | version "2.2.3" 989 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 990 | dependencies: 991 | is-number "^2.1.0" 992 | isobject "^2.0.0" 993 | randomatic "^1.1.3" 994 | repeat-element "^1.1.2" 995 | repeat-string "^1.5.2" 996 | 997 | findup-sync@^0.4.2: 998 | version "0.4.3" 999 | resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-0.4.3.tgz#40043929e7bc60adf0b7f4827c4c6e75a0deca12" 1000 | dependencies: 1001 | detect-file "^0.1.0" 1002 | is-glob "^2.0.1" 1003 | micromatch "^2.3.7" 1004 | resolve-dir "^0.1.0" 1005 | 1006 | findup-sync@~0.3.0: 1007 | version "0.3.0" 1008 | resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-0.3.0.tgz#37930aa5d816b777c03445e1966cc6790a4c0b16" 1009 | dependencies: 1010 | glob "~5.0.0" 1011 | 1012 | fined@^1.0.1: 1013 | version "1.1.0" 1014 | resolved "https://registry.yarnpkg.com/fined/-/fined-1.1.0.tgz#b37dc844b76a2f5e7081e884f7c0ae344f153476" 1015 | dependencies: 1016 | expand-tilde "^2.0.2" 1017 | is-plain-object "^2.0.3" 1018 | object.defaults "^1.1.0" 1019 | object.pick "^1.2.0" 1020 | parse-filepath "^1.0.1" 1021 | 1022 | first-chunk-stream@^1.0.0: 1023 | version "1.0.0" 1024 | resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz#59bfb50cd905f60d7c394cd3d9acaab4e6ad934e" 1025 | 1026 | flagged-respawn@^0.3.2: 1027 | version "0.3.2" 1028 | resolved "https://registry.yarnpkg.com/flagged-respawn/-/flagged-respawn-0.3.2.tgz#ff191eddcd7088a675b2610fffc976be9b8074b5" 1029 | 1030 | for-in@^1.0.1: 1031 | version "1.0.2" 1032 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1033 | 1034 | for-own@^0.1.4: 1035 | version "0.1.5" 1036 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1037 | dependencies: 1038 | for-in "^1.0.1" 1039 | 1040 | for-own@^1.0.0: 1041 | version "1.0.0" 1042 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-1.0.0.tgz#c63332f415cedc4b04dbfe70cf836494c53cb44b" 1043 | dependencies: 1044 | for-in "^1.0.1" 1045 | 1046 | forever-agent@~0.6.1: 1047 | version "0.6.1" 1048 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1049 | 1050 | form-data@~2.1.1: 1051 | version "2.1.4" 1052 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1053 | dependencies: 1054 | asynckit "^0.4.0" 1055 | combined-stream "^1.0.5" 1056 | mime-types "^2.1.12" 1057 | 1058 | fs-exists-sync@^0.1.0: 1059 | version "0.1.0" 1060 | resolved "https://registry.yarnpkg.com/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz#982d6893af918e72d08dec9e8673ff2b5a8d6add" 1061 | 1062 | fs.realpath@^1.0.0: 1063 | version "1.0.0" 1064 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1065 | 1066 | fsevents@^1.0.0: 1067 | version "1.1.2" 1068 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" 1069 | dependencies: 1070 | nan "^2.3.0" 1071 | node-pre-gyp "^0.6.36" 1072 | 1073 | fstream-ignore@^1.0.5: 1074 | version "1.0.5" 1075 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1076 | dependencies: 1077 | fstream "^1.0.0" 1078 | inherits "2" 1079 | minimatch "^3.0.0" 1080 | 1081 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1082 | version "1.0.11" 1083 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1084 | dependencies: 1085 | graceful-fs "^4.1.2" 1086 | inherits "~2.0.0" 1087 | mkdirp ">=0.5 0" 1088 | rimraf "2" 1089 | 1090 | gauge@~2.7.3: 1091 | version "2.7.4" 1092 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1093 | dependencies: 1094 | aproba "^1.0.3" 1095 | console-control-strings "^1.0.0" 1096 | has-unicode "^2.0.0" 1097 | object-assign "^4.1.0" 1098 | signal-exit "^3.0.0" 1099 | string-width "^1.0.1" 1100 | strip-ansi "^3.0.1" 1101 | wide-align "^1.1.0" 1102 | 1103 | getpass@^0.1.1: 1104 | version "0.1.7" 1105 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1106 | dependencies: 1107 | assert-plus "^1.0.0" 1108 | 1109 | glob-base@^0.3.0: 1110 | version "0.3.0" 1111 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1112 | dependencies: 1113 | glob-parent "^2.0.0" 1114 | is-glob "^2.0.0" 1115 | 1116 | glob-parent@^2.0.0: 1117 | version "2.0.0" 1118 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1119 | dependencies: 1120 | is-glob "^2.0.0" 1121 | 1122 | glob-parent@^3.0.0: 1123 | version "3.1.0" 1124 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" 1125 | dependencies: 1126 | is-glob "^3.1.0" 1127 | path-dirname "^1.0.0" 1128 | 1129 | glob-stream@^5.3.2: 1130 | version "5.3.5" 1131 | resolved "https://registry.yarnpkg.com/glob-stream/-/glob-stream-5.3.5.tgz#a55665a9a8ccdc41915a87c701e32d4e016fad22" 1132 | dependencies: 1133 | extend "^3.0.0" 1134 | glob "^5.0.3" 1135 | glob-parent "^3.0.0" 1136 | micromatch "^2.3.7" 1137 | ordered-read-streams "^0.3.0" 1138 | through2 "^0.6.0" 1139 | to-absolute-glob "^0.1.1" 1140 | unique-stream "^2.0.2" 1141 | 1142 | glob-watcher@^3.0.0: 1143 | version "3.2.0" 1144 | resolved "https://registry.yarnpkg.com/glob-watcher/-/glob-watcher-3.2.0.tgz#ffc1a2d3d07783b672f5e21799a4d0b3fed92daf" 1145 | dependencies: 1146 | async-done "^1.2.0" 1147 | chokidar "^1.4.3" 1148 | lodash.debounce "^4.0.6" 1149 | object.defaults "^1.0.0" 1150 | 1151 | glob@^5.0.3, glob@~5.0.0: 1152 | version "5.0.15" 1153 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 1154 | dependencies: 1155 | inflight "^1.0.4" 1156 | inherits "2" 1157 | minimatch "2 || 3" 1158 | once "^1.3.0" 1159 | path-is-absolute "^1.0.0" 1160 | 1161 | glob@^7.0.5: 1162 | version "7.1.2" 1163 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1164 | dependencies: 1165 | fs.realpath "^1.0.0" 1166 | inflight "^1.0.4" 1167 | inherits "2" 1168 | minimatch "^3.0.4" 1169 | once "^1.3.0" 1170 | path-is-absolute "^1.0.0" 1171 | 1172 | global-modules@^0.2.3: 1173 | version "0.2.3" 1174 | resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-0.2.3.tgz#ea5a3bed42c6d6ce995a4f8a1269b5dae223828d" 1175 | dependencies: 1176 | global-prefix "^0.1.4" 1177 | is-windows "^0.2.0" 1178 | 1179 | global-prefix@^0.1.4: 1180 | version "0.1.5" 1181 | resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-0.1.5.tgz#8d3bc6b8da3ca8112a160d8d496ff0462bfef78f" 1182 | dependencies: 1183 | homedir-polyfill "^1.0.0" 1184 | ini "^1.3.4" 1185 | is-windows "^0.2.0" 1186 | which "^1.2.12" 1187 | 1188 | globals@^9.18.0: 1189 | version "9.18.0" 1190 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1191 | 1192 | glogg@^1.0.0: 1193 | version "1.0.0" 1194 | resolved "https://registry.yarnpkg.com/glogg/-/glogg-1.0.0.tgz#7fe0f199f57ac906cf512feead8f90ee4a284fc5" 1195 | dependencies: 1196 | sparkles "^1.0.0" 1197 | 1198 | graceful-fs@4.X, graceful-fs@^4.0.0, graceful-fs@^4.1.2: 1199 | version "4.1.11" 1200 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1201 | 1202 | gulp-babel@^7.0.0: 1203 | version "7.0.0" 1204 | resolved "https://registry.yarnpkg.com/gulp-babel/-/gulp-babel-7.0.0.tgz#7b93c975159f7a0553e4263b4a55100ccc239b28" 1205 | dependencies: 1206 | gulp-util "^3.0.0" 1207 | replace-ext "0.0.1" 1208 | through2 "^2.0.0" 1209 | vinyl-sourcemaps-apply "^0.2.0" 1210 | 1211 | gulp-cli@^1.0.0: 1212 | version "1.4.0" 1213 | resolved "https://registry.yarnpkg.com/gulp-cli/-/gulp-cli-1.4.0.tgz#6f5bbe2cd0bdb4849d12cf9e1246a5861f8b4f88" 1214 | dependencies: 1215 | archy "^1.0.0" 1216 | chalk "^1.1.0" 1217 | copy-props "^1.4.1" 1218 | fancy-log "^1.1.0" 1219 | gulplog "^1.0.0" 1220 | interpret "^1.0.0" 1221 | liftoff "^2.3.0" 1222 | lodash.isfunction "^3.0.8" 1223 | lodash.isplainobject "^4.0.4" 1224 | lodash.sortby "^4.5.0" 1225 | matchdep "^1.0.0" 1226 | mute-stdout "^1.0.0" 1227 | pretty-hrtime "^1.0.0" 1228 | semver-greatest-satisfied-range "^1.0.0" 1229 | tildify "^1.0.0" 1230 | v8flags "^2.0.9" 1231 | wreck "^6.3.0" 1232 | yargs "^3.28.0" 1233 | 1234 | gulp-concat@^2.6.1: 1235 | version "2.6.1" 1236 | resolved "https://registry.yarnpkg.com/gulp-concat/-/gulp-concat-2.6.1.tgz#633d16c95d88504628ad02665663cee5a4793353" 1237 | dependencies: 1238 | concat-with-sourcemaps "^1.0.0" 1239 | through2 "^2.0.0" 1240 | vinyl "^2.0.0" 1241 | 1242 | gulp-filter@^5.0.1: 1243 | version "5.0.1" 1244 | resolved "https://registry.yarnpkg.com/gulp-filter/-/gulp-filter-5.0.1.tgz#5d87f662e317e5839ef7650e620e6c9008ff92d0" 1245 | dependencies: 1246 | gulp-util "^3.0.6" 1247 | multimatch "^2.0.0" 1248 | streamfilter "^1.0.5" 1249 | 1250 | gulp-ng-annotate@^2.0.0: 1251 | version "2.0.0" 1252 | resolved "https://registry.yarnpkg.com/gulp-ng-annotate/-/gulp-ng-annotate-2.0.0.tgz#84a83db1f016520bd70f9a5cfa9f3fe89e25a205" 1253 | dependencies: 1254 | bufferstreams "^1.1.0" 1255 | gulp-util "^3.0.7" 1256 | merge "^1.2.0" 1257 | ng-annotate "^1.2.1" 1258 | through2 "^2.0.1" 1259 | vinyl-sourcemaps-apply "^0.2.1" 1260 | 1261 | gulp-rename@^1.2.2: 1262 | version "1.2.2" 1263 | resolved "https://registry.yarnpkg.com/gulp-rename/-/gulp-rename-1.2.2.tgz#3ad4428763f05e2764dec1c67d868db275687817" 1264 | 1265 | gulp-sourcemaps@1.6.0: 1266 | version "1.6.0" 1267 | resolved "https://registry.yarnpkg.com/gulp-sourcemaps/-/gulp-sourcemaps-1.6.0.tgz#b86ff349d801ceb56e1d9e7dc7bbcb4b7dee600c" 1268 | dependencies: 1269 | convert-source-map "^1.1.1" 1270 | graceful-fs "^4.1.2" 1271 | strip-bom "^2.0.0" 1272 | through2 "^2.0.0" 1273 | vinyl "^1.0.0" 1274 | 1275 | gulp-sourcemaps@^2.6.1: 1276 | version "2.6.1" 1277 | resolved "https://registry.yarnpkg.com/gulp-sourcemaps/-/gulp-sourcemaps-2.6.1.tgz#833a4e28f0b8f4661075032cd782417f7cd8fb0b" 1278 | dependencies: 1279 | "@gulp-sourcemaps/identity-map" "1.X" 1280 | "@gulp-sourcemaps/map-sources" "1.X" 1281 | acorn "4.X" 1282 | convert-source-map "1.X" 1283 | css "2.X" 1284 | debug-fabulous ">=0.1.1" 1285 | detect-newline "2.X" 1286 | graceful-fs "4.X" 1287 | source-map "0.X" 1288 | strip-bom-string "1.X" 1289 | through2 "2.X" 1290 | vinyl "1.X" 1291 | 1292 | gulp-uglify@^3.0.0: 1293 | version "3.0.0" 1294 | resolved "https://registry.yarnpkg.com/gulp-uglify/-/gulp-uglify-3.0.0.tgz#0df0331d72a0d302e3e37e109485dddf33c6d1ca" 1295 | dependencies: 1296 | gulplog "^1.0.0" 1297 | has-gulplog "^0.1.0" 1298 | lodash "^4.13.1" 1299 | make-error-cause "^1.1.1" 1300 | through2 "^2.0.0" 1301 | uglify-js "^3.0.5" 1302 | vinyl-sourcemaps-apply "^0.2.0" 1303 | 1304 | gulp-util@^3.0.0, gulp-util@^3.0.4, gulp-util@^3.0.6, gulp-util@^3.0.7: 1305 | version "3.0.8" 1306 | resolved "https://registry.yarnpkg.com/gulp-util/-/gulp-util-3.0.8.tgz#0054e1e744502e27c04c187c3ecc505dd54bbb4f" 1307 | dependencies: 1308 | array-differ "^1.0.0" 1309 | array-uniq "^1.0.2" 1310 | beeper "^1.0.0" 1311 | chalk "^1.0.0" 1312 | dateformat "^2.0.0" 1313 | fancy-log "^1.1.0" 1314 | gulplog "^1.0.0" 1315 | has-gulplog "^0.1.0" 1316 | lodash._reescape "^3.0.0" 1317 | lodash._reevaluate "^3.0.0" 1318 | lodash._reinterpolate "^3.0.0" 1319 | lodash.template "^3.0.0" 1320 | minimist "^1.1.0" 1321 | multipipe "^0.1.2" 1322 | object-assign "^3.0.0" 1323 | replace-ext "0.0.1" 1324 | through2 "^2.0.0" 1325 | vinyl "^0.5.0" 1326 | 1327 | gulp-wrapper@^1.0.0: 1328 | version "1.0.0" 1329 | resolved "https://registry.yarnpkg.com/gulp-wrapper/-/gulp-wrapper-1.0.0.tgz#2bd3c3c852921d209ea448eac2810811dd6a2bf3" 1330 | dependencies: 1331 | gulp-util "^3.0.4" 1332 | through2 "^0.6.5" 1333 | 1334 | "gulp@github:gulpjs/gulp#4.0": 1335 | version "4.0.0-alpha.2" 1336 | resolved "https://codeload.github.com/gulpjs/gulp/tar.gz/6d71a658c61edb3090221579d8f97dbe086ba2ed" 1337 | dependencies: 1338 | glob-watcher "^3.0.0" 1339 | gulp-cli "^1.0.0" 1340 | undertaker "^1.0.0" 1341 | vinyl-fs "^2.0.0" 1342 | 1343 | gulplog@^1.0.0: 1344 | version "1.0.0" 1345 | resolved "https://registry.yarnpkg.com/gulplog/-/gulplog-1.0.0.tgz#e28c4d45d05ecbbed818363ce8f9c5926229ffe5" 1346 | dependencies: 1347 | glogg "^1.0.0" 1348 | 1349 | har-schema@^1.0.5: 1350 | version "1.0.5" 1351 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1352 | 1353 | har-validator@~4.2.1: 1354 | version "4.2.1" 1355 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1356 | dependencies: 1357 | ajv "^4.9.1" 1358 | har-schema "^1.0.5" 1359 | 1360 | has-ansi@^2.0.0: 1361 | version "2.0.0" 1362 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1363 | dependencies: 1364 | ansi-regex "^2.0.0" 1365 | 1366 | has-gulplog@^0.1.0: 1367 | version "0.1.0" 1368 | resolved "https://registry.yarnpkg.com/has-gulplog/-/has-gulplog-0.1.0.tgz#6414c82913697da51590397dafb12f22967811ce" 1369 | dependencies: 1370 | sparkles "^1.0.0" 1371 | 1372 | has-unicode@^2.0.0: 1373 | version "2.0.1" 1374 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1375 | 1376 | hawk@~3.1.3: 1377 | version "3.1.3" 1378 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1379 | dependencies: 1380 | boom "2.x.x" 1381 | cryptiles "2.x.x" 1382 | hoek "2.x.x" 1383 | sntp "1.x.x" 1384 | 1385 | hoek@2.x.x: 1386 | version "2.16.3" 1387 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1388 | 1389 | home-or-tmp@^2.0.0: 1390 | version "2.0.0" 1391 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1392 | dependencies: 1393 | os-homedir "^1.0.0" 1394 | os-tmpdir "^1.0.1" 1395 | 1396 | homedir-polyfill@^1.0.0, homedir-polyfill@^1.0.1: 1397 | version "1.0.1" 1398 | resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz#4c2bbc8a758998feebf5ed68580f76d46768b4bc" 1399 | dependencies: 1400 | parse-passwd "^1.0.0" 1401 | 1402 | http-signature@~1.1.0: 1403 | version "1.1.1" 1404 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1405 | dependencies: 1406 | assert-plus "^0.2.0" 1407 | jsprim "^1.2.2" 1408 | sshpk "^1.7.0" 1409 | 1410 | inflight@^1.0.4: 1411 | version "1.0.6" 1412 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1413 | dependencies: 1414 | once "^1.3.0" 1415 | wrappy "1" 1416 | 1417 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 1418 | version "2.0.3" 1419 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1420 | 1421 | ini@^1.3.4, ini@~1.3.0: 1422 | version "1.3.4" 1423 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1424 | 1425 | interpret@^1.0.0: 1426 | version "1.0.3" 1427 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90" 1428 | 1429 | invariant@^2.2.2: 1430 | version "2.2.2" 1431 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1432 | dependencies: 1433 | loose-envify "^1.0.0" 1434 | 1435 | invert-kv@^1.0.0: 1436 | version "1.0.0" 1437 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1438 | 1439 | is-absolute@^0.2.3: 1440 | version "0.2.6" 1441 | resolved "https://registry.yarnpkg.com/is-absolute/-/is-absolute-0.2.6.tgz#20de69f3db942ef2d87b9c2da36f172235b1b5eb" 1442 | dependencies: 1443 | is-relative "^0.2.1" 1444 | is-windows "^0.2.0" 1445 | 1446 | is-binary-path@^1.0.0: 1447 | version "1.0.1" 1448 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1449 | dependencies: 1450 | binary-extensions "^1.0.0" 1451 | 1452 | is-buffer@^1.1.5: 1453 | version "1.1.5" 1454 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1455 | 1456 | is-dotfile@^1.0.0: 1457 | version "1.0.3" 1458 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1459 | 1460 | is-equal-shallow@^0.1.3: 1461 | version "0.1.3" 1462 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1463 | dependencies: 1464 | is-primitive "^2.0.0" 1465 | 1466 | is-extendable@^0.1.0, is-extendable@^0.1.1: 1467 | version "0.1.1" 1468 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1469 | 1470 | is-extglob@^1.0.0: 1471 | version "1.0.0" 1472 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1473 | 1474 | is-extglob@^2.1.0: 1475 | version "2.1.1" 1476 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1477 | 1478 | is-finite@^1.0.0: 1479 | version "1.0.2" 1480 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1481 | dependencies: 1482 | number-is-nan "^1.0.0" 1483 | 1484 | is-fullwidth-code-point@^1.0.0: 1485 | version "1.0.0" 1486 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1487 | dependencies: 1488 | number-is-nan "^1.0.0" 1489 | 1490 | is-glob@^2.0.0, is-glob@^2.0.1: 1491 | version "2.0.1" 1492 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1493 | dependencies: 1494 | is-extglob "^1.0.0" 1495 | 1496 | is-glob@^3.1.0: 1497 | version "3.1.0" 1498 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 1499 | dependencies: 1500 | is-extglob "^2.1.0" 1501 | 1502 | is-number@^2.1.0: 1503 | version "2.1.0" 1504 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1505 | dependencies: 1506 | kind-of "^3.0.2" 1507 | 1508 | is-number@^3.0.0: 1509 | version "3.0.0" 1510 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1511 | dependencies: 1512 | kind-of "^3.0.2" 1513 | 1514 | is-plain-object@^2.0.1, is-plain-object@^2.0.3: 1515 | version "2.0.4" 1516 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 1517 | dependencies: 1518 | isobject "^3.0.1" 1519 | 1520 | is-posix-bracket@^0.1.0: 1521 | version "0.1.1" 1522 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1523 | 1524 | is-primitive@^2.0.0: 1525 | version "2.0.0" 1526 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1527 | 1528 | is-promise@^2.1: 1529 | version "2.1.0" 1530 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1531 | 1532 | is-relative@^0.2.1: 1533 | version "0.2.1" 1534 | resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-0.2.1.tgz#d27f4c7d516d175fb610db84bbeef23c3bc97aa5" 1535 | dependencies: 1536 | is-unc-path "^0.1.1" 1537 | 1538 | is-stream@^1.0.1: 1539 | version "1.1.0" 1540 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1541 | 1542 | is-typedarray@~1.0.0: 1543 | version "1.0.0" 1544 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1545 | 1546 | is-unc-path@^0.1.1: 1547 | version "0.1.2" 1548 | resolved "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-0.1.2.tgz#6ab053a72573c10250ff416a3814c35178af39b9" 1549 | dependencies: 1550 | unc-path-regex "^0.1.0" 1551 | 1552 | is-utf8@^0.2.0: 1553 | version "0.2.1" 1554 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1555 | 1556 | is-valid-glob@^0.3.0: 1557 | version "0.3.0" 1558 | resolved "https://registry.yarnpkg.com/is-valid-glob/-/is-valid-glob-0.3.0.tgz#d4b55c69f51886f9b65c70d6c2622d37e29f48fe" 1559 | 1560 | is-windows@^0.2.0: 1561 | version "0.2.0" 1562 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-0.2.0.tgz#de1aa6d63ea29dd248737b69f1ff8b8002d2108c" 1563 | 1564 | isarray@0.0.1: 1565 | version "0.0.1" 1566 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1567 | 1568 | isarray@1.0.0, isarray@~1.0.0: 1569 | version "1.0.0" 1570 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1571 | 1572 | isexe@^2.0.0: 1573 | version "2.0.0" 1574 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1575 | 1576 | isobject@^2.0.0: 1577 | version "2.1.0" 1578 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1579 | dependencies: 1580 | isarray "1.0.0" 1581 | 1582 | isobject@^3.0.0, isobject@^3.0.1: 1583 | version "3.0.1" 1584 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 1585 | 1586 | isstream@~0.1.2: 1587 | version "0.1.2" 1588 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1589 | 1590 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1591 | version "3.0.2" 1592 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1593 | 1594 | jsbn@~0.1.0: 1595 | version "0.1.1" 1596 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1597 | 1598 | jsesc@^1.3.0: 1599 | version "1.3.0" 1600 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1601 | 1602 | jsesc@~0.5.0: 1603 | version "0.5.0" 1604 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1605 | 1606 | json-schema@0.2.3: 1607 | version "0.2.3" 1608 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1609 | 1610 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 1611 | version "1.0.1" 1612 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1613 | dependencies: 1614 | jsonify "~0.0.0" 1615 | 1616 | json-stringify-safe@~5.0.1: 1617 | version "5.0.1" 1618 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1619 | 1620 | json5@^0.5.1: 1621 | version "0.5.1" 1622 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1623 | 1624 | jsonify@~0.0.0: 1625 | version "0.0.0" 1626 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1627 | 1628 | jsprim@^1.2.2: 1629 | version "1.4.1" 1630 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1631 | dependencies: 1632 | assert-plus "1.0.0" 1633 | extsprintf "1.3.0" 1634 | json-schema "0.2.3" 1635 | verror "1.10.0" 1636 | 1637 | kind-of@^3.0.2, kind-of@^3.1.0: 1638 | version "3.2.2" 1639 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1640 | dependencies: 1641 | is-buffer "^1.1.5" 1642 | 1643 | kind-of@^4.0.0: 1644 | version "4.0.0" 1645 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1646 | dependencies: 1647 | is-buffer "^1.1.5" 1648 | 1649 | last-run@^1.1.0: 1650 | version "1.1.1" 1651 | resolved "https://registry.yarnpkg.com/last-run/-/last-run-1.1.1.tgz#45b96942c17b1c79c772198259ba943bebf8ca5b" 1652 | dependencies: 1653 | default-resolution "^2.0.0" 1654 | es6-weak-map "^2.0.1" 1655 | 1656 | lazystream@^1.0.0: 1657 | version "1.0.0" 1658 | resolved "https://registry.yarnpkg.com/lazystream/-/lazystream-1.0.0.tgz#f6995fe0f820392f61396be89462407bb77168e4" 1659 | dependencies: 1660 | readable-stream "^2.0.5" 1661 | 1662 | lcid@^1.0.0: 1663 | version "1.0.0" 1664 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1665 | dependencies: 1666 | invert-kv "^1.0.0" 1667 | 1668 | liftoff@^2.3.0: 1669 | version "2.3.0" 1670 | resolved "https://registry.yarnpkg.com/liftoff/-/liftoff-2.3.0.tgz#a98f2ff67183d8ba7cfaca10548bd7ff0550b385" 1671 | dependencies: 1672 | extend "^3.0.0" 1673 | findup-sync "^0.4.2" 1674 | fined "^1.0.1" 1675 | flagged-respawn "^0.3.2" 1676 | lodash.isplainobject "^4.0.4" 1677 | lodash.isstring "^4.0.1" 1678 | lodash.mapvalues "^4.4.0" 1679 | rechoir "^0.6.2" 1680 | resolve "^1.1.7" 1681 | 1682 | lodash._basecopy@^3.0.0: 1683 | version "3.0.1" 1684 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1685 | 1686 | lodash._basetostring@^3.0.0: 1687 | version "3.0.1" 1688 | resolved "https://registry.yarnpkg.com/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz#d1861d877f824a52f669832dcaf3ee15566a07d5" 1689 | 1690 | lodash._basevalues@^3.0.0: 1691 | version "3.0.0" 1692 | resolved "https://registry.yarnpkg.com/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz#5b775762802bde3d3297503e26300820fdf661b7" 1693 | 1694 | lodash._getnative@^3.0.0: 1695 | version "3.9.1" 1696 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1697 | 1698 | lodash._isiterateecall@^3.0.0: 1699 | version "3.0.9" 1700 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 1701 | 1702 | lodash._reescape@^3.0.0: 1703 | version "3.0.0" 1704 | resolved "https://registry.yarnpkg.com/lodash._reescape/-/lodash._reescape-3.0.0.tgz#2b1d6f5dfe07c8a355753e5f27fac7f1cde1616a" 1705 | 1706 | lodash._reevaluate@^3.0.0: 1707 | version "3.0.0" 1708 | resolved "https://registry.yarnpkg.com/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz#58bc74c40664953ae0b124d806996daca431e2ed" 1709 | 1710 | lodash._reinterpolate@^3.0.0: 1711 | version "3.0.0" 1712 | resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" 1713 | 1714 | lodash._root@^3.0.0: 1715 | version "3.0.1" 1716 | resolved "https://registry.yarnpkg.com/lodash._root/-/lodash._root-3.0.1.tgz#fba1c4524c19ee9a5f8136b4609f017cf4ded692" 1717 | 1718 | lodash.debounce@^4.0.6: 1719 | version "4.0.8" 1720 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" 1721 | 1722 | lodash.escape@^3.0.0: 1723 | version "3.2.0" 1724 | resolved "https://registry.yarnpkg.com/lodash.escape/-/lodash.escape-3.2.0.tgz#995ee0dc18c1b48cc92effae71a10aab5b487698" 1725 | dependencies: 1726 | lodash._root "^3.0.0" 1727 | 1728 | lodash.isarguments@^3.0.0: 1729 | version "3.1.0" 1730 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 1731 | 1732 | lodash.isarray@^3.0.0: 1733 | version "3.0.4" 1734 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 1735 | 1736 | lodash.isequal@^4.0.0: 1737 | version "4.5.0" 1738 | resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" 1739 | 1740 | lodash.isfunction@^3.0.8: 1741 | version "3.0.8" 1742 | resolved "https://registry.yarnpkg.com/lodash.isfunction/-/lodash.isfunction-3.0.8.tgz#4db709fc81bc4a8fd7127a458a5346c5cdce2c6b" 1743 | 1744 | lodash.isplainobject@^4.0.4: 1745 | version "4.0.6" 1746 | resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" 1747 | 1748 | lodash.isstring@^4.0.1: 1749 | version "4.0.1" 1750 | resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451" 1751 | 1752 | lodash.keys@^3.0.0: 1753 | version "3.1.2" 1754 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 1755 | dependencies: 1756 | lodash._getnative "^3.0.0" 1757 | lodash.isarguments "^3.0.0" 1758 | lodash.isarray "^3.0.0" 1759 | 1760 | lodash.mapvalues@^4.4.0: 1761 | version "4.6.0" 1762 | resolved "https://registry.yarnpkg.com/lodash.mapvalues/-/lodash.mapvalues-4.6.0.tgz#1bafa5005de9dd6f4f26668c30ca37230cc9689c" 1763 | 1764 | lodash.restparam@^3.0.0: 1765 | version "3.6.1" 1766 | resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" 1767 | 1768 | lodash.sortby@^4.5.0: 1769 | version "4.7.0" 1770 | resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" 1771 | 1772 | lodash.template@^3.0.0: 1773 | version "3.6.2" 1774 | resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-3.6.2.tgz#f8cdecc6169a255be9098ae8b0c53d378931d14f" 1775 | dependencies: 1776 | lodash._basecopy "^3.0.0" 1777 | lodash._basetostring "^3.0.0" 1778 | lodash._basevalues "^3.0.0" 1779 | lodash._isiterateecall "^3.0.0" 1780 | lodash._reinterpolate "^3.0.0" 1781 | lodash.escape "^3.0.0" 1782 | lodash.keys "^3.0.0" 1783 | lodash.restparam "^3.0.0" 1784 | lodash.templatesettings "^3.0.0" 1785 | 1786 | lodash.templatesettings@^3.0.0: 1787 | version "3.1.1" 1788 | resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz#fb307844753b66b9f1afa54e262c745307dba8e5" 1789 | dependencies: 1790 | lodash._reinterpolate "^3.0.0" 1791 | lodash.escape "^3.0.0" 1792 | 1793 | lodash@^4.13.1, lodash@^4.17.4: 1794 | version "4.17.4" 1795 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1796 | 1797 | loose-envify@^1.0.0: 1798 | version "1.3.1" 1799 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1800 | dependencies: 1801 | js-tokens "^3.0.0" 1802 | 1803 | lru-queue@0.1: 1804 | version "0.1.0" 1805 | resolved "https://registry.yarnpkg.com/lru-queue/-/lru-queue-0.1.0.tgz#2738bd9f0d3cf4f84490c5736c48699ac632cda3" 1806 | dependencies: 1807 | es5-ext "~0.10.2" 1808 | 1809 | make-error-cause@^1.1.1: 1810 | version "1.2.2" 1811 | resolved "https://registry.yarnpkg.com/make-error-cause/-/make-error-cause-1.2.2.tgz#df0388fcd0b37816dff0a5fb8108939777dcbc9d" 1812 | dependencies: 1813 | make-error "^1.2.0" 1814 | 1815 | make-error@^1.2.0: 1816 | version "1.3.0" 1817 | resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.0.tgz#52ad3a339ccf10ce62b4040b708fe707244b8b96" 1818 | 1819 | make-iterator@^1.0.0: 1820 | version "1.0.0" 1821 | resolved "https://registry.yarnpkg.com/make-iterator/-/make-iterator-1.0.0.tgz#57bef5dc85d23923ba23767324d8e8f8f3d9694b" 1822 | dependencies: 1823 | kind-of "^3.1.0" 1824 | 1825 | map-cache@^0.2.0: 1826 | version "0.2.2" 1827 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 1828 | 1829 | matchdep@^1.0.0: 1830 | version "1.0.1" 1831 | resolved "https://registry.yarnpkg.com/matchdep/-/matchdep-1.0.1.tgz#a57a33804491fbae208aba8f68380437abc2dca5" 1832 | dependencies: 1833 | findup-sync "~0.3.0" 1834 | micromatch "^2.3.7" 1835 | resolve "~1.1.6" 1836 | stack-trace "0.0.9" 1837 | 1838 | memoizee@^0.4.5: 1839 | version "0.4.9" 1840 | resolved "https://registry.yarnpkg.com/memoizee/-/memoizee-0.4.9.tgz#ea1c005f5c4c31d89a4a10e24db83fbf61cdd4f3" 1841 | dependencies: 1842 | d "1" 1843 | es5-ext "^0.10.30" 1844 | es6-weak-map "^2.0.2" 1845 | event-emitter "^0.3.5" 1846 | is-promise "^2.1" 1847 | lru-queue "0.1" 1848 | next-tick "1" 1849 | timers-ext "^0.1.2" 1850 | 1851 | merge-stream@^1.0.0: 1852 | version "1.0.1" 1853 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" 1854 | dependencies: 1855 | readable-stream "^2.0.1" 1856 | 1857 | merge@^1.2.0: 1858 | version "1.2.0" 1859 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 1860 | 1861 | micromatch@^2.1.5, micromatch@^2.3.7: 1862 | version "2.3.11" 1863 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1864 | dependencies: 1865 | arr-diff "^2.0.0" 1866 | array-unique "^0.2.1" 1867 | braces "^1.8.2" 1868 | expand-brackets "^0.1.4" 1869 | extglob "^0.3.1" 1870 | filename-regex "^2.0.0" 1871 | is-extglob "^1.0.0" 1872 | is-glob "^2.0.1" 1873 | kind-of "^3.0.2" 1874 | normalize-path "^2.0.1" 1875 | object.omit "^2.0.0" 1876 | parse-glob "^3.0.4" 1877 | regex-cache "^0.4.2" 1878 | 1879 | mime-db@~1.30.0: 1880 | version "1.30.0" 1881 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 1882 | 1883 | mime-types@^2.1.12, mime-types@~2.1.7: 1884 | version "2.1.17" 1885 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 1886 | dependencies: 1887 | mime-db "~1.30.0" 1888 | 1889 | "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 1890 | version "3.0.4" 1891 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1892 | dependencies: 1893 | brace-expansion "^1.1.7" 1894 | 1895 | minimist@0.0.8: 1896 | version "0.0.8" 1897 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1898 | 1899 | minimist@^1.1.0, minimist@^1.2.0: 1900 | version "1.2.0" 1901 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1902 | 1903 | minimist@~0.0.1: 1904 | version "0.0.10" 1905 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 1906 | 1907 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1: 1908 | version "0.5.1" 1909 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1910 | dependencies: 1911 | minimist "0.0.8" 1912 | 1913 | ms@0.7.2: 1914 | version "0.7.2" 1915 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 1916 | 1917 | ms@2.0.0: 1918 | version "2.0.0" 1919 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1920 | 1921 | multimatch@^2.0.0: 1922 | version "2.1.0" 1923 | resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" 1924 | dependencies: 1925 | array-differ "^1.0.0" 1926 | array-union "^1.0.1" 1927 | arrify "^1.0.0" 1928 | minimatch "^3.0.0" 1929 | 1930 | multipipe@^0.1.2: 1931 | version "0.1.2" 1932 | resolved "https://registry.yarnpkg.com/multipipe/-/multipipe-0.1.2.tgz#2a8f2ddf70eed564dff2d57f1e1a137d9f05078b" 1933 | dependencies: 1934 | duplexer2 "0.0.2" 1935 | 1936 | mute-stdout@^1.0.0: 1937 | version "1.0.0" 1938 | resolved "https://registry.yarnpkg.com/mute-stdout/-/mute-stdout-1.0.0.tgz#5b32ea07eb43c9ded6130434cf926f46b2a7fd4d" 1939 | 1940 | nan@^2.3.0: 1941 | version "2.7.0" 1942 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46" 1943 | 1944 | next-tick@1: 1945 | version "1.0.0" 1946 | resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c" 1947 | 1948 | ng-annotate@^1.2.1: 1949 | version "1.2.2" 1950 | resolved "https://registry.yarnpkg.com/ng-annotate/-/ng-annotate-1.2.2.tgz#dc3fc51ba0b2f8b385dbe047f4da06f580a1fd61" 1951 | dependencies: 1952 | acorn "~2.6.4" 1953 | alter "~0.2.0" 1954 | convert-source-map "~1.1.2" 1955 | optimist "~0.6.1" 1956 | ordered-ast-traverse "~1.1.1" 1957 | simple-fmt "~0.1.0" 1958 | simple-is "~0.2.0" 1959 | source-map "~0.5.3" 1960 | stable "~0.1.5" 1961 | stringmap "~0.2.2" 1962 | stringset "~0.2.1" 1963 | tryor "~0.1.2" 1964 | 1965 | node-pre-gyp@^0.6.36: 1966 | version "0.6.36" 1967 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz#db604112cb74e0d477554e9b505b17abddfab786" 1968 | dependencies: 1969 | mkdirp "^0.5.1" 1970 | nopt "^4.0.1" 1971 | npmlog "^4.0.2" 1972 | rc "^1.1.7" 1973 | request "^2.81.0" 1974 | rimraf "^2.6.1" 1975 | semver "^5.3.0" 1976 | tar "^2.2.1" 1977 | tar-pack "^3.4.0" 1978 | 1979 | nopt@^4.0.1: 1980 | version "4.0.1" 1981 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1982 | dependencies: 1983 | abbrev "1" 1984 | osenv "^0.1.4" 1985 | 1986 | normalize-path@^2.0.0, normalize-path@^2.0.1, normalize-path@^2.1.1: 1987 | version "2.1.1" 1988 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1989 | dependencies: 1990 | remove-trailing-separator "^1.0.1" 1991 | 1992 | now-and-later@^2.0.0: 1993 | version "2.0.0" 1994 | resolved "https://registry.yarnpkg.com/now-and-later/-/now-and-later-2.0.0.tgz#bc61cbb456d79cb32207ce47ca05136ff2e7d6ee" 1995 | dependencies: 1996 | once "^1.3.2" 1997 | 1998 | npmlog@^4.0.2: 1999 | version "4.1.2" 2000 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2001 | dependencies: 2002 | are-we-there-yet "~1.1.2" 2003 | console-control-strings "~1.1.0" 2004 | gauge "~2.7.3" 2005 | set-blocking "~2.0.0" 2006 | 2007 | number-is-nan@^1.0.0: 2008 | version "1.0.1" 2009 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2010 | 2011 | oauth-sign@~0.8.1: 2012 | version "0.8.2" 2013 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2014 | 2015 | object-assign@4.1.0: 2016 | version "4.1.0" 2017 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0" 2018 | 2019 | object-assign@^3.0.0: 2020 | version "3.0.0" 2021 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2" 2022 | 2023 | object-assign@^4.0.0, object-assign@^4.1.0: 2024 | version "4.1.1" 2025 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2026 | 2027 | object.defaults@^1.0.0, object.defaults@^1.1.0: 2028 | version "1.1.0" 2029 | resolved "https://registry.yarnpkg.com/object.defaults/-/object.defaults-1.1.0.tgz#3a7f868334b407dea06da16d88d5cd29e435fecf" 2030 | dependencies: 2031 | array-each "^1.0.1" 2032 | array-slice "^1.0.0" 2033 | for-own "^1.0.0" 2034 | isobject "^3.0.0" 2035 | 2036 | object.omit@^2.0.0: 2037 | version "2.0.1" 2038 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2039 | dependencies: 2040 | for-own "^0.1.4" 2041 | is-extendable "^0.1.1" 2042 | 2043 | object.pick@^1.2.0: 2044 | version "1.3.0" 2045 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 2046 | dependencies: 2047 | isobject "^3.0.1" 2048 | 2049 | object.reduce@^1.0.0: 2050 | version "1.0.1" 2051 | resolved "https://registry.yarnpkg.com/object.reduce/-/object.reduce-1.0.1.tgz#6fe348f2ac7fa0f95ca621226599096825bb03ad" 2052 | dependencies: 2053 | for-own "^1.0.0" 2054 | make-iterator "^1.0.0" 2055 | 2056 | once@^1.3.0, once@^1.3.2, once@^1.3.3, once@^1.4.0: 2057 | version "1.4.0" 2058 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2059 | dependencies: 2060 | wrappy "1" 2061 | 2062 | optimist@~0.6.1: 2063 | version "0.6.1" 2064 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2065 | dependencies: 2066 | minimist "~0.0.1" 2067 | wordwrap "~0.0.2" 2068 | 2069 | ordered-ast-traverse@~1.1.1: 2070 | version "1.1.1" 2071 | resolved "https://registry.yarnpkg.com/ordered-ast-traverse/-/ordered-ast-traverse-1.1.1.tgz#6843a170bc0eee8b520cc8ddc1ddd3aa30fa057c" 2072 | dependencies: 2073 | ordered-esprima-props "~1.1.0" 2074 | 2075 | ordered-esprima-props@~1.1.0: 2076 | version "1.1.0" 2077 | resolved "https://registry.yarnpkg.com/ordered-esprima-props/-/ordered-esprima-props-1.1.0.tgz#a9827086df5f010aa60e9bd02b6e0335cea2ffcb" 2078 | 2079 | ordered-read-streams@^0.3.0: 2080 | version "0.3.0" 2081 | resolved "https://registry.yarnpkg.com/ordered-read-streams/-/ordered-read-streams-0.3.0.tgz#7137e69b3298bb342247a1bbee3881c80e2fd78b" 2082 | dependencies: 2083 | is-stream "^1.0.1" 2084 | readable-stream "^2.0.1" 2085 | 2086 | os-homedir@^1.0.0, os-homedir@^1.0.1: 2087 | version "1.0.2" 2088 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2089 | 2090 | os-locale@^1.4.0: 2091 | version "1.4.0" 2092 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2093 | dependencies: 2094 | lcid "^1.0.0" 2095 | 2096 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2097 | version "1.0.2" 2098 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2099 | 2100 | osenv@^0.1.4: 2101 | version "0.1.4" 2102 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2103 | dependencies: 2104 | os-homedir "^1.0.0" 2105 | os-tmpdir "^1.0.0" 2106 | 2107 | parse-filepath@^1.0.1: 2108 | version "1.0.1" 2109 | resolved "https://registry.yarnpkg.com/parse-filepath/-/parse-filepath-1.0.1.tgz#159d6155d43904d16c10ef698911da1e91969b73" 2110 | dependencies: 2111 | is-absolute "^0.2.3" 2112 | map-cache "^0.2.0" 2113 | path-root "^0.1.1" 2114 | 2115 | parse-glob@^3.0.4: 2116 | version "3.0.4" 2117 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2118 | dependencies: 2119 | glob-base "^0.3.0" 2120 | is-dotfile "^1.0.0" 2121 | is-extglob "^1.0.0" 2122 | is-glob "^2.0.0" 2123 | 2124 | parse-passwd@^1.0.0: 2125 | version "1.0.0" 2126 | resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" 2127 | 2128 | path-dirname@^1.0.0: 2129 | version "1.0.2" 2130 | resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" 2131 | 2132 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2133 | version "1.0.1" 2134 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2135 | 2136 | path-parse@^1.0.5: 2137 | version "1.0.5" 2138 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2139 | 2140 | path-root-regex@^0.1.0: 2141 | version "0.1.2" 2142 | resolved "https://registry.yarnpkg.com/path-root-regex/-/path-root-regex-0.1.2.tgz#bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d" 2143 | 2144 | path-root@^0.1.1: 2145 | version "0.1.1" 2146 | resolved "https://registry.yarnpkg.com/path-root/-/path-root-0.1.1.tgz#9a4a6814cac1c0cd73360a95f32083c8ea4745b7" 2147 | dependencies: 2148 | path-root-regex "^0.1.0" 2149 | 2150 | performance-now@^0.2.0: 2151 | version "0.2.0" 2152 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2153 | 2154 | preserve@^0.2.0: 2155 | version "0.2.0" 2156 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2157 | 2158 | pretty-hrtime@^1.0.0: 2159 | version "1.0.3" 2160 | resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" 2161 | 2162 | private@^0.1.6, private@^0.1.7: 2163 | version "0.1.7" 2164 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2165 | 2166 | process-nextick-args@^1.0.6, process-nextick-args@^1.0.7, process-nextick-args@~1.0.6: 2167 | version "1.0.7" 2168 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2169 | 2170 | punycode@^1.4.1: 2171 | version "1.4.1" 2172 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2173 | 2174 | qs@~6.4.0: 2175 | version "6.4.0" 2176 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2177 | 2178 | randomatic@^1.1.3: 2179 | version "1.1.7" 2180 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2181 | dependencies: 2182 | is-number "^3.0.0" 2183 | kind-of "^4.0.0" 2184 | 2185 | rc@^1.1.7: 2186 | version "1.2.1" 2187 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 2188 | dependencies: 2189 | deep-extend "~0.4.0" 2190 | ini "~1.3.0" 2191 | minimist "^1.2.0" 2192 | strip-json-comments "~2.0.1" 2193 | 2194 | "readable-stream@>=1.0.33-1 <1.1.0-0": 2195 | version "1.0.34" 2196 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" 2197 | dependencies: 2198 | core-util-is "~1.0.0" 2199 | inherits "~2.0.1" 2200 | isarray "0.0.1" 2201 | string_decoder "~0.10.x" 2202 | 2203 | readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.4, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5: 2204 | version "2.3.3" 2205 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 2206 | dependencies: 2207 | core-util-is "~1.0.0" 2208 | inherits "~2.0.3" 2209 | isarray "~1.0.0" 2210 | process-nextick-args "~1.0.6" 2211 | safe-buffer "~5.1.1" 2212 | string_decoder "~1.0.3" 2213 | util-deprecate "~1.0.1" 2214 | 2215 | readable-stream@~1.1.9: 2216 | version "1.1.14" 2217 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" 2218 | dependencies: 2219 | core-util-is "~1.0.0" 2220 | inherits "~2.0.1" 2221 | isarray "0.0.1" 2222 | string_decoder "~0.10.x" 2223 | 2224 | readdirp@^2.0.0: 2225 | version "2.1.0" 2226 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2227 | dependencies: 2228 | graceful-fs "^4.1.2" 2229 | minimatch "^3.0.2" 2230 | readable-stream "^2.0.2" 2231 | set-immediate-shim "^1.0.1" 2232 | 2233 | rechoir@^0.6.2: 2234 | version "0.6.2" 2235 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 2236 | dependencies: 2237 | resolve "^1.1.6" 2238 | 2239 | regenerate@^1.2.1: 2240 | version "1.3.2" 2241 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 2242 | 2243 | regenerator-runtime@^0.11.0: 2244 | version "0.11.0" 2245 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1" 2246 | 2247 | regenerator-transform@^0.10.0: 2248 | version "0.10.1" 2249 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 2250 | dependencies: 2251 | babel-runtime "^6.18.0" 2252 | babel-types "^6.19.0" 2253 | private "^0.1.6" 2254 | 2255 | regex-cache@^0.4.2: 2256 | version "0.4.4" 2257 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2258 | dependencies: 2259 | is-equal-shallow "^0.1.3" 2260 | 2261 | regexpu-core@^2.0.0: 2262 | version "2.0.0" 2263 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2264 | dependencies: 2265 | regenerate "^1.2.1" 2266 | regjsgen "^0.2.0" 2267 | regjsparser "^0.1.4" 2268 | 2269 | regjsgen@^0.2.0: 2270 | version "0.2.0" 2271 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2272 | 2273 | regjsparser@^0.1.4: 2274 | version "0.1.5" 2275 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2276 | dependencies: 2277 | jsesc "~0.5.0" 2278 | 2279 | remove-trailing-separator@^1.0.1: 2280 | version "1.1.0" 2281 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2282 | 2283 | repeat-element@^1.1.2: 2284 | version "1.1.2" 2285 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2286 | 2287 | repeat-string@^1.5.2: 2288 | version "1.6.1" 2289 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2290 | 2291 | repeating@^2.0.0: 2292 | version "2.0.1" 2293 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2294 | dependencies: 2295 | is-finite "^1.0.0" 2296 | 2297 | replace-ext@0.0.1: 2298 | version "0.0.1" 2299 | resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-0.0.1.tgz#29bbd92078a739f0bcce2b4ee41e837953522924" 2300 | 2301 | replace-ext@^1.0.0: 2302 | version "1.0.0" 2303 | resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb" 2304 | 2305 | request@^2.81.0: 2306 | version "2.81.0" 2307 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2308 | dependencies: 2309 | aws-sign2 "~0.6.0" 2310 | aws4 "^1.2.1" 2311 | caseless "~0.12.0" 2312 | combined-stream "~1.0.5" 2313 | extend "~3.0.0" 2314 | forever-agent "~0.6.1" 2315 | form-data "~2.1.1" 2316 | har-validator "~4.2.1" 2317 | hawk "~3.1.3" 2318 | http-signature "~1.1.0" 2319 | is-typedarray "~1.0.0" 2320 | isstream "~0.1.2" 2321 | json-stringify-safe "~5.0.1" 2322 | mime-types "~2.1.7" 2323 | oauth-sign "~0.8.1" 2324 | performance-now "^0.2.0" 2325 | qs "~6.4.0" 2326 | safe-buffer "^5.0.1" 2327 | stringstream "~0.0.4" 2328 | tough-cookie "~2.3.0" 2329 | tunnel-agent "^0.6.0" 2330 | uuid "^3.0.0" 2331 | 2332 | resolve-dir@^0.1.0: 2333 | version "0.1.1" 2334 | resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-0.1.1.tgz#b219259a5602fac5c5c496ad894a6e8cc430261e" 2335 | dependencies: 2336 | expand-tilde "^1.2.2" 2337 | global-modules "^0.2.3" 2338 | 2339 | resolve-url@~0.2.1: 2340 | version "0.2.1" 2341 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 2342 | 2343 | resolve@^1.1.6, resolve@^1.1.7: 2344 | version "1.4.0" 2345 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86" 2346 | dependencies: 2347 | path-parse "^1.0.5" 2348 | 2349 | resolve@~1.1.6: 2350 | version "1.1.7" 2351 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2352 | 2353 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: 2354 | version "2.6.1" 2355 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 2356 | dependencies: 2357 | glob "^7.0.5" 2358 | 2359 | safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2360 | version "5.1.1" 2361 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2362 | 2363 | semver-greatest-satisfied-range@^1.0.0: 2364 | version "1.1.0" 2365 | resolved "https://registry.yarnpkg.com/semver-greatest-satisfied-range/-/semver-greatest-satisfied-range-1.1.0.tgz#13e8c2658ab9691cb0cd71093240280d36f77a5b" 2366 | dependencies: 2367 | sver-compat "^1.5.0" 2368 | 2369 | semver@^5.3.0: 2370 | version "5.4.1" 2371 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 2372 | 2373 | set-blocking@~2.0.0: 2374 | version "2.0.0" 2375 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2376 | 2377 | set-immediate-shim@^1.0.1: 2378 | version "1.0.1" 2379 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2380 | 2381 | signal-exit@^3.0.0: 2382 | version "3.0.2" 2383 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2384 | 2385 | simple-fmt@~0.1.0: 2386 | version "0.1.0" 2387 | resolved "https://registry.yarnpkg.com/simple-fmt/-/simple-fmt-0.1.0.tgz#191bf566a59e6530482cb25ab53b4a8dc85c3a6b" 2388 | 2389 | simple-is@~0.2.0: 2390 | version "0.2.0" 2391 | resolved "https://registry.yarnpkg.com/simple-is/-/simple-is-0.2.0.tgz#2abb75aade39deb5cc815ce10e6191164850baf0" 2392 | 2393 | slash@^1.0.0: 2394 | version "1.0.0" 2395 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2396 | 2397 | sntp@1.x.x: 2398 | version "1.0.9" 2399 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2400 | dependencies: 2401 | hoek "2.x.x" 2402 | 2403 | source-map-resolve@^0.3.0: 2404 | version "0.3.1" 2405 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.3.1.tgz#610f6122a445b8dd51535a2a71b783dfc1248761" 2406 | dependencies: 2407 | atob "~1.1.0" 2408 | resolve-url "~0.2.1" 2409 | source-map-url "~0.3.0" 2410 | urix "~0.1.0" 2411 | 2412 | source-map-support@^0.4.15: 2413 | version "0.4.17" 2414 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.17.tgz#6f2150553e6375375d0ccb3180502b78c18ba430" 2415 | dependencies: 2416 | source-map "^0.5.6" 2417 | 2418 | source-map-url@~0.3.0: 2419 | version "0.3.0" 2420 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.3.0.tgz#7ecaf13b57bcd09da8a40c5d269db33799d4aaf9" 2421 | 2422 | source-map@0.X, source-map@^0.5.1, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.3: 2423 | version "0.5.7" 2424 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2425 | 2426 | source-map@^0.1.38: 2427 | version "0.1.43" 2428 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.43.tgz#c24bc146ca517c1471f5dacbe2571b2b7f9e3346" 2429 | dependencies: 2430 | amdefine ">=0.0.4" 2431 | 2432 | sparkles@^1.0.0: 2433 | version "1.0.0" 2434 | resolved "https://registry.yarnpkg.com/sparkles/-/sparkles-1.0.0.tgz#1acbbfb592436d10bbe8f785b7cc6f82815012c3" 2435 | 2436 | sshpk@^1.7.0: 2437 | version "1.13.1" 2438 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2439 | dependencies: 2440 | asn1 "~0.2.3" 2441 | assert-plus "^1.0.0" 2442 | dashdash "^1.12.0" 2443 | getpass "^0.1.1" 2444 | optionalDependencies: 2445 | bcrypt-pbkdf "^1.0.0" 2446 | ecc-jsbn "~0.1.1" 2447 | jsbn "~0.1.0" 2448 | tweetnacl "~0.14.0" 2449 | 2450 | stable@~0.1.3, stable@~0.1.5: 2451 | version "0.1.6" 2452 | resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.6.tgz#910f5d2aed7b520c6e777499c1f32e139fdecb10" 2453 | 2454 | stack-trace@0.0.9: 2455 | version "0.0.9" 2456 | resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.9.tgz#a8f6eaeca90674c333e7c43953f275b451510695" 2457 | 2458 | stream-exhaust@^1.0.1: 2459 | version "1.0.2" 2460 | resolved "https://registry.yarnpkg.com/stream-exhaust/-/stream-exhaust-1.0.2.tgz#acdac8da59ef2bc1e17a2c0ccf6c320d120e555d" 2461 | 2462 | stream-shift@^1.0.0: 2463 | version "1.0.0" 2464 | resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" 2465 | 2466 | streamfilter@^1.0.5: 2467 | version "1.0.5" 2468 | resolved "https://registry.yarnpkg.com/streamfilter/-/streamfilter-1.0.5.tgz#87507111beb8e298451717b511cfed8f002abf53" 2469 | dependencies: 2470 | readable-stream "^2.0.2" 2471 | 2472 | string-width@^1.0.1, string-width@^1.0.2: 2473 | version "1.0.2" 2474 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2475 | dependencies: 2476 | code-point-at "^1.0.0" 2477 | is-fullwidth-code-point "^1.0.0" 2478 | strip-ansi "^3.0.0" 2479 | 2480 | string_decoder@~0.10.x: 2481 | version "0.10.31" 2482 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 2483 | 2484 | string_decoder@~1.0.3: 2485 | version "1.0.3" 2486 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2487 | dependencies: 2488 | safe-buffer "~5.1.0" 2489 | 2490 | stringmap@~0.2.2: 2491 | version "0.2.2" 2492 | resolved "https://registry.yarnpkg.com/stringmap/-/stringmap-0.2.2.tgz#556c137b258f942b8776f5b2ef582aa069d7d1b1" 2493 | 2494 | stringset@~0.2.1: 2495 | version "0.2.1" 2496 | resolved "https://registry.yarnpkg.com/stringset/-/stringset-0.2.1.tgz#ef259c4e349344377fcd1c913dd2e848c9c042b5" 2497 | 2498 | stringstream@~0.0.4: 2499 | version "0.0.5" 2500 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2501 | 2502 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2503 | version "3.0.1" 2504 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2505 | dependencies: 2506 | ansi-regex "^2.0.0" 2507 | 2508 | strip-bom-stream@^1.0.0: 2509 | version "1.0.0" 2510 | resolved "https://registry.yarnpkg.com/strip-bom-stream/-/strip-bom-stream-1.0.0.tgz#e7144398577d51a6bed0fa1994fa05f43fd988ee" 2511 | dependencies: 2512 | first-chunk-stream "^1.0.0" 2513 | strip-bom "^2.0.0" 2514 | 2515 | strip-bom-string@1.X: 2516 | version "1.0.0" 2517 | resolved "https://registry.yarnpkg.com/strip-bom-string/-/strip-bom-string-1.0.0.tgz#e5211e9224369fbb81d633a2f00044dc8cedad92" 2518 | 2519 | strip-bom@^2.0.0: 2520 | version "2.0.0" 2521 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2522 | dependencies: 2523 | is-utf8 "^0.2.0" 2524 | 2525 | strip-json-comments@~2.0.1: 2526 | version "2.0.1" 2527 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2528 | 2529 | supports-color@^2.0.0: 2530 | version "2.0.0" 2531 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2532 | 2533 | sver-compat@^1.5.0: 2534 | version "1.5.0" 2535 | resolved "https://registry.yarnpkg.com/sver-compat/-/sver-compat-1.5.0.tgz#3cf87dfeb4d07b4a3f14827bc186b3fd0c645cd8" 2536 | dependencies: 2537 | es6-iterator "^2.0.1" 2538 | es6-symbol "^3.1.1" 2539 | 2540 | tar-pack@^3.4.0: 2541 | version "3.4.0" 2542 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 2543 | dependencies: 2544 | debug "^2.2.0" 2545 | fstream "^1.0.10" 2546 | fstream-ignore "^1.0.5" 2547 | once "^1.3.3" 2548 | readable-stream "^2.1.4" 2549 | rimraf "^2.5.1" 2550 | tar "^2.2.1" 2551 | uid-number "^0.0.6" 2552 | 2553 | tar@^2.2.1: 2554 | version "2.2.1" 2555 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2556 | dependencies: 2557 | block-stream "*" 2558 | fstream "^1.0.2" 2559 | inherits "2" 2560 | 2561 | through2-filter@^2.0.0: 2562 | version "2.0.0" 2563 | resolved "https://registry.yarnpkg.com/through2-filter/-/through2-filter-2.0.0.tgz#60bc55a0dacb76085db1f9dae99ab43f83d622ec" 2564 | dependencies: 2565 | through2 "~2.0.0" 2566 | xtend "~4.0.0" 2567 | 2568 | through2@2.X, through2@^2.0.0, through2@^2.0.1, through2@^2.0.3, through2@~2.0.0: 2569 | version "2.0.3" 2570 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 2571 | dependencies: 2572 | readable-stream "^2.1.5" 2573 | xtend "~4.0.1" 2574 | 2575 | through2@^0.6.0, through2@^0.6.5: 2576 | version "0.6.5" 2577 | resolved "https://registry.yarnpkg.com/through2/-/through2-0.6.5.tgz#41ab9c67b29d57209071410e1d7a7a968cd3ad48" 2578 | dependencies: 2579 | readable-stream ">=1.0.33-1 <1.1.0-0" 2580 | xtend ">=4.0.0 <4.1.0-0" 2581 | 2582 | tildify@^1.0.0: 2583 | version "1.2.0" 2584 | resolved "https://registry.yarnpkg.com/tildify/-/tildify-1.2.0.tgz#dcec03f55dca9b7aa3e5b04f21817eb56e63588a" 2585 | dependencies: 2586 | os-homedir "^1.0.0" 2587 | 2588 | time-stamp@^1.0.0: 2589 | version "1.1.0" 2590 | resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.1.0.tgz#764a5a11af50561921b133f3b44e618687e0f5c3" 2591 | 2592 | timers-ext@^0.1.2: 2593 | version "0.1.2" 2594 | resolved "https://registry.yarnpkg.com/timers-ext/-/timers-ext-0.1.2.tgz#61cc47a76c1abd3195f14527f978d58ae94c5204" 2595 | dependencies: 2596 | es5-ext "~0.10.14" 2597 | next-tick "1" 2598 | 2599 | to-absolute-glob@^0.1.1: 2600 | version "0.1.1" 2601 | resolved "https://registry.yarnpkg.com/to-absolute-glob/-/to-absolute-glob-0.1.1.tgz#1cdfa472a9ef50c239ee66999b662ca0eb39937f" 2602 | dependencies: 2603 | extend-shallow "^2.0.1" 2604 | 2605 | to-fast-properties@^1.0.3: 2606 | version "1.0.3" 2607 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2608 | 2609 | tough-cookie@~2.3.0: 2610 | version "2.3.2" 2611 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 2612 | dependencies: 2613 | punycode "^1.4.1" 2614 | 2615 | trim-right@^1.0.1: 2616 | version "1.0.1" 2617 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2618 | 2619 | tryor@~0.1.2: 2620 | version "0.1.2" 2621 | resolved "https://registry.yarnpkg.com/tryor/-/tryor-0.1.2.tgz#8145e4ca7caff40acde3ccf946e8b8bb75b4172b" 2622 | 2623 | tunnel-agent@^0.6.0: 2624 | version "0.6.0" 2625 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2626 | dependencies: 2627 | safe-buffer "^5.0.1" 2628 | 2629 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2630 | version "0.14.5" 2631 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2632 | 2633 | uglify-js@^3.0.5: 2634 | version "3.0.28" 2635 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.0.28.tgz#96b8495f0272944787b5843a1679aa326640d5f7" 2636 | dependencies: 2637 | commander "~2.11.0" 2638 | source-map "~0.5.1" 2639 | 2640 | uid-number@^0.0.6: 2641 | version "0.0.6" 2642 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2643 | 2644 | unc-path-regex@^0.1.0: 2645 | version "0.1.2" 2646 | resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa" 2647 | 2648 | undertaker-registry@^1.0.0: 2649 | version "1.0.0" 2650 | resolved "https://registry.yarnpkg.com/undertaker-registry/-/undertaker-registry-1.0.0.tgz#2da716c765999d8c94b9f9ed2c006df4923b052b" 2651 | 2652 | undertaker@^1.0.0: 2653 | version "1.2.0" 2654 | resolved "https://registry.yarnpkg.com/undertaker/-/undertaker-1.2.0.tgz#339da4646252d082dc378e708067299750e11b49" 2655 | dependencies: 2656 | arr-flatten "^1.0.1" 2657 | arr-map "^2.0.0" 2658 | bach "^1.0.0" 2659 | collection-map "^1.0.0" 2660 | es6-weak-map "^2.0.1" 2661 | last-run "^1.1.0" 2662 | object.defaults "^1.0.0" 2663 | object.reduce "^1.0.0" 2664 | undertaker-registry "^1.0.0" 2665 | 2666 | unique-stream@^2.0.2: 2667 | version "2.2.1" 2668 | resolved "https://registry.yarnpkg.com/unique-stream/-/unique-stream-2.2.1.tgz#5aa003cfbe94c5ff866c4e7d668bb1c4dbadb369" 2669 | dependencies: 2670 | json-stable-stringify "^1.0.0" 2671 | through2-filter "^2.0.0" 2672 | 2673 | urix@^0.1.0, urix@~0.1.0: 2674 | version "0.1.0" 2675 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 2676 | 2677 | user-home@^1.1.1: 2678 | version "1.1.1" 2679 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 2680 | 2681 | util-deprecate@~1.0.1: 2682 | version "1.0.2" 2683 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2684 | 2685 | uuid@^3.0.0: 2686 | version "3.1.0" 2687 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 2688 | 2689 | v8flags@^2.0.9: 2690 | version "2.1.1" 2691 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 2692 | dependencies: 2693 | user-home "^1.1.1" 2694 | 2695 | vali-date@^1.0.0: 2696 | version "1.0.0" 2697 | resolved "https://registry.yarnpkg.com/vali-date/-/vali-date-1.0.0.tgz#1b904a59609fb328ef078138420934f6b86709a6" 2698 | 2699 | verror@1.10.0: 2700 | version "1.10.0" 2701 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 2702 | dependencies: 2703 | assert-plus "^1.0.0" 2704 | core-util-is "1.0.2" 2705 | extsprintf "^1.2.0" 2706 | 2707 | vinyl-fs@^2.0.0: 2708 | version "2.4.4" 2709 | resolved "https://registry.yarnpkg.com/vinyl-fs/-/vinyl-fs-2.4.4.tgz#be6ff3270cb55dfd7d3063640de81f25d7532239" 2710 | dependencies: 2711 | duplexify "^3.2.0" 2712 | glob-stream "^5.3.2" 2713 | graceful-fs "^4.0.0" 2714 | gulp-sourcemaps "1.6.0" 2715 | is-valid-glob "^0.3.0" 2716 | lazystream "^1.0.0" 2717 | lodash.isequal "^4.0.0" 2718 | merge-stream "^1.0.0" 2719 | mkdirp "^0.5.0" 2720 | object-assign "^4.0.0" 2721 | readable-stream "^2.0.4" 2722 | strip-bom "^2.0.0" 2723 | strip-bom-stream "^1.0.0" 2724 | through2 "^2.0.0" 2725 | through2-filter "^2.0.0" 2726 | vali-date "^1.0.0" 2727 | vinyl "^1.0.0" 2728 | 2729 | vinyl-sourcemaps-apply@^0.2.0, vinyl-sourcemaps-apply@^0.2.1: 2730 | version "0.2.1" 2731 | resolved "https://registry.yarnpkg.com/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz#ab6549d61d172c2b1b87be5c508d239c8ef87705" 2732 | dependencies: 2733 | source-map "^0.5.1" 2734 | 2735 | vinyl@1.X, vinyl@^1.0.0: 2736 | version "1.2.0" 2737 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-1.2.0.tgz#5c88036cf565e5df05558bfc911f8656df218884" 2738 | dependencies: 2739 | clone "^1.0.0" 2740 | clone-stats "^0.0.1" 2741 | replace-ext "0.0.1" 2742 | 2743 | vinyl@^0.5.0: 2744 | version "0.5.3" 2745 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.5.3.tgz#b0455b38fc5e0cf30d4325132e461970c2091cde" 2746 | dependencies: 2747 | clone "^1.0.0" 2748 | clone-stats "^0.0.1" 2749 | replace-ext "0.0.1" 2750 | 2751 | vinyl@^2.0.0: 2752 | version "2.1.0" 2753 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-2.1.0.tgz#021f9c2cf951d6b939943c89eb5ee5add4fd924c" 2754 | dependencies: 2755 | clone "^2.1.1" 2756 | clone-buffer "^1.0.0" 2757 | clone-stats "^1.0.0" 2758 | cloneable-readable "^1.0.0" 2759 | remove-trailing-separator "^1.0.1" 2760 | replace-ext "^1.0.0" 2761 | 2762 | which@^1.2.12: 2763 | version "1.3.0" 2764 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 2765 | dependencies: 2766 | isexe "^2.0.0" 2767 | 2768 | wide-align@^1.1.0: 2769 | version "1.1.2" 2770 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 2771 | dependencies: 2772 | string-width "^1.0.2" 2773 | 2774 | window-size@^0.1.4: 2775 | version "0.1.4" 2776 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.4.tgz#f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876" 2777 | 2778 | wordwrap@~0.0.2: 2779 | version "0.0.3" 2780 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 2781 | 2782 | wrap-ansi@^2.0.0: 2783 | version "2.1.0" 2784 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 2785 | dependencies: 2786 | string-width "^1.0.1" 2787 | strip-ansi "^3.0.1" 2788 | 2789 | wrappy@1: 2790 | version "1.0.2" 2791 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2792 | 2793 | wreck@^6.3.0: 2794 | version "6.3.0" 2795 | resolved "https://registry.yarnpkg.com/wreck/-/wreck-6.3.0.tgz#a1369769f07bbb62d6a378336a7871fc773c740b" 2796 | dependencies: 2797 | boom "2.x.x" 2798 | hoek "2.x.x" 2799 | 2800 | "xtend@>=4.0.0 <4.1.0-0", xtend@~4.0.0, xtend@~4.0.1: 2801 | version "4.0.1" 2802 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2803 | 2804 | y18n@^3.2.0: 2805 | version "3.2.1" 2806 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 2807 | 2808 | yargs@^3.28.0: 2809 | version "3.32.0" 2810 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.32.0.tgz#03088e9ebf9e756b69751611d2a5ef591482c995" 2811 | dependencies: 2812 | camelcase "^2.0.1" 2813 | cliui "^3.0.3" 2814 | decamelize "^1.1.1" 2815 | os-locale "^1.4.0" 2816 | string-width "^1.0.1" 2817 | window-size "^0.1.4" 2818 | y18n "^3.2.0" 2819 | --------------------------------------------------------------------------------