├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── __snapshots__ └── index.test.js.snap ├── index.js ├── index.test.js ├── package.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | 6 | # Runtime data 7 | pids 8 | *.pid 9 | *.seed 10 | 11 | # Directory for instrumented libs generated by jscoverage/JSCover 12 | lib-cov 13 | 14 | # Coverage directory used by tools like istanbul 15 | coverage 16 | 17 | # nyc test coverage 18 | .nyc_output 19 | 20 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 21 | .grunt 22 | 23 | # node-waf configuration 24 | .lock-wscript 25 | 26 | # Compiled binary addons (http://nodejs.org/api/addons.html) 27 | build/Release 28 | 29 | # Dependency directories 30 | node_modules 31 | jspm_packages 32 | 33 | # Optional npm cache directory 34 | .npm 35 | 36 | # Optional REPL history 37 | .node_repl_history 38 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | __snapshots__ 2 | index.test.js 3 | LICENSE 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | "node" 4 | 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Sergio Daniel Xalambrí 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Platzi Flavored Markdown 2 | This is the markdown parser used in the Platzi education platform editor. 3 | 4 | This version of Markdown support the usual Github Flavored Markdown and Youtube videos, emojis, figure wrapping images, `` tags, underlines, abbr and definition lists. 5 | 6 | ## How use it 7 | Install it with **npm**. 8 | 9 | ```bash 10 | npm i -S @platzi/markdown 11 | ``` 12 | 13 | Import it in your project. 14 | 15 | ```js 16 | import createParser from '@platzi/markdown'; 17 | ``` 18 | 19 | And the use it. 20 | 21 | ```js 22 | const parser = createParser(); 23 | const html = parser(`**this is my text in bold**`); 24 | ``` 25 | 26 | ## Contribute 27 | - Fork the project. 28 | - Modify `index.js`. 29 | - Run tests `npm t`. 30 | - Fix problems (or the test). 31 | 32 | ## Example Markdown 33 | ```markdown 34 | ![Platzi Logo](https://static.platzi.com/static/images/logos/platzi@2x.png) 35 | 36 | *[HTML]: Hyper Text Markup Language 37 | *[W3C]: World Wide Web Consortium 38 | 39 | # Heading 1 40 | Lorem **ipsum** dolor _sit_ ++amet++ :D. 41 | 42 | The HTML ==specification== is maintained by the W3C. 43 | 44 | - item 1 45 | - item 2 46 | - item 3 47 | 48 | Term 1 49 | ~ Definition 1 50 | 51 | Term 2 52 | ~ Definition 2a 53 | ~ Definition 2b 54 | 55 | @[youtube](ajLJOhf-WdA) 56 | ``` 57 | -------------------------------------------------------------------------------- /__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP 2 | 3 | exports[`Platzi Flavored Markdown parser Extra plugins test should break without an array as extra plugins 1`] = `"The parser extra plugins must be an array."`; 4 | 5 | exports[`Platzi Flavored Markdown parser Extra plugins test should work with extra plugins 1`] = ` 6 | "

Pythagoran theorem is a2+b2=c2.

7 |

Bayes theorem:

8 | PA|B=PB|APAPB 9 | " 10 | `; 11 | 12 | exports[`Platzi Flavored Markdown parser Options test should break without an object as options 1`] = `"The markdown parser options must be an object."`; 13 | 14 | exports[`Platzi Flavored Markdown parser Options test should work with options 1`] = ` 15 | "
\\"Platzi
16 |

Heading 1

17 |

Lorem ipsum dolor sit amet 😄.

18 |

The HTML specification is maintained by the W3C.

19 | 24 |
25 |
Term 1
26 |
Definition 1
27 |
Term 2
28 |
Definition 2a
29 |
Definition 2b
30 |
31 |
function greeting() {
32 | 	return 'hello world!';
33 | }
34 | 
35 |

36 |

37 |

platzi

38 | " 39 | `; 40 | 41 | exports[`Platzi Flavored Markdown parser should work without arguments 1`] = ` 42 | "
\\"Platzi
43 |

Heading 1

44 |

Lorem ipsum dolor sit amet 😄.

45 |

The HTML specification is maintained by the W3C.

46 | 51 |
52 |
Term 1
53 |
Definition 1
54 |
Term 2
55 |
Definition 2a
56 |
Definition 2b
57 |
58 |
function greeting() {
59 | 	return 'hello world!';
60 | }
61 | 
62 |

63 |

64 |

platzi

65 | " 66 | `; 67 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | const MarkdownIt = require('markdown-it') 2 | const emoji = require('markdown-it-emoji') 3 | const linkAttributes = require('markdown-it-link-attributes') 4 | const implicitFigures = require('markdown-it-implicit-figures') 5 | const mark = require('markdown-it-mark') 6 | const ins = require('markdown-it-ins') 7 | const abbr = require('markdown-it-abbr') 8 | const deflist = require('markdown-it-deflist') 9 | const video = require('markdown-it-video') 10 | // const podcast = require('markdown-it-podcast') 11 | 12 | function createParser(_options, _extraPlugins) { 13 | // default options 14 | var options 15 | if (typeof _options === 'undefined') { 16 | options = {} 17 | } else { 18 | options = _options 19 | } 20 | 21 | // default extra plugins 22 | var extraPlugins 23 | if (typeof _extraPlugins === 'undefined') { 24 | extraPlugins = [] 25 | } else { 26 | extraPlugins = _extraPlugins 27 | } 28 | 29 | // type validations 30 | if (typeof options !== 'object') { 31 | throw new TypeError('The markdown parser options must be an object.') 32 | } 33 | 34 | if (!Array.isArray(extraPlugins)) { 35 | throw new TypeError('The parser extra plugins must be an array.') 36 | } 37 | 38 | // Initialize the MD parser and apply plugins 39 | const parser = new MarkdownIt( 40 | Object.assign( 41 | { 42 | html: false, 43 | breaks: true, 44 | linkify: true, 45 | xhtmlOut: true, 46 | typographer: true, 47 | langPrefix: 'language-', 48 | }, 49 | options 50 | ) 51 | ) 52 | 53 | parser.use(emoji) 54 | // parser.use(checkbox); 55 | parser.use(linkAttributes, { 56 | attrs: { 57 | target: '_blank', 58 | rel: 'nofollow noopener', 59 | } 60 | }) 61 | parser.use(implicitFigures) 62 | parser.use(mark) 63 | parser.use(ins) 64 | parser.use(abbr) 65 | parser.use(deflist) 66 | parser.use(video, options.video || {}) 67 | // parser.use(podcast, options.podcast || {}) 68 | 69 | function applyPlugin(extraPlugin) { 70 | if (Array.isArray(extraPlugin)) { 71 | const plugin = extraPlugin[0] 72 | const config = extraPlugin[1] 73 | return parser.use(plugin, config || {}) 74 | } 75 | parser.use(extraPlugin) 76 | } 77 | 78 | // apply extra plugins 79 | extraPlugins.forEach(applyPlugin) 80 | 81 | function parse(html) { 82 | return parser.render(html) 83 | } 84 | 85 | return parse; 86 | } 87 | 88 | module.exports = createParser 89 | -------------------------------------------------------------------------------- /index.test.js: -------------------------------------------------------------------------------- 1 | const createParser = require('./index.js') 2 | const math = require('markdown-it-math') 3 | 4 | const markdown = `![Platzi Logo](https://static.platzi.com/static/images/logos/platzi@2x.png) 5 | 6 | *[HTML]: Hyper Text Markup Language 7 | *[W3C]: World Wide Web Consortium 8 | 9 | # Heading 1 10 | Lorem **ipsum** dolor _sit_ ++amet++ :D. 11 | 12 | The HTML ==specification== is maintained by the W3C. 13 | 14 | - \`item 1\` 15 | - item 2 16 | - item 3 17 | 18 | Term 1 19 | ~ Definition 1 20 | 21 | Term 2 22 | ~ Definition 2a 23 | ~ Definition 2b 24 | 25 | \`\`\`js 26 | function greeting() { 27 | return 'hello world!'; 28 | } 29 | \`\`\` 30 | 31 | @S[soundcloud](https://soundcloud.com/platziteam/la-historia-de-platzi) 32 | 33 | @[youtube](ajLJOhf-WdA) 34 | 35 | [platzi](http://platzi.com/) 36 | ` 37 | 38 | const markdownWithMath = `Pythagoran theorem is $$a^2 + b^2 = c^2$$. 39 | 40 | Bayes theorem: 41 | 42 | $$$ 43 | P(A | B) = (P(B | A)P(A)) / P(B) 44 | $$$` 45 | 46 | describe('Platzi Flavored Markdown parser', () => { 47 | it('should work without arguments', () => { 48 | expect(createParser()(markdown)).toMatchSnapshot() 49 | }) 50 | 51 | it('should have link with attr noopener', () => { 52 | const html = createParser()(markdown); 53 | expect(html.indexOf('rel="nofollow noopener"') !== -1).toBe(true); 54 | }) 55 | 56 | describe('Options test', () => { 57 | it('should work with options', () => { 58 | expect( 59 | createParser({ 60 | html: false, 61 | })(markdown) 62 | ).toMatchSnapshot() 63 | }) 64 | 65 | it('should break without an object as options', () => { 66 | expect(() => createParser('fake options')).toThrowErrorMatchingSnapshot() 67 | }) 68 | }) 69 | 70 | describe('Extra plugins test', () => { 71 | it('should work with extra plugins', () => { 72 | expect( 73 | createParser(undefined, [ 74 | math, 75 | [ 76 | math, 77 | { 78 | inlineOpen: '$$', 79 | }, 80 | ], 81 | ])(markdownWithMath) 82 | ).toMatchSnapshot() 83 | }) 84 | 85 | it('should break without an array as extra plugins', () => { 86 | expect(() => createParser(undefined, 'fake extra plugins')).toThrowErrorMatchingSnapshot() 87 | }) 88 | }) 89 | }) 90 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@platzi/markdown", 3 | "version": "1.3.4", 4 | "description": "Platzi Flavored Markdown parser", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "jest", 8 | "test:fix": "jest -u", 9 | "test:watch": "jest --watch", 10 | "test:report": "jest --coverage" 11 | }, 12 | "repository": { 13 | "type": "git", 14 | "url": "git+https://github.com/PlatziDev/markdown.git" 15 | }, 16 | "keywords": [ 17 | "markdown", 18 | "parser", 19 | "platzi", 20 | "markdown-it" 21 | ], 22 | "author": { 23 | "name": "Platzi Team", 24 | "email": "cursos@platzi.com", 25 | "url": "https://github.com/PlatziDev" 26 | }, 27 | "contributors": [ 28 | { 29 | "name": "Sergio Daniel Xalambrí", 30 | "email": "colo@platzi.com", 31 | "url": "https://sergio.xalambri.xyz/" 32 | }, 33 | { 34 | "name": "Diego Forero", 35 | "email": "gollum@platzi.com" 36 | } 37 | ], 38 | "license": "MIT", 39 | "bugs": { 40 | "url": "https://github.com/PlatziDev/markdown/issues" 41 | }, 42 | "homepage": "https://github.com/PlatziDev/markdown#readme", 43 | "devDependencies": { 44 | "jest": "20.0.4", 45 | "markdown-it-math": "^4.0.1" 46 | }, 47 | "dependencies": { 48 | "markdown-it": "8.3.1", 49 | "markdown-it-abbr": "1.0.4", 50 | "markdown-it-deflist": "2.0.2", 51 | "markdown-it-emoji": "1.3.0", 52 | "markdown-it-implicit-figures": "0.6.0", 53 | "markdown-it-ins": "2.0.0", 54 | "markdown-it-link-attributes": "^2.0.0", 55 | "markdown-it-mark": "2.0.0", 56 | "markdown-it-podcast": "^0.1.0", 57 | "markdown-it-video": "0.4.0" 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /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@^4.0.3, acorn@^4.0.4: 20 | version "4.0.11" 21 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.11.tgz#edcda3bd937e7556410d42ed5860f67399c794c0" 22 | 23 | ajv@^4.9.1: 24 | version "4.11.6" 25 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.6.tgz#947e93049790942b2a2d60a8289b28924d39f987" 26 | dependencies: 27 | co "^4.6.0" 28 | json-stable-stringify "^1.0.1" 29 | 30 | align-text@^0.1.1, align-text@^0.1.3: 31 | version "0.1.4" 32 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 33 | dependencies: 34 | kind-of "^3.0.2" 35 | longest "^1.0.1" 36 | repeat-string "^1.5.2" 37 | 38 | alter@~0.2.0: 39 | version "0.2.0" 40 | resolved "https://registry.yarnpkg.com/alter/-/alter-0.2.0.tgz#c7588808617572034aae62480af26b1d4d1cb3cd" 41 | dependencies: 42 | stable "~0.1.3" 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.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, ansi-regex@^2.1.1: 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.1.0" 62 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.1.0.tgz#09c202d5c917ec23188caa5c9cb9179cd9547750" 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.2" 81 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1" 82 | 83 | are-we-there-yet@~1.1.2: 84 | version "1.1.4" 85 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 86 | dependencies: 87 | delegates "^1.0.0" 88 | readable-stream "^2.0.6" 89 | 90 | argparse@^1.0.7: 91 | version "1.0.9" 92 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 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-unique@^0.2.1: 111 | version "0.2.1" 112 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 113 | 114 | arrify@^1.0.0, arrify@^1.0.1: 115 | version "1.0.1" 116 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 117 | 118 | ascii2mathml@^0.5.3: 119 | version "0.5.4" 120 | resolved "https://registry.yarnpkg.com/ascii2mathml/-/ascii2mathml-0.5.4.tgz#2f301784d21ed2b69bb657e3b5f4b5e33c3a84a1" 121 | dependencies: 122 | babel "^5.8.19" 123 | minimist "^1.1.2" 124 | 125 | asn1@~0.2.3: 126 | version "0.2.3" 127 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 128 | 129 | assert-plus@1.0.0, assert-plus@^1.0.0: 130 | version "1.0.0" 131 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 132 | 133 | assert-plus@^0.2.0: 134 | version "0.2.0" 135 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 136 | 137 | ast-traverse@~0.1.1: 138 | version "0.1.1" 139 | resolved "https://registry.yarnpkg.com/ast-traverse/-/ast-traverse-0.1.1.tgz#69cf2b8386f19dcda1bb1e05d68fe359d8897de6" 140 | 141 | ast-types@0.8.12: 142 | version "0.8.12" 143 | resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.8.12.tgz#a0d90e4351bb887716c83fd637ebf818af4adfcc" 144 | 145 | ast-types@0.9.6: 146 | version "0.9.6" 147 | resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.9.6.tgz#102c9e9e9005d3e7e3829bf0c4fa24ee862ee9b9" 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.0: 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.3.0" 159 | resolved "https://registry.yarnpkg.com/async/-/async-2.3.0.tgz#1013d1051047dd320fe24e494d5c66ecaf6147d9" 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-code-frame@^6.22.0: 176 | version "6.22.0" 177 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 178 | dependencies: 179 | chalk "^1.1.0" 180 | esutils "^2.0.2" 181 | js-tokens "^3.0.0" 182 | 183 | babel-core@^5.6.21: 184 | version "5.8.38" 185 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-5.8.38.tgz#1fcaee79d7e61b750b00b8e54f6dfc9d0af86558" 186 | dependencies: 187 | babel-plugin-constant-folding "^1.0.1" 188 | babel-plugin-dead-code-elimination "^1.0.2" 189 | babel-plugin-eval "^1.0.1" 190 | babel-plugin-inline-environment-variables "^1.0.1" 191 | babel-plugin-jscript "^1.0.4" 192 | babel-plugin-member-expression-literals "^1.0.1" 193 | babel-plugin-property-literals "^1.0.1" 194 | babel-plugin-proto-to-assign "^1.0.3" 195 | babel-plugin-react-constant-elements "^1.0.3" 196 | babel-plugin-react-display-name "^1.0.3" 197 | babel-plugin-remove-console "^1.0.1" 198 | babel-plugin-remove-debugger "^1.0.1" 199 | babel-plugin-runtime "^1.0.7" 200 | babel-plugin-undeclared-variables-check "^1.0.2" 201 | babel-plugin-undefined-to-void "^1.1.6" 202 | babylon "^5.8.38" 203 | bluebird "^2.9.33" 204 | chalk "^1.0.0" 205 | convert-source-map "^1.1.0" 206 | core-js "^1.0.0" 207 | debug "^2.1.1" 208 | detect-indent "^3.0.0" 209 | esutils "^2.0.0" 210 | fs-readdir-recursive "^0.1.0" 211 | globals "^6.4.0" 212 | home-or-tmp "^1.0.0" 213 | is-integer "^1.0.4" 214 | js-tokens "1.0.1" 215 | json5 "^0.4.0" 216 | lodash "^3.10.0" 217 | minimatch "^2.0.3" 218 | output-file-sync "^1.1.0" 219 | path-exists "^1.0.0" 220 | path-is-absolute "^1.0.0" 221 | private "^0.1.6" 222 | regenerator "0.8.40" 223 | regexpu "^1.3.0" 224 | repeating "^1.1.2" 225 | resolve "^1.1.6" 226 | shebang-regex "^1.0.0" 227 | slash "^1.0.0" 228 | source-map "^0.5.0" 229 | source-map-support "^0.2.10" 230 | to-fast-properties "^1.0.0" 231 | trim-right "^1.0.0" 232 | try-resolve "^1.0.0" 233 | 234 | babel-core@^6.0.0, babel-core@^6.24.1: 235 | version "6.24.1" 236 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" 237 | dependencies: 238 | babel-code-frame "^6.22.0" 239 | babel-generator "^6.24.1" 240 | babel-helpers "^6.24.1" 241 | babel-messages "^6.23.0" 242 | babel-register "^6.24.1" 243 | babel-runtime "^6.22.0" 244 | babel-template "^6.24.1" 245 | babel-traverse "^6.24.1" 246 | babel-types "^6.24.1" 247 | babylon "^6.11.0" 248 | convert-source-map "^1.1.0" 249 | debug "^2.1.1" 250 | json5 "^0.5.0" 251 | lodash "^4.2.0" 252 | minimatch "^3.0.2" 253 | path-is-absolute "^1.0.0" 254 | private "^0.1.6" 255 | slash "^1.0.0" 256 | source-map "^0.5.0" 257 | 258 | babel-generator@^6.18.0, babel-generator@^6.24.1: 259 | version "6.24.1" 260 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" 261 | dependencies: 262 | babel-messages "^6.23.0" 263 | babel-runtime "^6.22.0" 264 | babel-types "^6.24.1" 265 | detect-indent "^4.0.0" 266 | jsesc "^1.3.0" 267 | lodash "^4.2.0" 268 | source-map "^0.5.0" 269 | trim-right "^1.0.1" 270 | 271 | babel-helpers@^6.24.1: 272 | version "6.24.1" 273 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 274 | dependencies: 275 | babel-runtime "^6.22.0" 276 | babel-template "^6.24.1" 277 | 278 | babel-jest@^20.0.3: 279 | version "20.0.3" 280 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-20.0.3.tgz#e4a03b13dc10389e140fc645d09ffc4ced301671" 281 | dependencies: 282 | babel-core "^6.0.0" 283 | babel-plugin-istanbul "^4.0.0" 284 | babel-preset-jest "^20.0.3" 285 | 286 | babel-messages@^6.23.0: 287 | version "6.23.0" 288 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 289 | dependencies: 290 | babel-runtime "^6.22.0" 291 | 292 | babel-plugin-constant-folding@^1.0.1: 293 | version "1.0.1" 294 | resolved "https://registry.yarnpkg.com/babel-plugin-constant-folding/-/babel-plugin-constant-folding-1.0.1.tgz#8361d364c98e449c3692bdba51eff0844290aa8e" 295 | 296 | babel-plugin-dead-code-elimination@^1.0.2: 297 | version "1.0.2" 298 | resolved "https://registry.yarnpkg.com/babel-plugin-dead-code-elimination/-/babel-plugin-dead-code-elimination-1.0.2.tgz#5f7c451274dcd7cccdbfbb3e0b85dd28121f0f65" 299 | 300 | babel-plugin-eval@^1.0.1: 301 | version "1.0.1" 302 | resolved "https://registry.yarnpkg.com/babel-plugin-eval/-/babel-plugin-eval-1.0.1.tgz#a2faed25ce6be69ade4bfec263f70169195950da" 303 | 304 | babel-plugin-inline-environment-variables@^1.0.1: 305 | version "1.0.1" 306 | resolved "https://registry.yarnpkg.com/babel-plugin-inline-environment-variables/-/babel-plugin-inline-environment-variables-1.0.1.tgz#1f58ce91207ad6a826a8bf645fafe68ff5fe3ffe" 307 | 308 | babel-plugin-istanbul@^4.0.0: 309 | version "4.1.4" 310 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.4.tgz#18dde84bf3ce329fddf3f4103fae921456d8e587" 311 | dependencies: 312 | find-up "^2.1.0" 313 | istanbul-lib-instrument "^1.7.2" 314 | test-exclude "^4.1.1" 315 | 316 | babel-plugin-jest-hoist@^20.0.3: 317 | version "20.0.3" 318 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-20.0.3.tgz#afedc853bd3f8dc3548ea671fbe69d03cc2c1767" 319 | 320 | babel-plugin-jscript@^1.0.4: 321 | version "1.0.4" 322 | resolved "https://registry.yarnpkg.com/babel-plugin-jscript/-/babel-plugin-jscript-1.0.4.tgz#8f342c38276e87a47d5fa0a8bd3d5eb6ccad8fcc" 323 | 324 | babel-plugin-member-expression-literals@^1.0.1: 325 | version "1.0.1" 326 | resolved "https://registry.yarnpkg.com/babel-plugin-member-expression-literals/-/babel-plugin-member-expression-literals-1.0.1.tgz#cc5edb0faa8dc927170e74d6d1c02440021624d3" 327 | 328 | babel-plugin-property-literals@^1.0.1: 329 | version "1.0.1" 330 | resolved "https://registry.yarnpkg.com/babel-plugin-property-literals/-/babel-plugin-property-literals-1.0.1.tgz#0252301900192980b1c118efea48ce93aab83336" 331 | 332 | babel-plugin-proto-to-assign@^1.0.3: 333 | version "1.0.4" 334 | resolved "https://registry.yarnpkg.com/babel-plugin-proto-to-assign/-/babel-plugin-proto-to-assign-1.0.4.tgz#c49e7afd02f577bc4da05ea2df002250cf7cd123" 335 | dependencies: 336 | lodash "^3.9.3" 337 | 338 | babel-plugin-react-constant-elements@^1.0.3: 339 | version "1.0.3" 340 | resolved "https://registry.yarnpkg.com/babel-plugin-react-constant-elements/-/babel-plugin-react-constant-elements-1.0.3.tgz#946736e8378429cbc349dcff62f51c143b34e35a" 341 | 342 | babel-plugin-react-display-name@^1.0.3: 343 | version "1.0.3" 344 | resolved "https://registry.yarnpkg.com/babel-plugin-react-display-name/-/babel-plugin-react-display-name-1.0.3.tgz#754fe38926e8424a4e7b15ab6ea6139dee0514fc" 345 | 346 | babel-plugin-remove-console@^1.0.1: 347 | version "1.0.1" 348 | resolved "https://registry.yarnpkg.com/babel-plugin-remove-console/-/babel-plugin-remove-console-1.0.1.tgz#d8f24556c3a05005d42aaaafd27787f53ff013a7" 349 | 350 | babel-plugin-remove-debugger@^1.0.1: 351 | version "1.0.1" 352 | resolved "https://registry.yarnpkg.com/babel-plugin-remove-debugger/-/babel-plugin-remove-debugger-1.0.1.tgz#fd2ea3cd61a428ad1f3b9c89882ff4293e8c14c7" 353 | 354 | babel-plugin-runtime@^1.0.7: 355 | version "1.0.7" 356 | resolved "https://registry.yarnpkg.com/babel-plugin-runtime/-/babel-plugin-runtime-1.0.7.tgz#bf7c7d966dd56ecd5c17fa1cb253c9acb7e54aaf" 357 | 358 | babel-plugin-undeclared-variables-check@^1.0.2: 359 | version "1.0.2" 360 | resolved "https://registry.yarnpkg.com/babel-plugin-undeclared-variables-check/-/babel-plugin-undeclared-variables-check-1.0.2.tgz#5cf1aa539d813ff64e99641290af620965f65dee" 361 | dependencies: 362 | leven "^1.0.2" 363 | 364 | babel-plugin-undefined-to-void@^1.1.6: 365 | version "1.1.6" 366 | resolved "https://registry.yarnpkg.com/babel-plugin-undefined-to-void/-/babel-plugin-undefined-to-void-1.1.6.tgz#7f578ef8b78dfae6003385d8417a61eda06e2f81" 367 | 368 | babel-preset-jest@^20.0.3: 369 | version "20.0.3" 370 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-20.0.3.tgz#cbacaadecb5d689ca1e1de1360ebfc66862c178a" 371 | dependencies: 372 | babel-plugin-jest-hoist "^20.0.3" 373 | 374 | babel-register@^6.24.1: 375 | version "6.24.1" 376 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 377 | dependencies: 378 | babel-core "^6.24.1" 379 | babel-runtime "^6.22.0" 380 | core-js "^2.4.0" 381 | home-or-tmp "^2.0.0" 382 | lodash "^4.2.0" 383 | mkdirp "^0.5.1" 384 | source-map-support "^0.4.2" 385 | 386 | babel-runtime@^6.22.0: 387 | version "6.23.0" 388 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 389 | dependencies: 390 | core-js "^2.4.0" 391 | regenerator-runtime "^0.10.0" 392 | 393 | babel-template@^6.16.0, babel-template@^6.24.1: 394 | version "6.24.1" 395 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" 396 | dependencies: 397 | babel-runtime "^6.22.0" 398 | babel-traverse "^6.24.1" 399 | babel-types "^6.24.1" 400 | babylon "^6.11.0" 401 | lodash "^4.2.0" 402 | 403 | babel-traverse@^6.18.0, babel-traverse@^6.24.1: 404 | version "6.24.1" 405 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" 406 | dependencies: 407 | babel-code-frame "^6.22.0" 408 | babel-messages "^6.23.0" 409 | babel-runtime "^6.22.0" 410 | babel-types "^6.24.1" 411 | babylon "^6.15.0" 412 | debug "^2.2.0" 413 | globals "^9.0.0" 414 | invariant "^2.2.0" 415 | lodash "^4.2.0" 416 | 417 | babel-types@^6.18.0, babel-types@^6.24.1: 418 | version "6.24.1" 419 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" 420 | dependencies: 421 | babel-runtime "^6.22.0" 422 | esutils "^2.0.2" 423 | lodash "^4.2.0" 424 | to-fast-properties "^1.0.1" 425 | 426 | babel@^5.8.19: 427 | version "5.8.38" 428 | resolved "https://registry.yarnpkg.com/babel/-/babel-5.8.38.tgz#dfb087c22894917c576fb67ce9cf328d458629fb" 429 | dependencies: 430 | babel-core "^5.6.21" 431 | chokidar "^1.0.0" 432 | commander "^2.6.0" 433 | convert-source-map "^1.1.0" 434 | fs-readdir-recursive "^0.1.0" 435 | glob "^5.0.5" 436 | lodash "^3.2.0" 437 | output-file-sync "^1.1.0" 438 | path-exists "^1.0.0" 439 | path-is-absolute "^1.0.0" 440 | slash "^1.0.0" 441 | source-map "^0.5.0" 442 | 443 | babylon@^5.8.38: 444 | version "5.8.38" 445 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-5.8.38.tgz#ec9b120b11bf6ccd4173a18bf217e60b79859ffd" 446 | 447 | babylon@^6.11.0, babylon@^6.13.0, babylon@^6.15.0: 448 | version "6.16.1" 449 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.16.1.tgz#30c5a22f481978a9e7f8cdfdf496b11d94b404d3" 450 | 451 | balanced-match@^0.4.1: 452 | version "0.4.2" 453 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 454 | 455 | bcrypt-pbkdf@^1.0.0: 456 | version "1.0.1" 457 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 458 | dependencies: 459 | tweetnacl "^0.14.3" 460 | 461 | binary-extensions@^1.0.0: 462 | version "1.8.0" 463 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 464 | 465 | block-stream@*: 466 | version "0.0.9" 467 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 468 | dependencies: 469 | inherits "~2.0.0" 470 | 471 | bluebird@^2.9.33: 472 | version "2.11.0" 473 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-2.11.0.tgz#534b9033c022c9579c56ba3b3e5a5caafbb650e1" 474 | 475 | boom@2.x.x: 476 | version "2.10.1" 477 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 478 | dependencies: 479 | hoek "2.x.x" 480 | 481 | brace-expansion@^1.0.0: 482 | version "1.1.7" 483 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59" 484 | dependencies: 485 | balanced-match "^0.4.1" 486 | concat-map "0.0.1" 487 | 488 | braces@^1.8.2: 489 | version "1.8.5" 490 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 491 | dependencies: 492 | expand-range "^1.8.1" 493 | preserve "^0.2.0" 494 | repeat-element "^1.1.2" 495 | 496 | breakable@~1.0.0: 497 | version "1.0.0" 498 | resolved "https://registry.yarnpkg.com/breakable/-/breakable-1.0.0.tgz#784a797915a38ead27bad456b5572cb4bbaa78c1" 499 | 500 | browser-resolve@^1.11.2: 501 | version "1.11.2" 502 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 503 | dependencies: 504 | resolve "1.1.7" 505 | 506 | bser@1.0.2: 507 | version "1.0.2" 508 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 509 | dependencies: 510 | node-int64 "^0.4.0" 511 | 512 | bser@^2.0.0: 513 | version "2.0.0" 514 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 515 | dependencies: 516 | node-int64 "^0.4.0" 517 | 518 | builtin-modules@^1.0.0: 519 | version "1.1.1" 520 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 521 | 522 | callsites@^2.0.0: 523 | version "2.0.0" 524 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 525 | 526 | camelcase@^1.0.2, camelcase@^1.2.1: 527 | version "1.2.1" 528 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 529 | 530 | camelcase@^3.0.0: 531 | version "3.0.0" 532 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 533 | 534 | caseless@~0.12.0: 535 | version "0.12.0" 536 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 537 | 538 | center-align@^0.1.1: 539 | version "0.1.3" 540 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 541 | dependencies: 542 | align-text "^0.1.3" 543 | lazy-cache "^1.0.3" 544 | 545 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.3: 546 | version "1.1.3" 547 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 548 | dependencies: 549 | ansi-styles "^2.2.1" 550 | escape-string-regexp "^1.0.2" 551 | has-ansi "^2.0.0" 552 | strip-ansi "^3.0.0" 553 | supports-color "^2.0.0" 554 | 555 | chokidar@^1.0.0: 556 | version "1.7.0" 557 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 558 | dependencies: 559 | anymatch "^1.3.0" 560 | async-each "^1.0.0" 561 | glob-parent "^2.0.0" 562 | inherits "^2.0.1" 563 | is-binary-path "^1.0.0" 564 | is-glob "^2.0.0" 565 | path-is-absolute "^1.0.0" 566 | readdirp "^2.0.0" 567 | optionalDependencies: 568 | fsevents "^1.0.0" 569 | 570 | ci-info@^1.0.0: 571 | version "1.0.0" 572 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 573 | 574 | cliui@^2.1.0: 575 | version "2.1.0" 576 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 577 | dependencies: 578 | center-align "^0.1.1" 579 | right-align "^0.1.1" 580 | wordwrap "0.0.2" 581 | 582 | cliui@^3.2.0: 583 | version "3.2.0" 584 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 585 | dependencies: 586 | string-width "^1.0.1" 587 | strip-ansi "^3.0.1" 588 | wrap-ansi "^2.0.0" 589 | 590 | co@^4.6.0: 591 | version "4.6.0" 592 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 593 | 594 | code-point-at@^1.0.0: 595 | version "1.1.0" 596 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 597 | 598 | color-convert@^1.0.0: 599 | version "1.9.0" 600 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 601 | dependencies: 602 | color-name "^1.1.1" 603 | 604 | color-name@^1.1.1: 605 | version "1.1.2" 606 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d" 607 | 608 | combined-stream@^1.0.5, combined-stream@~1.0.5: 609 | version "1.0.5" 610 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 611 | dependencies: 612 | delayed-stream "~1.0.0" 613 | 614 | commander@^2.5.0, commander@^2.6.0: 615 | version "2.9.0" 616 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 617 | dependencies: 618 | graceful-readlink ">= 1.0.0" 619 | 620 | commoner@~0.10.3: 621 | version "0.10.8" 622 | resolved "https://registry.yarnpkg.com/commoner/-/commoner-0.10.8.tgz#34fc3672cd24393e8bb47e70caa0293811f4f2c5" 623 | dependencies: 624 | commander "^2.5.0" 625 | detective "^4.3.1" 626 | glob "^5.0.15" 627 | graceful-fs "^4.1.2" 628 | iconv-lite "^0.4.5" 629 | mkdirp "^0.5.0" 630 | private "^0.1.6" 631 | q "^1.1.2" 632 | recast "^0.11.17" 633 | 634 | concat-map@0.0.1: 635 | version "0.0.1" 636 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 637 | 638 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 639 | version "1.1.0" 640 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 641 | 642 | content-type-parser@^1.0.1: 643 | version "1.0.1" 644 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 645 | 646 | convert-source-map@^1.1.0, convert-source-map@^1.4.0: 647 | version "1.5.0" 648 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 649 | 650 | core-js@^1.0.0: 651 | version "1.2.7" 652 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 653 | 654 | core-js@^2.4.0: 655 | version "2.4.1" 656 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 657 | 658 | core-util-is@~1.0.0: 659 | version "1.0.2" 660 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 661 | 662 | cryptiles@2.x.x: 663 | version "2.0.5" 664 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 665 | dependencies: 666 | boom "2.x.x" 667 | 668 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 669 | version "0.3.2" 670 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 671 | 672 | "cssstyle@>= 0.2.37 < 0.3.0": 673 | version "0.2.37" 674 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 675 | dependencies: 676 | cssom "0.3.x" 677 | 678 | dashdash@^1.12.0: 679 | version "1.14.1" 680 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 681 | dependencies: 682 | assert-plus "^1.0.0" 683 | 684 | debug@^2.1.1, debug@^2.2.0, debug@^2.6.3: 685 | version "2.6.3" 686 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.3.tgz#0f7eb8c30965ec08c72accfa0130c8b79984141d" 687 | dependencies: 688 | ms "0.7.2" 689 | 690 | decamelize@^1.0.0, decamelize@^1.1.1: 691 | version "1.2.0" 692 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 693 | 694 | deep-extend@~0.4.0: 695 | version "0.4.2" 696 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 697 | 698 | deep-is@~0.1.3: 699 | version "0.1.3" 700 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 701 | 702 | default-require-extensions@^1.0.0: 703 | version "1.0.0" 704 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 705 | dependencies: 706 | strip-bom "^2.0.0" 707 | 708 | defined@^1.0.0: 709 | version "1.0.0" 710 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 711 | 712 | defs@~1.1.0: 713 | version "1.1.1" 714 | resolved "https://registry.yarnpkg.com/defs/-/defs-1.1.1.tgz#b22609f2c7a11ba7a3db116805c139b1caffa9d2" 715 | dependencies: 716 | alter "~0.2.0" 717 | ast-traverse "~0.1.1" 718 | breakable "~1.0.0" 719 | esprima-fb "~15001.1001.0-dev-harmony-fb" 720 | simple-fmt "~0.1.0" 721 | simple-is "~0.2.0" 722 | stringmap "~0.2.2" 723 | stringset "~0.2.1" 724 | tryor "~0.1.2" 725 | yargs "~3.27.0" 726 | 727 | delayed-stream@~1.0.0: 728 | version "1.0.0" 729 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 730 | 731 | delegates@^1.0.0: 732 | version "1.0.0" 733 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 734 | 735 | detect-indent@^3.0.0: 736 | version "3.0.1" 737 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-3.0.1.tgz#9dc5e5ddbceef8325764b9451b02bc6d54084f75" 738 | dependencies: 739 | get-stdin "^4.0.1" 740 | minimist "^1.1.0" 741 | repeating "^1.1.0" 742 | 743 | detect-indent@^4.0.0: 744 | version "4.0.0" 745 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 746 | dependencies: 747 | repeating "^2.0.0" 748 | 749 | detective@^4.3.1: 750 | version "4.5.0" 751 | resolved "https://registry.yarnpkg.com/detective/-/detective-4.5.0.tgz#6e5a8c6b26e6c7a254b1c6b6d7490d98ec91edd1" 752 | dependencies: 753 | acorn "^4.0.3" 754 | defined "^1.0.0" 755 | 756 | diff@^3.2.0: 757 | version "3.2.0" 758 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 759 | 760 | ecc-jsbn@~0.1.1: 761 | version "0.1.1" 762 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 763 | dependencies: 764 | jsbn "~0.1.0" 765 | 766 | entities@~1.1.1: 767 | version "1.1.1" 768 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0" 769 | 770 | "errno@>=0.1.1 <0.2.0-0": 771 | version "0.1.4" 772 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 773 | dependencies: 774 | prr "~0.0.0" 775 | 776 | error-ex@^1.2.0: 777 | version "1.3.1" 778 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 779 | dependencies: 780 | is-arrayish "^0.2.1" 781 | 782 | escape-string-regexp@^1.0.2: 783 | version "1.0.5" 784 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 785 | 786 | escodegen@^1.6.1: 787 | version "1.8.1" 788 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 789 | dependencies: 790 | esprima "^2.7.1" 791 | estraverse "^1.9.1" 792 | esutils "^2.0.2" 793 | optionator "^0.8.1" 794 | optionalDependencies: 795 | source-map "~0.2.0" 796 | 797 | esprima-fb@~15001.1001.0-dev-harmony-fb: 798 | version "15001.1001.0-dev-harmony-fb" 799 | resolved "https://registry.yarnpkg.com/esprima-fb/-/esprima-fb-15001.1001.0-dev-harmony-fb.tgz#43beb57ec26e8cf237d3dd8b33e42533577f2659" 800 | 801 | esprima@^2.6.0, esprima@^2.7.1: 802 | version "2.7.3" 803 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 804 | 805 | esprima@^3.1.1, esprima@~3.1.0: 806 | version "3.1.3" 807 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 808 | 809 | estraverse@^1.9.1: 810 | version "1.9.3" 811 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 812 | 813 | esutils@^2.0.0, esutils@^2.0.2: 814 | version "2.0.2" 815 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 816 | 817 | exec-sh@^0.2.0: 818 | version "0.2.0" 819 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 820 | dependencies: 821 | merge "^1.1.3" 822 | 823 | expand-brackets@^0.1.4: 824 | version "0.1.5" 825 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 826 | dependencies: 827 | is-posix-bracket "^0.1.0" 828 | 829 | expand-range@^1.8.1: 830 | version "1.8.2" 831 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 832 | dependencies: 833 | fill-range "^2.1.0" 834 | 835 | extend@~3.0.0: 836 | version "3.0.0" 837 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 838 | 839 | extglob@^0.3.1: 840 | version "0.3.2" 841 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 842 | dependencies: 843 | is-extglob "^1.0.0" 844 | 845 | extsprintf@1.0.2: 846 | version "1.0.2" 847 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 848 | 849 | fast-levenshtein@~2.0.4: 850 | version "2.0.6" 851 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 852 | 853 | fb-watchman@^1.8.0: 854 | version "1.9.2" 855 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 856 | dependencies: 857 | bser "1.0.2" 858 | 859 | fb-watchman@^2.0.0: 860 | version "2.0.0" 861 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 862 | dependencies: 863 | bser "^2.0.0" 864 | 865 | filename-regex@^2.0.0: 866 | version "2.0.0" 867 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 868 | 869 | fileset@^2.0.2: 870 | version "2.0.3" 871 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 872 | dependencies: 873 | glob "^7.0.3" 874 | minimatch "^3.0.3" 875 | 876 | fill-range@^2.1.0: 877 | version "2.2.3" 878 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 879 | dependencies: 880 | is-number "^2.1.0" 881 | isobject "^2.0.0" 882 | randomatic "^1.1.3" 883 | repeat-element "^1.1.2" 884 | repeat-string "^1.5.2" 885 | 886 | find-up@^1.0.0: 887 | version "1.1.2" 888 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 889 | dependencies: 890 | path-exists "^2.0.0" 891 | pinkie-promise "^2.0.0" 892 | 893 | find-up@^2.1.0: 894 | version "2.1.0" 895 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 896 | dependencies: 897 | locate-path "^2.0.0" 898 | 899 | for-in@^1.0.1: 900 | version "1.0.2" 901 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 902 | 903 | for-own@^0.1.4: 904 | version "0.1.5" 905 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 906 | dependencies: 907 | for-in "^1.0.1" 908 | 909 | forever-agent@~0.6.1: 910 | version "0.6.1" 911 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 912 | 913 | form-data@~2.1.1: 914 | version "2.1.2" 915 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 916 | dependencies: 917 | asynckit "^0.4.0" 918 | combined-stream "^1.0.5" 919 | mime-types "^2.1.12" 920 | 921 | fs-readdir-recursive@^0.1.0: 922 | version "0.1.2" 923 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-0.1.2.tgz#315b4fb8c1ca5b8c47defef319d073dad3568059" 924 | 925 | fs.realpath@^1.0.0: 926 | version "1.0.0" 927 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 928 | 929 | fsevents@^1.0.0: 930 | version "1.1.2" 931 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" 932 | dependencies: 933 | nan "^2.3.0" 934 | node-pre-gyp "^0.6.36" 935 | 936 | fstream-ignore@^1.0.5: 937 | version "1.0.5" 938 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 939 | dependencies: 940 | fstream "^1.0.0" 941 | inherits "2" 942 | minimatch "^3.0.0" 943 | 944 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 945 | version "1.0.11" 946 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 947 | dependencies: 948 | graceful-fs "^4.1.2" 949 | inherits "~2.0.0" 950 | mkdirp ">=0.5 0" 951 | rimraf "2" 952 | 953 | gauge@~2.7.3: 954 | version "2.7.4" 955 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 956 | dependencies: 957 | aproba "^1.0.3" 958 | console-control-strings "^1.0.0" 959 | has-unicode "^2.0.0" 960 | object-assign "^4.1.0" 961 | signal-exit "^3.0.0" 962 | string-width "^1.0.1" 963 | strip-ansi "^3.0.1" 964 | wide-align "^1.1.0" 965 | 966 | get-caller-file@^1.0.1: 967 | version "1.0.2" 968 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 969 | 970 | get-stdin@^4.0.1: 971 | version "4.0.1" 972 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 973 | 974 | getpass@^0.1.1: 975 | version "0.1.6" 976 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 977 | dependencies: 978 | assert-plus "^1.0.0" 979 | 980 | glob-base@^0.3.0: 981 | version "0.3.0" 982 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 983 | dependencies: 984 | glob-parent "^2.0.0" 985 | is-glob "^2.0.0" 986 | 987 | glob-parent@^2.0.0: 988 | version "2.0.0" 989 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 990 | dependencies: 991 | is-glob "^2.0.0" 992 | 993 | glob@^5.0.15, glob@^5.0.5: 994 | version "5.0.15" 995 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 996 | dependencies: 997 | inflight "^1.0.4" 998 | inherits "2" 999 | minimatch "2 || 3" 1000 | once "^1.3.0" 1001 | path-is-absolute "^1.0.0" 1002 | 1003 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1: 1004 | version "7.1.1" 1005 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1006 | dependencies: 1007 | fs.realpath "^1.0.0" 1008 | inflight "^1.0.4" 1009 | inherits "2" 1010 | minimatch "^3.0.2" 1011 | once "^1.3.0" 1012 | path-is-absolute "^1.0.0" 1013 | 1014 | globals@^6.4.0: 1015 | version "6.4.1" 1016 | resolved "https://registry.yarnpkg.com/globals/-/globals-6.4.1.tgz#8498032b3b6d1cc81eebc5f79690d8fe29fabf4f" 1017 | 1018 | globals@^9.0.0: 1019 | version "9.17.0" 1020 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 1021 | 1022 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1023 | version "4.1.11" 1024 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1025 | 1026 | "graceful-readlink@>= 1.0.0": 1027 | version "1.0.1" 1028 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1029 | 1030 | growly@^1.3.0: 1031 | version "1.3.0" 1032 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1033 | 1034 | handlebars@^4.0.3: 1035 | version "4.0.6" 1036 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.6.tgz#2ce4484850537f9c97a8026d5399b935c4ed4ed7" 1037 | dependencies: 1038 | async "^1.4.0" 1039 | optimist "^0.6.1" 1040 | source-map "^0.4.4" 1041 | optionalDependencies: 1042 | uglify-js "^2.6" 1043 | 1044 | har-schema@^1.0.5: 1045 | version "1.0.5" 1046 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1047 | 1048 | har-validator@~4.2.1: 1049 | version "4.2.1" 1050 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1051 | dependencies: 1052 | ajv "^4.9.1" 1053 | har-schema "^1.0.5" 1054 | 1055 | has-ansi@^2.0.0: 1056 | version "2.0.0" 1057 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1058 | dependencies: 1059 | ansi-regex "^2.0.0" 1060 | 1061 | has-flag@^1.0.0: 1062 | version "1.0.0" 1063 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1064 | 1065 | has-unicode@^2.0.0: 1066 | version "2.0.1" 1067 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1068 | 1069 | hawk@~3.1.3: 1070 | version "3.1.3" 1071 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1072 | dependencies: 1073 | boom "2.x.x" 1074 | cryptiles "2.x.x" 1075 | hoek "2.x.x" 1076 | sntp "1.x.x" 1077 | 1078 | hoek@2.x.x: 1079 | version "2.16.3" 1080 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1081 | 1082 | home-or-tmp@^1.0.0: 1083 | version "1.0.0" 1084 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-1.0.0.tgz#4b9f1e40800c3e50c6c27f781676afcce71f3985" 1085 | dependencies: 1086 | os-tmpdir "^1.0.1" 1087 | user-home "^1.1.1" 1088 | 1089 | home-or-tmp@^2.0.0: 1090 | version "2.0.0" 1091 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1092 | dependencies: 1093 | os-homedir "^1.0.0" 1094 | os-tmpdir "^1.0.1" 1095 | 1096 | hosted-git-info@^2.1.4: 1097 | version "2.4.1" 1098 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.1.tgz#4b0445e41c004a8bd1337773a4ff790ca40318c8" 1099 | 1100 | html-encoding-sniffer@^1.0.1: 1101 | version "1.0.1" 1102 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 1103 | dependencies: 1104 | whatwg-encoding "^1.0.1" 1105 | 1106 | http-signature@~1.1.0: 1107 | version "1.1.1" 1108 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1109 | dependencies: 1110 | assert-plus "^0.2.0" 1111 | jsprim "^1.2.2" 1112 | sshpk "^1.7.0" 1113 | 1114 | iconv-lite@0.4.13, iconv-lite@^0.4.5: 1115 | version "0.4.13" 1116 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1117 | 1118 | inflight@^1.0.4: 1119 | version "1.0.6" 1120 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1121 | dependencies: 1122 | once "^1.3.0" 1123 | wrappy "1" 1124 | 1125 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1: 1126 | version "2.0.3" 1127 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1128 | 1129 | ini@~1.3.0: 1130 | version "1.3.4" 1131 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1132 | 1133 | invariant@^2.2.0: 1134 | version "2.2.2" 1135 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1136 | dependencies: 1137 | loose-envify "^1.0.0" 1138 | 1139 | invert-kv@^1.0.0: 1140 | version "1.0.0" 1141 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1142 | 1143 | is-arrayish@^0.2.1: 1144 | version "0.2.1" 1145 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1146 | 1147 | is-binary-path@^1.0.0: 1148 | version "1.0.1" 1149 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1150 | dependencies: 1151 | binary-extensions "^1.0.0" 1152 | 1153 | is-buffer@^1.0.2: 1154 | version "1.1.5" 1155 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1156 | 1157 | is-builtin-module@^1.0.0: 1158 | version "1.0.0" 1159 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1160 | dependencies: 1161 | builtin-modules "^1.0.0" 1162 | 1163 | is-ci@^1.0.10: 1164 | version "1.0.10" 1165 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1166 | dependencies: 1167 | ci-info "^1.0.0" 1168 | 1169 | is-dotfile@^1.0.0: 1170 | version "1.0.2" 1171 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1172 | 1173 | is-equal-shallow@^0.1.3: 1174 | version "0.1.3" 1175 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1176 | dependencies: 1177 | is-primitive "^2.0.0" 1178 | 1179 | is-extendable@^0.1.1: 1180 | version "0.1.1" 1181 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1182 | 1183 | is-extglob@^1.0.0: 1184 | version "1.0.0" 1185 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1186 | 1187 | is-finite@^1.0.0: 1188 | version "1.0.2" 1189 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1190 | dependencies: 1191 | number-is-nan "^1.0.0" 1192 | 1193 | is-fullwidth-code-point@^1.0.0: 1194 | version "1.0.0" 1195 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1196 | dependencies: 1197 | number-is-nan "^1.0.0" 1198 | 1199 | is-glob@^2.0.0, is-glob@^2.0.1: 1200 | version "2.0.1" 1201 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1202 | dependencies: 1203 | is-extglob "^1.0.0" 1204 | 1205 | is-integer@^1.0.4: 1206 | version "1.0.7" 1207 | resolved "https://registry.yarnpkg.com/is-integer/-/is-integer-1.0.7.tgz#6bde81aacddf78b659b6629d629cadc51a886d5c" 1208 | dependencies: 1209 | is-finite "^1.0.0" 1210 | 1211 | is-number@^2.0.2, is-number@^2.1.0: 1212 | version "2.1.0" 1213 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1214 | dependencies: 1215 | kind-of "^3.0.2" 1216 | 1217 | is-posix-bracket@^0.1.0: 1218 | version "0.1.1" 1219 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1220 | 1221 | is-primitive@^2.0.0: 1222 | version "2.0.0" 1223 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1224 | 1225 | is-typedarray@~1.0.0: 1226 | version "1.0.0" 1227 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1228 | 1229 | is-utf8@^0.2.0: 1230 | version "0.2.1" 1231 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1232 | 1233 | isarray@1.0.0, isarray@~1.0.0: 1234 | version "1.0.0" 1235 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1236 | 1237 | isexe@^2.0.0: 1238 | version "2.0.0" 1239 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1240 | 1241 | isobject@^2.0.0: 1242 | version "2.1.0" 1243 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1244 | dependencies: 1245 | isarray "1.0.0" 1246 | 1247 | isstream@~0.1.2: 1248 | version "0.1.2" 1249 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1250 | 1251 | istanbul-api@^1.1.1: 1252 | version "1.1.9" 1253 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.9.tgz#2827920d380d4286d857d57a2968a841db8a7ec8" 1254 | dependencies: 1255 | async "^2.1.4" 1256 | fileset "^2.0.2" 1257 | istanbul-lib-coverage "^1.1.1" 1258 | istanbul-lib-hook "^1.0.7" 1259 | istanbul-lib-instrument "^1.7.2" 1260 | istanbul-lib-report "^1.1.1" 1261 | istanbul-lib-source-maps "^1.2.1" 1262 | istanbul-reports "^1.1.1" 1263 | js-yaml "^3.7.0" 1264 | mkdirp "^0.5.1" 1265 | once "^1.4.0" 1266 | 1267 | istanbul-lib-coverage@^1.0.1: 1268 | version "1.0.2" 1269 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.0.2.tgz#87a0c015b6910651cb3b184814dfb339337e25e1" 1270 | 1271 | istanbul-lib-coverage@^1.0.2, istanbul-lib-coverage@^1.1.1: 1272 | version "1.1.1" 1273 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 1274 | 1275 | istanbul-lib-hook@^1.0.7: 1276 | version "1.0.7" 1277 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.7.tgz#dd6607f03076578fe7d6f2a630cf143b49bacddc" 1278 | dependencies: 1279 | append-transform "^0.4.0" 1280 | 1281 | istanbul-lib-instrument@^1.4.2: 1282 | version "1.7.0" 1283 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.0.tgz#b8e0dc25709bb44e17336ab47b7bb5c97c23f659" 1284 | dependencies: 1285 | babel-generator "^6.18.0" 1286 | babel-template "^6.16.0" 1287 | babel-traverse "^6.18.0" 1288 | babel-types "^6.18.0" 1289 | babylon "^6.13.0" 1290 | istanbul-lib-coverage "^1.0.2" 1291 | semver "^5.3.0" 1292 | 1293 | istanbul-lib-instrument@^1.7.2: 1294 | version "1.7.2" 1295 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.2.tgz#6014b03d3470fb77638d5802508c255c06312e56" 1296 | dependencies: 1297 | babel-generator "^6.18.0" 1298 | babel-template "^6.16.0" 1299 | babel-traverse "^6.18.0" 1300 | babel-types "^6.18.0" 1301 | babylon "^6.13.0" 1302 | istanbul-lib-coverage "^1.1.1" 1303 | semver "^5.3.0" 1304 | 1305 | istanbul-lib-report@^1.1.1: 1306 | version "1.1.1" 1307 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#f0e55f56655ffa34222080b7a0cd4760e1405fc9" 1308 | dependencies: 1309 | istanbul-lib-coverage "^1.1.1" 1310 | mkdirp "^0.5.1" 1311 | path-parse "^1.0.5" 1312 | supports-color "^3.1.2" 1313 | 1314 | istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.1: 1315 | version "1.2.1" 1316 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.1.tgz#a6fe1acba8ce08eebc638e572e294d267008aa0c" 1317 | dependencies: 1318 | debug "^2.6.3" 1319 | istanbul-lib-coverage "^1.1.1" 1320 | mkdirp "^0.5.1" 1321 | rimraf "^2.6.1" 1322 | source-map "^0.5.3" 1323 | 1324 | istanbul-reports@^1.1.1: 1325 | version "1.1.1" 1326 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.1.tgz#042be5c89e175bc3f86523caab29c014e77fee4e" 1327 | dependencies: 1328 | handlebars "^4.0.3" 1329 | 1330 | jest-changed-files@^20.0.3: 1331 | version "20.0.3" 1332 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-20.0.3.tgz#9394d5cc65c438406149bef1bf4d52b68e03e3f8" 1333 | 1334 | jest-cli@^20.0.4: 1335 | version "20.0.4" 1336 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-20.0.4.tgz#e532b19d88ae5bc6c417e8b0593a6fe954b1dc93" 1337 | dependencies: 1338 | ansi-escapes "^1.4.0" 1339 | callsites "^2.0.0" 1340 | chalk "^1.1.3" 1341 | graceful-fs "^4.1.11" 1342 | is-ci "^1.0.10" 1343 | istanbul-api "^1.1.1" 1344 | istanbul-lib-coverage "^1.0.1" 1345 | istanbul-lib-instrument "^1.4.2" 1346 | istanbul-lib-source-maps "^1.1.0" 1347 | jest-changed-files "^20.0.3" 1348 | jest-config "^20.0.4" 1349 | jest-docblock "^20.0.3" 1350 | jest-environment-jsdom "^20.0.3" 1351 | jest-haste-map "^20.0.4" 1352 | jest-jasmine2 "^20.0.4" 1353 | jest-message-util "^20.0.3" 1354 | jest-regex-util "^20.0.3" 1355 | jest-resolve-dependencies "^20.0.3" 1356 | jest-runtime "^20.0.4" 1357 | jest-snapshot "^20.0.3" 1358 | jest-util "^20.0.3" 1359 | micromatch "^2.3.11" 1360 | node-notifier "^5.0.2" 1361 | pify "^2.3.0" 1362 | slash "^1.0.0" 1363 | string-length "^1.0.1" 1364 | throat "^3.0.0" 1365 | which "^1.2.12" 1366 | worker-farm "^1.3.1" 1367 | yargs "^7.0.2" 1368 | 1369 | jest-config@^20.0.4: 1370 | version "20.0.4" 1371 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-20.0.4.tgz#e37930ab2217c913605eff13e7bd763ec48faeea" 1372 | dependencies: 1373 | chalk "^1.1.3" 1374 | glob "^7.1.1" 1375 | jest-environment-jsdom "^20.0.3" 1376 | jest-environment-node "^20.0.3" 1377 | jest-jasmine2 "^20.0.4" 1378 | jest-matcher-utils "^20.0.3" 1379 | jest-regex-util "^20.0.3" 1380 | jest-resolve "^20.0.4" 1381 | jest-validate "^20.0.3" 1382 | pretty-format "^20.0.3" 1383 | 1384 | jest-diff@^20.0.3: 1385 | version "20.0.3" 1386 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-20.0.3.tgz#81f288fd9e675f0fb23c75f1c2b19445fe586617" 1387 | dependencies: 1388 | chalk "^1.1.3" 1389 | diff "^3.2.0" 1390 | jest-matcher-utils "^20.0.3" 1391 | pretty-format "^20.0.3" 1392 | 1393 | jest-docblock@^20.0.3: 1394 | version "20.0.3" 1395 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-20.0.3.tgz#17bea984342cc33d83c50fbe1545ea0efaa44712" 1396 | 1397 | jest-environment-jsdom@^20.0.3: 1398 | version "20.0.3" 1399 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-20.0.3.tgz#048a8ac12ee225f7190417713834bb999787de99" 1400 | dependencies: 1401 | jest-mock "^20.0.3" 1402 | jest-util "^20.0.3" 1403 | jsdom "^9.12.0" 1404 | 1405 | jest-environment-node@^20.0.3: 1406 | version "20.0.3" 1407 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-20.0.3.tgz#d488bc4612af2c246e986e8ae7671a099163d403" 1408 | dependencies: 1409 | jest-mock "^20.0.3" 1410 | jest-util "^20.0.3" 1411 | 1412 | jest-haste-map@^20.0.4: 1413 | version "20.0.4" 1414 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-20.0.4.tgz#653eb55c889ce3c021f7b94693f20a4159badf03" 1415 | dependencies: 1416 | fb-watchman "^2.0.0" 1417 | graceful-fs "^4.1.11" 1418 | jest-docblock "^20.0.3" 1419 | micromatch "^2.3.11" 1420 | sane "~1.6.0" 1421 | worker-farm "^1.3.1" 1422 | 1423 | jest-jasmine2@^20.0.4: 1424 | version "20.0.4" 1425 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-20.0.4.tgz#fcc5b1411780d911d042902ef1859e852e60d5e1" 1426 | dependencies: 1427 | chalk "^1.1.3" 1428 | graceful-fs "^4.1.11" 1429 | jest-diff "^20.0.3" 1430 | jest-matcher-utils "^20.0.3" 1431 | jest-matchers "^20.0.3" 1432 | jest-message-util "^20.0.3" 1433 | jest-snapshot "^20.0.3" 1434 | once "^1.4.0" 1435 | p-map "^1.1.1" 1436 | 1437 | jest-matcher-utils@^20.0.3: 1438 | version "20.0.3" 1439 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-20.0.3.tgz#b3a6b8e37ca577803b0832a98b164f44b7815612" 1440 | dependencies: 1441 | chalk "^1.1.3" 1442 | pretty-format "^20.0.3" 1443 | 1444 | jest-matchers@^20.0.3: 1445 | version "20.0.3" 1446 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-20.0.3.tgz#ca69db1c32db5a6f707fa5e0401abb55700dfd60" 1447 | dependencies: 1448 | jest-diff "^20.0.3" 1449 | jest-matcher-utils "^20.0.3" 1450 | jest-message-util "^20.0.3" 1451 | jest-regex-util "^20.0.3" 1452 | 1453 | jest-message-util@^20.0.3: 1454 | version "20.0.3" 1455 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-20.0.3.tgz#6aec2844306fcb0e6e74d5796c1006d96fdd831c" 1456 | dependencies: 1457 | chalk "^1.1.3" 1458 | micromatch "^2.3.11" 1459 | slash "^1.0.0" 1460 | 1461 | jest-mock@^20.0.3: 1462 | version "20.0.3" 1463 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-20.0.3.tgz#8bc070e90414aa155c11a8d64c869a0d5c71da59" 1464 | 1465 | jest-regex-util@^20.0.3: 1466 | version "20.0.3" 1467 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-20.0.3.tgz#85bbab5d133e44625b19faf8c6aa5122d085d762" 1468 | 1469 | jest-resolve-dependencies@^20.0.3: 1470 | version "20.0.3" 1471 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-20.0.3.tgz#6e14a7b717af0f2cb3667c549de40af017b1723a" 1472 | dependencies: 1473 | jest-regex-util "^20.0.3" 1474 | 1475 | jest-resolve@^20.0.4: 1476 | version "20.0.4" 1477 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-20.0.4.tgz#9448b3e8b6bafc15479444c6499045b7ffe597a5" 1478 | dependencies: 1479 | browser-resolve "^1.11.2" 1480 | is-builtin-module "^1.0.0" 1481 | resolve "^1.3.2" 1482 | 1483 | jest-runtime@^20.0.4: 1484 | version "20.0.4" 1485 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-20.0.4.tgz#a2c802219c4203f754df1404e490186169d124d8" 1486 | dependencies: 1487 | babel-core "^6.0.0" 1488 | babel-jest "^20.0.3" 1489 | babel-plugin-istanbul "^4.0.0" 1490 | chalk "^1.1.3" 1491 | convert-source-map "^1.4.0" 1492 | graceful-fs "^4.1.11" 1493 | jest-config "^20.0.4" 1494 | jest-haste-map "^20.0.4" 1495 | jest-regex-util "^20.0.3" 1496 | jest-resolve "^20.0.4" 1497 | jest-util "^20.0.3" 1498 | json-stable-stringify "^1.0.1" 1499 | micromatch "^2.3.11" 1500 | strip-bom "3.0.0" 1501 | yargs "^7.0.2" 1502 | 1503 | jest-snapshot@^20.0.3: 1504 | version "20.0.3" 1505 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-20.0.3.tgz#5b847e1adb1a4d90852a7f9f125086e187c76566" 1506 | dependencies: 1507 | chalk "^1.1.3" 1508 | jest-diff "^20.0.3" 1509 | jest-matcher-utils "^20.0.3" 1510 | jest-util "^20.0.3" 1511 | natural-compare "^1.4.0" 1512 | pretty-format "^20.0.3" 1513 | 1514 | jest-util@^20.0.3: 1515 | version "20.0.3" 1516 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-20.0.3.tgz#0c07f7d80d82f4e5a67c6f8b9c3fe7f65cfd32ad" 1517 | dependencies: 1518 | chalk "^1.1.3" 1519 | graceful-fs "^4.1.11" 1520 | jest-message-util "^20.0.3" 1521 | jest-mock "^20.0.3" 1522 | jest-validate "^20.0.3" 1523 | leven "^2.1.0" 1524 | mkdirp "^0.5.1" 1525 | 1526 | jest-validate@^20.0.3: 1527 | version "20.0.3" 1528 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-20.0.3.tgz#d0cfd1de4f579f298484925c280f8f1d94ec3cab" 1529 | dependencies: 1530 | chalk "^1.1.3" 1531 | jest-matcher-utils "^20.0.3" 1532 | leven "^2.1.0" 1533 | pretty-format "^20.0.3" 1534 | 1535 | jest@20.0.4: 1536 | version "20.0.4" 1537 | resolved "https://registry.yarnpkg.com/jest/-/jest-20.0.4.tgz#3dd260c2989d6dad678b1e9cc4d91944f6d602ac" 1538 | dependencies: 1539 | jest-cli "^20.0.4" 1540 | 1541 | jodid25519@^1.0.0: 1542 | version "1.0.2" 1543 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 1544 | dependencies: 1545 | jsbn "~0.1.0" 1546 | 1547 | js-tokens@1.0.1: 1548 | version "1.0.1" 1549 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-1.0.1.tgz#cc435a5c8b94ad15acb7983140fc80182c89aeae" 1550 | 1551 | js-tokens@^3.0.0: 1552 | version "3.0.1" 1553 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 1554 | 1555 | js-yaml@^3.7.0: 1556 | version "3.8.3" 1557 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.3.tgz#33a05ec481c850c8875929166fe1beb61c728766" 1558 | dependencies: 1559 | argparse "^1.0.7" 1560 | esprima "^3.1.1" 1561 | 1562 | jsbn@~0.1.0: 1563 | version "0.1.1" 1564 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1565 | 1566 | jsdom@^9.12.0: 1567 | version "9.12.0" 1568 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 1569 | dependencies: 1570 | abab "^1.0.3" 1571 | acorn "^4.0.4" 1572 | acorn-globals "^3.1.0" 1573 | array-equal "^1.0.0" 1574 | content-type-parser "^1.0.1" 1575 | cssom ">= 0.3.2 < 0.4.0" 1576 | cssstyle ">= 0.2.37 < 0.3.0" 1577 | escodegen "^1.6.1" 1578 | html-encoding-sniffer "^1.0.1" 1579 | nwmatcher ">= 1.3.9 < 2.0.0" 1580 | parse5 "^1.5.1" 1581 | request "^2.79.0" 1582 | sax "^1.2.1" 1583 | symbol-tree "^3.2.1" 1584 | tough-cookie "^2.3.2" 1585 | webidl-conversions "^4.0.0" 1586 | whatwg-encoding "^1.0.1" 1587 | whatwg-url "^4.3.0" 1588 | xml-name-validator "^2.0.1" 1589 | 1590 | jsesc@^1.3.0: 1591 | version "1.3.0" 1592 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1593 | 1594 | jsesc@~0.5.0: 1595 | version "0.5.0" 1596 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1597 | 1598 | json-schema@0.2.3: 1599 | version "0.2.3" 1600 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1601 | 1602 | json-stable-stringify@^1.0.1: 1603 | version "1.0.1" 1604 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1605 | dependencies: 1606 | jsonify "~0.0.0" 1607 | 1608 | json-stringify-safe@~5.0.1: 1609 | version "5.0.1" 1610 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1611 | 1612 | json5@^0.4.0: 1613 | version "0.4.0" 1614 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.4.0.tgz#054352e4c4c80c86c0923877d449de176a732c8d" 1615 | 1616 | json5@^0.5.0: 1617 | version "0.5.1" 1618 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1619 | 1620 | jsonify@~0.0.0: 1621 | version "0.0.0" 1622 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1623 | 1624 | jsprim@^1.2.2: 1625 | version "1.4.0" 1626 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 1627 | dependencies: 1628 | assert-plus "1.0.0" 1629 | extsprintf "1.0.2" 1630 | json-schema "0.2.3" 1631 | verror "1.3.6" 1632 | 1633 | kind-of@^3.0.2: 1634 | version "3.1.0" 1635 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 1636 | dependencies: 1637 | is-buffer "^1.0.2" 1638 | 1639 | lazy-cache@^1.0.3: 1640 | version "1.0.4" 1641 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1642 | 1643 | lcid@^1.0.0: 1644 | version "1.0.0" 1645 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1646 | dependencies: 1647 | invert-kv "^1.0.0" 1648 | 1649 | leven@^1.0.2: 1650 | version "1.0.2" 1651 | resolved "https://registry.yarnpkg.com/leven/-/leven-1.0.2.tgz#9144b6eebca5f1d0680169f1a6770dcea60b75c3" 1652 | 1653 | leven@^2.1.0: 1654 | version "2.1.0" 1655 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 1656 | 1657 | levn@~0.3.0: 1658 | version "0.3.0" 1659 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1660 | dependencies: 1661 | prelude-ls "~1.1.2" 1662 | type-check "~0.3.2" 1663 | 1664 | linkify-it@^2.0.0: 1665 | version "2.0.3" 1666 | resolved "https://registry.yarnpkg.com/linkify-it/-/linkify-it-2.0.3.tgz#d94a4648f9b1c179d64fa97291268bdb6ce9434f" 1667 | dependencies: 1668 | uc.micro "^1.0.1" 1669 | 1670 | load-json-file@^1.0.0: 1671 | version "1.1.0" 1672 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1673 | dependencies: 1674 | graceful-fs "^4.1.2" 1675 | parse-json "^2.2.0" 1676 | pify "^2.0.0" 1677 | pinkie-promise "^2.0.0" 1678 | strip-bom "^2.0.0" 1679 | 1680 | locate-path@^2.0.0: 1681 | version "2.0.0" 1682 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1683 | dependencies: 1684 | p-locate "^2.0.0" 1685 | path-exists "^3.0.0" 1686 | 1687 | lodash@^3.10.0, lodash@^3.2.0, lodash@^3.9.3: 1688 | version "3.10.1" 1689 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" 1690 | 1691 | lodash@^4.14.0, lodash@^4.2.0: 1692 | version "4.17.4" 1693 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1694 | 1695 | longest@^1.0.1: 1696 | version "1.0.1" 1697 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1698 | 1699 | loose-envify@^1.0.0: 1700 | version "1.3.1" 1701 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1702 | dependencies: 1703 | js-tokens "^3.0.0" 1704 | 1705 | makeerror@1.0.x: 1706 | version "1.0.11" 1707 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 1708 | dependencies: 1709 | tmpl "1.0.x" 1710 | 1711 | markdown-it-abbr@1.0.4: 1712 | version "1.0.4" 1713 | resolved "https://registry.yarnpkg.com/markdown-it-abbr/-/markdown-it-abbr-1.0.4.tgz#d66b5364521cbb3dd8aa59dadfba2fb6865c8fd8" 1714 | 1715 | markdown-it-deflist@2.0.2: 1716 | version "2.0.2" 1717 | resolved "https://registry.yarnpkg.com/markdown-it-deflist/-/markdown-it-deflist-2.0.2.tgz#33253190400dfa5398bef9d0adacac0d0676bc58" 1718 | 1719 | markdown-it-emoji@1.3.0: 1720 | version "1.3.0" 1721 | resolved "https://registry.yarnpkg.com/markdown-it-emoji/-/markdown-it-emoji-1.3.0.tgz#903ae1a9968c3f17d4e142f115d4ec575e56d2cb" 1722 | 1723 | markdown-it-implicit-figures@0.6.0: 1724 | version "0.6.0" 1725 | resolved "https://registry.yarnpkg.com/markdown-it-implicit-figures/-/markdown-it-implicit-figures-0.6.0.tgz#ef591a4a9682462d5be9e050b37debd0284850a1" 1726 | 1727 | markdown-it-ins@2.0.0: 1728 | version "2.0.0" 1729 | resolved "https://registry.yarnpkg.com/markdown-it-ins/-/markdown-it-ins-2.0.0.tgz#a5aa6a30f1e2f71e9497567cfdff40f1fde67483" 1730 | 1731 | markdown-it-link-attributes@^2.0.0: 1732 | version "2.0.0" 1733 | resolved "https://registry.yarnpkg.com/markdown-it-link-attributes/-/markdown-it-link-attributes-2.0.0.tgz#24803e7a2331c54cbd1450b8b03dc7f5f89a3c27" 1734 | 1735 | markdown-it-mark@2.0.0: 1736 | version "2.0.0" 1737 | resolved "https://registry.yarnpkg.com/markdown-it-mark/-/markdown-it-mark-2.0.0.tgz#46a1aa947105aed8188978e0a016179e404f42c7" 1738 | 1739 | markdown-it-math@^4.0.1: 1740 | version "4.0.1" 1741 | resolved "https://registry.yarnpkg.com/markdown-it-math/-/markdown-it-math-4.0.1.tgz#f5913fd1bb56463826a29b081c86b5abb62e85fa" 1742 | optionalDependencies: 1743 | ascii2mathml "^0.5.3" 1744 | 1745 | markdown-it-podcast@^0.1.0: 1746 | version "0.1.0" 1747 | resolved "https://registry.yarnpkg.com/markdown-it-podcast/-/markdown-it-podcast-0.1.0.tgz#634e47a73ca738d657df7186e82e1569ee0ecc92" 1748 | 1749 | markdown-it-video@0.4.0: 1750 | version "0.4.0" 1751 | resolved "https://registry.yarnpkg.com/markdown-it-video/-/markdown-it-video-0.4.0.tgz#1f51a3471456a2509a3820dced9ad1ce961bdb64" 1752 | 1753 | markdown-it@8.3.1: 1754 | version "8.3.1" 1755 | resolved "https://registry.yarnpkg.com/markdown-it/-/markdown-it-8.3.1.tgz#2f4b622948ccdc193d66f3ca2d43125ac4ac7323" 1756 | dependencies: 1757 | argparse "^1.0.7" 1758 | entities "~1.1.1" 1759 | linkify-it "^2.0.0" 1760 | mdurl "^1.0.1" 1761 | uc.micro "^1.0.3" 1762 | 1763 | mdurl@^1.0.1: 1764 | version "1.0.1" 1765 | resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e" 1766 | 1767 | merge@^1.1.3: 1768 | version "1.2.0" 1769 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 1770 | 1771 | micromatch@^2.1.5, micromatch@^2.3.11: 1772 | version "2.3.11" 1773 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1774 | dependencies: 1775 | arr-diff "^2.0.0" 1776 | array-unique "^0.2.1" 1777 | braces "^1.8.2" 1778 | expand-brackets "^0.1.4" 1779 | extglob "^0.3.1" 1780 | filename-regex "^2.0.0" 1781 | is-extglob "^1.0.0" 1782 | is-glob "^2.0.1" 1783 | kind-of "^3.0.2" 1784 | normalize-path "^2.0.1" 1785 | object.omit "^2.0.0" 1786 | parse-glob "^3.0.4" 1787 | regex-cache "^0.4.2" 1788 | 1789 | mime-db@~1.27.0: 1790 | version "1.27.0" 1791 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 1792 | 1793 | mime-types@^2.1.12, mime-types@~2.1.7: 1794 | version "2.1.15" 1795 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 1796 | dependencies: 1797 | mime-db "~1.27.0" 1798 | 1799 | "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3: 1800 | version "3.0.3" 1801 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 1802 | dependencies: 1803 | brace-expansion "^1.0.0" 1804 | 1805 | minimatch@^2.0.3: 1806 | version "2.0.10" 1807 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-2.0.10.tgz#8d087c39c6b38c001b97fca7ce6d0e1e80afbac7" 1808 | dependencies: 1809 | brace-expansion "^1.0.0" 1810 | 1811 | minimist@0.0.8, minimist@~0.0.1: 1812 | version "0.0.8" 1813 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1814 | 1815 | minimist@^1.1.0, minimist@^1.1.1, minimist@^1.1.2, minimist@^1.2.0: 1816 | version "1.2.0" 1817 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1818 | 1819 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1: 1820 | version "0.5.1" 1821 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1822 | dependencies: 1823 | minimist "0.0.8" 1824 | 1825 | ms@0.7.2: 1826 | version "0.7.2" 1827 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 1828 | 1829 | nan@^2.3.0: 1830 | version "2.6.2" 1831 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" 1832 | 1833 | natural-compare@^1.4.0: 1834 | version "1.4.0" 1835 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1836 | 1837 | node-int64@^0.4.0: 1838 | version "0.4.0" 1839 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 1840 | 1841 | node-notifier@^5.0.2: 1842 | version "5.1.2" 1843 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 1844 | dependencies: 1845 | growly "^1.3.0" 1846 | semver "^5.3.0" 1847 | shellwords "^0.1.0" 1848 | which "^1.2.12" 1849 | 1850 | node-pre-gyp@^0.6.36: 1851 | version "0.6.36" 1852 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz#db604112cb74e0d477554e9b505b17abddfab786" 1853 | dependencies: 1854 | mkdirp "^0.5.1" 1855 | nopt "^4.0.1" 1856 | npmlog "^4.0.2" 1857 | rc "^1.1.7" 1858 | request "^2.81.0" 1859 | rimraf "^2.6.1" 1860 | semver "^5.3.0" 1861 | tar "^2.2.1" 1862 | tar-pack "^3.4.0" 1863 | 1864 | nopt@^4.0.1: 1865 | version "4.0.1" 1866 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1867 | dependencies: 1868 | abbrev "1" 1869 | osenv "^0.1.4" 1870 | 1871 | normalize-package-data@^2.3.2: 1872 | version "2.3.6" 1873 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.6.tgz#498fa420c96401f787402ba21e600def9f981fff" 1874 | dependencies: 1875 | hosted-git-info "^2.1.4" 1876 | is-builtin-module "^1.0.0" 1877 | semver "2 || 3 || 4 || 5" 1878 | validate-npm-package-license "^3.0.1" 1879 | 1880 | normalize-path@^2.0.1: 1881 | version "2.1.1" 1882 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1883 | dependencies: 1884 | remove-trailing-separator "^1.0.1" 1885 | 1886 | npmlog@^4.0.2: 1887 | version "4.1.0" 1888 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.0.tgz#dc59bee85f64f00ed424efb2af0783df25d1c0b5" 1889 | dependencies: 1890 | are-we-there-yet "~1.1.2" 1891 | console-control-strings "~1.1.0" 1892 | gauge "~2.7.3" 1893 | set-blocking "~2.0.0" 1894 | 1895 | number-is-nan@^1.0.0: 1896 | version "1.0.1" 1897 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1898 | 1899 | "nwmatcher@>= 1.3.9 < 2.0.0": 1900 | version "1.3.9" 1901 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.3.9.tgz#8bab486ff7fa3dfd086656bbe8b17116d3692d2a" 1902 | 1903 | oauth-sign@~0.8.1: 1904 | version "0.8.2" 1905 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1906 | 1907 | object-assign@^4.1.0: 1908 | version "4.1.1" 1909 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1910 | 1911 | object.omit@^2.0.0: 1912 | version "2.0.1" 1913 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1914 | dependencies: 1915 | for-own "^0.1.4" 1916 | is-extendable "^0.1.1" 1917 | 1918 | once@^1.3.0, once@^1.3.3, once@^1.4.0: 1919 | version "1.4.0" 1920 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1921 | dependencies: 1922 | wrappy "1" 1923 | 1924 | optimist@^0.6.1: 1925 | version "0.6.1" 1926 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 1927 | dependencies: 1928 | minimist "~0.0.1" 1929 | wordwrap "~0.0.2" 1930 | 1931 | optionator@^0.8.1: 1932 | version "0.8.2" 1933 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1934 | dependencies: 1935 | deep-is "~0.1.3" 1936 | fast-levenshtein "~2.0.4" 1937 | levn "~0.3.0" 1938 | prelude-ls "~1.1.2" 1939 | type-check "~0.3.2" 1940 | wordwrap "~1.0.0" 1941 | 1942 | os-homedir@^1.0.0: 1943 | version "1.0.2" 1944 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1945 | 1946 | os-locale@^1.4.0: 1947 | version "1.4.0" 1948 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 1949 | dependencies: 1950 | lcid "^1.0.0" 1951 | 1952 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 1953 | version "1.0.2" 1954 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1955 | 1956 | osenv@^0.1.4: 1957 | version "0.1.4" 1958 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 1959 | dependencies: 1960 | os-homedir "^1.0.0" 1961 | os-tmpdir "^1.0.0" 1962 | 1963 | output-file-sync@^1.1.0: 1964 | version "1.1.2" 1965 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 1966 | dependencies: 1967 | graceful-fs "^4.1.4" 1968 | mkdirp "^0.5.1" 1969 | object-assign "^4.1.0" 1970 | 1971 | p-limit@^1.1.0: 1972 | version "1.1.0" 1973 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 1974 | 1975 | p-locate@^2.0.0: 1976 | version "2.0.0" 1977 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1978 | dependencies: 1979 | p-limit "^1.1.0" 1980 | 1981 | p-map@^1.1.1: 1982 | version "1.1.1" 1983 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.1.1.tgz#05f5e4ae97a068371bc2a5cc86bfbdbc19c4ae7a" 1984 | 1985 | parse-glob@^3.0.4: 1986 | version "3.0.4" 1987 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1988 | dependencies: 1989 | glob-base "^0.3.0" 1990 | is-dotfile "^1.0.0" 1991 | is-extglob "^1.0.0" 1992 | is-glob "^2.0.0" 1993 | 1994 | parse-json@^2.2.0: 1995 | version "2.2.0" 1996 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1997 | dependencies: 1998 | error-ex "^1.2.0" 1999 | 2000 | parse5@^1.5.1: 2001 | version "1.5.1" 2002 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 2003 | 2004 | path-exists@^1.0.0: 2005 | version "1.0.0" 2006 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-1.0.0.tgz#d5a8998eb71ef37a74c34eb0d9eba6e878eea081" 2007 | 2008 | path-exists@^2.0.0: 2009 | version "2.1.0" 2010 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2011 | dependencies: 2012 | pinkie-promise "^2.0.0" 2013 | 2014 | path-exists@^3.0.0: 2015 | version "3.0.0" 2016 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2017 | 2018 | path-is-absolute@^1.0.0: 2019 | version "1.0.1" 2020 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2021 | 2022 | path-parse@^1.0.5: 2023 | version "1.0.5" 2024 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2025 | 2026 | path-type@^1.0.0: 2027 | version "1.1.0" 2028 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2029 | dependencies: 2030 | graceful-fs "^4.1.2" 2031 | pify "^2.0.0" 2032 | pinkie-promise "^2.0.0" 2033 | 2034 | performance-now@^0.2.0: 2035 | version "0.2.0" 2036 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2037 | 2038 | pify@^2.0.0, pify@^2.3.0: 2039 | version "2.3.0" 2040 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2041 | 2042 | pinkie-promise@^2.0.0: 2043 | version "2.0.1" 2044 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2045 | dependencies: 2046 | pinkie "^2.0.0" 2047 | 2048 | pinkie@^2.0.0: 2049 | version "2.0.4" 2050 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2051 | 2052 | prelude-ls@~1.1.2: 2053 | version "1.1.2" 2054 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2055 | 2056 | preserve@^0.2.0: 2057 | version "0.2.0" 2058 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2059 | 2060 | pretty-format@^20.0.3: 2061 | version "20.0.3" 2062 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-20.0.3.tgz#020e350a560a1fe1a98dc3beb6ccffb386de8b14" 2063 | dependencies: 2064 | ansi-regex "^2.1.1" 2065 | ansi-styles "^3.0.0" 2066 | 2067 | private@^0.1.6, private@~0.1.5: 2068 | version "0.1.7" 2069 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2070 | 2071 | process-nextick-args@~1.0.6: 2072 | version "1.0.7" 2073 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2074 | 2075 | prr@~0.0.0: 2076 | version "0.0.0" 2077 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 2078 | 2079 | punycode@^1.4.1: 2080 | version "1.4.1" 2081 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2082 | 2083 | q@^1.1.2: 2084 | version "1.5.0" 2085 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.0.tgz#dd01bac9d06d30e6f219aecb8253ee9ebdc308f1" 2086 | 2087 | qs@~6.4.0: 2088 | version "6.4.0" 2089 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2090 | 2091 | randomatic@^1.1.3: 2092 | version "1.1.6" 2093 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 2094 | dependencies: 2095 | is-number "^2.0.2" 2096 | kind-of "^3.0.2" 2097 | 2098 | rc@^1.1.7: 2099 | version "1.2.1" 2100 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 2101 | dependencies: 2102 | deep-extend "~0.4.0" 2103 | ini "~1.3.0" 2104 | minimist "^1.2.0" 2105 | strip-json-comments "~2.0.1" 2106 | 2107 | read-pkg-up@^1.0.1: 2108 | version "1.0.1" 2109 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2110 | dependencies: 2111 | find-up "^1.0.0" 2112 | read-pkg "^1.0.0" 2113 | 2114 | read-pkg@^1.0.0: 2115 | version "1.1.0" 2116 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2117 | dependencies: 2118 | load-json-file "^1.0.0" 2119 | normalize-package-data "^2.3.2" 2120 | path-type "^1.0.0" 2121 | 2122 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4: 2123 | version "2.2.11" 2124 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.11.tgz#0796b31f8d7688007ff0b93a8088d34aa17c0f72" 2125 | dependencies: 2126 | core-util-is "~1.0.0" 2127 | inherits "~2.0.1" 2128 | isarray "~1.0.0" 2129 | process-nextick-args "~1.0.6" 2130 | safe-buffer "~5.0.1" 2131 | string_decoder "~1.0.0" 2132 | util-deprecate "~1.0.1" 2133 | 2134 | readdirp@^2.0.0: 2135 | version "2.1.0" 2136 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2137 | dependencies: 2138 | graceful-fs "^4.1.2" 2139 | minimatch "^3.0.2" 2140 | readable-stream "^2.0.2" 2141 | set-immediate-shim "^1.0.1" 2142 | 2143 | recast@0.10.33, recast@^0.10.10: 2144 | version "0.10.33" 2145 | resolved "https://registry.yarnpkg.com/recast/-/recast-0.10.33.tgz#942808f7aa016f1fa7142c461d7e5704aaa8d697" 2146 | dependencies: 2147 | ast-types "0.8.12" 2148 | esprima-fb "~15001.1001.0-dev-harmony-fb" 2149 | private "~0.1.5" 2150 | source-map "~0.5.0" 2151 | 2152 | recast@^0.11.17: 2153 | version "0.11.23" 2154 | resolved "https://registry.yarnpkg.com/recast/-/recast-0.11.23.tgz#451fd3004ab1e4df9b4e4b66376b2a21912462d3" 2155 | dependencies: 2156 | ast-types "0.9.6" 2157 | esprima "~3.1.0" 2158 | private "~0.1.5" 2159 | source-map "~0.5.0" 2160 | 2161 | regenerate@^1.2.1: 2162 | version "1.3.2" 2163 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 2164 | 2165 | regenerator-runtime@^0.10.0: 2166 | version "0.10.3" 2167 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.3.tgz#8c4367a904b51ea62a908ac310bf99ff90a82a3e" 2168 | 2169 | regenerator@0.8.40: 2170 | version "0.8.40" 2171 | resolved "https://registry.yarnpkg.com/regenerator/-/regenerator-0.8.40.tgz#a0e457c58ebdbae575c9f8cd75127e93756435d8" 2172 | dependencies: 2173 | commoner "~0.10.3" 2174 | defs "~1.1.0" 2175 | esprima-fb "~15001.1001.0-dev-harmony-fb" 2176 | private "~0.1.5" 2177 | recast "0.10.33" 2178 | through "~2.3.8" 2179 | 2180 | regex-cache@^0.4.2: 2181 | version "0.4.3" 2182 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2183 | dependencies: 2184 | is-equal-shallow "^0.1.3" 2185 | is-primitive "^2.0.0" 2186 | 2187 | regexpu@^1.3.0: 2188 | version "1.3.0" 2189 | resolved "https://registry.yarnpkg.com/regexpu/-/regexpu-1.3.0.tgz#e534dc991a9e5846050c98de6d7dd4a55c9ea16d" 2190 | dependencies: 2191 | esprima "^2.6.0" 2192 | recast "^0.10.10" 2193 | regenerate "^1.2.1" 2194 | regjsgen "^0.2.0" 2195 | regjsparser "^0.1.4" 2196 | 2197 | regjsgen@^0.2.0: 2198 | version "0.2.0" 2199 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2200 | 2201 | regjsparser@^0.1.4: 2202 | version "0.1.5" 2203 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2204 | dependencies: 2205 | jsesc "~0.5.0" 2206 | 2207 | remove-trailing-separator@^1.0.1: 2208 | version "1.0.1" 2209 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 2210 | 2211 | repeat-element@^1.1.2: 2212 | version "1.1.2" 2213 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2214 | 2215 | repeat-string@^1.5.2: 2216 | version "1.6.1" 2217 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2218 | 2219 | repeating@^1.1.0, repeating@^1.1.2: 2220 | version "1.1.3" 2221 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-1.1.3.tgz#3d4114218877537494f97f77f9785fab810fa4ac" 2222 | dependencies: 2223 | is-finite "^1.0.0" 2224 | 2225 | repeating@^2.0.0: 2226 | version "2.0.1" 2227 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2228 | dependencies: 2229 | is-finite "^1.0.0" 2230 | 2231 | request@^2.79.0, request@^2.81.0: 2232 | version "2.81.0" 2233 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2234 | dependencies: 2235 | aws-sign2 "~0.6.0" 2236 | aws4 "^1.2.1" 2237 | caseless "~0.12.0" 2238 | combined-stream "~1.0.5" 2239 | extend "~3.0.0" 2240 | forever-agent "~0.6.1" 2241 | form-data "~2.1.1" 2242 | har-validator "~4.2.1" 2243 | hawk "~3.1.3" 2244 | http-signature "~1.1.0" 2245 | is-typedarray "~1.0.0" 2246 | isstream "~0.1.2" 2247 | json-stringify-safe "~5.0.1" 2248 | mime-types "~2.1.7" 2249 | oauth-sign "~0.8.1" 2250 | performance-now "^0.2.0" 2251 | qs "~6.4.0" 2252 | safe-buffer "^5.0.1" 2253 | stringstream "~0.0.4" 2254 | tough-cookie "~2.3.0" 2255 | tunnel-agent "^0.6.0" 2256 | uuid "^3.0.0" 2257 | 2258 | require-directory@^2.1.1: 2259 | version "2.1.1" 2260 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2261 | 2262 | require-main-filename@^1.0.1: 2263 | version "1.0.1" 2264 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2265 | 2266 | resolve@1.1.7: 2267 | version "1.1.7" 2268 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2269 | 2270 | resolve@^1.1.6, resolve@^1.3.2: 2271 | version "1.3.2" 2272 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.2.tgz#1f0442c9e0cbb8136e87b9305f932f46c7f28235" 2273 | dependencies: 2274 | path-parse "^1.0.5" 2275 | 2276 | right-align@^0.1.1: 2277 | version "0.1.3" 2278 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2279 | dependencies: 2280 | align-text "^0.1.1" 2281 | 2282 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: 2283 | version "2.6.1" 2284 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 2285 | dependencies: 2286 | glob "^7.0.5" 2287 | 2288 | safe-buffer@^5.0.1, safe-buffer@~5.0.1: 2289 | version "5.0.1" 2290 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 2291 | 2292 | sane@~1.6.0: 2293 | version "1.6.0" 2294 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.6.0.tgz#9610c452307a135d29c1fdfe2547034180c46775" 2295 | dependencies: 2296 | anymatch "^1.3.0" 2297 | exec-sh "^0.2.0" 2298 | fb-watchman "^1.8.0" 2299 | minimatch "^3.0.2" 2300 | minimist "^1.1.1" 2301 | walker "~1.0.5" 2302 | watch "~0.10.0" 2303 | 2304 | sax@^1.2.1: 2305 | version "1.2.2" 2306 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.2.tgz#fd8631a23bc7826bef5d871bdb87378c95647828" 2307 | 2308 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 2309 | version "5.3.0" 2310 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2311 | 2312 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2313 | version "2.0.0" 2314 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2315 | 2316 | set-immediate-shim@^1.0.1: 2317 | version "1.0.1" 2318 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2319 | 2320 | shebang-regex@^1.0.0: 2321 | version "1.0.0" 2322 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2323 | 2324 | shellwords@^0.1.0: 2325 | version "0.1.0" 2326 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.0.tgz#66afd47b6a12932d9071cbfd98a52e785cd0ba14" 2327 | 2328 | signal-exit@^3.0.0: 2329 | version "3.0.2" 2330 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2331 | 2332 | simple-fmt@~0.1.0: 2333 | version "0.1.0" 2334 | resolved "https://registry.yarnpkg.com/simple-fmt/-/simple-fmt-0.1.0.tgz#191bf566a59e6530482cb25ab53b4a8dc85c3a6b" 2335 | 2336 | simple-is@~0.2.0: 2337 | version "0.2.0" 2338 | resolved "https://registry.yarnpkg.com/simple-is/-/simple-is-0.2.0.tgz#2abb75aade39deb5cc815ce10e6191164850baf0" 2339 | 2340 | slash@^1.0.0: 2341 | version "1.0.0" 2342 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2343 | 2344 | sntp@1.x.x: 2345 | version "1.0.9" 2346 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2347 | dependencies: 2348 | hoek "2.x.x" 2349 | 2350 | source-map-support@^0.2.10: 2351 | version "0.2.10" 2352 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.2.10.tgz#ea5a3900a1c1cb25096a0ae8cc5c2b4b10ded3dc" 2353 | dependencies: 2354 | source-map "0.1.32" 2355 | 2356 | source-map-support@^0.4.2: 2357 | version "0.4.14" 2358 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.14.tgz#9d4463772598b86271b4f523f6c1f4e02a7d6aef" 2359 | dependencies: 2360 | source-map "^0.5.6" 2361 | 2362 | source-map@0.1.32: 2363 | version "0.1.32" 2364 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.32.tgz#c8b6c167797ba4740a8ea33252162ff08591b266" 2365 | dependencies: 2366 | amdefine ">=0.0.4" 2367 | 2368 | source-map@^0.4.4: 2369 | version "0.4.4" 2370 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 2371 | dependencies: 2372 | amdefine ">=0.0.4" 2373 | 2374 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.0, source-map@~0.5.1: 2375 | version "0.5.6" 2376 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 2377 | 2378 | source-map@~0.2.0: 2379 | version "0.2.0" 2380 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 2381 | dependencies: 2382 | amdefine ">=0.0.4" 2383 | 2384 | spdx-correct@~1.0.0: 2385 | version "1.0.2" 2386 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2387 | dependencies: 2388 | spdx-license-ids "^1.0.2" 2389 | 2390 | spdx-expression-parse@~1.0.0: 2391 | version "1.0.4" 2392 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2393 | 2394 | spdx-license-ids@^1.0.2: 2395 | version "1.2.2" 2396 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2397 | 2398 | sprintf-js@~1.0.2: 2399 | version "1.0.3" 2400 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2401 | 2402 | sshpk@^1.7.0: 2403 | version "1.11.0" 2404 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.11.0.tgz#2d8d5ebb4a6fab28ffba37fa62a90f4a3ea59d77" 2405 | dependencies: 2406 | asn1 "~0.2.3" 2407 | assert-plus "^1.0.0" 2408 | dashdash "^1.12.0" 2409 | getpass "^0.1.1" 2410 | optionalDependencies: 2411 | bcrypt-pbkdf "^1.0.0" 2412 | ecc-jsbn "~0.1.1" 2413 | jodid25519 "^1.0.0" 2414 | jsbn "~0.1.0" 2415 | tweetnacl "~0.14.0" 2416 | 2417 | stable@~0.1.3: 2418 | version "0.1.6" 2419 | resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.6.tgz#910f5d2aed7b520c6e777499c1f32e139fdecb10" 2420 | 2421 | string-length@^1.0.1: 2422 | version "1.0.1" 2423 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 2424 | dependencies: 2425 | strip-ansi "^3.0.0" 2426 | 2427 | string-width@^1.0.1, string-width@^1.0.2: 2428 | version "1.0.2" 2429 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2430 | dependencies: 2431 | code-point-at "^1.0.0" 2432 | is-fullwidth-code-point "^1.0.0" 2433 | strip-ansi "^3.0.0" 2434 | 2435 | string_decoder@~1.0.0: 2436 | version "1.0.2" 2437 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.2.tgz#b29e1f4e1125fa97a10382b8a533737b7491e179" 2438 | dependencies: 2439 | safe-buffer "~5.0.1" 2440 | 2441 | stringmap@~0.2.2: 2442 | version "0.2.2" 2443 | resolved "https://registry.yarnpkg.com/stringmap/-/stringmap-0.2.2.tgz#556c137b258f942b8776f5b2ef582aa069d7d1b1" 2444 | 2445 | stringset@~0.2.1: 2446 | version "0.2.1" 2447 | resolved "https://registry.yarnpkg.com/stringset/-/stringset-0.2.1.tgz#ef259c4e349344377fcd1c913dd2e848c9c042b5" 2448 | 2449 | stringstream@~0.0.4: 2450 | version "0.0.5" 2451 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2452 | 2453 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2454 | version "3.0.1" 2455 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2456 | dependencies: 2457 | ansi-regex "^2.0.0" 2458 | 2459 | strip-bom@3.0.0: 2460 | version "3.0.0" 2461 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2462 | 2463 | strip-bom@^2.0.0: 2464 | version "2.0.0" 2465 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2466 | dependencies: 2467 | is-utf8 "^0.2.0" 2468 | 2469 | strip-json-comments@~2.0.1: 2470 | version "2.0.1" 2471 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2472 | 2473 | supports-color@^2.0.0: 2474 | version "2.0.0" 2475 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2476 | 2477 | supports-color@^3.1.2: 2478 | version "3.2.3" 2479 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 2480 | dependencies: 2481 | has-flag "^1.0.0" 2482 | 2483 | symbol-tree@^3.2.1: 2484 | version "3.2.2" 2485 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 2486 | 2487 | tar-pack@^3.4.0: 2488 | version "3.4.0" 2489 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 2490 | dependencies: 2491 | debug "^2.2.0" 2492 | fstream "^1.0.10" 2493 | fstream-ignore "^1.0.5" 2494 | once "^1.3.3" 2495 | readable-stream "^2.1.4" 2496 | rimraf "^2.5.1" 2497 | tar "^2.2.1" 2498 | uid-number "^0.0.6" 2499 | 2500 | tar@^2.2.1: 2501 | version "2.2.1" 2502 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2503 | dependencies: 2504 | block-stream "*" 2505 | fstream "^1.0.2" 2506 | inherits "2" 2507 | 2508 | test-exclude@^4.1.1: 2509 | version "4.1.1" 2510 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" 2511 | dependencies: 2512 | arrify "^1.0.1" 2513 | micromatch "^2.3.11" 2514 | object-assign "^4.1.0" 2515 | read-pkg-up "^1.0.1" 2516 | require-main-filename "^1.0.1" 2517 | 2518 | throat@^3.0.0: 2519 | version "3.0.0" 2520 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.0.0.tgz#e7c64c867cbb3845f10877642f7b60055b8ec0d6" 2521 | 2522 | through@~2.3.8: 2523 | version "2.3.8" 2524 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2525 | 2526 | tmpl@1.0.x: 2527 | version "1.0.4" 2528 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 2529 | 2530 | to-fast-properties@^1.0.0, to-fast-properties@^1.0.1: 2531 | version "1.0.2" 2532 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 2533 | 2534 | tough-cookie@^2.3.2, tough-cookie@~2.3.0: 2535 | version "2.3.2" 2536 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 2537 | dependencies: 2538 | punycode "^1.4.1" 2539 | 2540 | tr46@~0.0.3: 2541 | version "0.0.3" 2542 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 2543 | 2544 | trim-right@^1.0.0, trim-right@^1.0.1: 2545 | version "1.0.1" 2546 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2547 | 2548 | try-resolve@^1.0.0: 2549 | version "1.0.1" 2550 | resolved "https://registry.yarnpkg.com/try-resolve/-/try-resolve-1.0.1.tgz#cfde6fabd72d63e5797cfaab873abbe8e700e912" 2551 | 2552 | tryor@~0.1.2: 2553 | version "0.1.2" 2554 | resolved "https://registry.yarnpkg.com/tryor/-/tryor-0.1.2.tgz#8145e4ca7caff40acde3ccf946e8b8bb75b4172b" 2555 | 2556 | tunnel-agent@^0.6.0: 2557 | version "0.6.0" 2558 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2559 | dependencies: 2560 | safe-buffer "^5.0.1" 2561 | 2562 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2563 | version "0.14.5" 2564 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2565 | 2566 | type-check@~0.3.2: 2567 | version "0.3.2" 2568 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2569 | dependencies: 2570 | prelude-ls "~1.1.2" 2571 | 2572 | uc.micro@^1.0.1, uc.micro@^1.0.3: 2573 | version "1.0.3" 2574 | resolved "https://registry.yarnpkg.com/uc.micro/-/uc.micro-1.0.3.tgz#7ed50d5e0f9a9fb0a573379259f2a77458d50192" 2575 | 2576 | uglify-js@^2.6: 2577 | version "2.8.21" 2578 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.21.tgz#1733f669ae6f82fc90c7b25ec0f5c783ee375314" 2579 | dependencies: 2580 | source-map "~0.5.1" 2581 | yargs "~3.10.0" 2582 | optionalDependencies: 2583 | uglify-to-browserify "~1.0.0" 2584 | 2585 | uglify-to-browserify@~1.0.0: 2586 | version "1.0.2" 2587 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 2588 | 2589 | uid-number@^0.0.6: 2590 | version "0.0.6" 2591 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2592 | 2593 | user-home@^1.1.1: 2594 | version "1.1.1" 2595 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 2596 | 2597 | util-deprecate@~1.0.1: 2598 | version "1.0.2" 2599 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2600 | 2601 | uuid@^3.0.0: 2602 | version "3.0.1" 2603 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 2604 | 2605 | validate-npm-package-license@^3.0.1: 2606 | version "3.0.1" 2607 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2608 | dependencies: 2609 | spdx-correct "~1.0.0" 2610 | spdx-expression-parse "~1.0.0" 2611 | 2612 | verror@1.3.6: 2613 | version "1.3.6" 2614 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 2615 | dependencies: 2616 | extsprintf "1.0.2" 2617 | 2618 | walker@~1.0.5: 2619 | version "1.0.7" 2620 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 2621 | dependencies: 2622 | makeerror "1.0.x" 2623 | 2624 | watch@~0.10.0: 2625 | version "0.10.0" 2626 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 2627 | 2628 | webidl-conversions@^3.0.0: 2629 | version "3.0.1" 2630 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 2631 | 2632 | webidl-conversions@^4.0.0: 2633 | version "4.0.1" 2634 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.1.tgz#8015a17ab83e7e1b311638486ace81da6ce206a0" 2635 | 2636 | whatwg-encoding@^1.0.1: 2637 | version "1.0.1" 2638 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 2639 | dependencies: 2640 | iconv-lite "0.4.13" 2641 | 2642 | whatwg-url@^4.3.0: 2643 | version "4.7.0" 2644 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.7.0.tgz#202035ac1955b087cdd20fa8b58ded3ab1cd2af5" 2645 | dependencies: 2646 | tr46 "~0.0.3" 2647 | webidl-conversions "^3.0.0" 2648 | 2649 | which-module@^1.0.0: 2650 | version "1.0.0" 2651 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 2652 | 2653 | which@^1.2.12: 2654 | version "1.2.14" 2655 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 2656 | dependencies: 2657 | isexe "^2.0.0" 2658 | 2659 | wide-align@^1.1.0: 2660 | version "1.1.2" 2661 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 2662 | dependencies: 2663 | string-width "^1.0.2" 2664 | 2665 | window-size@0.1.0: 2666 | version "0.1.0" 2667 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 2668 | 2669 | window-size@^0.1.2: 2670 | version "0.1.4" 2671 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.4.tgz#f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876" 2672 | 2673 | wordwrap@0.0.2, wordwrap@~0.0.2: 2674 | version "0.0.2" 2675 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 2676 | 2677 | wordwrap@~1.0.0: 2678 | version "1.0.0" 2679 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2680 | 2681 | worker-farm@^1.3.1: 2682 | version "1.3.1" 2683 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.3.1.tgz#4333112bb49b17aa050b87895ca6b2cacf40e5ff" 2684 | dependencies: 2685 | errno ">=0.1.1 <0.2.0-0" 2686 | xtend ">=4.0.0 <4.1.0-0" 2687 | 2688 | wrap-ansi@^2.0.0: 2689 | version "2.1.0" 2690 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 2691 | dependencies: 2692 | string-width "^1.0.1" 2693 | strip-ansi "^3.0.1" 2694 | 2695 | wrappy@1: 2696 | version "1.0.2" 2697 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2698 | 2699 | xml-name-validator@^2.0.1: 2700 | version "2.0.1" 2701 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 2702 | 2703 | "xtend@>=4.0.0 <4.1.0-0": 2704 | version "4.0.1" 2705 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2706 | 2707 | y18n@^3.2.0, y18n@^3.2.1: 2708 | version "3.2.1" 2709 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 2710 | 2711 | yargs-parser@^5.0.0: 2712 | version "5.0.0" 2713 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" 2714 | dependencies: 2715 | camelcase "^3.0.0" 2716 | 2717 | yargs@^7.0.2: 2718 | version "7.1.0" 2719 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" 2720 | dependencies: 2721 | camelcase "^3.0.0" 2722 | cliui "^3.2.0" 2723 | decamelize "^1.1.1" 2724 | get-caller-file "^1.0.1" 2725 | os-locale "^1.4.0" 2726 | read-pkg-up "^1.0.1" 2727 | require-directory "^2.1.1" 2728 | require-main-filename "^1.0.1" 2729 | set-blocking "^2.0.0" 2730 | string-width "^1.0.2" 2731 | which-module "^1.0.0" 2732 | y18n "^3.2.1" 2733 | yargs-parser "^5.0.0" 2734 | 2735 | yargs@~3.10.0: 2736 | version "3.10.0" 2737 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 2738 | dependencies: 2739 | camelcase "^1.0.2" 2740 | cliui "^2.1.0" 2741 | decamelize "^1.0.0" 2742 | window-size "0.1.0" 2743 | 2744 | yargs@~3.27.0: 2745 | version "3.27.0" 2746 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.27.0.tgz#21205469316e939131d59f2da0c6d7f98221ea40" 2747 | dependencies: 2748 | camelcase "^1.2.1" 2749 | cliui "^2.1.0" 2750 | decamelize "^1.0.0" 2751 | os-locale "^1.4.0" 2752 | window-size "^0.1.2" 2753 | y18n "^3.2.0" 2754 | --------------------------------------------------------------------------------