├── .babelrc ├── .gitignore ├── README.md ├── package.json ├── slides ├── vueconf.key └── vueconf.pdf ├── src ├── __snapshots__ │ ├── component.spec.js.snap │ └── store.spec.js.snap ├── component.js ├── component.spec.js ├── store.js ├── store.spec.js ├── sum.js └── sum.spec.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Vue Testing with Jest 2 | ===================== 3 | 4 | *Description:* 5 | This Repo follows my talk from the first Vue Conf in 2017. 6 | You'll find the Slides and all code examples in here. 7 | I tried to split them up in seperate files so they are quite followable. 8 | 9 | The talk is online and can be watched here: 10 | https://www.youtube.com/watch?v=pqp0PsPBO_0 11 | 12 | ## Run Specs Locally 13 | 14 | In case you want to see all the specs running, clone or download the repository and open it in your terminal. 15 | 16 | ```shell 17 | $ yarn install 18 | ``` 19 | 20 | will install all dependencies for you. After that you can run all specs like so: 21 | 22 | ```shell 23 | $ yarn jest 24 | ``` 25 | 26 | Be sure to go through the comments in the code examples as they will explain what is going on in all the special places :) 27 | 28 | ## Getting started 29 | 30 | Getting started with Jest is quite easy, so please check out the code snippets. Keep in mind though, the aim of this talk was an introductory one to testing and Jest it self and how to get started on your project. 31 | 32 | If you have further questions or want to know about more advanced tasks with Jest, please ping me on Twitter [@Codebryo](https://twitter.com/Codebryo) or open an Issue and I'll try to come back on your questions. 33 | 34 | Best, 35 | Roman 36 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vue-testing-with-jest-conf17", 3 | "description": "This Repo follows my talk from the first Vue Conf in 2017. You'll find the Slides and all code examples in here. I tried to split them up in seperate files so they are quite followable.", 4 | "author": "Roman Kuba (https://twitter.com/Codebryo)", 5 | "version": "1.0.0", 6 | "main": "index.js", 7 | "repository": {}, 8 | "license": "MIT", 9 | "dependencies": { 10 | "babel": "^6.23.0", 11 | "babel-jest": "^20.0.3", 12 | "babel-preset-es2015": "^6.24.1", 13 | "jest": "^20.0.4", 14 | "uuid": "^3.0.1", 15 | "vue": "^2.3.4", 16 | "vuex": "^2.3.1" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /slides/vueconf.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebryo/vue-testing-with-jest-conf17/ab547b06d10ce091b0c13cec30e5eded9901266c/slides/vueconf.key -------------------------------------------------------------------------------- /slides/vueconf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebryo/vue-testing-with-jest-conf17/ab547b06d10ce091b0c13cec30e5eded9901266c/slides/vueconf.pdf -------------------------------------------------------------------------------- /src/__snapshots__/component.spec.js.snap: -------------------------------------------------------------------------------- 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP 2 | 3 | exports[`Shopping-list component snapshot 1`] = ` 4 | "" 11 | `; 12 | 13 | exports[`Shopping-list component snapshot 2`] = ` 14 | "" 21 | `; 22 | -------------------------------------------------------------------------------- /src/__snapshots__/store.spec.js.snap: -------------------------------------------------------------------------------- 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP 2 | 3 | exports[`shopping list store actions #recorddelay should prepare the object after 10 seconds 1`] = `"{\\"text\\":\\"Hello\\",\\"done\\":false,\\"uuid\\":23}"`; 4 | -------------------------------------------------------------------------------- /src/component.js: -------------------------------------------------------------------------------- 1 | /** 2 | * A simple Shopping List Component 3 | */ 4 | 5 | export default { 6 | name: 'shopping-list', 7 | 8 | template: ` 9 | 15 | `, 16 | 17 | data() { 18 | return { 19 | items: [ 20 | { text: 'Beer', done: true, uuid: 1}, 21 | { text: 'Milk', done: false, uuid: 2}, 22 | { text: 'Apple', done: false, uuid: 3}, 23 | ] 24 | } 25 | }, 26 | 27 | methods: { 28 | complete(key) { 29 | let item = this.items.find( entry => entry.uuid == key) 30 | item.done = true 31 | } 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /src/component.spec.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue/dist/vue.common' 2 | // As we use standard templates we'll need to use that version 3 | import Component from './component' 4 | 5 | /** 6 | * Group your specs with 7 | * - describe 8 | * - it/test 9 | * For a readable output 10 | */ 11 | 12 | describe('Shopping-list component', () => { 13 | let $mounted 14 | 15 | beforeEach(() => { 16 | $mounted = new Vue(Component).$mount() 17 | }) 18 | 19 | /** 20 | * Here we want to test the output of the rendered HTML 21 | * Also, you can do multiple Snapshots in a row 22 | * 23 | * The snapshots are stored in the __snapshots__ directory, 24 | * and get checked in to your repo along the specs. 25 | * 26 | * Notice: Here we use Snapshots for testing HTML output, 27 | * though you can snapshot any kind of string, like a 28 | * stringified Object 29 | */ 30 | test('snapshot', () => { 31 | let $html = $mounted.$el.outerHTML 32 | expect($html).toMatchSnapshot() 33 | 34 | $mounted.items[1].done = true 35 | 36 | Vue.nextTick(() => { 37 | // Get the latest HTML as it has changed now 38 | $html = $mounted.$el.outerHTML 39 | expect($html).toMatchSnapshot() 40 | }) 41 | 42 | }) 43 | 44 | /** 45 | * Let's test two things at once. 46 | * 1. We want to be sure that the click event is correctly set on the button elements 47 | * 2. The click should call the completed method, so we can assert the result of that call at the same time 48 | */ 49 | test('click', () => { 50 | let lis = $mounted.$el.querySelectorAll('li') 51 | let button = lis[1].querySelector('button') 52 | 53 | let customEvent = new Event('click') 54 | button.dispatchEvent(customEvent) 55 | 56 | expect($mounted.items[1].done).toBeTruthy() 57 | }) 58 | }) 59 | -------------------------------------------------------------------------------- /src/store.js: -------------------------------------------------------------------------------- 1 | import uuidV4 from 'uuid/v4' 2 | 3 | export default { 4 | 5 | state: { 6 | items: [] 7 | }, 8 | 9 | mutations: { 10 | record(state, item) { 11 | state.items.push(item) 12 | }, 13 | 14 | completed(state, item) { 15 | let index = state.items.indexOf(item) 16 | state.items[index].done = true 17 | }, 18 | 19 | remove(state, item) { 20 | let index = state.items.indexOf(item) 21 | state.items.splice(index, 1) 22 | } 23 | }, 24 | 25 | actions: { 26 | /** 27 | * This record action is deeply bound into the Store, 28 | * so we need to be sure that our commit function works, 29 | * and it uses an imported npm package 30 | */ 31 | record({ commit }, text) { 32 | commit('record', { text, done: false, uuid: uuidV4() }) 33 | }, 34 | 35 | /** 36 | * Delayed record does the same thing as above, but it 37 | * will allow us to mock a timeout call :) 38 | */ 39 | delayedRecord({ commit }, text) { 40 | setTimeout(() => { 41 | commit('record', { text, done: false, uuid: uuidV4() }) 42 | }, 10000) 43 | } 44 | } 45 | } 46 | 47 | 48 | -------------------------------------------------------------------------------- /src/store.spec.js: -------------------------------------------------------------------------------- 1 | // Be sure to mock the external package 2 | jest.mock('uuid/v4') 3 | 4 | import store from './store' 5 | import Vue from 'vue' 6 | import Vuex from 'vuex' 7 | import uuidV4 from 'uuid/v4' 8 | 9 | jest.useFakeTimers(); 10 | 11 | describe('shopping list store', () => { 12 | 13 | /** 14 | * That would be an exmple for testing a default value, 15 | * but I think it honestly makes no sense. 16 | * This spec will probably never save your bacon 17 | */ 18 | test('defaults', () => { 19 | expect(store.state.items).toEqual([]) 20 | }) 21 | 22 | /** 23 | * Let's test our mutations, 24 | * the nice thing here is, we can completely mock everything to our needs. 25 | */ 26 | describe('mutations', () => { 27 | 28 | test('#record adds passed value to items', () => { 29 | let mockEntry = {text: 'Milk', done: false} 30 | let state = { items: [] } 31 | 32 | store.mutations.record(state, mockEntry) 33 | 34 | expect(state.items).toEqual([mockEntry]) 35 | }) 36 | 37 | test('#completed updates the `done` attribute', () => { 38 | let mockEntry = {text: 'Milk', done: false} 39 | let state = { items: [mockEntry] } 40 | 41 | store.mutations.completed(state, mockEntry) 42 | 43 | expect(state.items[0].done).toBeTruthy() 44 | }) 45 | 46 | test('#remove will remove given entry from the items array', () => { 47 | let mockEntry = {text: 'Milk', done: false} 48 | let state = { items: [mockEntry] } 49 | 50 | store.mutations.remove(state, mockEntry) 51 | 52 | expect(state.items.length).toBe(0) 53 | }) 54 | 55 | }) 56 | 57 | /** 58 | * Let's test our actions now. 59 | * Actions are a little more challenging, 60 | * so either we mock all the commit methods and assert against those, 61 | * or we instantiate a Vuex instance and just assert in that context, what is preferable in most cases. 62 | */ 63 | describe('actions', () => { 64 | let $store 65 | 66 | beforeAll(() => { 67 | Vue.use(Vuex) // We need to call Vue.use once to satisfy Vuex 68 | $store = new Vuex.Store(store) 69 | }) 70 | 71 | beforeEach(() => { 72 | uuidV4.mockImplementation(() => 23); 73 | }) 74 | 75 | afterEach(() => { 76 | uuidV4.mockReset() 77 | }) 78 | 79 | /** 80 | * Let's start with a simple assertion, that 81 | * will just verify that we have one entry. 82 | */ 83 | test('#record should prepare and object -- bad version', () => { 84 | // In this case we have uuidV4 already mocked, 85 | // but let's bring some randomness back into the game 86 | 87 | // IMPORTANT: Do to a bug in jest this inflicts all mocks 88 | // uuidV4.mockImplementation(() => Math.ceil(Math.random() * 10000)) 89 | 90 | $store.dispatch('record', 'Hello') 91 | console.log( 92 | 'The object with a random value:', 93 | JSON.stringify($store.state.items[0]) 94 | ) 95 | expect($store.state.items.length).toBe(1) 96 | }) 97 | 98 | /** 99 | * Now let's verify that the actual generated object 100 | * behaves like we expect. For that we need to mock the 101 | * external npm package that's coming in. 102 | */ 103 | test('#record should prepare an object -- good version', () => { 104 | $store.dispatch('record', 'Hello') 105 | 106 | expect(uuidV4).toHaveBeenCalled() 107 | expect($store.state.items[0]).toEqual({ 108 | text: 'Hello', 109 | done: false, 110 | uuid: 23 111 | }) 112 | }) 113 | 114 | /** 115 | * Let's test our delay function. 116 | * This demonstrates how easy it actually is to mock Timers. 117 | */ 118 | test('#recorddelay should prepare the object after 10 seconds', () => { 119 | $store.dispatch('delayedRecord', 'Hello') 120 | 121 | jest.runAllTimers(); 122 | 123 | // We can even assert agains the setTimeout function 124 | // https://facebook.github.io/jest/docs/en/timer-mocks.html#content 125 | expect(setTimeout.mock.calls.length).toBe(1) 126 | expect(setTimeout.mock.calls[0][1]).toBe(10000) 127 | 128 | 129 | expect($store.state.items[0]).toEqual({ 130 | text: 'Hello', 131 | done: false, 132 | uuid: 23, 133 | }) 134 | 135 | // If the object maybe is quite complex 136 | // and the assertion in place makes it hard to read, 137 | // you could use a Snapshot 138 | expect(JSON.stringify($store.state.items[0])).toMatchSnapshot() 139 | }) 140 | 141 | }) 142 | 143 | }) 144 | -------------------------------------------------------------------------------- /src/sum.js: -------------------------------------------------------------------------------- 1 | /** 2 | * This function should add up 2 passed in values, 3 | * obviously it can concat strings as well, but let's 4 | * say it only accepts numbers for now ;) 5 | * 6 | * @param {Number} a 7 | * @param {Number} b 8 | * @return {Number} 9 | */ 10 | export default function sum(a, b) { 11 | return a + b; 12 | } 13 | -------------------------------------------------------------------------------- /src/sum.spec.js: -------------------------------------------------------------------------------- 1 | import sum from './sum' 2 | 3 | describe('sum', () => { 4 | 5 | /** 6 | * Let's test the most forward thing of this function 7 | */ 8 | it('create sum of 2 numbers', () => { 9 | expect(sum(15, 8)).toBe(23); 10 | }) 11 | 12 | /** 13 | * Be sure to reuse the sum() function in the assertion 14 | * as we have verified that it's working already. 15 | * This will make your live easier in the long run. 16 | */ 17 | it('ignores extra arguments', () => { 18 | expect(sum(2,3,4)).toBe(sum(2,3)) 19 | }) 20 | 21 | }) 22 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abab@^1.0.3: 6 | version "1.0.3" 7 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d" 8 | 9 | acorn-globals@^3.1.0: 10 | version "3.1.0" 11 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 12 | dependencies: 13 | acorn "^4.0.4" 14 | 15 | acorn@^4.0.4: 16 | version "4.0.13" 17 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 18 | 19 | ajv@^4.9.1: 20 | version "4.11.8" 21 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 22 | dependencies: 23 | co "^4.6.0" 24 | json-stable-stringify "^1.0.1" 25 | 26 | align-text@^0.1.1, align-text@^0.1.3: 27 | version "0.1.4" 28 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 29 | dependencies: 30 | kind-of "^3.0.2" 31 | longest "^1.0.1" 32 | repeat-string "^1.5.2" 33 | 34 | amdefine@>=0.0.4: 35 | version "1.0.1" 36 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 37 | 38 | ansi-escapes@^1.4.0: 39 | version "1.4.0" 40 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 41 | 42 | ansi-regex@^2.0.0, ansi-regex@^2.1.1: 43 | version "2.1.1" 44 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 45 | 46 | ansi-styles@^2.2.1: 47 | version "2.2.1" 48 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 49 | 50 | ansi-styles@^3.0.0: 51 | version "3.1.0" 52 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.1.0.tgz#09c202d5c917ec23188caa5c9cb9179cd9547750" 53 | dependencies: 54 | color-convert "^1.0.0" 55 | 56 | anymatch@^1.3.0: 57 | version "1.3.0" 58 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 59 | dependencies: 60 | arrify "^1.0.0" 61 | micromatch "^2.1.5" 62 | 63 | append-transform@^0.4.0: 64 | version "0.4.0" 65 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 66 | dependencies: 67 | default-require-extensions "^1.0.0" 68 | 69 | argparse@^1.0.7: 70 | version "1.0.9" 71 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 72 | dependencies: 73 | sprintf-js "~1.0.2" 74 | 75 | arr-diff@^2.0.0: 76 | version "2.0.0" 77 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 78 | dependencies: 79 | arr-flatten "^1.0.1" 80 | 81 | arr-flatten@^1.0.1: 82 | version "1.0.3" 83 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 84 | 85 | array-equal@^1.0.0: 86 | version "1.0.0" 87 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 88 | 89 | array-unique@^0.2.1: 90 | version "0.2.1" 91 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 92 | 93 | arrify@^1.0.0, arrify@^1.0.1: 94 | version "1.0.1" 95 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 96 | 97 | asn1@~0.2.3: 98 | version "0.2.3" 99 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 100 | 101 | assert-plus@1.0.0, assert-plus@^1.0.0: 102 | version "1.0.0" 103 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 104 | 105 | assert-plus@^0.2.0: 106 | version "0.2.0" 107 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 108 | 109 | async@^1.4.0: 110 | version "1.5.2" 111 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 112 | 113 | async@^2.1.4: 114 | version "2.5.0" 115 | resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d" 116 | dependencies: 117 | lodash "^4.14.0" 118 | 119 | asynckit@^0.4.0: 120 | version "0.4.0" 121 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 122 | 123 | aws-sign2@~0.6.0: 124 | version "0.6.0" 125 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 126 | 127 | aws4@^1.2.1: 128 | version "1.6.0" 129 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 130 | 131 | babel-code-frame@^6.22.0: 132 | version "6.22.0" 133 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 134 | dependencies: 135 | chalk "^1.1.0" 136 | esutils "^2.0.2" 137 | js-tokens "^3.0.0" 138 | 139 | babel-core@^6.0.0, babel-core@^6.24.1: 140 | version "6.25.0" 141 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.25.0.tgz#7dd42b0463c742e9d5296deb3ec67a9322dad729" 142 | dependencies: 143 | babel-code-frame "^6.22.0" 144 | babel-generator "^6.25.0" 145 | babel-helpers "^6.24.1" 146 | babel-messages "^6.23.0" 147 | babel-register "^6.24.1" 148 | babel-runtime "^6.22.0" 149 | babel-template "^6.25.0" 150 | babel-traverse "^6.25.0" 151 | babel-types "^6.25.0" 152 | babylon "^6.17.2" 153 | convert-source-map "^1.1.0" 154 | debug "^2.1.1" 155 | json5 "^0.5.0" 156 | lodash "^4.2.0" 157 | minimatch "^3.0.2" 158 | path-is-absolute "^1.0.0" 159 | private "^0.1.6" 160 | slash "^1.0.0" 161 | source-map "^0.5.0" 162 | 163 | babel-generator@^6.18.0, babel-generator@^6.25.0: 164 | version "6.25.0" 165 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.25.0.tgz#33a1af70d5f2890aeb465a4a7793c1df6a9ea9fc" 166 | dependencies: 167 | babel-messages "^6.23.0" 168 | babel-runtime "^6.22.0" 169 | babel-types "^6.25.0" 170 | detect-indent "^4.0.0" 171 | jsesc "^1.3.0" 172 | lodash "^4.2.0" 173 | source-map "^0.5.0" 174 | trim-right "^1.0.1" 175 | 176 | babel-helper-call-delegate@^6.24.1: 177 | version "6.24.1" 178 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 179 | dependencies: 180 | babel-helper-hoist-variables "^6.24.1" 181 | babel-runtime "^6.22.0" 182 | babel-traverse "^6.24.1" 183 | babel-types "^6.24.1" 184 | 185 | babel-helper-define-map@^6.24.1: 186 | version "6.24.1" 187 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz#7a9747f258d8947d32d515f6aa1c7bd02204a080" 188 | dependencies: 189 | babel-helper-function-name "^6.24.1" 190 | babel-runtime "^6.22.0" 191 | babel-types "^6.24.1" 192 | lodash "^4.2.0" 193 | 194 | babel-helper-function-name@^6.24.1: 195 | version "6.24.1" 196 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 197 | dependencies: 198 | babel-helper-get-function-arity "^6.24.1" 199 | babel-runtime "^6.22.0" 200 | babel-template "^6.24.1" 201 | babel-traverse "^6.24.1" 202 | babel-types "^6.24.1" 203 | 204 | babel-helper-get-function-arity@^6.24.1: 205 | version "6.24.1" 206 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 207 | dependencies: 208 | babel-runtime "^6.22.0" 209 | babel-types "^6.24.1" 210 | 211 | babel-helper-hoist-variables@^6.24.1: 212 | version "6.24.1" 213 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 214 | dependencies: 215 | babel-runtime "^6.22.0" 216 | babel-types "^6.24.1" 217 | 218 | babel-helper-optimise-call-expression@^6.24.1: 219 | version "6.24.1" 220 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 221 | dependencies: 222 | babel-runtime "^6.22.0" 223 | babel-types "^6.24.1" 224 | 225 | babel-helper-regex@^6.24.1: 226 | version "6.24.1" 227 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" 228 | dependencies: 229 | babel-runtime "^6.22.0" 230 | babel-types "^6.24.1" 231 | lodash "^4.2.0" 232 | 233 | babel-helper-replace-supers@^6.24.1: 234 | version "6.24.1" 235 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 236 | dependencies: 237 | babel-helper-optimise-call-expression "^6.24.1" 238 | babel-messages "^6.23.0" 239 | babel-runtime "^6.22.0" 240 | babel-template "^6.24.1" 241 | babel-traverse "^6.24.1" 242 | babel-types "^6.24.1" 243 | 244 | babel-helpers@^6.24.1: 245 | version "6.24.1" 246 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 247 | dependencies: 248 | babel-runtime "^6.22.0" 249 | babel-template "^6.24.1" 250 | 251 | babel-jest@^20.0.3: 252 | version "20.0.3" 253 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-20.0.3.tgz#e4a03b13dc10389e140fc645d09ffc4ced301671" 254 | dependencies: 255 | babel-core "^6.0.0" 256 | babel-plugin-istanbul "^4.0.0" 257 | babel-preset-jest "^20.0.3" 258 | 259 | babel-messages@^6.23.0: 260 | version "6.23.0" 261 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 262 | dependencies: 263 | babel-runtime "^6.22.0" 264 | 265 | babel-plugin-check-es2015-constants@^6.22.0: 266 | version "6.22.0" 267 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 268 | dependencies: 269 | babel-runtime "^6.22.0" 270 | 271 | babel-plugin-istanbul@^4.0.0: 272 | version "4.1.4" 273 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.4.tgz#18dde84bf3ce329fddf3f4103fae921456d8e587" 274 | dependencies: 275 | find-up "^2.1.0" 276 | istanbul-lib-instrument "^1.7.2" 277 | test-exclude "^4.1.1" 278 | 279 | babel-plugin-jest-hoist@^20.0.3: 280 | version "20.0.3" 281 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-20.0.3.tgz#afedc853bd3f8dc3548ea671fbe69d03cc2c1767" 282 | 283 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 284 | version "6.22.0" 285 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 286 | dependencies: 287 | babel-runtime "^6.22.0" 288 | 289 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 290 | version "6.22.0" 291 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 292 | dependencies: 293 | babel-runtime "^6.22.0" 294 | 295 | babel-plugin-transform-es2015-block-scoping@^6.24.1: 296 | version "6.24.1" 297 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz#76c295dc3a4741b1665adfd3167215dcff32a576" 298 | dependencies: 299 | babel-runtime "^6.22.0" 300 | babel-template "^6.24.1" 301 | babel-traverse "^6.24.1" 302 | babel-types "^6.24.1" 303 | lodash "^4.2.0" 304 | 305 | babel-plugin-transform-es2015-classes@^6.24.1: 306 | version "6.24.1" 307 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 308 | dependencies: 309 | babel-helper-define-map "^6.24.1" 310 | babel-helper-function-name "^6.24.1" 311 | babel-helper-optimise-call-expression "^6.24.1" 312 | babel-helper-replace-supers "^6.24.1" 313 | babel-messages "^6.23.0" 314 | babel-runtime "^6.22.0" 315 | babel-template "^6.24.1" 316 | babel-traverse "^6.24.1" 317 | babel-types "^6.24.1" 318 | 319 | babel-plugin-transform-es2015-computed-properties@^6.24.1: 320 | version "6.24.1" 321 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 322 | dependencies: 323 | babel-runtime "^6.22.0" 324 | babel-template "^6.24.1" 325 | 326 | babel-plugin-transform-es2015-destructuring@^6.22.0: 327 | version "6.23.0" 328 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 329 | dependencies: 330 | babel-runtime "^6.22.0" 331 | 332 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1: 333 | version "6.24.1" 334 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 335 | dependencies: 336 | babel-runtime "^6.22.0" 337 | babel-types "^6.24.1" 338 | 339 | babel-plugin-transform-es2015-for-of@^6.22.0: 340 | version "6.23.0" 341 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 342 | dependencies: 343 | babel-runtime "^6.22.0" 344 | 345 | babel-plugin-transform-es2015-function-name@^6.24.1: 346 | version "6.24.1" 347 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 348 | dependencies: 349 | babel-helper-function-name "^6.24.1" 350 | babel-runtime "^6.22.0" 351 | babel-types "^6.24.1" 352 | 353 | babel-plugin-transform-es2015-literals@^6.22.0: 354 | version "6.22.0" 355 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 356 | dependencies: 357 | babel-runtime "^6.22.0" 358 | 359 | babel-plugin-transform-es2015-modules-amd@^6.24.1: 360 | version "6.24.1" 361 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 362 | dependencies: 363 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 364 | babel-runtime "^6.22.0" 365 | babel-template "^6.24.1" 366 | 367 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 368 | version "6.24.1" 369 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 370 | dependencies: 371 | babel-plugin-transform-strict-mode "^6.24.1" 372 | babel-runtime "^6.22.0" 373 | babel-template "^6.24.1" 374 | babel-types "^6.24.1" 375 | 376 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1: 377 | version "6.24.1" 378 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 379 | dependencies: 380 | babel-helper-hoist-variables "^6.24.1" 381 | babel-runtime "^6.22.0" 382 | babel-template "^6.24.1" 383 | 384 | babel-plugin-transform-es2015-modules-umd@^6.24.1: 385 | version "6.24.1" 386 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 387 | dependencies: 388 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 389 | babel-runtime "^6.22.0" 390 | babel-template "^6.24.1" 391 | 392 | babel-plugin-transform-es2015-object-super@^6.24.1: 393 | version "6.24.1" 394 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 395 | dependencies: 396 | babel-helper-replace-supers "^6.24.1" 397 | babel-runtime "^6.22.0" 398 | 399 | babel-plugin-transform-es2015-parameters@^6.24.1: 400 | version "6.24.1" 401 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 402 | dependencies: 403 | babel-helper-call-delegate "^6.24.1" 404 | babel-helper-get-function-arity "^6.24.1" 405 | babel-runtime "^6.22.0" 406 | babel-template "^6.24.1" 407 | babel-traverse "^6.24.1" 408 | babel-types "^6.24.1" 409 | 410 | babel-plugin-transform-es2015-shorthand-properties@^6.24.1: 411 | version "6.24.1" 412 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 413 | dependencies: 414 | babel-runtime "^6.22.0" 415 | babel-types "^6.24.1" 416 | 417 | babel-plugin-transform-es2015-spread@^6.22.0: 418 | version "6.22.0" 419 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 420 | dependencies: 421 | babel-runtime "^6.22.0" 422 | 423 | babel-plugin-transform-es2015-sticky-regex@^6.24.1: 424 | version "6.24.1" 425 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 426 | dependencies: 427 | babel-helper-regex "^6.24.1" 428 | babel-runtime "^6.22.0" 429 | babel-types "^6.24.1" 430 | 431 | babel-plugin-transform-es2015-template-literals@^6.22.0: 432 | version "6.22.0" 433 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 434 | dependencies: 435 | babel-runtime "^6.22.0" 436 | 437 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 438 | version "6.23.0" 439 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 440 | dependencies: 441 | babel-runtime "^6.22.0" 442 | 443 | babel-plugin-transform-es2015-unicode-regex@^6.24.1: 444 | version "6.24.1" 445 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 446 | dependencies: 447 | babel-helper-regex "^6.24.1" 448 | babel-runtime "^6.22.0" 449 | regexpu-core "^2.0.0" 450 | 451 | babel-plugin-transform-regenerator@^6.24.1: 452 | version "6.24.1" 453 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418" 454 | dependencies: 455 | regenerator-transform "0.9.11" 456 | 457 | babel-plugin-transform-strict-mode@^6.24.1: 458 | version "6.24.1" 459 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 460 | dependencies: 461 | babel-runtime "^6.22.0" 462 | babel-types "^6.24.1" 463 | 464 | babel-preset-es2015@^6.24.1: 465 | version "6.24.1" 466 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" 467 | dependencies: 468 | babel-plugin-check-es2015-constants "^6.22.0" 469 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 470 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 471 | babel-plugin-transform-es2015-block-scoping "^6.24.1" 472 | babel-plugin-transform-es2015-classes "^6.24.1" 473 | babel-plugin-transform-es2015-computed-properties "^6.24.1" 474 | babel-plugin-transform-es2015-destructuring "^6.22.0" 475 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1" 476 | babel-plugin-transform-es2015-for-of "^6.22.0" 477 | babel-plugin-transform-es2015-function-name "^6.24.1" 478 | babel-plugin-transform-es2015-literals "^6.22.0" 479 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 480 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 481 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1" 482 | babel-plugin-transform-es2015-modules-umd "^6.24.1" 483 | babel-plugin-transform-es2015-object-super "^6.24.1" 484 | babel-plugin-transform-es2015-parameters "^6.24.1" 485 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1" 486 | babel-plugin-transform-es2015-spread "^6.22.0" 487 | babel-plugin-transform-es2015-sticky-regex "^6.24.1" 488 | babel-plugin-transform-es2015-template-literals "^6.22.0" 489 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 490 | babel-plugin-transform-es2015-unicode-regex "^6.24.1" 491 | babel-plugin-transform-regenerator "^6.24.1" 492 | 493 | babel-preset-jest@^20.0.3: 494 | version "20.0.3" 495 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-20.0.3.tgz#cbacaadecb5d689ca1e1de1360ebfc66862c178a" 496 | dependencies: 497 | babel-plugin-jest-hoist "^20.0.3" 498 | 499 | babel-register@^6.24.1: 500 | version "6.24.1" 501 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 502 | dependencies: 503 | babel-core "^6.24.1" 504 | babel-runtime "^6.22.0" 505 | core-js "^2.4.0" 506 | home-or-tmp "^2.0.0" 507 | lodash "^4.2.0" 508 | mkdirp "^0.5.1" 509 | source-map-support "^0.4.2" 510 | 511 | babel-runtime@^6.18.0, babel-runtime@^6.22.0: 512 | version "6.23.0" 513 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 514 | dependencies: 515 | core-js "^2.4.0" 516 | regenerator-runtime "^0.10.0" 517 | 518 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.25.0: 519 | version "6.25.0" 520 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.25.0.tgz#665241166b7c2aa4c619d71e192969552b10c071" 521 | dependencies: 522 | babel-runtime "^6.22.0" 523 | babel-traverse "^6.25.0" 524 | babel-types "^6.25.0" 525 | babylon "^6.17.2" 526 | lodash "^4.2.0" 527 | 528 | babel-traverse@^6.18.0, babel-traverse@^6.24.1, babel-traverse@^6.25.0: 529 | version "6.25.0" 530 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.25.0.tgz#2257497e2fcd19b89edc13c4c91381f9512496f1" 531 | dependencies: 532 | babel-code-frame "^6.22.0" 533 | babel-messages "^6.23.0" 534 | babel-runtime "^6.22.0" 535 | babel-types "^6.25.0" 536 | babylon "^6.17.2" 537 | debug "^2.2.0" 538 | globals "^9.0.0" 539 | invariant "^2.2.0" 540 | lodash "^4.2.0" 541 | 542 | babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.25.0: 543 | version "6.25.0" 544 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.25.0.tgz#70afb248d5660e5d18f811d91c8303b54134a18e" 545 | dependencies: 546 | babel-runtime "^6.22.0" 547 | esutils "^2.0.2" 548 | lodash "^4.2.0" 549 | to-fast-properties "^1.0.1" 550 | 551 | babel@^6.23.0: 552 | version "6.23.0" 553 | resolved "https://registry.yarnpkg.com/babel/-/babel-6.23.0.tgz#d0d1e7d803e974765beea3232d4e153c0efb90f4" 554 | 555 | babylon@^6.17.2, babylon@^6.17.4: 556 | version "6.17.4" 557 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.4.tgz#3e8b7402b88d22c3423e137a1577883b15ff869a" 558 | 559 | balanced-match@^1.0.0: 560 | version "1.0.0" 561 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 562 | 563 | bcrypt-pbkdf@^1.0.0: 564 | version "1.0.1" 565 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 566 | dependencies: 567 | tweetnacl "^0.14.3" 568 | 569 | boom@2.x.x: 570 | version "2.10.1" 571 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 572 | dependencies: 573 | hoek "2.x.x" 574 | 575 | brace-expansion@^1.1.7: 576 | version "1.1.8" 577 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 578 | dependencies: 579 | balanced-match "^1.0.0" 580 | concat-map "0.0.1" 581 | 582 | braces@^1.8.2: 583 | version "1.8.5" 584 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 585 | dependencies: 586 | expand-range "^1.8.1" 587 | preserve "^0.2.0" 588 | repeat-element "^1.1.2" 589 | 590 | browser-resolve@^1.11.2: 591 | version "1.11.2" 592 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 593 | dependencies: 594 | resolve "1.1.7" 595 | 596 | bser@1.0.2: 597 | version "1.0.2" 598 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 599 | dependencies: 600 | node-int64 "^0.4.0" 601 | 602 | bser@^2.0.0: 603 | version "2.0.0" 604 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 605 | dependencies: 606 | node-int64 "^0.4.0" 607 | 608 | builtin-modules@^1.0.0: 609 | version "1.1.1" 610 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 611 | 612 | callsites@^2.0.0: 613 | version "2.0.0" 614 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 615 | 616 | camelcase@^1.0.2: 617 | version "1.2.1" 618 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 619 | 620 | camelcase@^3.0.0: 621 | version "3.0.0" 622 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 623 | 624 | caseless@~0.12.0: 625 | version "0.12.0" 626 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 627 | 628 | center-align@^0.1.1: 629 | version "0.1.3" 630 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 631 | dependencies: 632 | align-text "^0.1.3" 633 | lazy-cache "^1.0.3" 634 | 635 | chalk@^1.1.0, chalk@^1.1.3: 636 | version "1.1.3" 637 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 638 | dependencies: 639 | ansi-styles "^2.2.1" 640 | escape-string-regexp "^1.0.2" 641 | has-ansi "^2.0.0" 642 | strip-ansi "^3.0.0" 643 | supports-color "^2.0.0" 644 | 645 | ci-info@^1.0.0: 646 | version "1.0.0" 647 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 648 | 649 | cliui@^2.1.0: 650 | version "2.1.0" 651 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 652 | dependencies: 653 | center-align "^0.1.1" 654 | right-align "^0.1.1" 655 | wordwrap "0.0.2" 656 | 657 | cliui@^3.2.0: 658 | version "3.2.0" 659 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 660 | dependencies: 661 | string-width "^1.0.1" 662 | strip-ansi "^3.0.1" 663 | wrap-ansi "^2.0.0" 664 | 665 | co@^4.6.0: 666 | version "4.6.0" 667 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 668 | 669 | code-point-at@^1.0.0: 670 | version "1.1.0" 671 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 672 | 673 | color-convert@^1.0.0: 674 | version "1.9.0" 675 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 676 | dependencies: 677 | color-name "^1.1.1" 678 | 679 | color-name@^1.1.1: 680 | version "1.1.2" 681 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d" 682 | 683 | combined-stream@^1.0.5, combined-stream@~1.0.5: 684 | version "1.0.5" 685 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 686 | dependencies: 687 | delayed-stream "~1.0.0" 688 | 689 | concat-map@0.0.1: 690 | version "0.0.1" 691 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 692 | 693 | content-type-parser@^1.0.1: 694 | version "1.0.1" 695 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 696 | 697 | convert-source-map@^1.1.0, convert-source-map@^1.4.0: 698 | version "1.5.0" 699 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 700 | 701 | core-js@^2.4.0: 702 | version "2.4.1" 703 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 704 | 705 | cryptiles@2.x.x: 706 | version "2.0.5" 707 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 708 | dependencies: 709 | boom "2.x.x" 710 | 711 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 712 | version "0.3.2" 713 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 714 | 715 | "cssstyle@>= 0.2.37 < 0.3.0": 716 | version "0.2.37" 717 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 718 | dependencies: 719 | cssom "0.3.x" 720 | 721 | dashdash@^1.12.0: 722 | version "1.14.1" 723 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 724 | dependencies: 725 | assert-plus "^1.0.0" 726 | 727 | debug@^2.1.1, debug@^2.2.0, debug@^2.6.3: 728 | version "2.6.8" 729 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 730 | dependencies: 731 | ms "2.0.0" 732 | 733 | decamelize@^1.0.0, decamelize@^1.1.1: 734 | version "1.2.0" 735 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 736 | 737 | deep-is@~0.1.3: 738 | version "0.1.3" 739 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 740 | 741 | default-require-extensions@^1.0.0: 742 | version "1.0.0" 743 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 744 | dependencies: 745 | strip-bom "^2.0.0" 746 | 747 | delayed-stream@~1.0.0: 748 | version "1.0.0" 749 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 750 | 751 | detect-indent@^4.0.0: 752 | version "4.0.0" 753 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 754 | dependencies: 755 | repeating "^2.0.0" 756 | 757 | diff@^3.2.0: 758 | version "3.2.0" 759 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 760 | 761 | ecc-jsbn@~0.1.1: 762 | version "0.1.1" 763 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 764 | dependencies: 765 | jsbn "~0.1.0" 766 | 767 | "errno@>=0.1.1 <0.2.0-0": 768 | version "0.1.4" 769 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 770 | dependencies: 771 | prr "~0.0.0" 772 | 773 | error-ex@^1.2.0: 774 | version "1.3.1" 775 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 776 | dependencies: 777 | is-arrayish "^0.2.1" 778 | 779 | escape-string-regexp@^1.0.2: 780 | version "1.0.5" 781 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 782 | 783 | escodegen@^1.6.1: 784 | version "1.8.1" 785 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 786 | dependencies: 787 | esprima "^2.7.1" 788 | estraverse "^1.9.1" 789 | esutils "^2.0.2" 790 | optionator "^0.8.1" 791 | optionalDependencies: 792 | source-map "~0.2.0" 793 | 794 | esprima@^2.7.1: 795 | version "2.7.3" 796 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 797 | 798 | esprima@^3.1.1: 799 | version "3.1.3" 800 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 801 | 802 | estraverse@^1.9.1: 803 | version "1.9.3" 804 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 805 | 806 | esutils@^2.0.2: 807 | version "2.0.2" 808 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 809 | 810 | exec-sh@^0.2.0: 811 | version "0.2.0" 812 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 813 | dependencies: 814 | merge "^1.1.3" 815 | 816 | expand-brackets@^0.1.4: 817 | version "0.1.5" 818 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 819 | dependencies: 820 | is-posix-bracket "^0.1.0" 821 | 822 | expand-range@^1.8.1: 823 | version "1.8.2" 824 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 825 | dependencies: 826 | fill-range "^2.1.0" 827 | 828 | extend@~3.0.0: 829 | version "3.0.1" 830 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 831 | 832 | extglob@^0.3.1: 833 | version "0.3.2" 834 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 835 | dependencies: 836 | is-extglob "^1.0.0" 837 | 838 | extsprintf@1.0.2: 839 | version "1.0.2" 840 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 841 | 842 | fast-levenshtein@~2.0.4: 843 | version "2.0.6" 844 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 845 | 846 | fb-watchman@^1.8.0: 847 | version "1.9.2" 848 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 849 | dependencies: 850 | bser "1.0.2" 851 | 852 | fb-watchman@^2.0.0: 853 | version "2.0.0" 854 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 855 | dependencies: 856 | bser "^2.0.0" 857 | 858 | filename-regex@^2.0.0: 859 | version "2.0.1" 860 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 861 | 862 | fileset@^2.0.2: 863 | version "2.0.3" 864 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 865 | dependencies: 866 | glob "^7.0.3" 867 | minimatch "^3.0.3" 868 | 869 | fill-range@^2.1.0: 870 | version "2.2.3" 871 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 872 | dependencies: 873 | is-number "^2.1.0" 874 | isobject "^2.0.0" 875 | randomatic "^1.1.3" 876 | repeat-element "^1.1.2" 877 | repeat-string "^1.5.2" 878 | 879 | find-up@^1.0.0: 880 | version "1.1.2" 881 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 882 | dependencies: 883 | path-exists "^2.0.0" 884 | pinkie-promise "^2.0.0" 885 | 886 | find-up@^2.1.0: 887 | version "2.1.0" 888 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 889 | dependencies: 890 | locate-path "^2.0.0" 891 | 892 | for-in@^1.0.1: 893 | version "1.0.2" 894 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 895 | 896 | for-own@^0.1.4: 897 | version "0.1.5" 898 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 899 | dependencies: 900 | for-in "^1.0.1" 901 | 902 | forever-agent@~0.6.1: 903 | version "0.6.1" 904 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 905 | 906 | form-data@~2.1.1: 907 | version "2.1.4" 908 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 909 | dependencies: 910 | asynckit "^0.4.0" 911 | combined-stream "^1.0.5" 912 | mime-types "^2.1.12" 913 | 914 | fs.realpath@^1.0.0: 915 | version "1.0.0" 916 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 917 | 918 | get-caller-file@^1.0.1: 919 | version "1.0.2" 920 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 921 | 922 | getpass@^0.1.1: 923 | version "0.1.7" 924 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 925 | dependencies: 926 | assert-plus "^1.0.0" 927 | 928 | glob-base@^0.3.0: 929 | version "0.3.0" 930 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 931 | dependencies: 932 | glob-parent "^2.0.0" 933 | is-glob "^2.0.0" 934 | 935 | glob-parent@^2.0.0: 936 | version "2.0.0" 937 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 938 | dependencies: 939 | is-glob "^2.0.0" 940 | 941 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1: 942 | version "7.1.2" 943 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 944 | dependencies: 945 | fs.realpath "^1.0.0" 946 | inflight "^1.0.4" 947 | inherits "2" 948 | minimatch "^3.0.4" 949 | once "^1.3.0" 950 | path-is-absolute "^1.0.0" 951 | 952 | globals@^9.0.0: 953 | version "9.18.0" 954 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 955 | 956 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 957 | version "4.1.11" 958 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 959 | 960 | growly@^1.3.0: 961 | version "1.3.0" 962 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 963 | 964 | handlebars@^4.0.3: 965 | version "4.0.10" 966 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" 967 | dependencies: 968 | async "^1.4.0" 969 | optimist "^0.6.1" 970 | source-map "^0.4.4" 971 | optionalDependencies: 972 | uglify-js "^2.6" 973 | 974 | har-schema@^1.0.5: 975 | version "1.0.5" 976 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 977 | 978 | har-validator@~4.2.1: 979 | version "4.2.1" 980 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 981 | dependencies: 982 | ajv "^4.9.1" 983 | har-schema "^1.0.5" 984 | 985 | has-ansi@^2.0.0: 986 | version "2.0.0" 987 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 988 | dependencies: 989 | ansi-regex "^2.0.0" 990 | 991 | has-flag@^1.0.0: 992 | version "1.0.0" 993 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 994 | 995 | hawk@~3.1.3: 996 | version "3.1.3" 997 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 998 | dependencies: 999 | boom "2.x.x" 1000 | cryptiles "2.x.x" 1001 | hoek "2.x.x" 1002 | sntp "1.x.x" 1003 | 1004 | hoek@2.x.x: 1005 | version "2.16.3" 1006 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1007 | 1008 | home-or-tmp@^2.0.0: 1009 | version "2.0.0" 1010 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1011 | dependencies: 1012 | os-homedir "^1.0.0" 1013 | os-tmpdir "^1.0.1" 1014 | 1015 | hosted-git-info@^2.1.4: 1016 | version "2.5.0" 1017 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1018 | 1019 | html-encoding-sniffer@^1.0.1: 1020 | version "1.0.1" 1021 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 1022 | dependencies: 1023 | whatwg-encoding "^1.0.1" 1024 | 1025 | http-signature@~1.1.0: 1026 | version "1.1.1" 1027 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1028 | dependencies: 1029 | assert-plus "^0.2.0" 1030 | jsprim "^1.2.2" 1031 | sshpk "^1.7.0" 1032 | 1033 | iconv-lite@0.4.13: 1034 | version "0.4.13" 1035 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1036 | 1037 | inflight@^1.0.4: 1038 | version "1.0.6" 1039 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1040 | dependencies: 1041 | once "^1.3.0" 1042 | wrappy "1" 1043 | 1044 | inherits@2: 1045 | version "2.0.3" 1046 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1047 | 1048 | invariant@^2.2.0: 1049 | version "2.2.2" 1050 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1051 | dependencies: 1052 | loose-envify "^1.0.0" 1053 | 1054 | invert-kv@^1.0.0: 1055 | version "1.0.0" 1056 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1057 | 1058 | is-arrayish@^0.2.1: 1059 | version "0.2.1" 1060 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1061 | 1062 | is-buffer@^1.1.5: 1063 | version "1.1.5" 1064 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1065 | 1066 | is-builtin-module@^1.0.0: 1067 | version "1.0.0" 1068 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1069 | dependencies: 1070 | builtin-modules "^1.0.0" 1071 | 1072 | is-ci@^1.0.10: 1073 | version "1.0.10" 1074 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1075 | dependencies: 1076 | ci-info "^1.0.0" 1077 | 1078 | is-dotfile@^1.0.0: 1079 | version "1.0.3" 1080 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1081 | 1082 | is-equal-shallow@^0.1.3: 1083 | version "0.1.3" 1084 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1085 | dependencies: 1086 | is-primitive "^2.0.0" 1087 | 1088 | is-extendable@^0.1.1: 1089 | version "0.1.1" 1090 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1091 | 1092 | is-extglob@^1.0.0: 1093 | version "1.0.0" 1094 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1095 | 1096 | is-finite@^1.0.0: 1097 | version "1.0.2" 1098 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1099 | dependencies: 1100 | number-is-nan "^1.0.0" 1101 | 1102 | is-fullwidth-code-point@^1.0.0: 1103 | version "1.0.0" 1104 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1105 | dependencies: 1106 | number-is-nan "^1.0.0" 1107 | 1108 | is-glob@^2.0.0, is-glob@^2.0.1: 1109 | version "2.0.1" 1110 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1111 | dependencies: 1112 | is-extglob "^1.0.0" 1113 | 1114 | is-number@^2.1.0: 1115 | version "2.1.0" 1116 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1117 | dependencies: 1118 | kind-of "^3.0.2" 1119 | 1120 | is-number@^3.0.0: 1121 | version "3.0.0" 1122 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1123 | dependencies: 1124 | kind-of "^3.0.2" 1125 | 1126 | is-posix-bracket@^0.1.0: 1127 | version "0.1.1" 1128 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1129 | 1130 | is-primitive@^2.0.0: 1131 | version "2.0.0" 1132 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1133 | 1134 | is-typedarray@~1.0.0: 1135 | version "1.0.0" 1136 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1137 | 1138 | is-utf8@^0.2.0: 1139 | version "0.2.1" 1140 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1141 | 1142 | isarray@1.0.0: 1143 | version "1.0.0" 1144 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1145 | 1146 | isexe@^2.0.0: 1147 | version "2.0.0" 1148 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1149 | 1150 | isobject@^2.0.0: 1151 | version "2.1.0" 1152 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1153 | dependencies: 1154 | isarray "1.0.0" 1155 | 1156 | isstream@~0.1.2: 1157 | version "0.1.2" 1158 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1159 | 1160 | istanbul-api@^1.1.1: 1161 | version "1.1.10" 1162 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.10.tgz#f27e5e7125c8de13f6a80661af78f512e5439b2b" 1163 | dependencies: 1164 | async "^2.1.4" 1165 | fileset "^2.0.2" 1166 | istanbul-lib-coverage "^1.1.1" 1167 | istanbul-lib-hook "^1.0.7" 1168 | istanbul-lib-instrument "^1.7.3" 1169 | istanbul-lib-report "^1.1.1" 1170 | istanbul-lib-source-maps "^1.2.1" 1171 | istanbul-reports "^1.1.1" 1172 | js-yaml "^3.7.0" 1173 | mkdirp "^0.5.1" 1174 | once "^1.4.0" 1175 | 1176 | istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.1: 1177 | version "1.1.1" 1178 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 1179 | 1180 | istanbul-lib-hook@^1.0.7: 1181 | version "1.0.7" 1182 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.7.tgz#dd6607f03076578fe7d6f2a630cf143b49bacddc" 1183 | dependencies: 1184 | append-transform "^0.4.0" 1185 | 1186 | istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.2, istanbul-lib-instrument@^1.7.3: 1187 | version "1.7.3" 1188 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.3.tgz#925b239163eabdd68cc4048f52c2fa4f899ecfa7" 1189 | dependencies: 1190 | babel-generator "^6.18.0" 1191 | babel-template "^6.16.0" 1192 | babel-traverse "^6.18.0" 1193 | babel-types "^6.18.0" 1194 | babylon "^6.17.4" 1195 | istanbul-lib-coverage "^1.1.1" 1196 | semver "^5.3.0" 1197 | 1198 | istanbul-lib-report@^1.1.1: 1199 | version "1.1.1" 1200 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#f0e55f56655ffa34222080b7a0cd4760e1405fc9" 1201 | dependencies: 1202 | istanbul-lib-coverage "^1.1.1" 1203 | mkdirp "^0.5.1" 1204 | path-parse "^1.0.5" 1205 | supports-color "^3.1.2" 1206 | 1207 | istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.1: 1208 | version "1.2.1" 1209 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.1.tgz#a6fe1acba8ce08eebc638e572e294d267008aa0c" 1210 | dependencies: 1211 | debug "^2.6.3" 1212 | istanbul-lib-coverage "^1.1.1" 1213 | mkdirp "^0.5.1" 1214 | rimraf "^2.6.1" 1215 | source-map "^0.5.3" 1216 | 1217 | istanbul-reports@^1.1.1: 1218 | version "1.1.1" 1219 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.1.tgz#042be5c89e175bc3f86523caab29c014e77fee4e" 1220 | dependencies: 1221 | handlebars "^4.0.3" 1222 | 1223 | jest-changed-files@^20.0.3: 1224 | version "20.0.3" 1225 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-20.0.3.tgz#9394d5cc65c438406149bef1bf4d52b68e03e3f8" 1226 | 1227 | jest-cli@^20.0.4: 1228 | version "20.0.4" 1229 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-20.0.4.tgz#e532b19d88ae5bc6c417e8b0593a6fe954b1dc93" 1230 | dependencies: 1231 | ansi-escapes "^1.4.0" 1232 | callsites "^2.0.0" 1233 | chalk "^1.1.3" 1234 | graceful-fs "^4.1.11" 1235 | is-ci "^1.0.10" 1236 | istanbul-api "^1.1.1" 1237 | istanbul-lib-coverage "^1.0.1" 1238 | istanbul-lib-instrument "^1.4.2" 1239 | istanbul-lib-source-maps "^1.1.0" 1240 | jest-changed-files "^20.0.3" 1241 | jest-config "^20.0.4" 1242 | jest-docblock "^20.0.3" 1243 | jest-environment-jsdom "^20.0.3" 1244 | jest-haste-map "^20.0.4" 1245 | jest-jasmine2 "^20.0.4" 1246 | jest-message-util "^20.0.3" 1247 | jest-regex-util "^20.0.3" 1248 | jest-resolve-dependencies "^20.0.3" 1249 | jest-runtime "^20.0.4" 1250 | jest-snapshot "^20.0.3" 1251 | jest-util "^20.0.3" 1252 | micromatch "^2.3.11" 1253 | node-notifier "^5.0.2" 1254 | pify "^2.3.0" 1255 | slash "^1.0.0" 1256 | string-length "^1.0.1" 1257 | throat "^3.0.0" 1258 | which "^1.2.12" 1259 | worker-farm "^1.3.1" 1260 | yargs "^7.0.2" 1261 | 1262 | jest-config@^20.0.4: 1263 | version "20.0.4" 1264 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-20.0.4.tgz#e37930ab2217c913605eff13e7bd763ec48faeea" 1265 | dependencies: 1266 | chalk "^1.1.3" 1267 | glob "^7.1.1" 1268 | jest-environment-jsdom "^20.0.3" 1269 | jest-environment-node "^20.0.3" 1270 | jest-jasmine2 "^20.0.4" 1271 | jest-matcher-utils "^20.0.3" 1272 | jest-regex-util "^20.0.3" 1273 | jest-resolve "^20.0.4" 1274 | jest-validate "^20.0.3" 1275 | pretty-format "^20.0.3" 1276 | 1277 | jest-diff@^20.0.3: 1278 | version "20.0.3" 1279 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-20.0.3.tgz#81f288fd9e675f0fb23c75f1c2b19445fe586617" 1280 | dependencies: 1281 | chalk "^1.1.3" 1282 | diff "^3.2.0" 1283 | jest-matcher-utils "^20.0.3" 1284 | pretty-format "^20.0.3" 1285 | 1286 | jest-docblock@^20.0.3: 1287 | version "20.0.3" 1288 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-20.0.3.tgz#17bea984342cc33d83c50fbe1545ea0efaa44712" 1289 | 1290 | jest-environment-jsdom@^20.0.3: 1291 | version "20.0.3" 1292 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-20.0.3.tgz#048a8ac12ee225f7190417713834bb999787de99" 1293 | dependencies: 1294 | jest-mock "^20.0.3" 1295 | jest-util "^20.0.3" 1296 | jsdom "^9.12.0" 1297 | 1298 | jest-environment-node@^20.0.3: 1299 | version "20.0.3" 1300 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-20.0.3.tgz#d488bc4612af2c246e986e8ae7671a099163d403" 1301 | dependencies: 1302 | jest-mock "^20.0.3" 1303 | jest-util "^20.0.3" 1304 | 1305 | jest-haste-map@^20.0.4: 1306 | version "20.0.4" 1307 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-20.0.4.tgz#653eb55c889ce3c021f7b94693f20a4159badf03" 1308 | dependencies: 1309 | fb-watchman "^2.0.0" 1310 | graceful-fs "^4.1.11" 1311 | jest-docblock "^20.0.3" 1312 | micromatch "^2.3.11" 1313 | sane "~1.6.0" 1314 | worker-farm "^1.3.1" 1315 | 1316 | jest-jasmine2@^20.0.4: 1317 | version "20.0.4" 1318 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-20.0.4.tgz#fcc5b1411780d911d042902ef1859e852e60d5e1" 1319 | dependencies: 1320 | chalk "^1.1.3" 1321 | graceful-fs "^4.1.11" 1322 | jest-diff "^20.0.3" 1323 | jest-matcher-utils "^20.0.3" 1324 | jest-matchers "^20.0.3" 1325 | jest-message-util "^20.0.3" 1326 | jest-snapshot "^20.0.3" 1327 | once "^1.4.0" 1328 | p-map "^1.1.1" 1329 | 1330 | jest-matcher-utils@^20.0.3: 1331 | version "20.0.3" 1332 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-20.0.3.tgz#b3a6b8e37ca577803b0832a98b164f44b7815612" 1333 | dependencies: 1334 | chalk "^1.1.3" 1335 | pretty-format "^20.0.3" 1336 | 1337 | jest-matchers@^20.0.3: 1338 | version "20.0.3" 1339 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-20.0.3.tgz#ca69db1c32db5a6f707fa5e0401abb55700dfd60" 1340 | dependencies: 1341 | jest-diff "^20.0.3" 1342 | jest-matcher-utils "^20.0.3" 1343 | jest-message-util "^20.0.3" 1344 | jest-regex-util "^20.0.3" 1345 | 1346 | jest-message-util@^20.0.3: 1347 | version "20.0.3" 1348 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-20.0.3.tgz#6aec2844306fcb0e6e74d5796c1006d96fdd831c" 1349 | dependencies: 1350 | chalk "^1.1.3" 1351 | micromatch "^2.3.11" 1352 | slash "^1.0.0" 1353 | 1354 | jest-mock@^20.0.3: 1355 | version "20.0.3" 1356 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-20.0.3.tgz#8bc070e90414aa155c11a8d64c869a0d5c71da59" 1357 | 1358 | jest-regex-util@^20.0.3: 1359 | version "20.0.3" 1360 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-20.0.3.tgz#85bbab5d133e44625b19faf8c6aa5122d085d762" 1361 | 1362 | jest-resolve-dependencies@^20.0.3: 1363 | version "20.0.3" 1364 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-20.0.3.tgz#6e14a7b717af0f2cb3667c549de40af017b1723a" 1365 | dependencies: 1366 | jest-regex-util "^20.0.3" 1367 | 1368 | jest-resolve@^20.0.4: 1369 | version "20.0.4" 1370 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-20.0.4.tgz#9448b3e8b6bafc15479444c6499045b7ffe597a5" 1371 | dependencies: 1372 | browser-resolve "^1.11.2" 1373 | is-builtin-module "^1.0.0" 1374 | resolve "^1.3.2" 1375 | 1376 | jest-runtime@^20.0.4: 1377 | version "20.0.4" 1378 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-20.0.4.tgz#a2c802219c4203f754df1404e490186169d124d8" 1379 | dependencies: 1380 | babel-core "^6.0.0" 1381 | babel-jest "^20.0.3" 1382 | babel-plugin-istanbul "^4.0.0" 1383 | chalk "^1.1.3" 1384 | convert-source-map "^1.4.0" 1385 | graceful-fs "^4.1.11" 1386 | jest-config "^20.0.4" 1387 | jest-haste-map "^20.0.4" 1388 | jest-regex-util "^20.0.3" 1389 | jest-resolve "^20.0.4" 1390 | jest-util "^20.0.3" 1391 | json-stable-stringify "^1.0.1" 1392 | micromatch "^2.3.11" 1393 | strip-bom "3.0.0" 1394 | yargs "^7.0.2" 1395 | 1396 | jest-snapshot@^20.0.3: 1397 | version "20.0.3" 1398 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-20.0.3.tgz#5b847e1adb1a4d90852a7f9f125086e187c76566" 1399 | dependencies: 1400 | chalk "^1.1.3" 1401 | jest-diff "^20.0.3" 1402 | jest-matcher-utils "^20.0.3" 1403 | jest-util "^20.0.3" 1404 | natural-compare "^1.4.0" 1405 | pretty-format "^20.0.3" 1406 | 1407 | jest-util@^20.0.3: 1408 | version "20.0.3" 1409 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-20.0.3.tgz#0c07f7d80d82f4e5a67c6f8b9c3fe7f65cfd32ad" 1410 | dependencies: 1411 | chalk "^1.1.3" 1412 | graceful-fs "^4.1.11" 1413 | jest-message-util "^20.0.3" 1414 | jest-mock "^20.0.3" 1415 | jest-validate "^20.0.3" 1416 | leven "^2.1.0" 1417 | mkdirp "^0.5.1" 1418 | 1419 | jest-validate@^20.0.3: 1420 | version "20.0.3" 1421 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-20.0.3.tgz#d0cfd1de4f579f298484925c280f8f1d94ec3cab" 1422 | dependencies: 1423 | chalk "^1.1.3" 1424 | jest-matcher-utils "^20.0.3" 1425 | leven "^2.1.0" 1426 | pretty-format "^20.0.3" 1427 | 1428 | jest@^20.0.4: 1429 | version "20.0.4" 1430 | resolved "https://registry.yarnpkg.com/jest/-/jest-20.0.4.tgz#3dd260c2989d6dad678b1e9cc4d91944f6d602ac" 1431 | dependencies: 1432 | jest-cli "^20.0.4" 1433 | 1434 | js-tokens@^3.0.0: 1435 | version "3.0.1" 1436 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 1437 | 1438 | js-yaml@^3.7.0: 1439 | version "3.8.4" 1440 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.4.tgz#520b4564f86573ba96662af85a8cafa7b4b5a6f6" 1441 | dependencies: 1442 | argparse "^1.0.7" 1443 | esprima "^3.1.1" 1444 | 1445 | jsbn@~0.1.0: 1446 | version "0.1.1" 1447 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1448 | 1449 | jsdom@^9.12.0: 1450 | version "9.12.0" 1451 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 1452 | dependencies: 1453 | abab "^1.0.3" 1454 | acorn "^4.0.4" 1455 | acorn-globals "^3.1.0" 1456 | array-equal "^1.0.0" 1457 | content-type-parser "^1.0.1" 1458 | cssom ">= 0.3.2 < 0.4.0" 1459 | cssstyle ">= 0.2.37 < 0.3.0" 1460 | escodegen "^1.6.1" 1461 | html-encoding-sniffer "^1.0.1" 1462 | nwmatcher ">= 1.3.9 < 2.0.0" 1463 | parse5 "^1.5.1" 1464 | request "^2.79.0" 1465 | sax "^1.2.1" 1466 | symbol-tree "^3.2.1" 1467 | tough-cookie "^2.3.2" 1468 | webidl-conversions "^4.0.0" 1469 | whatwg-encoding "^1.0.1" 1470 | whatwg-url "^4.3.0" 1471 | xml-name-validator "^2.0.1" 1472 | 1473 | jsesc@^1.3.0: 1474 | version "1.3.0" 1475 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1476 | 1477 | jsesc@~0.5.0: 1478 | version "0.5.0" 1479 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1480 | 1481 | json-schema@0.2.3: 1482 | version "0.2.3" 1483 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1484 | 1485 | json-stable-stringify@^1.0.1: 1486 | version "1.0.1" 1487 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1488 | dependencies: 1489 | jsonify "~0.0.0" 1490 | 1491 | json-stringify-safe@~5.0.1: 1492 | version "5.0.1" 1493 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1494 | 1495 | json5@^0.5.0: 1496 | version "0.5.1" 1497 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1498 | 1499 | jsonify@~0.0.0: 1500 | version "0.0.0" 1501 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1502 | 1503 | jsprim@^1.2.2: 1504 | version "1.4.0" 1505 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 1506 | dependencies: 1507 | assert-plus "1.0.0" 1508 | extsprintf "1.0.2" 1509 | json-schema "0.2.3" 1510 | verror "1.3.6" 1511 | 1512 | kind-of@^3.0.2: 1513 | version "3.2.2" 1514 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1515 | dependencies: 1516 | is-buffer "^1.1.5" 1517 | 1518 | kind-of@^4.0.0: 1519 | version "4.0.0" 1520 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1521 | dependencies: 1522 | is-buffer "^1.1.5" 1523 | 1524 | lazy-cache@^1.0.3: 1525 | version "1.0.4" 1526 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1527 | 1528 | lcid@^1.0.0: 1529 | version "1.0.0" 1530 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1531 | dependencies: 1532 | invert-kv "^1.0.0" 1533 | 1534 | leven@^2.1.0: 1535 | version "2.1.0" 1536 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 1537 | 1538 | levn@~0.3.0: 1539 | version "0.3.0" 1540 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1541 | dependencies: 1542 | prelude-ls "~1.1.2" 1543 | type-check "~0.3.2" 1544 | 1545 | load-json-file@^1.0.0: 1546 | version "1.1.0" 1547 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1548 | dependencies: 1549 | graceful-fs "^4.1.2" 1550 | parse-json "^2.2.0" 1551 | pify "^2.0.0" 1552 | pinkie-promise "^2.0.0" 1553 | strip-bom "^2.0.0" 1554 | 1555 | locate-path@^2.0.0: 1556 | version "2.0.0" 1557 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1558 | dependencies: 1559 | p-locate "^2.0.0" 1560 | path-exists "^3.0.0" 1561 | 1562 | lodash@^4.14.0, lodash@^4.2.0: 1563 | version "4.17.4" 1564 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1565 | 1566 | longest@^1.0.1: 1567 | version "1.0.1" 1568 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1569 | 1570 | loose-envify@^1.0.0: 1571 | version "1.3.1" 1572 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1573 | dependencies: 1574 | js-tokens "^3.0.0" 1575 | 1576 | makeerror@1.0.x: 1577 | version "1.0.11" 1578 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 1579 | dependencies: 1580 | tmpl "1.0.x" 1581 | 1582 | merge@^1.1.3: 1583 | version "1.2.0" 1584 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 1585 | 1586 | micromatch@^2.1.5, micromatch@^2.3.11: 1587 | version "2.3.11" 1588 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1589 | dependencies: 1590 | arr-diff "^2.0.0" 1591 | array-unique "^0.2.1" 1592 | braces "^1.8.2" 1593 | expand-brackets "^0.1.4" 1594 | extglob "^0.3.1" 1595 | filename-regex "^2.0.0" 1596 | is-extglob "^1.0.0" 1597 | is-glob "^2.0.1" 1598 | kind-of "^3.0.2" 1599 | normalize-path "^2.0.1" 1600 | object.omit "^2.0.0" 1601 | parse-glob "^3.0.4" 1602 | regex-cache "^0.4.2" 1603 | 1604 | mime-db@~1.27.0: 1605 | version "1.27.0" 1606 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 1607 | 1608 | mime-types@^2.1.12, mime-types@~2.1.7: 1609 | version "2.1.15" 1610 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 1611 | dependencies: 1612 | mime-db "~1.27.0" 1613 | 1614 | minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 1615 | version "3.0.4" 1616 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1617 | dependencies: 1618 | brace-expansion "^1.1.7" 1619 | 1620 | minimist@0.0.8, minimist@~0.0.1: 1621 | version "0.0.8" 1622 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1623 | 1624 | minimist@^1.1.1: 1625 | version "1.2.0" 1626 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1627 | 1628 | mkdirp@^0.5.1: 1629 | version "0.5.1" 1630 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1631 | dependencies: 1632 | minimist "0.0.8" 1633 | 1634 | ms@2.0.0: 1635 | version "2.0.0" 1636 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1637 | 1638 | natural-compare@^1.4.0: 1639 | version "1.4.0" 1640 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1641 | 1642 | node-int64@^0.4.0: 1643 | version "0.4.0" 1644 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 1645 | 1646 | node-notifier@^5.0.2: 1647 | version "5.1.2" 1648 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 1649 | dependencies: 1650 | growly "^1.3.0" 1651 | semver "^5.3.0" 1652 | shellwords "^0.1.0" 1653 | which "^1.2.12" 1654 | 1655 | normalize-package-data@^2.3.2: 1656 | version "2.4.0" 1657 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 1658 | dependencies: 1659 | hosted-git-info "^2.1.4" 1660 | is-builtin-module "^1.0.0" 1661 | semver "2 || 3 || 4 || 5" 1662 | validate-npm-package-license "^3.0.1" 1663 | 1664 | normalize-path@^2.0.1: 1665 | version "2.1.1" 1666 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1667 | dependencies: 1668 | remove-trailing-separator "^1.0.1" 1669 | 1670 | number-is-nan@^1.0.0: 1671 | version "1.0.1" 1672 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1673 | 1674 | "nwmatcher@>= 1.3.9 < 2.0.0": 1675 | version "1.4.1" 1676 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.1.tgz#7ae9b07b0ea804db7e25f05cb5fe4097d4e4949f" 1677 | 1678 | oauth-sign@~0.8.1: 1679 | version "0.8.2" 1680 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1681 | 1682 | object-assign@^4.1.0: 1683 | version "4.1.1" 1684 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1685 | 1686 | object.omit@^2.0.0: 1687 | version "2.0.1" 1688 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1689 | dependencies: 1690 | for-own "^0.1.4" 1691 | is-extendable "^0.1.1" 1692 | 1693 | once@^1.3.0, once@^1.4.0: 1694 | version "1.4.0" 1695 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1696 | dependencies: 1697 | wrappy "1" 1698 | 1699 | optimist@^0.6.1: 1700 | version "0.6.1" 1701 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 1702 | dependencies: 1703 | minimist "~0.0.1" 1704 | wordwrap "~0.0.2" 1705 | 1706 | optionator@^0.8.1: 1707 | version "0.8.2" 1708 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1709 | dependencies: 1710 | deep-is "~0.1.3" 1711 | fast-levenshtein "~2.0.4" 1712 | levn "~0.3.0" 1713 | prelude-ls "~1.1.2" 1714 | type-check "~0.3.2" 1715 | wordwrap "~1.0.0" 1716 | 1717 | os-homedir@^1.0.0: 1718 | version "1.0.2" 1719 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1720 | 1721 | os-locale@^1.4.0: 1722 | version "1.4.0" 1723 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 1724 | dependencies: 1725 | lcid "^1.0.0" 1726 | 1727 | os-tmpdir@^1.0.1: 1728 | version "1.0.2" 1729 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1730 | 1731 | p-limit@^1.1.0: 1732 | version "1.1.0" 1733 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 1734 | 1735 | p-locate@^2.0.0: 1736 | version "2.0.0" 1737 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1738 | dependencies: 1739 | p-limit "^1.1.0" 1740 | 1741 | p-map@^1.1.1: 1742 | version "1.1.1" 1743 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.1.1.tgz#05f5e4ae97a068371bc2a5cc86bfbdbc19c4ae7a" 1744 | 1745 | parse-glob@^3.0.4: 1746 | version "3.0.4" 1747 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1748 | dependencies: 1749 | glob-base "^0.3.0" 1750 | is-dotfile "^1.0.0" 1751 | is-extglob "^1.0.0" 1752 | is-glob "^2.0.0" 1753 | 1754 | parse-json@^2.2.0: 1755 | version "2.2.0" 1756 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1757 | dependencies: 1758 | error-ex "^1.2.0" 1759 | 1760 | parse5@^1.5.1: 1761 | version "1.5.1" 1762 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 1763 | 1764 | path-exists@^2.0.0: 1765 | version "2.1.0" 1766 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1767 | dependencies: 1768 | pinkie-promise "^2.0.0" 1769 | 1770 | path-exists@^3.0.0: 1771 | version "3.0.0" 1772 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1773 | 1774 | path-is-absolute@^1.0.0: 1775 | version "1.0.1" 1776 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1777 | 1778 | path-parse@^1.0.5: 1779 | version "1.0.5" 1780 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 1781 | 1782 | path-type@^1.0.0: 1783 | version "1.1.0" 1784 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1785 | dependencies: 1786 | graceful-fs "^4.1.2" 1787 | pify "^2.0.0" 1788 | pinkie-promise "^2.0.0" 1789 | 1790 | performance-now@^0.2.0: 1791 | version "0.2.0" 1792 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1793 | 1794 | pify@^2.0.0, pify@^2.3.0: 1795 | version "2.3.0" 1796 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1797 | 1798 | pinkie-promise@^2.0.0: 1799 | version "2.0.1" 1800 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1801 | dependencies: 1802 | pinkie "^2.0.0" 1803 | 1804 | pinkie@^2.0.0: 1805 | version "2.0.4" 1806 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1807 | 1808 | prelude-ls@~1.1.2: 1809 | version "1.1.2" 1810 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 1811 | 1812 | preserve@^0.2.0: 1813 | version "0.2.0" 1814 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1815 | 1816 | pretty-format@^20.0.3: 1817 | version "20.0.3" 1818 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-20.0.3.tgz#020e350a560a1fe1a98dc3beb6ccffb386de8b14" 1819 | dependencies: 1820 | ansi-regex "^2.1.1" 1821 | ansi-styles "^3.0.0" 1822 | 1823 | private@^0.1.6: 1824 | version "0.1.7" 1825 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 1826 | 1827 | prr@~0.0.0: 1828 | version "0.0.0" 1829 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 1830 | 1831 | punycode@^1.4.1: 1832 | version "1.4.1" 1833 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1834 | 1835 | qs@~6.4.0: 1836 | version "6.4.0" 1837 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 1838 | 1839 | randomatic@^1.1.3: 1840 | version "1.1.7" 1841 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 1842 | dependencies: 1843 | is-number "^3.0.0" 1844 | kind-of "^4.0.0" 1845 | 1846 | read-pkg-up@^1.0.1: 1847 | version "1.0.1" 1848 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 1849 | dependencies: 1850 | find-up "^1.0.0" 1851 | read-pkg "^1.0.0" 1852 | 1853 | read-pkg@^1.0.0: 1854 | version "1.1.0" 1855 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 1856 | dependencies: 1857 | load-json-file "^1.0.0" 1858 | normalize-package-data "^2.3.2" 1859 | path-type "^1.0.0" 1860 | 1861 | regenerate@^1.2.1: 1862 | version "1.3.2" 1863 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 1864 | 1865 | regenerator-runtime@^0.10.0: 1866 | version "0.10.5" 1867 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 1868 | 1869 | regenerator-transform@0.9.11: 1870 | version "0.9.11" 1871 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283" 1872 | dependencies: 1873 | babel-runtime "^6.18.0" 1874 | babel-types "^6.19.0" 1875 | private "^0.1.6" 1876 | 1877 | regex-cache@^0.4.2: 1878 | version "0.4.3" 1879 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 1880 | dependencies: 1881 | is-equal-shallow "^0.1.3" 1882 | is-primitive "^2.0.0" 1883 | 1884 | regexpu-core@^2.0.0: 1885 | version "2.0.0" 1886 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 1887 | dependencies: 1888 | regenerate "^1.2.1" 1889 | regjsgen "^0.2.0" 1890 | regjsparser "^0.1.4" 1891 | 1892 | regjsgen@^0.2.0: 1893 | version "0.2.0" 1894 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 1895 | 1896 | regjsparser@^0.1.4: 1897 | version "0.1.5" 1898 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 1899 | dependencies: 1900 | jsesc "~0.5.0" 1901 | 1902 | remove-trailing-separator@^1.0.1: 1903 | version "1.0.2" 1904 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.2.tgz#69b062d978727ad14dc6b56ba4ab772fd8d70511" 1905 | 1906 | repeat-element@^1.1.2: 1907 | version "1.1.2" 1908 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1909 | 1910 | repeat-string@^1.5.2: 1911 | version "1.6.1" 1912 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1913 | 1914 | repeating@^2.0.0: 1915 | version "2.0.1" 1916 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1917 | dependencies: 1918 | is-finite "^1.0.0" 1919 | 1920 | request@^2.79.0: 1921 | version "2.81.0" 1922 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 1923 | dependencies: 1924 | aws-sign2 "~0.6.0" 1925 | aws4 "^1.2.1" 1926 | caseless "~0.12.0" 1927 | combined-stream "~1.0.5" 1928 | extend "~3.0.0" 1929 | forever-agent "~0.6.1" 1930 | form-data "~2.1.1" 1931 | har-validator "~4.2.1" 1932 | hawk "~3.1.3" 1933 | http-signature "~1.1.0" 1934 | is-typedarray "~1.0.0" 1935 | isstream "~0.1.2" 1936 | json-stringify-safe "~5.0.1" 1937 | mime-types "~2.1.7" 1938 | oauth-sign "~0.8.1" 1939 | performance-now "^0.2.0" 1940 | qs "~6.4.0" 1941 | safe-buffer "^5.0.1" 1942 | stringstream "~0.0.4" 1943 | tough-cookie "~2.3.0" 1944 | tunnel-agent "^0.6.0" 1945 | uuid "^3.0.0" 1946 | 1947 | require-directory@^2.1.1: 1948 | version "2.1.1" 1949 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1950 | 1951 | require-main-filename@^1.0.1: 1952 | version "1.0.1" 1953 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 1954 | 1955 | resolve@1.1.7: 1956 | version "1.1.7" 1957 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 1958 | 1959 | resolve@^1.3.2: 1960 | version "1.3.3" 1961 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" 1962 | dependencies: 1963 | path-parse "^1.0.5" 1964 | 1965 | right-align@^0.1.1: 1966 | version "0.1.3" 1967 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 1968 | dependencies: 1969 | align-text "^0.1.1" 1970 | 1971 | rimraf@^2.6.1: 1972 | version "2.6.1" 1973 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 1974 | dependencies: 1975 | glob "^7.0.5" 1976 | 1977 | safe-buffer@^5.0.1: 1978 | version "5.1.1" 1979 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 1980 | 1981 | sane@~1.6.0: 1982 | version "1.6.0" 1983 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.6.0.tgz#9610c452307a135d29c1fdfe2547034180c46775" 1984 | dependencies: 1985 | anymatch "^1.3.0" 1986 | exec-sh "^0.2.0" 1987 | fb-watchman "^1.8.0" 1988 | minimatch "^3.0.2" 1989 | minimist "^1.1.1" 1990 | walker "~1.0.5" 1991 | watch "~0.10.0" 1992 | 1993 | sax@^1.2.1: 1994 | version "1.2.4" 1995 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 1996 | 1997 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 1998 | version "5.3.0" 1999 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2000 | 2001 | set-blocking@^2.0.0: 2002 | version "2.0.0" 2003 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2004 | 2005 | shellwords@^0.1.0: 2006 | version "0.1.0" 2007 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.0.tgz#66afd47b6a12932d9071cbfd98a52e785cd0ba14" 2008 | 2009 | slash@^1.0.0: 2010 | version "1.0.0" 2011 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2012 | 2013 | sntp@1.x.x: 2014 | version "1.0.9" 2015 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2016 | dependencies: 2017 | hoek "2.x.x" 2018 | 2019 | source-map-support@^0.4.2: 2020 | version "0.4.15" 2021 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" 2022 | dependencies: 2023 | source-map "^0.5.6" 2024 | 2025 | source-map@^0.4.4: 2026 | version "0.4.4" 2027 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 2028 | dependencies: 2029 | amdefine ">=0.0.4" 2030 | 2031 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 2032 | version "0.5.6" 2033 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 2034 | 2035 | source-map@~0.2.0: 2036 | version "0.2.0" 2037 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 2038 | dependencies: 2039 | amdefine ">=0.0.4" 2040 | 2041 | spdx-correct@~1.0.0: 2042 | version "1.0.2" 2043 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2044 | dependencies: 2045 | spdx-license-ids "^1.0.2" 2046 | 2047 | spdx-expression-parse@~1.0.0: 2048 | version "1.0.4" 2049 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2050 | 2051 | spdx-license-ids@^1.0.2: 2052 | version "1.2.2" 2053 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2054 | 2055 | sprintf-js@~1.0.2: 2056 | version "1.0.3" 2057 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2058 | 2059 | sshpk@^1.7.0: 2060 | version "1.13.1" 2061 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2062 | dependencies: 2063 | asn1 "~0.2.3" 2064 | assert-plus "^1.0.0" 2065 | dashdash "^1.12.0" 2066 | getpass "^0.1.1" 2067 | optionalDependencies: 2068 | bcrypt-pbkdf "^1.0.0" 2069 | ecc-jsbn "~0.1.1" 2070 | jsbn "~0.1.0" 2071 | tweetnacl "~0.14.0" 2072 | 2073 | string-length@^1.0.1: 2074 | version "1.0.1" 2075 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 2076 | dependencies: 2077 | strip-ansi "^3.0.0" 2078 | 2079 | string-width@^1.0.1, string-width@^1.0.2: 2080 | version "1.0.2" 2081 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2082 | dependencies: 2083 | code-point-at "^1.0.0" 2084 | is-fullwidth-code-point "^1.0.0" 2085 | strip-ansi "^3.0.0" 2086 | 2087 | stringstream@~0.0.4: 2088 | version "0.0.5" 2089 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2090 | 2091 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2092 | version "3.0.1" 2093 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2094 | dependencies: 2095 | ansi-regex "^2.0.0" 2096 | 2097 | strip-bom@3.0.0: 2098 | version "3.0.0" 2099 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2100 | 2101 | strip-bom@^2.0.0: 2102 | version "2.0.0" 2103 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2104 | dependencies: 2105 | is-utf8 "^0.2.0" 2106 | 2107 | supports-color@^2.0.0: 2108 | version "2.0.0" 2109 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2110 | 2111 | supports-color@^3.1.2: 2112 | version "3.2.3" 2113 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 2114 | dependencies: 2115 | has-flag "^1.0.0" 2116 | 2117 | symbol-tree@^3.2.1: 2118 | version "3.2.2" 2119 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 2120 | 2121 | test-exclude@^4.1.1: 2122 | version "4.1.1" 2123 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" 2124 | dependencies: 2125 | arrify "^1.0.1" 2126 | micromatch "^2.3.11" 2127 | object-assign "^4.1.0" 2128 | read-pkg-up "^1.0.1" 2129 | require-main-filename "^1.0.1" 2130 | 2131 | throat@^3.0.0: 2132 | version "3.2.0" 2133 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.2.0.tgz#50cb0670edbc40237b9e347d7e1f88e4620af836" 2134 | 2135 | tmpl@1.0.x: 2136 | version "1.0.4" 2137 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 2138 | 2139 | to-fast-properties@^1.0.1: 2140 | version "1.0.3" 2141 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2142 | 2143 | tough-cookie@^2.3.2, tough-cookie@~2.3.0: 2144 | version "2.3.2" 2145 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 2146 | dependencies: 2147 | punycode "^1.4.1" 2148 | 2149 | tr46@~0.0.3: 2150 | version "0.0.3" 2151 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 2152 | 2153 | trim-right@^1.0.1: 2154 | version "1.0.1" 2155 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2156 | 2157 | tunnel-agent@^0.6.0: 2158 | version "0.6.0" 2159 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2160 | dependencies: 2161 | safe-buffer "^5.0.1" 2162 | 2163 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2164 | version "0.14.5" 2165 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2166 | 2167 | type-check@~0.3.2: 2168 | version "0.3.2" 2169 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2170 | dependencies: 2171 | prelude-ls "~1.1.2" 2172 | 2173 | uglify-js@^2.6: 2174 | version "2.8.29" 2175 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 2176 | dependencies: 2177 | source-map "~0.5.1" 2178 | yargs "~3.10.0" 2179 | optionalDependencies: 2180 | uglify-to-browserify "~1.0.0" 2181 | 2182 | uglify-to-browserify@~1.0.0: 2183 | version "1.0.2" 2184 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 2185 | 2186 | uuid@^3.0.0, uuid@^3.0.1: 2187 | version "3.1.0" 2188 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 2189 | 2190 | validate-npm-package-license@^3.0.1: 2191 | version "3.0.1" 2192 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2193 | dependencies: 2194 | spdx-correct "~1.0.0" 2195 | spdx-expression-parse "~1.0.0" 2196 | 2197 | verror@1.3.6: 2198 | version "1.3.6" 2199 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 2200 | dependencies: 2201 | extsprintf "1.0.2" 2202 | 2203 | vue@^2.3.4: 2204 | version "2.3.4" 2205 | resolved "https://registry.yarnpkg.com/vue/-/vue-2.3.4.tgz#5ec3b87a191da8090bbef56b7cfabd4158038171" 2206 | 2207 | vuex@^2.3.1: 2208 | version "2.3.1" 2209 | resolved "https://registry.yarnpkg.com/vuex/-/vuex-2.3.1.tgz#cde8e997c1f9957719bc7dea154f9aa691d981a6" 2210 | 2211 | walker@~1.0.5: 2212 | version "1.0.7" 2213 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 2214 | dependencies: 2215 | makeerror "1.0.x" 2216 | 2217 | watch@~0.10.0: 2218 | version "0.10.0" 2219 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 2220 | 2221 | webidl-conversions@^3.0.0: 2222 | version "3.0.1" 2223 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 2224 | 2225 | webidl-conversions@^4.0.0: 2226 | version "4.0.1" 2227 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.1.tgz#8015a17ab83e7e1b311638486ace81da6ce206a0" 2228 | 2229 | whatwg-encoding@^1.0.1: 2230 | version "1.0.1" 2231 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 2232 | dependencies: 2233 | iconv-lite "0.4.13" 2234 | 2235 | whatwg-url@^4.3.0: 2236 | version "4.8.0" 2237 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" 2238 | dependencies: 2239 | tr46 "~0.0.3" 2240 | webidl-conversions "^3.0.0" 2241 | 2242 | which-module@^1.0.0: 2243 | version "1.0.0" 2244 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 2245 | 2246 | which@^1.2.12: 2247 | version "1.2.14" 2248 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 2249 | dependencies: 2250 | isexe "^2.0.0" 2251 | 2252 | window-size@0.1.0: 2253 | version "0.1.0" 2254 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 2255 | 2256 | wordwrap@0.0.2: 2257 | version "0.0.2" 2258 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 2259 | 2260 | wordwrap@~0.0.2: 2261 | version "0.0.3" 2262 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 2263 | 2264 | wordwrap@~1.0.0: 2265 | version "1.0.0" 2266 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2267 | 2268 | worker-farm@^1.3.1: 2269 | version "1.3.1" 2270 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.3.1.tgz#4333112bb49b17aa050b87895ca6b2cacf40e5ff" 2271 | dependencies: 2272 | errno ">=0.1.1 <0.2.0-0" 2273 | xtend ">=4.0.0 <4.1.0-0" 2274 | 2275 | wrap-ansi@^2.0.0: 2276 | version "2.1.0" 2277 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 2278 | dependencies: 2279 | string-width "^1.0.1" 2280 | strip-ansi "^3.0.1" 2281 | 2282 | wrappy@1: 2283 | version "1.0.2" 2284 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2285 | 2286 | xml-name-validator@^2.0.1: 2287 | version "2.0.1" 2288 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 2289 | 2290 | "xtend@>=4.0.0 <4.1.0-0": 2291 | version "4.0.1" 2292 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2293 | 2294 | y18n@^3.2.1: 2295 | version "3.2.1" 2296 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 2297 | 2298 | yargs-parser@^5.0.0: 2299 | version "5.0.0" 2300 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" 2301 | dependencies: 2302 | camelcase "^3.0.0" 2303 | 2304 | yargs@^7.0.2: 2305 | version "7.1.0" 2306 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" 2307 | dependencies: 2308 | camelcase "^3.0.0" 2309 | cliui "^3.2.0" 2310 | decamelize "^1.1.1" 2311 | get-caller-file "^1.0.1" 2312 | os-locale "^1.4.0" 2313 | read-pkg-up "^1.0.1" 2314 | require-directory "^2.1.1" 2315 | require-main-filename "^1.0.1" 2316 | set-blocking "^2.0.0" 2317 | string-width "^1.0.2" 2318 | which-module "^1.0.0" 2319 | y18n "^3.2.1" 2320 | yargs-parser "^5.0.0" 2321 | 2322 | yargs@~3.10.0: 2323 | version "3.10.0" 2324 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 2325 | dependencies: 2326 | camelcase "^1.0.2" 2327 | cliui "^2.1.0" 2328 | decamelize "^1.0.0" 2329 | window-size "0.1.0" 2330 | --------------------------------------------------------------------------------