├── .babelrc ├── .gitignore ├── circle.yml ├── package.json ├── src ├── index.js └── __tests__ │ └── index-test.js ├── README.md └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /lib 3 | .vscode/settings.json 4 | coverage 5 | example 6 | -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- 1 | machine: 2 | environment: 3 | YARN_VERSION: 0.18.0 4 | PATH: "${PATH}:${HOME}/.yarn/bin:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin" 5 | node: 6 | version: v7.3.0 7 | dependencies: 8 | pre: 9 | - | 10 | if [[ ! -e ~/.yarn/bin/yarn || $(yarn --version) != "${YARN_VERSION}" ]]; then 11 | echo "Download and install Yarn." 12 | curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version $YARN_VERSION 13 | else 14 | echo "The correct version of Yarn is already installed." 15 | fi 16 | override: 17 | - yarn install 18 | cache_directories: 19 | - ~/.yarn 20 | - ~/.cache/yarn 21 | 22 | test: 23 | override: 24 | - yarn test 25 | post: 26 | - bash <(curl -s https://codecov.io/bash) -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mnid", 3 | "version": "0.1.1", 4 | "description": "Multi Network Identifier - Blockchain Address Encoding", 5 | "main": "lib/index.js", 6 | "author": "Pelle Braendgaard ", 7 | "license": "MIT", 8 | "dependencies": { 9 | "base-x": "3.0.4", 10 | "buffer": "^5.0.5", 11 | "js-sha3": "^0.5.7" 12 | }, 13 | "repository": { 14 | "type": "git", 15 | "url": "https://github.com/uport-project/mnid.git" 16 | }, 17 | "files": [ 18 | "dist", 19 | "lib", 20 | "src" 21 | ], 22 | "scripts": { 23 | "test": "jest", 24 | "build:es5": "./node_modules/.bin/babel src -d lib", 25 | "build": "yarn test && yarn build:es5" 26 | }, 27 | "jest": { 28 | "coverageDirectory": "./coverage/", 29 | "collectCoverage": true 30 | }, 31 | "devDependencies": { 32 | "babel-cli": "^6.24.0", 33 | "babel-jest": "^19.0.0", 34 | "babel-polyfill": "^6.23.0", 35 | "babel-preset-es2015": "^6.24.0", 36 | "jest": "^19.0.2", 37 | "standard": "^9.0.1" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | var BASE58 = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz' 2 | var base58 = require('base-x')(BASE58) 3 | var hex = require('base-x')('0123456789abcdef') 4 | 5 | import { sha3_256 } from 'js-sha3' 6 | import { Buffer } from 'buffer' 7 | 8 | function checksum (payload) { 9 | return new Buffer(sha3_256(Buffer.concat(payload)), 'hex').slice(0, 4) 10 | } 11 | 12 | export function encode ({network, address}) { 13 | const payload = [new Buffer('01', 'hex'), hex.decode(network.slice(2)), new Buffer(address.slice(2), 'hex')] 14 | payload.push(checksum(payload)) 15 | return base58.encode(Buffer.concat(payload)) 16 | } 17 | 18 | export function decode (encoded) { 19 | const data = Buffer.from(base58.decode(encoded)) 20 | const netLength = data.length - 24 21 | const version = data.slice(0, 1) 22 | const network = data.slice(1, netLength) 23 | const address = data.slice(netLength, 20 + netLength) 24 | const check = data.slice(netLength + 20) 25 | if (check.equals(checksum([version, network, address]))) { 26 | return { 27 | network: `0x${hex.encode(network)}`, 28 | address: `0x${address.toString('hex')}` 29 | } 30 | } else { 31 | throw new Error('Invalid address checksum') 32 | } 33 | } 34 | 35 | export function isMNID (encoded) { 36 | try { 37 | const data = Buffer.from(base58.decode(encoded)) 38 | return data.length > 24 && data[0] === 1 39 | } catch (e) { 40 | return false 41 | } 42 | } -------------------------------------------------------------------------------- /src/__tests__/index-test.js: -------------------------------------------------------------------------------- 1 | import { encode, decode, isMNID } from '../index' 2 | 3 | describe('encode', () => { 4 | it('main-net', () => { 5 | expect(encode({ 6 | network: '0x1', 7 | address: '0x00521965e7bd230323c423d96c657db5b79d099f' 8 | })).toEqual('2nQtiQG6Cgm1GYTBaaKAgr76uY7iSexUkqX') 9 | }) 10 | 11 | it('with genesis hash', () => { 12 | expect(encode({ 13 | network: '0x94365e3a', 14 | address: '0x00521965e7bd230323c423d96c657db5b79d099f' 15 | })).toEqual('5A8bRWU3F7j3REx3vkJWxdjQPp4tqmxFPmab1Tr') 16 | }) 17 | 18 | it('ropsten', () => { 19 | expect(encode({ 20 | network: '0x3', 21 | address: '0x00521965e7bd230323c423d96c657db5b79d099f' 22 | })).toEqual('2oDZvNUgn77w2BKTkd9qKpMeUo8EL94QL5V') 23 | }) 24 | 25 | it('kovan', () => { 26 | expect(encode({ 27 | network: '0x2a', 28 | address: '0x00521965e7bd230323c423d96c657db5b79d099f' 29 | })).toEqual('34ukSmiK1oA1C5Du8aWpkjFGALoH7nsHeDX') 30 | }) 31 | 32 | it('infuranet', () => { 33 | expect(encode({ 34 | network: '0x16b2', 35 | address: '0x00521965e7bd230323c423d96c657db5b79d099f' 36 | })).toEqual('9Xy8yQpdeCNSPGQ9jwTha9MRSb2QJ8HYzf1u') 37 | }) 38 | }) 39 | 40 | describe('decode', () => { 41 | it('main-net', () => { 42 | expect(decode('2nQtiQG6Cgm1GYTBaaKAgr76uY7iSexUkqX')).toEqual( 43 | { 44 | network: '0x1', 45 | address: '0x00521965e7bd230323c423d96c657db5b79d099f' 46 | } 47 | ) 48 | }) 49 | 50 | it('bad checksum', () => { 51 | expect(() => { 52 | decode('2nQtiQG6Cgm1GYTBaaKAgr76uY7iSexUkqU') 53 | }).toThrow('Invalid address checksum') 54 | }) 55 | 56 | it('with genesis hash', () => { 57 | expect(decode('5A8bRWU3F7j3REx3vkJWxdjQPp4tqmxFPmab1Tr')).toEqual( 58 | { 59 | network: '0x94365e3a', 60 | address: '0x00521965e7bd230323c423d96c657db5b79d099f' 61 | } 62 | ) 63 | }) 64 | 65 | it('ropsten', () => { 66 | expect(decode('2oDZvNUgn77w2BKTkd9qKpMeUo8EL94QL5V')).toEqual( 67 | { 68 | network: '0x3', 69 | address: '0x00521965e7bd230323c423d96c657db5b79d099f' 70 | } 71 | ) 72 | }) 73 | 74 | it('kovan', () => { 75 | expect(decode('34ukSmiK1oA1C5Du8aWpkjFGALoH7nsHeDX')).toEqual( 76 | { 77 | network: '0x2a', 78 | address: '0x00521965e7bd230323c423d96c657db5b79d099f' 79 | } 80 | ) 81 | }) 82 | }) 83 | 84 | describe('isMNID', () => { 85 | it('is valid', () => { 86 | expect(isMNID('2nQtiQG6Cgm1GYTBaaKAgr76uY7iSexUkqX')).toBeTruthy() 87 | expect(isMNID('5A8bRWU3F7j3REx3vkJWxdjQPp4tqmxFPmab1Tr')).toBeTruthy() 88 | expect(isMNID('2oDZvNUgn77w2BKTkd9qKpMeUo8EL94QL5V')).toBeTruthy() 89 | expect(isMNID('34ukSmiK1oA1C5Du8aWpkjFGALoH7nsHeDX')).toBeTruthy() 90 | // bad checksum but still MNID 91 | expect(isMNID('2nQtiQG6Cgm1GYTBaaKAgr76uY7iSexUkqU')).toBeTruthy() 92 | }) 93 | 94 | it('is invalid', () => { 95 | // Ethereum Hex 96 | expect(isMNID('0x00521965e7bd230323c423d96c657db5b79d099f')).toBeFalsy() 97 | // Bitcoin 98 | expect(isMNID('1GbVUSW5WJmRCpaCJ4hanUny77oDaWW4to')).toBeFalsy() 99 | 100 | // IPFS 101 | expect(isMNID('QmXuNqXmrkxs4WhTDC2GCnXEep4LUD87bu97LQMn1rkxmQ')).toBeFalsy() 102 | 103 | // Cut off 104 | expect(isMNID('2nQtiQG6Cgm1GYTBaaKAgr76uY7iSexUkq')).toBeFalsy() 105 | 106 | expect(isMNID('')).toBeFalsy() 107 | expect(isMNID(null)).toBeFalsy() 108 | }) 109 | 110 | }) -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Multi Network Identifier (MNID) 2 | 3 | Ethereum, and uPort, is entering a multi-chain world. As end users increasingly interact with multiple chains, on Ethereum or elsewhere, the risk of users/servers inadvertently transferring value from an address on network X to an address on network Y is growing. This could result in monetary loss. Since uPort is switching to a new test network, we need to solve this issue urgently. 4 | 5 | The Bitcoin protocol uses [Base58Check encoding](https://en.bitcoin.it/wiki/Base58Check_encoding) to prevent users from sending value off-network, but the ethereum ecosystem has used a raw hex version of the address instead. 6 | 7 | ## Extendible Encoding 8 | 9 | My proposal is inspired by the Base58Check encoding as well as [EIP77](https://github.com/ethereum/EIPs/issues/77) but also specifies a network identifier, which allows us to programmatically extract the network used by an address as well as provide a visual indicator of the network used. 10 | 11 | The following items are encoded: 12 | 13 | * 1 byte version number currently `1` 14 | * network id or four bytes of genesis block hash (or both) 15 | * actual address data 16 | * Four bytes (32 bits) of SHA3-based error checking code (digest of the version, network and payload) 17 | 18 | Then base58 encoding is applied to the end result. The end result is fairly complete but still extendible in the future. We could start by simply using the network id and replace it with the genesis block hash and other meta data in the future. 19 | 20 | ### Benefits 21 | 22 | This works with ethereum blockchains, but can easily be extended to other blockchains or even non-blockchain identifiers in the future. It would also be straightforward to add further details specifying which fork etc. 23 | 24 | ### Ease of Implementation 25 | 26 | This can be implemented very easily with few dependencies. It would be trivial to use this to add multichain support to uport-lite for example. Thus even allowing (if desired) the interchange of JWT's verified on different networks. 27 | 28 | ### Examples 29 | 30 | The following Ethereum hex encoded address `0x00521965e7bd230323c423d96c657db5b79d099f` could be encoded as follows 31 | 32 | 33 | * main-net: `2nQtiQG6Cgm1GYTBaaKAgr76uY7iSexUkqX` 34 | * ropsten: `2oDZvNUgn77w2BKTkd9qKpMeUo8EL94QL5V` 35 | * kovan: `34ukSmiK1oA1C5Du8aWpkjFGALoH7nsHeDX` 36 | * infuranet: `9Xy8yQpdeCNSPGQ9jwTha9MRSb2QJ8HYzf1u` 37 | 38 | ### Future additions 39 | 40 | It would be trivial to add shard ids, fork descriptors (block number and hash) etc to the address. It would also be trivial to encode other kinds of identities that don't correspond directly to an address on a chain. 41 | 42 | ## Javascript reference implementation 43 | 44 | ```js 45 | > var mnid = require('mnid') 46 | > mnid.encode({ 47 | network: '0x1', // the hex encoded network id or for private chains the hex encoded first 4 bytes of the genesis hash 48 | address: '0x00521965e7bd230323c423d96c657db5b79d099f' 49 | }) 50 | '2nQtiQG6Cgm1GYTBaaKAgr76uY7iSexUkqX' 51 | 52 | > mnid.decode('2nQtiQG6Cgm1GYTBaaKAgr76uY7iSexUkqX') 53 | { network: '0x1', 54 | address: '0x00521965e7bd230323c423d96c657db5b79d099f' } 55 | 56 | // Check if string is a valid MNID 57 | 58 | > mnid.isMNID('2nQtiQG6Cgm1GYTBaaKAgr76uY7iSexUkqX') 59 | true 60 | 61 | > mnid.isMNID('0x00521965e7bd230323c423d96c657db5b79d099f') 62 | false 63 | 64 | > mnid.isMNID('1GbVUSW5WJmRCpaCJ4hanUny77oDaWW4to') 65 | false 66 | 67 | > mnid.isMNID('QmXuNqXmrkxs4WhTDC2GCnXEep4LUD87bu97LQMn1rkxmQ') 68 | false 69 | ``` 70 | 71 | ## Inspirations 72 | 73 | ### Base58Check Encoding 74 | 75 | Bitcoin's encoding consists of the following 3 items: 76 | 77 | * Version prefix - Used more as a type and network field. See [list](https://en.bitcoin.it/wiki/List_of_address_prefixes). 78 | * Payload (eg. hash of public key) 79 | * Four bytes (32 bits) of SHA256-based error checking code (digest of the version and payload) 80 | 81 | The whole thing is base58 encoded for compactness and URL safety. 82 | 83 | The version prefix allows humans to visually recognize the address type from the first few characters in the string. The error checking code ensures that there aren't any obvious errors in the address. 84 | 85 | ### EIP77 86 | 87 | A previous attempt at solving this for ethereum is found in [EIP 77](https://github.com/ethereum/EIPs/issues/77) which is similar to Base58Check: 88 | 89 | * 1 flag byte - currently undefined. I suppose this could be used to pick a chain. But 1 byte does not seem enough 90 | * Payload (eg. hash of public key) 91 | * Four bytes (32 bits) of SHA3-based error error checking code (digest of the version and payload) 92 | 93 | ## 94 | 95 | 96 | -------------------------------------------------------------------------------- /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 | abbrev@1: 10 | version "1.1.0" 11 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 12 | 13 | acorn-globals@^3.1.0: 14 | version "3.1.0" 15 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 16 | dependencies: 17 | acorn "^4.0.4" 18 | 19 | acorn-jsx@^3.0.0: 20 | version "3.0.1" 21 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 22 | dependencies: 23 | acorn "^3.0.4" 24 | 25 | acorn@4.0.4, acorn@^4.0.4: 26 | version "4.0.4" 27 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.4.tgz#17a8d6a7a6c4ef538b814ec9abac2779293bf30a" 28 | 29 | acorn@^3.0.4: 30 | version "3.3.0" 31 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 32 | 33 | ajv-keywords@^1.0.0: 34 | version "1.5.1" 35 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 36 | 37 | ajv@^4.7.0, ajv@^4.9.1: 38 | version "4.11.5" 39 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.5.tgz#b6ee74657b993a01dce44b7944d56f485828d5bd" 40 | dependencies: 41 | co "^4.6.0" 42 | json-stable-stringify "^1.0.1" 43 | 44 | amdefine@>=0.0.4: 45 | version "1.0.1" 46 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 47 | 48 | ansi-escapes@^1.1.0, ansi-escapes@^1.4.0: 49 | version "1.4.0" 50 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 51 | 52 | ansi-regex@^2.0.0: 53 | version "2.1.1" 54 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 55 | 56 | ansi-styles@^2.2.1: 57 | version "2.2.1" 58 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 59 | 60 | ansi-styles@^3.0.0: 61 | version "3.0.0" 62 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.0.0.tgz#5404e93a544c4fec7f048262977bebfe3155e0c1" 63 | dependencies: 64 | color-convert "^1.0.0" 65 | 66 | anymatch@^1.3.0: 67 | version "1.3.0" 68 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 69 | dependencies: 70 | arrify "^1.0.0" 71 | micromatch "^2.1.5" 72 | 73 | append-transform@^0.4.0: 74 | version "0.4.0" 75 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 76 | dependencies: 77 | default-require-extensions "^1.0.0" 78 | 79 | aproba@^1.0.3: 80 | version "1.1.1" 81 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" 82 | 83 | are-we-there-yet@~1.1.2: 84 | version "1.1.2" 85 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 86 | dependencies: 87 | delegates "^1.0.0" 88 | readable-stream "^2.0.0 || ^1.1.13" 89 | 90 | argparse@^1.0.7: 91 | version "1.0.10" 92 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 93 | dependencies: 94 | sprintf-js "~1.0.2" 95 | 96 | arr-diff@^2.0.0: 97 | version "2.0.0" 98 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 99 | dependencies: 100 | arr-flatten "^1.0.1" 101 | 102 | arr-flatten@^1.0.1: 103 | version "1.0.1" 104 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 105 | 106 | array-equal@^1.0.0: 107 | version "1.0.0" 108 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 109 | 110 | array-union@^1.0.1: 111 | version "1.0.2" 112 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 113 | dependencies: 114 | array-uniq "^1.0.1" 115 | 116 | array-uniq@^1.0.1: 117 | version "1.0.3" 118 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 119 | 120 | array-unique@^0.2.1: 121 | version "0.2.1" 122 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 123 | 124 | array.prototype.find@^2.0.1: 125 | version "2.0.3" 126 | resolved "https://registry.yarnpkg.com/array.prototype.find/-/array.prototype.find-2.0.3.tgz#08c3ec33e32ec4bab362a2958e686ae92f59271d" 127 | dependencies: 128 | define-properties "^1.1.2" 129 | es-abstract "^1.7.0" 130 | 131 | arrify@^1.0.0, arrify@^1.0.1: 132 | version "1.0.1" 133 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 134 | 135 | asn1@~0.2.3: 136 | version "0.2.4" 137 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" 138 | dependencies: 139 | safer-buffer "~2.1.0" 140 | 141 | assert-plus@1.0.0, assert-plus@^1.0.0: 142 | version "1.0.0" 143 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 144 | 145 | assert-plus@^0.2.0: 146 | version "0.2.0" 147 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 148 | 149 | async-each@^1.0.0: 150 | version "1.0.1" 151 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 152 | 153 | async@^1.4.2: 154 | version "1.5.2" 155 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 156 | 157 | async@^2.1.4: 158 | version "2.1.5" 159 | resolved "https://registry.yarnpkg.com/async/-/async-2.1.5.tgz#e587c68580994ac67fc56ff86d3ac56bdbe810bc" 160 | dependencies: 161 | lodash "^4.14.0" 162 | 163 | asynckit@^0.4.0: 164 | version "0.4.0" 165 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 166 | 167 | aws-sign2@~0.6.0: 168 | version "0.6.0" 169 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 170 | 171 | aws4@^1.2.1: 172 | version "1.6.0" 173 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 174 | 175 | babel-cli@^6.24.0: 176 | version "6.24.0" 177 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.24.0.tgz#a05ffd210dca0c288a26d5319c5ac8669a265ad0" 178 | dependencies: 179 | babel-core "^6.24.0" 180 | babel-polyfill "^6.23.0" 181 | babel-register "^6.24.0" 182 | babel-runtime "^6.22.0" 183 | commander "^2.8.1" 184 | convert-source-map "^1.1.0" 185 | fs-readdir-recursive "^1.0.0" 186 | glob "^7.0.0" 187 | lodash "^4.2.0" 188 | output-file-sync "^1.1.0" 189 | path-is-absolute "^1.0.0" 190 | slash "^1.0.0" 191 | source-map "^0.5.0" 192 | v8flags "^2.0.10" 193 | optionalDependencies: 194 | chokidar "^1.6.1" 195 | 196 | babel-code-frame@^6.16.0, babel-code-frame@^6.22.0: 197 | version "6.22.0" 198 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 199 | dependencies: 200 | chalk "^1.1.0" 201 | esutils "^2.0.2" 202 | js-tokens "^3.0.0" 203 | 204 | babel-core@^6.0.0, babel-core@^6.24.0: 205 | version "6.24.0" 206 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.0.tgz#8f36a0a77f5c155aed6f920b844d23ba56742a02" 207 | dependencies: 208 | babel-code-frame "^6.22.0" 209 | babel-generator "^6.24.0" 210 | babel-helpers "^6.23.0" 211 | babel-messages "^6.23.0" 212 | babel-register "^6.24.0" 213 | babel-runtime "^6.22.0" 214 | babel-template "^6.23.0" 215 | babel-traverse "^6.23.1" 216 | babel-types "^6.23.0" 217 | babylon "^6.11.0" 218 | convert-source-map "^1.1.0" 219 | debug "^2.1.1" 220 | json5 "^0.5.0" 221 | lodash "^4.2.0" 222 | minimatch "^3.0.2" 223 | path-is-absolute "^1.0.0" 224 | private "^0.1.6" 225 | slash "^1.0.0" 226 | source-map "^0.5.0" 227 | 228 | babel-generator@^6.18.0, babel-generator@^6.24.0: 229 | version "6.24.0" 230 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.0.tgz#eba270a8cc4ce6e09a61be43465d7c62c1f87c56" 231 | dependencies: 232 | babel-messages "^6.23.0" 233 | babel-runtime "^6.22.0" 234 | babel-types "^6.23.0" 235 | detect-indent "^4.0.0" 236 | jsesc "^1.3.0" 237 | lodash "^4.2.0" 238 | source-map "^0.5.0" 239 | trim-right "^1.0.1" 240 | 241 | babel-helper-call-delegate@^6.22.0: 242 | version "6.22.0" 243 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.22.0.tgz#119921b56120f17e9dae3f74b4f5cc7bcc1b37ef" 244 | dependencies: 245 | babel-helper-hoist-variables "^6.22.0" 246 | babel-runtime "^6.22.0" 247 | babel-traverse "^6.22.0" 248 | babel-types "^6.22.0" 249 | 250 | babel-helper-define-map@^6.23.0: 251 | version "6.23.0" 252 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.23.0.tgz#1444f960c9691d69a2ced6a205315f8fd00804e7" 253 | dependencies: 254 | babel-helper-function-name "^6.23.0" 255 | babel-runtime "^6.22.0" 256 | babel-types "^6.23.0" 257 | lodash "^4.2.0" 258 | 259 | babel-helper-function-name@^6.22.0, babel-helper-function-name@^6.23.0: 260 | version "6.23.0" 261 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.23.0.tgz#25742d67175c8903dbe4b6cb9d9e1fcb8dcf23a6" 262 | dependencies: 263 | babel-helper-get-function-arity "^6.22.0" 264 | babel-runtime "^6.22.0" 265 | babel-template "^6.23.0" 266 | babel-traverse "^6.23.0" 267 | babel-types "^6.23.0" 268 | 269 | babel-helper-get-function-arity@^6.22.0: 270 | version "6.22.0" 271 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.22.0.tgz#0beb464ad69dc7347410ac6ade9f03a50634f5ce" 272 | dependencies: 273 | babel-runtime "^6.22.0" 274 | babel-types "^6.22.0" 275 | 276 | babel-helper-hoist-variables@^6.22.0: 277 | version "6.22.0" 278 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.22.0.tgz#3eacbf731d80705845dd2e9718f600cfb9b4ba72" 279 | dependencies: 280 | babel-runtime "^6.22.0" 281 | babel-types "^6.22.0" 282 | 283 | babel-helper-optimise-call-expression@^6.23.0: 284 | version "6.23.0" 285 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.23.0.tgz#f3ee7eed355b4282138b33d02b78369e470622f5" 286 | dependencies: 287 | babel-runtime "^6.22.0" 288 | babel-types "^6.23.0" 289 | 290 | babel-helper-regex@^6.22.0: 291 | version "6.22.0" 292 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.22.0.tgz#79f532be1647b1f0ee3474b5f5c3da58001d247d" 293 | dependencies: 294 | babel-runtime "^6.22.0" 295 | babel-types "^6.22.0" 296 | lodash "^4.2.0" 297 | 298 | babel-helper-replace-supers@^6.22.0, babel-helper-replace-supers@^6.23.0: 299 | version "6.23.0" 300 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.23.0.tgz#eeaf8ad9b58ec4337ca94223bacdca1f8d9b4bfd" 301 | dependencies: 302 | babel-helper-optimise-call-expression "^6.23.0" 303 | babel-messages "^6.23.0" 304 | babel-runtime "^6.22.0" 305 | babel-template "^6.23.0" 306 | babel-traverse "^6.23.0" 307 | babel-types "^6.23.0" 308 | 309 | babel-helpers@^6.23.0: 310 | version "6.23.0" 311 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.23.0.tgz#4f8f2e092d0b6a8808a4bde79c27f1e2ecf0d992" 312 | dependencies: 313 | babel-runtime "^6.22.0" 314 | babel-template "^6.23.0" 315 | 316 | babel-jest@^19.0.0: 317 | version "19.0.0" 318 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-19.0.0.tgz#59323ced99a3a84d359da219ca881074ffc6ce3f" 319 | dependencies: 320 | babel-core "^6.0.0" 321 | babel-plugin-istanbul "^4.0.0" 322 | babel-preset-jest "^19.0.0" 323 | 324 | babel-messages@^6.23.0: 325 | version "6.23.0" 326 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 327 | dependencies: 328 | babel-runtime "^6.22.0" 329 | 330 | babel-plugin-check-es2015-constants@^6.22.0: 331 | version "6.22.0" 332 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 333 | dependencies: 334 | babel-runtime "^6.22.0" 335 | 336 | babel-plugin-istanbul@^4.0.0: 337 | version "4.0.0" 338 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.0.0.tgz#36bde8fbef4837e5ff0366531a2beabd7b1ffa10" 339 | dependencies: 340 | find-up "^2.1.0" 341 | istanbul-lib-instrument "^1.4.2" 342 | test-exclude "^4.0.0" 343 | 344 | babel-plugin-jest-hoist@^19.0.0: 345 | version "19.0.0" 346 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-19.0.0.tgz#4ae2a04ea612a6e73651f3fde52c178991304bea" 347 | 348 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 349 | version "6.22.0" 350 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 351 | dependencies: 352 | babel-runtime "^6.22.0" 353 | 354 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 355 | version "6.22.0" 356 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 357 | dependencies: 358 | babel-runtime "^6.22.0" 359 | 360 | babel-plugin-transform-es2015-block-scoping@^6.22.0: 361 | version "6.23.0" 362 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.23.0.tgz#e48895cf0b375be148cd7c8879b422707a053b51" 363 | dependencies: 364 | babel-runtime "^6.22.0" 365 | babel-template "^6.23.0" 366 | babel-traverse "^6.23.0" 367 | babel-types "^6.23.0" 368 | lodash "^4.2.0" 369 | 370 | babel-plugin-transform-es2015-classes@^6.22.0: 371 | version "6.23.0" 372 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.23.0.tgz#49b53f326202a2fd1b3bbaa5e2edd8a4f78643c1" 373 | dependencies: 374 | babel-helper-define-map "^6.23.0" 375 | babel-helper-function-name "^6.23.0" 376 | babel-helper-optimise-call-expression "^6.23.0" 377 | babel-helper-replace-supers "^6.23.0" 378 | babel-messages "^6.23.0" 379 | babel-runtime "^6.22.0" 380 | babel-template "^6.23.0" 381 | babel-traverse "^6.23.0" 382 | babel-types "^6.23.0" 383 | 384 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 385 | version "6.22.0" 386 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.22.0.tgz#7c383e9629bba4820c11b0425bdd6290f7f057e7" 387 | dependencies: 388 | babel-runtime "^6.22.0" 389 | babel-template "^6.22.0" 390 | 391 | babel-plugin-transform-es2015-destructuring@^6.22.0: 392 | version "6.23.0" 393 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 394 | dependencies: 395 | babel-runtime "^6.22.0" 396 | 397 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 398 | version "6.22.0" 399 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.22.0.tgz#672397031c21610d72dd2bbb0ba9fb6277e1c36b" 400 | dependencies: 401 | babel-runtime "^6.22.0" 402 | babel-types "^6.22.0" 403 | 404 | babel-plugin-transform-es2015-for-of@^6.22.0: 405 | version "6.23.0" 406 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 407 | dependencies: 408 | babel-runtime "^6.22.0" 409 | 410 | babel-plugin-transform-es2015-function-name@^6.22.0: 411 | version "6.22.0" 412 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.22.0.tgz#f5fcc8b09093f9a23c76ac3d9e392c3ec4b77104" 413 | dependencies: 414 | babel-helper-function-name "^6.22.0" 415 | babel-runtime "^6.22.0" 416 | babel-types "^6.22.0" 417 | 418 | babel-plugin-transform-es2015-literals@^6.22.0: 419 | version "6.22.0" 420 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 421 | dependencies: 422 | babel-runtime "^6.22.0" 423 | 424 | babel-plugin-transform-es2015-modules-amd@^6.24.0: 425 | version "6.24.0" 426 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.0.tgz#a1911fb9b7ec7e05a43a63c5995007557bcf6a2e" 427 | dependencies: 428 | babel-plugin-transform-es2015-modules-commonjs "^6.24.0" 429 | babel-runtime "^6.22.0" 430 | babel-template "^6.22.0" 431 | 432 | babel-plugin-transform-es2015-modules-commonjs@^6.24.0: 433 | version "6.24.0" 434 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.0.tgz#e921aefb72c2cc26cb03d107626156413222134f" 435 | dependencies: 436 | babel-plugin-transform-strict-mode "^6.22.0" 437 | babel-runtime "^6.22.0" 438 | babel-template "^6.23.0" 439 | babel-types "^6.23.0" 440 | 441 | babel-plugin-transform-es2015-modules-systemjs@^6.22.0: 442 | version "6.23.0" 443 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.23.0.tgz#ae3469227ffac39b0310d90fec73bfdc4f6317b0" 444 | dependencies: 445 | babel-helper-hoist-variables "^6.22.0" 446 | babel-runtime "^6.22.0" 447 | babel-template "^6.23.0" 448 | 449 | babel-plugin-transform-es2015-modules-umd@^6.24.0: 450 | version "6.24.0" 451 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.0.tgz#fd5fa63521cae8d273927c3958afd7c067733450" 452 | dependencies: 453 | babel-plugin-transform-es2015-modules-amd "^6.24.0" 454 | babel-runtime "^6.22.0" 455 | babel-template "^6.23.0" 456 | 457 | babel-plugin-transform-es2015-object-super@^6.22.0: 458 | version "6.22.0" 459 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.22.0.tgz#daa60e114a042ea769dd53fe528fc82311eb98fc" 460 | dependencies: 461 | babel-helper-replace-supers "^6.22.0" 462 | babel-runtime "^6.22.0" 463 | 464 | babel-plugin-transform-es2015-parameters@^6.22.0: 465 | version "6.23.0" 466 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.23.0.tgz#3a2aabb70c8af945d5ce386f1a4250625a83ae3b" 467 | dependencies: 468 | babel-helper-call-delegate "^6.22.0" 469 | babel-helper-get-function-arity "^6.22.0" 470 | babel-runtime "^6.22.0" 471 | babel-template "^6.23.0" 472 | babel-traverse "^6.23.0" 473 | babel-types "^6.23.0" 474 | 475 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 476 | version "6.22.0" 477 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.22.0.tgz#8ba776e0affaa60bff21e921403b8a652a2ff723" 478 | dependencies: 479 | babel-runtime "^6.22.0" 480 | babel-types "^6.22.0" 481 | 482 | babel-plugin-transform-es2015-spread@^6.22.0: 483 | version "6.22.0" 484 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 485 | dependencies: 486 | babel-runtime "^6.22.0" 487 | 488 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 489 | version "6.22.0" 490 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.22.0.tgz#ab316829e866ee3f4b9eb96939757d19a5bc4593" 491 | dependencies: 492 | babel-helper-regex "^6.22.0" 493 | babel-runtime "^6.22.0" 494 | babel-types "^6.22.0" 495 | 496 | babel-plugin-transform-es2015-template-literals@^6.22.0: 497 | version "6.22.0" 498 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 499 | dependencies: 500 | babel-runtime "^6.22.0" 501 | 502 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 503 | version "6.23.0" 504 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 505 | dependencies: 506 | babel-runtime "^6.22.0" 507 | 508 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 509 | version "6.22.0" 510 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.22.0.tgz#8d9cc27e7ee1decfe65454fb986452a04a613d20" 511 | dependencies: 512 | babel-helper-regex "^6.22.0" 513 | babel-runtime "^6.22.0" 514 | regexpu-core "^2.0.0" 515 | 516 | babel-plugin-transform-regenerator@^6.22.0: 517 | version "6.22.0" 518 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.22.0.tgz#65740593a319c44522157538d690b84094617ea6" 519 | dependencies: 520 | regenerator-transform "0.9.8" 521 | 522 | babel-plugin-transform-strict-mode@^6.22.0: 523 | version "6.22.0" 524 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.22.0.tgz#e008df01340fdc87e959da65991b7e05970c8c7c" 525 | dependencies: 526 | babel-runtime "^6.22.0" 527 | babel-types "^6.22.0" 528 | 529 | babel-polyfill@^6.23.0: 530 | version "6.23.0" 531 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" 532 | dependencies: 533 | babel-runtime "^6.22.0" 534 | core-js "^2.4.0" 535 | regenerator-runtime "^0.10.0" 536 | 537 | babel-preset-es2015@^6.24.0: 538 | version "6.24.0" 539 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.0.tgz#c162d68b1932696e036cd3110dc1ccd303d2673a" 540 | dependencies: 541 | babel-plugin-check-es2015-constants "^6.22.0" 542 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 543 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 544 | babel-plugin-transform-es2015-block-scoping "^6.22.0" 545 | babel-plugin-transform-es2015-classes "^6.22.0" 546 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 547 | babel-plugin-transform-es2015-destructuring "^6.22.0" 548 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 549 | babel-plugin-transform-es2015-for-of "^6.22.0" 550 | babel-plugin-transform-es2015-function-name "^6.22.0" 551 | babel-plugin-transform-es2015-literals "^6.22.0" 552 | babel-plugin-transform-es2015-modules-amd "^6.24.0" 553 | babel-plugin-transform-es2015-modules-commonjs "^6.24.0" 554 | babel-plugin-transform-es2015-modules-systemjs "^6.22.0" 555 | babel-plugin-transform-es2015-modules-umd "^6.24.0" 556 | babel-plugin-transform-es2015-object-super "^6.22.0" 557 | babel-plugin-transform-es2015-parameters "^6.22.0" 558 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 559 | babel-plugin-transform-es2015-spread "^6.22.0" 560 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 561 | babel-plugin-transform-es2015-template-literals "^6.22.0" 562 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 563 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 564 | babel-plugin-transform-regenerator "^6.22.0" 565 | 566 | babel-preset-jest@^19.0.0: 567 | version "19.0.0" 568 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-19.0.0.tgz#22d67201d02324a195811288eb38294bb3cac396" 569 | dependencies: 570 | babel-plugin-jest-hoist "^19.0.0" 571 | 572 | babel-register@^6.24.0: 573 | version "6.24.0" 574 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.0.tgz#5e89f8463ba9970356d02eb07dabe3308b080cfd" 575 | dependencies: 576 | babel-core "^6.24.0" 577 | babel-runtime "^6.22.0" 578 | core-js "^2.4.0" 579 | home-or-tmp "^2.0.0" 580 | lodash "^4.2.0" 581 | mkdirp "^0.5.1" 582 | source-map-support "^0.4.2" 583 | 584 | babel-runtime@^6.18.0, babel-runtime@^6.22.0: 585 | version "6.23.0" 586 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 587 | dependencies: 588 | core-js "^2.4.0" 589 | regenerator-runtime "^0.10.0" 590 | 591 | babel-template@^6.16.0, babel-template@^6.22.0, babel-template@^6.23.0: 592 | version "6.23.0" 593 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.23.0.tgz#04d4f270adbb3aa704a8143ae26faa529238e638" 594 | dependencies: 595 | babel-runtime "^6.22.0" 596 | babel-traverse "^6.23.0" 597 | babel-types "^6.23.0" 598 | babylon "^6.11.0" 599 | lodash "^4.2.0" 600 | 601 | babel-traverse@^6.18.0, babel-traverse@^6.22.0, babel-traverse@^6.23.0, babel-traverse@^6.23.1: 602 | version "6.23.1" 603 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.23.1.tgz#d3cb59010ecd06a97d81310065f966b699e14f48" 604 | dependencies: 605 | babel-code-frame "^6.22.0" 606 | babel-messages "^6.23.0" 607 | babel-runtime "^6.22.0" 608 | babel-types "^6.23.0" 609 | babylon "^6.15.0" 610 | debug "^2.2.0" 611 | globals "^9.0.0" 612 | invariant "^2.2.0" 613 | lodash "^4.2.0" 614 | 615 | babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.22.0, babel-types@^6.23.0: 616 | version "6.23.0" 617 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.23.0.tgz#bb17179d7538bad38cd0c9e115d340f77e7e9acf" 618 | dependencies: 619 | babel-runtime "^6.22.0" 620 | esutils "^2.0.2" 621 | lodash "^4.2.0" 622 | to-fast-properties "^1.0.1" 623 | 624 | babylon@^6.11.0, babylon@^6.13.0, babylon@^6.15.0: 625 | version "6.16.1" 626 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.16.1.tgz#30c5a22f481978a9e7f8cdfdf496b11d94b404d3" 627 | 628 | balanced-match@^1.0.0: 629 | version "1.0.0" 630 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 631 | 632 | base-x@3.0.4: 633 | version "3.0.4" 634 | resolved "https://registry.yarnpkg.com/base-x/-/base-x-3.0.4.tgz#94c1788736da065edb1d68808869e357c977fa77" 635 | dependencies: 636 | safe-buffer "^5.0.1" 637 | 638 | base64-js@^1.0.2: 639 | version "1.2.0" 640 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1" 641 | 642 | bcrypt-pbkdf@^1.0.0: 643 | version "1.0.2" 644 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" 645 | dependencies: 646 | tweetnacl "^0.14.3" 647 | 648 | binary-extensions@^1.0.0: 649 | version "1.8.0" 650 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 651 | 652 | block-stream@*: 653 | version "0.0.9" 654 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 655 | dependencies: 656 | inherits "~2.0.0" 657 | 658 | boom@2.x.x: 659 | version "2.10.1" 660 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 661 | dependencies: 662 | hoek "2.x.x" 663 | 664 | brace-expansion@^1.0.0, brace-expansion@^1.1.7: 665 | version "1.1.11" 666 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 667 | dependencies: 668 | balanced-match "^1.0.0" 669 | concat-map "0.0.1" 670 | 671 | braces@^1.8.2: 672 | version "1.8.5" 673 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 674 | dependencies: 675 | expand-range "^1.8.1" 676 | preserve "^0.2.0" 677 | repeat-element "^1.1.2" 678 | 679 | browser-resolve@^1.11.2: 680 | version "1.11.2" 681 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 682 | dependencies: 683 | resolve "1.1.7" 684 | 685 | bser@1.0.2: 686 | version "1.0.2" 687 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 688 | dependencies: 689 | node-int64 "^0.4.0" 690 | 691 | bser@^2.0.0: 692 | version "2.0.0" 693 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 694 | dependencies: 695 | node-int64 "^0.4.0" 696 | 697 | buffer-shims@^1.0.0: 698 | version "1.0.0" 699 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 700 | 701 | buffer@^5.0.5: 702 | version "5.0.5" 703 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.0.5.tgz#35c9393244a90aff83581063d16f0882cecc9418" 704 | dependencies: 705 | base64-js "^1.0.2" 706 | ieee754 "^1.1.4" 707 | 708 | builtin-modules@^1.0.0: 709 | version "1.1.1" 710 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 711 | 712 | caller-path@^0.1.0: 713 | version "0.1.0" 714 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 715 | dependencies: 716 | callsites "^0.2.0" 717 | 718 | callsites@^0.2.0: 719 | version "0.2.0" 720 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 721 | 722 | callsites@^2.0.0: 723 | version "2.0.0" 724 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 725 | 726 | camelcase@^3.0.0: 727 | version "3.0.0" 728 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 729 | 730 | caseless@~0.12.0: 731 | version "0.12.0" 732 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 733 | 734 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 735 | version "1.1.3" 736 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 737 | dependencies: 738 | ansi-styles "^2.2.1" 739 | escape-string-regexp "^1.0.2" 740 | has-ansi "^2.0.0" 741 | strip-ansi "^3.0.0" 742 | supports-color "^2.0.0" 743 | 744 | chokidar@^1.6.1: 745 | version "1.6.1" 746 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 747 | dependencies: 748 | anymatch "^1.3.0" 749 | async-each "^1.0.0" 750 | glob-parent "^2.0.0" 751 | inherits "^2.0.1" 752 | is-binary-path "^1.0.0" 753 | is-glob "^2.0.0" 754 | path-is-absolute "^1.0.0" 755 | readdirp "^2.0.0" 756 | optionalDependencies: 757 | fsevents "^1.0.0" 758 | 759 | ci-info@^1.0.0: 760 | version "1.0.0" 761 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 762 | 763 | circular-json@^0.3.1: 764 | version "0.3.1" 765 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 766 | 767 | cli-cursor@^1.0.1: 768 | version "1.0.2" 769 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 770 | dependencies: 771 | restore-cursor "^1.0.1" 772 | 773 | cli-width@^2.0.0: 774 | version "2.1.0" 775 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 776 | 777 | cliui@^3.2.0: 778 | version "3.2.0" 779 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 780 | dependencies: 781 | string-width "^1.0.1" 782 | strip-ansi "^3.0.1" 783 | wrap-ansi "^2.0.0" 784 | 785 | co@^4.6.0: 786 | version "4.6.0" 787 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 788 | 789 | code-point-at@^1.0.0: 790 | version "1.1.0" 791 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 792 | 793 | color-convert@^1.0.0: 794 | version "1.9.0" 795 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 796 | dependencies: 797 | color-name "^1.1.1" 798 | 799 | color-name@^1.1.1: 800 | version "1.1.2" 801 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d" 802 | 803 | combined-stream@^1.0.5, combined-stream@~1.0.5: 804 | version "1.0.5" 805 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 806 | dependencies: 807 | delayed-stream "~1.0.0" 808 | 809 | commander@^2.8.1: 810 | version "2.9.0" 811 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 812 | dependencies: 813 | graceful-readlink ">= 1.0.0" 814 | 815 | commander@~2.20.0: 816 | version "2.20.0" 817 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422" 818 | 819 | concat-map@0.0.1: 820 | version "0.0.1" 821 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 822 | 823 | concat-stream@^1.4.6: 824 | version "1.6.0" 825 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 826 | dependencies: 827 | inherits "^2.0.3" 828 | readable-stream "^2.2.2" 829 | typedarray "^0.0.6" 830 | 831 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 832 | version "1.1.0" 833 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 834 | 835 | content-type-parser@^1.0.1: 836 | version "1.0.1" 837 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 838 | 839 | convert-source-map@^1.1.0: 840 | version "1.4.0" 841 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.4.0.tgz#e3dad195bf61bfe13a7a3c73e9876ec14a0268f3" 842 | 843 | core-js@^2.4.0: 844 | version "2.4.1" 845 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 846 | 847 | core-util-is@~1.0.0: 848 | version "1.0.2" 849 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 850 | 851 | cryptiles@2.x.x: 852 | version "2.0.5" 853 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 854 | dependencies: 855 | boom "2.x.x" 856 | 857 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 858 | version "0.3.2" 859 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 860 | 861 | "cssstyle@>= 0.2.37 < 0.3.0": 862 | version "0.2.37" 863 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 864 | dependencies: 865 | cssom "0.3.x" 866 | 867 | d@1: 868 | version "1.0.0" 869 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 870 | dependencies: 871 | es5-ext "^0.10.9" 872 | 873 | d@~0.1.1: 874 | version "0.1.1" 875 | resolved "https://registry.yarnpkg.com/d/-/d-0.1.1.tgz#da184c535d18d8ee7ba2aa229b914009fae11309" 876 | dependencies: 877 | es5-ext "~0.10.2" 878 | 879 | dashdash@^1.12.0: 880 | version "1.14.1" 881 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 882 | dependencies: 883 | assert-plus "^1.0.0" 884 | 885 | debug-log@^1.0.0: 886 | version "1.0.1" 887 | resolved "https://registry.yarnpkg.com/debug-log/-/debug-log-1.0.1.tgz#2307632d4c04382b8df8a32f70b895046d52745f" 888 | 889 | debug@^2.1.1, debug@^2.2.0: 890 | version "2.6.3" 891 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.3.tgz#0f7eb8c30965ec08c72accfa0130c8b79984141d" 892 | dependencies: 893 | ms "0.7.2" 894 | 895 | debug@~2.2.0: 896 | version "2.2.0" 897 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 898 | dependencies: 899 | ms "0.7.1" 900 | 901 | decamelize@^1.1.1: 902 | version "1.2.0" 903 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 904 | 905 | deep-extend@~0.4.0: 906 | version "0.4.1" 907 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 908 | 909 | deep-is@~0.1.3: 910 | version "0.1.3" 911 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 912 | 913 | default-require-extensions@^1.0.0: 914 | version "1.0.0" 915 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 916 | dependencies: 917 | strip-bom "^2.0.0" 918 | 919 | define-properties@^1.1.2: 920 | version "1.1.2" 921 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 922 | dependencies: 923 | foreach "^2.0.5" 924 | object-keys "^1.0.8" 925 | 926 | deglob@^2.1.0: 927 | version "2.1.0" 928 | resolved "https://registry.yarnpkg.com/deglob/-/deglob-2.1.0.tgz#4d44abe16ef32c779b4972bd141a80325029a14a" 929 | dependencies: 930 | find-root "^1.0.0" 931 | glob "^7.0.5" 932 | ignore "^3.0.9" 933 | pkg-config "^1.1.0" 934 | run-parallel "^1.1.2" 935 | uniq "^1.0.1" 936 | 937 | del@^2.0.2: 938 | version "2.2.2" 939 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 940 | dependencies: 941 | globby "^5.0.0" 942 | is-path-cwd "^1.0.0" 943 | is-path-in-cwd "^1.0.0" 944 | object-assign "^4.0.1" 945 | pify "^2.0.0" 946 | pinkie-promise "^2.0.0" 947 | rimraf "^2.2.8" 948 | 949 | delayed-stream@~1.0.0: 950 | version "1.0.0" 951 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 952 | 953 | delegates@^1.0.0: 954 | version "1.0.0" 955 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 956 | 957 | detect-indent@^4.0.0: 958 | version "4.0.0" 959 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 960 | dependencies: 961 | repeating "^2.0.0" 962 | 963 | diff@^3.0.0: 964 | version "3.5.0" 965 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" 966 | 967 | doctrine@^1.2.2: 968 | version "1.5.0" 969 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 970 | dependencies: 971 | esutils "^2.0.2" 972 | isarray "^1.0.0" 973 | 974 | ecc-jsbn@~0.1.1: 975 | version "0.1.2" 976 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" 977 | dependencies: 978 | jsbn "~0.1.0" 979 | safer-buffer "^2.1.0" 980 | 981 | "errno@>=0.1.1 <0.2.0-0": 982 | version "0.1.4" 983 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 984 | dependencies: 985 | prr "~0.0.0" 986 | 987 | error-ex@^1.2.0: 988 | version "1.3.1" 989 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 990 | dependencies: 991 | is-arrayish "^0.2.1" 992 | 993 | es-abstract@^1.7.0: 994 | version "1.7.0" 995 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.7.0.tgz#dfade774e01bfcd97f96180298c449c8623fb94c" 996 | dependencies: 997 | es-to-primitive "^1.1.1" 998 | function-bind "^1.1.0" 999 | is-callable "^1.1.3" 1000 | is-regex "^1.0.3" 1001 | 1002 | es-to-primitive@^1.1.1: 1003 | version "1.1.1" 1004 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 1005 | dependencies: 1006 | is-callable "^1.1.1" 1007 | is-date-object "^1.0.1" 1008 | is-symbol "^1.0.1" 1009 | 1010 | es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.11, es5-ext@~0.10.14, es5-ext@~0.10.2: 1011 | version "0.10.14" 1012 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.14.tgz#625bc9ab9cac0f6fb9dc271525823d1800b3d360" 1013 | dependencies: 1014 | es6-iterator "2" 1015 | es6-symbol "~3.1" 1016 | 1017 | es6-iterator@2, es6-iterator@^2.0.1: 1018 | version "2.0.1" 1019 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512" 1020 | dependencies: 1021 | d "1" 1022 | es5-ext "^0.10.14" 1023 | es6-symbol "^3.1" 1024 | 1025 | es6-map@^0.1.3: 1026 | version "0.1.4" 1027 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.4.tgz#a34b147be224773a4d7da8072794cefa3632b897" 1028 | dependencies: 1029 | d "~0.1.1" 1030 | es5-ext "~0.10.11" 1031 | es6-iterator "2" 1032 | es6-set "~0.1.3" 1033 | es6-symbol "~3.1.0" 1034 | event-emitter "~0.3.4" 1035 | 1036 | es6-set@~0.1.3: 1037 | version "0.1.4" 1038 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.4.tgz#9516b6761c2964b92ff479456233a247dc707ce8" 1039 | dependencies: 1040 | d "~0.1.1" 1041 | es5-ext "~0.10.11" 1042 | es6-iterator "2" 1043 | es6-symbol "3" 1044 | event-emitter "~0.3.4" 1045 | 1046 | es6-symbol@3, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.0: 1047 | version "3.1.1" 1048 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 1049 | dependencies: 1050 | d "1" 1051 | es5-ext "~0.10.14" 1052 | 1053 | es6-weak-map@^2.0.1: 1054 | version "2.0.2" 1055 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 1056 | dependencies: 1057 | d "1" 1058 | es5-ext "^0.10.14" 1059 | es6-iterator "^2.0.1" 1060 | es6-symbol "^3.1.1" 1061 | 1062 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1063 | version "1.0.5" 1064 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1065 | 1066 | escodegen@^1.6.1: 1067 | version "1.8.1" 1068 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 1069 | dependencies: 1070 | esprima "^2.7.1" 1071 | estraverse "^1.9.1" 1072 | esutils "^2.0.2" 1073 | optionator "^0.8.1" 1074 | optionalDependencies: 1075 | source-map "~0.2.0" 1076 | 1077 | escope@^3.6.0: 1078 | version "3.6.0" 1079 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1080 | dependencies: 1081 | es6-map "^0.1.3" 1082 | es6-weak-map "^2.0.1" 1083 | esrecurse "^4.1.0" 1084 | estraverse "^4.1.1" 1085 | 1086 | eslint-config-standard-jsx@3.3.0: 1087 | version "3.3.0" 1088 | resolved "https://registry.yarnpkg.com/eslint-config-standard-jsx/-/eslint-config-standard-jsx-3.3.0.tgz#cab0801a15a360bf63facb97ab22fbdd88d8a5e0" 1089 | 1090 | eslint-config-standard@7.0.1: 1091 | version "7.0.1" 1092 | resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-7.0.1.tgz#6cec96084de9ac862c33ccb953d13a7c59872342" 1093 | 1094 | eslint-plugin-promise@~3.4.0: 1095 | version "3.4.2" 1096 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.4.2.tgz#1be2793eafe2d18b5b123b8136c269f804fe7122" 1097 | 1098 | eslint-plugin-react@~6.9.0: 1099 | version "6.9.0" 1100 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-6.9.0.tgz#54c2e9906b76f9d10142030bdc34e9d6840a0bb2" 1101 | dependencies: 1102 | array.prototype.find "^2.0.1" 1103 | doctrine "^1.2.2" 1104 | jsx-ast-utils "^1.3.4" 1105 | 1106 | eslint-plugin-standard@~2.0.1: 1107 | version "2.0.1" 1108 | resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-2.0.1.tgz#3589699ff9c917f2c25f76a916687f641c369ff3" 1109 | 1110 | eslint@~3.15.0: 1111 | version "3.15.0" 1112 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.15.0.tgz#bdcc6a6c5ffe08160e7b93c066695362a91e30f2" 1113 | dependencies: 1114 | babel-code-frame "^6.16.0" 1115 | chalk "^1.1.3" 1116 | concat-stream "^1.4.6" 1117 | debug "^2.1.1" 1118 | doctrine "^1.2.2" 1119 | escope "^3.6.0" 1120 | espree "^3.4.0" 1121 | estraverse "^4.2.0" 1122 | esutils "^2.0.2" 1123 | file-entry-cache "^2.0.0" 1124 | glob "^7.0.3" 1125 | globals "^9.14.0" 1126 | ignore "^3.2.0" 1127 | imurmurhash "^0.1.4" 1128 | inquirer "^0.12.0" 1129 | is-my-json-valid "^2.10.0" 1130 | is-resolvable "^1.0.0" 1131 | js-yaml "^3.5.1" 1132 | json-stable-stringify "^1.0.0" 1133 | levn "^0.3.0" 1134 | lodash "^4.0.0" 1135 | mkdirp "^0.5.0" 1136 | natural-compare "^1.4.0" 1137 | optionator "^0.8.2" 1138 | path-is-inside "^1.0.1" 1139 | pluralize "^1.2.1" 1140 | progress "^1.1.8" 1141 | require-uncached "^1.0.2" 1142 | shelljs "^0.7.5" 1143 | strip-bom "^3.0.0" 1144 | strip-json-comments "~2.0.1" 1145 | table "^3.7.8" 1146 | text-table "~0.2.0" 1147 | user-home "^2.0.0" 1148 | 1149 | espree@^3.4.0: 1150 | version "3.4.0" 1151 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.0.tgz#41656fa5628e042878025ef467e78f125cb86e1d" 1152 | dependencies: 1153 | acorn "4.0.4" 1154 | acorn-jsx "^3.0.0" 1155 | 1156 | esprima@^2.7.1: 1157 | version "2.7.3" 1158 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1159 | 1160 | esprima@^4.0.0: 1161 | version "4.0.1" 1162 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 1163 | 1164 | esrecurse@^4.1.0: 1165 | version "4.1.0" 1166 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 1167 | dependencies: 1168 | estraverse "~4.1.0" 1169 | object-assign "^4.0.1" 1170 | 1171 | estraverse@^1.9.1: 1172 | version "1.9.3" 1173 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 1174 | 1175 | estraverse@^4.1.1, estraverse@^4.2.0: 1176 | version "4.2.0" 1177 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1178 | 1179 | estraverse@~4.1.0: 1180 | version "4.1.1" 1181 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 1182 | 1183 | esutils@^2.0.2: 1184 | version "2.0.2" 1185 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1186 | 1187 | event-emitter@~0.3.4: 1188 | version "0.3.5" 1189 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 1190 | dependencies: 1191 | d "1" 1192 | es5-ext "~0.10.14" 1193 | 1194 | exec-sh@^0.2.0: 1195 | version "0.2.0" 1196 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 1197 | dependencies: 1198 | merge "^1.1.3" 1199 | 1200 | exit-hook@^1.0.0: 1201 | version "1.1.1" 1202 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1203 | 1204 | expand-brackets@^0.1.4: 1205 | version "0.1.5" 1206 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1207 | dependencies: 1208 | is-posix-bracket "^0.1.0" 1209 | 1210 | expand-range@^1.8.1: 1211 | version "1.8.2" 1212 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1213 | dependencies: 1214 | fill-range "^2.1.0" 1215 | 1216 | extend@~3.0.0: 1217 | version "3.0.2" 1218 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 1219 | 1220 | extglob@^0.3.1: 1221 | version "0.3.2" 1222 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1223 | dependencies: 1224 | is-extglob "^1.0.0" 1225 | 1226 | extsprintf@1.0.2: 1227 | version "1.0.2" 1228 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1229 | 1230 | fast-levenshtein@~2.0.4: 1231 | version "2.0.6" 1232 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1233 | 1234 | fb-watchman@^1.8.0: 1235 | version "1.9.2" 1236 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 1237 | dependencies: 1238 | bser "1.0.2" 1239 | 1240 | fb-watchman@^2.0.0: 1241 | version "2.0.0" 1242 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1243 | dependencies: 1244 | bser "^2.0.0" 1245 | 1246 | figures@^1.3.5: 1247 | version "1.7.0" 1248 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1249 | dependencies: 1250 | escape-string-regexp "^1.0.5" 1251 | object-assign "^4.1.0" 1252 | 1253 | file-entry-cache@^2.0.0: 1254 | version "2.0.0" 1255 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1256 | dependencies: 1257 | flat-cache "^1.2.1" 1258 | object-assign "^4.0.1" 1259 | 1260 | filename-regex@^2.0.0: 1261 | version "2.0.0" 1262 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 1263 | 1264 | fileset@^2.0.2: 1265 | version "2.0.3" 1266 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1267 | dependencies: 1268 | glob "^7.0.3" 1269 | minimatch "^3.0.3" 1270 | 1271 | fill-range@^2.1.0: 1272 | version "2.2.3" 1273 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1274 | dependencies: 1275 | is-number "^2.1.0" 1276 | isobject "^2.0.0" 1277 | randomatic "^1.1.3" 1278 | repeat-element "^1.1.2" 1279 | repeat-string "^1.5.2" 1280 | 1281 | find-root@^1.0.0: 1282 | version "1.0.0" 1283 | resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.0.0.tgz#962ff211aab25c6520feeeb8d6287f8f6e95807a" 1284 | 1285 | find-up@^1.0.0: 1286 | version "1.1.2" 1287 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1288 | dependencies: 1289 | path-exists "^2.0.0" 1290 | pinkie-promise "^2.0.0" 1291 | 1292 | find-up@^2.0.0, find-up@^2.1.0: 1293 | version "2.1.0" 1294 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1295 | dependencies: 1296 | locate-path "^2.0.0" 1297 | 1298 | flat-cache@^1.2.1: 1299 | version "1.2.2" 1300 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 1301 | dependencies: 1302 | circular-json "^0.3.1" 1303 | del "^2.0.2" 1304 | graceful-fs "^4.1.2" 1305 | write "^0.2.1" 1306 | 1307 | for-in@^1.0.1: 1308 | version "1.0.2" 1309 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1310 | 1311 | for-own@^0.1.4: 1312 | version "0.1.5" 1313 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1314 | dependencies: 1315 | for-in "^1.0.1" 1316 | 1317 | foreach@^2.0.5: 1318 | version "2.0.5" 1319 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1320 | 1321 | forever-agent@~0.6.1: 1322 | version "0.6.1" 1323 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1324 | 1325 | form-data@~2.1.1: 1326 | version "2.1.2" 1327 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 1328 | dependencies: 1329 | asynckit "^0.4.0" 1330 | combined-stream "^1.0.5" 1331 | mime-types "^2.1.12" 1332 | 1333 | fs-readdir-recursive@^1.0.0: 1334 | version "1.0.0" 1335 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1336 | 1337 | fs.realpath@^1.0.0: 1338 | version "1.0.0" 1339 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1340 | 1341 | fsevents@^1.0.0: 1342 | version "1.1.1" 1343 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" 1344 | dependencies: 1345 | nan "^2.3.0" 1346 | node-pre-gyp "^0.6.29" 1347 | 1348 | fstream-ignore@~1.0.5: 1349 | version "1.0.5" 1350 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1351 | dependencies: 1352 | fstream "^1.0.0" 1353 | inherits "2" 1354 | minimatch "^3.0.0" 1355 | 1356 | fstream@^1.0.0, fstream@^1.0.12, fstream@~1.0.10: 1357 | version "1.0.12" 1358 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.12.tgz#4e8ba8ee2d48be4f7d0de505455548eae5932045" 1359 | dependencies: 1360 | graceful-fs "^4.1.2" 1361 | inherits "~2.0.0" 1362 | mkdirp ">=0.5 0" 1363 | rimraf "2" 1364 | 1365 | function-bind@^1.0.2, function-bind@^1.1.0: 1366 | version "1.1.0" 1367 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1368 | 1369 | gauge@~2.7.1: 1370 | version "2.7.3" 1371 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.3.tgz#1c23855f962f17b3ad3d0dc7443f304542edfe09" 1372 | dependencies: 1373 | aproba "^1.0.3" 1374 | console-control-strings "^1.0.0" 1375 | has-unicode "^2.0.0" 1376 | object-assign "^4.1.0" 1377 | signal-exit "^3.0.0" 1378 | string-width "^1.0.1" 1379 | strip-ansi "^3.0.1" 1380 | wide-align "^1.1.0" 1381 | 1382 | generate-function@^2.0.0: 1383 | version "2.3.1" 1384 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.3.1.tgz#f069617690c10c868e73b8465746764f97c3479f" 1385 | dependencies: 1386 | is-property "^1.0.2" 1387 | 1388 | generate-object-property@^1.1.0: 1389 | version "1.2.0" 1390 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1391 | dependencies: 1392 | is-property "^1.0.0" 1393 | 1394 | get-caller-file@^1.0.1: 1395 | version "1.0.2" 1396 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1397 | 1398 | get-stdin@^5.0.1: 1399 | version "5.0.1" 1400 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 1401 | 1402 | getpass@^0.1.1: 1403 | version "0.1.7" 1404 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1405 | dependencies: 1406 | assert-plus "^1.0.0" 1407 | 1408 | glob-base@^0.3.0: 1409 | version "0.3.0" 1410 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1411 | dependencies: 1412 | glob-parent "^2.0.0" 1413 | is-glob "^2.0.0" 1414 | 1415 | glob-parent@^2.0.0: 1416 | version "2.0.0" 1417 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1418 | dependencies: 1419 | is-glob "^2.0.0" 1420 | 1421 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5: 1422 | version "7.1.1" 1423 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1424 | dependencies: 1425 | fs.realpath "^1.0.0" 1426 | inflight "^1.0.4" 1427 | inherits "2" 1428 | minimatch "^3.0.2" 1429 | once "^1.3.0" 1430 | path-is-absolute "^1.0.0" 1431 | 1432 | glob@^7.1.3: 1433 | version "7.1.4" 1434 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255" 1435 | dependencies: 1436 | fs.realpath "^1.0.0" 1437 | inflight "^1.0.4" 1438 | inherits "2" 1439 | minimatch "^3.0.4" 1440 | once "^1.3.0" 1441 | path-is-absolute "^1.0.0" 1442 | 1443 | globals@^9.0.0, globals@^9.14.0: 1444 | version "9.16.0" 1445 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.16.0.tgz#63e903658171ec2d9f51b1d31de5e2b8dc01fb80" 1446 | 1447 | globby@^5.0.0: 1448 | version "5.0.0" 1449 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1450 | dependencies: 1451 | array-union "^1.0.1" 1452 | arrify "^1.0.0" 1453 | glob "^7.0.3" 1454 | object-assign "^4.0.1" 1455 | pify "^2.0.0" 1456 | pinkie-promise "^2.0.0" 1457 | 1458 | graceful-fs@^4.1.2: 1459 | version "4.2.2" 1460 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.2.tgz#6f0952605d0140c1cfdb138ed005775b92d67b02" 1461 | 1462 | graceful-fs@^4.1.4, graceful-fs@^4.1.6: 1463 | version "4.1.11" 1464 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1465 | 1466 | "graceful-readlink@>= 1.0.0": 1467 | version "1.0.1" 1468 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1469 | 1470 | growly@^1.3.0: 1471 | version "1.3.0" 1472 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1473 | 1474 | handlebars@^4.0.3: 1475 | version "4.2.0" 1476 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.2.0.tgz#57ce8d2175b9bbb3d8b3cf3e4217b1aec8ddcb2e" 1477 | dependencies: 1478 | neo-async "^2.6.0" 1479 | optimist "^0.6.1" 1480 | source-map "^0.6.1" 1481 | optionalDependencies: 1482 | uglify-js "^3.1.4" 1483 | 1484 | har-schema@^1.0.5: 1485 | version "1.0.5" 1486 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1487 | 1488 | har-validator@~4.2.1: 1489 | version "4.2.1" 1490 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1491 | dependencies: 1492 | ajv "^4.9.1" 1493 | har-schema "^1.0.5" 1494 | 1495 | has-ansi@^2.0.0: 1496 | version "2.0.0" 1497 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1498 | dependencies: 1499 | ansi-regex "^2.0.0" 1500 | 1501 | has-flag@^1.0.0: 1502 | version "1.0.0" 1503 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1504 | 1505 | has-unicode@^2.0.0: 1506 | version "2.0.1" 1507 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1508 | 1509 | has@^1.0.1: 1510 | version "1.0.1" 1511 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1512 | dependencies: 1513 | function-bind "^1.0.2" 1514 | 1515 | hawk@~3.1.3: 1516 | version "3.1.3" 1517 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1518 | dependencies: 1519 | boom "2.x.x" 1520 | cryptiles "2.x.x" 1521 | hoek "2.x.x" 1522 | sntp "1.x.x" 1523 | 1524 | hoek@2.x.x: 1525 | version "2.16.3" 1526 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1527 | 1528 | home-or-tmp@^2.0.0: 1529 | version "2.0.0" 1530 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1531 | dependencies: 1532 | os-homedir "^1.0.0" 1533 | os-tmpdir "^1.0.1" 1534 | 1535 | hosted-git-info@^2.1.4: 1536 | version "2.2.0" 1537 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.2.0.tgz#7a0d097863d886c0fabbdcd37bf1758d8becf8a5" 1538 | 1539 | html-encoding-sniffer@^1.0.1: 1540 | version "1.0.1" 1541 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 1542 | dependencies: 1543 | whatwg-encoding "^1.0.1" 1544 | 1545 | http-signature@~1.1.0: 1546 | version "1.1.1" 1547 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1548 | dependencies: 1549 | assert-plus "^0.2.0" 1550 | jsprim "^1.2.2" 1551 | sshpk "^1.7.0" 1552 | 1553 | iconv-lite@0.4.13: 1554 | version "0.4.13" 1555 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1556 | 1557 | ieee754@^1.1.4: 1558 | version "1.1.8" 1559 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 1560 | 1561 | ignore@^3.0.9, ignore@^3.2.0: 1562 | version "3.2.5" 1563 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.5.tgz#6437903354653e32ebbf562c45e68e4922a95df6" 1564 | 1565 | imurmurhash@^0.1.4: 1566 | version "0.1.4" 1567 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1568 | 1569 | inflight@^1.0.4: 1570 | version "1.0.6" 1571 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1572 | dependencies: 1573 | once "^1.3.0" 1574 | wrappy "1" 1575 | 1576 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1: 1577 | version "2.0.4" 1578 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1579 | 1580 | ini@~1.3.0: 1581 | version "1.3.4" 1582 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1583 | 1584 | inquirer@^0.12.0: 1585 | version "0.12.0" 1586 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 1587 | dependencies: 1588 | ansi-escapes "^1.1.0" 1589 | ansi-regex "^2.0.0" 1590 | chalk "^1.0.0" 1591 | cli-cursor "^1.0.1" 1592 | cli-width "^2.0.0" 1593 | figures "^1.3.5" 1594 | lodash "^4.3.0" 1595 | readline2 "^1.0.1" 1596 | run-async "^0.1.0" 1597 | rx-lite "^3.1.2" 1598 | string-width "^1.0.1" 1599 | strip-ansi "^3.0.0" 1600 | through "^2.3.6" 1601 | 1602 | interpret@^1.0.0: 1603 | version "1.0.1" 1604 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.1.tgz#d579fb7f693b858004947af39fa0db49f795602c" 1605 | 1606 | invariant@^2.2.0: 1607 | version "2.2.2" 1608 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1609 | dependencies: 1610 | loose-envify "^1.0.0" 1611 | 1612 | invert-kv@^1.0.0: 1613 | version "1.0.0" 1614 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1615 | 1616 | is-arrayish@^0.2.1: 1617 | version "0.2.1" 1618 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1619 | 1620 | is-binary-path@^1.0.0: 1621 | version "1.0.1" 1622 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1623 | dependencies: 1624 | binary-extensions "^1.0.0" 1625 | 1626 | is-buffer@^1.0.2: 1627 | version "1.1.5" 1628 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1629 | 1630 | is-builtin-module@^1.0.0: 1631 | version "1.0.0" 1632 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1633 | dependencies: 1634 | builtin-modules "^1.0.0" 1635 | 1636 | is-callable@^1.1.1, is-callable@^1.1.3: 1637 | version "1.1.3" 1638 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1639 | 1640 | is-ci@^1.0.9: 1641 | version "1.0.10" 1642 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1643 | dependencies: 1644 | ci-info "^1.0.0" 1645 | 1646 | is-date-object@^1.0.1: 1647 | version "1.0.1" 1648 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1649 | 1650 | is-dotfile@^1.0.0: 1651 | version "1.0.2" 1652 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1653 | 1654 | is-equal-shallow@^0.1.3: 1655 | version "0.1.3" 1656 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1657 | dependencies: 1658 | is-primitive "^2.0.0" 1659 | 1660 | is-extendable@^0.1.1: 1661 | version "0.1.1" 1662 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1663 | 1664 | is-extglob@^1.0.0: 1665 | version "1.0.0" 1666 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1667 | 1668 | is-finite@^1.0.0: 1669 | version "1.0.2" 1670 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1671 | dependencies: 1672 | number-is-nan "^1.0.0" 1673 | 1674 | is-fullwidth-code-point@^1.0.0: 1675 | version "1.0.0" 1676 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1677 | dependencies: 1678 | number-is-nan "^1.0.0" 1679 | 1680 | is-fullwidth-code-point@^2.0.0: 1681 | version "2.0.0" 1682 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1683 | 1684 | is-glob@^2.0.0, is-glob@^2.0.1: 1685 | version "2.0.1" 1686 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1687 | dependencies: 1688 | is-extglob "^1.0.0" 1689 | 1690 | is-my-ip-valid@^1.0.0: 1691 | version "1.0.0" 1692 | resolved "https://registry.yarnpkg.com/is-my-ip-valid/-/is-my-ip-valid-1.0.0.tgz#7b351b8e8edd4d3995d4d066680e664d94696824" 1693 | 1694 | is-my-json-valid@^2.10.0: 1695 | version "2.20.0" 1696 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.20.0.tgz#1345a6fca3e8daefc10d0fa77067f54cedafd59a" 1697 | dependencies: 1698 | generate-function "^2.0.0" 1699 | generate-object-property "^1.1.0" 1700 | is-my-ip-valid "^1.0.0" 1701 | jsonpointer "^4.0.0" 1702 | xtend "^4.0.0" 1703 | 1704 | is-number@^2.0.2, is-number@^2.1.0: 1705 | version "2.1.0" 1706 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1707 | dependencies: 1708 | kind-of "^3.0.2" 1709 | 1710 | is-path-cwd@^1.0.0: 1711 | version "1.0.0" 1712 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1713 | 1714 | is-path-in-cwd@^1.0.0: 1715 | version "1.0.0" 1716 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1717 | dependencies: 1718 | is-path-inside "^1.0.0" 1719 | 1720 | is-path-inside@^1.0.0: 1721 | version "1.0.0" 1722 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1723 | dependencies: 1724 | path-is-inside "^1.0.1" 1725 | 1726 | is-posix-bracket@^0.1.0: 1727 | version "0.1.1" 1728 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1729 | 1730 | is-primitive@^2.0.0: 1731 | version "2.0.0" 1732 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1733 | 1734 | is-property@^1.0.0, is-property@^1.0.2: 1735 | version "1.0.2" 1736 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1737 | 1738 | is-regex@^1.0.3: 1739 | version "1.0.4" 1740 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 1741 | dependencies: 1742 | has "^1.0.1" 1743 | 1744 | is-resolvable@^1.0.0: 1745 | version "1.0.0" 1746 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 1747 | dependencies: 1748 | tryit "^1.0.1" 1749 | 1750 | is-symbol@^1.0.1: 1751 | version "1.0.1" 1752 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 1753 | 1754 | is-typedarray@~1.0.0: 1755 | version "1.0.0" 1756 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1757 | 1758 | is-utf8@^0.2.0: 1759 | version "0.2.1" 1760 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1761 | 1762 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1763 | version "1.0.0" 1764 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1765 | 1766 | isexe@^1.1.1: 1767 | version "1.1.2" 1768 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-1.1.2.tgz#36f3e22e60750920f5e7241a476a8c6a42275ad0" 1769 | 1770 | isobject@^2.0.0: 1771 | version "2.1.0" 1772 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1773 | dependencies: 1774 | isarray "1.0.0" 1775 | 1776 | isstream@~0.1.2: 1777 | version "0.1.2" 1778 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1779 | 1780 | istanbul-api@^1.1.0-alpha.1: 1781 | version "1.1.1" 1782 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.1.tgz#d36e2f1560d1a43ce304c4ff7338182de61c8f73" 1783 | dependencies: 1784 | async "^2.1.4" 1785 | fileset "^2.0.2" 1786 | istanbul-lib-coverage "^1.0.0" 1787 | istanbul-lib-hook "^1.0.0" 1788 | istanbul-lib-instrument "^1.3.0" 1789 | istanbul-lib-report "^1.0.0-alpha.3" 1790 | istanbul-lib-source-maps "^1.1.0" 1791 | istanbul-reports "^1.0.0" 1792 | js-yaml "^3.7.0" 1793 | mkdirp "^0.5.1" 1794 | once "^1.4.0" 1795 | 1796 | istanbul-lib-coverage@^1.0.0, istanbul-lib-coverage@^1.0.0-alpha, istanbul-lib-coverage@^1.0.0-alpha.0: 1797 | version "1.0.1" 1798 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.0.1.tgz#f263efb519c051c5f1f3343034fc40e7b43ff212" 1799 | 1800 | istanbul-lib-hook@^1.0.0: 1801 | version "1.0.0" 1802 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.0.tgz#fc5367ee27f59268e8f060b0c7aaf051d9c425c5" 1803 | dependencies: 1804 | append-transform "^0.4.0" 1805 | 1806 | istanbul-lib-instrument@^1.1.1, istanbul-lib-instrument@^1.3.0, istanbul-lib-instrument@^1.4.2: 1807 | version "1.4.2" 1808 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.4.2.tgz#0e2fdfac93c1dabf2e31578637dc78a19089f43e" 1809 | dependencies: 1810 | babel-generator "^6.18.0" 1811 | babel-template "^6.16.0" 1812 | babel-traverse "^6.18.0" 1813 | babel-types "^6.18.0" 1814 | babylon "^6.13.0" 1815 | istanbul-lib-coverage "^1.0.0" 1816 | semver "^5.3.0" 1817 | 1818 | istanbul-lib-report@^1.0.0-alpha.3: 1819 | version "1.0.0-alpha.3" 1820 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.0.0-alpha.3.tgz#32d5f6ec7f33ca3a602209e278b2e6ff143498af" 1821 | dependencies: 1822 | async "^1.4.2" 1823 | istanbul-lib-coverage "^1.0.0-alpha" 1824 | mkdirp "^0.5.1" 1825 | path-parse "^1.0.5" 1826 | rimraf "^2.4.3" 1827 | supports-color "^3.1.2" 1828 | 1829 | istanbul-lib-source-maps@^1.1.0: 1830 | version "1.1.0" 1831 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.1.0.tgz#9d429218f35b823560ea300a96ff0c3bbdab785f" 1832 | dependencies: 1833 | istanbul-lib-coverage "^1.0.0-alpha.0" 1834 | mkdirp "^0.5.1" 1835 | rimraf "^2.4.4" 1836 | source-map "^0.5.3" 1837 | 1838 | istanbul-reports@^1.0.0: 1839 | version "1.0.1" 1840 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.0.1.tgz#9a17176bc4a6cbebdae52b2f15961d52fa623fbc" 1841 | dependencies: 1842 | handlebars "^4.0.3" 1843 | 1844 | jest-changed-files@^19.0.2: 1845 | version "19.0.2" 1846 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-19.0.2.tgz#16c54c84c3270be408e06d2e8af3f3e37a885824" 1847 | 1848 | jest-cli@^19.0.2: 1849 | version "19.0.2" 1850 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-19.0.2.tgz#cc3620b62acac5f2d93a548cb6ef697d4ec85443" 1851 | dependencies: 1852 | ansi-escapes "^1.4.0" 1853 | callsites "^2.0.0" 1854 | chalk "^1.1.1" 1855 | graceful-fs "^4.1.6" 1856 | is-ci "^1.0.9" 1857 | istanbul-api "^1.1.0-alpha.1" 1858 | istanbul-lib-coverage "^1.0.0" 1859 | istanbul-lib-instrument "^1.1.1" 1860 | jest-changed-files "^19.0.2" 1861 | jest-config "^19.0.2" 1862 | jest-environment-jsdom "^19.0.2" 1863 | jest-haste-map "^19.0.0" 1864 | jest-jasmine2 "^19.0.2" 1865 | jest-message-util "^19.0.0" 1866 | jest-regex-util "^19.0.0" 1867 | jest-resolve-dependencies "^19.0.0" 1868 | jest-runtime "^19.0.2" 1869 | jest-snapshot "^19.0.2" 1870 | jest-util "^19.0.2" 1871 | micromatch "^2.3.11" 1872 | node-notifier "^5.0.1" 1873 | slash "^1.0.0" 1874 | string-length "^1.0.1" 1875 | throat "^3.0.0" 1876 | which "^1.1.1" 1877 | worker-farm "^1.3.1" 1878 | yargs "^6.3.0" 1879 | 1880 | jest-config@^19.0.2: 1881 | version "19.0.2" 1882 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-19.0.2.tgz#1b9bd2db0ddd16df61c2b10a54009e1768da6411" 1883 | dependencies: 1884 | chalk "^1.1.1" 1885 | jest-environment-jsdom "^19.0.2" 1886 | jest-environment-node "^19.0.2" 1887 | jest-jasmine2 "^19.0.2" 1888 | jest-regex-util "^19.0.0" 1889 | jest-resolve "^19.0.2" 1890 | jest-validate "^19.0.2" 1891 | pretty-format "^19.0.0" 1892 | 1893 | jest-diff@^19.0.0: 1894 | version "19.0.0" 1895 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-19.0.0.tgz#d1563cfc56c8b60232988fbc05d4d16ed90f063c" 1896 | dependencies: 1897 | chalk "^1.1.3" 1898 | diff "^3.0.0" 1899 | jest-matcher-utils "^19.0.0" 1900 | pretty-format "^19.0.0" 1901 | 1902 | jest-environment-jsdom@^19.0.2: 1903 | version "19.0.2" 1904 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-19.0.2.tgz#ceda859c4a4b94ab35e4de7dab54b926f293e4a3" 1905 | dependencies: 1906 | jest-mock "^19.0.0" 1907 | jest-util "^19.0.2" 1908 | jsdom "^9.11.0" 1909 | 1910 | jest-environment-node@^19.0.2: 1911 | version "19.0.2" 1912 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-19.0.2.tgz#6e84079db87ed21d0c05e1f9669f207b116fe99b" 1913 | dependencies: 1914 | jest-mock "^19.0.0" 1915 | jest-util "^19.0.2" 1916 | 1917 | jest-file-exists@^19.0.0: 1918 | version "19.0.0" 1919 | resolved "https://registry.yarnpkg.com/jest-file-exists/-/jest-file-exists-19.0.0.tgz#cca2e587a11ec92e24cfeab3f8a94d657f3fceb8" 1920 | 1921 | jest-haste-map@^19.0.0: 1922 | version "19.0.0" 1923 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-19.0.0.tgz#adde00b62b1fe04432a104b3254fc5004514b55e" 1924 | dependencies: 1925 | fb-watchman "^2.0.0" 1926 | graceful-fs "^4.1.6" 1927 | micromatch "^2.3.11" 1928 | sane "~1.5.0" 1929 | worker-farm "^1.3.1" 1930 | 1931 | jest-jasmine2@^19.0.2: 1932 | version "19.0.2" 1933 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-19.0.2.tgz#167991ac825981fb1a800af126e83afcca832c73" 1934 | dependencies: 1935 | graceful-fs "^4.1.6" 1936 | jest-matcher-utils "^19.0.0" 1937 | jest-matchers "^19.0.0" 1938 | jest-message-util "^19.0.0" 1939 | jest-snapshot "^19.0.2" 1940 | 1941 | jest-matcher-utils@^19.0.0: 1942 | version "19.0.0" 1943 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-19.0.0.tgz#5ecd9b63565d2b001f61fbf7ec4c7f537964564d" 1944 | dependencies: 1945 | chalk "^1.1.3" 1946 | pretty-format "^19.0.0" 1947 | 1948 | jest-matchers@^19.0.0: 1949 | version "19.0.0" 1950 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-19.0.0.tgz#c74ecc6ebfec06f384767ba4d6fa4a42d6755754" 1951 | dependencies: 1952 | jest-diff "^19.0.0" 1953 | jest-matcher-utils "^19.0.0" 1954 | jest-message-util "^19.0.0" 1955 | jest-regex-util "^19.0.0" 1956 | 1957 | jest-message-util@^19.0.0: 1958 | version "19.0.0" 1959 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-19.0.0.tgz#721796b89c0e4d761606f9ba8cb828a3b6246416" 1960 | dependencies: 1961 | chalk "^1.1.1" 1962 | micromatch "^2.3.11" 1963 | 1964 | jest-mock@^19.0.0: 1965 | version "19.0.0" 1966 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-19.0.0.tgz#67038641e9607ab2ce08ec4a8cb83aabbc899d01" 1967 | 1968 | jest-regex-util@^19.0.0: 1969 | version "19.0.0" 1970 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-19.0.0.tgz#b7754587112aede1456510bb1f6afe74ef598691" 1971 | 1972 | jest-resolve-dependencies@^19.0.0: 1973 | version "19.0.0" 1974 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-19.0.0.tgz#a741ad1fa094140e64ecf2642a504f834ece22ee" 1975 | dependencies: 1976 | jest-file-exists "^19.0.0" 1977 | 1978 | jest-resolve@^19.0.2: 1979 | version "19.0.2" 1980 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-19.0.2.tgz#5793575de4f07aec32f7d7ff0c6c181963eefb3c" 1981 | dependencies: 1982 | browser-resolve "^1.11.2" 1983 | jest-haste-map "^19.0.0" 1984 | resolve "^1.2.0" 1985 | 1986 | jest-runtime@^19.0.2: 1987 | version "19.0.2" 1988 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-19.0.2.tgz#d9a43e72de416d27d196fd9c7940d98fe6685407" 1989 | dependencies: 1990 | babel-core "^6.0.0" 1991 | babel-jest "^19.0.0" 1992 | babel-plugin-istanbul "^4.0.0" 1993 | chalk "^1.1.3" 1994 | graceful-fs "^4.1.6" 1995 | jest-config "^19.0.2" 1996 | jest-file-exists "^19.0.0" 1997 | jest-haste-map "^19.0.0" 1998 | jest-regex-util "^19.0.0" 1999 | jest-resolve "^19.0.2" 2000 | jest-util "^19.0.2" 2001 | json-stable-stringify "^1.0.1" 2002 | micromatch "^2.3.11" 2003 | strip-bom "3.0.0" 2004 | yargs "^6.3.0" 2005 | 2006 | jest-snapshot@^19.0.2: 2007 | version "19.0.2" 2008 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-19.0.2.tgz#9c1b216214f7187c38bfd5c70b1efab16b0ff50b" 2009 | dependencies: 2010 | chalk "^1.1.3" 2011 | jest-diff "^19.0.0" 2012 | jest-file-exists "^19.0.0" 2013 | jest-matcher-utils "^19.0.0" 2014 | jest-util "^19.0.2" 2015 | natural-compare "^1.4.0" 2016 | pretty-format "^19.0.0" 2017 | 2018 | jest-util@^19.0.2: 2019 | version "19.0.2" 2020 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-19.0.2.tgz#e0a0232a2ab9e6b2b53668bdb3534c2b5977ed41" 2021 | dependencies: 2022 | chalk "^1.1.1" 2023 | graceful-fs "^4.1.6" 2024 | jest-file-exists "^19.0.0" 2025 | jest-message-util "^19.0.0" 2026 | jest-mock "^19.0.0" 2027 | jest-validate "^19.0.2" 2028 | leven "^2.0.0" 2029 | mkdirp "^0.5.1" 2030 | 2031 | jest-validate@^19.0.2: 2032 | version "19.0.2" 2033 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-19.0.2.tgz#dc534df5f1278d5b63df32b14241d4dbf7244c0c" 2034 | dependencies: 2035 | chalk "^1.1.1" 2036 | jest-matcher-utils "^19.0.0" 2037 | leven "^2.0.0" 2038 | pretty-format "^19.0.0" 2039 | 2040 | jest@^19.0.2: 2041 | version "19.0.2" 2042 | resolved "https://registry.yarnpkg.com/jest/-/jest-19.0.2.tgz#b794faaf8ff461e7388f28beef559a54f20b2c10" 2043 | dependencies: 2044 | jest-cli "^19.0.2" 2045 | 2046 | js-sha3@^0.5.7: 2047 | version "0.5.7" 2048 | resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.5.7.tgz#0d4ffd8002d5333aabaf4a23eed2f6374c9f28e7" 2049 | 2050 | js-tokens@^3.0.0: 2051 | version "3.0.1" 2052 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 2053 | 2054 | js-yaml@^3.5.1, js-yaml@^3.7.0: 2055 | version "3.13.1" 2056 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" 2057 | dependencies: 2058 | argparse "^1.0.7" 2059 | esprima "^4.0.0" 2060 | 2061 | jsbn@~0.1.0: 2062 | version "0.1.1" 2063 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2064 | 2065 | jsdom@^9.11.0: 2066 | version "9.12.0" 2067 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 2068 | dependencies: 2069 | abab "^1.0.3" 2070 | acorn "^4.0.4" 2071 | acorn-globals "^3.1.0" 2072 | array-equal "^1.0.0" 2073 | content-type-parser "^1.0.1" 2074 | cssom ">= 0.3.2 < 0.4.0" 2075 | cssstyle ">= 0.2.37 < 0.3.0" 2076 | escodegen "^1.6.1" 2077 | html-encoding-sniffer "^1.0.1" 2078 | nwmatcher ">= 1.3.9 < 2.0.0" 2079 | parse5 "^1.5.1" 2080 | request "^2.79.0" 2081 | sax "^1.2.1" 2082 | symbol-tree "^3.2.1" 2083 | tough-cookie "^2.3.2" 2084 | webidl-conversions "^4.0.0" 2085 | whatwg-encoding "^1.0.1" 2086 | whatwg-url "^4.3.0" 2087 | xml-name-validator "^2.0.1" 2088 | 2089 | jsesc@^1.3.0: 2090 | version "1.3.0" 2091 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2092 | 2093 | jsesc@~0.5.0: 2094 | version "0.5.0" 2095 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2096 | 2097 | json-schema@0.2.3: 2098 | version "0.2.3" 2099 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2100 | 2101 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 2102 | version "1.0.1" 2103 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2104 | dependencies: 2105 | jsonify "~0.0.0" 2106 | 2107 | json-stringify-safe@~5.0.1: 2108 | version "5.0.1" 2109 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2110 | 2111 | json5@^0.5.0: 2112 | version "0.5.1" 2113 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2114 | 2115 | jsonify@~0.0.0: 2116 | version "0.0.0" 2117 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2118 | 2119 | jsonpointer@^4.0.0: 2120 | version "4.0.1" 2121 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 2122 | 2123 | jsprim@^1.2.2: 2124 | version "1.4.0" 2125 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 2126 | dependencies: 2127 | assert-plus "1.0.0" 2128 | extsprintf "1.0.2" 2129 | json-schema "0.2.3" 2130 | verror "1.3.6" 2131 | 2132 | jsx-ast-utils@^1.3.4: 2133 | version "1.4.0" 2134 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.4.0.tgz#5afe38868f56bc8cc7aeaef0100ba8c75bd12591" 2135 | dependencies: 2136 | object-assign "^4.1.0" 2137 | 2138 | kind-of@^3.0.2: 2139 | version "3.1.0" 2140 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 2141 | dependencies: 2142 | is-buffer "^1.0.2" 2143 | 2144 | lcid@^1.0.0: 2145 | version "1.0.0" 2146 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2147 | dependencies: 2148 | invert-kv "^1.0.0" 2149 | 2150 | leven@^2.0.0: 2151 | version "2.1.0" 2152 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2153 | 2154 | levn@^0.3.0, levn@~0.3.0: 2155 | version "0.3.0" 2156 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2157 | dependencies: 2158 | prelude-ls "~1.1.2" 2159 | type-check "~0.3.2" 2160 | 2161 | load-json-file@^1.0.0: 2162 | version "1.1.0" 2163 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2164 | dependencies: 2165 | graceful-fs "^4.1.2" 2166 | parse-json "^2.2.0" 2167 | pify "^2.0.0" 2168 | pinkie-promise "^2.0.0" 2169 | strip-bom "^2.0.0" 2170 | 2171 | load-json-file@^2.0.0: 2172 | version "2.0.0" 2173 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2174 | dependencies: 2175 | graceful-fs "^4.1.2" 2176 | parse-json "^2.2.0" 2177 | pify "^2.0.0" 2178 | strip-bom "^3.0.0" 2179 | 2180 | locate-path@^2.0.0: 2181 | version "2.0.0" 2182 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2183 | dependencies: 2184 | p-locate "^2.0.0" 2185 | path-exists "^3.0.0" 2186 | 2187 | lodash@^4.0.0, lodash@^4.14.0, lodash@^4.2.0, lodash@^4.3.0: 2188 | version "4.17.15" 2189 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" 2190 | 2191 | loose-envify@^1.0.0: 2192 | version "1.3.1" 2193 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2194 | dependencies: 2195 | js-tokens "^3.0.0" 2196 | 2197 | makeerror@1.0.x: 2198 | version "1.0.11" 2199 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2200 | dependencies: 2201 | tmpl "1.0.x" 2202 | 2203 | merge@^1.1.3: 2204 | version "1.2.1" 2205 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.1.tgz#38bebf80c3220a8a487b6fcfb3941bb11720c145" 2206 | 2207 | micromatch@^2.1.5, micromatch@^2.3.11: 2208 | version "2.3.11" 2209 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2210 | dependencies: 2211 | arr-diff "^2.0.0" 2212 | array-unique "^0.2.1" 2213 | braces "^1.8.2" 2214 | expand-brackets "^0.1.4" 2215 | extglob "^0.3.1" 2216 | filename-regex "^2.0.0" 2217 | is-extglob "^1.0.0" 2218 | is-glob "^2.0.1" 2219 | kind-of "^3.0.2" 2220 | normalize-path "^2.0.1" 2221 | object.omit "^2.0.0" 2222 | parse-glob "^3.0.4" 2223 | regex-cache "^0.4.2" 2224 | 2225 | mime-db@~1.26.0: 2226 | version "1.26.0" 2227 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.26.0.tgz#eaffcd0e4fc6935cf8134da246e2e6c35305adff" 2228 | 2229 | mime-types@^2.1.12, mime-types@~2.1.7: 2230 | version "2.1.14" 2231 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.14.tgz#f7ef7d97583fcaf3b7d282b6f8b5679dab1e94ee" 2232 | dependencies: 2233 | mime-db "~1.26.0" 2234 | 2235 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3: 2236 | version "3.0.3" 2237 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 2238 | dependencies: 2239 | brace-expansion "^1.0.0" 2240 | 2241 | minimatch@^3.0.4: 2242 | version "3.0.4" 2243 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2244 | dependencies: 2245 | brace-expansion "^1.1.7" 2246 | 2247 | minimist@0.0.8: 2248 | version "0.0.8" 2249 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2250 | 2251 | minimist@^1.1.0, minimist@^1.1.1, minimist@^1.2.0: 2252 | version "1.2.0" 2253 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2254 | 2255 | minimist@~0.0.1: 2256 | version "0.0.10" 2257 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 2258 | 2259 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1: 2260 | version "0.5.1" 2261 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2262 | dependencies: 2263 | minimist "0.0.8" 2264 | 2265 | ms@0.7.1: 2266 | version "0.7.1" 2267 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2268 | 2269 | ms@0.7.2: 2270 | version "0.7.2" 2271 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 2272 | 2273 | mute-stream@0.0.5: 2274 | version "0.0.5" 2275 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 2276 | 2277 | nan@^2.3.0: 2278 | version "2.5.1" 2279 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.5.1.tgz#d5b01691253326a97a2bbee9e61c55d8d60351e2" 2280 | 2281 | natural-compare@^1.4.0: 2282 | version "1.4.0" 2283 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2284 | 2285 | neo-async@^2.6.0: 2286 | version "2.6.1" 2287 | resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c" 2288 | 2289 | node-int64@^0.4.0: 2290 | version "0.4.0" 2291 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2292 | 2293 | node-notifier@^5.0.1: 2294 | version "5.0.2" 2295 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.0.2.tgz#4438449fe69e321f941cef943986b0797032701b" 2296 | dependencies: 2297 | growly "^1.3.0" 2298 | semver "^5.3.0" 2299 | shellwords "^0.1.0" 2300 | which "^1.2.12" 2301 | 2302 | node-pre-gyp@^0.6.29: 2303 | version "0.6.33" 2304 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.33.tgz#640ac55198f6a925972e0c16c4ac26a034d5ecc9" 2305 | dependencies: 2306 | mkdirp "~0.5.1" 2307 | nopt "~3.0.6" 2308 | npmlog "^4.0.1" 2309 | rc "~1.1.6" 2310 | request "^2.79.0" 2311 | rimraf "~2.5.4" 2312 | semver "~5.3.0" 2313 | tar "~2.2.1" 2314 | tar-pack "~3.3.0" 2315 | 2316 | nopt@~3.0.6: 2317 | version "3.0.6" 2318 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 2319 | dependencies: 2320 | abbrev "1" 2321 | 2322 | normalize-package-data@^2.3.2: 2323 | version "2.3.6" 2324 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.6.tgz#498fa420c96401f787402ba21e600def9f981fff" 2325 | dependencies: 2326 | hosted-git-info "^2.1.4" 2327 | is-builtin-module "^1.0.0" 2328 | semver "2 || 3 || 4 || 5" 2329 | validate-npm-package-license "^3.0.1" 2330 | 2331 | normalize-path@^2.0.1: 2332 | version "2.0.1" 2333 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 2334 | 2335 | npmlog@^4.0.1: 2336 | version "4.0.2" 2337 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" 2338 | dependencies: 2339 | are-we-there-yet "~1.1.2" 2340 | console-control-strings "~1.1.0" 2341 | gauge "~2.7.1" 2342 | set-blocking "~2.0.0" 2343 | 2344 | number-is-nan@^1.0.0: 2345 | version "1.0.1" 2346 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2347 | 2348 | "nwmatcher@>= 1.3.9 < 2.0.0": 2349 | version "1.3.9" 2350 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.3.9.tgz#8bab486ff7fa3dfd086656bbe8b17116d3692d2a" 2351 | 2352 | oauth-sign@~0.8.1: 2353 | version "0.8.2" 2354 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2355 | 2356 | object-assign@^4.0.1, object-assign@^4.1.0: 2357 | version "4.1.1" 2358 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2359 | 2360 | object-keys@^1.0.8: 2361 | version "1.0.11" 2362 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 2363 | 2364 | object.omit@^2.0.0: 2365 | version "2.0.1" 2366 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2367 | dependencies: 2368 | for-own "^0.1.4" 2369 | is-extendable "^0.1.1" 2370 | 2371 | once@^1.3.0, once@^1.4.0: 2372 | version "1.4.0" 2373 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2374 | dependencies: 2375 | wrappy "1" 2376 | 2377 | once@~1.3.3: 2378 | version "1.3.3" 2379 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 2380 | dependencies: 2381 | wrappy "1" 2382 | 2383 | onetime@^1.0.0: 2384 | version "1.1.0" 2385 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2386 | 2387 | optimist@^0.6.1: 2388 | version "0.6.1" 2389 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2390 | dependencies: 2391 | minimist "~0.0.1" 2392 | wordwrap "~0.0.2" 2393 | 2394 | optionator@^0.8.1, optionator@^0.8.2: 2395 | version "0.8.2" 2396 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2397 | dependencies: 2398 | deep-is "~0.1.3" 2399 | fast-levenshtein "~2.0.4" 2400 | levn "~0.3.0" 2401 | prelude-ls "~1.1.2" 2402 | type-check "~0.3.2" 2403 | wordwrap "~1.0.0" 2404 | 2405 | os-homedir@^1.0.0: 2406 | version "1.0.2" 2407 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2408 | 2409 | os-locale@^1.4.0: 2410 | version "1.4.0" 2411 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2412 | dependencies: 2413 | lcid "^1.0.0" 2414 | 2415 | os-tmpdir@^1.0.1: 2416 | version "1.0.2" 2417 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2418 | 2419 | output-file-sync@^1.1.0: 2420 | version "1.1.2" 2421 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2422 | dependencies: 2423 | graceful-fs "^4.1.4" 2424 | mkdirp "^0.5.1" 2425 | object-assign "^4.1.0" 2426 | 2427 | p-limit@^1.1.0: 2428 | version "1.1.0" 2429 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2430 | 2431 | p-locate@^2.0.0: 2432 | version "2.0.0" 2433 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2434 | dependencies: 2435 | p-limit "^1.1.0" 2436 | 2437 | parse-glob@^3.0.4: 2438 | version "3.0.4" 2439 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2440 | dependencies: 2441 | glob-base "^0.3.0" 2442 | is-dotfile "^1.0.0" 2443 | is-extglob "^1.0.0" 2444 | is-glob "^2.0.0" 2445 | 2446 | parse-json@^2.2.0: 2447 | version "2.2.0" 2448 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2449 | dependencies: 2450 | error-ex "^1.2.0" 2451 | 2452 | parse5@^1.5.1: 2453 | version "1.5.1" 2454 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 2455 | 2456 | path-exists@^2.0.0: 2457 | version "2.1.0" 2458 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2459 | dependencies: 2460 | pinkie-promise "^2.0.0" 2461 | 2462 | path-exists@^3.0.0: 2463 | version "3.0.0" 2464 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2465 | 2466 | path-is-absolute@^1.0.0: 2467 | version "1.0.1" 2468 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2469 | 2470 | path-is-inside@^1.0.1: 2471 | version "1.0.2" 2472 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2473 | 2474 | path-parse@^1.0.5: 2475 | version "1.0.5" 2476 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2477 | 2478 | path-type@^1.0.0: 2479 | version "1.1.0" 2480 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2481 | dependencies: 2482 | graceful-fs "^4.1.2" 2483 | pify "^2.0.0" 2484 | pinkie-promise "^2.0.0" 2485 | 2486 | performance-now@^0.2.0: 2487 | version "0.2.0" 2488 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2489 | 2490 | pify@^2.0.0: 2491 | version "2.3.0" 2492 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2493 | 2494 | pinkie-promise@^2.0.0: 2495 | version "2.0.1" 2496 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2497 | dependencies: 2498 | pinkie "^2.0.0" 2499 | 2500 | pinkie@^2.0.0: 2501 | version "2.0.4" 2502 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2503 | 2504 | pkg-conf@^2.0.0: 2505 | version "2.0.0" 2506 | resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-2.0.0.tgz#071c87650403bccfb9c627f58751bfe47c067279" 2507 | dependencies: 2508 | find-up "^2.0.0" 2509 | load-json-file "^2.0.0" 2510 | 2511 | pkg-config@^1.1.0: 2512 | version "1.1.1" 2513 | resolved "https://registry.yarnpkg.com/pkg-config/-/pkg-config-1.1.1.tgz#557ef22d73da3c8837107766c52eadabde298fe4" 2514 | dependencies: 2515 | debug-log "^1.0.0" 2516 | find-root "^1.0.0" 2517 | xtend "^4.0.1" 2518 | 2519 | pluralize@^1.2.1: 2520 | version "1.2.1" 2521 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 2522 | 2523 | prelude-ls@~1.1.2: 2524 | version "1.1.2" 2525 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2526 | 2527 | preserve@^0.2.0: 2528 | version "0.2.0" 2529 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2530 | 2531 | pretty-format@^19.0.0: 2532 | version "19.0.0" 2533 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-19.0.0.tgz#56530d32acb98a3fa4851c4e2b9d37b420684c84" 2534 | dependencies: 2535 | ansi-styles "^3.0.0" 2536 | 2537 | private@^0.1.6: 2538 | version "0.1.7" 2539 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2540 | 2541 | process-nextick-args@~1.0.6: 2542 | version "1.0.7" 2543 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2544 | 2545 | progress@^1.1.8: 2546 | version "1.1.8" 2547 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 2548 | 2549 | prr@~0.0.0: 2550 | version "0.0.0" 2551 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 2552 | 2553 | punycode@^1.4.1: 2554 | version "1.4.1" 2555 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2556 | 2557 | qs@~6.4.0: 2558 | version "6.4.0" 2559 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2560 | 2561 | randomatic@^1.1.3: 2562 | version "1.1.6" 2563 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 2564 | dependencies: 2565 | is-number "^2.0.2" 2566 | kind-of "^3.0.2" 2567 | 2568 | rc@~1.1.6: 2569 | version "1.1.7" 2570 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.7.tgz#c5ea564bb07aff9fd3a5b32e906c1d3a65940fea" 2571 | dependencies: 2572 | deep-extend "~0.4.0" 2573 | ini "~1.3.0" 2574 | minimist "^1.2.0" 2575 | strip-json-comments "~2.0.1" 2576 | 2577 | read-pkg-up@^1.0.1: 2578 | version "1.0.1" 2579 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2580 | dependencies: 2581 | find-up "^1.0.0" 2582 | read-pkg "^1.0.0" 2583 | 2584 | read-pkg@^1.0.0: 2585 | version "1.1.0" 2586 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2587 | dependencies: 2588 | load-json-file "^1.0.0" 2589 | normalize-package-data "^2.3.2" 2590 | path-type "^1.0.0" 2591 | 2592 | "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2, readable-stream@^2.2.2: 2593 | version "2.2.5" 2594 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.5.tgz#a0b187304e05bab01a4ce2b4cc9c607d5aa1d606" 2595 | dependencies: 2596 | buffer-shims "^1.0.0" 2597 | core-util-is "~1.0.0" 2598 | inherits "~2.0.1" 2599 | isarray "~1.0.0" 2600 | process-nextick-args "~1.0.6" 2601 | string_decoder "~0.10.x" 2602 | util-deprecate "~1.0.1" 2603 | 2604 | readable-stream@~2.1.4: 2605 | version "2.1.5" 2606 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" 2607 | dependencies: 2608 | buffer-shims "^1.0.0" 2609 | core-util-is "~1.0.0" 2610 | inherits "~2.0.1" 2611 | isarray "~1.0.0" 2612 | process-nextick-args "~1.0.6" 2613 | string_decoder "~0.10.x" 2614 | util-deprecate "~1.0.1" 2615 | 2616 | readdirp@^2.0.0: 2617 | version "2.1.0" 2618 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2619 | dependencies: 2620 | graceful-fs "^4.1.2" 2621 | minimatch "^3.0.2" 2622 | readable-stream "^2.0.2" 2623 | set-immediate-shim "^1.0.1" 2624 | 2625 | readline2@^1.0.1: 2626 | version "1.0.1" 2627 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 2628 | dependencies: 2629 | code-point-at "^1.0.0" 2630 | is-fullwidth-code-point "^1.0.0" 2631 | mute-stream "0.0.5" 2632 | 2633 | rechoir@^0.6.2: 2634 | version "0.6.2" 2635 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 2636 | dependencies: 2637 | resolve "^1.1.6" 2638 | 2639 | regenerate@^1.2.1: 2640 | version "1.3.2" 2641 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 2642 | 2643 | regenerator-runtime@^0.10.0: 2644 | version "0.10.3" 2645 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.3.tgz#8c4367a904b51ea62a908ac310bf99ff90a82a3e" 2646 | 2647 | regenerator-transform@0.9.8: 2648 | version "0.9.8" 2649 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.8.tgz#0f88bb2bc03932ddb7b6b7312e68078f01026d6c" 2650 | dependencies: 2651 | babel-runtime "^6.18.0" 2652 | babel-types "^6.19.0" 2653 | private "^0.1.6" 2654 | 2655 | regex-cache@^0.4.2: 2656 | version "0.4.3" 2657 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2658 | dependencies: 2659 | is-equal-shallow "^0.1.3" 2660 | is-primitive "^2.0.0" 2661 | 2662 | regexpu-core@^2.0.0: 2663 | version "2.0.0" 2664 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2665 | dependencies: 2666 | regenerate "^1.2.1" 2667 | regjsgen "^0.2.0" 2668 | regjsparser "^0.1.4" 2669 | 2670 | regjsgen@^0.2.0: 2671 | version "0.2.0" 2672 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2673 | 2674 | regjsparser@^0.1.4: 2675 | version "0.1.5" 2676 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2677 | dependencies: 2678 | jsesc "~0.5.0" 2679 | 2680 | repeat-element@^1.1.2: 2681 | version "1.1.2" 2682 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2683 | 2684 | repeat-string@^1.5.2: 2685 | version "1.6.1" 2686 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2687 | 2688 | repeating@^2.0.0: 2689 | version "2.0.1" 2690 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2691 | dependencies: 2692 | is-finite "^1.0.0" 2693 | 2694 | request@^2.79.0: 2695 | version "2.81.0" 2696 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2697 | dependencies: 2698 | aws-sign2 "~0.6.0" 2699 | aws4 "^1.2.1" 2700 | caseless "~0.12.0" 2701 | combined-stream "~1.0.5" 2702 | extend "~3.0.0" 2703 | forever-agent "~0.6.1" 2704 | form-data "~2.1.1" 2705 | har-validator "~4.2.1" 2706 | hawk "~3.1.3" 2707 | http-signature "~1.1.0" 2708 | is-typedarray "~1.0.0" 2709 | isstream "~0.1.2" 2710 | json-stringify-safe "~5.0.1" 2711 | mime-types "~2.1.7" 2712 | oauth-sign "~0.8.1" 2713 | performance-now "^0.2.0" 2714 | qs "~6.4.0" 2715 | safe-buffer "^5.0.1" 2716 | stringstream "~0.0.4" 2717 | tough-cookie "~2.3.0" 2718 | tunnel-agent "^0.6.0" 2719 | uuid "^3.0.0" 2720 | 2721 | require-directory@^2.1.1: 2722 | version "2.1.1" 2723 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2724 | 2725 | require-main-filename@^1.0.1: 2726 | version "1.0.1" 2727 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2728 | 2729 | require-uncached@^1.0.2: 2730 | version "1.0.3" 2731 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 2732 | dependencies: 2733 | caller-path "^0.1.0" 2734 | resolve-from "^1.0.0" 2735 | 2736 | resolve-from@^1.0.0: 2737 | version "1.0.1" 2738 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 2739 | 2740 | resolve@1.1.7: 2741 | version "1.1.7" 2742 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2743 | 2744 | resolve@^1.1.6, resolve@^1.2.0: 2745 | version "1.3.2" 2746 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.2.tgz#1f0442c9e0cbb8136e87b9305f932f46c7f28235" 2747 | dependencies: 2748 | path-parse "^1.0.5" 2749 | 2750 | restore-cursor@^1.0.1: 2751 | version "1.0.1" 2752 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 2753 | dependencies: 2754 | exit-hook "^1.0.0" 2755 | onetime "^1.0.0" 2756 | 2757 | rimraf@2: 2758 | version "2.7.1" 2759 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" 2760 | dependencies: 2761 | glob "^7.1.3" 2762 | 2763 | rimraf@^2.2.8, rimraf@^2.4.3, rimraf@^2.4.4, rimraf@~2.5.1, rimraf@~2.5.4: 2764 | version "2.5.4" 2765 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 2766 | dependencies: 2767 | glob "^7.0.5" 2768 | 2769 | run-async@^0.1.0: 2770 | version "0.1.0" 2771 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 2772 | dependencies: 2773 | once "^1.3.0" 2774 | 2775 | run-parallel@^1.1.2: 2776 | version "1.1.6" 2777 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.6.tgz#29003c9a2163e01e2d2dfc90575f2c6c1d61a039" 2778 | 2779 | rx-lite@^3.1.2: 2780 | version "3.1.2" 2781 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 2782 | 2783 | safe-buffer@^5.0.1: 2784 | version "5.0.1" 2785 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 2786 | 2787 | safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: 2788 | version "2.1.2" 2789 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2790 | 2791 | sane@~1.5.0: 2792 | version "1.5.0" 2793 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.5.0.tgz#a4adeae764d048621ecb27d5f9ecf513101939f3" 2794 | dependencies: 2795 | anymatch "^1.3.0" 2796 | exec-sh "^0.2.0" 2797 | fb-watchman "^1.8.0" 2798 | minimatch "^3.0.2" 2799 | minimist "^1.1.1" 2800 | walker "~1.0.5" 2801 | watch "~0.10.0" 2802 | 2803 | sax@^1.2.1: 2804 | version "1.2.2" 2805 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.2.tgz#fd8631a23bc7826bef5d871bdb87378c95647828" 2806 | 2807 | "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@~5.3.0: 2808 | version "5.3.0" 2809 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2810 | 2811 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2812 | version "2.0.0" 2813 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2814 | 2815 | set-immediate-shim@^1.0.1: 2816 | version "1.0.1" 2817 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2818 | 2819 | shelljs@^0.7.5: 2820 | version "0.7.7" 2821 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.7.tgz#b2f5c77ef97148f4b4f6e22682e10bba8667cff1" 2822 | dependencies: 2823 | glob "^7.0.0" 2824 | interpret "^1.0.0" 2825 | rechoir "^0.6.2" 2826 | 2827 | shellwords@^0.1.0: 2828 | version "0.1.0" 2829 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.0.tgz#66afd47b6a12932d9071cbfd98a52e785cd0ba14" 2830 | 2831 | signal-exit@^3.0.0: 2832 | version "3.0.2" 2833 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2834 | 2835 | slash@^1.0.0: 2836 | version "1.0.0" 2837 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2838 | 2839 | slice-ansi@0.0.4: 2840 | version "0.0.4" 2841 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 2842 | 2843 | sntp@1.x.x: 2844 | version "1.0.9" 2845 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2846 | dependencies: 2847 | hoek "2.x.x" 2848 | 2849 | source-map-support@^0.4.2: 2850 | version "0.4.12" 2851 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.12.tgz#f47d02bf01efaf0c160d3a37d038401b92b1867e" 2852 | dependencies: 2853 | source-map "^0.5.6" 2854 | 2855 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6: 2856 | version "0.5.6" 2857 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 2858 | 2859 | source-map@^0.6.1, source-map@~0.6.1: 2860 | version "0.6.1" 2861 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2862 | 2863 | source-map@~0.2.0: 2864 | version "0.2.0" 2865 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 2866 | dependencies: 2867 | amdefine ">=0.0.4" 2868 | 2869 | spdx-correct@~1.0.0: 2870 | version "1.0.2" 2871 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2872 | dependencies: 2873 | spdx-license-ids "^1.0.2" 2874 | 2875 | spdx-expression-parse@~1.0.0: 2876 | version "1.0.4" 2877 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2878 | 2879 | spdx-license-ids@^1.0.2: 2880 | version "1.2.2" 2881 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2882 | 2883 | sprintf-js@~1.0.2: 2884 | version "1.0.3" 2885 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2886 | 2887 | sshpk@^1.7.0: 2888 | version "1.16.1" 2889 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" 2890 | dependencies: 2891 | asn1 "~0.2.3" 2892 | assert-plus "^1.0.0" 2893 | bcrypt-pbkdf "^1.0.0" 2894 | dashdash "^1.12.0" 2895 | ecc-jsbn "~0.1.1" 2896 | getpass "^0.1.1" 2897 | jsbn "~0.1.0" 2898 | safer-buffer "^2.0.2" 2899 | tweetnacl "~0.14.0" 2900 | 2901 | standard-engine@~5.4.0: 2902 | version "5.4.0" 2903 | resolved "https://registry.yarnpkg.com/standard-engine/-/standard-engine-5.4.0.tgz#e0e86959ea0786425d3383e40c1bf70d2f985579" 2904 | dependencies: 2905 | deglob "^2.1.0" 2906 | get-stdin "^5.0.1" 2907 | home-or-tmp "^2.0.0" 2908 | minimist "^1.1.0" 2909 | pkg-conf "^2.0.0" 2910 | 2911 | standard@^9.0.1: 2912 | version "9.0.1" 2913 | resolved "https://registry.yarnpkg.com/standard/-/standard-9.0.1.tgz#c053e9009bb1a8b4c6b03bf12df4784185bb5899" 2914 | dependencies: 2915 | eslint "~3.15.0" 2916 | eslint-config-standard "7.0.1" 2917 | eslint-config-standard-jsx "3.3.0" 2918 | eslint-plugin-promise "~3.4.0" 2919 | eslint-plugin-react "~6.9.0" 2920 | eslint-plugin-standard "~2.0.1" 2921 | standard-engine "~5.4.0" 2922 | 2923 | string-length@^1.0.1: 2924 | version "1.0.1" 2925 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 2926 | dependencies: 2927 | strip-ansi "^3.0.0" 2928 | 2929 | string-width@^1.0.1, string-width@^1.0.2: 2930 | version "1.0.2" 2931 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2932 | dependencies: 2933 | code-point-at "^1.0.0" 2934 | is-fullwidth-code-point "^1.0.0" 2935 | strip-ansi "^3.0.0" 2936 | 2937 | string-width@^2.0.0: 2938 | version "2.0.0" 2939 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 2940 | dependencies: 2941 | is-fullwidth-code-point "^2.0.0" 2942 | strip-ansi "^3.0.0" 2943 | 2944 | string_decoder@~0.10.x: 2945 | version "0.10.31" 2946 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 2947 | 2948 | stringstream@~0.0.4: 2949 | version "0.0.6" 2950 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.6.tgz#7880225b0d4ad10e30927d167a1d6f2fd3b33a72" 2951 | 2952 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2953 | version "3.0.1" 2954 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2955 | dependencies: 2956 | ansi-regex "^2.0.0" 2957 | 2958 | strip-bom@3.0.0, strip-bom@^3.0.0: 2959 | version "3.0.0" 2960 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2961 | 2962 | strip-bom@^2.0.0: 2963 | version "2.0.0" 2964 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2965 | dependencies: 2966 | is-utf8 "^0.2.0" 2967 | 2968 | strip-json-comments@~2.0.1: 2969 | version "2.0.1" 2970 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2971 | 2972 | supports-color@^2.0.0: 2973 | version "2.0.0" 2974 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2975 | 2976 | supports-color@^3.1.2: 2977 | version "3.2.3" 2978 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 2979 | dependencies: 2980 | has-flag "^1.0.0" 2981 | 2982 | symbol-tree@^3.2.1: 2983 | version "3.2.2" 2984 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 2985 | 2986 | table@^3.7.8: 2987 | version "3.8.3" 2988 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 2989 | dependencies: 2990 | ajv "^4.7.0" 2991 | ajv-keywords "^1.0.0" 2992 | chalk "^1.1.1" 2993 | lodash "^4.0.0" 2994 | slice-ansi "0.0.4" 2995 | string-width "^2.0.0" 2996 | 2997 | tar-pack@~3.3.0: 2998 | version "3.3.0" 2999 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae" 3000 | dependencies: 3001 | debug "~2.2.0" 3002 | fstream "~1.0.10" 3003 | fstream-ignore "~1.0.5" 3004 | once "~1.3.3" 3005 | readable-stream "~2.1.4" 3006 | rimraf "~2.5.1" 3007 | tar "~2.2.1" 3008 | uid-number "~0.0.6" 3009 | 3010 | tar@~2.2.1: 3011 | version "2.2.2" 3012 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.2.tgz#0ca8848562c7299b8b446ff6a4d60cdbb23edc40" 3013 | dependencies: 3014 | block-stream "*" 3015 | fstream "^1.0.12" 3016 | inherits "2" 3017 | 3018 | test-exclude@^4.0.0: 3019 | version "4.0.0" 3020 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.0.0.tgz#0ddc0100b8ae7e88b34eb4fd98a907e961991900" 3021 | dependencies: 3022 | arrify "^1.0.1" 3023 | micromatch "^2.3.11" 3024 | object-assign "^4.1.0" 3025 | read-pkg-up "^1.0.1" 3026 | require-main-filename "^1.0.1" 3027 | 3028 | text-table@~0.2.0: 3029 | version "0.2.0" 3030 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3031 | 3032 | throat@^3.0.0: 3033 | version "3.0.0" 3034 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.0.0.tgz#e7c64c867cbb3845f10877642f7b60055b8ec0d6" 3035 | 3036 | through@^2.3.6: 3037 | version "2.3.8" 3038 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3039 | 3040 | tmpl@1.0.x: 3041 | version "1.0.4" 3042 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 3043 | 3044 | to-fast-properties@^1.0.1: 3045 | version "1.0.2" 3046 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 3047 | 3048 | tough-cookie@^2.3.2, tough-cookie@~2.3.0: 3049 | version "2.3.4" 3050 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655" 3051 | dependencies: 3052 | punycode "^1.4.1" 3053 | 3054 | tr46@~0.0.3: 3055 | version "0.0.3" 3056 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 3057 | 3058 | trim-right@^1.0.1: 3059 | version "1.0.1" 3060 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3061 | 3062 | tryit@^1.0.1: 3063 | version "1.0.3" 3064 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3065 | 3066 | tunnel-agent@^0.6.0: 3067 | version "0.6.0" 3068 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3069 | dependencies: 3070 | safe-buffer "^5.0.1" 3071 | 3072 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3073 | version "0.14.5" 3074 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3075 | 3076 | type-check@~0.3.2: 3077 | version "0.3.2" 3078 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3079 | dependencies: 3080 | prelude-ls "~1.1.2" 3081 | 3082 | typedarray@^0.0.6: 3083 | version "0.0.6" 3084 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3085 | 3086 | uglify-js@^3.1.4: 3087 | version "3.6.0" 3088 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.6.0.tgz#704681345c53a8b2079fb6cec294b05ead242ff5" 3089 | dependencies: 3090 | commander "~2.20.0" 3091 | source-map "~0.6.1" 3092 | 3093 | uid-number@~0.0.6: 3094 | version "0.0.6" 3095 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3096 | 3097 | uniq@^1.0.1: 3098 | version "1.0.1" 3099 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" 3100 | 3101 | user-home@^1.1.1: 3102 | version "1.1.1" 3103 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3104 | 3105 | user-home@^2.0.0: 3106 | version "2.0.0" 3107 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 3108 | dependencies: 3109 | os-homedir "^1.0.0" 3110 | 3111 | util-deprecate@~1.0.1: 3112 | version "1.0.2" 3113 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3114 | 3115 | uuid@^3.0.0: 3116 | version "3.0.1" 3117 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 3118 | 3119 | v8flags@^2.0.10: 3120 | version "2.0.11" 3121 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.0.11.tgz#bca8f30f0d6d60612cc2c00641e6962d42ae6881" 3122 | dependencies: 3123 | user-home "^1.1.1" 3124 | 3125 | validate-npm-package-license@^3.0.1: 3126 | version "3.0.1" 3127 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3128 | dependencies: 3129 | spdx-correct "~1.0.0" 3130 | spdx-expression-parse "~1.0.0" 3131 | 3132 | verror@1.3.6: 3133 | version "1.3.6" 3134 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3135 | dependencies: 3136 | extsprintf "1.0.2" 3137 | 3138 | walker@~1.0.5: 3139 | version "1.0.7" 3140 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 3141 | dependencies: 3142 | makeerror "1.0.x" 3143 | 3144 | watch@~0.10.0: 3145 | version "0.10.0" 3146 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 3147 | 3148 | webidl-conversions@^3.0.0: 3149 | version "3.0.1" 3150 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 3151 | 3152 | webidl-conversions@^4.0.0: 3153 | version "4.0.1" 3154 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.1.tgz#8015a17ab83e7e1b311638486ace81da6ce206a0" 3155 | 3156 | whatwg-encoding@^1.0.1: 3157 | version "1.0.1" 3158 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 3159 | dependencies: 3160 | iconv-lite "0.4.13" 3161 | 3162 | whatwg-url@^4.3.0: 3163 | version "4.6.0" 3164 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.6.0.tgz#ef98da442273be04cf9632e176f257d2395a1ae4" 3165 | dependencies: 3166 | tr46 "~0.0.3" 3167 | webidl-conversions "^3.0.0" 3168 | 3169 | which-module@^1.0.0: 3170 | version "1.0.0" 3171 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3172 | 3173 | which@^1.1.1, which@^1.2.12: 3174 | version "1.2.12" 3175 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.12.tgz#de67b5e450269f194909ef23ece4ebe416fa1192" 3176 | dependencies: 3177 | isexe "^1.1.1" 3178 | 3179 | wide-align@^1.1.0: 3180 | version "1.1.0" 3181 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 3182 | dependencies: 3183 | string-width "^1.0.1" 3184 | 3185 | wordwrap@~0.0.2: 3186 | version "0.0.3" 3187 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3188 | 3189 | wordwrap@~1.0.0: 3190 | version "1.0.0" 3191 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3192 | 3193 | worker-farm@^1.3.1: 3194 | version "1.3.1" 3195 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.3.1.tgz#4333112bb49b17aa050b87895ca6b2cacf40e5ff" 3196 | dependencies: 3197 | errno ">=0.1.1 <0.2.0-0" 3198 | xtend ">=4.0.0 <4.1.0-0" 3199 | 3200 | wrap-ansi@^2.0.0: 3201 | version "2.1.0" 3202 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3203 | dependencies: 3204 | string-width "^1.0.1" 3205 | strip-ansi "^3.0.1" 3206 | 3207 | wrappy@1: 3208 | version "1.0.2" 3209 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3210 | 3211 | write@^0.2.1: 3212 | version "0.2.1" 3213 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3214 | dependencies: 3215 | mkdirp "^0.5.1" 3216 | 3217 | xml-name-validator@^2.0.1: 3218 | version "2.0.1" 3219 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 3220 | 3221 | "xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0, xtend@^4.0.1: 3222 | version "4.0.2" 3223 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" 3224 | 3225 | y18n@^3.2.1: 3226 | version "3.2.1" 3227 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3228 | 3229 | yargs-parser@^4.2.0: 3230 | version "4.2.1" 3231 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" 3232 | dependencies: 3233 | camelcase "^3.0.0" 3234 | 3235 | yargs@^6.3.0: 3236 | version "6.6.0" 3237 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" 3238 | dependencies: 3239 | camelcase "^3.0.0" 3240 | cliui "^3.2.0" 3241 | decamelize "^1.1.1" 3242 | get-caller-file "^1.0.1" 3243 | os-locale "^1.4.0" 3244 | read-pkg-up "^1.0.1" 3245 | require-directory "^2.1.1" 3246 | require-main-filename "^1.0.1" 3247 | set-blocking "^2.0.0" 3248 | string-width "^1.0.2" 3249 | which-module "^1.0.0" 3250 | y18n "^3.2.1" 3251 | yargs-parser "^4.2.0" 3252 | --------------------------------------------------------------------------------