├── .babelrc ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── index.js ├── package.json ├── src └── index.js ├── test ├── issue11.html ├── issue12.html ├── issue4.html ├── issue7.html ├── issue8.html ├── issue9.html ├── vue1.html └── vue2.html ├── vue-deepset.js ├── vue-deepset.min.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["env"]], 3 | "plugins": [ 4 | "syntax-async-functions", 5 | "syntax-async-generators", 6 | "transform-class-properties", 7 | "transform-object-rest-spread", 8 | ["transform-es2015-classes", {"loose": true}], 9 | ["transform-es2015-destructuring", {"loose": true}], 10 | ["transform-es2015-spread", {"loose": true}] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | archive 3 | test 4 | index.js 5 | vue-deepset.js 6 | vue-deepset.min.js -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "parserOptions": { 3 | "ecmaVersion": 8, 4 | "ecmaFeatures": { 5 | "experimentalObjectRestSpread": true, 6 | "jsx": true 7 | }, 8 | "sourceType": "module" 9 | }, 10 | 11 | "env": { 12 | "es6": true, 13 | "node": true 14 | }, 15 | 16 | "plugins": [ 17 | "import", 18 | "node", 19 | "promise", 20 | "standard" 21 | ], 22 | 23 | "globals": { 24 | "document": false, 25 | "navigator": false, 26 | "window": false 27 | }, 28 | 29 | "rules": { 30 | "accessor-pairs": "error", 31 | "arrow-spacing": ["error", { "before": true, "after": true }], 32 | "block-spacing": ["error", "always"], 33 | "brace-style": ["error", "1tbs", { "allowSingleLine": true }], 34 | "camelcase": ["error", { "properties": "never" }], 35 | "comma-dangle": ["error", { 36 | "arrays": "never", 37 | "objects": "never", 38 | "imports": "never", 39 | "exports": "never", 40 | "functions": "never" 41 | }], 42 | "comma-spacing": ["error", { "before": false, "after": true }], 43 | "comma-style": ["error", "last"], 44 | "constructor-super": "error", 45 | "curly": ["error", "multi-line"], 46 | "dot-location": ["error", "property"], 47 | "eol-last": "error", 48 | "eqeqeq": ["error", "always", { "null": "ignore" }], 49 | "func-call-spacing": ["error", "never"], 50 | "generator-star-spacing": ["error", { "before": true, "after": true }], 51 | "handle-callback-err": ["error", "^(err|error)$" ], 52 | "indent": ["error", 2, { "SwitchCase": 1 }], 53 | "key-spacing": ["error", { "beforeColon": false, "afterColon": true }], 54 | "keyword-spacing": ["error", { "before": true, "after": true }], 55 | "new-cap": ["error", { "newIsCap": true, "capIsNew": false }], 56 | "new-parens": "error", 57 | "no-array-constructor": "error", 58 | "no-caller": "error", 59 | "no-class-assign": "error", 60 | "no-compare-neg-zero": "error", 61 | "no-cond-assign": "error", 62 | "no-const-assign": "error", 63 | "no-constant-condition": ["error", { "checkLoops": false }], 64 | "no-control-regex": "error", 65 | "no-debugger": "error", 66 | "no-delete-var": "error", 67 | "no-dupe-args": "error", 68 | "no-dupe-class-members": "error", 69 | "no-dupe-keys": "error", 70 | "no-duplicate-case": "error", 71 | "no-empty-character-class": "error", 72 | "no-empty-pattern": "error", 73 | "no-eval": "error", 74 | "no-ex-assign": "error", 75 | "no-extend-native": "error", 76 | "no-extra-bind": "error", 77 | "no-extra-boolean-cast": "error", 78 | "no-extra-parens": ["error", "functions"], 79 | "no-fallthrough": "error", 80 | "no-floating-decimal": "error", 81 | "no-func-assign": "error", 82 | "no-global-assign": "error", 83 | "no-implied-eval": "error", 84 | "no-inner-declarations": ["error", "functions"], 85 | "no-invalid-regexp": "error", 86 | "no-irregular-whitespace": "error", 87 | "no-iterator": "error", 88 | "no-label-var": "error", 89 | "no-labels": ["error", { "allowLoop": false, "allowSwitch": false }], 90 | "no-lone-blocks": "error", 91 | "no-mixed-operators": ["error", { 92 | "groups": [ 93 | ["==", "!=", "===", "!==", ">", ">=", "<", "<="], 94 | ["&&", "||"], 95 | ["in", "instanceof"] 96 | ], 97 | "allowSamePrecedence": true 98 | }], 99 | "no-mixed-spaces-and-tabs": "error", 100 | "no-multi-spaces": "error", 101 | "no-multi-str": "error", 102 | "no-multiple-empty-lines": ["error", { "max": 1, "maxEOF": 0 }], 103 | "no-negated-in-lhs": "error", 104 | "no-new": "error", 105 | "no-new-func": "error", 106 | "no-new-object": "error", 107 | "no-new-require": "error", 108 | "no-new-symbol": "error", 109 | "no-new-wrappers": "error", 110 | "no-obj-calls": "error", 111 | "no-octal": "error", 112 | "no-octal-escape": "error", 113 | "no-path-concat": "error", 114 | "no-proto": "error", 115 | "no-redeclare": "error", 116 | "no-regex-spaces": "error", 117 | "no-return-assign": ["error", "except-parens"], 118 | "no-return-await": "error", 119 | "no-self-assign": "error", 120 | "no-self-compare": "error", 121 | "no-sequences": "error", 122 | "no-shadow-restricted-names": "error", 123 | "no-sparse-arrays": "error", 124 | "no-tabs": "error", 125 | "no-template-curly-in-string": "error", 126 | "no-this-before-super": "error", 127 | "no-throw-literal": "error", 128 | "no-trailing-spaces": "error", 129 | "no-undef": "error", 130 | "no-undef-init": "error", 131 | "no-unexpected-multiline": "error", 132 | "no-unmodified-loop-condition": "error", 133 | "no-unneeded-ternary": ["error", { "defaultAssignment": false }], 134 | "no-unreachable": "error", 135 | "no-unsafe-finally": "error", 136 | "no-unsafe-negation": "error", 137 | "no-unused-expressions": ["error", { "allowShortCircuit": true, "allowTernary": true, "allowTaggedTemplates": true }], 138 | "no-unused-vars": ["error", { "vars": "all", "args": "none", "ignoreRestSiblings": true }], 139 | "no-use-before-define": ["error", { "functions": false, "classes": false, "variables": false }], 140 | "no-useless-call": "error", 141 | "no-useless-computed-key": "error", 142 | "no-useless-constructor": "error", 143 | "no-useless-escape": "error", 144 | "no-useless-rename": "error", 145 | "no-useless-return": "error", 146 | "no-whitespace-before-property": "error", 147 | "no-with": "error", 148 | "object-property-newline": ["error", { "allowMultiplePropertiesPerLine": true }], 149 | "one-var": ["error", { "initialized": "never" }], 150 | "operator-linebreak": ["error", "after", { "overrides": { "?": "before", ":": "before" } }], 151 | "padded-blocks": ["error", { "blocks": "never", "switches": "never", "classes": "never" }], 152 | "prefer-promise-reject-errors": "error", 153 | "quotes": ["error", "single", { "avoidEscape": true, "allowTemplateLiterals": true }], 154 | "rest-spread-spacing": ["error", "never"], 155 | "semi": ["error", "never"], 156 | "semi-spacing": ["error", { "before": false, "after": true }], 157 | "space-before-blocks": ["error", "always"], 158 | "space-before-function-paren": ["error", "always"], 159 | "space-in-parens": ["error", "never"], 160 | "space-infix-ops": "error", 161 | "space-unary-ops": ["error", { "words": true, "nonwords": false }], 162 | "spaced-comment": ["error", "always", { 163 | "line": { "markers": ["*package", "!", "/", ",", "="] }, 164 | "block": { "balanced": true, "markers": ["*package", "!", ",", ":", "::", "flow-include"], "exceptions": ["*"] } 165 | }], 166 | "symbol-description": "error", 167 | "template-curly-spacing": ["error", "never"], 168 | "template-tag-spacing": ["error", "never"], 169 | "unicode-bom": ["error", "never"], 170 | "use-isnan": "error", 171 | "valid-typeof": ["error", { "requireStringLiterals": true }], 172 | "wrap-iife": ["error", "any", { "functionPrototypeMethods": true }], 173 | "yield-star-spacing": ["error", "both"], 174 | "yoda": ["error", "never"], 175 | 176 | "import/export": "error", 177 | "import/first": "error", 178 | "import/no-duplicates": "error", 179 | "import/no-webpack-loader-syntax": "error", 180 | 181 | "node/no-deprecated-api": "error", 182 | "node/process-exit-as-throw": "error", 183 | 184 | "promise/param-names": "error", 185 | 186 | "standard/array-bracket-even-spacing": ["error", "either"], 187 | "standard/computed-property-even-spacing": ["error", "even"], 188 | "standard/no-callback-literal": "error", 189 | "standard/object-curly-even-spacing": ["error", "either"] 190 | } 191 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | npm-debug.log 4 | selenium-debug.log 5 | test/unit/coverage 6 | test/e2e/reports 7 | .idea/ 8 | example/build.js 9 | package-lock.json 10 | dist/ -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | build 2 | assets 3 | example 4 | scratch 5 | node_modules 6 | src 7 | src-v0 8 | test 9 | dist 10 | .babelrc 11 | .DS_Store 12 | .idea 13 | npm-debug.log 14 | .npmignore 15 | .travis.yml 16 | .* -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Branden Horiuchi 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # vue-deepset 2 | Deep set Vue.js objects using dynamic paths 3 | 4 | --- 5 | 6 | Binding deeply nested data properties and vuex data to a form or component can be tricky. The following set of tools aims to simplify data bindings. Compatible with `Vue 1.x`, `Vue 2.x`, `Vuex 1.x`, and `Vuex 2.x` 7 | 8 | **Note** `vueModel` and `vuexModel` use [Proxy](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy) objects if supported by the browser and fallback to an object with generated fields based on the target object. Because of this, it is always best to pre-define the properties of an object when using older browsers. 9 | 10 | Also note that models are flat and once built can set vue/vuex directly using `model[path] = value` where path is a lodash formatted path string or path array. 11 | 12 | ### Examples 13 | 14 | Full examples can be found in the [tests](https://github.com/bhoriuchi/vue-deepset/tree/master/test) folder on the project repo 15 | 16 | ### Requirements 17 | 18 | * `vue@>=1.0.0` 19 | * `vuex@>=1.0.0` (optional) 20 | 21 | ### Dynamic paths 22 | 23 | If you knew what every path you needed ahead of time you could (while tedious) create custom computed properties with getter and setter methods for each of those properties. But what if you have a dynamic and deeply nested property? This problem was actually what inspired the creation of this library. Using a Proxy, `vue-deepset` is able to dynamically create new, deep, reactive properties as well as return `undefined` for values that are not yet set. 24 | 25 | ### Path Strings 26 | 27 | The modeling methods use `lodash.toPath` format for path strings. Please ensure references use this format. You may also use `path Arrays` which can be easier to construct when using keys that include dots. 28 | 29 | The following 2 path values are the same 30 | ```js 31 | const stringPath = 'a.b["c.d"].e[0]' 32 | const arrayPath = [ 'a', 'b', 'c.d', 'e', 0 ] 33 | ``` 34 | 35 | #### Keys with dots 36 | 37 | Since dots prefix a nested path and are also valid characters for a key data that looks like the following can be tricky 38 | 39 | ```js 40 | const data = { 41 | 'foo.bar': 'baz', 42 | foo: { 43 | bar: 'qux' 44 | } 45 | } 46 | ``` 47 | 48 | So care should be taken when building the path string (or just use an array path) as the following will be true 49 | 50 | ```js 51 | 'foo.bar' // qux 52 | '["foo.bar"]' // baz 53 | 'foo["bar"]' // qux 54 | '["foo"].bar' // qux 55 | ``` 56 | 57 | ### Binding `v-model` to deeply nested objects 58 | 59 | Model objects returned by `$deepModel`, `vueModel`, and `vuexModel` are flat and use getter/setter methods to access and update deep properties on the target object. Because of this, when binding a deep model object using `v-model` bracket notation should be used and the property value should be a path string. Using not notation past a single level object should be avoided. 60 | 61 | ```html 62 | 63 | 64 | 65 | ``` 66 | 67 | ## Usage 68 | 69 | * Webpack `import * as VueDeepSet from 'vue-deepset'` 70 | * Browser `` 71 | 72 | ### As a Plugin 73 | 74 | The easiest way to set up `vue-deepset` is as a Vue.js plugin. The plugin adds instance methods `$deepModel`, `$vueSet`, and `$vuexSet`. For **vuex** a mutation must be added (see vuex section). 75 | 76 | When using ES6+ use `import * as VueDeepSet from 'vue-deepset'` 77 | 78 | * `$deepModel ( obj:Object )` - for local vue objects 79 | * `$deepModel ( path:String )` - for vuex state properties; path to base object 80 | * `$vueSet (obj:Object, path:String, value:*)` 81 | * `$vuexSet (path:String, value:*)` 82 | 83 | #### Example - Browser (Vue 2.x) 84 | 85 | **html** 86 | ```html 87 |
88 | 89 | 90 |
91 | ``` 92 | 93 | **js** 94 | ```js 95 | Vue.use(VueDeepSet) 96 | 97 | var app = new Vue({ 98 | el: '#app', 99 | store, 100 | computed: { 101 | model () { 102 | return this.$deepModel(this.obj) 103 | } 104 | }, 105 | data: { 106 | obj: { 107 | input1: 'Hello World!', 108 | path: { 109 | to: { 110 | 'deep nested': 'Hello Vue!' 111 | } 112 | } 113 | } 114 | } 115 | }) 116 | 117 | ``` 118 | 119 | ### Vuex 120 | 121 | Form binding to `vuex` using `v-model` requires registering the provided `VUEX_DEEP_SET` mutation. A convienience method `extendMutation` has been provided. 122 | 123 | **html** 124 | ```html 125 |
126 | 127 |
128 | ``` 129 | 130 | **js** 131 | ```js 132 | var store = new Vuex.Store({ 133 | state: { 134 | formData: { 135 | message: 'Hello Vuex!' 136 | } 137 | }, 138 | mutations: VueDeepSet.extendMutation({ 139 | // other mutations 140 | }) 141 | }) 142 | 143 | var app = new Vue({ 144 | el: '#app', 145 | store, 146 | computed: { 147 | formData () { 148 | return this.$deepModel('formData') 149 | } 150 | } 151 | }) 152 | ``` 153 | or 154 | 155 | ```js 156 | var store = new Vuex.Store({ 157 | state: { 158 | formData: { 159 | message: 'Hello Vuex!' 160 | } 161 | }, 162 | mutations: { 163 | VUEX_DEEP_SET: VueDeepSet.VUEX_DEEP_SET, 164 | // other mutations 165 | } 166 | }) 167 | 168 | var app = new Vue({ 169 | el: '#app', 170 | store, 171 | computed: { 172 | formData () { 173 | return this.$deepModel('formData') 174 | } 175 | } 176 | }) 177 | ``` 178 | 179 | ### API 180 | 181 | ##### vueSet ( obj:Object, path:String, value:* ) 182 | 183 | Deep sets a path with a value on a local data object so that is is reactive 184 | 185 | ##### vuexSet ( path:String, value:* ) 186 | 187 | Deep sets a path with a value in a vuex store so that it is reactive 188 | 189 | ##### VUEX_DEEP_SET ( state:VuexState, args:Object ) 190 | 191 | Vuex mutation that should be registered when using vuexSet 192 | 193 | ##### extendMutation ( [mutations:Object] ) 194 | 195 | Adds the `VUEX_DEEP_SET` mutation to an optional hash of mutations and returns an updated hash of mutations 196 | 197 | ##### vueModel ( obj:Object, [options:Object] ) 198 | 199 | Creates an abstracted model with a set of flat properties that are generated from inspecting the objects properties so that deeply nested properties can be accessed as first level properties 200 | 201 | **options** 202 | * `useProxy=true` {`Boolean`} - disable use of Proxy when false 203 | 204 | ##### vuexModel ( path:String, [options:Object] ) 205 | 206 | The equivalent of `vueModel` for `vuex`. Path should point to the base object 207 | 208 | **options** 209 | * `useProxy=true` {`Boolean`} - disable use of Proxy when false 210 | 211 | ##### deepModel ( obj:Object, [options:Object] ) 212 | 213 | Equivalent to `vueModel` 214 | 215 | **options** 216 | * `useProxy=true` {`Boolean`} - disable use of Proxy when false 217 | 218 | ##### deepModel ( path:String, [options:Object] ) 219 | 220 | Equivalent to `vuexModel` 221 | 222 | **options** 223 | * `useProxy=true` {`Boolean`} - disable use of Proxy when false 224 | 225 | ### Non-Plugin usage 226 | 227 | ##### Example - Browser 228 | 229 | ```js 230 | var store = new Vuex.Store({ 231 | state: { 232 | formData: { 233 | message: 'Hello Vuex!' 234 | } 235 | }, 236 | mutations: VueDeepSet.extendMutation() 237 | }) 238 | 239 | var app = new Vue({ 240 | el: '#app', 241 | store, 242 | computed: { 243 | vuexForm () { 244 | return this.vuexModel('formData') 245 | }, 246 | localForm () { 247 | return this.vueModel(this.localForm) 248 | } 249 | }, 250 | methods: { 251 | vueSet: VueDeepSet.vueSet, 252 | vuexSet: VueDeepSet.vuexSet, 253 | vueModel: VueDeepSet.vueModel, 254 | vuexModel: VueDeepSet.vuexModel 255 | }, 256 | data: { 257 | localForm: { 258 | message: 'Hello Vue!' 259 | } 260 | } 261 | }) 262 | ``` 263 | 264 | ### Example - Webpack + ES6 265 | 266 | ```js 267 | import { vueSet } from 'vue-deepset' 268 | 269 | export default { 270 | methods: { 271 | clearForm () { 272 | vueSet(this.localForm, 'message', '') 273 | } 274 | }, 275 | data: { 276 | localForm: { 277 | message: 'Hello Vue!' 278 | } 279 | } 280 | } 281 | ``` -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 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 | exports.vueSet = vueSet; 10 | exports.vuexSet = vuexSet; 11 | exports.VUEX_DEEP_SET = VUEX_DEEP_SET; 12 | exports.extendMutation = extendMutation; 13 | exports.vueModel = vueModel; 14 | exports.vuexModel = vuexModel; 15 | exports.deepModel = deepModel; 16 | exports.install = install; 17 | 18 | var _vue = require('vue'); 19 | 20 | var _vue2 = _interopRequireDefault(_vue); 21 | 22 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 23 | 24 | var invalidKey = /^\d|[^a-zA-Z0-9_]/gm; 25 | var intKey = /^\d+$/; 26 | 27 | function isNumberLike(value) { 28 | return String(value).match(/^\d+$/); 29 | } 30 | 31 | function toPath(pathString) { 32 | if (Array.isArray(pathString)) return pathString; 33 | if (typeof pathString === 'number') return [pathString]; 34 | pathString = String(pathString); 35 | 36 | // taken from lodash - https://github.com/lodash/lodash 37 | var pathRx = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(\.|\[\])(?:\4|$))/g; 38 | var pathArray = []; 39 | 40 | pathString.replace(pathRx, function (match, number, quote, string) { 41 | pathArray.push(quote ? string : number !== undefined ? Number(number) : match); 42 | return pathArray[pathArray.length - 1]; 43 | }); 44 | return pathArray; 45 | } 46 | 47 | function noop() {} 48 | 49 | function hasOwnProperty(object, property) { 50 | return Object.prototype.hasOwnProperty.call(object, property); 51 | } 52 | 53 | function deepsetError(message) { 54 | return new Error('[vue-deepset]: ' + message); 55 | } 56 | 57 | function isObjectLike(object) { 58 | return (typeof object === 'undefined' ? 'undefined' : _typeof(object)) === 'object' && object !== null; 59 | } 60 | 61 | function pathJoin(base, path) { 62 | try { 63 | var connector = path.match(/^\[/) ? '' : '.'; 64 | return '' + (base || '') + (base ? connector : '') + path; 65 | } catch (error) { 66 | return ''; 67 | } 68 | } 69 | 70 | function pushPaths(object, current, paths) { 71 | paths.push(current); 72 | if (isObjectLike(object)) { 73 | getPaths(object, current, paths); 74 | } 75 | } 76 | 77 | function forEach(object, iteratee) { 78 | var isArray = Array.isArray(object); 79 | var keys = isArray ? object : Object.keys(object); 80 | keys.forEach(function (value, index) { 81 | return isArray ? iteratee(value, index) : iteratee(object[value], value); 82 | }); 83 | } 84 | 85 | function has(object, path) { 86 | var obj = object; 87 | var parts = toPath(path); 88 | while (parts.length) { 89 | var key = parts.shift(); 90 | if (!hasOwnProperty(obj, key)) { 91 | return false; 92 | } else if (!parts.length) { 93 | return true; 94 | } 95 | obj = obj[key]; 96 | } 97 | return false; 98 | } 99 | 100 | function getPaths(object) { 101 | var current = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : ''; 102 | var paths = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : []; 103 | 104 | if (Array.isArray(object)) { 105 | forEach(object, function (val, idx) { 106 | pushPaths(val, (current + '.' + idx).replace(/^\./, ''), paths); 107 | pushPaths(val, (current + '[' + idx + ']').replace(/^\./, ''), paths); 108 | pushPaths(val, (current + '["' + idx + '"]').replace(/^\./, ''), paths); 109 | }); 110 | } else if (isObjectLike(object)) { 111 | forEach(object, function (val, key) { 112 | if (key.match(intKey) !== null) { 113 | // is index 114 | pushPaths(val, (current + '.' + key).replace(/^\./, ''), paths); 115 | pushPaths(val, (current + '[' + key + ']').replace(/^\./, ''), paths); 116 | pushPaths(val, (current + '["' + key + '"]').replace(/^\./, ''), paths); 117 | } else if (!key.match(invalidKey)) { 118 | pushPaths(val, (current + '.' + key).replace(/^\./, ''), paths); 119 | } 120 | // always add the absolute array notation path 121 | pushPaths(val, (current + '["' + key + '"]').replace(/^\./, ''), paths); 122 | }); 123 | } 124 | return [].concat(new Set(paths)); 125 | } 126 | 127 | function _get(obj, path, defaultValue) { 128 | try { 129 | var o = obj; 130 | var fields = toPath(path); 131 | while (fields.length) { 132 | var prop = fields.shift(); 133 | o = o[prop]; 134 | if (!fields.length) { 135 | return o; 136 | } 137 | } 138 | } catch (err) { 139 | return defaultValue; 140 | } 141 | return defaultValue; 142 | } 143 | 144 | function getProxy(vm, base, options) { 145 | noop(options); // for future potential options 146 | var isVuex = typeof base === 'string'; 147 | var object = isVuex ? _get(vm.$store.state, base) : base; 148 | 149 | return new Proxy(object, { 150 | get: function get(target, property) { 151 | return _get(target, property); 152 | }, 153 | set: function set(target, property, value) { 154 | isVuex ? vuexSet.call(vm, pathJoin(base, property), value) : vueSet(target, property, value); 155 | return true; 156 | }, 157 | deleteProperty: function deleteProperty() { 158 | return true; 159 | }, 160 | enumerate: function enumerate(target) { 161 | return Object.keys(target); 162 | }, 163 | ownKeys: function ownKeys(target) { 164 | return Object.keys(target); 165 | }, 166 | has: function has(target, property) { 167 | return true; 168 | }, 169 | defineProperty: function defineProperty(target) { 170 | return target; 171 | }, 172 | getOwnPropertyDescriptor: function getOwnPropertyDescriptor(target, property) { 173 | return { 174 | value: _get(target, property), 175 | writable: false, 176 | enumerable: true, 177 | configurable: true 178 | }; 179 | } 180 | }); 181 | } 182 | 183 | function buildVueModel(vm, object, options) { 184 | var model = {}; 185 | forEach(getPaths(object), function (path) { 186 | Object.defineProperty(model, path, { 187 | configurable: true, 188 | enumerable: true, 189 | get: function get() { 190 | return _get(object, path); 191 | }, 192 | set: function set(value) { 193 | return vueSet(object, path, value); 194 | } 195 | }); 196 | }); 197 | return model; 198 | } 199 | 200 | function buildVuexModel(vm, vuexPath, options) { 201 | var model = Object.create(null); 202 | var object = _get(vm.$store.state, vuexPath); 203 | var paths = getPaths(object); 204 | forEach(paths, function (path) { 205 | var propPath = pathJoin(vuexPath, path); 206 | Object.defineProperty(model, path, { 207 | configurable: true, 208 | enumerable: true, 209 | get: function get() { 210 | return _get(vm.$store.state, propPath); 211 | }, 212 | set: function set(value) { 213 | return vuexSet.call(vm, propPath, value); 214 | } 215 | }); 216 | }); 217 | return model; 218 | } 219 | 220 | function vueSet(obj, path, value) { 221 | var fields = Array.isArray(path) ? path : toPath(path); 222 | var prop = fields.shift(); 223 | 224 | if (!fields.length) return _vue2.default.set(obj, prop, value); 225 | if (!hasOwnProperty(obj, prop) || obj[prop] === null) { 226 | var objVal = fields.length >= 1 && isNumberLike(fields[0]) ? [] : {}; 227 | _vue2.default.set(obj, prop, objVal); 228 | } 229 | vueSet(obj[prop], fields, value); 230 | } 231 | 232 | function vuexSet(path, value) { 233 | if (!isObjectLike(this.$store)) { 234 | throw deepsetError('could not find vuex store object on instance'); 235 | } 236 | var method = this.$store.commit ? 'commit' : 'dispatch'; 237 | this.$store[method]('VUEX_DEEP_SET', { path: path, value: value }); 238 | } 239 | 240 | function VUEX_DEEP_SET(state, _ref) { 241 | var path = _ref.path, 242 | value = _ref.value; 243 | 244 | vueSet(state, path, value); 245 | } 246 | 247 | function extendMutation() { 248 | var mutations = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; 249 | 250 | return Object.assign(mutations, { VUEX_DEEP_SET: VUEX_DEEP_SET }); 251 | } 252 | 253 | function vueModel(object, options) { 254 | var opts = Object.assign({}, options); 255 | if (!isObjectLike(object)) { 256 | throw deepsetError('invalid object specified for vue model'); 257 | } else if (opts.useProxy === false || typeof Proxy === 'undefined') { 258 | return buildVueModel(this, object, opts); 259 | } 260 | return getProxy(this, object, opts); 261 | } 262 | 263 | function vuexModel(vuexPath, options) { 264 | var opts = Object.assign({}, options); 265 | if (typeof vuexPath !== 'string' || vuexPath === '') { 266 | throw deepsetError('invalid vuex path string'); 267 | } else if (!isObjectLike(this.$store) || !isObjectLike(this.$store.state)) { 268 | throw deepsetError('no vuex state found'); 269 | } else if (!has(this.$store.state, vuexPath)) { 270 | throw deepsetError('cannot find path "' + vuexPath + '" in Vuex store'); 271 | } else if (opts.useProxy === false || typeof Proxy === 'undefined') { 272 | return buildVuexModel(this, vuexPath, opts); 273 | } 274 | return getProxy(this, vuexPath, opts); 275 | } 276 | 277 | function deepModel(base, options) { 278 | return typeof base === 'string' ? vuexModel.call(this, base, options) : vueModel.call(this, base, options); 279 | } 280 | 281 | function install(VueInstance) { 282 | VueInstance.prototype.$deepModel = deepModel; 283 | VueInstance.prototype.$vueSet = vueSet; 284 | VueInstance.prototype.$vuexSet = vuexSet; 285 | } 286 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vue-deepset", 3 | "version": "0.6.3", 4 | "description": "Deep set Vue.js objects", 5 | "main": "index.js", 6 | "scripts": { 7 | "lint": "eslint src/", 8 | "build:node": "babel src --optional runtime --ignore __tests__ --out-file index.js", 9 | "build:browser": "browserify index.js -s VueDeepSet > vue-deepset.js && uglifyjs vue-deepset.js > vue-deepset.min.js", 10 | "build": "npm run lint && npm run build:node && npm run build:browser" 11 | }, 12 | "browserify": { 13 | "transform": [ 14 | "browserify-global-shim" 15 | ], 16 | "standalone": "VueDeepSet" 17 | }, 18 | "browserify-global-shim": { 19 | "vue": "Vue" 20 | }, 21 | "repository": { 22 | "type": "git", 23 | "url": "git+https://github.com/bhoriuchi/vue-deepset.git" 24 | }, 25 | "keywords": [ 26 | "vue", 27 | "vue.js", 28 | "reactive", 29 | "deep", 30 | "set", 31 | "vuex", 32 | "model", 33 | "v-model", 34 | "binding", 35 | "dynamic", 36 | "nested", 37 | "paths", 38 | "path", 39 | "store", 40 | "form", 41 | "mutation" 42 | ], 43 | "author": "Branden Horiuchi ", 44 | "license": "MIT", 45 | "bugs": { 46 | "url": "https://github.com/bhoriuchi/vue-deepset/issues" 47 | }, 48 | "homepage": "https://github.com/bhoriuchi/vue-deepset#readme", 49 | "devDependencies": { 50 | "babel-cli": "^6.26.0", 51 | "babel-core": "^6.23.1", 52 | "babel-eslint": "^8.1.2", 53 | "babel-plugin-syntax-async-functions": "^6.13.0", 54 | "babel-plugin-syntax-async-generators": "^6.13.0", 55 | "babel-plugin-transform-class-properties": "^6.24.1", 56 | "babel-plugin-transform-object-rest-spread": "^6.26.0", 57 | "babel-preset-env": "^1.6.1", 58 | "babelify": "^7.3.0", 59 | "browserify": "^14.1.0", 60 | "browserify-global-shim": "^1.0.3", 61 | "eslint": "^4.15.0", 62 | "eslint-plugin-import": "^2.8.0", 63 | "eslint-plugin-node": "^5.2.1", 64 | "eslint-plugin-promise": "^3.6.0", 65 | "eslint-plugin-standard": "^3.0.1", 66 | "uglify-js": "^3.0.27" 67 | } 68 | } 69 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | 3 | const invalidKey = /^\d|[^a-zA-Z0-9_]/gm 4 | const intKey = /^\d+$/ 5 | 6 | function isNumberLike(value) { 7 | return String(value).match(/^\d+$/); 8 | } 9 | 10 | function toPath (pathString) { 11 | if (Array.isArray(pathString)) return pathString 12 | if (typeof pathString === 'number') return [ pathString ] 13 | pathString = String(pathString) 14 | 15 | // taken from lodash - https://github.com/lodash/lodash 16 | let pathRx = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(\.|\[\])(?:\4|$))/g 17 | let pathArray = [] 18 | 19 | pathString.replace(pathRx, (match, number, quote, string) => { 20 | pathArray.push( 21 | quote 22 | ? string 23 | : number !== undefined 24 | ? Number(number) 25 | : match 26 | ) 27 | return pathArray[pathArray.length - 1] 28 | }) 29 | return pathArray 30 | } 31 | 32 | function noop () {} 33 | 34 | function hasOwnProperty (object, property) { 35 | return Object.prototype.hasOwnProperty.call(object, property) 36 | } 37 | 38 | function deepsetError (message) { 39 | return new Error(`[vue-deepset]: ${message}`); 40 | } 41 | 42 | function isObjectLike (object) { 43 | return typeof object === 'object' && object !== null 44 | } 45 | 46 | function pathJoin (base, path) { 47 | try { 48 | const connector = path.match(/^\[/) ? '' : '.' 49 | return `${base || ''}${base ? connector : ''}${path}` 50 | } catch (error) { 51 | return '' 52 | } 53 | } 54 | 55 | function pushPaths (object, current, paths) { 56 | paths.push(current) 57 | if (isObjectLike(object)) { 58 | getPaths(object, current, paths) 59 | } 60 | } 61 | 62 | function forEach (object, iteratee) { 63 | const isArray = Array.isArray(object) 64 | const keys = isArray ? object : Object.keys(object) 65 | keys.forEach((value, index) => { 66 | return isArray 67 | ? iteratee(value, index) 68 | : iteratee(object[value], value) 69 | }) 70 | } 71 | 72 | function has (object, path) { 73 | let obj = object 74 | const parts = toPath(path) 75 | while (parts.length) { 76 | const key = parts.shift() 77 | if (!hasOwnProperty(obj, key)) { 78 | return false 79 | } else if (!parts.length) { 80 | return true 81 | } 82 | obj = obj[key] 83 | } 84 | return false 85 | } 86 | 87 | function getPaths (object, current = '', paths = []) { 88 | if (Array.isArray(object)) { 89 | forEach(object, (val, idx) => { 90 | pushPaths(val, `${current}.${idx}`.replace(/^\./, ''), paths) 91 | pushPaths(val, `${current}[${idx}]`.replace(/^\./, ''), paths) 92 | pushPaths(val, `${current}["${idx}"]`.replace(/^\./, ''), paths) 93 | }) 94 | } else if (isObjectLike(object)) { 95 | forEach(object, (val, key) => { 96 | if (key.match(intKey) !== null) { // is index 97 | pushPaths(val, `${current}.${key}`.replace(/^\./, ''), paths) 98 | pushPaths(val, `${current}[${key}]`.replace(/^\./, ''), paths) 99 | pushPaths(val, `${current}["${key}"]`.replace(/^\./, ''), paths) 100 | } else if (!key.match(invalidKey)) { 101 | pushPaths(val, `${current}.${key}`.replace(/^\./, ''), paths) 102 | } 103 | // always add the absolute array notation path 104 | pushPaths(val, `${current}["${key}"]`.replace(/^\./, ''), paths) 105 | }) 106 | } 107 | return [ ...new Set(paths) ] 108 | } 109 | 110 | function get (obj, path, defaultValue) { 111 | try { 112 | let o = obj 113 | const fields = toPath(path) 114 | while (fields.length) { 115 | const prop = fields.shift() 116 | o = o[prop] 117 | if (!fields.length) { 118 | return o 119 | } 120 | } 121 | } catch (err) { 122 | return defaultValue 123 | } 124 | return defaultValue 125 | } 126 | 127 | function getProxy (vm, base, options) { 128 | noop(options) // for future potential options 129 | const isVuex = typeof base === 'string' 130 | const object = isVuex ? get(vm.$store.state, base) : base 131 | 132 | return new Proxy(object, { 133 | get: (target, property) => { 134 | return get(target, property) 135 | }, 136 | set: (target, property, value) => { 137 | isVuex 138 | ? vuexSet.call(vm, pathJoin(base, property), value) 139 | : vueSet(target, property, value) 140 | return true 141 | }, 142 | deleteProperty: () => { 143 | return true 144 | }, 145 | enumerate: target => { 146 | return Object.keys(target) 147 | }, 148 | ownKeys: target => { 149 | return Object.keys(target) 150 | }, 151 | has: (target, property) => { 152 | return true 153 | }, 154 | defineProperty: target => { 155 | return target 156 | }, 157 | getOwnPropertyDescriptor: (target, property) => { 158 | return { 159 | value: get(target, property), 160 | writable: false, 161 | enumerable: true, 162 | configurable: true 163 | } 164 | } 165 | }) 166 | } 167 | 168 | function buildVueModel (vm, object, options) { 169 | const model = {} 170 | forEach(getPaths(object), path => { 171 | Object.defineProperty(model, path, { 172 | configurable: true, 173 | enumerable: true, 174 | get: () => get(object, path), 175 | set: value => vueSet(object, path, value) 176 | }) 177 | }) 178 | return model 179 | } 180 | 181 | function buildVuexModel (vm, vuexPath, options) { 182 | const model = Object.create(null) 183 | const object = get(vm.$store.state, vuexPath) 184 | const paths = getPaths(object) 185 | forEach(paths, path => { 186 | const propPath = pathJoin(vuexPath, path) 187 | Object.defineProperty(model, path, { 188 | configurable: true, 189 | enumerable: true, 190 | get: () => get(vm.$store.state, propPath), 191 | set: (value) => vuexSet.call(vm, propPath, value) 192 | }) 193 | }) 194 | return model 195 | } 196 | 197 | export function vueSet (obj, path, value) { 198 | let fields = Array.isArray(path) 199 | ? path 200 | : toPath(path) 201 | let prop = fields.shift() 202 | 203 | if (!fields.length) return Vue.set(obj, prop, value) 204 | if (!hasOwnProperty(obj, prop) || obj[prop] === null) { 205 | const objVal = fields.length >= 1 && isNumberLike(fields[0]) 206 | ? [] 207 | : {} 208 | Vue.set(obj, prop, objVal) 209 | } 210 | vueSet(obj[prop], fields, value) 211 | } 212 | 213 | export function vuexSet (path, value) { 214 | if (!isObjectLike(this.$store)) { 215 | throw deepsetError('could not find vuex store object on instance') 216 | } 217 | const method = this.$store.commit ? 'commit' : 'dispatch' 218 | this.$store[method]('VUEX_DEEP_SET', { path, value }) 219 | } 220 | 221 | export function VUEX_DEEP_SET (state, { path, value }) { 222 | vueSet(state, path, value) 223 | } 224 | 225 | export function extendMutation (mutations = {}) { 226 | return Object.assign(mutations, { VUEX_DEEP_SET }) 227 | } 228 | 229 | export function vueModel (object, options) { 230 | const opts = Object.assign({}, options) 231 | if (!isObjectLike(object)) { 232 | throw deepsetError('invalid object specified for vue model') 233 | } else if (opts.useProxy === false || typeof Proxy === 'undefined') { 234 | return buildVueModel(this, object, opts) 235 | } 236 | return getProxy(this, object, opts) 237 | } 238 | 239 | export function vuexModel (vuexPath, options) { 240 | const opts = Object.assign({}, options) 241 | if (typeof vuexPath !== 'string' || vuexPath === '') { 242 | throw deepsetError('invalid vuex path string') 243 | } else if (!isObjectLike(this.$store) || !isObjectLike(this.$store.state)) { 244 | throw deepsetError('no vuex state found') 245 | } else if (!has(this.$store.state, vuexPath)) { 246 | throw deepsetError(`cannot find path "${vuexPath}" in Vuex store`) 247 | } else if (opts.useProxy === false || typeof Proxy === 'undefined') { 248 | return buildVuexModel(this, vuexPath, opts) 249 | } 250 | return getProxy(this, vuexPath, opts) 251 | } 252 | 253 | export function deepModel (base, options) { 254 | return typeof base === 'string' 255 | ? vuexModel.call(this, base, options) 256 | : vueModel.call(this, base, options) 257 | } 258 | 259 | export function install (VueInstance) { 260 | VueInstance.prototype.$deepModel = deepModel 261 | VueInstance.prototype.$vueSet = vueSet 262 | VueInstance.prototype.$vuexSet = vuexSet 263 | } 264 | -------------------------------------------------------------------------------- /test/issue11.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Reproduce issue 11 6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 |
14 | 15 |

16 |   
17 |
18 | 19 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /test/issue12.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Reproduce issue 12 6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 |
14 |
15 |

Books info

16 | 26 |
27 |

28 | 	
29 |
30 | 31 | 95 | 96 | 97 | -------------------------------------------------------------------------------- /test/issue4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Reproduce issue 4 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 |

14 | 
15 | 16 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /test/issue7.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Reproduce issue 4 6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 |

15 | 
16 | 17 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /test/issue8.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Reproduce issue 8 6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 |
14 | 17 |
18 |

19 | 
20 | 21 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /test/issue9.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Reproduce issue 4 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 |
14 | 15 |
16 | 17 |
18 | 19 |
20 | 21 |

22 | 
23 | 24 | 57 | 58 | 59 | -------------------------------------------------------------------------------- /test/vue1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Title 6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 |

Vue 1.x Deep Data Model

14 |
15 |
16 |
17 |

Vue Object

18 |
19 | 20 | 21 |
22 |
23 | 24 | 25 |
26 |
27 | 28 | 29 |
30 |
31 | 32 | 33 |
34 |
35 |
36 |
37 | 38 |
{{obj|json}}
39 |
40 |
41 | 42 |
{{vueModel|json}}
43 |
44 |
45 |
46 |
47 |
48 |
49 |

Vuex Object

50 |
51 | 52 | 53 |
54 |
55 | 56 | 57 |
58 |
59 | 60 | 61 |
62 |
63 | 64 | 65 |
66 |
67 |
68 |
69 | 70 |
{{$store.state.formData|json}}
71 |
72 |
73 | 74 |
{{vuexModel|json}}
75 |
76 |
77 |
78 |
79 | 123 | 124 | -------------------------------------------------------------------------------- /test/vue2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Title 6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 |

Vue 2.x Deep Data Model

14 |
15 |
16 |
17 |

Vue Object

18 |
19 | 20 | 21 |
22 |
23 | 24 | 25 |
26 |
27 | 28 | 29 |
30 |
31 | 32 | 33 |
34 |
35 |
36 |
37 | 38 |
{{obj}}
39 |
40 |
41 | 42 |
{{vueModel}}
43 |
44 |
45 |
46 |
47 |
48 |
49 |

Vuex Object

50 |
51 | 52 | 53 |
54 |
55 | 56 | 57 |
58 |
59 | 60 | 61 |
62 |
63 | 64 | 65 |
66 |
67 |
68 |
69 | 70 |
{{$store.state.formData}}
71 |
72 |
73 | 74 |
{{vuexModel}}
75 |
76 |
77 |
78 |
79 | 122 | 123 | -------------------------------------------------------------------------------- /vue-deepset.js: -------------------------------------------------------------------------------- 1 | (function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.VueDeepSet = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o 1 && arguments[1] !== undefined ? arguments[1] : ''; 103 | var paths = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : []; 104 | 105 | if (Array.isArray(object)) { 106 | forEach(object, function (val, idx) { 107 | pushPaths(val, (current + '.' + idx).replace(/^\./, ''), paths); 108 | pushPaths(val, (current + '[' + idx + ']').replace(/^\./, ''), paths); 109 | pushPaths(val, (current + '["' + idx + '"]').replace(/^\./, ''), paths); 110 | }); 111 | } else if (isObjectLike(object)) { 112 | forEach(object, function (val, key) { 113 | if (key.match(intKey) !== null) { 114 | // is index 115 | pushPaths(val, (current + '.' + key).replace(/^\./, ''), paths); 116 | pushPaths(val, (current + '[' + key + ']').replace(/^\./, ''), paths); 117 | pushPaths(val, (current + '["' + key + '"]').replace(/^\./, ''), paths); 118 | } else if (!key.match(invalidKey)) { 119 | pushPaths(val, (current + '.' + key).replace(/^\./, ''), paths); 120 | } 121 | // always add the absolute array notation path 122 | pushPaths(val, (current + '["' + key + '"]').replace(/^\./, ''), paths); 123 | }); 124 | } 125 | return [].concat(new Set(paths)); 126 | } 127 | 128 | function _get(obj, path, defaultValue) { 129 | try { 130 | var o = obj; 131 | var fields = toPath(path); 132 | while (fields.length) { 133 | var prop = fields.shift(); 134 | o = o[prop]; 135 | if (!fields.length) { 136 | return o; 137 | } 138 | } 139 | } catch (err) { 140 | return defaultValue; 141 | } 142 | return defaultValue; 143 | } 144 | 145 | function getProxy(vm, base, options) { 146 | noop(options); // for future potential options 147 | var isVuex = typeof base === 'string'; 148 | var object = isVuex ? _get(vm.$store.state, base) : base; 149 | 150 | return new Proxy(object, { 151 | get: function get(target, property) { 152 | return _get(target, property); 153 | }, 154 | set: function set(target, property, value) { 155 | isVuex ? vuexSet.call(vm, pathJoin(base, property), value) : vueSet(target, property, value); 156 | return true; 157 | }, 158 | deleteProperty: function deleteProperty() { 159 | return true; 160 | }, 161 | enumerate: function enumerate(target) { 162 | return Object.keys(target); 163 | }, 164 | ownKeys: function ownKeys(target) { 165 | return Object.keys(target); 166 | }, 167 | has: function has(target, property) { 168 | return true; 169 | }, 170 | defineProperty: function defineProperty(target) { 171 | return target; 172 | }, 173 | getOwnPropertyDescriptor: function getOwnPropertyDescriptor(target, property) { 174 | return { 175 | value: _get(target, property), 176 | writable: false, 177 | enumerable: true, 178 | configurable: true 179 | }; 180 | } 181 | }); 182 | } 183 | 184 | function buildVueModel(vm, object, options) { 185 | var model = {}; 186 | forEach(getPaths(object), function (path) { 187 | Object.defineProperty(model, path, { 188 | configurable: true, 189 | enumerable: true, 190 | get: function get() { 191 | return _get(object, path); 192 | }, 193 | set: function set(value) { 194 | return vueSet(object, path, value); 195 | } 196 | }); 197 | }); 198 | return model; 199 | } 200 | 201 | function buildVuexModel(vm, vuexPath, options) { 202 | var model = Object.create(null); 203 | var object = _get(vm.$store.state, vuexPath); 204 | var paths = getPaths(object); 205 | forEach(paths, function (path) { 206 | var propPath = pathJoin(vuexPath, path); 207 | Object.defineProperty(model, path, { 208 | configurable: true, 209 | enumerable: true, 210 | get: function get() { 211 | return _get(vm.$store.state, propPath); 212 | }, 213 | set: function set(value) { 214 | return vuexSet.call(vm, propPath, value); 215 | } 216 | }); 217 | }); 218 | return model; 219 | } 220 | 221 | function vueSet(obj, path, value) { 222 | var fields = Array.isArray(path) ? path : toPath(path); 223 | var prop = fields.shift(); 224 | 225 | if (!fields.length) return _vue2.default.set(obj, prop, value); 226 | if (!hasOwnProperty(obj, prop) || obj[prop] === null) { 227 | var objVal = fields.length >= 1 && isNumberLike(fields[0]) ? [] : {}; 228 | _vue2.default.set(obj, prop, objVal); 229 | } 230 | vueSet(obj[prop], fields, value); 231 | } 232 | 233 | function vuexSet(path, value) { 234 | if (!isObjectLike(this.$store)) { 235 | throw deepsetError('could not find vuex store object on instance'); 236 | } 237 | var method = this.$store.commit ? 'commit' : 'dispatch'; 238 | this.$store[method]('VUEX_DEEP_SET', { path: path, value: value }); 239 | } 240 | 241 | function VUEX_DEEP_SET(state, _ref) { 242 | var path = _ref.path, 243 | value = _ref.value; 244 | 245 | vueSet(state, path, value); 246 | } 247 | 248 | function extendMutation() { 249 | var mutations = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; 250 | 251 | return Object.assign(mutations, { VUEX_DEEP_SET: VUEX_DEEP_SET }); 252 | } 253 | 254 | function vueModel(object, options) { 255 | var opts = Object.assign({}, options); 256 | if (!isObjectLike(object)) { 257 | throw deepsetError('invalid object specified for vue model'); 258 | } else if (opts.useProxy === false || typeof Proxy === 'undefined') { 259 | return buildVueModel(this, object, opts); 260 | } 261 | return getProxy(this, object, opts); 262 | } 263 | 264 | function vuexModel(vuexPath, options) { 265 | var opts = Object.assign({}, options); 266 | if (typeof vuexPath !== 'string' || vuexPath === '') { 267 | throw deepsetError('invalid vuex path string'); 268 | } else if (!isObjectLike(this.$store) || !isObjectLike(this.$store.state)) { 269 | throw deepsetError('no vuex state found'); 270 | } else if (!has(this.$store.state, vuexPath)) { 271 | throw deepsetError('cannot find path "' + vuexPath + '" in Vuex store'); 272 | } else if (opts.useProxy === false || typeof Proxy === 'undefined') { 273 | return buildVuexModel(this, vuexPath, opts); 274 | } 275 | return getProxy(this, vuexPath, opts); 276 | } 277 | 278 | function deepModel(base, options) { 279 | return typeof base === 'string' ? vuexModel.call(this, base, options) : vueModel.call(this, base, options); 280 | } 281 | 282 | function install(VueInstance) { 283 | VueInstance.prototype.$deepModel = deepModel; 284 | VueInstance.prototype.$vueSet = vueSet; 285 | VueInstance.prototype.$vuexSet = vuexSet; 286 | } 287 | 288 | },{}]},{},[1])(1) 289 | }); -------------------------------------------------------------------------------- /vue-deepset.min.js: -------------------------------------------------------------------------------- 1 | (function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.VueDeepSet=f()}})(function(){var define,module,exports;return function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o1&&arguments[1]!==undefined?arguments[1]:"";var paths=arguments.length>2&&arguments[2]!==undefined?arguments[2]:[];if(Array.isArray(object)){forEach(object,function(val,idx){pushPaths(val,(current+"."+idx).replace(/^\./,""),paths);pushPaths(val,(current+"["+idx+"]").replace(/^\./,""),paths);pushPaths(val,(current+'["'+idx+'"]').replace(/^\./,""),paths)})}else if(isObjectLike(object)){forEach(object,function(val,key){if(key.match(intKey)!==null){pushPaths(val,(current+"."+key).replace(/^\./,""),paths);pushPaths(val,(current+"["+key+"]").replace(/^\./,""),paths);pushPaths(val,(current+'["'+key+'"]').replace(/^\./,""),paths)}else if(!key.match(invalidKey)){pushPaths(val,(current+"."+key).replace(/^\./,""),paths)}pushPaths(val,(current+'["'+key+'"]').replace(/^\./,""),paths)})}return[].concat(new Set(paths))}function _get(obj,path,defaultValue){try{var o=obj;var fields=toPath(path);while(fields.length){var prop=fields.shift();o=o[prop];if(!fields.length){return o}}}catch(err){return defaultValue}return defaultValue}function getProxy(vm,base,options){noop(options);var isVuex=typeof base==="string";var object=isVuex?_get(vm.$store.state,base):base;return new Proxy(object,{get:function get(target,property){return _get(target,property)},set:function set(target,property,value){isVuex?vuexSet.call(vm,pathJoin(base,property),value):vueSet(target,property,value);return true},deleteProperty:function deleteProperty(){return true},enumerate:function enumerate(target){return Object.keys(target)},ownKeys:function ownKeys(target){return Object.keys(target)},has:function has(target,property){return true},defineProperty:function defineProperty(target){return target},getOwnPropertyDescriptor:function getOwnPropertyDescriptor(target,property){return{value:_get(target,property),writable:false,enumerable:true,configurable:true}}})}function buildVueModel(vm,object,options){var model={};forEach(getPaths(object),function(path){Object.defineProperty(model,path,{configurable:true,enumerable:true,get:function get(){return _get(object,path)},set:function set(value){return vueSet(object,path,value)}})});return model}function buildVuexModel(vm,vuexPath,options){var model=Object.create(null);var object=_get(vm.$store.state,vuexPath);var paths=getPaths(object);forEach(paths,function(path){var propPath=pathJoin(vuexPath,path);Object.defineProperty(model,path,{configurable:true,enumerable:true,get:function get(){return _get(vm.$store.state,propPath)},set:function set(value){return vuexSet.call(vm,propPath,value)}})});return model}function vueSet(obj,path,value){var fields=Array.isArray(path)?path:toPath(path);var prop=fields.shift();if(!fields.length)return _vue2.default.set(obj,prop,value);if(!hasOwnProperty(obj,prop)||obj[prop]===null){var objVal=fields.length>=1&&isNumberLike(fields[0])?[]:{};_vue2.default.set(obj,prop,objVal)}vueSet(obj[prop],fields,value)}function vuexSet(path,value){if(!isObjectLike(this.$store)){throw deepsetError("could not find vuex store object on instance")}var method=this.$store.commit?"commit":"dispatch";this.$store[method]("VUEX_DEEP_SET",{path:path,value:value})}function VUEX_DEEP_SET(state,_ref){var path=_ref.path,value=_ref.value;vueSet(state,path,value)}function extendMutation(){var mutations=arguments.length>0&&arguments[0]!==undefined?arguments[0]:{};return Object.assign(mutations,{VUEX_DEEP_SET:VUEX_DEEP_SET})}function vueModel(object,options){var opts=Object.assign({},options);if(!isObjectLike(object)){throw deepsetError("invalid object specified for vue model")}else if(opts.useProxy===false||typeof Proxy==="undefined"){return buildVueModel(this,object,opts)}return getProxy(this,object,opts)}function vuexModel(vuexPath,options){var opts=Object.assign({},options);if(typeof vuexPath!=="string"||vuexPath===""){throw deepsetError("invalid vuex path string")}else if(!isObjectLike(this.$store)||!isObjectLike(this.$store.state)){throw deepsetError("no vuex state found")}else if(!has(this.$store.state,vuexPath)){throw deepsetError('cannot find path "'+vuexPath+'" in Vuex store')}else if(opts.useProxy===false||typeof Proxy==="undefined"){return buildVuexModel(this,vuexPath,opts)}return getProxy(this,vuexPath,opts)}function deepModel(base,options){return typeof base==="string"?vuexModel.call(this,base,options):vueModel.call(this,base,options)}function install(VueInstance){VueInstance.prototype.$deepModel=deepModel;VueInstance.prototype.$vueSet=vueSet;VueInstance.prototype.$vuexSet=vuexSet}},{}]},{},[1])(1)}); 2 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@7.0.0-beta.36": 6 | version "7.0.0-beta.36" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0-beta.36.tgz#2349d7ec04b3a06945ae173280ef8579b63728e4" 8 | dependencies: 9 | chalk "^2.0.0" 10 | esutils "^2.0.2" 11 | js-tokens "^3.0.0" 12 | 13 | "@babel/helper-function-name@7.0.0-beta.36": 14 | version "7.0.0-beta.36" 15 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.0.0-beta.36.tgz#366e3bc35147721b69009f803907c4d53212e88d" 16 | dependencies: 17 | "@babel/helper-get-function-arity" "7.0.0-beta.36" 18 | "@babel/template" "7.0.0-beta.36" 19 | "@babel/types" "7.0.0-beta.36" 20 | 21 | "@babel/helper-get-function-arity@7.0.0-beta.36": 22 | version "7.0.0-beta.36" 23 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0-beta.36.tgz#f5383bac9a96b274828b10d98900e84ee43e32b8" 24 | dependencies: 25 | "@babel/types" "7.0.0-beta.36" 26 | 27 | "@babel/template@7.0.0-beta.36": 28 | version "7.0.0-beta.36" 29 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.0.0-beta.36.tgz#02e903de5d68bd7899bce3c5b5447e59529abb00" 30 | dependencies: 31 | "@babel/code-frame" "7.0.0-beta.36" 32 | "@babel/types" "7.0.0-beta.36" 33 | babylon "7.0.0-beta.36" 34 | lodash "^4.2.0" 35 | 36 | "@babel/traverse@7.0.0-beta.36": 37 | version "7.0.0-beta.36" 38 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.0.0-beta.36.tgz#1dc6f8750e89b6b979de5fe44aa993b1a2192261" 39 | dependencies: 40 | "@babel/code-frame" "7.0.0-beta.36" 41 | "@babel/helper-function-name" "7.0.0-beta.36" 42 | "@babel/types" "7.0.0-beta.36" 43 | babylon "7.0.0-beta.36" 44 | debug "^3.0.1" 45 | globals "^11.1.0" 46 | invariant "^2.2.0" 47 | lodash "^4.2.0" 48 | 49 | "@babel/types@7.0.0-beta.36": 50 | version "7.0.0-beta.36" 51 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.0.0-beta.36.tgz#64f2004353de42adb72f9ebb4665fc35b5499d23" 52 | dependencies: 53 | esutils "^2.0.2" 54 | lodash "^4.2.0" 55 | to-fast-properties "^2.0.0" 56 | 57 | JSONStream@^1.0.3: 58 | version "1.3.2" 59 | resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.2.tgz#c102371b6ec3a7cf3b847ca00c20bb0fce4c6dea" 60 | dependencies: 61 | jsonparse "^1.2.0" 62 | through ">=2.2.7 <3" 63 | 64 | abbrev@1: 65 | version "1.1.1" 66 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 67 | 68 | acorn-jsx@^3.0.0: 69 | version "3.0.1" 70 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 71 | dependencies: 72 | acorn "^3.0.4" 73 | 74 | acorn@^3.0.4: 75 | version "3.3.0" 76 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 77 | 78 | acorn@^4.0.3: 79 | version "4.0.13" 80 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 81 | 82 | acorn@^5.0.0, acorn@^5.2.1: 83 | version "5.3.0" 84 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.3.0.tgz#7446d39459c54fb49a80e6ee6478149b940ec822" 85 | 86 | ajv-keywords@^2.1.0: 87 | version "2.1.1" 88 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" 89 | 90 | ajv@^4.9.1: 91 | version "4.11.8" 92 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 93 | dependencies: 94 | co "^4.6.0" 95 | json-stable-stringify "^1.0.1" 96 | 97 | ajv@^5.2.3, ajv@^5.3.0: 98 | version "5.5.2" 99 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 100 | dependencies: 101 | co "^4.6.0" 102 | fast-deep-equal "^1.0.0" 103 | fast-json-stable-stringify "^2.0.0" 104 | json-schema-traverse "^0.3.0" 105 | 106 | ansi-escapes@^3.0.0: 107 | version "3.0.0" 108 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" 109 | 110 | ansi-regex@^2.0.0: 111 | version "2.1.1" 112 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 113 | 114 | ansi-regex@^3.0.0: 115 | version "3.0.0" 116 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 117 | 118 | ansi-styles@^2.2.1: 119 | version "2.2.1" 120 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 121 | 122 | ansi-styles@^3.1.0: 123 | version "3.2.0" 124 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 125 | dependencies: 126 | color-convert "^1.9.0" 127 | 128 | anymatch@^1.3.0: 129 | version "1.3.2" 130 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 131 | dependencies: 132 | micromatch "^2.1.5" 133 | normalize-path "^2.0.0" 134 | 135 | aproba@^1.0.3: 136 | version "1.2.0" 137 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 138 | 139 | are-we-there-yet@~1.1.2: 140 | version "1.1.4" 141 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 142 | dependencies: 143 | delegates "^1.0.0" 144 | readable-stream "^2.0.6" 145 | 146 | argparse@^1.0.7: 147 | version "1.0.9" 148 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 149 | dependencies: 150 | sprintf-js "~1.0.2" 151 | 152 | arr-diff@^2.0.0: 153 | version "2.0.0" 154 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 155 | dependencies: 156 | arr-flatten "^1.0.1" 157 | 158 | arr-flatten@^1.0.1: 159 | version "1.1.0" 160 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 161 | 162 | array-filter@~0.0.0: 163 | version "0.0.1" 164 | resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" 165 | 166 | array-map@~0.0.0: 167 | version "0.0.0" 168 | resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" 169 | 170 | array-reduce@~0.0.0: 171 | version "0.0.0" 172 | resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" 173 | 174 | array-union@^1.0.1: 175 | version "1.0.2" 176 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 177 | dependencies: 178 | array-uniq "^1.0.1" 179 | 180 | array-uniq@^1.0.1: 181 | version "1.0.3" 182 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 183 | 184 | array-unique@^0.2.1: 185 | version "0.2.1" 186 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 187 | 188 | arrify@^1.0.0: 189 | version "1.0.1" 190 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 191 | 192 | asn1.js@^4.0.0: 193 | version "4.9.2" 194 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.2.tgz#8117ef4f7ed87cd8f89044b5bff97ac243a16c9a" 195 | dependencies: 196 | bn.js "^4.0.0" 197 | inherits "^2.0.1" 198 | minimalistic-assert "^1.0.0" 199 | 200 | asn1@~0.2.3: 201 | version "0.2.3" 202 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 203 | 204 | assert-plus@1.0.0, assert-plus@^1.0.0: 205 | version "1.0.0" 206 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 207 | 208 | assert-plus@^0.2.0: 209 | version "0.2.0" 210 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 211 | 212 | assert@^1.4.0: 213 | version "1.4.1" 214 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 215 | dependencies: 216 | util "0.10.3" 217 | 218 | astw@^2.0.0: 219 | version "2.2.0" 220 | resolved "https://registry.yarnpkg.com/astw/-/astw-2.2.0.tgz#7bd41784d32493987aeb239b6b4e1c57a873b917" 221 | dependencies: 222 | acorn "^4.0.3" 223 | 224 | async-each@^1.0.0: 225 | version "1.0.1" 226 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 227 | 228 | asynckit@^0.4.0: 229 | version "0.4.0" 230 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 231 | 232 | aws-sign2@~0.6.0: 233 | version "0.6.0" 234 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 235 | 236 | aws4@^1.2.1: 237 | version "1.6.0" 238 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 239 | 240 | babel-cli@^6.26.0: 241 | version "6.26.0" 242 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" 243 | dependencies: 244 | babel-core "^6.26.0" 245 | babel-polyfill "^6.26.0" 246 | babel-register "^6.26.0" 247 | babel-runtime "^6.26.0" 248 | commander "^2.11.0" 249 | convert-source-map "^1.5.0" 250 | fs-readdir-recursive "^1.0.0" 251 | glob "^7.1.2" 252 | lodash "^4.17.4" 253 | output-file-sync "^1.1.2" 254 | path-is-absolute "^1.0.1" 255 | slash "^1.0.0" 256 | source-map "^0.5.6" 257 | v8flags "^2.1.1" 258 | optionalDependencies: 259 | chokidar "^1.6.1" 260 | 261 | babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: 262 | version "6.26.0" 263 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 264 | dependencies: 265 | chalk "^1.1.3" 266 | esutils "^2.0.2" 267 | js-tokens "^3.0.2" 268 | 269 | babel-core@^6.0.14, babel-core@^6.23.1, babel-core@^6.26.0: 270 | version "6.26.0" 271 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 272 | dependencies: 273 | babel-code-frame "^6.26.0" 274 | babel-generator "^6.26.0" 275 | babel-helpers "^6.24.1" 276 | babel-messages "^6.23.0" 277 | babel-register "^6.26.0" 278 | babel-runtime "^6.26.0" 279 | babel-template "^6.26.0" 280 | babel-traverse "^6.26.0" 281 | babel-types "^6.26.0" 282 | babylon "^6.18.0" 283 | convert-source-map "^1.5.0" 284 | debug "^2.6.8" 285 | json5 "^0.5.1" 286 | lodash "^4.17.4" 287 | minimatch "^3.0.4" 288 | path-is-absolute "^1.0.1" 289 | private "^0.1.7" 290 | slash "^1.0.0" 291 | source-map "^0.5.6" 292 | 293 | babel-eslint@^8.1.2: 294 | version "8.2.1" 295 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-8.2.1.tgz#136888f3c109edc65376c23ebf494f36a3e03951" 296 | dependencies: 297 | "@babel/code-frame" "7.0.0-beta.36" 298 | "@babel/traverse" "7.0.0-beta.36" 299 | "@babel/types" "7.0.0-beta.36" 300 | babylon "7.0.0-beta.36" 301 | eslint-scope "~3.7.1" 302 | eslint-visitor-keys "^1.0.0" 303 | 304 | babel-generator@^6.26.0: 305 | version "6.26.0" 306 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 307 | dependencies: 308 | babel-messages "^6.23.0" 309 | babel-runtime "^6.26.0" 310 | babel-types "^6.26.0" 311 | detect-indent "^4.0.0" 312 | jsesc "^1.3.0" 313 | lodash "^4.17.4" 314 | source-map "^0.5.6" 315 | trim-right "^1.0.1" 316 | 317 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 318 | version "6.24.1" 319 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 320 | dependencies: 321 | babel-helper-explode-assignable-expression "^6.24.1" 322 | babel-runtime "^6.22.0" 323 | babel-types "^6.24.1" 324 | 325 | babel-helper-call-delegate@^6.24.1: 326 | version "6.24.1" 327 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 328 | dependencies: 329 | babel-helper-hoist-variables "^6.24.1" 330 | babel-runtime "^6.22.0" 331 | babel-traverse "^6.24.1" 332 | babel-types "^6.24.1" 333 | 334 | babel-helper-define-map@^6.24.1: 335 | version "6.26.0" 336 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 337 | dependencies: 338 | babel-helper-function-name "^6.24.1" 339 | babel-runtime "^6.26.0" 340 | babel-types "^6.26.0" 341 | lodash "^4.17.4" 342 | 343 | babel-helper-explode-assignable-expression@^6.24.1: 344 | version "6.24.1" 345 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 346 | dependencies: 347 | babel-runtime "^6.22.0" 348 | babel-traverse "^6.24.1" 349 | babel-types "^6.24.1" 350 | 351 | babel-helper-function-name@^6.24.1: 352 | version "6.24.1" 353 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 354 | dependencies: 355 | babel-helper-get-function-arity "^6.24.1" 356 | babel-runtime "^6.22.0" 357 | babel-template "^6.24.1" 358 | babel-traverse "^6.24.1" 359 | babel-types "^6.24.1" 360 | 361 | babel-helper-get-function-arity@^6.24.1: 362 | version "6.24.1" 363 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 364 | dependencies: 365 | babel-runtime "^6.22.0" 366 | babel-types "^6.24.1" 367 | 368 | babel-helper-hoist-variables@^6.24.1: 369 | version "6.24.1" 370 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 371 | dependencies: 372 | babel-runtime "^6.22.0" 373 | babel-types "^6.24.1" 374 | 375 | babel-helper-optimise-call-expression@^6.24.1: 376 | version "6.24.1" 377 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 378 | dependencies: 379 | babel-runtime "^6.22.0" 380 | babel-types "^6.24.1" 381 | 382 | babel-helper-regex@^6.24.1: 383 | version "6.26.0" 384 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 385 | dependencies: 386 | babel-runtime "^6.26.0" 387 | babel-types "^6.26.0" 388 | lodash "^4.17.4" 389 | 390 | babel-helper-remap-async-to-generator@^6.24.1: 391 | version "6.24.1" 392 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 393 | dependencies: 394 | babel-helper-function-name "^6.24.1" 395 | babel-runtime "^6.22.0" 396 | babel-template "^6.24.1" 397 | babel-traverse "^6.24.1" 398 | babel-types "^6.24.1" 399 | 400 | babel-helper-replace-supers@^6.24.1: 401 | version "6.24.1" 402 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 403 | dependencies: 404 | babel-helper-optimise-call-expression "^6.24.1" 405 | babel-messages "^6.23.0" 406 | babel-runtime "^6.22.0" 407 | babel-template "^6.24.1" 408 | babel-traverse "^6.24.1" 409 | babel-types "^6.24.1" 410 | 411 | babel-helpers@^6.24.1: 412 | version "6.24.1" 413 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 414 | dependencies: 415 | babel-runtime "^6.22.0" 416 | babel-template "^6.24.1" 417 | 418 | babel-messages@^6.23.0: 419 | version "6.23.0" 420 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 421 | dependencies: 422 | babel-runtime "^6.22.0" 423 | 424 | babel-plugin-check-es2015-constants@^6.22.0: 425 | version "6.22.0" 426 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 427 | dependencies: 428 | babel-runtime "^6.22.0" 429 | 430 | babel-plugin-syntax-async-functions@^6.13.0, babel-plugin-syntax-async-functions@^6.8.0: 431 | version "6.13.0" 432 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 433 | 434 | babel-plugin-syntax-async-generators@^6.13.0: 435 | version "6.13.0" 436 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" 437 | 438 | babel-plugin-syntax-class-properties@^6.8.0: 439 | version "6.13.0" 440 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 441 | 442 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 443 | version "6.13.0" 444 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 445 | 446 | babel-plugin-syntax-object-rest-spread@^6.8.0: 447 | version "6.13.0" 448 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 449 | 450 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 451 | version "6.22.0" 452 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 453 | 454 | babel-plugin-transform-async-to-generator@^6.22.0: 455 | version "6.24.1" 456 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 457 | dependencies: 458 | babel-helper-remap-async-to-generator "^6.24.1" 459 | babel-plugin-syntax-async-functions "^6.8.0" 460 | babel-runtime "^6.22.0" 461 | 462 | babel-plugin-transform-class-properties@^6.24.1: 463 | version "6.24.1" 464 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" 465 | dependencies: 466 | babel-helper-function-name "^6.24.1" 467 | babel-plugin-syntax-class-properties "^6.8.0" 468 | babel-runtime "^6.22.0" 469 | babel-template "^6.24.1" 470 | 471 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 472 | version "6.22.0" 473 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 474 | dependencies: 475 | babel-runtime "^6.22.0" 476 | 477 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 478 | version "6.22.0" 479 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 480 | dependencies: 481 | babel-runtime "^6.22.0" 482 | 483 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 484 | version "6.26.0" 485 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 486 | dependencies: 487 | babel-runtime "^6.26.0" 488 | babel-template "^6.26.0" 489 | babel-traverse "^6.26.0" 490 | babel-types "^6.26.0" 491 | lodash "^4.17.4" 492 | 493 | babel-plugin-transform-es2015-classes@^6.23.0: 494 | version "6.24.1" 495 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 496 | dependencies: 497 | babel-helper-define-map "^6.24.1" 498 | babel-helper-function-name "^6.24.1" 499 | babel-helper-optimise-call-expression "^6.24.1" 500 | babel-helper-replace-supers "^6.24.1" 501 | babel-messages "^6.23.0" 502 | babel-runtime "^6.22.0" 503 | babel-template "^6.24.1" 504 | babel-traverse "^6.24.1" 505 | babel-types "^6.24.1" 506 | 507 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 508 | version "6.24.1" 509 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 510 | dependencies: 511 | babel-runtime "^6.22.0" 512 | babel-template "^6.24.1" 513 | 514 | babel-plugin-transform-es2015-destructuring@^6.23.0: 515 | version "6.23.0" 516 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 517 | dependencies: 518 | babel-runtime "^6.22.0" 519 | 520 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 521 | version "6.24.1" 522 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 523 | dependencies: 524 | babel-runtime "^6.22.0" 525 | babel-types "^6.24.1" 526 | 527 | babel-plugin-transform-es2015-for-of@^6.23.0: 528 | version "6.23.0" 529 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 530 | dependencies: 531 | babel-runtime "^6.22.0" 532 | 533 | babel-plugin-transform-es2015-function-name@^6.22.0: 534 | version "6.24.1" 535 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 536 | dependencies: 537 | babel-helper-function-name "^6.24.1" 538 | babel-runtime "^6.22.0" 539 | babel-types "^6.24.1" 540 | 541 | babel-plugin-transform-es2015-literals@^6.22.0: 542 | version "6.22.0" 543 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 544 | dependencies: 545 | babel-runtime "^6.22.0" 546 | 547 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 548 | version "6.24.1" 549 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 550 | dependencies: 551 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 552 | babel-runtime "^6.22.0" 553 | babel-template "^6.24.1" 554 | 555 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 556 | version "6.26.0" 557 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 558 | dependencies: 559 | babel-plugin-transform-strict-mode "^6.24.1" 560 | babel-runtime "^6.26.0" 561 | babel-template "^6.26.0" 562 | babel-types "^6.26.0" 563 | 564 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 565 | version "6.24.1" 566 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 567 | dependencies: 568 | babel-helper-hoist-variables "^6.24.1" 569 | babel-runtime "^6.22.0" 570 | babel-template "^6.24.1" 571 | 572 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 573 | version "6.24.1" 574 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 575 | dependencies: 576 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 577 | babel-runtime "^6.22.0" 578 | babel-template "^6.24.1" 579 | 580 | babel-plugin-transform-es2015-object-super@^6.22.0: 581 | version "6.24.1" 582 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 583 | dependencies: 584 | babel-helper-replace-supers "^6.24.1" 585 | babel-runtime "^6.22.0" 586 | 587 | babel-plugin-transform-es2015-parameters@^6.23.0: 588 | version "6.24.1" 589 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 590 | dependencies: 591 | babel-helper-call-delegate "^6.24.1" 592 | babel-helper-get-function-arity "^6.24.1" 593 | babel-runtime "^6.22.0" 594 | babel-template "^6.24.1" 595 | babel-traverse "^6.24.1" 596 | babel-types "^6.24.1" 597 | 598 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 599 | version "6.24.1" 600 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 601 | dependencies: 602 | babel-runtime "^6.22.0" 603 | babel-types "^6.24.1" 604 | 605 | babel-plugin-transform-es2015-spread@^6.22.0: 606 | version "6.22.0" 607 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 608 | dependencies: 609 | babel-runtime "^6.22.0" 610 | 611 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 612 | version "6.24.1" 613 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 614 | dependencies: 615 | babel-helper-regex "^6.24.1" 616 | babel-runtime "^6.22.0" 617 | babel-types "^6.24.1" 618 | 619 | babel-plugin-transform-es2015-template-literals@^6.22.0: 620 | version "6.22.0" 621 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 622 | dependencies: 623 | babel-runtime "^6.22.0" 624 | 625 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 626 | version "6.23.0" 627 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 628 | dependencies: 629 | babel-runtime "^6.22.0" 630 | 631 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 632 | version "6.24.1" 633 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 634 | dependencies: 635 | babel-helper-regex "^6.24.1" 636 | babel-runtime "^6.22.0" 637 | regexpu-core "^2.0.0" 638 | 639 | babel-plugin-transform-exponentiation-operator@^6.22.0: 640 | version "6.24.1" 641 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 642 | dependencies: 643 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 644 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 645 | babel-runtime "^6.22.0" 646 | 647 | babel-plugin-transform-object-rest-spread@^6.26.0: 648 | version "6.26.0" 649 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06" 650 | dependencies: 651 | babel-plugin-syntax-object-rest-spread "^6.8.0" 652 | babel-runtime "^6.26.0" 653 | 654 | babel-plugin-transform-regenerator@^6.22.0: 655 | version "6.26.0" 656 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 657 | dependencies: 658 | regenerator-transform "^0.10.0" 659 | 660 | babel-plugin-transform-strict-mode@^6.24.1: 661 | version "6.24.1" 662 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 663 | dependencies: 664 | babel-runtime "^6.22.0" 665 | babel-types "^6.24.1" 666 | 667 | babel-polyfill@^6.26.0: 668 | version "6.26.0" 669 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 670 | dependencies: 671 | babel-runtime "^6.26.0" 672 | core-js "^2.5.0" 673 | regenerator-runtime "^0.10.5" 674 | 675 | babel-preset-env@^1.6.1: 676 | version "1.6.1" 677 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.6.1.tgz#a18b564cc9b9afdf4aae57ae3c1b0d99188e6f48" 678 | dependencies: 679 | babel-plugin-check-es2015-constants "^6.22.0" 680 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 681 | babel-plugin-transform-async-to-generator "^6.22.0" 682 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 683 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 684 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 685 | babel-plugin-transform-es2015-classes "^6.23.0" 686 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 687 | babel-plugin-transform-es2015-destructuring "^6.23.0" 688 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 689 | babel-plugin-transform-es2015-for-of "^6.23.0" 690 | babel-plugin-transform-es2015-function-name "^6.22.0" 691 | babel-plugin-transform-es2015-literals "^6.22.0" 692 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 693 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 694 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 695 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 696 | babel-plugin-transform-es2015-object-super "^6.22.0" 697 | babel-plugin-transform-es2015-parameters "^6.23.0" 698 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 699 | babel-plugin-transform-es2015-spread "^6.22.0" 700 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 701 | babel-plugin-transform-es2015-template-literals "^6.22.0" 702 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 703 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 704 | babel-plugin-transform-exponentiation-operator "^6.22.0" 705 | babel-plugin-transform-regenerator "^6.22.0" 706 | browserslist "^2.1.2" 707 | invariant "^2.2.2" 708 | semver "^5.3.0" 709 | 710 | babel-register@^6.26.0: 711 | version "6.26.0" 712 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 713 | dependencies: 714 | babel-core "^6.26.0" 715 | babel-runtime "^6.26.0" 716 | core-js "^2.5.0" 717 | home-or-tmp "^2.0.0" 718 | lodash "^4.17.4" 719 | mkdirp "^0.5.1" 720 | source-map-support "^0.4.15" 721 | 722 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 723 | version "6.26.0" 724 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 725 | dependencies: 726 | core-js "^2.4.0" 727 | regenerator-runtime "^0.11.0" 728 | 729 | babel-template@^6.24.1, babel-template@^6.26.0: 730 | version "6.26.0" 731 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 732 | dependencies: 733 | babel-runtime "^6.26.0" 734 | babel-traverse "^6.26.0" 735 | babel-types "^6.26.0" 736 | babylon "^6.18.0" 737 | lodash "^4.17.4" 738 | 739 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 740 | version "6.26.0" 741 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 742 | dependencies: 743 | babel-code-frame "^6.26.0" 744 | babel-messages "^6.23.0" 745 | babel-runtime "^6.26.0" 746 | babel-types "^6.26.0" 747 | babylon "^6.18.0" 748 | debug "^2.6.8" 749 | globals "^9.18.0" 750 | invariant "^2.2.2" 751 | lodash "^4.17.4" 752 | 753 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 754 | version "6.26.0" 755 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 756 | dependencies: 757 | babel-runtime "^6.26.0" 758 | esutils "^2.0.2" 759 | lodash "^4.17.4" 760 | to-fast-properties "^1.0.3" 761 | 762 | babelify@^7.3.0: 763 | version "7.3.0" 764 | resolved "https://registry.yarnpkg.com/babelify/-/babelify-7.3.0.tgz#aa56aede7067fd7bd549666ee16dc285087e88e5" 765 | dependencies: 766 | babel-core "^6.0.14" 767 | object-assign "^4.0.0" 768 | 769 | babylon@7.0.0-beta.36: 770 | version "7.0.0-beta.36" 771 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-7.0.0-beta.36.tgz#3a3683ba6a9a1e02b0aa507c8e63435e39305b9e" 772 | 773 | babylon@^6.18.0: 774 | version "6.18.0" 775 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 776 | 777 | balanced-match@^1.0.0: 778 | version "1.0.0" 779 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 780 | 781 | base64-js@^1.0.2: 782 | version "1.2.1" 783 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886" 784 | 785 | bcrypt-pbkdf@^1.0.0: 786 | version "1.0.1" 787 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 788 | dependencies: 789 | tweetnacl "^0.14.3" 790 | 791 | binary-extensions@^1.0.0: 792 | version "1.11.0" 793 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 794 | 795 | bindings@^1.2.1: 796 | version "1.3.0" 797 | resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.3.0.tgz#b346f6ecf6a95f5a815c5839fc7cdb22502f1ed7" 798 | 799 | block-stream@*: 800 | version "0.0.9" 801 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 802 | dependencies: 803 | inherits "~2.0.0" 804 | 805 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 806 | version "4.11.8" 807 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" 808 | 809 | boom@2.x.x: 810 | version "2.10.1" 811 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 812 | dependencies: 813 | hoek "2.x.x" 814 | 815 | brace-expansion@^1.1.7: 816 | version "1.1.8" 817 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 818 | dependencies: 819 | balanced-match "^1.0.0" 820 | concat-map "0.0.1" 821 | 822 | braces@^1.8.2: 823 | version "1.8.5" 824 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 825 | dependencies: 826 | expand-range "^1.8.1" 827 | preserve "^0.2.0" 828 | repeat-element "^1.1.2" 829 | 830 | brorand@^1.0.1: 831 | version "1.1.0" 832 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 833 | 834 | browser-pack@^6.0.1: 835 | version "6.0.2" 836 | resolved "https://registry.yarnpkg.com/browser-pack/-/browser-pack-6.0.2.tgz#f86cd6cef4f5300c8e63e07a4d512f65fbff4531" 837 | dependencies: 838 | JSONStream "^1.0.3" 839 | combine-source-map "~0.7.1" 840 | defined "^1.0.0" 841 | through2 "^2.0.0" 842 | umd "^3.0.0" 843 | 844 | browser-resolve@^1.11.0, browser-resolve@^1.7.0: 845 | version "1.11.2" 846 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 847 | dependencies: 848 | resolve "1.1.7" 849 | 850 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 851 | version "1.1.1" 852 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.1.1.tgz#38b7ab55edb806ff2dcda1a7f1620773a477c49f" 853 | dependencies: 854 | buffer-xor "^1.0.3" 855 | cipher-base "^1.0.0" 856 | create-hash "^1.1.0" 857 | evp_bytestokey "^1.0.3" 858 | inherits "^2.0.1" 859 | safe-buffer "^5.0.1" 860 | 861 | browserify-cipher@^1.0.0: 862 | version "1.0.0" 863 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" 864 | dependencies: 865 | browserify-aes "^1.0.4" 866 | browserify-des "^1.0.0" 867 | evp_bytestokey "^1.0.0" 868 | 869 | browserify-des@^1.0.0: 870 | version "1.0.0" 871 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" 872 | dependencies: 873 | cipher-base "^1.0.1" 874 | des.js "^1.0.0" 875 | inherits "^2.0.1" 876 | 877 | browserify-global-shim@^1.0.3: 878 | version "1.0.3" 879 | resolved "https://registry.yarnpkg.com/browserify-global-shim/-/browserify-global-shim-1.0.3.tgz#b2f0de3d7220e2309ba0a8c4b5638ec1d97868a8" 880 | dependencies: 881 | browserify-transform-tools "^1.5.0" 882 | 883 | browserify-rsa@^4.0.0: 884 | version "4.0.1" 885 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 886 | dependencies: 887 | bn.js "^4.1.0" 888 | randombytes "^2.0.1" 889 | 890 | browserify-sign@^4.0.0: 891 | version "4.0.4" 892 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" 893 | dependencies: 894 | bn.js "^4.1.1" 895 | browserify-rsa "^4.0.0" 896 | create-hash "^1.1.0" 897 | create-hmac "^1.1.2" 898 | elliptic "^6.0.0" 899 | inherits "^2.0.1" 900 | parse-asn1 "^5.0.0" 901 | 902 | browserify-transform-tools@^1.5.0: 903 | version "1.7.0" 904 | resolved "https://registry.yarnpkg.com/browserify-transform-tools/-/browserify-transform-tools-1.7.0.tgz#83e277221f63259bed2e7eb2a283a970a501f4c4" 905 | dependencies: 906 | falafel "^2.0.0" 907 | through "^2.3.7" 908 | 909 | browserify-zlib@~0.2.0: 910 | version "0.2.0" 911 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" 912 | dependencies: 913 | pako "~1.0.5" 914 | 915 | browserify@^14.1.0: 916 | version "14.5.0" 917 | resolved "https://registry.yarnpkg.com/browserify/-/browserify-14.5.0.tgz#0bbbce521acd6e4d1d54d8e9365008efb85a9cc5" 918 | dependencies: 919 | JSONStream "^1.0.3" 920 | assert "^1.4.0" 921 | browser-pack "^6.0.1" 922 | browser-resolve "^1.11.0" 923 | browserify-zlib "~0.2.0" 924 | buffer "^5.0.2" 925 | cached-path-relative "^1.0.0" 926 | concat-stream "~1.5.1" 927 | console-browserify "^1.1.0" 928 | constants-browserify "~1.0.0" 929 | crypto-browserify "^3.0.0" 930 | defined "^1.0.0" 931 | deps-sort "^2.0.0" 932 | domain-browser "~1.1.0" 933 | duplexer2 "~0.1.2" 934 | events "~1.1.0" 935 | glob "^7.1.0" 936 | has "^1.0.0" 937 | htmlescape "^1.1.0" 938 | https-browserify "^1.0.0" 939 | inherits "~2.0.1" 940 | insert-module-globals "^7.0.0" 941 | labeled-stream-splicer "^2.0.0" 942 | module-deps "^4.0.8" 943 | os-browserify "~0.3.0" 944 | parents "^1.0.1" 945 | path-browserify "~0.0.0" 946 | process "~0.11.0" 947 | punycode "^1.3.2" 948 | querystring-es3 "~0.2.0" 949 | read-only-stream "^2.0.0" 950 | readable-stream "^2.0.2" 951 | resolve "^1.1.4" 952 | shasum "^1.0.0" 953 | shell-quote "^1.6.1" 954 | stream-browserify "^2.0.0" 955 | stream-http "^2.0.0" 956 | string_decoder "~1.0.0" 957 | subarg "^1.0.0" 958 | syntax-error "^1.1.1" 959 | through2 "^2.0.0" 960 | timers-browserify "^1.0.1" 961 | tty-browserify "~0.0.0" 962 | url "~0.11.0" 963 | util "~0.10.1" 964 | vm-browserify "~0.0.1" 965 | xtend "^4.0.0" 966 | 967 | browserslist@^2.1.2: 968 | version "2.11.3" 969 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.11.3.tgz#fe36167aed1bbcde4827ebfe71347a2cc70b99b2" 970 | dependencies: 971 | caniuse-lite "^1.0.30000792" 972 | electron-to-chromium "^1.3.30" 973 | 974 | buffer-xor@^1.0.3: 975 | version "1.0.3" 976 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 977 | 978 | buffer@^5.0.2: 979 | version "5.0.8" 980 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.0.8.tgz#84daa52e7cf2fa8ce4195bc5cf0f7809e0930b24" 981 | dependencies: 982 | base64-js "^1.0.2" 983 | ieee754 "^1.1.4" 984 | 985 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 986 | version "1.1.1" 987 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 988 | 989 | builtin-status-codes@^3.0.0: 990 | version "3.0.0" 991 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 992 | 993 | cached-path-relative@^1.0.0: 994 | version "1.0.1" 995 | resolved "https://registry.yarnpkg.com/cached-path-relative/-/cached-path-relative-1.0.1.tgz#d09c4b52800aa4c078e2dd81a869aac90d2e54e7" 996 | 997 | caller-path@^0.1.0: 998 | version "0.1.0" 999 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 1000 | dependencies: 1001 | callsites "^0.2.0" 1002 | 1003 | callsites@^0.2.0: 1004 | version "0.2.0" 1005 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 1006 | 1007 | caniuse-lite@^1.0.30000792: 1008 | version "1.0.30000792" 1009 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000792.tgz#d0cea981f8118f3961471afbb43c9a1e5bbf0332" 1010 | 1011 | caseless@~0.12.0: 1012 | version "0.12.0" 1013 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 1014 | 1015 | chalk@^1.1.3: 1016 | version "1.1.3" 1017 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 1018 | dependencies: 1019 | ansi-styles "^2.2.1" 1020 | escape-string-regexp "^1.0.2" 1021 | has-ansi "^2.0.0" 1022 | strip-ansi "^3.0.0" 1023 | supports-color "^2.0.0" 1024 | 1025 | chalk@^2.0.0, chalk@^2.1.0: 1026 | version "2.3.0" 1027 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" 1028 | dependencies: 1029 | ansi-styles "^3.1.0" 1030 | escape-string-regexp "^1.0.5" 1031 | supports-color "^4.0.0" 1032 | 1033 | chardet@^0.4.0: 1034 | version "0.4.2" 1035 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" 1036 | 1037 | chokidar@^1.6.1: 1038 | version "1.7.0" 1039 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 1040 | dependencies: 1041 | anymatch "^1.3.0" 1042 | async-each "^1.0.0" 1043 | glob-parent "^2.0.0" 1044 | inherits "^2.0.1" 1045 | is-binary-path "^1.0.0" 1046 | is-glob "^2.0.0" 1047 | path-is-absolute "^1.0.0" 1048 | readdirp "^2.0.0" 1049 | optionalDependencies: 1050 | fsevents "^1.0.0" 1051 | 1052 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: 1053 | version "1.0.4" 1054 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" 1055 | dependencies: 1056 | inherits "^2.0.1" 1057 | safe-buffer "^5.0.1" 1058 | 1059 | circular-json@^0.3.1: 1060 | version "0.3.3" 1061 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 1062 | 1063 | cli-cursor@^2.1.0: 1064 | version "2.1.0" 1065 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 1066 | dependencies: 1067 | restore-cursor "^2.0.0" 1068 | 1069 | cli-width@^2.0.0: 1070 | version "2.2.0" 1071 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 1072 | 1073 | co@^4.6.0: 1074 | version "4.6.0" 1075 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1076 | 1077 | code-point-at@^1.0.0: 1078 | version "1.1.0" 1079 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1080 | 1081 | color-convert@^1.9.0: 1082 | version "1.9.1" 1083 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 1084 | dependencies: 1085 | color-name "^1.1.1" 1086 | 1087 | color-name@^1.1.1: 1088 | version "1.1.3" 1089 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 1090 | 1091 | combine-source-map@~0.7.1: 1092 | version "0.7.2" 1093 | resolved "https://registry.yarnpkg.com/combine-source-map/-/combine-source-map-0.7.2.tgz#0870312856b307a87cc4ac486f3a9a62aeccc09e" 1094 | dependencies: 1095 | convert-source-map "~1.1.0" 1096 | inline-source-map "~0.6.0" 1097 | lodash.memoize "~3.0.3" 1098 | source-map "~0.5.3" 1099 | 1100 | combined-stream@^1.0.5, combined-stream@~1.0.5: 1101 | version "1.0.5" 1102 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 1103 | dependencies: 1104 | delayed-stream "~1.0.0" 1105 | 1106 | commander@^2.11.0: 1107 | version "2.13.0" 1108 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c" 1109 | 1110 | commander@~2.12.1: 1111 | version "2.12.2" 1112 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.12.2.tgz#0f5946c427ed9ec0d91a46bb9def53e54650e555" 1113 | 1114 | concat-map@0.0.1: 1115 | version "0.0.1" 1116 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1117 | 1118 | concat-stream@^1.6.0: 1119 | version "1.6.0" 1120 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 1121 | dependencies: 1122 | inherits "^2.0.3" 1123 | readable-stream "^2.2.2" 1124 | typedarray "^0.0.6" 1125 | 1126 | concat-stream@~1.5.0, concat-stream@~1.5.1: 1127 | version "1.5.2" 1128 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.2.tgz#708978624d856af41a5a741defdd261da752c266" 1129 | dependencies: 1130 | inherits "~2.0.1" 1131 | readable-stream "~2.0.0" 1132 | typedarray "~0.0.5" 1133 | 1134 | console-browserify@^1.1.0: 1135 | version "1.1.0" 1136 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 1137 | dependencies: 1138 | date-now "^0.1.4" 1139 | 1140 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1141 | version "1.1.0" 1142 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1143 | 1144 | constants-browserify@~1.0.0: 1145 | version "1.0.0" 1146 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 1147 | 1148 | contains-path@^0.1.0: 1149 | version "0.1.0" 1150 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 1151 | 1152 | convert-source-map@^1.5.0: 1153 | version "1.5.1" 1154 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 1155 | 1156 | convert-source-map@~1.1.0: 1157 | version "1.1.3" 1158 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.1.3.tgz#4829c877e9fe49b3161f3bf3673888e204699860" 1159 | 1160 | core-js@^2.4.0, core-js@^2.5.0: 1161 | version "2.5.3" 1162 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e" 1163 | 1164 | core-util-is@1.0.2, core-util-is@~1.0.0: 1165 | version "1.0.2" 1166 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1167 | 1168 | create-ecdh@^4.0.0: 1169 | version "4.0.0" 1170 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" 1171 | dependencies: 1172 | bn.js "^4.1.0" 1173 | elliptic "^6.0.0" 1174 | 1175 | create-hash@^1.1.0, create-hash@^1.1.2: 1176 | version "1.1.3" 1177 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd" 1178 | dependencies: 1179 | cipher-base "^1.0.1" 1180 | inherits "^2.0.1" 1181 | ripemd160 "^2.0.0" 1182 | sha.js "^2.4.0" 1183 | 1184 | create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: 1185 | version "1.1.6" 1186 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06" 1187 | dependencies: 1188 | cipher-base "^1.0.3" 1189 | create-hash "^1.1.0" 1190 | inherits "^2.0.1" 1191 | ripemd160 "^2.0.0" 1192 | safe-buffer "^5.0.1" 1193 | sha.js "^2.4.8" 1194 | 1195 | cross-spawn@^5.1.0: 1196 | version "5.1.0" 1197 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 1198 | dependencies: 1199 | lru-cache "^4.0.1" 1200 | shebang-command "^1.2.0" 1201 | which "^1.2.9" 1202 | 1203 | cryptiles@2.x.x: 1204 | version "2.0.5" 1205 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1206 | dependencies: 1207 | boom "2.x.x" 1208 | 1209 | crypto-browserify@^3.0.0: 1210 | version "3.12.0" 1211 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" 1212 | dependencies: 1213 | browserify-cipher "^1.0.0" 1214 | browserify-sign "^4.0.0" 1215 | create-ecdh "^4.0.0" 1216 | create-hash "^1.1.0" 1217 | create-hmac "^1.1.0" 1218 | diffie-hellman "^5.0.0" 1219 | inherits "^2.0.1" 1220 | pbkdf2 "^3.0.3" 1221 | public-encrypt "^4.0.0" 1222 | randombytes "^2.0.0" 1223 | randomfill "^1.0.3" 1224 | 1225 | dashdash@^1.12.0: 1226 | version "1.14.1" 1227 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1228 | dependencies: 1229 | assert-plus "^1.0.0" 1230 | 1231 | date-now@^0.1.4: 1232 | version "0.1.4" 1233 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 1234 | 1235 | debug@^2.2.0, debug@^2.6.8, debug@^2.6.9: 1236 | version "2.6.9" 1237 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1238 | dependencies: 1239 | ms "2.0.0" 1240 | 1241 | debug@^3.0.1, debug@^3.1.0: 1242 | version "3.1.0" 1243 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 1244 | dependencies: 1245 | ms "2.0.0" 1246 | 1247 | deep-extend@~0.4.0: 1248 | version "0.4.2" 1249 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1250 | 1251 | deep-is@~0.1.3: 1252 | version "0.1.3" 1253 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1254 | 1255 | defined@^1.0.0: 1256 | version "1.0.0" 1257 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 1258 | 1259 | del@^2.0.2: 1260 | version "2.2.2" 1261 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1262 | dependencies: 1263 | globby "^5.0.0" 1264 | is-path-cwd "^1.0.0" 1265 | is-path-in-cwd "^1.0.0" 1266 | object-assign "^4.0.1" 1267 | pify "^2.0.0" 1268 | pinkie-promise "^2.0.0" 1269 | rimraf "^2.2.8" 1270 | 1271 | delayed-stream@~1.0.0: 1272 | version "1.0.0" 1273 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1274 | 1275 | delegates@^1.0.0: 1276 | version "1.0.0" 1277 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1278 | 1279 | denodeify@^1.2.1: 1280 | version "1.2.1" 1281 | resolved "https://registry.yarnpkg.com/denodeify/-/denodeify-1.2.1.tgz#3a36287f5034e699e7577901052c2e6c94251631" 1282 | 1283 | deps-sort@^2.0.0: 1284 | version "2.0.0" 1285 | resolved "https://registry.yarnpkg.com/deps-sort/-/deps-sort-2.0.0.tgz#091724902e84658260eb910748cccd1af6e21fb5" 1286 | dependencies: 1287 | JSONStream "^1.0.3" 1288 | shasum "^1.0.0" 1289 | subarg "^1.0.0" 1290 | through2 "^2.0.0" 1291 | 1292 | des.js@^1.0.0: 1293 | version "1.0.0" 1294 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 1295 | dependencies: 1296 | inherits "^2.0.1" 1297 | minimalistic-assert "^1.0.0" 1298 | 1299 | detect-indent@^4.0.0: 1300 | version "4.0.0" 1301 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1302 | dependencies: 1303 | repeating "^2.0.0" 1304 | 1305 | detect-libc@^1.0.2: 1306 | version "1.0.3" 1307 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 1308 | 1309 | detective@^4.0.0: 1310 | version "4.7.1" 1311 | resolved "https://registry.yarnpkg.com/detective/-/detective-4.7.1.tgz#0eca7314338442febb6d65da54c10bb1c82b246e" 1312 | dependencies: 1313 | acorn "^5.2.1" 1314 | defined "^1.0.0" 1315 | 1316 | diffie-hellman@^5.0.0: 1317 | version "5.0.2" 1318 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" 1319 | dependencies: 1320 | bn.js "^4.1.0" 1321 | miller-rabin "^4.0.0" 1322 | randombytes "^2.0.0" 1323 | 1324 | doctrine@1.5.0: 1325 | version "1.5.0" 1326 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1327 | dependencies: 1328 | esutils "^2.0.2" 1329 | isarray "^1.0.0" 1330 | 1331 | doctrine@^2.0.2: 1332 | version "2.1.0" 1333 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 1334 | dependencies: 1335 | esutils "^2.0.2" 1336 | 1337 | domain-browser@~1.1.0: 1338 | version "1.1.7" 1339 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" 1340 | 1341 | duplexer2@^0.1.2, duplexer2@~0.1.0, duplexer2@~0.1.2: 1342 | version "0.1.4" 1343 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" 1344 | dependencies: 1345 | readable-stream "^2.0.2" 1346 | 1347 | ecc-jsbn@~0.1.1: 1348 | version "0.1.1" 1349 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1350 | dependencies: 1351 | jsbn "~0.1.0" 1352 | 1353 | electron-releases@^2.1.0: 1354 | version "2.1.0" 1355 | resolved "https://registry.yarnpkg.com/electron-releases/-/electron-releases-2.1.0.tgz#c5614bf811f176ce3c836e368a0625782341fd4e" 1356 | 1357 | electron-to-chromium@^1.3.30: 1358 | version "1.3.30" 1359 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.30.tgz#9666f532a64586651fc56a72513692e820d06a80" 1360 | dependencies: 1361 | electron-releases "^2.1.0" 1362 | 1363 | elliptic@^6.0.0: 1364 | version "6.4.0" 1365 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" 1366 | dependencies: 1367 | bn.js "^4.4.0" 1368 | brorand "^1.0.1" 1369 | hash.js "^1.0.0" 1370 | hmac-drbg "^1.0.0" 1371 | inherits "^2.0.1" 1372 | minimalistic-assert "^1.0.0" 1373 | minimalistic-crypto-utils "^1.0.0" 1374 | 1375 | error-ex@^1.2.0: 1376 | version "1.3.1" 1377 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1378 | dependencies: 1379 | is-arrayish "^0.2.1" 1380 | 1381 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1382 | version "1.0.5" 1383 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1384 | 1385 | eslint-import-resolver-node@^0.3.1: 1386 | version "0.3.2" 1387 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz#58f15fb839b8d0576ca980413476aab2472db66a" 1388 | dependencies: 1389 | debug "^2.6.9" 1390 | resolve "^1.5.0" 1391 | 1392 | eslint-module-utils@^2.1.1: 1393 | version "2.1.1" 1394 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.1.1.tgz#abaec824177613b8a95b299639e1b6facf473449" 1395 | dependencies: 1396 | debug "^2.6.8" 1397 | pkg-dir "^1.0.0" 1398 | 1399 | eslint-plugin-import@^2.8.0: 1400 | version "2.8.0" 1401 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.8.0.tgz#fa1b6ef31fcb3c501c09859c1b86f1fc5b986894" 1402 | dependencies: 1403 | builtin-modules "^1.1.1" 1404 | contains-path "^0.1.0" 1405 | debug "^2.6.8" 1406 | doctrine "1.5.0" 1407 | eslint-import-resolver-node "^0.3.1" 1408 | eslint-module-utils "^2.1.1" 1409 | has "^1.0.1" 1410 | lodash.cond "^4.3.0" 1411 | minimatch "^3.0.3" 1412 | read-pkg-up "^2.0.0" 1413 | 1414 | eslint-plugin-node@^5.2.1: 1415 | version "5.2.1" 1416 | resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-5.2.1.tgz#80df3253c4d7901045ec87fa660a284e32bdca29" 1417 | dependencies: 1418 | ignore "^3.3.6" 1419 | minimatch "^3.0.4" 1420 | resolve "^1.3.3" 1421 | semver "5.3.0" 1422 | 1423 | eslint-plugin-promise@^3.6.0: 1424 | version "3.6.0" 1425 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.6.0.tgz#54b7658c8f454813dc2a870aff8152ec4969ba75" 1426 | 1427 | eslint-plugin-standard@^3.0.1: 1428 | version "3.0.1" 1429 | resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-3.0.1.tgz#34d0c915b45edc6f010393c7eef3823b08565cf2" 1430 | 1431 | eslint-scope@^3.7.1, eslint-scope@~3.7.1: 1432 | version "3.7.1" 1433 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 1434 | dependencies: 1435 | esrecurse "^4.1.0" 1436 | estraverse "^4.1.1" 1437 | 1438 | eslint-visitor-keys@^1.0.0: 1439 | version "1.0.0" 1440 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" 1441 | 1442 | eslint@^4.15.0: 1443 | version "4.15.0" 1444 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.15.0.tgz#89ab38c12713eec3d13afac14e4a89e75ef08145" 1445 | dependencies: 1446 | ajv "^5.3.0" 1447 | babel-code-frame "^6.22.0" 1448 | chalk "^2.1.0" 1449 | concat-stream "^1.6.0" 1450 | cross-spawn "^5.1.0" 1451 | debug "^3.1.0" 1452 | doctrine "^2.0.2" 1453 | eslint-scope "^3.7.1" 1454 | eslint-visitor-keys "^1.0.0" 1455 | espree "^3.5.2" 1456 | esquery "^1.0.0" 1457 | esutils "^2.0.2" 1458 | file-entry-cache "^2.0.0" 1459 | functional-red-black-tree "^1.0.1" 1460 | glob "^7.1.2" 1461 | globals "^11.0.1" 1462 | ignore "^3.3.3" 1463 | imurmurhash "^0.1.4" 1464 | inquirer "^3.0.6" 1465 | is-resolvable "^1.0.0" 1466 | js-yaml "^3.9.1" 1467 | json-stable-stringify-without-jsonify "^1.0.1" 1468 | levn "^0.3.0" 1469 | lodash "^4.17.4" 1470 | minimatch "^3.0.2" 1471 | mkdirp "^0.5.1" 1472 | natural-compare "^1.4.0" 1473 | optionator "^0.8.2" 1474 | path-is-inside "^1.0.2" 1475 | pluralize "^7.0.0" 1476 | progress "^2.0.0" 1477 | require-uncached "^1.0.3" 1478 | semver "^5.3.0" 1479 | strip-ansi "^4.0.0" 1480 | strip-json-comments "~2.0.1" 1481 | table "^4.0.1" 1482 | text-table "~0.2.0" 1483 | 1484 | espree@^3.5.2: 1485 | version "3.5.2" 1486 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.2.tgz#756ada8b979e9dcfcdb30aad8d1a9304a905e1ca" 1487 | dependencies: 1488 | acorn "^5.2.1" 1489 | acorn-jsx "^3.0.0" 1490 | 1491 | esprima@^4.0.0: 1492 | version "4.0.0" 1493 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1494 | 1495 | esquery@^1.0.0: 1496 | version "1.0.0" 1497 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1498 | dependencies: 1499 | estraverse "^4.0.0" 1500 | 1501 | esrecurse@^4.1.0: 1502 | version "4.2.0" 1503 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 1504 | dependencies: 1505 | estraverse "^4.1.0" 1506 | object-assign "^4.0.1" 1507 | 1508 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1: 1509 | version "4.2.0" 1510 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1511 | 1512 | esutils@^2.0.2: 1513 | version "2.0.2" 1514 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1515 | 1516 | events@~1.1.0: 1517 | version "1.1.1" 1518 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 1519 | 1520 | evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: 1521 | version "1.0.3" 1522 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" 1523 | dependencies: 1524 | md5.js "^1.3.4" 1525 | safe-buffer "^5.1.1" 1526 | 1527 | expand-brackets@^0.1.4: 1528 | version "0.1.5" 1529 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1530 | dependencies: 1531 | is-posix-bracket "^0.1.0" 1532 | 1533 | expand-range@^1.8.1: 1534 | version "1.8.2" 1535 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1536 | dependencies: 1537 | fill-range "^2.1.0" 1538 | 1539 | extend@~3.0.0: 1540 | version "3.0.1" 1541 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1542 | 1543 | external-editor@^2.0.4: 1544 | version "2.1.0" 1545 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.1.0.tgz#3d026a21b7f95b5726387d4200ac160d372c3b48" 1546 | dependencies: 1547 | chardet "^0.4.0" 1548 | iconv-lite "^0.4.17" 1549 | tmp "^0.0.33" 1550 | 1551 | extglob@^0.3.1: 1552 | version "0.3.2" 1553 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1554 | dependencies: 1555 | is-extglob "^1.0.0" 1556 | 1557 | extsprintf@1.3.0: 1558 | version "1.3.0" 1559 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1560 | 1561 | extsprintf@^1.2.0: 1562 | version "1.4.0" 1563 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1564 | 1565 | falafel@^2.0.0: 1566 | version "2.1.0" 1567 | resolved "https://registry.yarnpkg.com/falafel/-/falafel-2.1.0.tgz#96bb17761daba94f46d001738b3cedf3a67fe06c" 1568 | dependencies: 1569 | acorn "^5.0.0" 1570 | foreach "^2.0.5" 1571 | isarray "0.0.1" 1572 | object-keys "^1.0.6" 1573 | 1574 | fast-deep-equal@^1.0.0: 1575 | version "1.0.0" 1576 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 1577 | 1578 | fast-json-stable-stringify@^2.0.0: 1579 | version "2.0.0" 1580 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1581 | 1582 | fast-levenshtein@~2.0.4: 1583 | version "2.0.6" 1584 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1585 | 1586 | figures@^2.0.0: 1587 | version "2.0.0" 1588 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1589 | dependencies: 1590 | escape-string-regexp "^1.0.5" 1591 | 1592 | file-entry-cache@^2.0.0: 1593 | version "2.0.0" 1594 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1595 | dependencies: 1596 | flat-cache "^1.2.1" 1597 | object-assign "^4.0.1" 1598 | 1599 | filename-regex@^2.0.0: 1600 | version "2.0.1" 1601 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1602 | 1603 | fill-range@^2.1.0: 1604 | version "2.2.3" 1605 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1606 | dependencies: 1607 | is-number "^2.1.0" 1608 | isobject "^2.0.0" 1609 | randomatic "^1.1.3" 1610 | repeat-element "^1.1.2" 1611 | repeat-string "^1.5.2" 1612 | 1613 | find-up@^1.0.0: 1614 | version "1.1.2" 1615 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1616 | dependencies: 1617 | path-exists "^2.0.0" 1618 | pinkie-promise "^2.0.0" 1619 | 1620 | find-up@^2.0.0: 1621 | version "2.1.0" 1622 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1623 | dependencies: 1624 | locate-path "^2.0.0" 1625 | 1626 | flat-cache@^1.2.1: 1627 | version "1.3.0" 1628 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481" 1629 | dependencies: 1630 | circular-json "^0.3.1" 1631 | del "^2.0.2" 1632 | graceful-fs "^4.1.2" 1633 | write "^0.2.1" 1634 | 1635 | for-in@^1.0.1: 1636 | version "1.0.2" 1637 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1638 | 1639 | for-own@^0.1.4: 1640 | version "0.1.5" 1641 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1642 | dependencies: 1643 | for-in "^1.0.1" 1644 | 1645 | foreach@^2.0.5: 1646 | version "2.0.5" 1647 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1648 | 1649 | forever-agent@~0.6.1: 1650 | version "0.6.1" 1651 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1652 | 1653 | form-data@~2.1.1: 1654 | version "2.1.4" 1655 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1656 | dependencies: 1657 | asynckit "^0.4.0" 1658 | combined-stream "^1.0.5" 1659 | mime-types "^2.1.12" 1660 | 1661 | fs-readdir-recursive@^1.0.0: 1662 | version "1.1.0" 1663 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" 1664 | 1665 | fs.realpath@^1.0.0: 1666 | version "1.0.0" 1667 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1668 | 1669 | fsevents@^1.0.0: 1670 | version "1.1.3" 1671 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" 1672 | dependencies: 1673 | nan "^2.3.0" 1674 | node-pre-gyp "^0.6.39" 1675 | 1676 | fstream-ignore@^1.0.5: 1677 | version "1.0.5" 1678 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1679 | dependencies: 1680 | fstream "^1.0.0" 1681 | inherits "2" 1682 | minimatch "^3.0.0" 1683 | 1684 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1685 | version "1.0.11" 1686 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1687 | dependencies: 1688 | graceful-fs "^4.1.2" 1689 | inherits "~2.0.0" 1690 | mkdirp ">=0.5 0" 1691 | rimraf "2" 1692 | 1693 | function-bind@^1.0.2: 1694 | version "1.1.1" 1695 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1696 | 1697 | functional-red-black-tree@^1.0.1: 1698 | version "1.0.1" 1699 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1700 | 1701 | gauge@~2.7.3: 1702 | version "2.7.4" 1703 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1704 | dependencies: 1705 | aproba "^1.0.3" 1706 | console-control-strings "^1.0.0" 1707 | has-unicode "^2.0.0" 1708 | object-assign "^4.1.0" 1709 | signal-exit "^3.0.0" 1710 | string-width "^1.0.1" 1711 | strip-ansi "^3.0.1" 1712 | wide-align "^1.1.0" 1713 | 1714 | getpass@^0.1.1: 1715 | version "0.1.7" 1716 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1717 | dependencies: 1718 | assert-plus "^1.0.0" 1719 | 1720 | glob-base@^0.3.0: 1721 | version "0.3.0" 1722 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1723 | dependencies: 1724 | glob-parent "^2.0.0" 1725 | is-glob "^2.0.0" 1726 | 1727 | glob-parent@^2.0.0: 1728 | version "2.0.0" 1729 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1730 | dependencies: 1731 | is-glob "^2.0.0" 1732 | 1733 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.0, glob@^7.1.2: 1734 | version "7.1.2" 1735 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1736 | dependencies: 1737 | fs.realpath "^1.0.0" 1738 | inflight "^1.0.4" 1739 | inherits "2" 1740 | minimatch "^3.0.4" 1741 | once "^1.3.0" 1742 | path-is-absolute "^1.0.0" 1743 | 1744 | globals@^11.0.1, globals@^11.1.0: 1745 | version "11.1.0" 1746 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.1.0.tgz#632644457f5f0e3ae711807183700ebf2e4633e4" 1747 | 1748 | globals@^9.18.0: 1749 | version "9.18.0" 1750 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1751 | 1752 | globby@^5.0.0: 1753 | version "5.0.0" 1754 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1755 | dependencies: 1756 | array-union "^1.0.1" 1757 | arrify "^1.0.0" 1758 | glob "^7.0.3" 1759 | object-assign "^4.0.1" 1760 | pify "^2.0.0" 1761 | pinkie-promise "^2.0.0" 1762 | 1763 | graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1764 | version "4.1.11" 1765 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1766 | 1767 | har-schema@^1.0.5: 1768 | version "1.0.5" 1769 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1770 | 1771 | har-validator@~4.2.1: 1772 | version "4.2.1" 1773 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1774 | dependencies: 1775 | ajv "^4.9.1" 1776 | har-schema "^1.0.5" 1777 | 1778 | has-ansi@^2.0.0: 1779 | version "2.0.0" 1780 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1781 | dependencies: 1782 | ansi-regex "^2.0.0" 1783 | 1784 | has-flag@^2.0.0: 1785 | version "2.0.0" 1786 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1787 | 1788 | has-unicode@^2.0.0: 1789 | version "2.0.1" 1790 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1791 | 1792 | has@^1.0.0, has@^1.0.1: 1793 | version "1.0.1" 1794 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1795 | dependencies: 1796 | function-bind "^1.0.2" 1797 | 1798 | hash-base@^2.0.0: 1799 | version "2.0.2" 1800 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1" 1801 | dependencies: 1802 | inherits "^2.0.1" 1803 | 1804 | hash-base@^3.0.0: 1805 | version "3.0.4" 1806 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" 1807 | dependencies: 1808 | inherits "^2.0.1" 1809 | safe-buffer "^5.0.1" 1810 | 1811 | hash.js@^1.0.0, hash.js@^1.0.3: 1812 | version "1.1.3" 1813 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846" 1814 | dependencies: 1815 | inherits "^2.0.3" 1816 | minimalistic-assert "^1.0.0" 1817 | 1818 | hawk@3.1.3, hawk@~3.1.3: 1819 | version "3.1.3" 1820 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1821 | dependencies: 1822 | boom "2.x.x" 1823 | cryptiles "2.x.x" 1824 | hoek "2.x.x" 1825 | sntp "1.x.x" 1826 | 1827 | hmac-drbg@^1.0.0: 1828 | version "1.0.1" 1829 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 1830 | dependencies: 1831 | hash.js "^1.0.3" 1832 | minimalistic-assert "^1.0.0" 1833 | minimalistic-crypto-utils "^1.0.1" 1834 | 1835 | hoek@2.x.x: 1836 | version "2.16.3" 1837 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1838 | 1839 | home-or-tmp@^2.0.0: 1840 | version "2.0.0" 1841 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1842 | dependencies: 1843 | os-homedir "^1.0.0" 1844 | os-tmpdir "^1.0.1" 1845 | 1846 | hosted-git-info@^2.1.4: 1847 | version "2.5.0" 1848 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1849 | 1850 | htmlescape@^1.1.0: 1851 | version "1.1.1" 1852 | resolved "https://registry.yarnpkg.com/htmlescape/-/htmlescape-1.1.1.tgz#3a03edc2214bca3b66424a3e7959349509cb0351" 1853 | 1854 | http-signature@~1.1.0: 1855 | version "1.1.1" 1856 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1857 | dependencies: 1858 | assert-plus "^0.2.0" 1859 | jsprim "^1.2.2" 1860 | sshpk "^1.7.0" 1861 | 1862 | https-browserify@^1.0.0: 1863 | version "1.0.0" 1864 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" 1865 | 1866 | iconv-lite@^0.4.17: 1867 | version "0.4.19" 1868 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1869 | 1870 | ieee754@^1.1.4: 1871 | version "1.1.8" 1872 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 1873 | 1874 | ignore@^3.3.3, ignore@^3.3.6: 1875 | version "3.3.7" 1876 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.7.tgz#612289bfb3c220e186a58118618d5be8c1bab021" 1877 | 1878 | imurmurhash@^0.1.4: 1879 | version "0.1.4" 1880 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1881 | 1882 | indexof@0.0.1: 1883 | version "0.0.1" 1884 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 1885 | 1886 | inflight@^1.0.4: 1887 | version "1.0.6" 1888 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1889 | dependencies: 1890 | once "^1.3.0" 1891 | wrappy "1" 1892 | 1893 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 1894 | version "2.0.3" 1895 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1896 | 1897 | inherits@2.0.1: 1898 | version "2.0.1" 1899 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1900 | 1901 | ini@~1.3.0: 1902 | version "1.3.5" 1903 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1904 | 1905 | inline-source-map@~0.6.0: 1906 | version "0.6.2" 1907 | resolved "https://registry.yarnpkg.com/inline-source-map/-/inline-source-map-0.6.2.tgz#f9393471c18a79d1724f863fa38b586370ade2a5" 1908 | dependencies: 1909 | source-map "~0.5.3" 1910 | 1911 | inquirer@^3.0.6: 1912 | version "3.3.0" 1913 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" 1914 | dependencies: 1915 | ansi-escapes "^3.0.0" 1916 | chalk "^2.0.0" 1917 | cli-cursor "^2.1.0" 1918 | cli-width "^2.0.0" 1919 | external-editor "^2.0.4" 1920 | figures "^2.0.0" 1921 | lodash "^4.3.0" 1922 | mute-stream "0.0.7" 1923 | run-async "^2.2.0" 1924 | rx-lite "^4.0.8" 1925 | rx-lite-aggregates "^4.0.8" 1926 | string-width "^2.1.0" 1927 | strip-ansi "^4.0.0" 1928 | through "^2.3.6" 1929 | 1930 | insert-module-globals@^7.0.0: 1931 | version "7.0.1" 1932 | resolved "https://registry.yarnpkg.com/insert-module-globals/-/insert-module-globals-7.0.1.tgz#c03bf4e01cb086d5b5e5ace8ad0afe7889d638c3" 1933 | dependencies: 1934 | JSONStream "^1.0.3" 1935 | combine-source-map "~0.7.1" 1936 | concat-stream "~1.5.1" 1937 | is-buffer "^1.1.0" 1938 | lexical-scope "^1.2.0" 1939 | process "~0.11.0" 1940 | through2 "^2.0.0" 1941 | xtend "^4.0.0" 1942 | 1943 | invariant@^2.2.0, invariant@^2.2.2: 1944 | version "2.2.2" 1945 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1946 | dependencies: 1947 | loose-envify "^1.0.0" 1948 | 1949 | is-arrayish@^0.2.1: 1950 | version "0.2.1" 1951 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1952 | 1953 | is-binary-path@^1.0.0: 1954 | version "1.0.1" 1955 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1956 | dependencies: 1957 | binary-extensions "^1.0.0" 1958 | 1959 | is-buffer@^1.1.0, is-buffer@^1.1.5: 1960 | version "1.1.6" 1961 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1962 | 1963 | is-builtin-module@^1.0.0: 1964 | version "1.0.0" 1965 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1966 | dependencies: 1967 | builtin-modules "^1.0.0" 1968 | 1969 | is-dotfile@^1.0.0: 1970 | version "1.0.3" 1971 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1972 | 1973 | is-equal-shallow@^0.1.3: 1974 | version "0.1.3" 1975 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1976 | dependencies: 1977 | is-primitive "^2.0.0" 1978 | 1979 | is-extendable@^0.1.1: 1980 | version "0.1.1" 1981 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1982 | 1983 | is-extglob@^1.0.0: 1984 | version "1.0.0" 1985 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1986 | 1987 | is-finite@^1.0.0: 1988 | version "1.0.2" 1989 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1990 | dependencies: 1991 | number-is-nan "^1.0.0" 1992 | 1993 | is-fullwidth-code-point@^1.0.0: 1994 | version "1.0.0" 1995 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1996 | dependencies: 1997 | number-is-nan "^1.0.0" 1998 | 1999 | is-fullwidth-code-point@^2.0.0: 2000 | version "2.0.0" 2001 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 2002 | 2003 | is-glob@^2.0.0, is-glob@^2.0.1: 2004 | version "2.0.1" 2005 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 2006 | dependencies: 2007 | is-extglob "^1.0.0" 2008 | 2009 | is-number@^2.1.0: 2010 | version "2.1.0" 2011 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2012 | dependencies: 2013 | kind-of "^3.0.2" 2014 | 2015 | is-number@^3.0.0: 2016 | version "3.0.0" 2017 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 2018 | dependencies: 2019 | kind-of "^3.0.2" 2020 | 2021 | is-path-cwd@^1.0.0: 2022 | version "1.0.0" 2023 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 2024 | 2025 | is-path-in-cwd@^1.0.0: 2026 | version "1.0.0" 2027 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 2028 | dependencies: 2029 | is-path-inside "^1.0.0" 2030 | 2031 | is-path-inside@^1.0.0: 2032 | version "1.0.1" 2033 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" 2034 | dependencies: 2035 | path-is-inside "^1.0.1" 2036 | 2037 | is-posix-bracket@^0.1.0: 2038 | version "0.1.1" 2039 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2040 | 2041 | is-primitive@^2.0.0: 2042 | version "2.0.0" 2043 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2044 | 2045 | is-promise@^2.1.0: 2046 | version "2.1.0" 2047 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 2048 | 2049 | is-resolvable@^1.0.0: 2050 | version "1.0.1" 2051 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.1.tgz#acca1cd36dbe44b974b924321555a70ba03b1cf4" 2052 | 2053 | is-typedarray@~1.0.0: 2054 | version "1.0.0" 2055 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2056 | 2057 | isarray@0.0.1, isarray@~0.0.1: 2058 | version "0.0.1" 2059 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 2060 | 2061 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2062 | version "1.0.0" 2063 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2064 | 2065 | isexe@^2.0.0: 2066 | version "2.0.0" 2067 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2068 | 2069 | isobject@^2.0.0: 2070 | version "2.1.0" 2071 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2072 | dependencies: 2073 | isarray "1.0.0" 2074 | 2075 | isstream@~0.1.2: 2076 | version "0.1.2" 2077 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2078 | 2079 | js-tokens@^3.0.0, js-tokens@^3.0.2: 2080 | version "3.0.2" 2081 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2082 | 2083 | js-yaml@^3.9.1: 2084 | version "3.10.0" 2085 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 2086 | dependencies: 2087 | argparse "^1.0.7" 2088 | esprima "^4.0.0" 2089 | 2090 | jsbn@~0.1.0: 2091 | version "0.1.1" 2092 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2093 | 2094 | jsesc@^1.3.0: 2095 | version "1.3.0" 2096 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2097 | 2098 | jsesc@~0.5.0: 2099 | version "0.5.0" 2100 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2101 | 2102 | json-schema-traverse@^0.3.0: 2103 | version "0.3.1" 2104 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 2105 | 2106 | json-schema@0.2.3: 2107 | version "0.2.3" 2108 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2109 | 2110 | json-stable-stringify-without-jsonify@^1.0.1: 2111 | version "1.0.1" 2112 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 2113 | 2114 | json-stable-stringify@^1.0.1: 2115 | version "1.0.1" 2116 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2117 | dependencies: 2118 | jsonify "~0.0.0" 2119 | 2120 | json-stable-stringify@~0.0.0: 2121 | version "0.0.1" 2122 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-0.0.1.tgz#611c23e814db375527df851193db59dd2af27f45" 2123 | dependencies: 2124 | jsonify "~0.0.0" 2125 | 2126 | json-stringify-safe@~5.0.1: 2127 | version "5.0.1" 2128 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2129 | 2130 | json5@^0.5.1: 2131 | version "0.5.1" 2132 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2133 | 2134 | jsonify@~0.0.0: 2135 | version "0.0.0" 2136 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2137 | 2138 | jsonparse@^1.2.0: 2139 | version "1.3.1" 2140 | resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" 2141 | 2142 | jsprim@^1.2.2: 2143 | version "1.4.1" 2144 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 2145 | dependencies: 2146 | assert-plus "1.0.0" 2147 | extsprintf "1.3.0" 2148 | json-schema "0.2.3" 2149 | verror "1.10.0" 2150 | 2151 | kind-of@^3.0.2: 2152 | version "3.2.2" 2153 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2154 | dependencies: 2155 | is-buffer "^1.1.5" 2156 | 2157 | kind-of@^4.0.0: 2158 | version "4.0.0" 2159 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2160 | dependencies: 2161 | is-buffer "^1.1.5" 2162 | 2163 | labeled-stream-splicer@^2.0.0: 2164 | version "2.0.0" 2165 | resolved "https://registry.yarnpkg.com/labeled-stream-splicer/-/labeled-stream-splicer-2.0.0.tgz#a52e1d138024c00b86b1c0c91f677918b8ae0a59" 2166 | dependencies: 2167 | inherits "^2.0.1" 2168 | isarray "~0.0.1" 2169 | stream-splicer "^2.0.0" 2170 | 2171 | levn@^0.3.0, levn@~0.3.0: 2172 | version "0.3.0" 2173 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2174 | dependencies: 2175 | prelude-ls "~1.1.2" 2176 | type-check "~0.3.2" 2177 | 2178 | lexical-scope@^1.2.0: 2179 | version "1.2.0" 2180 | resolved "https://registry.yarnpkg.com/lexical-scope/-/lexical-scope-1.2.0.tgz#fcea5edc704a4b3a8796cdca419c3a0afaf22df4" 2181 | dependencies: 2182 | astw "^2.0.0" 2183 | 2184 | load-json-file@^2.0.0: 2185 | version "2.0.0" 2186 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2187 | dependencies: 2188 | graceful-fs "^4.1.2" 2189 | parse-json "^2.2.0" 2190 | pify "^2.0.0" 2191 | strip-bom "^3.0.0" 2192 | 2193 | locate-path@^2.0.0: 2194 | version "2.0.0" 2195 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2196 | dependencies: 2197 | p-locate "^2.0.0" 2198 | path-exists "^3.0.0" 2199 | 2200 | lodash.cond@^4.3.0: 2201 | version "4.5.2" 2202 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 2203 | 2204 | lodash.memoize@~3.0.3: 2205 | version "3.0.4" 2206 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-3.0.4.tgz#2dcbd2c287cbc0a55cc42328bd0c736150d53e3f" 2207 | 2208 | lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0: 2209 | version "4.17.4" 2210 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2211 | 2212 | loose-envify@^1.0.0: 2213 | version "1.3.1" 2214 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2215 | dependencies: 2216 | js-tokens "^3.0.0" 2217 | 2218 | lru-cache@^4.0.1: 2219 | version "4.1.1" 2220 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 2221 | dependencies: 2222 | pseudomap "^1.0.2" 2223 | yallist "^2.1.2" 2224 | 2225 | md5.js@^1.3.4: 2226 | version "1.3.4" 2227 | resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d" 2228 | dependencies: 2229 | hash-base "^3.0.0" 2230 | inherits "^2.0.1" 2231 | 2232 | micromatch@^2.1.5: 2233 | version "2.3.11" 2234 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2235 | dependencies: 2236 | arr-diff "^2.0.0" 2237 | array-unique "^0.2.1" 2238 | braces "^1.8.2" 2239 | expand-brackets "^0.1.4" 2240 | extglob "^0.3.1" 2241 | filename-regex "^2.0.0" 2242 | is-extglob "^1.0.0" 2243 | is-glob "^2.0.1" 2244 | kind-of "^3.0.2" 2245 | normalize-path "^2.0.1" 2246 | object.omit "^2.0.0" 2247 | parse-glob "^3.0.4" 2248 | regex-cache "^0.4.2" 2249 | 2250 | miller-rabin@^4.0.0: 2251 | version "4.0.1" 2252 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" 2253 | dependencies: 2254 | bn.js "^4.0.0" 2255 | brorand "^1.0.1" 2256 | 2257 | mime-db@~1.30.0: 2258 | version "1.30.0" 2259 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 2260 | 2261 | mime-types@^2.1.12, mime-types@~2.1.7: 2262 | version "2.1.17" 2263 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 2264 | dependencies: 2265 | mime-db "~1.30.0" 2266 | 2267 | mimic-fn@^1.0.0: 2268 | version "1.1.0" 2269 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 2270 | 2271 | minimalistic-assert@^1.0.0: 2272 | version "1.0.0" 2273 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" 2274 | 2275 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: 2276 | version "1.0.1" 2277 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 2278 | 2279 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 2280 | version "3.0.4" 2281 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2282 | dependencies: 2283 | brace-expansion "^1.1.7" 2284 | 2285 | minimist@0.0.8: 2286 | version "0.0.8" 2287 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2288 | 2289 | minimist@^1.1.0, minimist@^1.2.0: 2290 | version "1.2.0" 2291 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2292 | 2293 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 2294 | version "0.5.1" 2295 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2296 | dependencies: 2297 | minimist "0.0.8" 2298 | 2299 | module-deps@^4.0.8: 2300 | version "4.1.1" 2301 | resolved "https://registry.yarnpkg.com/module-deps/-/module-deps-4.1.1.tgz#23215833f1da13fd606ccb8087b44852dcb821fd" 2302 | dependencies: 2303 | JSONStream "^1.0.3" 2304 | browser-resolve "^1.7.0" 2305 | cached-path-relative "^1.0.0" 2306 | concat-stream "~1.5.0" 2307 | defined "^1.0.0" 2308 | detective "^4.0.0" 2309 | duplexer2 "^0.1.2" 2310 | inherits "^2.0.1" 2311 | parents "^1.0.0" 2312 | readable-stream "^2.0.2" 2313 | resolve "^1.1.3" 2314 | stream-combiner2 "^1.1.1" 2315 | subarg "^1.0.0" 2316 | through2 "^2.0.0" 2317 | xtend "^4.0.0" 2318 | 2319 | ms@2.0.0: 2320 | version "2.0.0" 2321 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2322 | 2323 | mute-stream@0.0.7: 2324 | version "0.0.7" 2325 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2326 | 2327 | nan@^2.0.5, nan@^2.3.0: 2328 | version "2.8.0" 2329 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a" 2330 | 2331 | natural-compare@^1.4.0: 2332 | version "1.4.0" 2333 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2334 | 2335 | node-pre-gyp@^0.6.39: 2336 | version "0.6.39" 2337 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 2338 | dependencies: 2339 | detect-libc "^1.0.2" 2340 | hawk "3.1.3" 2341 | mkdirp "^0.5.1" 2342 | nopt "^4.0.1" 2343 | npmlog "^4.0.2" 2344 | rc "^1.1.7" 2345 | request "2.81.0" 2346 | rimraf "^2.6.1" 2347 | semver "^5.3.0" 2348 | tar "^2.2.1" 2349 | tar-pack "^3.4.0" 2350 | 2351 | noop-fn@^1.0.0: 2352 | version "1.0.0" 2353 | resolved "https://registry.yarnpkg.com/noop-fn/-/noop-fn-1.0.0.tgz#5f33d47f13d2150df93e0cb036699e982f78ffbf" 2354 | 2355 | nopt@^4.0.1: 2356 | version "4.0.1" 2357 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2358 | dependencies: 2359 | abbrev "1" 2360 | osenv "^0.1.4" 2361 | 2362 | normalize-package-data@^2.3.2: 2363 | version "2.4.0" 2364 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2365 | dependencies: 2366 | hosted-git-info "^2.1.4" 2367 | is-builtin-module "^1.0.0" 2368 | semver "2 || 3 || 4 || 5" 2369 | validate-npm-package-license "^3.0.1" 2370 | 2371 | normalize-path@^2.0.0, normalize-path@^2.0.1: 2372 | version "2.1.1" 2373 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2374 | dependencies: 2375 | remove-trailing-separator "^1.0.1" 2376 | 2377 | npmlog@^4.0.2: 2378 | version "4.1.2" 2379 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2380 | dependencies: 2381 | are-we-there-yet "~1.1.2" 2382 | console-control-strings "~1.1.0" 2383 | gauge "~2.7.3" 2384 | set-blocking "~2.0.0" 2385 | 2386 | number-is-nan@^1.0.0: 2387 | version "1.0.1" 2388 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2389 | 2390 | oauth-sign@~0.8.1: 2391 | version "0.8.2" 2392 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2393 | 2394 | object-assign@^4.0.0, object-assign@^4.0.1, object-assign@^4.1.0: 2395 | version "4.1.1" 2396 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2397 | 2398 | object-keys@^1.0.6: 2399 | version "1.0.11" 2400 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 2401 | 2402 | object.omit@^2.0.0: 2403 | version "2.0.1" 2404 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2405 | dependencies: 2406 | for-own "^0.1.4" 2407 | is-extendable "^0.1.1" 2408 | 2409 | once@^1.3.0, once@^1.3.3: 2410 | version "1.4.0" 2411 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2412 | dependencies: 2413 | wrappy "1" 2414 | 2415 | onetime@^2.0.0: 2416 | version "2.0.1" 2417 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2418 | dependencies: 2419 | mimic-fn "^1.0.0" 2420 | 2421 | optionator@^0.8.2: 2422 | version "0.8.2" 2423 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2424 | dependencies: 2425 | deep-is "~0.1.3" 2426 | fast-levenshtein "~2.0.4" 2427 | levn "~0.3.0" 2428 | prelude-ls "~1.1.2" 2429 | type-check "~0.3.2" 2430 | wordwrap "~1.0.0" 2431 | 2432 | os-browserify@~0.3.0: 2433 | version "0.3.0" 2434 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" 2435 | 2436 | os-homedir@^1.0.0: 2437 | version "1.0.2" 2438 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2439 | 2440 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2: 2441 | version "1.0.2" 2442 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2443 | 2444 | osenv@^0.1.4: 2445 | version "0.1.4" 2446 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2447 | dependencies: 2448 | os-homedir "^1.0.0" 2449 | os-tmpdir "^1.0.0" 2450 | 2451 | output-file-sync@^1.1.2: 2452 | version "1.1.2" 2453 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2454 | dependencies: 2455 | graceful-fs "^4.1.4" 2456 | mkdirp "^0.5.1" 2457 | object-assign "^4.1.0" 2458 | 2459 | p-limit@^1.1.0: 2460 | version "1.2.0" 2461 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.2.0.tgz#0e92b6bedcb59f022c13d0f1949dc82d15909f1c" 2462 | dependencies: 2463 | p-try "^1.0.0" 2464 | 2465 | p-locate@^2.0.0: 2466 | version "2.0.0" 2467 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2468 | dependencies: 2469 | p-limit "^1.1.0" 2470 | 2471 | p-try@^1.0.0: 2472 | version "1.0.0" 2473 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 2474 | 2475 | pako@~1.0.5: 2476 | version "1.0.6" 2477 | resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.6.tgz#0101211baa70c4bca4a0f63f2206e97b7dfaf258" 2478 | 2479 | parents@^1.0.0, parents@^1.0.1: 2480 | version "1.0.1" 2481 | resolved "https://registry.yarnpkg.com/parents/-/parents-1.0.1.tgz#fedd4d2bf193a77745fe71e371d73c3307d9c751" 2482 | dependencies: 2483 | path-platform "~0.11.15" 2484 | 2485 | parse-asn1@^5.0.0: 2486 | version "5.1.0" 2487 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712" 2488 | dependencies: 2489 | asn1.js "^4.0.0" 2490 | browserify-aes "^1.0.0" 2491 | create-hash "^1.1.0" 2492 | evp_bytestokey "^1.0.0" 2493 | pbkdf2 "^3.0.3" 2494 | 2495 | parse-glob@^3.0.4: 2496 | version "3.0.4" 2497 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2498 | dependencies: 2499 | glob-base "^0.3.0" 2500 | is-dotfile "^1.0.0" 2501 | is-extglob "^1.0.0" 2502 | is-glob "^2.0.0" 2503 | 2504 | parse-json@^2.2.0: 2505 | version "2.2.0" 2506 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2507 | dependencies: 2508 | error-ex "^1.2.0" 2509 | 2510 | path-browserify@~0.0.0: 2511 | version "0.0.0" 2512 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 2513 | 2514 | path-exists@^2.0.0: 2515 | version "2.1.0" 2516 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2517 | dependencies: 2518 | pinkie-promise "^2.0.0" 2519 | 2520 | path-exists@^3.0.0: 2521 | version "3.0.0" 2522 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2523 | 2524 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2525 | version "1.0.1" 2526 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2527 | 2528 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 2529 | version "1.0.2" 2530 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2531 | 2532 | path-parse@^1.0.5: 2533 | version "1.0.5" 2534 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2535 | 2536 | path-platform@~0.11.15: 2537 | version "0.11.15" 2538 | resolved "https://registry.yarnpkg.com/path-platform/-/path-platform-0.11.15.tgz#e864217f74c36850f0852b78dc7bf7d4a5721bf2" 2539 | 2540 | path-type@^2.0.0: 2541 | version "2.0.0" 2542 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2543 | dependencies: 2544 | pify "^2.0.0" 2545 | 2546 | pbkdf2@^3.0.3: 2547 | version "3.0.14" 2548 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.14.tgz#a35e13c64799b06ce15320f459c230e68e73bade" 2549 | dependencies: 2550 | create-hash "^1.1.2" 2551 | create-hmac "^1.1.4" 2552 | ripemd160 "^2.0.1" 2553 | safe-buffer "^5.0.1" 2554 | sha.js "^2.4.8" 2555 | 2556 | performance-now@^0.2.0: 2557 | version "0.2.0" 2558 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2559 | 2560 | pify@^2.0.0: 2561 | version "2.3.0" 2562 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2563 | 2564 | pinkie-promise@^2.0.0: 2565 | version "2.0.1" 2566 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2567 | dependencies: 2568 | pinkie "^2.0.0" 2569 | 2570 | pinkie@^2.0.0: 2571 | version "2.0.4" 2572 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2573 | 2574 | pkg-dir@^1.0.0: 2575 | version "1.0.0" 2576 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 2577 | dependencies: 2578 | find-up "^1.0.0" 2579 | 2580 | pluralize@^7.0.0: 2581 | version "7.0.0" 2582 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" 2583 | 2584 | prelude-ls@~1.1.2: 2585 | version "1.1.2" 2586 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2587 | 2588 | preserve@^0.2.0: 2589 | version "0.2.0" 2590 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2591 | 2592 | private@^0.1.6, private@^0.1.7: 2593 | version "0.1.8" 2594 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2595 | 2596 | process-nextick-args@~1.0.6: 2597 | version "1.0.7" 2598 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2599 | 2600 | process@~0.11.0: 2601 | version "0.11.10" 2602 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" 2603 | 2604 | progress@^2.0.0: 2605 | version "2.0.0" 2606 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 2607 | 2608 | pseudomap@^1.0.2: 2609 | version "1.0.2" 2610 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2611 | 2612 | public-encrypt@^4.0.0: 2613 | version "4.0.0" 2614 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" 2615 | dependencies: 2616 | bn.js "^4.1.0" 2617 | browserify-rsa "^4.0.0" 2618 | create-hash "^1.1.0" 2619 | parse-asn1 "^5.0.0" 2620 | randombytes "^2.0.1" 2621 | 2622 | punycode@1.3.2: 2623 | version "1.3.2" 2624 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 2625 | 2626 | punycode@^1.3.2, punycode@^1.4.1: 2627 | version "1.4.1" 2628 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2629 | 2630 | qs@~6.4.0: 2631 | version "6.4.0" 2632 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2633 | 2634 | querystring-es3@~0.2.0: 2635 | version "0.2.1" 2636 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 2637 | 2638 | querystring@0.2.0: 2639 | version "0.2.0" 2640 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 2641 | 2642 | randomatic@^1.1.3: 2643 | version "1.1.7" 2644 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2645 | dependencies: 2646 | is-number "^3.0.0" 2647 | kind-of "^4.0.0" 2648 | 2649 | randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: 2650 | version "2.0.5" 2651 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.5.tgz#dc009a246b8d09a177b4b7a0ae77bc570f4b1b79" 2652 | dependencies: 2653 | safe-buffer "^5.1.0" 2654 | 2655 | randomfill@^1.0.3: 2656 | version "1.0.3" 2657 | resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.3.tgz#b96b7df587f01dd91726c418f30553b1418e3d62" 2658 | dependencies: 2659 | randombytes "^2.0.5" 2660 | safe-buffer "^5.1.0" 2661 | 2662 | rc@^1.1.7: 2663 | version "1.2.3" 2664 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.3.tgz#51575a900f8dd68381c710b4712c2154c3e2035b" 2665 | dependencies: 2666 | deep-extend "~0.4.0" 2667 | ini "~1.3.0" 2668 | minimist "^1.2.0" 2669 | strip-json-comments "~2.0.1" 2670 | 2671 | read-only-stream@^2.0.0: 2672 | version "2.0.0" 2673 | resolved "https://registry.yarnpkg.com/read-only-stream/-/read-only-stream-2.0.0.tgz#2724fd6a8113d73764ac288d4386270c1dbf17f0" 2674 | dependencies: 2675 | readable-stream "^2.0.2" 2676 | 2677 | read-pkg-up@^2.0.0: 2678 | version "2.0.0" 2679 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 2680 | dependencies: 2681 | find-up "^2.0.0" 2682 | read-pkg "^2.0.0" 2683 | 2684 | read-pkg@^2.0.0: 2685 | version "2.0.0" 2686 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 2687 | dependencies: 2688 | load-json-file "^2.0.0" 2689 | normalize-package-data "^2.3.2" 2690 | path-type "^2.0.0" 2691 | 2692 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.2.6: 2693 | version "2.3.3" 2694 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 2695 | dependencies: 2696 | core-util-is "~1.0.0" 2697 | inherits "~2.0.3" 2698 | isarray "~1.0.0" 2699 | process-nextick-args "~1.0.6" 2700 | safe-buffer "~5.1.1" 2701 | string_decoder "~1.0.3" 2702 | util-deprecate "~1.0.1" 2703 | 2704 | readable-stream@~2.0.0: 2705 | version "2.0.6" 2706 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" 2707 | dependencies: 2708 | core-util-is "~1.0.0" 2709 | inherits "~2.0.1" 2710 | isarray "~1.0.0" 2711 | process-nextick-args "~1.0.6" 2712 | string_decoder "~0.10.x" 2713 | util-deprecate "~1.0.1" 2714 | 2715 | readdirp@^2.0.0: 2716 | version "2.1.0" 2717 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2718 | dependencies: 2719 | graceful-fs "^4.1.2" 2720 | minimatch "^3.0.2" 2721 | readable-stream "^2.0.2" 2722 | set-immediate-shim "^1.0.1" 2723 | 2724 | regenerate@^1.2.1: 2725 | version "1.3.3" 2726 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" 2727 | 2728 | regenerator-runtime@^0.10.5: 2729 | version "0.10.5" 2730 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2731 | 2732 | regenerator-runtime@^0.11.0: 2733 | version "0.11.1" 2734 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 2735 | 2736 | regenerator-transform@^0.10.0: 2737 | version "0.10.1" 2738 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 2739 | dependencies: 2740 | babel-runtime "^6.18.0" 2741 | babel-types "^6.19.0" 2742 | private "^0.1.6" 2743 | 2744 | regex-cache@^0.4.2: 2745 | version "0.4.4" 2746 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2747 | dependencies: 2748 | is-equal-shallow "^0.1.3" 2749 | 2750 | regexpu-core@^2.0.0: 2751 | version "2.0.0" 2752 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2753 | dependencies: 2754 | regenerate "^1.2.1" 2755 | regjsgen "^0.2.0" 2756 | regjsparser "^0.1.4" 2757 | 2758 | regjsgen@^0.2.0: 2759 | version "0.2.0" 2760 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2761 | 2762 | regjsparser@^0.1.4: 2763 | version "0.1.5" 2764 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2765 | dependencies: 2766 | jsesc "~0.5.0" 2767 | 2768 | remove-trailing-separator@^1.0.1: 2769 | version "1.1.0" 2770 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2771 | 2772 | repeat-element@^1.1.2: 2773 | version "1.1.2" 2774 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2775 | 2776 | repeat-string@^1.5.2: 2777 | version "1.6.1" 2778 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2779 | 2780 | repeating@^2.0.0: 2781 | version "2.0.1" 2782 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2783 | dependencies: 2784 | is-finite "^1.0.0" 2785 | 2786 | request@2.81.0: 2787 | version "2.81.0" 2788 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2789 | dependencies: 2790 | aws-sign2 "~0.6.0" 2791 | aws4 "^1.2.1" 2792 | caseless "~0.12.0" 2793 | combined-stream "~1.0.5" 2794 | extend "~3.0.0" 2795 | forever-agent "~0.6.1" 2796 | form-data "~2.1.1" 2797 | har-validator "~4.2.1" 2798 | hawk "~3.1.3" 2799 | http-signature "~1.1.0" 2800 | is-typedarray "~1.0.0" 2801 | isstream "~0.1.2" 2802 | json-stringify-safe "~5.0.1" 2803 | mime-types "~2.1.7" 2804 | oauth-sign "~0.8.1" 2805 | performance-now "^0.2.0" 2806 | qs "~6.4.0" 2807 | safe-buffer "^5.0.1" 2808 | stringstream "~0.0.4" 2809 | tough-cookie "~2.3.0" 2810 | tunnel-agent "^0.6.0" 2811 | uuid "^3.0.0" 2812 | 2813 | require-uncached@^1.0.3: 2814 | version "1.0.3" 2815 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 2816 | dependencies: 2817 | caller-path "^0.1.0" 2818 | resolve-from "^1.0.0" 2819 | 2820 | resolve-from@^1.0.0: 2821 | version "1.0.1" 2822 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 2823 | 2824 | resolve@1.1.7: 2825 | version "1.1.7" 2826 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2827 | 2828 | resolve@^1.1.3, resolve@^1.1.4, resolve@^1.3.3, resolve@^1.5.0: 2829 | version "1.5.0" 2830 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36" 2831 | dependencies: 2832 | path-parse "^1.0.5" 2833 | 2834 | restore-cursor@^2.0.0: 2835 | version "2.0.0" 2836 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2837 | dependencies: 2838 | onetime "^2.0.0" 2839 | signal-exit "^3.0.2" 2840 | 2841 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: 2842 | version "2.6.2" 2843 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2844 | dependencies: 2845 | glob "^7.0.5" 2846 | 2847 | ripemd160@^2.0.0, ripemd160@^2.0.1: 2848 | version "2.0.1" 2849 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7" 2850 | dependencies: 2851 | hash-base "^2.0.0" 2852 | inherits "^2.0.1" 2853 | 2854 | rollup@^0.43.0: 2855 | version "0.43.1" 2856 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.43.1.tgz#a7770af9711bd21dda977e7cce3d0f63fdfdfa04" 2857 | dependencies: 2858 | source-map-support "^0.4.0" 2859 | optionalDependencies: 2860 | weak "^1.0.1" 2861 | 2862 | rollupify@^0.4.0: 2863 | version "0.4.0" 2864 | resolved "https://registry.yarnpkg.com/rollupify/-/rollupify-0.4.0.tgz#609319be7c59f60c074c6e638f2c9514bb0c90af" 2865 | dependencies: 2866 | denodeify "^1.2.1" 2867 | noop-fn "^1.0.0" 2868 | rollup "^0.43.0" 2869 | through2 "^2.0.1" 2870 | 2871 | run-async@^2.2.0: 2872 | version "2.3.0" 2873 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 2874 | dependencies: 2875 | is-promise "^2.1.0" 2876 | 2877 | rx-lite-aggregates@^4.0.8: 2878 | version "4.0.8" 2879 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 2880 | dependencies: 2881 | rx-lite "*" 2882 | 2883 | rx-lite@*, rx-lite@^4.0.8: 2884 | version "4.0.8" 2885 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 2886 | 2887 | safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2888 | version "5.1.1" 2889 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2890 | 2891 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 2892 | version "5.4.1" 2893 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 2894 | 2895 | semver@5.3.0: 2896 | version "5.3.0" 2897 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2898 | 2899 | set-blocking@~2.0.0: 2900 | version "2.0.0" 2901 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2902 | 2903 | set-immediate-shim@^1.0.1: 2904 | version "1.0.1" 2905 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2906 | 2907 | sha.js@^2.4.0, sha.js@^2.4.8, sha.js@~2.4.4: 2908 | version "2.4.9" 2909 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.9.tgz#98f64880474b74f4a38b8da9d3c0f2d104633e7d" 2910 | dependencies: 2911 | inherits "^2.0.1" 2912 | safe-buffer "^5.0.1" 2913 | 2914 | shasum@^1.0.0: 2915 | version "1.0.2" 2916 | resolved "https://registry.yarnpkg.com/shasum/-/shasum-1.0.2.tgz#e7012310d8f417f4deb5712150e5678b87ae565f" 2917 | dependencies: 2918 | json-stable-stringify "~0.0.0" 2919 | sha.js "~2.4.4" 2920 | 2921 | shebang-command@^1.2.0: 2922 | version "1.2.0" 2923 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2924 | dependencies: 2925 | shebang-regex "^1.0.0" 2926 | 2927 | shebang-regex@^1.0.0: 2928 | version "1.0.0" 2929 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2930 | 2931 | shell-quote@^1.6.1: 2932 | version "1.6.1" 2933 | resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" 2934 | dependencies: 2935 | array-filter "~0.0.0" 2936 | array-map "~0.0.0" 2937 | array-reduce "~0.0.0" 2938 | jsonify "~0.0.0" 2939 | 2940 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2941 | version "3.0.2" 2942 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2943 | 2944 | slash@^1.0.0: 2945 | version "1.0.0" 2946 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2947 | 2948 | slice-ansi@1.0.0: 2949 | version "1.0.0" 2950 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" 2951 | dependencies: 2952 | is-fullwidth-code-point "^2.0.0" 2953 | 2954 | sntp@1.x.x: 2955 | version "1.0.9" 2956 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2957 | dependencies: 2958 | hoek "2.x.x" 2959 | 2960 | source-map-support@^0.4.0, source-map-support@^0.4.15: 2961 | version "0.4.18" 2962 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 2963 | dependencies: 2964 | source-map "^0.5.6" 2965 | 2966 | source-map@^0.5.6, source-map@~0.5.3: 2967 | version "0.5.7" 2968 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2969 | 2970 | source-map@~0.6.1: 2971 | version "0.6.1" 2972 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2973 | 2974 | spdx-correct@~1.0.0: 2975 | version "1.0.2" 2976 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2977 | dependencies: 2978 | spdx-license-ids "^1.0.2" 2979 | 2980 | spdx-expression-parse@~1.0.0: 2981 | version "1.0.4" 2982 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2983 | 2984 | spdx-license-ids@^1.0.2: 2985 | version "1.2.2" 2986 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2987 | 2988 | sprintf-js@~1.0.2: 2989 | version "1.0.3" 2990 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2991 | 2992 | sshpk@^1.7.0: 2993 | version "1.13.1" 2994 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2995 | dependencies: 2996 | asn1 "~0.2.3" 2997 | assert-plus "^1.0.0" 2998 | dashdash "^1.12.0" 2999 | getpass "^0.1.1" 3000 | optionalDependencies: 3001 | bcrypt-pbkdf "^1.0.0" 3002 | ecc-jsbn "~0.1.1" 3003 | jsbn "~0.1.0" 3004 | tweetnacl "~0.14.0" 3005 | 3006 | stream-browserify@^2.0.0: 3007 | version "2.0.1" 3008 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 3009 | dependencies: 3010 | inherits "~2.0.1" 3011 | readable-stream "^2.0.2" 3012 | 3013 | stream-combiner2@^1.1.1: 3014 | version "1.1.1" 3015 | resolved "https://registry.yarnpkg.com/stream-combiner2/-/stream-combiner2-1.1.1.tgz#fb4d8a1420ea362764e21ad4780397bebcb41cbe" 3016 | dependencies: 3017 | duplexer2 "~0.1.0" 3018 | readable-stream "^2.0.2" 3019 | 3020 | stream-http@^2.0.0: 3021 | version "2.7.2" 3022 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.2.tgz#40a050ec8dc3b53b33d9909415c02c0bf1abfbad" 3023 | dependencies: 3024 | builtin-status-codes "^3.0.0" 3025 | inherits "^2.0.1" 3026 | readable-stream "^2.2.6" 3027 | to-arraybuffer "^1.0.0" 3028 | xtend "^4.0.0" 3029 | 3030 | stream-splicer@^2.0.0: 3031 | version "2.0.0" 3032 | resolved "https://registry.yarnpkg.com/stream-splicer/-/stream-splicer-2.0.0.tgz#1b63be438a133e4b671cc1935197600175910d83" 3033 | dependencies: 3034 | inherits "^2.0.1" 3035 | readable-stream "^2.0.2" 3036 | 3037 | string-width@^1.0.1, string-width@^1.0.2: 3038 | version "1.0.2" 3039 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3040 | dependencies: 3041 | code-point-at "^1.0.0" 3042 | is-fullwidth-code-point "^1.0.0" 3043 | strip-ansi "^3.0.0" 3044 | 3045 | string-width@^2.1.0, string-width@^2.1.1: 3046 | version "2.1.1" 3047 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3048 | dependencies: 3049 | is-fullwidth-code-point "^2.0.0" 3050 | strip-ansi "^4.0.0" 3051 | 3052 | string_decoder@~0.10.x: 3053 | version "0.10.31" 3054 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3055 | 3056 | string_decoder@~1.0.0, string_decoder@~1.0.3: 3057 | version "1.0.3" 3058 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 3059 | dependencies: 3060 | safe-buffer "~5.1.0" 3061 | 3062 | stringstream@~0.0.4: 3063 | version "0.0.5" 3064 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3065 | 3066 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3067 | version "3.0.1" 3068 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3069 | dependencies: 3070 | ansi-regex "^2.0.0" 3071 | 3072 | strip-ansi@^4.0.0: 3073 | version "4.0.0" 3074 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3075 | dependencies: 3076 | ansi-regex "^3.0.0" 3077 | 3078 | strip-bom@^3.0.0: 3079 | version "3.0.0" 3080 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3081 | 3082 | strip-json-comments@~2.0.1: 3083 | version "2.0.1" 3084 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3085 | 3086 | subarg@^1.0.0: 3087 | version "1.0.0" 3088 | resolved "https://registry.yarnpkg.com/subarg/-/subarg-1.0.0.tgz#f62cf17581e996b48fc965699f54c06ae268b8d2" 3089 | dependencies: 3090 | minimist "^1.1.0" 3091 | 3092 | supports-color@^2.0.0: 3093 | version "2.0.0" 3094 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3095 | 3096 | supports-color@^4.0.0: 3097 | version "4.5.0" 3098 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 3099 | dependencies: 3100 | has-flag "^2.0.0" 3101 | 3102 | syntax-error@^1.1.1: 3103 | version "1.3.0" 3104 | resolved "https://registry.yarnpkg.com/syntax-error/-/syntax-error-1.3.0.tgz#1ed9266c4d40be75dc55bf9bb1cb77062bb96ca1" 3105 | dependencies: 3106 | acorn "^4.0.3" 3107 | 3108 | table@^4.0.1: 3109 | version "4.0.2" 3110 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36" 3111 | dependencies: 3112 | ajv "^5.2.3" 3113 | ajv-keywords "^2.1.0" 3114 | chalk "^2.1.0" 3115 | lodash "^4.17.4" 3116 | slice-ansi "1.0.0" 3117 | string-width "^2.1.1" 3118 | 3119 | tar-pack@^3.4.0: 3120 | version "3.4.1" 3121 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 3122 | dependencies: 3123 | debug "^2.2.0" 3124 | fstream "^1.0.10" 3125 | fstream-ignore "^1.0.5" 3126 | once "^1.3.3" 3127 | readable-stream "^2.1.4" 3128 | rimraf "^2.5.1" 3129 | tar "^2.2.1" 3130 | uid-number "^0.0.6" 3131 | 3132 | tar@^2.2.1: 3133 | version "2.2.1" 3134 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3135 | dependencies: 3136 | block-stream "*" 3137 | fstream "^1.0.2" 3138 | inherits "2" 3139 | 3140 | text-table@~0.2.0: 3141 | version "0.2.0" 3142 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3143 | 3144 | through2@^2.0.0, through2@^2.0.1: 3145 | version "2.0.3" 3146 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 3147 | dependencies: 3148 | readable-stream "^2.1.5" 3149 | xtend "~4.0.1" 3150 | 3151 | "through@>=2.2.7 <3", through@^2.3.6, through@^2.3.7: 3152 | version "2.3.8" 3153 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3154 | 3155 | timers-browserify@^1.0.1: 3156 | version "1.4.2" 3157 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-1.4.2.tgz#c9c58b575be8407375cb5e2462dacee74359f41d" 3158 | dependencies: 3159 | process "~0.11.0" 3160 | 3161 | tmp@^0.0.33: 3162 | version "0.0.33" 3163 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 3164 | dependencies: 3165 | os-tmpdir "~1.0.2" 3166 | 3167 | to-arraybuffer@^1.0.0: 3168 | version "1.0.1" 3169 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 3170 | 3171 | to-fast-properties@^1.0.3: 3172 | version "1.0.3" 3173 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3174 | 3175 | to-fast-properties@^2.0.0: 3176 | version "2.0.0" 3177 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 3178 | 3179 | tough-cookie@~2.3.0: 3180 | version "2.3.3" 3181 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 3182 | dependencies: 3183 | punycode "^1.4.1" 3184 | 3185 | trim-right@^1.0.1: 3186 | version "1.0.1" 3187 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3188 | 3189 | tty-browserify@~0.0.0: 3190 | version "0.0.0" 3191 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 3192 | 3193 | tunnel-agent@^0.6.0: 3194 | version "0.6.0" 3195 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3196 | dependencies: 3197 | safe-buffer "^5.0.1" 3198 | 3199 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3200 | version "0.14.5" 3201 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3202 | 3203 | type-check@~0.3.2: 3204 | version "0.3.2" 3205 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3206 | dependencies: 3207 | prelude-ls "~1.1.2" 3208 | 3209 | typedarray@^0.0.6, typedarray@~0.0.5: 3210 | version "0.0.6" 3211 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3212 | 3213 | uglify-js@^3.0.27: 3214 | version "3.3.4" 3215 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.3.4.tgz#d8ebb76f201a3798ac2f0b6519642fcca4a99834" 3216 | dependencies: 3217 | commander "~2.12.1" 3218 | source-map "~0.6.1" 3219 | 3220 | uid-number@^0.0.6: 3221 | version "0.0.6" 3222 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3223 | 3224 | umd@^3.0.0: 3225 | version "3.0.1" 3226 | resolved "https://registry.yarnpkg.com/umd/-/umd-3.0.1.tgz#8ae556e11011f63c2596708a8837259f01b3d60e" 3227 | 3228 | url@~0.11.0: 3229 | version "0.11.0" 3230 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 3231 | dependencies: 3232 | punycode "1.3.2" 3233 | querystring "0.2.0" 3234 | 3235 | user-home@^1.1.1: 3236 | version "1.1.1" 3237 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3238 | 3239 | util-deprecate@~1.0.1: 3240 | version "1.0.2" 3241 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3242 | 3243 | util@0.10.3, util@~0.10.1: 3244 | version "0.10.3" 3245 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 3246 | dependencies: 3247 | inherits "2.0.1" 3248 | 3249 | uuid@^3.0.0: 3250 | version "3.2.1" 3251 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" 3252 | 3253 | v8flags@^2.1.1: 3254 | version "2.1.1" 3255 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 3256 | dependencies: 3257 | user-home "^1.1.1" 3258 | 3259 | validate-npm-package-license@^3.0.1: 3260 | version "3.0.1" 3261 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3262 | dependencies: 3263 | spdx-correct "~1.0.0" 3264 | spdx-expression-parse "~1.0.0" 3265 | 3266 | verror@1.10.0: 3267 | version "1.10.0" 3268 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 3269 | dependencies: 3270 | assert-plus "^1.0.0" 3271 | core-util-is "1.0.2" 3272 | extsprintf "^1.2.0" 3273 | 3274 | vm-browserify@~0.0.1: 3275 | version "0.0.4" 3276 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 3277 | dependencies: 3278 | indexof "0.0.1" 3279 | 3280 | weak@^1.0.1: 3281 | version "1.0.1" 3282 | resolved "https://registry.yarnpkg.com/weak/-/weak-1.0.1.tgz#ab99aab30706959aa0200cb8cf545bb9cb33b99e" 3283 | dependencies: 3284 | bindings "^1.2.1" 3285 | nan "^2.0.5" 3286 | 3287 | which@^1.2.9: 3288 | version "1.3.0" 3289 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 3290 | dependencies: 3291 | isexe "^2.0.0" 3292 | 3293 | wide-align@^1.1.0: 3294 | version "1.1.2" 3295 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3296 | dependencies: 3297 | string-width "^1.0.2" 3298 | 3299 | wordwrap@~1.0.0: 3300 | version "1.0.0" 3301 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3302 | 3303 | wrappy@1: 3304 | version "1.0.2" 3305 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3306 | 3307 | write@^0.2.1: 3308 | version "0.2.1" 3309 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3310 | dependencies: 3311 | mkdirp "^0.5.1" 3312 | 3313 | xtend@^4.0.0, xtend@~4.0.1: 3314 | version "4.0.1" 3315 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3316 | 3317 | yallist@^2.1.2: 3318 | version "2.1.2" 3319 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3320 | --------------------------------------------------------------------------------