├── .npmignore ├── .gitignore ├── .travis.yml ├── .tern-project ├── src ├── key-stroke.es6 ├── markdown.es6 ├── utils.es6 └── index.es6 ├── LICENSE.md ├── package.json ├── test ├── utils-test.es6 └── editor-test.es6 ├── README.md └── yarn.lock /.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | dist 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | pages 3 | lib 4 | .nyc_output 5 | coverage 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - "5" 5 | - "6" 6 | 7 | script: 8 | - npm run standard 9 | - npm test 10 | after_success: 11 | - npm run coverage 12 | -------------------------------------------------------------------------------- /.tern-project: -------------------------------------------------------------------------------- 1 | { 2 | "ecmaVersion": 6, 3 | "libs": [ 4 | "browser" 5 | ], 6 | "plugins": { 7 | "complete_strings": { 8 | "maxLength": 15 9 | }, 10 | "node": { 11 | "dontLoad": "", 12 | "load": "", 13 | "modules": "" 14 | }, 15 | "angular": {}, 16 | "modules": { 17 | "dontLoad": "", 18 | "load": "", 19 | "modules": "" 20 | }, 21 | "es_modules": {}, 22 | "doc_comment": { 23 | "fullDocs": true, 24 | "strong": false 25 | } 26 | } 27 | } -------------------------------------------------------------------------------- /src/key-stroke.es6: -------------------------------------------------------------------------------- 1 | export default class KeyStroke { 2 | static parse (str, button) { 3 | const strokes = str.split(/-|\+/) 4 | const key = strokes.pop() 5 | const modifiers = { 6 | ctrl: false, 7 | shift: false, 8 | alt: false, 9 | meta: false 10 | } 11 | 12 | strokes.forEach((stroke) => modifiers[stroke.toLowerCase()] = true) 13 | 14 | return new KeyStroke(key, modifiers, button) 15 | } 16 | constructor (key, modifiers, trigger) { 17 | this.key = key 18 | this.modifiers = modifiers 19 | this.trigger = trigger 20 | } 21 | matches (event) { 22 | const key = event.char || event.key || String.fromCharCode(event.keyCode) 23 | 24 | return key === this.key && 25 | event.ctrlKey === this.modifiers.ctrl && 26 | event.shiftKey === this.modifiers.shift && 27 | event.altKey === this.modifiers.alt && 28 | event.metaKey === this.modifiers.meta 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | #### MIT License 2 | 3 | Copyright (c) 2016 Cédric Néhémie 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 | -------------------------------------------------------------------------------- /src/markdown.es6: -------------------------------------------------------------------------------- 1 | import {wholeLinesAtCursor, patchLines} from './utils' 2 | 3 | export default { 4 | blockquote: (textarea) => { 5 | const [start, end, string] = wholeLinesAtCursor(textarea) 6 | const newSelection = patchLines(string, line => `> ${line}`) 7 | 8 | return [start, end, newSelection] 9 | }, 10 | 11 | codeBlock: (textarea) => { 12 | const [start, end, string] = wholeLinesAtCursor(textarea) 13 | const newSelection = patchLines(string, line => ` ${line}`) 14 | 15 | return [start, end, newSelection] 16 | }, 17 | 18 | orderedList: (textarea) => { 19 | const [start, end, string] = wholeLinesAtCursor(textarea) 20 | const newSelection = patchLines(string, (line, i) => 21 | i === 0 ? `1. ${line}` : ` ${line}` 22 | ) 23 | 24 | return [start, end, newSelection] 25 | }, 26 | 27 | unorderedList: (textarea) => { 28 | const [start, end, string] = wholeLinesAtCursor(textarea) 29 | const newSelection = patchLines(string, (line, i) => 30 | i === 0 ? `- ${line}` : ` ${line}` 31 | ) 32 | 33 | return [start, end, newSelection] 34 | }, 35 | 36 | // Repeaters 37 | repeatOrderedList: [ 38 | (line) => line.match(/^\d+\. /), 39 | (line) => `${parseInt(line.match(/^\d+/)[0], 10) + 1}. ` 40 | ] 41 | } 42 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "widjet-text-editor", 3 | "version": "1.0.1", 4 | "description": "A widget to edit rich text in a textarea", 5 | "main": "lib/index.js", 6 | "jsnext:main": "src/index.es6", 7 | "scripts": { 8 | "test": "nyc mocha --timeout 5000 --recursive --compilers js:babel-register test/**/*.es6 test/*.es6", 9 | "lcov_report": "nyc report --reporter=lcov", 10 | "coverage": "npm run lcov_report && codecov", 11 | "babel": "babel src --out-dir lib", 12 | "standard": "standard src/*.es6 test/*.es6", 13 | "esdoc": "esdoc -c esdoc.json", 14 | "prepublish": "npm run babel", 15 | "start": "widjet-test-server test/**/*.es6" 16 | }, 17 | "keywords": [ 18 | "widgets", 19 | "widget", 20 | "web", 21 | "widjet", 22 | "text editor" 23 | ], 24 | "repository": { 25 | "type": "git", 26 | "url": "git://github.com/abe33/widjet-text-editor.git" 27 | }, 28 | "bugs": "http://github.com/abe33/widjet-text-editor/issues", 29 | "commits": "http://github.com/abe33/widjet-text-editor/commits", 30 | "author": "Cédric Néhémie ", 31 | "license": "MIT", 32 | "devDependencies": { 33 | "babel-eslint": "^7.0.0", 34 | "babel-plugin-istanbul": "^2.0.1", 35 | "babel-register": "^6.14.0", 36 | "codecov": "^1.0.0", 37 | "esdoc": "^0.4.0", 38 | "expect.js": "^0.3.1", 39 | "mocha": "^3.0.0", 40 | "mocha-jsdom": "^1.1.0", 41 | "nyc": "^8.3.0", 42 | "sinon": "^1.17.4", 43 | "standard": "^5.4.1", 44 | "widjet-test-utils": "^1.7.0" 45 | }, 46 | "dependencies": { 47 | "babel-cli": "^6.3.17", 48 | "babel-preset-es2015": "^6.3.13", 49 | "jsdom": "^9.8.3", 50 | "widjet": "^1.0.4", 51 | "widjet-disposables": "*", 52 | "widjet-utils": "^0.3.0" 53 | }, 54 | "standard": { 55 | "parser": "babel-eslint", 56 | "globals": [ 57 | "it", 58 | "describe", 59 | "beforeEach", 60 | "afterEach" 61 | ] 62 | }, 63 | "babel": { 64 | "presets": [ 65 | "es2015" 66 | ], 67 | "env": { 68 | "test": { 69 | "plugins": [ 70 | "istanbul" 71 | ] 72 | } 73 | } 74 | }, 75 | "nyc": { 76 | "include": [ 77 | "src/*.es6" 78 | ], 79 | "extension": [ 80 | ".es6" 81 | ], 82 | "require": [ 83 | "babel-register" 84 | ] 85 | } 86 | } 87 | -------------------------------------------------------------------------------- /src/utils.es6: -------------------------------------------------------------------------------- 1 | export function insertText (textarea, start, end, text) { 2 | textarea.value = textarea.value.substring(0, start) + 3 | text + 4 | textarea.value.substring(end, textarea.value.length) 5 | } 6 | 7 | export function wrapSelection (textarea, prefix, suffix) { 8 | const start = textarea.selectionStart 9 | const end = textarea.selectionEnd 10 | const selectedText = textarea.value.substring(start, end) 11 | const replacement = prefix + selectedText + suffix 12 | 13 | insertText(textarea, start, end, replacement) 14 | 15 | textarea.selectionStart = start + prefix.length 16 | textarea.selectionEnd = end + prefix.length 17 | } 18 | 19 | export function collectMatches (string, regex) { 20 | let match 21 | const matches = [] 22 | 23 | while ((match = regex.exec(string))) { 24 | matches.push(match[0]) 25 | } 26 | 27 | return matches 28 | } 29 | 30 | export function scanLines (block) { 31 | return function (textarea, ...args) { 32 | const lines = textarea.value.split(/\n/) 33 | let counter = 0 34 | 35 | for (let i = 0; i < lines.length; i++) { 36 | const line = lines[i] 37 | const result = block({ 38 | textarea, line, lineIndex: i, charIndex: counter 39 | }, ...args) 40 | 41 | if (result != null) { return result } 42 | counter += line.length + 1 43 | } 44 | } 45 | } 46 | 47 | export const lineAt = scanLines(({line, charIndex}, index) => 48 | index >= charIndex && index <= charIndex + line.length ? line : undefined 49 | ) 50 | 51 | export const lineStartIndexAt = scanLines(({line, charIndex}, index) => 52 | index >= charIndex && index <= charIndex + line.length ? charIndex : undefined 53 | ) 54 | 55 | export const lineEndIndexAt = scanLines(({line, charIndex}, index) => 56 | index >= charIndex && index <= charIndex + line.length 57 | ? charIndex + line.length 58 | : undefined 59 | ) 60 | 61 | export const lineAtCursor = (textarea) => 62 | lineAt(textarea, textarea.selectionStart) 63 | 64 | export const lineStartIndexAtCursor = (textarea) => 65 | lineStartIndexAt(textarea, textarea.selectionStart) 66 | 67 | export const lineEndIndexAtCursor = (textarea) => 68 | lineEndIndexAt(textarea, textarea.selectionStart) 69 | 70 | export const wholeLinesContaining = (textarea, start, end = start) => { 71 | const s = Math.min(lineStartIndexAt(textarea, start), start) 72 | const e = Math.max(lineEndIndexAt(textarea, end), end) 73 | return [s, e, textarea.value.substring(s, e)] 74 | } 75 | 76 | export const wholeLinesAtCursor = (textarea) => 77 | wholeLinesContaining(textarea, textarea.selectionStart, textarea.selectionEnd) 78 | 79 | export const patchLines = (str, block) => str.split('\n').map(block).join('\n') 80 | 81 | export default { 82 | lineAt, 83 | lineAtCursor, 84 | lineEndIndexAt, 85 | lineEndIndexAtCursor, 86 | lineStartIndexAt, 87 | lineStartIndexAtCursor, 88 | patchLines, 89 | scanLines, 90 | wholeLinesAtCursor, 91 | wholeLinesContaining 92 | } 93 | -------------------------------------------------------------------------------- /src/index.es6: -------------------------------------------------------------------------------- 1 | import widgets from 'widjet' 2 | import {asArray, when} from 'widjet-utils' 3 | import {CompositeDisposable, DisposableEvent} from 'widjet-disposables' 4 | 5 | import {collectMatches, wrapSelection, lineAtCursor, insertText} from './utils' 6 | import utils from './utils' 7 | import KeyStroke from './key-stroke' 8 | import Markdown from './markdown' 9 | 10 | export {Markdown, KeyStroke} 11 | 12 | const escapeRegExp = (s) => s.replace(/[$^\[\]().+?*]/g, '\\$1') 13 | 14 | const eachPair = (o, block) => { for (let k in o) { block(k, o[k]) } } 15 | 16 | widgets.define('text-editor', (options) => { 17 | const collectTokens = options.collectTokens || ((tokens) => { 18 | return new Promise((resolve) => { 19 | resolve(tokens.reduce((memo, token) => { 20 | memo[token] = window.prompt(token.replace('$', '')) 21 | return memo 22 | }, {})) 23 | }) 24 | }) 25 | 26 | return (el) => { 27 | const textarea = el.querySelector('textarea') 28 | const keystrokes = [] 29 | const wrapButtons = asArray(el.querySelectorAll('[data-wrap]')) 30 | const nodesWithRepeater = el.querySelectorAll('[data-next-line-repeater]') 31 | const repeaters = asArray(nodesWithRepeater).map((n) => { 32 | const s = n.getAttribute('data-next-line-repeater') 33 | if (options[s]) { 34 | return options[s] 35 | } else { 36 | return [ 37 | (line) => line.match(new RegExp(`^${escapeRegExp(s)}`)), 38 | (line) => s 39 | ] 40 | } 41 | }) 42 | repeaters.push([a => true, a => undefined]) 43 | 44 | const repeater = when(repeaters) 45 | 46 | const subscriptions = new CompositeDisposable() 47 | 48 | wrapButtons.forEach((button) => { 49 | const wrap = button.getAttribute('data-wrap') 50 | 51 | if (button.hasAttribute('data-keystroke')) { 52 | keystrokes.push(KeyStroke.parse(button.getAttribute('data-keystroke'), button)) 53 | } 54 | 55 | subscriptions.add(new DisposableEvent(button, 'click', (e) => { 56 | textarea.focus() 57 | 58 | if (options[wrap]) { 59 | insertText(textarea, ...options[wrap](textarea, utils)) 60 | } else { 61 | defaultWrap(textarea, wrap) 62 | } 63 | 64 | widgets.dispatch(textarea, 'input') 65 | widgets.dispatch(textarea, 'change') 66 | 67 | e.stopImmediatePropagation() 68 | e.preventDefault() 69 | false 70 | })) 71 | }) 72 | 73 | if (keystrokes.length > 0) { 74 | subscriptions.add(new DisposableEvent(textarea, 'keydown', (e) => { 75 | const match = keystrokes.filter(ks => ks.matches(e))[0] 76 | 77 | if (match) { 78 | e.preventDefault() 79 | widgets.dispatch(match.trigger, 'click') 80 | } 81 | 82 | if (e.keyCode === 13) { 83 | checkLineRepeater(e, textarea, repeater) 84 | } 85 | })) 86 | } 87 | 88 | return subscriptions 89 | } 90 | 91 | function defaultWrap (textarea, wrap) { 92 | const [start, end] = wrap.replace(/\\\|/g, '[__PIPE__]').split('|').map(s => s.replace(/\[__PIPE__\]/g, '|')) 93 | const tokens = collectMatches(wrap, /\$\w+/g) 94 | 95 | if (tokens.length) { 96 | let newStart = start 97 | let newEnd = end 98 | 99 | collectTokens(tokens).then((results) => { 100 | eachPair(results, (token, value) => { 101 | const re = new RegExp(token.replace('$', '\\$'), 'g') 102 | newStart = newStart.replace(re, value) 103 | newEnd = newEnd.replace(re, value) 104 | }) 105 | 106 | wrapSelection(textarea, newStart, newEnd) 107 | }) 108 | } else { 109 | wrapSelection(textarea, start, end) 110 | } 111 | } 112 | }) 113 | 114 | function checkLineRepeater (event, textarea, repeater) { 115 | const line = lineAtCursor(textarea) 116 | const next = line && repeater(line) 117 | 118 | if (next) { 119 | event.preventDefault() 120 | const start = textarea.selectionStart 121 | const end = textarea.selectionEnd 122 | insertText(textarea, start, end, `\n${next}`) 123 | textarea.selectionEnd = end + next.length + 1 124 | widgets.dispatch(textarea, 'input') 125 | widgets.dispatch(textarea, 'change') 126 | } 127 | } 128 | -------------------------------------------------------------------------------- /test/utils-test.es6: -------------------------------------------------------------------------------- 1 | import expect from 'expect.js' 2 | import jsdom from 'mocha-jsdom' 3 | import sinon from 'sinon' 4 | 5 | import { 6 | lineAt, lineAtCursor, 7 | lineStartIndexAt, lineEndIndexAt, 8 | lineStartIndexAtCursor, lineEndIndexAtCursor, 9 | wholeLinesAtCursor, wholeLinesContaining, 10 | patchLines 11 | } from '../src/utils' 12 | 13 | describe('utils', () => { 14 | jsdom() 15 | 16 | let textarea 17 | 18 | beforeEach(() => { 19 | textarea = document.createElement('textarea') 20 | textarea.value = '1 some text content\n2 some text content\n3 some text content' 21 | textarea.selectionStart = 27 22 | textarea.selectionEnd = 31 23 | }) 24 | 25 | describe('lineAt()', () => { 26 | it('returns the line that contains the specified char index', () => { 27 | expect(lineAt(textarea, -1)).to.be(undefined) 28 | expect(lineAt(textarea, 0)).to.eql('1 some text content') 29 | expect(lineAt(textarea, 19)).to.eql('1 some text content') 30 | expect(lineAt(textarea, 20)).to.eql('2 some text content') 31 | expect(lineAt(textarea, 39)).to.eql('2 some text content') 32 | expect(lineAt(textarea, 40)).to.eql('3 some text content') 33 | expect(lineAt(textarea, 59)).to.eql('3 some text content') 34 | expect(lineAt(textarea, 80)).to.be(undefined) 35 | }) 36 | }) 37 | 38 | describe('lineStartIndexAt()', () => { 39 | it('returns the start char index of the line that contains the specified char index', () => { 40 | expect(lineStartIndexAt(textarea, -1)).to.be(undefined) 41 | expect(lineStartIndexAt(textarea, 0)).to.eql(0) 42 | expect(lineStartIndexAt(textarea, 19)).to.eql(0) 43 | expect(lineStartIndexAt(textarea, 20)).to.eql(20) 44 | expect(lineStartIndexAt(textarea, 39)).to.eql(20) 45 | expect(lineStartIndexAt(textarea, 40)).to.eql(40) 46 | expect(lineStartIndexAt(textarea, 59)).to.eql(40) 47 | expect(lineStartIndexAt(textarea, 80)).to.be(undefined) 48 | }) 49 | }) 50 | 51 | describe('lineEndIndexAt()', () => { 52 | it('returns the end char index of the line that contains the specified char index', () => { 53 | expect(lineEndIndexAt(textarea, -1)).to.be(undefined) 54 | expect(lineEndIndexAt(textarea, 0)).to.eql(19) 55 | expect(lineEndIndexAt(textarea, 19)).to.eql(19) 56 | expect(lineEndIndexAt(textarea, 20)).to.eql(39) 57 | expect(lineEndIndexAt(textarea, 39)).to.eql(39) 58 | expect(lineEndIndexAt(textarea, 40)).to.eql(59) 59 | expect(lineEndIndexAt(textarea, 59)).to.eql(59) 60 | expect(lineEndIndexAt(textarea, 80)).to.be(undefined) 61 | }) 62 | }) 63 | 64 | describe('wholeLinesContaining()', () => { 65 | it('returns the bounds of the lines containing the passed-in coordinate', () => { 66 | expect(wholeLinesContaining(textarea, 10)).to.eql([ 67 | 0, 19, '1 some text content' 68 | ]) 69 | 70 | expect(wholeLinesContaining(textarea, 10, 22)).to.eql([ 71 | 0, 39, '1 some text content\n2 some text content' 72 | ]) 73 | }) 74 | }) 75 | 76 | describe('patchLines()', () => { 77 | it('calls the block for each line of the string', () => { 78 | const spy = sinon.spy(() => 'foo') 79 | 80 | const res = patchLines(textarea.value, spy) 81 | 82 | expect(spy.callCount).to.eql(3) 83 | expect(res).to.eql('foo\nfoo\nfoo') 84 | }) 85 | }) 86 | 87 | describe('lineAtCursor()', () => { 88 | it('returns the line at start index of the textarea selection', () => { 89 | expect(lineAtCursor(textarea)).to.eql('2 some text content') 90 | }) 91 | }) 92 | 93 | describe('lineStartIndexAtCursor()', () => { 94 | it('returns the start index of the line that contains the textarea selection start', () => { 95 | expect(lineStartIndexAtCursor(textarea)).to.eql(20) 96 | }) 97 | }) 98 | 99 | describe('lineEndIndexAtCursor()', () => { 100 | it('returns the start index of the line that contains the textarea selection start', () => { 101 | expect(lineEndIndexAtCursor(textarea)).to.eql(39) 102 | }) 103 | }) 104 | 105 | describe('wholeLinesAtCursor()', () => { 106 | it('returns the bounds of the lines containing the textarea selection', () => { 107 | expect(wholeLinesAtCursor(textarea)).to.eql([ 108 | 20, 39, '2 some text content' 109 | ]) 110 | }) 111 | }) 112 | }) 113 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # widjet-text-editor [![Build Status](https://travis-ci.org/abe33/widjet-text-editor.svg?branch=master)](https://travis-ci.org/abe33/widjet-text-editor) [![codecov](https://codecov.io/gh/abe33/widjet-text-editor/branch/master/graph/badge.svg)](https://codecov.io/gh/abe33/widjet-text-editor) 2 | 3 | A simple text editor widget for [widjet](https://github.com/abe33/widjet). **It is not a WYSIWYG editor, just an utility to manipulate text in a text area.** 4 | 5 | ## Install 6 | 7 | ```sh 8 | npm install widjet-text-editor --save 9 | ``` 10 | 11 | ## Usage 12 | 13 | ```js 14 | import widgets from 'widjet' 15 | import 'widjet-text-editor' 16 | 17 | widgets('text-editor', '.text-editor', {on: 'load'}) 18 | ``` 19 | 20 | ```html 21 |
22 | 24 | 25 | 28 | 29 | 30 |
31 | ``` 32 | 33 | The `text-editor` widget looks for a `textarea` in its target and will build controls based on the action descriptors provided in data attributes. 34 | 35 | Three types of controls can be defined: 36 | 37 | 1. wrapping patterns, defined using the `data-wrap` attribute. It's basically a string with a `|` character marking the cursor position. When executed, the action will wrap the current selection in the textarea with that string. For instance, if the pattern is `_|_` and the word `foo` is selected, the result will be `_foo_`. The initial selection is preserved at the end of the operation. 38 | If you want to escape a `|` character in your pattern so that it is not used as a cursor mark, prefix it with `\\`. 39 | 2. key strokes, defined using the `data-keystroke` attribute, allow to trigger a wrapping action using a keyboard shortcut when the `textarea` has the focus. Keystrokes are defined using a string such as `ctrl+a` of `shift-c`. Obviously, as we are in a browser context, many keyboard shortcuts aren't available as they are already used by the browser or the system. 40 | 3. next line repeaters, defined using the `data-next-line-repeater` attribute, allow a pattern to be repeated on the new line when pressing enter. For instance, in the example above, if the cursor is on a line that starts with `- `, pressing the enter key will make the new line also prefixed with `- `. 41 | 42 | These are for the basics, but sometimes you want more control about how you wrap a selection or how you repeat a pattern line after line. 43 | 44 | A typical example is with ordered list. When the selection spans only a part of the current line, running the wrapping action should prefix the whole line and not just the selected part. And when pressing enter, the next line bullet number should have been incremented. 45 | 46 | For that purpose, instead of a using pattern in the `data-wrap` and `data-next-line-repeater` attributes, you can pass the name of a property defined on the options object passed to the widget. 47 | 48 | ### Custom Wrapper Function 49 | 50 | The value for a custom `data-wrap` must be a function with the following signature: 51 | 52 | ```js 53 | wrapper = (textarea, utils) => [start:Number, end:Number, String] 54 | ``` 55 | 56 | It receives the target textarea and an `utils` object with some functions to manipulate the textarea value and must returns an array with the start and end positions of insertion and the string to insert. 57 | 58 | #### Utilities 59 | 60 | The `utils` object passed to the wrapper function contains the following functions: 61 | 62 | ##### scanLines 63 | 64 | ```js 65 | scanLines = (func) => (textarea, ...args) => * 66 | // where 67 | func = ({textarea, line, lineIndex, charIndex}, ...args) => * 68 | ``` 69 | 70 | The `scanLines` function is used to generate a function that iterates over the lines of the textarea's value. Whenever the `func` function returns a value, that value is returned by the generated function and the scan is stopped. 71 | 72 | The `lineAt`, `lineStartIndexAt` and `lineEndIndexAt` functions are built using this function. 73 | 74 | ##### lineAt 75 | 76 | ```js 77 | lineAt = (textarea, charIndex) => String 78 | ``` 79 | 80 | Returns the whole line content where the char index lies in. 81 | 82 | ##### lineAtCursor 83 | 84 | ```js 85 | lineAtCursor = (textarea) => String 86 | ``` 87 | 88 | Returns the whole line content where the textarea's `selectionStart` lies in. 89 | 90 | ##### lineStartIndexAt 91 | 92 | ```js 93 | lineStartIndexAt = (textarea, charIndex) => Number 94 | ``` 95 | 96 | Returns the index of the first char of the line where the char index lies in. 97 | 98 | ##### lineStartIndexAtCursor 99 | 100 | ```js 101 | lineStartIndexAtCursor = (textarea) => Number 102 | ``` 103 | 104 | Returns the index of the first char of the line where the textarea's `selectionStart` lies in. 105 | 106 | ##### lineEndIndexAt 107 | 108 | ```js 109 | lineEndIndexAt = (textarea, charIndex) => Number 110 | ``` 111 | 112 | Returns the index of the last char of the line where the char index lies in. 113 | 114 | ##### lineEndIndexAtCursor 115 | 116 | ```js 117 | lineEndIndexAtCursor = (textarea) => Number 118 | ``` 119 | 120 | Returns the index of the last char of the line where the textarea's `selectionStart` lies in. 121 | 122 | ##### wholeLinesContaining 123 | 124 | ```js 125 | wholeLinesContaining = (textarea, start, end) => 126 | [start:Number, end:Number, String] 127 | ``` 128 | 129 | Returns the start and end position of the lines spanned by the range specified using `start` and `end` parameters, as well as the text of these lines. 130 | 131 | ##### wholeLinesAtCursor 132 | 133 | ```js 134 | wholeLinesAtCursor = (textarea) => [start:Number, end:Number, String] 135 | ``` 136 | 137 | Returns the start and end position of the lines spanned by the textarea's selection, as well as the text of these lines. 138 | 139 | ##### patchLines 140 | 141 | ```js 142 | patchLines = (string, func) => String 143 | // where 144 | func = (line, index) => String 145 | ``` 146 | 147 | Iterates over all the lines in `string` and replaces them with the value returned by `func`. 148 | 149 | ### Custom Repeaters 150 | 151 | Repeaters are a bit more complex to setup that wrapper. A repeater is an array containing two functions. The first function is the predicate that is used to determine whether the repeater can be applied to the current line while the second function is used to compute the prefix for the new line. 152 | 153 | Let's take the ordered list implmentation provided by the widget as an example: 154 | 155 | ```js 156 | repeatOrderedList = [ 157 | (line) => line.match(/^\d+\. /), 158 | (line) => `${parseInt(line.match(/^\d+/)[0], 10) + 1}. ` 159 | ] 160 | ``` 161 | 162 | The first function checks whether the line starts with a number followed by a dot and the second parses the number value of the current bullet then increment it by one and returns it followed by a dot and a space. 163 | 164 | ## Markdown Utility 165 | 166 | The widget also provides an object that offers implementation for common Markdown constructs such as lists, links and images, or inline styles. 167 | 168 | You can find below a basic HTML skeleton of a Markdown editor as well as the widget setup to use. 169 | 170 | ```html 171 |
172 | 174 | 175 | 177 | 178 | 180 | 181 | 183 | 184 | 187 | 188 | 191 | 192 | 195 | 196 | 199 | 200 | 201 |
202 | ``` 203 | 204 | ```js 205 | import widgets from 'widjet' 206 | import {Markdown} from 'widjet-text-editor' 207 | 208 | widgets('text-editor', '.text-editor', { 209 | on: 'load', 210 | 211 | // functions to wrap a selection in markdown blocks 212 | blockquote: Markdown.blockquote, 213 | codeBlock: Markdown.codeBlock, 214 | unorderedList: Markdown.unorderedList, 215 | orderedList: Markdown.orderedList, 216 | 217 | // function to increment automatically the list bullet in ordered lists 218 | repeatOrderedList: Markdown.repeatOrderedList 219 | }) 220 | ``` 221 | -------------------------------------------------------------------------------- /test/editor-test.es6: -------------------------------------------------------------------------------- 1 | import expect from 'expect.js' 2 | import jsdom from 'mocha-jsdom' 3 | import sinon from 'sinon' 4 | import widgets from 'widjet' 5 | 6 | import {click, keydown} from 'widjet-test-utils/events' 7 | import {waitsFor} from 'widjet-test-utils/async' 8 | import {setPageContent, getTestRoot} from 'widjet-test-utils/dom' 9 | 10 | import {Markdown} from '../src/index' 11 | 12 | describe('text-editor', () => { 13 | jsdom() 14 | 15 | let textarea 16 | 17 | beforeEach(() => { 18 | setPageContent(` 19 |
20 | 22 | 23 | 25 | 26 | 28 | 29 | 30 | 31 | 32 | 35 | 36 | 39 | 40 | 41 |
42 | `) 43 | 44 | textarea = getTestRoot().querySelector('textarea') 45 | textarea.selectionStart = textarea.selectionEnd = 0 46 | 47 | widgets('text-editor', '.text-editor', { 48 | on: 'init', 49 | repeatOrderedList: Markdown.repeatOrderedList, 50 | unorderedList: Markdown.unorderedList, 51 | orderedList: Markdown.orderedList, 52 | codeBlock: Markdown.codeBlock, 53 | blockquote: Markdown.blockquote 54 | }) 55 | }) 56 | 57 | describe('clicking on an action button', () => { 58 | beforeEach(() => { 59 | const button = getTestRoot().querySelector('[data-wrap="**|**"]') 60 | click(button) 61 | }) 62 | 63 | it('inserts the corresponding text', () => { 64 | expect(textarea.value).to.eql('****') 65 | }) 66 | 67 | it('places the cursor at the position of the | in the data-wrap value', () => { 68 | expect(textarea.selectionEnd).to.eql(2) 69 | expect(textarea.selectionStart).to.eql(2) 70 | }) 71 | 72 | describe('that have a drap-wrap attribute that refer to a function in the options', () => { 73 | beforeEach(() => { 74 | textarea.value = 'some text content\nsome text content\nsome text content' 75 | textarea.selectionStart = 5 76 | textarea.selectionEnd = 27 77 | 78 | const button = getTestRoot().querySelector('[data-wrap="codeBlock"]') 79 | click(button) 80 | }) 81 | 82 | it('inserts the corresponding text', () => { 83 | expect(textarea.value).to.eql(' some text content\n some text content\nsome text content') 84 | }) 85 | }) 86 | }) 87 | 88 | describe('when there is no controls with Keystrokes', () => { 89 | beforeEach(() => { 90 | setPageContent(` 91 |
92 | 93 |
94 | `) 95 | 96 | textarea = getTestRoot().querySelector('textarea') 97 | sinon.stub(textarea, 'addEventListener') 98 | 99 | widgets('text-editor', '.text-editor', {on: 'init'}) 100 | }) 101 | 102 | it('does not register a listener for the textarea keydown event', () => { 103 | expect(textarea.addEventListener.calledWith('keydown')).not.to.be.ok() 104 | }) 105 | }) 106 | 107 | describe('when the text editor has the focus', () => { 108 | beforeEach(() => { textarea.focus() }) 109 | 110 | describe('using a key stroke', () => { 111 | describe('when the textarea selection start and end are intricated', () => { 112 | beforeEach(() => { 113 | keydown(textarea, {ctrlKey: true, key: 'b'}) 114 | }) 115 | 116 | it('inserts the corresponding text', () => { 117 | expect(textarea.value).to.eql('****') 118 | }) 119 | 120 | it('places the cursor at the position of the | in the data-wrap value', () => { 121 | expect(textarea.selectionEnd).to.eql(2) 122 | expect(textarea.selectionStart).to.eql(2) 123 | }) 124 | }) 125 | 126 | describe('when the textarea selection spans several characters', () => { 127 | beforeEach(() => { 128 | textarea.value = 'some text content' 129 | textarea.selectionStart = 5 130 | textarea.selectionEnd = 9 131 | 132 | keydown(textarea, {ctrlKey: true, keyCode: 98}) 133 | }) 134 | 135 | it('wraps the selected text with the data-wrap value', () => { 136 | expect(textarea.value).to.eql('some **text** content') 137 | }) 138 | 139 | it('moves the selection to follow the wrapped content', () => { 140 | expect(textarea.selectionStart).to.eql(7) 141 | expect(textarea.selectionEnd).to.eql(11) 142 | }) 143 | }) 144 | 145 | describe('when the wrap pattern contains a token', () => { 146 | beforeEach(() => { 147 | sinon.stub(window, 'prompt').returns('foo') 148 | 149 | textarea.value = 'some text content' 150 | textarea.selectionStart = 5 151 | textarea.selectionEnd = 9 152 | 153 | keydown(textarea, {ctrlKey: true, key: 'u'}) 154 | 155 | return waitsFor('user prompted', () => window.prompt.called) 156 | }) 157 | 158 | it('prompts the user for input and uses the provided value', () => { 159 | expect(textarea.value).to.eql('some [text](foo "foo") content') 160 | }) 161 | }) 162 | 163 | describe('when the wrap pattern contains an escaped pipe', () => { 164 | beforeEach(() => { 165 | textarea.value = 'some text content' 166 | textarea.selectionStart = 5 167 | textarea.selectionEnd = 9 168 | 169 | keydown(textarea, {ctrlKey: true, key: 'r'}) 170 | }) 171 | 172 | it('inserts pipes properly', () => { 173 | expect(textarea.value).to.eql('some |text| content') 174 | }) 175 | }) 176 | }) 177 | 178 | describe('pressing enter', () => { 179 | describe('on a line that matches a repeater pattern', () => { 180 | describe('that has no custom repeater function', () => { 181 | beforeEach(() => { 182 | textarea.value = '- some text content' 183 | textarea.selectionStart = textarea.value.length 184 | 185 | keydown(textarea, {keyCode: 13}) 186 | }) 187 | 188 | it('reproduces the pattern on the next line', () => { 189 | expect(textarea.value).to.eql('- some text content\n- ') 190 | }) 191 | }) 192 | 193 | describe('that has a repeater function', () => { 194 | beforeEach(() => { 195 | textarea.value = '1. some text content' 196 | textarea.selectionStart = textarea.value.length 197 | 198 | keydown(textarea, {keyCode: 13}) 199 | }) 200 | 201 | it('calls the repeater function', () => { 202 | expect(textarea.value).to.eql('1. some text content\n2. ') 203 | }) 204 | }) 205 | }) 206 | 207 | describe('on a normal line', () => { 208 | beforeEach(() => { 209 | textarea.value = '\nsome text content' 210 | textarea.selectionStart = textarea.value.length 211 | 212 | keydown(textarea, {keyCode: 13}) 213 | }) 214 | 215 | it('does not insert anything', () => { 216 | expect(textarea.value).to.eql('\nsome text content') 217 | }) 218 | }) 219 | }) 220 | }) 221 | 222 | describe('markdown helpers', () => { 223 | describe('blockquote', () => { 224 | beforeEach(() => { 225 | textarea.value = 'some text content\nsome text content\nsome text content' 226 | textarea.selectionStart = 5 227 | textarea.selectionEnd = 27 228 | 229 | const button = getTestRoot().querySelector('[data-wrap="blockquote"]') 230 | click(button) 231 | }) 232 | 233 | it('inserts a > on each of the selection', () => { 234 | expect(textarea.value).to.eql('> some text content\n> some text content\nsome text content') 235 | }) 236 | }) 237 | 238 | describe('unorderedList', () => { 239 | beforeEach(() => { 240 | textarea.value = 'some text content\nsome text content\nsome text content' 241 | textarea.selectionStart = 5 242 | textarea.selectionEnd = 27 243 | 244 | const button = getTestRoot().querySelector('[data-wrap="unorderedList"]') 245 | click(button) 246 | }) 247 | 248 | it('inserts a - on the first line of the selection', () => { 249 | expect(textarea.value).to.eql('- some text content\n some text content\nsome text content') 250 | }) 251 | }) 252 | 253 | describe('orderedList', () => { 254 | beforeEach(() => { 255 | textarea.value = 'some text content\nsome text content\nsome text content' 256 | textarea.selectionStart = 5 257 | textarea.selectionEnd = 27 258 | 259 | const button = getTestRoot().querySelector('[data-wrap="orderedList"]') 260 | click(button) 261 | }) 262 | 263 | it('inserts a 1. on the first line of the selection', () => { 264 | expect(textarea.value).to.eql('1. some text content\n some text content\nsome text content') 265 | }) 266 | }) 267 | }) 268 | }) 269 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abab@^1.0.0: 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.0.9" 11 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 12 | 13 | acorn-globals@^1.0.4: 14 | version "1.0.9" 15 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-1.0.9.tgz#55bb5e98691507b74579d0513413217c380c54cf" 16 | dependencies: 17 | acorn "^2.1.0" 18 | 19 | acorn-to-esprima@^2.0.8: 20 | version "2.0.8" 21 | resolved "https://registry.yarnpkg.com/acorn-to-esprima/-/acorn-to-esprima-2.0.8.tgz#003f0c642eb92132f417d3708f14ada82adf2eb1" 22 | 23 | acorn@^1.0.3: 24 | version "1.2.2" 25 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-1.2.2.tgz#c8ce27de0acc76d896d2b1fad3df588d9e82f014" 26 | 27 | acorn@^2.1.0, acorn@^2.4.0: 28 | version "2.7.0" 29 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-2.7.0.tgz#ab6e7d9d886aaca8b085bc3312b79a198433f0e7" 30 | 31 | acorn@^3.1.0: 32 | version "3.3.0" 33 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 34 | 35 | acorn@^4.0.1: 36 | version "4.0.3" 37 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.3.tgz#1a3e850b428e73ba6b09d1cc527f5aaad4d03ef1" 38 | 39 | align-text@^0.1.1, align-text@^0.1.3: 40 | version "0.1.4" 41 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 42 | dependencies: 43 | kind-of "^3.0.2" 44 | longest "^1.0.1" 45 | repeat-string "^1.5.2" 46 | 47 | alter@~0.2.0: 48 | version "0.2.0" 49 | resolved "https://registry.yarnpkg.com/alter/-/alter-0.2.0.tgz#c7588808617572034aae62480af26b1d4d1cb3cd" 50 | dependencies: 51 | stable "~0.1.3" 52 | 53 | amdefine@>=0.0.4: 54 | version "1.0.1" 55 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 56 | 57 | ansi-escapes@^1.1.0: 58 | version "1.4.0" 59 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 60 | 61 | ansi-regex@^2.0.0: 62 | version "2.0.0" 63 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.0.0.tgz#c5061b6e0ef8a81775e50f5d66151bf6bf371107" 64 | 65 | ansi-styles@^2.0.1, ansi-styles@^2.2.1: 66 | version "2.2.1" 67 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 68 | 69 | anymatch@^1.3.0: 70 | version "1.3.0" 71 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 72 | dependencies: 73 | arrify "^1.0.0" 74 | micromatch "^2.1.5" 75 | 76 | append-transform@^0.3.0: 77 | version "0.3.0" 78 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.3.0.tgz#d6933ce4a85f09445d9ccc4cc119051b7381a813" 79 | 80 | aproba@^1.0.3: 81 | version "1.0.4" 82 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.0.4.tgz#2713680775e7614c8ba186c065d4e2e52d1072c0" 83 | 84 | archy@^1.0.0: 85 | version "1.0.0" 86 | resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" 87 | 88 | are-we-there-yet@~1.1.2: 89 | version "1.1.2" 90 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 91 | dependencies: 92 | delegates "^1.0.0" 93 | readable-stream "^2.0.0 || ^1.1.13" 94 | 95 | argparse@^1.0.7: 96 | version "1.0.9" 97 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 98 | dependencies: 99 | sprintf-js "~1.0.2" 100 | 101 | argv@>=0.0.2: 102 | version "0.0.2" 103 | resolved "https://registry.yarnpkg.com/argv/-/argv-0.0.2.tgz#ecbd16f8949b157183711b1bda334f37840185ab" 104 | 105 | arr-diff@^2.0.0: 106 | version "2.0.0" 107 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 108 | dependencies: 109 | arr-flatten "^1.0.1" 110 | 111 | arr-flatten@^1.0.1: 112 | version "1.0.1" 113 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 114 | 115 | array-equal@^1.0.0: 116 | version "1.0.0" 117 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 118 | 119 | array-union@^1.0.1: 120 | version "1.0.2" 121 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 122 | dependencies: 123 | array-uniq "^1.0.1" 124 | 125 | array-uniq@^1.0.1: 126 | version "1.0.3" 127 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 128 | 129 | array-unique@^0.2.1: 130 | version "0.2.1" 131 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 132 | 133 | arrify@^1.0.0, arrify@^1.0.1: 134 | version "1.0.1" 135 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 136 | 137 | asap@^2.0.0: 138 | version "2.0.5" 139 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f" 140 | 141 | asn1@~0.2.3: 142 | version "0.2.3" 143 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 144 | 145 | assert-plus@^0.2.0: 146 | version "0.2.0" 147 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 148 | 149 | assert-plus@^1.0.0: 150 | version "1.0.0" 151 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 152 | 153 | ast-traverse@~0.1.1: 154 | version "0.1.1" 155 | resolved "https://registry.yarnpkg.com/ast-traverse/-/ast-traverse-0.1.1.tgz#69cf2b8386f19dcda1bb1e05d68fe359d8897de6" 156 | 157 | ast-types@0.8.12: 158 | version "0.8.12" 159 | resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.8.12.tgz#a0d90e4351bb887716c83fd637ebf818af4adfcc" 160 | 161 | async-each@^1.0.0: 162 | version "1.0.1" 163 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 164 | 165 | async@^1.4.0, async@^1.4.2: 166 | version "1.5.2" 167 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 168 | 169 | async@~0.2.6: 170 | version "0.2.10" 171 | resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" 172 | 173 | asynckit@^0.4.0: 174 | version "0.4.0" 175 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 176 | 177 | aws-sign2@~0.6.0: 178 | version "0.6.0" 179 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 180 | 181 | aws4@^1.2.1: 182 | version "1.5.0" 183 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.5.0.tgz#0a29ffb79c31c9e712eeb087e8e7a64b4a56d755" 184 | 185 | babel-cli@^6.3.17: 186 | version "6.18.0" 187 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.18.0.tgz#92117f341add9dead90f6fa7d0a97c0cc08ec186" 188 | dependencies: 189 | babel-core "^6.18.0" 190 | babel-polyfill "^6.16.0" 191 | babel-register "^6.18.0" 192 | babel-runtime "^6.9.0" 193 | commander "^2.8.1" 194 | convert-source-map "^1.1.0" 195 | fs-readdir-recursive "^1.0.0" 196 | glob "^5.0.5" 197 | lodash "^4.2.0" 198 | output-file-sync "^1.1.0" 199 | path-is-absolute "^1.0.0" 200 | slash "^1.0.0" 201 | source-map "^0.5.0" 202 | v8flags "^2.0.10" 203 | optionalDependencies: 204 | chokidar "^1.0.0" 205 | 206 | babel-code-frame@^6.16.0: 207 | version "6.16.0" 208 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.16.0.tgz#f90e60da0862909d3ce098733b5d3987c97cb8de" 209 | dependencies: 210 | chalk "^1.1.0" 211 | esutils "^2.0.2" 212 | js-tokens "^2.0.0" 213 | 214 | babel-core@6, babel-core@^6.18.0: 215 | version "6.18.2" 216 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.18.2.tgz#d8bb14dd6986fa4f3566a26ceda3964fa0e04e5b" 217 | dependencies: 218 | babel-code-frame "^6.16.0" 219 | babel-generator "^6.18.0" 220 | babel-helpers "^6.16.0" 221 | babel-messages "^6.8.0" 222 | babel-register "^6.18.0" 223 | babel-runtime "^6.9.1" 224 | babel-template "^6.16.0" 225 | babel-traverse "^6.18.0" 226 | babel-types "^6.18.0" 227 | babylon "^6.11.0" 228 | convert-source-map "^1.1.0" 229 | debug "^2.1.1" 230 | json5 "^0.5.0" 231 | lodash "^4.2.0" 232 | minimatch "^3.0.2" 233 | path-is-absolute "^1.0.0" 234 | private "^0.1.6" 235 | slash "^1.0.0" 236 | source-map "^0.5.0" 237 | 238 | babel-core@^5.8.34: 239 | version "5.8.38" 240 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-5.8.38.tgz#1fcaee79d7e61b750b00b8e54f6dfc9d0af86558" 241 | dependencies: 242 | babel-plugin-constant-folding "^1.0.1" 243 | babel-plugin-dead-code-elimination "^1.0.2" 244 | babel-plugin-eval "^1.0.1" 245 | babel-plugin-inline-environment-variables "^1.0.1" 246 | babel-plugin-jscript "^1.0.4" 247 | babel-plugin-member-expression-literals "^1.0.1" 248 | babel-plugin-property-literals "^1.0.1" 249 | babel-plugin-proto-to-assign "^1.0.3" 250 | babel-plugin-react-constant-elements "^1.0.3" 251 | babel-plugin-react-display-name "^1.0.3" 252 | babel-plugin-remove-console "^1.0.1" 253 | babel-plugin-remove-debugger "^1.0.1" 254 | babel-plugin-runtime "^1.0.7" 255 | babel-plugin-undeclared-variables-check "^1.0.2" 256 | babel-plugin-undefined-to-void "^1.1.6" 257 | babylon "^5.8.38" 258 | bluebird "^2.9.33" 259 | chalk "^1.0.0" 260 | convert-source-map "^1.1.0" 261 | core-js "^1.0.0" 262 | debug "^2.1.1" 263 | detect-indent "^3.0.0" 264 | esutils "^2.0.0" 265 | fs-readdir-recursive "^0.1.0" 266 | globals "^6.4.0" 267 | home-or-tmp "^1.0.0" 268 | is-integer "^1.0.4" 269 | js-tokens "1.0.1" 270 | json5 "^0.4.0" 271 | lodash "^3.10.0" 272 | minimatch "^2.0.3" 273 | output-file-sync "^1.1.0" 274 | path-exists "^1.0.0" 275 | path-is-absolute "^1.0.0" 276 | private "^0.1.6" 277 | regenerator "0.8.40" 278 | regexpu "^1.3.0" 279 | repeating "^1.1.2" 280 | resolve "^1.1.6" 281 | shebang-regex "^1.0.0" 282 | slash "^1.0.0" 283 | source-map "^0.5.0" 284 | source-map-support "^0.2.10" 285 | to-fast-properties "^1.0.0" 286 | trim-right "^1.0.0" 287 | try-resolve "^1.0.0" 288 | 289 | babel-eslint@^7.0.0: 290 | version "7.1.0" 291 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.1.0.tgz#d506a5174ba224e25a2d17e128e2ba8987139ddc" 292 | dependencies: 293 | babel-traverse "^6.15.0" 294 | babel-types "^6.15.0" 295 | babylon "^6.11.2" 296 | lodash.pickby "^4.6.0" 297 | 298 | babel-generator@^6.18.0: 299 | version "6.18.0" 300 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.18.0.tgz#e4f104cb3063996d9850556a45aae4a022060a07" 301 | dependencies: 302 | babel-messages "^6.8.0" 303 | babel-runtime "^6.9.0" 304 | babel-types "^6.18.0" 305 | detect-indent "^4.0.0" 306 | jsesc "^1.3.0" 307 | lodash "^4.2.0" 308 | source-map "^0.5.0" 309 | 310 | babel-helper-call-delegate@^6.18.0: 311 | version "6.18.0" 312 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.18.0.tgz#05b14aafa430884b034097ef29e9f067ea4133bd" 313 | dependencies: 314 | babel-helper-hoist-variables "^6.18.0" 315 | babel-runtime "^6.0.0" 316 | babel-traverse "^6.18.0" 317 | babel-types "^6.18.0" 318 | 319 | babel-helper-define-map@^6.18.0, babel-helper-define-map@^6.8.0: 320 | version "6.18.0" 321 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.18.0.tgz#8d6c85dc7fbb4c19be3de40474d18e97c3676ec2" 322 | dependencies: 323 | babel-helper-function-name "^6.18.0" 324 | babel-runtime "^6.9.0" 325 | babel-types "^6.18.0" 326 | lodash "^4.2.0" 327 | 328 | babel-helper-function-name@^6.18.0, babel-helper-function-name@^6.8.0: 329 | version "6.18.0" 330 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.18.0.tgz#68ec71aeba1f3e28b2a6f0730190b754a9bf30e6" 331 | dependencies: 332 | babel-helper-get-function-arity "^6.18.0" 333 | babel-runtime "^6.0.0" 334 | babel-template "^6.8.0" 335 | babel-traverse "^6.18.0" 336 | babel-types "^6.18.0" 337 | 338 | babel-helper-get-function-arity@^6.18.0: 339 | version "6.18.0" 340 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.18.0.tgz#a5b19695fd3f9cdfc328398b47dafcd7094f9f24" 341 | dependencies: 342 | babel-runtime "^6.0.0" 343 | babel-types "^6.18.0" 344 | 345 | babel-helper-hoist-variables@^6.18.0: 346 | version "6.18.0" 347 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.18.0.tgz#a835b5ab8b46d6de9babefae4d98ea41e866b82a" 348 | dependencies: 349 | babel-runtime "^6.0.0" 350 | babel-types "^6.18.0" 351 | 352 | babel-helper-optimise-call-expression@^6.18.0: 353 | version "6.18.0" 354 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.18.0.tgz#9261d0299ee1a4f08a6dd28b7b7c777348fd8f0f" 355 | dependencies: 356 | babel-runtime "^6.0.0" 357 | babel-types "^6.18.0" 358 | 359 | babel-helper-regex@^6.8.0: 360 | version "6.18.0" 361 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.18.0.tgz#ae0ebfd77de86cb2f1af258e2cc20b5fe893ecc6" 362 | dependencies: 363 | babel-runtime "^6.9.0" 364 | babel-types "^6.18.0" 365 | lodash "^4.2.0" 366 | 367 | babel-helper-replace-supers@^6.18.0, babel-helper-replace-supers@^6.8.0: 368 | version "6.18.0" 369 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.18.0.tgz#28ec69877be4144dbd64f4cc3a337e89f29a924e" 370 | dependencies: 371 | babel-helper-optimise-call-expression "^6.18.0" 372 | babel-messages "^6.8.0" 373 | babel-runtime "^6.0.0" 374 | babel-template "^6.16.0" 375 | babel-traverse "^6.18.0" 376 | babel-types "^6.18.0" 377 | 378 | babel-helpers@^6.16.0: 379 | version "6.16.0" 380 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.16.0.tgz#1095ec10d99279460553e67eb3eee9973d3867e3" 381 | dependencies: 382 | babel-runtime "^6.0.0" 383 | babel-template "^6.16.0" 384 | 385 | babel-messages@^6.8.0: 386 | version "6.8.0" 387 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.8.0.tgz#bf504736ca967e6d65ef0adb5a2a5f947c8e0eb9" 388 | dependencies: 389 | babel-runtime "^6.0.0" 390 | 391 | babel-plugin-check-es2015-constants@^6.3.13: 392 | version "6.8.0" 393 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.8.0.tgz#dbf024c32ed37bfda8dee1e76da02386a8d26fe7" 394 | dependencies: 395 | babel-runtime "^6.0.0" 396 | 397 | babel-plugin-constant-folding@^1.0.1: 398 | version "1.0.1" 399 | resolved "https://registry.yarnpkg.com/babel-plugin-constant-folding/-/babel-plugin-constant-folding-1.0.1.tgz#8361d364c98e449c3692bdba51eff0844290aa8e" 400 | 401 | babel-plugin-dead-code-elimination@^1.0.2: 402 | version "1.0.2" 403 | resolved "https://registry.yarnpkg.com/babel-plugin-dead-code-elimination/-/babel-plugin-dead-code-elimination-1.0.2.tgz#5f7c451274dcd7cccdbfbb3e0b85dd28121f0f65" 404 | 405 | babel-plugin-eval@^1.0.1: 406 | version "1.0.1" 407 | resolved "https://registry.yarnpkg.com/babel-plugin-eval/-/babel-plugin-eval-1.0.1.tgz#a2faed25ce6be69ade4bfec263f70169195950da" 408 | 409 | babel-plugin-inline-environment-variables@^1.0.1: 410 | version "1.0.1" 411 | resolved "https://registry.yarnpkg.com/babel-plugin-inline-environment-variables/-/babel-plugin-inline-environment-variables-1.0.1.tgz#1f58ce91207ad6a826a8bf645fafe68ff5fe3ffe" 412 | 413 | babel-plugin-istanbul@^2.0.1: 414 | version "2.0.3" 415 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-2.0.3.tgz#266b304b9109607d60748474394676982f660df4" 416 | dependencies: 417 | find-up "^1.1.2" 418 | istanbul-lib-instrument "^1.1.4" 419 | object-assign "^4.1.0" 420 | test-exclude "^2.1.1" 421 | 422 | babel-plugin-jscript@^1.0.4: 423 | version "1.0.4" 424 | resolved "https://registry.yarnpkg.com/babel-plugin-jscript/-/babel-plugin-jscript-1.0.4.tgz#8f342c38276e87a47d5fa0a8bd3d5eb6ccad8fcc" 425 | 426 | babel-plugin-member-expression-literals@^1.0.1: 427 | version "1.0.1" 428 | resolved "https://registry.yarnpkg.com/babel-plugin-member-expression-literals/-/babel-plugin-member-expression-literals-1.0.1.tgz#cc5edb0faa8dc927170e74d6d1c02440021624d3" 429 | 430 | babel-plugin-property-literals@^1.0.1: 431 | version "1.0.1" 432 | resolved "https://registry.yarnpkg.com/babel-plugin-property-literals/-/babel-plugin-property-literals-1.0.1.tgz#0252301900192980b1c118efea48ce93aab83336" 433 | 434 | babel-plugin-proto-to-assign@^1.0.3: 435 | version "1.0.4" 436 | resolved "https://registry.yarnpkg.com/babel-plugin-proto-to-assign/-/babel-plugin-proto-to-assign-1.0.4.tgz#c49e7afd02f577bc4da05ea2df002250cf7cd123" 437 | dependencies: 438 | lodash "^3.9.3" 439 | 440 | babel-plugin-react-constant-elements@^1.0.3: 441 | version "1.0.3" 442 | resolved "https://registry.yarnpkg.com/babel-plugin-react-constant-elements/-/babel-plugin-react-constant-elements-1.0.3.tgz#946736e8378429cbc349dcff62f51c143b34e35a" 443 | 444 | babel-plugin-react-display-name@^1.0.3: 445 | version "1.0.3" 446 | resolved "https://registry.yarnpkg.com/babel-plugin-react-display-name/-/babel-plugin-react-display-name-1.0.3.tgz#754fe38926e8424a4e7b15ab6ea6139dee0514fc" 447 | 448 | babel-plugin-remove-console@^1.0.1: 449 | version "1.0.1" 450 | resolved "https://registry.yarnpkg.com/babel-plugin-remove-console/-/babel-plugin-remove-console-1.0.1.tgz#d8f24556c3a05005d42aaaafd27787f53ff013a7" 451 | 452 | babel-plugin-remove-debugger@^1.0.1: 453 | version "1.0.1" 454 | resolved "https://registry.yarnpkg.com/babel-plugin-remove-debugger/-/babel-plugin-remove-debugger-1.0.1.tgz#fd2ea3cd61a428ad1f3b9c89882ff4293e8c14c7" 455 | 456 | babel-plugin-runtime@^1.0.7: 457 | version "1.0.7" 458 | resolved "https://registry.yarnpkg.com/babel-plugin-runtime/-/babel-plugin-runtime-1.0.7.tgz#bf7c7d966dd56ecd5c17fa1cb253c9acb7e54aaf" 459 | 460 | babel-plugin-transform-es2015-arrow-functions@^6.3.13: 461 | version "6.8.0" 462 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.8.0.tgz#5b63afc3181bdc9a8c4d481b5a4f3f7d7fef3d9d" 463 | dependencies: 464 | babel-runtime "^6.0.0" 465 | 466 | babel-plugin-transform-es2015-block-scoped-functions@^6.3.13: 467 | version "6.8.0" 468 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.8.0.tgz#ed95d629c4b5a71ae29682b998f70d9833eb366d" 469 | dependencies: 470 | babel-runtime "^6.0.0" 471 | 472 | babel-plugin-transform-es2015-block-scoping@^6.18.0: 473 | version "6.18.0" 474 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.18.0.tgz#3bfdcfec318d46df22525cdea88f1978813653af" 475 | dependencies: 476 | babel-runtime "^6.9.0" 477 | babel-template "^6.15.0" 478 | babel-traverse "^6.18.0" 479 | babel-types "^6.18.0" 480 | lodash "^4.2.0" 481 | 482 | babel-plugin-transform-es2015-classes@^6.18.0, babel-plugin-transform-es2015-classes@^6.9.0: 483 | version "6.18.0" 484 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.18.0.tgz#ffe7a17321bf83e494dcda0ae3fc72df48ffd1d9" 485 | dependencies: 486 | babel-helper-define-map "^6.18.0" 487 | babel-helper-function-name "^6.18.0" 488 | babel-helper-optimise-call-expression "^6.18.0" 489 | babel-helper-replace-supers "^6.18.0" 490 | babel-messages "^6.8.0" 491 | babel-runtime "^6.9.0" 492 | babel-template "^6.14.0" 493 | babel-traverse "^6.18.0" 494 | babel-types "^6.18.0" 495 | 496 | babel-plugin-transform-es2015-computed-properties@^6.3.13: 497 | version "6.8.0" 498 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.8.0.tgz#f51010fd61b3bd7b6b60a5fdfd307bb7a5279870" 499 | dependencies: 500 | babel-helper-define-map "^6.8.0" 501 | babel-runtime "^6.0.0" 502 | babel-template "^6.8.0" 503 | 504 | babel-plugin-transform-es2015-destructuring@^6.18.0: 505 | version "6.18.0" 506 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.18.0.tgz#a08fb89415ab82058649558bedb7bf8dafa76ba5" 507 | dependencies: 508 | babel-runtime "^6.9.0" 509 | 510 | babel-plugin-transform-es2015-duplicate-keys@^6.6.0: 511 | version "6.8.0" 512 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.8.0.tgz#fd8f7f7171fc108cc1c70c3164b9f15a81c25f7d" 513 | dependencies: 514 | babel-runtime "^6.0.0" 515 | babel-types "^6.8.0" 516 | 517 | babel-plugin-transform-es2015-for-of@^6.18.0: 518 | version "6.18.0" 519 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.18.0.tgz#4c517504db64bf8cfc119a6b8f177211f2028a70" 520 | dependencies: 521 | babel-runtime "^6.0.0" 522 | 523 | babel-plugin-transform-es2015-function-name@^6.9.0: 524 | version "6.9.0" 525 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.9.0.tgz#8c135b17dbd064e5bba56ec511baaee2fca82719" 526 | dependencies: 527 | babel-helper-function-name "^6.8.0" 528 | babel-runtime "^6.9.0" 529 | babel-types "^6.9.0" 530 | 531 | babel-plugin-transform-es2015-literals@^6.3.13: 532 | version "6.8.0" 533 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.8.0.tgz#50aa2e5c7958fc2ab25d74ec117e0cc98f046468" 534 | dependencies: 535 | babel-runtime "^6.0.0" 536 | 537 | babel-plugin-transform-es2015-modules-amd@^6.18.0: 538 | version "6.18.0" 539 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.18.0.tgz#49a054cbb762bdf9ae2d8a807076cfade6141e40" 540 | dependencies: 541 | babel-plugin-transform-es2015-modules-commonjs "^6.18.0" 542 | babel-runtime "^6.0.0" 543 | babel-template "^6.8.0" 544 | 545 | babel-plugin-transform-es2015-modules-commonjs@^6.18.0: 546 | version "6.18.0" 547 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.18.0.tgz#c15ae5bb11b32a0abdcc98a5837baa4ee8d67bcc" 548 | dependencies: 549 | babel-plugin-transform-strict-mode "^6.18.0" 550 | babel-runtime "^6.0.0" 551 | babel-template "^6.16.0" 552 | babel-types "^6.18.0" 553 | 554 | babel-plugin-transform-es2015-modules-systemjs@^6.18.0: 555 | version "6.18.0" 556 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.18.0.tgz#f09294707163edae4d3b3e8bfacecd01d920b7ad" 557 | dependencies: 558 | babel-helper-hoist-variables "^6.18.0" 559 | babel-runtime "^6.11.6" 560 | babel-template "^6.14.0" 561 | 562 | babel-plugin-transform-es2015-modules-umd@^6.18.0: 563 | version "6.18.0" 564 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.18.0.tgz#23351770ece5c1f8e83ed67cb1d7992884491e50" 565 | dependencies: 566 | babel-plugin-transform-es2015-modules-amd "^6.18.0" 567 | babel-runtime "^6.0.0" 568 | babel-template "^6.8.0" 569 | 570 | babel-plugin-transform-es2015-object-super@^6.3.13: 571 | version "6.8.0" 572 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.8.0.tgz#1b858740a5a4400887c23dcff6f4d56eea4a24c5" 573 | dependencies: 574 | babel-helper-replace-supers "^6.8.0" 575 | babel-runtime "^6.0.0" 576 | 577 | babel-plugin-transform-es2015-parameters@^6.18.0: 578 | version "6.18.0" 579 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.18.0.tgz#9b2cfe238c549f1635ba27fc1daa858be70608b1" 580 | dependencies: 581 | babel-helper-call-delegate "^6.18.0" 582 | babel-helper-get-function-arity "^6.18.0" 583 | babel-runtime "^6.9.0" 584 | babel-template "^6.16.0" 585 | babel-traverse "^6.18.0" 586 | babel-types "^6.18.0" 587 | 588 | babel-plugin-transform-es2015-shorthand-properties@^6.18.0: 589 | version "6.18.0" 590 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.18.0.tgz#e2ede3b7df47bf980151926534d1dd0cbea58f43" 591 | dependencies: 592 | babel-runtime "^6.0.0" 593 | babel-types "^6.18.0" 594 | 595 | babel-plugin-transform-es2015-spread@^6.3.13: 596 | version "6.8.0" 597 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.8.0.tgz#0217f737e3b821fa5a669f187c6ed59205f05e9c" 598 | dependencies: 599 | babel-runtime "^6.0.0" 600 | 601 | babel-plugin-transform-es2015-sticky-regex@^6.3.13: 602 | version "6.8.0" 603 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.8.0.tgz#e73d300a440a35d5c64f5c2a344dc236e3df47be" 604 | dependencies: 605 | babel-helper-regex "^6.8.0" 606 | babel-runtime "^6.0.0" 607 | babel-types "^6.8.0" 608 | 609 | babel-plugin-transform-es2015-template-literals@^6.6.0: 610 | version "6.8.0" 611 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.8.0.tgz#86eb876d0a2c635da4ec048b4f7de9dfc897e66b" 612 | dependencies: 613 | babel-runtime "^6.0.0" 614 | 615 | babel-plugin-transform-es2015-typeof-symbol@^6.18.0: 616 | version "6.18.0" 617 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.18.0.tgz#0b14c48629c90ff47a0650077f6aa699bee35798" 618 | dependencies: 619 | babel-runtime "^6.0.0" 620 | 621 | babel-plugin-transform-es2015-unicode-regex@^6.3.13: 622 | version "6.11.0" 623 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.11.0.tgz#6298ceabaad88d50a3f4f392d8de997260f6ef2c" 624 | dependencies: 625 | babel-helper-regex "^6.8.0" 626 | babel-runtime "^6.0.0" 627 | regexpu-core "^2.0.0" 628 | 629 | babel-plugin-transform-es3-member-expression-literals@^6.8.0: 630 | version "6.8.0" 631 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es3-member-expression-literals/-/babel-plugin-transform-es3-member-expression-literals-6.8.0.tgz#180796863e2eddc4b48561d0c228369b05b722e2" 632 | dependencies: 633 | babel-runtime "^6.0.0" 634 | 635 | babel-plugin-transform-es3-property-literals@^6.8.0: 636 | version "6.8.0" 637 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es3-property-literals/-/babel-plugin-transform-es3-property-literals-6.8.0.tgz#8e7cc50cfe060b7c487ae33c501a4f659133bade" 638 | dependencies: 639 | babel-runtime "^6.0.0" 640 | 641 | babel-plugin-transform-regenerator@^6.16.0: 642 | version "6.16.1" 643 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.16.1.tgz#a75de6b048a14154aae14b0122756c5bed392f59" 644 | dependencies: 645 | babel-runtime "^6.9.0" 646 | babel-types "^6.16.0" 647 | private "~0.1.5" 648 | 649 | babel-plugin-transform-strict-mode@^6.18.0: 650 | version "6.18.0" 651 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.18.0.tgz#df7cf2991fe046f44163dcd110d5ca43bc652b9d" 652 | dependencies: 653 | babel-runtime "^6.0.0" 654 | babel-types "^6.18.0" 655 | 656 | babel-plugin-undeclared-variables-check@^1.0.2: 657 | version "1.0.2" 658 | resolved "https://registry.yarnpkg.com/babel-plugin-undeclared-variables-check/-/babel-plugin-undeclared-variables-check-1.0.2.tgz#5cf1aa539d813ff64e99641290af620965f65dee" 659 | dependencies: 660 | leven "^1.0.2" 661 | 662 | babel-plugin-undefined-to-void@^1.1.6: 663 | version "1.1.6" 664 | resolved "https://registry.yarnpkg.com/babel-plugin-undefined-to-void/-/babel-plugin-undefined-to-void-1.1.6.tgz#7f578ef8b78dfae6003385d8417a61eda06e2f81" 665 | 666 | babel-polyfill@^6.16.0: 667 | version "6.16.0" 668 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.16.0.tgz#2d45021df87e26a374b6d4d1a9c65964d17f2422" 669 | dependencies: 670 | babel-runtime "^6.9.1" 671 | core-js "^2.4.0" 672 | regenerator-runtime "^0.9.5" 673 | 674 | babel-preset-es2015@^6.3.13: 675 | version "6.18.0" 676 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.18.0.tgz#b8c70df84ec948c43dcf2bf770e988eb7da88312" 677 | dependencies: 678 | babel-plugin-check-es2015-constants "^6.3.13" 679 | babel-plugin-transform-es2015-arrow-functions "^6.3.13" 680 | babel-plugin-transform-es2015-block-scoped-functions "^6.3.13" 681 | babel-plugin-transform-es2015-block-scoping "^6.18.0" 682 | babel-plugin-transform-es2015-classes "^6.18.0" 683 | babel-plugin-transform-es2015-computed-properties "^6.3.13" 684 | babel-plugin-transform-es2015-destructuring "^6.18.0" 685 | babel-plugin-transform-es2015-duplicate-keys "^6.6.0" 686 | babel-plugin-transform-es2015-for-of "^6.18.0" 687 | babel-plugin-transform-es2015-function-name "^6.9.0" 688 | babel-plugin-transform-es2015-literals "^6.3.13" 689 | babel-plugin-transform-es2015-modules-amd "^6.18.0" 690 | babel-plugin-transform-es2015-modules-commonjs "^6.18.0" 691 | babel-plugin-transform-es2015-modules-systemjs "^6.18.0" 692 | babel-plugin-transform-es2015-modules-umd "^6.18.0" 693 | babel-plugin-transform-es2015-object-super "^6.3.13" 694 | babel-plugin-transform-es2015-parameters "^6.18.0" 695 | babel-plugin-transform-es2015-shorthand-properties "^6.18.0" 696 | babel-plugin-transform-es2015-spread "^6.3.13" 697 | babel-plugin-transform-es2015-sticky-regex "^6.3.13" 698 | babel-plugin-transform-es2015-template-literals "^6.6.0" 699 | babel-plugin-transform-es2015-typeof-symbol "^6.18.0" 700 | babel-plugin-transform-es2015-unicode-regex "^6.3.13" 701 | babel-plugin-transform-regenerator "^6.16.0" 702 | 703 | babel-register@^6.14.0, babel-register@^6.18.0: 704 | version "6.18.0" 705 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.18.0.tgz#892e2e03865078dd90ad2c715111ec4449b32a68" 706 | dependencies: 707 | babel-core "^6.18.0" 708 | babel-runtime "^6.11.6" 709 | core-js "^2.4.0" 710 | home-or-tmp "^2.0.0" 711 | lodash "^4.2.0" 712 | mkdirp "^0.5.1" 713 | source-map-support "^0.4.2" 714 | 715 | babel-runtime@^6.0.0, babel-runtime@^6.11.6, babel-runtime@^6.9.0, babel-runtime@^6.9.1: 716 | version "6.18.0" 717 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.18.0.tgz#0f4177ffd98492ef13b9f823e9994a02584c9078" 718 | dependencies: 719 | core-js "^2.4.0" 720 | regenerator-runtime "^0.9.5" 721 | 722 | babel-template@^6.14.0, babel-template@^6.15.0, babel-template@^6.16.0, babel-template@^6.8.0: 723 | version "6.16.0" 724 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.16.0.tgz#e149dd1a9f03a35f817ddbc4d0481988e7ebc8ca" 725 | dependencies: 726 | babel-runtime "^6.9.0" 727 | babel-traverse "^6.16.0" 728 | babel-types "^6.16.0" 729 | babylon "^6.11.0" 730 | lodash "^4.2.0" 731 | 732 | babel-traverse@^6.15.0, babel-traverse@^6.16.0, babel-traverse@^6.18.0, babel-traverse@^6.9.0: 733 | version "6.18.0" 734 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.18.0.tgz#5aeaa980baed2a07c8c47329cd90c3b90c80f05e" 735 | dependencies: 736 | babel-code-frame "^6.16.0" 737 | babel-messages "^6.8.0" 738 | babel-runtime "^6.9.0" 739 | babel-types "^6.18.0" 740 | babylon "^6.11.0" 741 | debug "^2.2.0" 742 | globals "^9.0.0" 743 | invariant "^2.2.0" 744 | lodash "^4.2.0" 745 | 746 | babel-types@^6.15.0, babel-types@^6.16.0, babel-types@^6.18.0, babel-types@^6.8.0, babel-types@^6.9.0: 747 | version "6.18.0" 748 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.18.0.tgz#1f7d5a73474c59eb9151b2417bbff4e4fce7c3f8" 749 | dependencies: 750 | babel-runtime "^6.9.1" 751 | esutils "^2.0.2" 752 | lodash "^4.2.0" 753 | to-fast-properties "^1.0.1" 754 | 755 | babylon@^5.8.38: 756 | version "5.8.38" 757 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-5.8.38.tgz#ec9b120b11bf6ccd4173a18bf217e60b79859ffd" 758 | 759 | babylon@^6.11.0, babylon@^6.11.2, babylon@^6.13.0, babylon@^6.8.0: 760 | version "6.13.1" 761 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.13.1.tgz#adca350e088f0467647157652bafead6ddb8dfdb" 762 | 763 | balanced-match@^0.4.1: 764 | version "0.4.2" 765 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 766 | 767 | bcrypt-pbkdf@^1.0.0: 768 | version "1.0.0" 769 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.0.tgz#3ca76b85241c7170bf7d9703e7b9aa74630040d4" 770 | dependencies: 771 | tweetnacl "^0.14.3" 772 | 773 | binary-extensions@^1.0.0: 774 | version "1.7.0" 775 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.7.0.tgz#6c1610db163abfb34edfe42fa423343a1e01185d" 776 | 777 | block-stream@*: 778 | version "0.0.9" 779 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 780 | dependencies: 781 | inherits "~2.0.0" 782 | 783 | bluebird@^2.9.33: 784 | version "2.11.0" 785 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-2.11.0.tgz#534b9033c022c9579c56ba3b3e5a5caafbb650e1" 786 | 787 | bluebird@^3.0.5: 788 | version "3.4.6" 789 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.4.6.tgz#01da8d821d87813d158967e743d5fe6c62cf8c0f" 790 | 791 | boolbase@~1.0.0: 792 | version "1.0.0" 793 | resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" 794 | 795 | boom@2.x.x: 796 | version "2.10.1" 797 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 798 | dependencies: 799 | hoek "2.x.x" 800 | 801 | brace-expansion@^1.0.0: 802 | version "1.1.6" 803 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 804 | dependencies: 805 | balanced-match "^0.4.1" 806 | concat-map "0.0.1" 807 | 808 | braces@^1.8.2: 809 | version "1.8.5" 810 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 811 | dependencies: 812 | expand-range "^1.8.1" 813 | preserve "^0.2.0" 814 | repeat-element "^1.1.2" 815 | 816 | breakable@~1.0.0: 817 | version "1.0.0" 818 | resolved "https://registry.yarnpkg.com/breakable/-/breakable-1.0.0.tgz#784a797915a38ead27bad456b5572cb4bbaa78c1" 819 | 820 | browser-resolve@^1.11.0: 821 | version "1.11.2" 822 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 823 | dependencies: 824 | resolve "1.1.7" 825 | 826 | browser-stdout@1.3.0: 827 | version "1.3.0" 828 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" 829 | 830 | buffer-shims@^1.0.0: 831 | version "1.0.0" 832 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 833 | 834 | builtin-modules@^1.0.0, builtin-modules@^1.1.0: 835 | version "1.1.1" 836 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 837 | 838 | caching-transform@^1.0.0: 839 | version "1.0.1" 840 | resolved "https://registry.yarnpkg.com/caching-transform/-/caching-transform-1.0.1.tgz#6dbdb2f20f8d8fbce79f3e94e9d1742dcdf5c0a1" 841 | dependencies: 842 | md5-hex "^1.2.0" 843 | mkdirp "^0.5.1" 844 | write-file-atomic "^1.1.4" 845 | 846 | camelcase@^1.0.2, camelcase@^1.2.1: 847 | version "1.2.1" 848 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 849 | 850 | camelcase@^3.0.0: 851 | version "3.0.0" 852 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 853 | 854 | caseless@~0.11.0: 855 | version "0.11.0" 856 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 857 | 858 | center-align@^0.1.1: 859 | version "0.1.3" 860 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 861 | dependencies: 862 | align-text "^0.1.3" 863 | lazy-cache "^1.0.3" 864 | 865 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1: 866 | version "1.1.3" 867 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 868 | dependencies: 869 | ansi-styles "^2.2.1" 870 | escape-string-regexp "^1.0.2" 871 | has-ansi "^2.0.0" 872 | strip-ansi "^3.0.0" 873 | supports-color "^2.0.0" 874 | 875 | cheerio@0.20.0: 876 | version "0.20.0" 877 | resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-0.20.0.tgz#5c710f2bab95653272842ba01c6ea61b3545ec35" 878 | dependencies: 879 | css-select "~1.2.0" 880 | dom-serializer "~0.1.0" 881 | entities "~1.1.1" 882 | htmlparser2 "~3.8.1" 883 | lodash "^4.1.0" 884 | optionalDependencies: 885 | jsdom "^7.0.2" 886 | 887 | chokidar@^1.0.0: 888 | version "1.6.1" 889 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 890 | dependencies: 891 | anymatch "^1.3.0" 892 | async-each "^1.0.0" 893 | glob-parent "^2.0.0" 894 | inherits "^2.0.1" 895 | is-binary-path "^1.0.0" 896 | is-glob "^2.0.0" 897 | path-is-absolute "^1.0.0" 898 | readdirp "^2.0.0" 899 | optionalDependencies: 900 | fsevents "^1.0.0" 901 | 902 | circular-json@^0.3.0: 903 | version "0.3.1" 904 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 905 | 906 | cli-cursor@^1.0.1: 907 | version "1.0.2" 908 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 909 | dependencies: 910 | restore-cursor "^1.0.1" 911 | 912 | cli-width@^1.0.1: 913 | version "1.1.1" 914 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-1.1.1.tgz#a4d293ef67ebb7b88d4a4d42c0ccf00c4d1e366d" 915 | 916 | cliui@^2.1.0: 917 | version "2.1.0" 918 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 919 | dependencies: 920 | center-align "^0.1.1" 921 | right-align "^0.1.1" 922 | wordwrap "0.0.2" 923 | 924 | cliui@^3.2.0: 925 | version "3.2.0" 926 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 927 | dependencies: 928 | string-width "^1.0.1" 929 | strip-ansi "^3.0.1" 930 | wrap-ansi "^2.0.0" 931 | 932 | clone@^1.0.2: 933 | version "1.0.2" 934 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" 935 | 936 | code-point-at@^1.0.0: 937 | version "1.1.0" 938 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 939 | 940 | codecov@^1.0.0: 941 | version "1.0.1" 942 | resolved "https://registry.yarnpkg.com/codecov/-/codecov-1.0.1.tgz#97260ceac0e96b8eda8d562006558a53a139dffd" 943 | dependencies: 944 | argv ">=0.0.2" 945 | execSync "1.0.2" 946 | request ">=2.42.0" 947 | urlgrey ">=0.4.0" 948 | 949 | color-logger@0.0.3: 950 | version "0.0.3" 951 | resolved "https://registry.yarnpkg.com/color-logger/-/color-logger-0.0.3.tgz#d9b22dd1d973e166b18bf313f9f481bba4df2018" 952 | 953 | colors@^1.1.2: 954 | version "1.1.2" 955 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" 956 | 957 | combined-stream@^1.0.5, combined-stream@~1.0.5: 958 | version "1.0.5" 959 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 960 | dependencies: 961 | delayed-stream "~1.0.0" 962 | 963 | commander@2.9.0, commander@^2.2.0, commander@^2.5.0, commander@^2.8.1, commander@^2.9.0: 964 | version "2.9.0" 965 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 966 | dependencies: 967 | graceful-readlink ">= 1.0.0" 968 | 969 | commondir@^1.0.1: 970 | version "1.0.1" 971 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 972 | 973 | commoner@~0.10.3: 974 | version "0.10.4" 975 | resolved "https://registry.yarnpkg.com/commoner/-/commoner-0.10.4.tgz#98f3333dd3ad399596bb2d384a783bb7213d68f8" 976 | dependencies: 977 | commander "^2.5.0" 978 | detective "^4.3.1" 979 | glob "^5.0.15" 980 | graceful-fs "^4.1.2" 981 | iconv-lite "^0.4.5" 982 | mkdirp "^0.5.0" 983 | private "^0.1.6" 984 | q "^1.1.2" 985 | recast "^0.10.0" 986 | 987 | concat-map@0.0.1: 988 | version "0.0.1" 989 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 990 | 991 | concat-stream@^1.4.6, concat-stream@^1.4.7: 992 | version "1.5.2" 993 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.2.tgz#708978624d856af41a5a741defdd261da752c266" 994 | dependencies: 995 | inherits "~2.0.1" 996 | readable-stream "~2.0.0" 997 | typedarray "~0.0.5" 998 | 999 | config-chain@~1.1.5: 1000 | version "1.1.11" 1001 | resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.11.tgz#aba09747dfbe4c3e70e766a6e41586e1859fc6f2" 1002 | dependencies: 1003 | ini "^1.3.4" 1004 | proto-list "~1.2.1" 1005 | 1006 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1007 | version "1.1.0" 1008 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1009 | 1010 | content-type-parser@^1.0.1: 1011 | version "1.0.1" 1012 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 1013 | 1014 | convert-source-map@^1.1.0, convert-source-map@^1.3.0: 1015 | version "1.3.0" 1016 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.3.0.tgz#e9f3e9c6e2728efc2676696a70eb382f73106a67" 1017 | 1018 | core-js@0.9.18: 1019 | version "0.9.18" 1020 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-0.9.18.tgz#13f458e430232b0f4ec1f480da7c2f5288e9d095" 1021 | 1022 | core-js@^1.0.0: 1023 | version "1.2.7" 1024 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 1025 | 1026 | core-js@^2.4.0: 1027 | version "2.4.1" 1028 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 1029 | 1030 | core-util-is@~1.0.0: 1031 | version "1.0.2" 1032 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1033 | 1034 | cross-spawn@^4: 1035 | version "4.0.2" 1036 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" 1037 | dependencies: 1038 | lru-cache "^4.0.1" 1039 | which "^1.2.9" 1040 | 1041 | cryptiles@2.x.x: 1042 | version "2.0.5" 1043 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1044 | dependencies: 1045 | boom "2.x.x" 1046 | 1047 | css-select@~1.2.0: 1048 | version "1.2.0" 1049 | resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" 1050 | dependencies: 1051 | boolbase "~1.0.0" 1052 | css-what "2.1" 1053 | domutils "1.5.1" 1054 | nth-check "~1.0.1" 1055 | 1056 | css-what@2.1: 1057 | version "2.1.0" 1058 | resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.0.tgz#9467d032c38cfaefb9f2d79501253062f87fa1bd" 1059 | 1060 | cssom@0.3.x, "cssom@>= 0.3.0 < 0.4.0": 1061 | version "0.3.1" 1062 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.1.tgz#c9e37ef2490e64f6d1baa10fda852257082c25d3" 1063 | 1064 | "cssstyle@>= 0.2.29 < 0.3.0", "cssstyle@>= 0.2.36 < 0.3.0": 1065 | version "0.2.37" 1066 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 1067 | dependencies: 1068 | cssom "0.3.x" 1069 | 1070 | d@^0.1.1, d@~0.1.1: 1071 | version "0.1.1" 1072 | resolved "https://registry.yarnpkg.com/d/-/d-0.1.1.tgz#da184c535d18d8ee7ba2aa229b914009fae11309" 1073 | dependencies: 1074 | es5-ext "~0.10.2" 1075 | 1076 | dashdash@^1.12.0: 1077 | version "1.14.0" 1078 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.0.tgz#29e486c5418bf0f356034a993d51686a33e84141" 1079 | dependencies: 1080 | assert-plus "^1.0.0" 1081 | 1082 | debug-log@^1.0.0: 1083 | version "1.0.1" 1084 | resolved "https://registry.yarnpkg.com/debug-log/-/debug-log-1.0.1.tgz#2307632d4c04382b8df8a32f70b895046d52745f" 1085 | 1086 | debug@2.2.0, debug@^2.1.1, debug@^2.1.3, debug@^2.2.0, debug@~2.2.0: 1087 | version "2.2.0" 1088 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 1089 | dependencies: 1090 | ms "0.7.1" 1091 | 1092 | debug@^0.7.4: 1093 | version "0.7.4" 1094 | resolved "https://registry.yarnpkg.com/debug/-/debug-0.7.4.tgz#06e1ea8082c2cb14e39806e22e2f6f757f92af39" 1095 | 1096 | decamelize@^1.0.0, decamelize@^1.1.1: 1097 | version "1.2.0" 1098 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1099 | 1100 | deep-extend@~0.4.0: 1101 | version "0.4.1" 1102 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 1103 | 1104 | deep-is@~0.1.2, deep-is@~0.1.3: 1105 | version "0.1.3" 1106 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1107 | 1108 | default-require-extensions@^1.0.0: 1109 | version "1.0.0" 1110 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 1111 | dependencies: 1112 | strip-bom "^2.0.0" 1113 | 1114 | defaults@^1.0.2: 1115 | version "1.0.3" 1116 | resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" 1117 | dependencies: 1118 | clone "^1.0.2" 1119 | 1120 | defined@^1.0.0: 1121 | version "1.0.0" 1122 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 1123 | 1124 | defs@~1.1.0: 1125 | version "1.1.1" 1126 | resolved "https://registry.yarnpkg.com/defs/-/defs-1.1.1.tgz#b22609f2c7a11ba7a3db116805c139b1caffa9d2" 1127 | dependencies: 1128 | alter "~0.2.0" 1129 | ast-traverse "~0.1.1" 1130 | breakable "~1.0.0" 1131 | esprima-fb "~15001.1001.0-dev-harmony-fb" 1132 | simple-fmt "~0.1.0" 1133 | simple-is "~0.2.0" 1134 | stringmap "~0.2.2" 1135 | stringset "~0.2.1" 1136 | tryor "~0.1.2" 1137 | yargs "~3.27.0" 1138 | 1139 | deglob@^1.0.0: 1140 | version "1.1.2" 1141 | resolved "https://registry.yarnpkg.com/deglob/-/deglob-1.1.2.tgz#76d577c25fe3f7329412a2b59eadea57ac500e3f" 1142 | dependencies: 1143 | find-root "^1.0.0" 1144 | glob "^7.0.5" 1145 | ignore "^3.0.9" 1146 | pkg-config "^1.1.0" 1147 | run-parallel "^1.1.2" 1148 | uniq "^1.0.1" 1149 | xtend "^4.0.0" 1150 | 1151 | del@^2.0.2: 1152 | version "2.2.2" 1153 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1154 | dependencies: 1155 | globby "^5.0.0" 1156 | is-path-cwd "^1.0.0" 1157 | is-path-in-cwd "^1.0.0" 1158 | object-assign "^4.0.1" 1159 | pify "^2.0.0" 1160 | pinkie-promise "^2.0.0" 1161 | rimraf "^2.2.8" 1162 | 1163 | delayed-stream@~1.0.0: 1164 | version "1.0.0" 1165 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1166 | 1167 | delegates@^1.0.0: 1168 | version "1.0.0" 1169 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1170 | 1171 | detect-indent@^3.0.0: 1172 | version "3.0.1" 1173 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-3.0.1.tgz#9dc5e5ddbceef8325764b9451b02bc6d54084f75" 1174 | dependencies: 1175 | get-stdin "^4.0.1" 1176 | minimist "^1.1.0" 1177 | repeating "^1.1.0" 1178 | 1179 | detect-indent@^4.0.0: 1180 | version "4.0.0" 1181 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1182 | dependencies: 1183 | repeating "^2.0.0" 1184 | 1185 | detective@^4.3.1: 1186 | version "4.3.2" 1187 | resolved "https://registry.yarnpkg.com/detective/-/detective-4.3.2.tgz#77697e2e7947ac3fe7c8e26a6d6f115235afa91c" 1188 | dependencies: 1189 | acorn "^3.1.0" 1190 | defined "^1.0.0" 1191 | 1192 | dezalgo@^1.0.2: 1193 | version "1.0.3" 1194 | resolved "https://registry.yarnpkg.com/dezalgo/-/dezalgo-1.0.3.tgz#7f742de066fc748bc8db820569dddce49bf0d456" 1195 | dependencies: 1196 | asap "^2.0.0" 1197 | wrappy "1" 1198 | 1199 | diff@1.4.0, diff@^1.3.2: 1200 | version "1.4.0" 1201 | resolved "https://registry.yarnpkg.com/diff/-/diff-1.4.0.tgz#7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf" 1202 | 1203 | disparity@^2.0.0: 1204 | version "2.0.0" 1205 | resolved "https://registry.yarnpkg.com/disparity/-/disparity-2.0.0.tgz#57ddacb47324ae5f58d2cc0da886db4ce9eeb718" 1206 | dependencies: 1207 | ansi-styles "^2.0.1" 1208 | diff "^1.3.2" 1209 | 1210 | doctrine@^0.7.0: 1211 | version "0.7.2" 1212 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-0.7.2.tgz#7cb860359ba3be90e040b26b729ce4bfa654c523" 1213 | dependencies: 1214 | esutils "^1.1.6" 1215 | isarray "0.0.1" 1216 | 1217 | dom-serializer@0, dom-serializer@~0.1.0: 1218 | version "0.1.0" 1219 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82" 1220 | dependencies: 1221 | domelementtype "~1.1.1" 1222 | entities "~1.1.1" 1223 | 1224 | domelementtype@1, domelementtype@~1.1.1: 1225 | version "1.1.3" 1226 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b" 1227 | 1228 | domhandler@2.3: 1229 | version "2.3.0" 1230 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.3.0.tgz#2de59a0822d5027fabff6f032c2b25a2a8abe738" 1231 | dependencies: 1232 | domelementtype "1" 1233 | 1234 | domutils@1.5, domutils@1.5.1: 1235 | version "1.5.1" 1236 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" 1237 | dependencies: 1238 | dom-serializer "0" 1239 | domelementtype "1" 1240 | 1241 | ecc-jsbn@~0.1.1: 1242 | version "0.1.1" 1243 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1244 | dependencies: 1245 | jsbn "~0.1.0" 1246 | 1247 | editorconfig@^0.13.2: 1248 | version "0.13.2" 1249 | resolved "https://registry.yarnpkg.com/editorconfig/-/editorconfig-0.13.2.tgz#8e57926d9ee69ab6cb999f027c2171467acceb35" 1250 | dependencies: 1251 | bluebird "^3.0.5" 1252 | commander "^2.9.0" 1253 | lru-cache "^3.2.0" 1254 | sigmund "^1.0.1" 1255 | 1256 | entities@1.0: 1257 | version "1.0.0" 1258 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.0.0.tgz#b2987aa3821347fcde642b24fdfc9e4fb712bf26" 1259 | 1260 | entities@~1.1.1: 1261 | version "1.1.1" 1262 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0" 1263 | 1264 | error-ex@^1.2.0: 1265 | version "1.3.0" 1266 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.0.tgz#e67b43f3e82c96ea3a584ffee0b9fc3325d802d9" 1267 | dependencies: 1268 | is-arrayish "^0.2.1" 1269 | 1270 | es5-ext@^0.10.7, es5-ext@^0.10.8, es5-ext@~0.10.11, es5-ext@~0.10.2, es5-ext@~0.10.7: 1271 | version "0.10.12" 1272 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.12.tgz#aa84641d4db76b62abba5e45fd805ecbab140047" 1273 | dependencies: 1274 | es6-iterator "2" 1275 | es6-symbol "~3.1" 1276 | 1277 | es6-iterator@2: 1278 | version "2.0.0" 1279 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.0.tgz#bd968567d61635e33c0b80727613c9cb4b096bac" 1280 | dependencies: 1281 | d "^0.1.1" 1282 | es5-ext "^0.10.7" 1283 | es6-symbol "3" 1284 | 1285 | es6-map@^0.1.3: 1286 | version "0.1.4" 1287 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.4.tgz#a34b147be224773a4d7da8072794cefa3632b897" 1288 | dependencies: 1289 | d "~0.1.1" 1290 | es5-ext "~0.10.11" 1291 | es6-iterator "2" 1292 | es6-set "~0.1.3" 1293 | es6-symbol "~3.1.0" 1294 | event-emitter "~0.3.4" 1295 | 1296 | es6-set@~0.1.3: 1297 | version "0.1.4" 1298 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.4.tgz#9516b6761c2964b92ff479456233a247dc707ce8" 1299 | dependencies: 1300 | d "~0.1.1" 1301 | es5-ext "~0.10.11" 1302 | es6-iterator "2" 1303 | es6-symbol "3" 1304 | event-emitter "~0.3.4" 1305 | 1306 | es6-symbol@3, es6-symbol@~3.1, es6-symbol@~3.1.0: 1307 | version "3.1.0" 1308 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.0.tgz#94481c655e7a7cad82eba832d97d5433496d7ffa" 1309 | dependencies: 1310 | d "~0.1.1" 1311 | es5-ext "~0.10.11" 1312 | 1313 | es6-weak-map@^2.0.1: 1314 | version "2.0.1" 1315 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.1.tgz#0d2bbd8827eb5fb4ba8f97fbfea50d43db21ea81" 1316 | dependencies: 1317 | d "^0.1.1" 1318 | es5-ext "^0.10.8" 1319 | es6-iterator "2" 1320 | es6-symbol "3" 1321 | 1322 | escape-html@1.0.2: 1323 | version "1.0.2" 1324 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.2.tgz#d77d32fa98e38c2f41ae85e9278e0e0e6ba1022c" 1325 | 1326 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1327 | version "1.0.5" 1328 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1329 | 1330 | escodegen@1.7.0: 1331 | version "1.7.0" 1332 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.7.0.tgz#4e299d8cc33087b7f29c19e2b9e84362abe35453" 1333 | dependencies: 1334 | esprima "^1.2.2" 1335 | estraverse "^1.9.1" 1336 | esutils "^2.0.2" 1337 | optionator "^0.5.0" 1338 | optionalDependencies: 1339 | source-map "~0.2.0" 1340 | 1341 | escodegen@^1.6.1: 1342 | version "1.8.1" 1343 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 1344 | dependencies: 1345 | esprima "^2.7.1" 1346 | estraverse "^1.9.1" 1347 | esutils "^2.0.2" 1348 | optionator "^0.8.1" 1349 | optionalDependencies: 1350 | source-map "~0.2.0" 1351 | 1352 | escope@^3.2.0: 1353 | version "3.6.0" 1354 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1355 | dependencies: 1356 | es6-map "^0.1.3" 1357 | es6-weak-map "^2.0.1" 1358 | esrecurse "^4.1.0" 1359 | estraverse "^4.1.1" 1360 | 1361 | esdoc@^0.4.0: 1362 | version "0.4.8" 1363 | resolved "https://registry.yarnpkg.com/esdoc/-/esdoc-0.4.8.tgz#4972e2b6de85e2b929a330ed54b8c5f3fdcebd33" 1364 | dependencies: 1365 | cheerio "0.20.0" 1366 | color-logger "0.0.3" 1367 | core-js "0.9.18" 1368 | escape-html "1.0.2" 1369 | escodegen "1.7.0" 1370 | espree "2.2.0" 1371 | estraverse "4.1.0" 1372 | fs-extra "0.26.5" 1373 | ice-cap "0.0.4" 1374 | marked "0.3.5" 1375 | minimist "1.1.1" 1376 | taffydb "2.7.2" 1377 | 1378 | esformatter-eol-last@^1.0.0: 1379 | version "1.0.0" 1380 | resolved "https://registry.yarnpkg.com/esformatter-eol-last/-/esformatter-eol-last-1.0.0.tgz#45a78ff4622b1d49e44f56b49905766a63290c07" 1381 | dependencies: 1382 | string.prototype.endswith "^0.2.0" 1383 | 1384 | esformatter-ignore@^0.1.3: 1385 | version "0.1.3" 1386 | resolved "https://registry.yarnpkg.com/esformatter-ignore/-/esformatter-ignore-0.1.3.tgz#04d3b875bfa49dde004cc58df6f6bbc3c0567f1e" 1387 | 1388 | esformatter-jsx@^2.0.11: 1389 | version "2.3.11" 1390 | resolved "https://registry.yarnpkg.com/esformatter-jsx/-/esformatter-jsx-2.3.11.tgz#411c44ed324754af95aae5ded856d5a7eefcb5df" 1391 | dependencies: 1392 | babel-core "^5.8.34" 1393 | esformatter-ignore "^0.1.3" 1394 | extend "^2.0.1" 1395 | fresh-falafel "^1.2.0" 1396 | js-beautify "^1.5.10" 1397 | 1398 | esformatter-literal-notation@^1.0.0: 1399 | version "1.0.1" 1400 | resolved "https://registry.yarnpkg.com/esformatter-literal-notation/-/esformatter-literal-notation-1.0.1.tgz#710e7b420175fe3f7e5afad5bbad329103842e2f" 1401 | dependencies: 1402 | rocambole "^0.3.6" 1403 | rocambole-token "^1.2.1" 1404 | 1405 | esformatter-parser@^1.0: 1406 | version "1.0.0" 1407 | resolved "https://registry.yarnpkg.com/esformatter-parser/-/esformatter-parser-1.0.0.tgz#0854072d0487539ed39cae38d8a5432c17ec11d3" 1408 | dependencies: 1409 | acorn-to-esprima "^2.0.8" 1410 | babel-traverse "^6.9.0" 1411 | babylon "^6.8.0" 1412 | rocambole "^0.7.0" 1413 | 1414 | esformatter-quotes@^1.0.0: 1415 | version "1.1.0" 1416 | resolved "https://registry.yarnpkg.com/esformatter-quotes/-/esformatter-quotes-1.1.0.tgz#e22c6c445c7f306041d81c9b9e51fca6cbfaca82" 1417 | 1418 | esformatter-semicolon-first@^1.1.0: 1419 | version "1.2.0" 1420 | resolved "https://registry.yarnpkg.com/esformatter-semicolon-first/-/esformatter-semicolon-first-1.2.0.tgz#e3b512d1d4e07310eabcabf57277ea7c8a56e242" 1421 | dependencies: 1422 | esformatter-parser "^1.0" 1423 | rocambole ">=0.6.0 <2.0" 1424 | rocambole-linebreak "^1.0.2" 1425 | rocambole-token "^1.2.1" 1426 | 1427 | esformatter-spaced-lined-comment@^2.0.0: 1428 | version "2.0.1" 1429 | resolved "https://registry.yarnpkg.com/esformatter-spaced-lined-comment/-/esformatter-spaced-lined-comment-2.0.1.tgz#dc5f3407f93c295e1e56446bd344560da5e6dcac" 1430 | 1431 | esformatter@^0.8.1: 1432 | version "0.8.2" 1433 | resolved "https://registry.yarnpkg.com/esformatter/-/esformatter-0.8.2.tgz#7ba9882aa3ed30839f8af76cddf4f12da337d3ce" 1434 | dependencies: 1435 | debug "^0.7.4" 1436 | disparity "^2.0.0" 1437 | espree "^2.2.4" 1438 | glob "^5.0.3" 1439 | minimist "^1.1.1" 1440 | mout ">=0.9 <2.0" 1441 | npm-run "^2.0.0" 1442 | resolve "^1.1.5" 1443 | rocambole ">=0.7 <2.0" 1444 | rocambole-indent "^2.0.4" 1445 | rocambole-linebreak "^1.0.0" 1446 | rocambole-node "~1.0" 1447 | rocambole-token "^1.1.2" 1448 | rocambole-whitespace "^1.0.0" 1449 | stdin "*" 1450 | strip-json-comments "~0.1.1" 1451 | supports-color "^1.3.1" 1452 | user-home "^2.0.0" 1453 | 1454 | eslint-config-standard-react@1.2.1: 1455 | version "1.2.1" 1456 | resolved "https://registry.yarnpkg.com/eslint-config-standard-react/-/eslint-config-standard-react-1.2.1.tgz#ed045fdb22b3a0fe0bb0bd449cf3bfbeaedeb5b3" 1457 | 1458 | eslint-config-standard@4.4.0: 1459 | version "4.4.0" 1460 | resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-4.4.0.tgz#c129749e1999e0cf861077b275d9c51dcd97cd75" 1461 | 1462 | eslint-plugin-react@^3.9.0: 1463 | version "3.16.1" 1464 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-3.16.1.tgz#262d96b77d7c4a42af809a73c0e527a58612293c" 1465 | 1466 | eslint-plugin-standard@^1.3.1: 1467 | version "1.3.3" 1468 | resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-1.3.3.tgz#a3085451523431e76f409c70cb8f94e32bf0ec7f" 1469 | 1470 | eslint@1.9.0: 1471 | version "1.9.0" 1472 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-1.9.0.tgz#a75aaf07e28650772ed0e70daa2ce083079b6514" 1473 | dependencies: 1474 | chalk "^1.0.0" 1475 | concat-stream "^1.4.6" 1476 | debug "^2.1.1" 1477 | doctrine "^0.7.0" 1478 | escape-string-regexp "^1.0.2" 1479 | escope "^3.2.0" 1480 | espree "^2.2.4" 1481 | estraverse "^4.1.1" 1482 | estraverse-fb "^1.3.1" 1483 | esutils "^2.0.2" 1484 | file-entry-cache "^1.1.1" 1485 | glob "^5.0.14" 1486 | globals "^8.11.0" 1487 | handlebars "^4.0.0" 1488 | inquirer "^0.11.0" 1489 | is-my-json-valid "^2.10.0" 1490 | is-resolvable "^1.0.0" 1491 | js-yaml "^3.2.5" 1492 | json-stable-stringify "^1.0.0" 1493 | lodash.clonedeep "^3.0.1" 1494 | lodash.merge "^3.3.2" 1495 | lodash.omit "^3.1.0" 1496 | minimatch "^3.0.0" 1497 | mkdirp "^0.5.0" 1498 | object-assign "^4.0.1" 1499 | optionator "^0.6.0" 1500 | path-is-absolute "^1.0.0" 1501 | path-is-inside "^1.0.1" 1502 | shelljs "^0.5.3" 1503 | strip-json-comments "~1.0.1" 1504 | text-table "~0.2.0" 1505 | to-double-quotes "^2.0.0" 1506 | to-single-quotes "^2.0.0" 1507 | user-home "^2.0.0" 1508 | xml-escape "~1.0.0" 1509 | 1510 | espree@2.2.0: 1511 | version "2.2.0" 1512 | resolved "https://registry.yarnpkg.com/espree/-/espree-2.2.0.tgz#01dc927a7ea5081d1a7b6d610249e624e7fef3d6" 1513 | 1514 | espree@^2.2.4: 1515 | version "2.2.5" 1516 | resolved "https://registry.yarnpkg.com/espree/-/espree-2.2.5.tgz#df691b9310889402aeb29cc066708c56690b854b" 1517 | 1518 | esprima-fb@~15001.1001.0-dev-harmony-fb: 1519 | version "15001.1001.0-dev-harmony-fb" 1520 | resolved "https://registry.yarnpkg.com/esprima-fb/-/esprima-fb-15001.1001.0-dev-harmony-fb.tgz#43beb57ec26e8cf237d3dd8b33e42533577f2659" 1521 | 1522 | esprima@^1.2.2: 1523 | version "1.2.5" 1524 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-1.2.5.tgz#0993502feaf668138325756f30f9a51feeec11e9" 1525 | 1526 | esprima@^2.1, esprima@^2.6.0, esprima@^2.7.1: 1527 | version "2.7.3" 1528 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1529 | 1530 | esprima@~1.0: 1531 | version "1.0.4" 1532 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-1.0.4.tgz#9f557e08fc3b4d26ece9dd34f8fbf476b62585ad" 1533 | 1534 | esrecurse@^4.1.0: 1535 | version "4.1.0" 1536 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 1537 | dependencies: 1538 | estraverse "~4.1.0" 1539 | object-assign "^4.0.1" 1540 | 1541 | estraverse-fb@^1.3.1: 1542 | version "1.3.1" 1543 | resolved "https://registry.yarnpkg.com/estraverse-fb/-/estraverse-fb-1.3.1.tgz#160e75a80e605b08ce894bcce2fe3e429abf92bf" 1544 | 1545 | estraverse@4.1.0, estraverse@~4.1.0: 1546 | version "4.1.0" 1547 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.0.tgz#40f23a76092041be6467d7f235c933b670766e05" 1548 | 1549 | estraverse@^1.9.1: 1550 | version "1.9.3" 1551 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 1552 | 1553 | estraverse@^4.1.1: 1554 | version "4.2.0" 1555 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1556 | 1557 | estree-walker@^0.2.1: 1558 | version "0.2.1" 1559 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.2.1.tgz#bdafe8095383d8414d5dc2ecf4c9173b6db9412e" 1560 | 1561 | esutils@^1.1.6: 1562 | version "1.1.6" 1563 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-1.1.6.tgz#c01ccaa9ae4b897c6d0c3e210ae52f3c7a844375" 1564 | 1565 | esutils@^2.0.0, esutils@^2.0.2: 1566 | version "2.0.2" 1567 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1568 | 1569 | event-emitter@~0.3.4: 1570 | version "0.3.4" 1571 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.4.tgz#8d63ddfb4cfe1fae3b32ca265c4c720222080bb5" 1572 | dependencies: 1573 | d "~0.1.1" 1574 | es5-ext "~0.10.7" 1575 | 1576 | execSync@1.0.2: 1577 | version "1.0.2" 1578 | resolved "https://registry.yarnpkg.com/execSync/-/execSync-1.0.2.tgz#1f42eda582225180053224ecdd3fd1960fdb3139" 1579 | dependencies: 1580 | temp "~0.5.1" 1581 | 1582 | exit-hook@^1.0.0: 1583 | version "1.1.1" 1584 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1585 | 1586 | expand-brackets@^0.1.4: 1587 | version "0.1.5" 1588 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1589 | dependencies: 1590 | is-posix-bracket "^0.1.0" 1591 | 1592 | expand-range@^1.8.1: 1593 | version "1.8.2" 1594 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1595 | dependencies: 1596 | fill-range "^2.1.0" 1597 | 1598 | expect.js@^0.3.1: 1599 | version "0.3.1" 1600 | resolved "https://registry.yarnpkg.com/expect.js/-/expect.js-0.3.1.tgz#b0a59a0d2eff5437544ebf0ceaa6015841d09b5b" 1601 | 1602 | extend@^2.0.1: 1603 | version "2.0.1" 1604 | resolved "https://registry.yarnpkg.com/extend/-/extend-2.0.1.tgz#1ee8010689e7395ff9448241c98652bc759a8260" 1605 | 1606 | extend@~3.0.0: 1607 | version "3.0.0" 1608 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 1609 | 1610 | extglob@^0.3.1: 1611 | version "0.3.2" 1612 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1613 | dependencies: 1614 | is-extglob "^1.0.0" 1615 | 1616 | extsprintf@1.0.2: 1617 | version "1.0.2" 1618 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1619 | 1620 | fast-levenshtein@~1.0.0, fast-levenshtein@~1.0.6: 1621 | version "1.0.7" 1622 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-1.0.7.tgz#0178dcdee023b92905193af0959e8a7639cfdcb9" 1623 | 1624 | fast-levenshtein@~2.0.4: 1625 | version "2.0.5" 1626 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.5.tgz#bd33145744519ab1c36c3ee9f31f08e9079b67f2" 1627 | 1628 | figures@^1.3.5: 1629 | version "1.7.0" 1630 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1631 | dependencies: 1632 | escape-string-regexp "^1.0.5" 1633 | object-assign "^4.1.0" 1634 | 1635 | file-entry-cache@^1.1.1: 1636 | version "1.3.1" 1637 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-1.3.1.tgz#44c61ea607ae4be9c1402f41f44270cbfe334ff8" 1638 | dependencies: 1639 | flat-cache "^1.2.1" 1640 | object-assign "^4.0.1" 1641 | 1642 | filename-regex@^2.0.0: 1643 | version "2.0.0" 1644 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 1645 | 1646 | fill-range@^2.1.0: 1647 | version "2.2.3" 1648 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1649 | dependencies: 1650 | is-number "^2.1.0" 1651 | isobject "^2.0.0" 1652 | randomatic "^1.1.3" 1653 | repeat-element "^1.1.2" 1654 | repeat-string "^1.5.2" 1655 | 1656 | find-cache-dir@^0.1.1: 1657 | version "0.1.1" 1658 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" 1659 | dependencies: 1660 | commondir "^1.0.1" 1661 | mkdirp "^0.5.1" 1662 | pkg-dir "^1.0.0" 1663 | 1664 | find-root@^0.1.1: 1665 | version "0.1.2" 1666 | resolved "https://registry.yarnpkg.com/find-root/-/find-root-0.1.2.tgz#98d2267cff1916ccaf2743b3a0eea81d79d7dcd1" 1667 | 1668 | find-root@^1.0.0: 1669 | version "1.0.0" 1670 | resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.0.0.tgz#962ff211aab25c6520feeeb8d6287f8f6e95807a" 1671 | 1672 | find-up@^1.0.0, find-up@^1.1.2: 1673 | version "1.1.2" 1674 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1675 | dependencies: 1676 | path-exists "^2.0.0" 1677 | pinkie-promise "^2.0.0" 1678 | 1679 | flat-cache@^1.2.1: 1680 | version "1.2.1" 1681 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.1.tgz#6c837d6225a7de5659323740b36d5361f71691ff" 1682 | dependencies: 1683 | circular-json "^0.3.0" 1684 | del "^2.0.2" 1685 | graceful-fs "^4.1.2" 1686 | write "^0.2.1" 1687 | 1688 | for-in@^0.1.5: 1689 | version "0.1.6" 1690 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8" 1691 | 1692 | for-own@^0.1.4: 1693 | version "0.1.4" 1694 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072" 1695 | dependencies: 1696 | for-in "^0.1.5" 1697 | 1698 | foreach@^2.0.5: 1699 | version "2.0.5" 1700 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1701 | 1702 | foreground-child@^1.3.3, foreground-child@^1.5.3: 1703 | version "1.5.3" 1704 | resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-1.5.3.tgz#94dd6aba671389867de8e57e99f1c2ecfb15c01a" 1705 | dependencies: 1706 | cross-spawn "^4" 1707 | signal-exit "^3.0.0" 1708 | 1709 | forever-agent@~0.6.1: 1710 | version "0.6.1" 1711 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1712 | 1713 | form-data@~2.1.1: 1714 | version "2.1.2" 1715 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 1716 | dependencies: 1717 | asynckit "^0.4.0" 1718 | combined-stream "^1.0.5" 1719 | mime-types "^2.1.12" 1720 | 1721 | formatio@1.1.1: 1722 | version "1.1.1" 1723 | resolved "https://registry.yarnpkg.com/formatio/-/formatio-1.1.1.tgz#5ed3ccd636551097383465d996199100e86161e9" 1724 | dependencies: 1725 | samsam "~1.1" 1726 | 1727 | fresh-falafel@^1.2.0: 1728 | version "1.2.0" 1729 | resolved "https://registry.yarnpkg.com/fresh-falafel/-/fresh-falafel-1.2.0.tgz#5966dee95fb35d2a29b12d2f25168b17225e4b6c" 1730 | dependencies: 1731 | acorn "^1.0.3" 1732 | foreach "^2.0.5" 1733 | isarray "0.0.1" 1734 | object-keys "^1.0.6" 1735 | 1736 | fs-extra@0.26.5: 1737 | version "0.26.5" 1738 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.26.5.tgz#53ac74667ca083fd2dc1712c813039ca32d69a7f" 1739 | dependencies: 1740 | graceful-fs "^4.1.2" 1741 | jsonfile "^2.1.0" 1742 | klaw "^1.0.0" 1743 | path-is-absolute "^1.0.0" 1744 | rimraf "^2.2.8" 1745 | 1746 | fs-readdir-recursive@^0.1.0: 1747 | version "0.1.2" 1748 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-0.1.2.tgz#315b4fb8c1ca5b8c47defef319d073dad3568059" 1749 | 1750 | fs-readdir-recursive@^1.0.0: 1751 | version "1.0.0" 1752 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1753 | 1754 | fs.realpath@^1.0.0: 1755 | version "1.0.0" 1756 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1757 | 1758 | fsevents@^1.0.0: 1759 | version "1.0.15" 1760 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.0.15.tgz#fa63f590f3c2ad91275e4972a6cea545fb0aae44" 1761 | dependencies: 1762 | nan "^2.3.0" 1763 | node-pre-gyp "^0.6.29" 1764 | 1765 | fstream-ignore@~1.0.5: 1766 | version "1.0.5" 1767 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1768 | dependencies: 1769 | fstream "^1.0.0" 1770 | inherits "2" 1771 | minimatch "^3.0.0" 1772 | 1773 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10: 1774 | version "1.0.10" 1775 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822" 1776 | dependencies: 1777 | graceful-fs "^4.1.2" 1778 | inherits "~2.0.0" 1779 | mkdirp ">=0.5 0" 1780 | rimraf "2" 1781 | 1782 | gauge@~2.6.0: 1783 | version "2.6.0" 1784 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.6.0.tgz#d35301ad18e96902b4751dcbbe40f4218b942a46" 1785 | dependencies: 1786 | aproba "^1.0.3" 1787 | console-control-strings "^1.0.0" 1788 | has-color "^0.1.7" 1789 | has-unicode "^2.0.0" 1790 | object-assign "^4.1.0" 1791 | signal-exit "^3.0.0" 1792 | string-width "^1.0.1" 1793 | strip-ansi "^3.0.1" 1794 | wide-align "^1.1.0" 1795 | 1796 | generate-function@^2.0.0: 1797 | version "2.0.0" 1798 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1799 | 1800 | generate-object-property@^1.1.0: 1801 | version "1.2.0" 1802 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1803 | dependencies: 1804 | is-property "^1.0.0" 1805 | 1806 | get-caller-file@^1.0.1: 1807 | version "1.0.2" 1808 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1809 | 1810 | get-stdin@^4.0.1: 1811 | version "4.0.1" 1812 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1813 | 1814 | getpass@^0.1.1: 1815 | version "0.1.6" 1816 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 1817 | dependencies: 1818 | assert-plus "^1.0.0" 1819 | 1820 | glob-base@^0.3.0: 1821 | version "0.3.0" 1822 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1823 | dependencies: 1824 | glob-parent "^2.0.0" 1825 | is-glob "^2.0.0" 1826 | 1827 | glob-parent@^2.0.0: 1828 | version "2.0.0" 1829 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1830 | dependencies: 1831 | is-glob "^2.0.0" 1832 | 1833 | glob@7.0.5: 1834 | version "7.0.5" 1835 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.5.tgz#b4202a69099bbb4d292a7c1b95b6682b67ebdc95" 1836 | dependencies: 1837 | fs.realpath "^1.0.0" 1838 | inflight "^1.0.4" 1839 | inherits "2" 1840 | minimatch "^3.0.2" 1841 | once "^1.3.0" 1842 | path-is-absolute "^1.0.0" 1843 | 1844 | glob@^5.0.14, glob@^5.0.15, glob@^5.0.3, glob@^5.0.5: 1845 | version "5.0.15" 1846 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 1847 | dependencies: 1848 | inflight "^1.0.4" 1849 | inherits "2" 1850 | minimatch "2 || 3" 1851 | once "^1.3.0" 1852 | path-is-absolute "^1.0.0" 1853 | 1854 | glob@^7.0.3, glob@^7.0.5, glob@^7.0.6, glob@^7.1.0: 1855 | version "7.1.1" 1856 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1857 | dependencies: 1858 | fs.realpath "^1.0.0" 1859 | inflight "^1.0.4" 1860 | inherits "2" 1861 | minimatch "^3.0.2" 1862 | once "^1.3.0" 1863 | path-is-absolute "^1.0.0" 1864 | 1865 | globals@^6.4.0: 1866 | version "6.4.1" 1867 | resolved "https://registry.yarnpkg.com/globals/-/globals-6.4.1.tgz#8498032b3b6d1cc81eebc5f79690d8fe29fabf4f" 1868 | 1869 | globals@^8.11.0: 1870 | version "8.18.0" 1871 | resolved "https://registry.yarnpkg.com/globals/-/globals-8.18.0.tgz#93d4a62bdcac38cfafafc47d6b034768cb0ffcb4" 1872 | 1873 | globals@^9.0.0: 1874 | version "9.12.0" 1875 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.12.0.tgz#992ce90828c3a55fa8f16fada177adb64664cf9d" 1876 | 1877 | globby@^5.0.0: 1878 | version "5.0.0" 1879 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1880 | dependencies: 1881 | array-union "^1.0.1" 1882 | arrify "^1.0.0" 1883 | glob "^7.0.3" 1884 | object-assign "^4.0.1" 1885 | pify "^2.0.0" 1886 | pinkie-promise "^2.0.0" 1887 | 1888 | graceful-fs@^4.1.2, graceful-fs@^4.1.4, graceful-fs@^4.1.6, graceful-fs@^4.1.9: 1889 | version "4.1.10" 1890 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.10.tgz#f2d720c22092f743228775c75e3612632501f131" 1891 | 1892 | graceful-fs@~1: 1893 | version "1.2.3" 1894 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-1.2.3.tgz#15a4806a57547cb2d2dbf27f42e89a8c3451b364" 1895 | 1896 | "graceful-readlink@>= 1.0.0": 1897 | version "1.0.1" 1898 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1899 | 1900 | growl@1.9.2: 1901 | version "1.9.2" 1902 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" 1903 | 1904 | handlebars@^4.0.0, handlebars@^4.0.3: 1905 | version "4.0.5" 1906 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.5.tgz#92c6ed6bb164110c50d4d8d0fbddc70806c6f8e7" 1907 | dependencies: 1908 | async "^1.4.0" 1909 | optimist "^0.6.1" 1910 | source-map "^0.4.4" 1911 | optionalDependencies: 1912 | uglify-js "^2.6" 1913 | 1914 | har-validator@~2.0.6: 1915 | version "2.0.6" 1916 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 1917 | dependencies: 1918 | chalk "^1.1.1" 1919 | commander "^2.9.0" 1920 | is-my-json-valid "^2.12.4" 1921 | pinkie-promise "^2.0.0" 1922 | 1923 | has-ansi@^2.0.0: 1924 | version "2.0.0" 1925 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1926 | dependencies: 1927 | ansi-regex "^2.0.0" 1928 | 1929 | has-color@^0.1.7: 1930 | version "0.1.7" 1931 | resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f" 1932 | 1933 | has-flag@^1.0.0: 1934 | version "1.0.0" 1935 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1936 | 1937 | has-unicode@^2.0.0: 1938 | version "2.0.1" 1939 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1940 | 1941 | hawk@~3.1.3: 1942 | version "3.1.3" 1943 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1944 | dependencies: 1945 | boom "2.x.x" 1946 | cryptiles "2.x.x" 1947 | hoek "2.x.x" 1948 | sntp "1.x.x" 1949 | 1950 | hoek@2.x.x: 1951 | version "2.16.3" 1952 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1953 | 1954 | home-or-tmp@^1.0.0: 1955 | version "1.0.0" 1956 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-1.0.0.tgz#4b9f1e40800c3e50c6c27f781676afcce71f3985" 1957 | dependencies: 1958 | os-tmpdir "^1.0.1" 1959 | user-home "^1.1.1" 1960 | 1961 | home-or-tmp@^2.0.0: 1962 | version "2.0.0" 1963 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1964 | dependencies: 1965 | os-homedir "^1.0.0" 1966 | os-tmpdir "^1.0.1" 1967 | 1968 | hosted-git-info@^2.1.4: 1969 | version "2.1.5" 1970 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.1.5.tgz#0ba81d90da2e25ab34a332e6ec77936e1598118b" 1971 | 1972 | html-encoding-sniffer@^1.0.1: 1973 | version "1.0.1" 1974 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 1975 | dependencies: 1976 | whatwg-encoding "^1.0.1" 1977 | 1978 | htmlparser2@~3.8.1: 1979 | version "3.8.3" 1980 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.8.3.tgz#996c28b191516a8be86501a7d79757e5c70c1068" 1981 | dependencies: 1982 | domelementtype "1" 1983 | domhandler "2.3" 1984 | domutils "1.5" 1985 | entities "1.0" 1986 | readable-stream "1.1" 1987 | 1988 | http-signature@~1.1.0: 1989 | version "1.1.1" 1990 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1991 | dependencies: 1992 | assert-plus "^0.2.0" 1993 | jsprim "^1.2.2" 1994 | sshpk "^1.7.0" 1995 | 1996 | ice-cap@0.0.4: 1997 | version "0.0.4" 1998 | resolved "https://registry.yarnpkg.com/ice-cap/-/ice-cap-0.0.4.tgz#8a6d31ab4cac8d4b56de4fa946df3352561b6e18" 1999 | dependencies: 2000 | cheerio "0.20.0" 2001 | color-logger "0.0.3" 2002 | 2003 | iconv-lite@0.4.13, iconv-lite@^0.4.13, iconv-lite@^0.4.5: 2004 | version "0.4.13" 2005 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 2006 | 2007 | ignore@^3.0.9: 2008 | version "3.2.0" 2009 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.0.tgz#8d88f03c3002a0ac52114db25d2c673b0bf1e435" 2010 | 2011 | imurmurhash@^0.1.4: 2012 | version "0.1.4" 2013 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 2014 | 2015 | inflight@^1.0.4: 2016 | version "1.0.6" 2017 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 2018 | dependencies: 2019 | once "^1.3.0" 2020 | wrappy "1" 2021 | 2022 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1: 2023 | version "2.0.3" 2024 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 2025 | 2026 | inherits@2.0.1: 2027 | version "2.0.1" 2028 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 2029 | 2030 | ini@^1.3.4, ini@~1.3.0: 2031 | version "1.3.4" 2032 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 2033 | 2034 | inquirer@^0.11.0: 2035 | version "0.11.4" 2036 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.11.4.tgz#81e3374e8361beaff2d97016206d359d0b32fa4d" 2037 | dependencies: 2038 | ansi-escapes "^1.1.0" 2039 | ansi-regex "^2.0.0" 2040 | chalk "^1.0.0" 2041 | cli-cursor "^1.0.1" 2042 | cli-width "^1.0.1" 2043 | figures "^1.3.5" 2044 | lodash "^3.3.1" 2045 | readline2 "^1.0.1" 2046 | run-async "^0.1.0" 2047 | rx-lite "^3.1.2" 2048 | string-width "^1.0.1" 2049 | strip-ansi "^3.0.0" 2050 | through "^2.3.6" 2051 | 2052 | invariant@^2.2.0: 2053 | version "2.2.1" 2054 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.1.tgz#b097010547668c7e337028ebe816ebe36c8a8d54" 2055 | dependencies: 2056 | loose-envify "^1.0.0" 2057 | 2058 | invert-kv@^1.0.0: 2059 | version "1.0.0" 2060 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 2061 | 2062 | is-arrayish@^0.2.1: 2063 | version "0.2.1" 2064 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 2065 | 2066 | is-binary-path@^1.0.0: 2067 | version "1.0.1" 2068 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 2069 | dependencies: 2070 | binary-extensions "^1.0.0" 2071 | 2072 | is-buffer@^1.0.2: 2073 | version "1.1.4" 2074 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" 2075 | 2076 | is-builtin-module@^1.0.0: 2077 | version "1.0.0" 2078 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 2079 | dependencies: 2080 | builtin-modules "^1.0.0" 2081 | 2082 | is-dotfile@^1.0.0: 2083 | version "1.0.2" 2084 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 2085 | 2086 | is-equal-shallow@^0.1.3: 2087 | version "0.1.3" 2088 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 2089 | dependencies: 2090 | is-primitive "^2.0.0" 2091 | 2092 | is-extendable@^0.1.1: 2093 | version "0.1.1" 2094 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2095 | 2096 | is-extglob@^1.0.0: 2097 | version "1.0.0" 2098 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 2099 | 2100 | is-finite@^1.0.0: 2101 | version "1.0.2" 2102 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 2103 | dependencies: 2104 | number-is-nan "^1.0.0" 2105 | 2106 | is-fullwidth-code-point@^1.0.0: 2107 | version "1.0.0" 2108 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2109 | dependencies: 2110 | number-is-nan "^1.0.0" 2111 | 2112 | is-glob@^2.0.0, is-glob@^2.0.1: 2113 | version "2.0.1" 2114 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 2115 | dependencies: 2116 | is-extglob "^1.0.0" 2117 | 2118 | is-integer@^1.0.4: 2119 | version "1.0.6" 2120 | resolved "https://registry.yarnpkg.com/is-integer/-/is-integer-1.0.6.tgz#5273819fada880d123e1ac00a938e7172dd8d95e" 2121 | dependencies: 2122 | is-finite "^1.0.0" 2123 | 2124 | is-my-json-valid@^2.10.0, is-my-json-valid@^2.12.4: 2125 | version "2.15.0" 2126 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b" 2127 | dependencies: 2128 | generate-function "^2.0.0" 2129 | generate-object-property "^1.1.0" 2130 | jsonpointer "^4.0.0" 2131 | xtend "^4.0.0" 2132 | 2133 | is-number@^2.0.2, is-number@^2.1.0: 2134 | version "2.1.0" 2135 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2136 | dependencies: 2137 | kind-of "^3.0.2" 2138 | 2139 | is-path-cwd@^1.0.0: 2140 | version "1.0.0" 2141 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 2142 | 2143 | is-path-in-cwd@^1.0.0: 2144 | version "1.0.0" 2145 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 2146 | dependencies: 2147 | is-path-inside "^1.0.0" 2148 | 2149 | is-path-inside@^1.0.0: 2150 | version "1.0.0" 2151 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 2152 | dependencies: 2153 | path-is-inside "^1.0.1" 2154 | 2155 | is-posix-bracket@^0.1.0: 2156 | version "0.1.1" 2157 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2158 | 2159 | is-primitive@^2.0.0: 2160 | version "2.0.0" 2161 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2162 | 2163 | is-property@^1.0.0: 2164 | version "1.0.2" 2165 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 2166 | 2167 | is-resolvable@^1.0.0: 2168 | version "1.0.0" 2169 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 2170 | dependencies: 2171 | tryit "^1.0.1" 2172 | 2173 | is-typedarray@~1.0.0: 2174 | version "1.0.0" 2175 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2176 | 2177 | is-utf8@^0.2.0: 2178 | version "0.2.1" 2179 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2180 | 2181 | isarray@0.0.1: 2182 | version "0.0.1" 2183 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 2184 | 2185 | isarray@1.0.0, isarray@~1.0.0: 2186 | version "1.0.0" 2187 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2188 | 2189 | isexe@^1.1.1: 2190 | version "1.1.2" 2191 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-1.1.2.tgz#36f3e22e60750920f5e7241a476a8c6a42275ad0" 2192 | 2193 | isobject@^2.0.0: 2194 | version "2.1.0" 2195 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2196 | dependencies: 2197 | isarray "1.0.0" 2198 | 2199 | isstream@~0.1.2: 2200 | version "0.1.2" 2201 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2202 | 2203 | istanbul-lib-coverage@^1.0.0, istanbul-lib-coverage@^1.0.0-alpha, istanbul-lib-coverage@^1.0.0-alpha.0: 2204 | version "1.0.0" 2205 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.0.0.tgz#c3f9b6d226da12424064cce87fce0fb57fdfa7a2" 2206 | 2207 | istanbul-lib-hook@^1.0.0-alpha.4: 2208 | version "1.0.0-alpha.4" 2209 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.0-alpha.4.tgz#8c5bb9f6fbd8526e0ae6cf639af28266906b938f" 2210 | dependencies: 2211 | append-transform "^0.3.0" 2212 | 2213 | istanbul-lib-instrument@^1.1.4, istanbul-lib-instrument@^1.2.0: 2214 | version "1.2.0" 2215 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.2.0.tgz#73d5d108ab7568c373fdcb7d01c1d42d565bc8c4" 2216 | dependencies: 2217 | babel-generator "^6.18.0" 2218 | babel-template "^6.16.0" 2219 | babel-traverse "^6.18.0" 2220 | babel-types "^6.18.0" 2221 | babylon "^6.13.0" 2222 | istanbul-lib-coverage "^1.0.0" 2223 | semver "^5.3.0" 2224 | 2225 | istanbul-lib-report@^1.0.0-alpha.3: 2226 | version "1.0.0-alpha.3" 2227 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.0.0-alpha.3.tgz#32d5f6ec7f33ca3a602209e278b2e6ff143498af" 2228 | dependencies: 2229 | async "^1.4.2" 2230 | istanbul-lib-coverage "^1.0.0-alpha" 2231 | mkdirp "^0.5.1" 2232 | path-parse "^1.0.5" 2233 | rimraf "^2.4.3" 2234 | supports-color "^3.1.2" 2235 | 2236 | istanbul-lib-source-maps@^1.0.2: 2237 | version "1.0.2" 2238 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.0.2.tgz#9e91b0e5ae6ed203f67c69a34e6e98b10bb69a49" 2239 | dependencies: 2240 | istanbul-lib-coverage "^1.0.0-alpha.0" 2241 | mkdirp "^0.5.1" 2242 | rimraf "^2.4.4" 2243 | source-map "^0.5.3" 2244 | 2245 | istanbul-reports@^1.0.0: 2246 | version "1.0.0" 2247 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.0.0.tgz#24b4eb2b1d29d50f103b369bd422f6e640aa0777" 2248 | dependencies: 2249 | handlebars "^4.0.3" 2250 | 2251 | jodid25519@^1.0.0: 2252 | version "1.0.2" 2253 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 2254 | dependencies: 2255 | jsbn "~0.1.0" 2256 | 2257 | js-beautify@^1.5.10: 2258 | version "1.6.4" 2259 | resolved "https://registry.yarnpkg.com/js-beautify/-/js-beautify-1.6.4.tgz#a9af79699742ac9a1b6fddc1fdbc78bc4d515fc3" 2260 | dependencies: 2261 | config-chain "~1.1.5" 2262 | editorconfig "^0.13.2" 2263 | mkdirp "~0.5.0" 2264 | nopt "~3.0.1" 2265 | 2266 | js-tokens@1.0.1: 2267 | version "1.0.1" 2268 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-1.0.1.tgz#cc435a5c8b94ad15acb7983140fc80182c89aeae" 2269 | 2270 | js-tokens@^2.0.0: 2271 | version "2.0.0" 2272 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-2.0.0.tgz#79903f5563ee778cc1162e6dcf1a0027c97f9cb5" 2273 | 2274 | js-yaml@^3.2.5: 2275 | version "3.6.1" 2276 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.6.1.tgz#6e5fe67d8b205ce4d22fad05b7781e8dadcc4b30" 2277 | dependencies: 2278 | argparse "^1.0.7" 2279 | esprima "^2.6.0" 2280 | 2281 | jsbn@~0.1.0: 2282 | version "0.1.0" 2283 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd" 2284 | 2285 | jsdom@^7.0.2: 2286 | version "7.2.2" 2287 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-7.2.2.tgz#40b402770c2bda23469096bee91ab675e3b1fc6e" 2288 | dependencies: 2289 | abab "^1.0.0" 2290 | acorn "^2.4.0" 2291 | acorn-globals "^1.0.4" 2292 | cssom ">= 0.3.0 < 0.4.0" 2293 | cssstyle ">= 0.2.29 < 0.3.0" 2294 | escodegen "^1.6.1" 2295 | nwmatcher ">= 1.3.7 < 2.0.0" 2296 | parse5 "^1.5.1" 2297 | request "^2.55.0" 2298 | sax "^1.1.4" 2299 | symbol-tree ">= 3.1.0 < 4.0.0" 2300 | tough-cookie "^2.2.0" 2301 | webidl-conversions "^2.0.0" 2302 | whatwg-url-compat "~0.6.5" 2303 | xml-name-validator ">= 2.0.1 < 3.0.0" 2304 | 2305 | jsdom@^9.8.3: 2306 | version "9.8.3" 2307 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.8.3.tgz#fde29c109c32a1131e0b6c65914e64198f97c370" 2308 | dependencies: 2309 | abab "^1.0.0" 2310 | acorn "^2.4.0" 2311 | acorn-globals "^1.0.4" 2312 | array-equal "^1.0.0" 2313 | content-type-parser "^1.0.1" 2314 | cssom ">= 0.3.0 < 0.4.0" 2315 | cssstyle ">= 0.2.36 < 0.3.0" 2316 | escodegen "^1.6.1" 2317 | html-encoding-sniffer "^1.0.1" 2318 | iconv-lite "^0.4.13" 2319 | nwmatcher ">= 1.3.7 < 2.0.0" 2320 | parse5 "^1.5.1" 2321 | request "^2.55.0" 2322 | sax "^1.1.4" 2323 | symbol-tree ">= 3.1.0 < 4.0.0" 2324 | tough-cookie "^2.3.1" 2325 | webidl-conversions "^3.0.1" 2326 | whatwg-encoding "^1.0.1" 2327 | whatwg-url "^3.0.0" 2328 | xml-name-validator ">= 2.0.1 < 3.0.0" 2329 | 2330 | jsesc@^1.3.0: 2331 | version "1.3.0" 2332 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2333 | 2334 | jsesc@~0.5.0: 2335 | version "0.5.0" 2336 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2337 | 2338 | json-schema@0.2.3: 2339 | version "0.2.3" 2340 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2341 | 2342 | json-stable-stringify@^1.0.0: 2343 | version "1.0.1" 2344 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2345 | dependencies: 2346 | jsonify "~0.0.0" 2347 | 2348 | json-stringify-safe@~5.0.1: 2349 | version "5.0.1" 2350 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2351 | 2352 | json3@3.3.2: 2353 | version "3.3.2" 2354 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 2355 | 2356 | json5@^0.4.0: 2357 | version "0.4.0" 2358 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.4.0.tgz#054352e4c4c80c86c0923877d449de176a732c8d" 2359 | 2360 | json5@^0.5.0: 2361 | version "0.5.0" 2362 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.0.tgz#9b20715b026cbe3778fd769edccd822d8332a5b2" 2363 | 2364 | jsonfile@^2.1.0: 2365 | version "2.4.0" 2366 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" 2367 | optionalDependencies: 2368 | graceful-fs "^4.1.6" 2369 | 2370 | jsonify@~0.0.0: 2371 | version "0.0.0" 2372 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2373 | 2374 | jsonpointer@^4.0.0: 2375 | version "4.0.0" 2376 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.0.tgz#6661e161d2fc445f19f98430231343722e1fcbd5" 2377 | 2378 | jsprim@^1.2.2: 2379 | version "1.3.1" 2380 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252" 2381 | dependencies: 2382 | extsprintf "1.0.2" 2383 | json-schema "0.2.3" 2384 | verror "1.3.6" 2385 | 2386 | kind-of@^3.0.2: 2387 | version "3.0.4" 2388 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.0.4.tgz#7b8ecf18a4e17f8269d73b501c9f232c96887a74" 2389 | dependencies: 2390 | is-buffer "^1.0.2" 2391 | 2392 | klaw@^1.0.0: 2393 | version "1.3.1" 2394 | resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" 2395 | optionalDependencies: 2396 | graceful-fs "^4.1.9" 2397 | 2398 | lazy-cache@^1.0.3: 2399 | version "1.0.4" 2400 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2401 | 2402 | lcid@^1.0.0: 2403 | version "1.0.0" 2404 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2405 | dependencies: 2406 | invert-kv "^1.0.0" 2407 | 2408 | leven@^1.0.2: 2409 | version "1.0.2" 2410 | resolved "https://registry.yarnpkg.com/leven/-/leven-1.0.2.tgz#9144b6eebca5f1d0680169f1a6770dcea60b75c3" 2411 | 2412 | levn@~0.2.5: 2413 | version "0.2.5" 2414 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.2.5.tgz#ba8d339d0ca4a610e3a3f145b9caf48807155054" 2415 | dependencies: 2416 | prelude-ls "~1.1.0" 2417 | type-check "~0.3.1" 2418 | 2419 | levn@~0.3.0: 2420 | version "0.3.0" 2421 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2422 | dependencies: 2423 | prelude-ls "~1.1.2" 2424 | type-check "~0.3.2" 2425 | 2426 | load-json-file@^1.0.0: 2427 | version "1.1.0" 2428 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2429 | dependencies: 2430 | graceful-fs "^4.1.2" 2431 | parse-json "^2.2.0" 2432 | pify "^2.0.0" 2433 | pinkie-promise "^2.0.0" 2434 | strip-bom "^2.0.0" 2435 | 2436 | lodash._arraycopy@^3.0.0: 2437 | version "3.0.0" 2438 | resolved "https://registry.yarnpkg.com/lodash._arraycopy/-/lodash._arraycopy-3.0.0.tgz#76e7b7c1f1fb92547374878a562ed06a3e50f6e1" 2439 | 2440 | lodash._arrayeach@^3.0.0: 2441 | version "3.0.0" 2442 | resolved "https://registry.yarnpkg.com/lodash._arrayeach/-/lodash._arrayeach-3.0.0.tgz#bab156b2a90d3f1bbd5c653403349e5e5933ef9e" 2443 | 2444 | lodash._arraymap@^3.0.0: 2445 | version "3.0.0" 2446 | resolved "https://registry.yarnpkg.com/lodash._arraymap/-/lodash._arraymap-3.0.0.tgz#1a8fd0f4c0df4b61dea076d717cdc97f0a3c3e66" 2447 | 2448 | lodash._baseassign@^3.0.0: 2449 | version "3.2.0" 2450 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 2451 | dependencies: 2452 | lodash._basecopy "^3.0.0" 2453 | lodash.keys "^3.0.0" 2454 | 2455 | lodash._baseclone@^3.0.0: 2456 | version "3.3.0" 2457 | resolved "https://registry.yarnpkg.com/lodash._baseclone/-/lodash._baseclone-3.3.0.tgz#303519bf6393fe7e42f34d8b630ef7794e3542b7" 2458 | dependencies: 2459 | lodash._arraycopy "^3.0.0" 2460 | lodash._arrayeach "^3.0.0" 2461 | lodash._baseassign "^3.0.0" 2462 | lodash._basefor "^3.0.0" 2463 | lodash.isarray "^3.0.0" 2464 | lodash.keys "^3.0.0" 2465 | 2466 | lodash._basecopy@^3.0.0: 2467 | version "3.0.1" 2468 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 2469 | 2470 | lodash._basecreate@^3.0.0: 2471 | version "3.0.3" 2472 | resolved "https://registry.yarnpkg.com/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz#1bc661614daa7fc311b7d03bf16806a0213cf821" 2473 | 2474 | lodash._basedifference@^3.0.0: 2475 | version "3.0.3" 2476 | resolved "https://registry.yarnpkg.com/lodash._basedifference/-/lodash._basedifference-3.0.3.tgz#f2c204296c2a78e02b389081b6edcac933cf629c" 2477 | dependencies: 2478 | lodash._baseindexof "^3.0.0" 2479 | lodash._cacheindexof "^3.0.0" 2480 | lodash._createcache "^3.0.0" 2481 | 2482 | lodash._baseflatten@^3.0.0: 2483 | version "3.1.4" 2484 | resolved "https://registry.yarnpkg.com/lodash._baseflatten/-/lodash._baseflatten-3.1.4.tgz#0770ff80131af6e34f3b511796a7ba5214e65ff7" 2485 | dependencies: 2486 | lodash.isarguments "^3.0.0" 2487 | lodash.isarray "^3.0.0" 2488 | 2489 | lodash._basefor@^3.0.0: 2490 | version "3.0.3" 2491 | resolved "https://registry.yarnpkg.com/lodash._basefor/-/lodash._basefor-3.0.3.tgz#7550b4e9218ef09fad24343b612021c79b4c20c2" 2492 | 2493 | lodash._baseindexof@^3.0.0: 2494 | version "3.1.0" 2495 | resolved "https://registry.yarnpkg.com/lodash._baseindexof/-/lodash._baseindexof-3.1.0.tgz#fe52b53a1c6761e42618d654e4a25789ed61822c" 2496 | 2497 | lodash._bindcallback@^3.0.0: 2498 | version "3.0.1" 2499 | resolved "https://registry.yarnpkg.com/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e" 2500 | 2501 | lodash._cacheindexof@^3.0.0: 2502 | version "3.0.2" 2503 | resolved "https://registry.yarnpkg.com/lodash._cacheindexof/-/lodash._cacheindexof-3.0.2.tgz#3dc69ac82498d2ee5e3ce56091bafd2adc7bde92" 2504 | 2505 | lodash._createassigner@^3.0.0: 2506 | version "3.1.1" 2507 | resolved "https://registry.yarnpkg.com/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz#838a5bae2fdaca63ac22dee8e19fa4e6d6970b11" 2508 | dependencies: 2509 | lodash._bindcallback "^3.0.0" 2510 | lodash._isiterateecall "^3.0.0" 2511 | lodash.restparam "^3.0.0" 2512 | 2513 | lodash._createcache@^3.0.0: 2514 | version "3.1.2" 2515 | resolved "https://registry.yarnpkg.com/lodash._createcache/-/lodash._createcache-3.1.2.tgz#56d6a064017625e79ebca6b8018e17440bdcf093" 2516 | dependencies: 2517 | lodash._getnative "^3.0.0" 2518 | 2519 | lodash._getnative@^3.0.0: 2520 | version "3.9.1" 2521 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 2522 | 2523 | lodash._isiterateecall@^3.0.0: 2524 | version "3.0.9" 2525 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 2526 | 2527 | lodash._pickbyarray@^3.0.0: 2528 | version "3.0.2" 2529 | resolved "https://registry.yarnpkg.com/lodash._pickbyarray/-/lodash._pickbyarray-3.0.2.tgz#1f898d9607eb560b0e167384b77c7c6d108aa4c5" 2530 | 2531 | lodash._pickbycallback@^3.0.0: 2532 | version "3.0.0" 2533 | resolved "https://registry.yarnpkg.com/lodash._pickbycallback/-/lodash._pickbycallback-3.0.0.tgz#ff61b9a017a7b3af7d30e6c53de28afa19b8750a" 2534 | dependencies: 2535 | lodash._basefor "^3.0.0" 2536 | lodash.keysin "^3.0.0" 2537 | 2538 | lodash.clonedeep@^3.0.1: 2539 | version "3.0.2" 2540 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-3.0.2.tgz#a0a1e40d82a5ea89ff5b147b8444ed63d92827db" 2541 | dependencies: 2542 | lodash._baseclone "^3.0.0" 2543 | lodash._bindcallback "^3.0.0" 2544 | 2545 | lodash.create@3.1.1: 2546 | version "3.1.1" 2547 | resolved "https://registry.yarnpkg.com/lodash.create/-/lodash.create-3.1.1.tgz#d7f2849f0dbda7e04682bb8cd72ab022461debe7" 2548 | dependencies: 2549 | lodash._baseassign "^3.0.0" 2550 | lodash._basecreate "^3.0.0" 2551 | lodash._isiterateecall "^3.0.0" 2552 | 2553 | lodash.isarguments@^3.0.0: 2554 | version "3.1.0" 2555 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 2556 | 2557 | lodash.isarray@^3.0.0: 2558 | version "3.0.4" 2559 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 2560 | 2561 | lodash.isplainobject@^3.0.0: 2562 | version "3.2.0" 2563 | resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-3.2.0.tgz#9a8238ae16b200432960cd7346512d0123fbf4c5" 2564 | dependencies: 2565 | lodash._basefor "^3.0.0" 2566 | lodash.isarguments "^3.0.0" 2567 | lodash.keysin "^3.0.0" 2568 | 2569 | lodash.istypedarray@^3.0.0: 2570 | version "3.0.6" 2571 | resolved "https://registry.yarnpkg.com/lodash.istypedarray/-/lodash.istypedarray-3.0.6.tgz#c9a477498607501d8e8494d283b87c39281cef62" 2572 | 2573 | lodash.keys@^3.0.0: 2574 | version "3.1.2" 2575 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 2576 | dependencies: 2577 | lodash._getnative "^3.0.0" 2578 | lodash.isarguments "^3.0.0" 2579 | lodash.isarray "^3.0.0" 2580 | 2581 | lodash.keysin@^3.0.0: 2582 | version "3.0.8" 2583 | resolved "https://registry.yarnpkg.com/lodash.keysin/-/lodash.keysin-3.0.8.tgz#22c4493ebbedb1427962a54b445b2c8a767fb47f" 2584 | dependencies: 2585 | lodash.isarguments "^3.0.0" 2586 | lodash.isarray "^3.0.0" 2587 | 2588 | lodash.merge@^3.3.2: 2589 | version "3.3.2" 2590 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-3.3.2.tgz#0d90d93ed637b1878437bb3e21601260d7afe994" 2591 | dependencies: 2592 | lodash._arraycopy "^3.0.0" 2593 | lodash._arrayeach "^3.0.0" 2594 | lodash._createassigner "^3.0.0" 2595 | lodash._getnative "^3.0.0" 2596 | lodash.isarguments "^3.0.0" 2597 | lodash.isarray "^3.0.0" 2598 | lodash.isplainobject "^3.0.0" 2599 | lodash.istypedarray "^3.0.0" 2600 | lodash.keys "^3.0.0" 2601 | lodash.keysin "^3.0.0" 2602 | lodash.toplainobject "^3.0.0" 2603 | 2604 | lodash.omit@^3.1.0: 2605 | version "3.1.0" 2606 | resolved "https://registry.yarnpkg.com/lodash.omit/-/lodash.omit-3.1.0.tgz#897fe382e6413d9ac97c61f78ed1e057a00af9f3" 2607 | dependencies: 2608 | lodash._arraymap "^3.0.0" 2609 | lodash._basedifference "^3.0.0" 2610 | lodash._baseflatten "^3.0.0" 2611 | lodash._bindcallback "^3.0.0" 2612 | lodash._pickbyarray "^3.0.0" 2613 | lodash._pickbycallback "^3.0.0" 2614 | lodash.keysin "^3.0.0" 2615 | lodash.restparam "^3.0.0" 2616 | 2617 | lodash.pickby@^4.6.0: 2618 | version "4.6.0" 2619 | resolved "https://registry.yarnpkg.com/lodash.pickby/-/lodash.pickby-4.6.0.tgz#7dea21d8c18d7703a27c704c15d3b84a67e33aff" 2620 | 2621 | lodash.restparam@^3.0.0: 2622 | version "3.6.1" 2623 | resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" 2624 | 2625 | lodash.toplainobject@^3.0.0: 2626 | version "3.0.0" 2627 | resolved "https://registry.yarnpkg.com/lodash.toplainobject/-/lodash.toplainobject-3.0.0.tgz#28790ad942d293d78aa663a07ecf7f52ca04198d" 2628 | dependencies: 2629 | lodash._basecopy "^3.0.0" 2630 | lodash.keysin "^3.0.0" 2631 | 2632 | lodash@^3.10.0, lodash@^3.3.1, lodash@^3.9.3: 2633 | version "3.10.1" 2634 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" 2635 | 2636 | lodash@^4.1.0, lodash@^4.2.0: 2637 | version "4.16.6" 2638 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.16.6.tgz#d22c9ac660288f3843e16ba7d2b5d06cca27d777" 2639 | 2640 | lolex@1.3.2: 2641 | version "1.3.2" 2642 | resolved "https://registry.yarnpkg.com/lolex/-/lolex-1.3.2.tgz#7c3da62ffcb30f0f5a80a2566ca24e45d8a01f31" 2643 | 2644 | longest@^1.0.1: 2645 | version "1.0.1" 2646 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2647 | 2648 | loose-envify@^1.0.0: 2649 | version "1.3.0" 2650 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.0.tgz#6b26248c42f6d4fa4b0d8542f78edfcde35642a8" 2651 | dependencies: 2652 | js-tokens "^2.0.0" 2653 | 2654 | lru-cache@^3.2.0: 2655 | version "3.2.0" 2656 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-3.2.0.tgz#71789b3b7f5399bec8565dda38aa30d2a097efee" 2657 | dependencies: 2658 | pseudomap "^1.0.1" 2659 | 2660 | lru-cache@^4.0.1: 2661 | version "4.0.1" 2662 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.1.tgz#1343955edaf2e37d9b9e7ee7241e27c4b9fb72be" 2663 | dependencies: 2664 | pseudomap "^1.0.1" 2665 | yallist "^2.0.0" 2666 | 2667 | magic-string@^0.16.0: 2668 | version "0.16.0" 2669 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.16.0.tgz#970ebb0da7193301285fb1aa650f39bdd81eb45a" 2670 | dependencies: 2671 | vlq "^0.2.1" 2672 | 2673 | marked@0.3.5: 2674 | version "0.3.5" 2675 | resolved "https://registry.yarnpkg.com/marked/-/marked-0.3.5.tgz#4113a15ac5d7bca158a5aae07224587b9fa15b94" 2676 | 2677 | md5-hex@^1.2.0: 2678 | version "1.3.0" 2679 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-1.3.0.tgz#d2c4afe983c4370662179b8cad145219135046c4" 2680 | dependencies: 2681 | md5-o-matic "^0.1.1" 2682 | 2683 | md5-o-matic@^0.1.1: 2684 | version "0.1.1" 2685 | resolved "https://registry.yarnpkg.com/md5-o-matic/-/md5-o-matic-0.1.1.tgz#822bccd65e117c514fab176b25945d54100a03c3" 2686 | 2687 | micromatch@^2.1.5, micromatch@^2.3.11: 2688 | version "2.3.11" 2689 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2690 | dependencies: 2691 | arr-diff "^2.0.0" 2692 | array-unique "^0.2.1" 2693 | braces "^1.8.2" 2694 | expand-brackets "^0.1.4" 2695 | extglob "^0.3.1" 2696 | filename-regex "^2.0.0" 2697 | is-extglob "^1.0.0" 2698 | is-glob "^2.0.1" 2699 | kind-of "^3.0.2" 2700 | normalize-path "^2.0.1" 2701 | object.omit "^2.0.0" 2702 | parse-glob "^3.0.4" 2703 | regex-cache "^0.4.2" 2704 | 2705 | mime-db@~1.24.0: 2706 | version "1.24.0" 2707 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.24.0.tgz#e2d13f939f0016c6e4e9ad25a8652f126c467f0c" 2708 | 2709 | mime-types@^2.1.12, mime-types@~2.1.7: 2710 | version "2.1.12" 2711 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.12.tgz#152ba256777020dd4663f54c2e7bc26381e71729" 2712 | dependencies: 2713 | mime-db "~1.24.0" 2714 | 2715 | "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2: 2716 | version "3.0.3" 2717 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 2718 | dependencies: 2719 | brace-expansion "^1.0.0" 2720 | 2721 | minimatch@^2.0.3: 2722 | version "2.0.10" 2723 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-2.0.10.tgz#8d087c39c6b38c001b97fca7ce6d0e1e80afbac7" 2724 | dependencies: 2725 | brace-expansion "^1.0.0" 2726 | 2727 | minimist@0.0.8, minimist@~0.0.1: 2728 | version "0.0.8" 2729 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2730 | 2731 | minimist@1.1.1, minimist@^1.1.0, minimist@^1.1.1: 2732 | version "1.1.1" 2733 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.1.1.tgz#1bc2bc71658cdca5712475684363615b0b4f695b" 2734 | 2735 | minimist@^1.2.0: 2736 | version "1.2.0" 2737 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2738 | 2739 | mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1: 2740 | version "0.5.1" 2741 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2742 | dependencies: 2743 | minimist "0.0.8" 2744 | 2745 | mocha-jsdom@^1.1.0: 2746 | version "1.1.0" 2747 | resolved "https://registry.yarnpkg.com/mocha-jsdom/-/mocha-jsdom-1.1.0.tgz#e1576fbd0601cc89d358a213a0e5585d1b7c7a01" 2748 | 2749 | mocha@^3.0.0: 2750 | version "3.1.2" 2751 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-3.1.2.tgz#51f93b432bf7e1b175ffc22883ccd0be32dba6b5" 2752 | dependencies: 2753 | browser-stdout "1.3.0" 2754 | commander "2.9.0" 2755 | debug "2.2.0" 2756 | diff "1.4.0" 2757 | escape-string-regexp "1.0.5" 2758 | glob "7.0.5" 2759 | growl "1.9.2" 2760 | json3 "3.3.2" 2761 | lodash.create "3.1.1" 2762 | mkdirp "0.5.1" 2763 | supports-color "3.1.2" 2764 | 2765 | "mout@>=0.9 <2.0": 2766 | version "1.0.0" 2767 | resolved "https://registry.yarnpkg.com/mout/-/mout-1.0.0.tgz#9bdf1d4af57d66d47cb353a6335a3281098e1501" 2768 | 2769 | mout@^0.11.0: 2770 | version "0.11.1" 2771 | resolved "https://registry.yarnpkg.com/mout/-/mout-0.11.1.tgz#ba3611df5f0e5b1ffbfd01166b8f02d1f5fa2b99" 2772 | 2773 | ms@0.7.1: 2774 | version "0.7.1" 2775 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2776 | 2777 | multiline@^1.0.2: 2778 | version "1.0.2" 2779 | resolved "https://registry.yarnpkg.com/multiline/-/multiline-1.0.2.tgz#69b1f25ff074d2828904f244ddd06b7d96ef6c93" 2780 | dependencies: 2781 | strip-indent "^1.0.0" 2782 | 2783 | mute-stream@0.0.5: 2784 | version "0.0.5" 2785 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 2786 | 2787 | nan@^2.3.0: 2788 | version "2.4.0" 2789 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.4.0.tgz#fb3c59d45fe4effe215f0b890f8adf6eb32d2232" 2790 | 2791 | node-pre-gyp@^0.6.29: 2792 | version "0.6.31" 2793 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.31.tgz#d8a00ddaa301a940615dbcc8caad4024d58f6017" 2794 | dependencies: 2795 | mkdirp "~0.5.1" 2796 | nopt "~3.0.6" 2797 | npmlog "^4.0.0" 2798 | rc "~1.1.6" 2799 | request "^2.75.0" 2800 | rimraf "~2.5.4" 2801 | semver "~5.3.0" 2802 | tar "~2.2.1" 2803 | tar-pack "~3.3.0" 2804 | 2805 | node-uuid@~1.4.7: 2806 | version "1.4.7" 2807 | resolved "https://registry.yarnpkg.com/node-uuid/-/node-uuid-1.4.7.tgz#6da5a17668c4b3dd59623bda11cf7fa4c1f60a6f" 2808 | 2809 | nopt@~3.0.1, nopt@~3.0.6: 2810 | version "3.0.6" 2811 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 2812 | dependencies: 2813 | abbrev "1" 2814 | 2815 | normalize-package-data@^2.3.2: 2816 | version "2.3.5" 2817 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.5.tgz#8d924f142960e1777e7ffe170543631cc7cb02df" 2818 | dependencies: 2819 | hosted-git-info "^2.1.4" 2820 | is-builtin-module "^1.0.0" 2821 | semver "2 || 3 || 4 || 5" 2822 | validate-npm-package-license "^3.0.1" 2823 | 2824 | normalize-path@^2.0.1: 2825 | version "2.0.1" 2826 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 2827 | 2828 | npm-path@^1.0.0, npm-path@^1.0.1: 2829 | version "1.1.0" 2830 | resolved "https://registry.yarnpkg.com/npm-path/-/npm-path-1.1.0.tgz#0474ae00419c327d54701b7cf2cd05dc88be1140" 2831 | dependencies: 2832 | which "^1.2.4" 2833 | 2834 | npm-run@^2.0.0: 2835 | version "2.0.0" 2836 | resolved "https://registry.yarnpkg.com/npm-run/-/npm-run-2.0.0.tgz#28dfc0ad5e2e46fe0848e2bd58ddf002e7b73c15" 2837 | dependencies: 2838 | minimist "^1.1.1" 2839 | npm-path "^1.0.1" 2840 | npm-which "^2.0.0" 2841 | serializerr "^1.0.1" 2842 | spawn-sync "^1.0.5" 2843 | sync-exec "^0.5.0" 2844 | 2845 | npm-which@^2.0.0: 2846 | version "2.0.0" 2847 | resolved "https://registry.yarnpkg.com/npm-which/-/npm-which-2.0.0.tgz#0c46982160b783093661d1d01bd4496d2feabbac" 2848 | dependencies: 2849 | commander "^2.2.0" 2850 | npm-path "^1.0.0" 2851 | which "^1.0.5" 2852 | 2853 | npmlog@^4.0.0: 2854 | version "4.0.0" 2855 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.0.tgz#e094503961c70c1774eb76692080e8d578a9f88f" 2856 | dependencies: 2857 | are-we-there-yet "~1.1.2" 2858 | console-control-strings "~1.1.0" 2859 | gauge "~2.6.0" 2860 | set-blocking "~2.0.0" 2861 | 2862 | nth-check@~1.0.1: 2863 | version "1.0.1" 2864 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.1.tgz#9929acdf628fc2c41098deab82ac580cf149aae4" 2865 | dependencies: 2866 | boolbase "~1.0.0" 2867 | 2868 | number-is-nan@^1.0.0: 2869 | version "1.0.1" 2870 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2871 | 2872 | "nwmatcher@>= 1.3.7 < 2.0.0": 2873 | version "1.3.9" 2874 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.3.9.tgz#8bab486ff7fa3dfd086656bbe8b17116d3692d2a" 2875 | 2876 | nyc@^8.3.0: 2877 | version "8.4.0" 2878 | resolved "https://registry.yarnpkg.com/nyc/-/nyc-8.4.0.tgz#660371c807caef0427fb9b0948f74180624ea6e4" 2879 | dependencies: 2880 | archy "^1.0.0" 2881 | arrify "^1.0.1" 2882 | caching-transform "^1.0.0" 2883 | convert-source-map "^1.3.0" 2884 | default-require-extensions "^1.0.0" 2885 | find-cache-dir "^0.1.1" 2886 | find-up "^1.1.2" 2887 | foreground-child "^1.5.3" 2888 | glob "^7.0.6" 2889 | istanbul-lib-coverage "^1.0.0" 2890 | istanbul-lib-hook "^1.0.0-alpha.4" 2891 | istanbul-lib-instrument "^1.2.0" 2892 | istanbul-lib-report "^1.0.0-alpha.3" 2893 | istanbul-lib-source-maps "^1.0.2" 2894 | istanbul-reports "^1.0.0" 2895 | md5-hex "^1.2.0" 2896 | micromatch "^2.3.11" 2897 | mkdirp "^0.5.0" 2898 | resolve-from "^2.0.0" 2899 | rimraf "^2.5.4" 2900 | signal-exit "^3.0.1" 2901 | spawn-wrap "^1.2.4" 2902 | test-exclude "^2.1.3" 2903 | yargs "^6.0.0" 2904 | yargs-parser "^4.0.2" 2905 | 2906 | oauth-sign@~0.8.1: 2907 | version "0.8.2" 2908 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2909 | 2910 | object-assign@^4.0.1, object-assign@^4.1.0: 2911 | version "4.1.0" 2912 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0" 2913 | 2914 | object-keys@^1.0.6: 2915 | version "1.0.11" 2916 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 2917 | 2918 | object.omit@^2.0.0: 2919 | version "2.0.1" 2920 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2921 | dependencies: 2922 | for-own "^0.1.4" 2923 | is-extendable "^0.1.1" 2924 | 2925 | once@^1.3.0: 2926 | version "1.4.0" 2927 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2928 | dependencies: 2929 | wrappy "1" 2930 | 2931 | once@~1.3.3: 2932 | version "1.3.3" 2933 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 2934 | dependencies: 2935 | wrappy "1" 2936 | 2937 | onetime@^1.0.0: 2938 | version "1.1.0" 2939 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2940 | 2941 | optimist@^0.6.1: 2942 | version "0.6.1" 2943 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2944 | dependencies: 2945 | minimist "~0.0.1" 2946 | wordwrap "~0.0.2" 2947 | 2948 | optionator@^0.5.0: 2949 | version "0.5.0" 2950 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.5.0.tgz#b75a8995a2d417df25b6e4e3862f50aa88651368" 2951 | dependencies: 2952 | deep-is "~0.1.2" 2953 | fast-levenshtein "~1.0.0" 2954 | levn "~0.2.5" 2955 | prelude-ls "~1.1.1" 2956 | type-check "~0.3.1" 2957 | wordwrap "~0.0.2" 2958 | 2959 | optionator@^0.6.0: 2960 | version "0.6.0" 2961 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.6.0.tgz#b63ecbbf0e315fad4bc9827b45dc7ba45284fcb6" 2962 | dependencies: 2963 | deep-is "~0.1.3" 2964 | fast-levenshtein "~1.0.6" 2965 | levn "~0.2.5" 2966 | prelude-ls "~1.1.1" 2967 | type-check "~0.3.1" 2968 | wordwrap "~0.0.2" 2969 | 2970 | optionator@^0.8.1: 2971 | version "0.8.2" 2972 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2973 | dependencies: 2974 | deep-is "~0.1.3" 2975 | fast-levenshtein "~2.0.4" 2976 | levn "~0.3.0" 2977 | prelude-ls "~1.1.2" 2978 | type-check "~0.3.2" 2979 | wordwrap "~1.0.0" 2980 | 2981 | os-homedir@^1.0.0, os-homedir@^1.0.1: 2982 | version "1.0.2" 2983 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2984 | 2985 | os-locale@^1.4.0: 2986 | version "1.4.0" 2987 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2988 | dependencies: 2989 | lcid "^1.0.0" 2990 | 2991 | os-shim@^0.1.2: 2992 | version "0.1.3" 2993 | resolved "https://registry.yarnpkg.com/os-shim/-/os-shim-0.1.3.tgz#6b62c3791cf7909ea35ed46e17658bb417cb3917" 2994 | 2995 | os-tmpdir@^1.0.1: 2996 | version "1.0.2" 2997 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2998 | 2999 | output-file-sync@^1.1.0: 3000 | version "1.1.2" 3001 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 3002 | dependencies: 3003 | graceful-fs "^4.1.4" 3004 | mkdirp "^0.5.1" 3005 | object-assign "^4.1.0" 3006 | 3007 | parse-glob@^3.0.4: 3008 | version "3.0.4" 3009 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 3010 | dependencies: 3011 | glob-base "^0.3.0" 3012 | is-dotfile "^1.0.0" 3013 | is-extglob "^1.0.0" 3014 | is-glob "^2.0.0" 3015 | 3016 | parse-json@^2.2.0: 3017 | version "2.2.0" 3018 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 3019 | dependencies: 3020 | error-ex "^1.2.0" 3021 | 3022 | parse5@^1.5.1: 3023 | version "1.5.1" 3024 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 3025 | 3026 | path-exists@^1.0.0: 3027 | version "1.0.0" 3028 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-1.0.0.tgz#d5a8998eb71ef37a74c34eb0d9eba6e878eea081" 3029 | 3030 | path-exists@^2.0.0: 3031 | version "2.1.0" 3032 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 3033 | dependencies: 3034 | pinkie-promise "^2.0.0" 3035 | 3036 | path-is-absolute@^1.0.0: 3037 | version "1.0.1" 3038 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 3039 | 3040 | path-is-inside@^1.0.1: 3041 | version "1.0.2" 3042 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 3043 | 3044 | path-parse@^1.0.5: 3045 | version "1.0.5" 3046 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 3047 | 3048 | path-type@^1.0.0: 3049 | version "1.1.0" 3050 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 3051 | dependencies: 3052 | graceful-fs "^4.1.2" 3053 | pify "^2.0.0" 3054 | pinkie-promise "^2.0.0" 3055 | 3056 | pify@^2.0.0: 3057 | version "2.3.0" 3058 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 3059 | 3060 | pinkie-promise@^2.0.0: 3061 | version "2.0.1" 3062 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 3063 | dependencies: 3064 | pinkie "^2.0.0" 3065 | 3066 | pinkie@^2.0.0: 3067 | version "2.0.4" 3068 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 3069 | 3070 | pkg-config@^1.0.1, pkg-config@^1.1.0: 3071 | version "1.1.1" 3072 | resolved "https://registry.yarnpkg.com/pkg-config/-/pkg-config-1.1.1.tgz#557ef22d73da3c8837107766c52eadabde298fe4" 3073 | dependencies: 3074 | debug-log "^1.0.0" 3075 | find-root "^1.0.0" 3076 | xtend "^4.0.1" 3077 | 3078 | pkg-dir@^1.0.0: 3079 | version "1.0.0" 3080 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 3081 | dependencies: 3082 | find-up "^1.0.0" 3083 | 3084 | prelude-ls@~1.1.0, prelude-ls@~1.1.1, prelude-ls@~1.1.2: 3085 | version "1.1.2" 3086 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 3087 | 3088 | preserve@^0.2.0: 3089 | version "0.2.0" 3090 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 3091 | 3092 | private@^0.1.6, private@~0.1.5: 3093 | version "0.1.6" 3094 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.6.tgz#55c6a976d0f9bafb9924851350fe47b9b5fbb7c1" 3095 | 3096 | process-nextick-args@~1.0.6: 3097 | version "1.0.7" 3098 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 3099 | 3100 | proto-list@~1.2.1: 3101 | version "1.2.4" 3102 | resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" 3103 | 3104 | protochain@^1.0.5: 3105 | version "1.0.5" 3106 | resolved "https://registry.yarnpkg.com/protochain/-/protochain-1.0.5.tgz#991c407e99de264aadf8f81504b5e7faf7bfa260" 3107 | 3108 | pseudomap@^1.0.1: 3109 | version "1.0.2" 3110 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 3111 | 3112 | punycode@^1.4.1: 3113 | version "1.4.1" 3114 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 3115 | 3116 | q@^1.1.2: 3117 | version "1.4.1" 3118 | resolved "https://registry.yarnpkg.com/q/-/q-1.4.1.tgz#55705bcd93c5f3673530c2c2cbc0c2b3addc286e" 3119 | 3120 | qs@~6.3.0: 3121 | version "6.3.0" 3122 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442" 3123 | 3124 | randomatic@^1.1.3: 3125 | version "1.1.5" 3126 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.5.tgz#5e9ef5f2d573c67bd2b8124ae90b5156e457840b" 3127 | dependencies: 3128 | is-number "^2.0.2" 3129 | kind-of "^3.0.2" 3130 | 3131 | rc@~1.1.6: 3132 | version "1.1.6" 3133 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.6.tgz#43651b76b6ae53b5c802f1151fa3fc3b059969c9" 3134 | dependencies: 3135 | deep-extend "~0.4.0" 3136 | ini "~1.3.0" 3137 | minimist "^1.2.0" 3138 | strip-json-comments "~1.0.4" 3139 | 3140 | read-pkg-up@^1.0.1: 3141 | version "1.0.1" 3142 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 3143 | dependencies: 3144 | find-up "^1.0.0" 3145 | read-pkg "^1.0.0" 3146 | 3147 | read-pkg@^1.0.0: 3148 | version "1.1.0" 3149 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 3150 | dependencies: 3151 | load-json-file "^1.0.0" 3152 | normalize-package-data "^2.3.2" 3153 | path-type "^1.0.0" 3154 | 3155 | readable-stream@1.1: 3156 | version "1.1.13" 3157 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.13.tgz#f6eef764f514c89e2b9e23146a75ba106756d23e" 3158 | dependencies: 3159 | core-util-is "~1.0.0" 3160 | inherits "~2.0.1" 3161 | isarray "0.0.1" 3162 | string_decoder "~0.10.x" 3163 | 3164 | "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2, readable-stream@~2.1.4: 3165 | version "2.1.5" 3166 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" 3167 | dependencies: 3168 | buffer-shims "^1.0.0" 3169 | core-util-is "~1.0.0" 3170 | inherits "~2.0.1" 3171 | isarray "~1.0.0" 3172 | process-nextick-args "~1.0.6" 3173 | string_decoder "~0.10.x" 3174 | util-deprecate "~1.0.1" 3175 | 3176 | readable-stream@~2.0.0: 3177 | version "2.0.6" 3178 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" 3179 | dependencies: 3180 | core-util-is "~1.0.0" 3181 | inherits "~2.0.1" 3182 | isarray "~1.0.0" 3183 | process-nextick-args "~1.0.6" 3184 | string_decoder "~0.10.x" 3185 | util-deprecate "~1.0.1" 3186 | 3187 | readdirp@^2.0.0: 3188 | version "2.1.0" 3189 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 3190 | dependencies: 3191 | graceful-fs "^4.1.2" 3192 | minimatch "^3.0.2" 3193 | readable-stream "^2.0.2" 3194 | set-immediate-shim "^1.0.1" 3195 | 3196 | readline2@^1.0.1: 3197 | version "1.0.1" 3198 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 3199 | dependencies: 3200 | code-point-at "^1.0.0" 3201 | is-fullwidth-code-point "^1.0.0" 3202 | mute-stream "0.0.5" 3203 | 3204 | recast@0.10.33, recast@^0.10.0, recast@^0.10.10: 3205 | version "0.10.33" 3206 | resolved "https://registry.yarnpkg.com/recast/-/recast-0.10.33.tgz#942808f7aa016f1fa7142c461d7e5704aaa8d697" 3207 | dependencies: 3208 | ast-types "0.8.12" 3209 | esprima-fb "~15001.1001.0-dev-harmony-fb" 3210 | private "~0.1.5" 3211 | source-map "~0.5.0" 3212 | 3213 | regenerate@^1.2.1: 3214 | version "1.3.1" 3215 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.1.tgz#0300203a5d2fdcf89116dce84275d011f5903f33" 3216 | 3217 | regenerator-runtime@^0.9.5: 3218 | version "0.9.6" 3219 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.9.6.tgz#d33eb95d0d2001a4be39659707c51b0cb71ce029" 3220 | 3221 | regenerator@0.8.40: 3222 | version "0.8.40" 3223 | resolved "https://registry.yarnpkg.com/regenerator/-/regenerator-0.8.40.tgz#a0e457c58ebdbae575c9f8cd75127e93756435d8" 3224 | dependencies: 3225 | commoner "~0.10.3" 3226 | defs "~1.1.0" 3227 | esprima-fb "~15001.1001.0-dev-harmony-fb" 3228 | private "~0.1.5" 3229 | recast "0.10.33" 3230 | through "~2.3.8" 3231 | 3232 | regex-cache@^0.4.2: 3233 | version "0.4.3" 3234 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 3235 | dependencies: 3236 | is-equal-shallow "^0.1.3" 3237 | is-primitive "^2.0.0" 3238 | 3239 | regexpu-core@^2.0.0: 3240 | version "2.0.0" 3241 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 3242 | dependencies: 3243 | regenerate "^1.2.1" 3244 | regjsgen "^0.2.0" 3245 | regjsparser "^0.1.4" 3246 | 3247 | regexpu@^1.3.0: 3248 | version "1.3.0" 3249 | resolved "https://registry.yarnpkg.com/regexpu/-/regexpu-1.3.0.tgz#e534dc991a9e5846050c98de6d7dd4a55c9ea16d" 3250 | dependencies: 3251 | esprima "^2.6.0" 3252 | recast "^0.10.10" 3253 | regenerate "^1.2.1" 3254 | regjsgen "^0.2.0" 3255 | regjsparser "^0.1.4" 3256 | 3257 | regjsgen@^0.2.0: 3258 | version "0.2.0" 3259 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 3260 | 3261 | regjsparser@^0.1.4: 3262 | version "0.1.5" 3263 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 3264 | dependencies: 3265 | jsesc "~0.5.0" 3266 | 3267 | repeat-element@^1.1.2: 3268 | version "1.1.2" 3269 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3270 | 3271 | repeat-string@^1.5.0, repeat-string@^1.5.2: 3272 | version "1.6.1" 3273 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3274 | 3275 | repeating@^1.1.0, repeating@^1.1.2: 3276 | version "1.1.3" 3277 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-1.1.3.tgz#3d4114218877537494f97f77f9785fab810fa4ac" 3278 | dependencies: 3279 | is-finite "^1.0.0" 3280 | 3281 | repeating@^2.0.0: 3282 | version "2.0.1" 3283 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3284 | dependencies: 3285 | is-finite "^1.0.0" 3286 | 3287 | request@>=2.42.0, request@^2.55.0, request@^2.75.0: 3288 | version "2.78.0" 3289 | resolved "https://registry.yarnpkg.com/request/-/request-2.78.0.tgz#e1c8dec346e1c81923b24acdb337f11decabe9cc" 3290 | dependencies: 3291 | aws-sign2 "~0.6.0" 3292 | aws4 "^1.2.1" 3293 | caseless "~0.11.0" 3294 | combined-stream "~1.0.5" 3295 | extend "~3.0.0" 3296 | forever-agent "~0.6.1" 3297 | form-data "~2.1.1" 3298 | har-validator "~2.0.6" 3299 | hawk "~3.1.3" 3300 | http-signature "~1.1.0" 3301 | is-typedarray "~1.0.0" 3302 | isstream "~0.1.2" 3303 | json-stringify-safe "~5.0.1" 3304 | mime-types "~2.1.7" 3305 | node-uuid "~1.4.7" 3306 | oauth-sign "~0.8.1" 3307 | qs "~6.3.0" 3308 | stringstream "~0.0.4" 3309 | tough-cookie "~2.3.0" 3310 | tunnel-agent "~0.4.1" 3311 | 3312 | require-directory@^2.1.1: 3313 | version "2.1.1" 3314 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3315 | 3316 | require-main-filename@^1.0.1: 3317 | version "1.0.1" 3318 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3319 | 3320 | resolve-from@^2.0.0: 3321 | version "2.0.0" 3322 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" 3323 | 3324 | resolve@1.1.7, resolve@^1.1.5, resolve@^1.1.6, resolve@^1.1.7: 3325 | version "1.1.7" 3326 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 3327 | 3328 | restore-cursor@^1.0.1: 3329 | version "1.0.1" 3330 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 3331 | dependencies: 3332 | exit-hook "^1.0.0" 3333 | onetime "^1.0.0" 3334 | 3335 | right-align@^0.1.1: 3336 | version "0.1.3" 3337 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3338 | dependencies: 3339 | align-text "^0.1.1" 3340 | 3341 | rimraf@2, rimraf@^2.2.8, rimraf@^2.3.3, rimraf@^2.4.3, rimraf@^2.4.4, rimraf@^2.5.4, rimraf@~2.5.1, rimraf@~2.5.4: 3342 | version "2.5.4" 3343 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 3344 | dependencies: 3345 | glob "^7.0.5" 3346 | 3347 | rimraf@~2.1.4: 3348 | version "2.1.4" 3349 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.1.4.tgz#5a6eb62eeda068f51ede50f29b3e5cd22f3d9bb2" 3350 | optionalDependencies: 3351 | graceful-fs "~1" 3352 | 3353 | rocambole-indent@^2.0.4: 3354 | version "2.0.4" 3355 | resolved "https://registry.yarnpkg.com/rocambole-indent/-/rocambole-indent-2.0.4.tgz#a18a24977ca0400b861daa4631e861dcb52d085c" 3356 | dependencies: 3357 | debug "^2.1.3" 3358 | mout "^0.11.0" 3359 | rocambole-token "^1.2.1" 3360 | 3361 | rocambole-linebreak@^1.0.0, rocambole-linebreak@^1.0.2: 3362 | version "1.0.2" 3363 | resolved "https://registry.yarnpkg.com/rocambole-linebreak/-/rocambole-linebreak-1.0.2.tgz#03621515b43b4721c97e5a1c1bca5a0366368f2f" 3364 | dependencies: 3365 | debug "^2.1.3" 3366 | rocambole-token "^1.2.1" 3367 | semver "^4.3.1" 3368 | 3369 | rocambole-node@~1.0: 3370 | version "1.0.0" 3371 | resolved "https://registry.yarnpkg.com/rocambole-node/-/rocambole-node-1.0.0.tgz#db5b49de7407b0080dd514872f28e393d0f7ff3f" 3372 | 3373 | rocambole-token@^1.1.2, rocambole-token@^1.2.1: 3374 | version "1.2.1" 3375 | resolved "https://registry.yarnpkg.com/rocambole-token/-/rocambole-token-1.2.1.tgz#c785df7428dc3cb27ad7897047bd5238cc070d35" 3376 | 3377 | rocambole-whitespace@^1.0.0: 3378 | version "1.0.0" 3379 | resolved "https://registry.yarnpkg.com/rocambole-whitespace/-/rocambole-whitespace-1.0.0.tgz#63330949256b29941f59b190459f999c6b1d3bf9" 3380 | dependencies: 3381 | debug "^2.1.3" 3382 | repeat-string "^1.5.0" 3383 | rocambole-token "^1.2.1" 3384 | 3385 | "rocambole@>=0.6.0 <2.0", "rocambole@>=0.7 <2.0", rocambole@^0.7.0: 3386 | version "0.7.0" 3387 | resolved "https://registry.yarnpkg.com/rocambole/-/rocambole-0.7.0.tgz#f6c79505517dc42b6fb840842b8b953b0f968585" 3388 | dependencies: 3389 | esprima "^2.1" 3390 | 3391 | rocambole@^0.3.6: 3392 | version "0.3.6" 3393 | resolved "https://registry.yarnpkg.com/rocambole/-/rocambole-0.3.6.tgz#4debbf5943144bc7b6006d95be8facc0b74352a7" 3394 | dependencies: 3395 | esprima "~1.0" 3396 | 3397 | rollup-plugin-babel@^2.6.1: 3398 | version "2.6.1" 3399 | resolved "https://registry.yarnpkg.com/rollup-plugin-babel/-/rollup-plugin-babel-2.6.1.tgz#470b03486337045d7e8a3e43fc5fc00e8db82c26" 3400 | dependencies: 3401 | babel-core "6" 3402 | babel-plugin-transform-es2015-classes "^6.9.0" 3403 | object-assign "^4.1.0" 3404 | rollup-pluginutils "^1.5.0" 3405 | 3406 | rollup-plugin-commonjs@^5.0.4: 3407 | version "5.0.5" 3408 | resolved "https://registry.yarnpkg.com/rollup-plugin-commonjs/-/rollup-plugin-commonjs-5.0.5.tgz#14f93d92cb70e6c31142914b83cd3e904be30c1f" 3409 | dependencies: 3410 | acorn "^4.0.1" 3411 | estree-walker "^0.2.1" 3412 | magic-string "^0.16.0" 3413 | resolve "^1.1.7" 3414 | rollup-pluginutils "^1.5.1" 3415 | 3416 | rollup-plugin-includepaths@^0.1.6: 3417 | version "0.1.6" 3418 | resolved "https://registry.yarnpkg.com/rollup-plugin-includepaths/-/rollup-plugin-includepaths-0.1.6.tgz#a90259bba37964512c54aa42465d7add698a0442" 3419 | 3420 | rollup-plugin-node-resolve@^2.0.0: 3421 | version "2.0.0" 3422 | resolved "https://registry.yarnpkg.com/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-2.0.0.tgz#07e0ae94ac002a3ea36e8f33ca121d9f836b1309" 3423 | dependencies: 3424 | browser-resolve "^1.11.0" 3425 | builtin-modules "^1.1.0" 3426 | resolve "^1.1.6" 3427 | 3428 | rollup-pluginutils@^1.5.0, rollup-pluginutils@^1.5.1: 3429 | version "1.5.2" 3430 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-1.5.2.tgz#1e156e778f94b7255bfa1b3d0178be8f5c552408" 3431 | dependencies: 3432 | estree-walker "^0.2.1" 3433 | minimatch "^3.0.2" 3434 | 3435 | rollup@^0.36.1: 3436 | version "0.36.3" 3437 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.36.3.tgz#c89ac479828924ff8f69c1d44541cb4ea2fc11fc" 3438 | dependencies: 3439 | source-map-support "^0.4.0" 3440 | 3441 | run-async@^0.1.0: 3442 | version "0.1.0" 3443 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 3444 | dependencies: 3445 | once "^1.3.0" 3446 | 3447 | run-parallel@^1.1.2: 3448 | version "1.1.6" 3449 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.6.tgz#29003c9a2163e01e2d2dfc90575f2c6c1d61a039" 3450 | 3451 | rx-lite@^3.1.2: 3452 | version "3.1.2" 3453 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 3454 | 3455 | samsam@1.1.2, samsam@~1.1: 3456 | version "1.1.2" 3457 | resolved "https://registry.yarnpkg.com/samsam/-/samsam-1.1.2.tgz#bec11fdc83a9fda063401210e40176c3024d1567" 3458 | 3459 | sax@^1.1.4: 3460 | version "1.2.1" 3461 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.1.tgz#7b8e656190b228e81a66aea748480d828cd2d37a" 3462 | 3463 | "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@~5.3.0: 3464 | version "5.3.0" 3465 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3466 | 3467 | semver@^4.3.1: 3468 | version "4.3.6" 3469 | resolved "https://registry.yarnpkg.com/semver/-/semver-4.3.6.tgz#300bc6e0e86374f7ba61068b5b1ecd57fc6532da" 3470 | 3471 | serializerr@^1.0.1: 3472 | version "1.0.3" 3473 | resolved "https://registry.yarnpkg.com/serializerr/-/serializerr-1.0.3.tgz#12d4c5aa1c3ffb8f6d1dc5f395aa9455569c3f91" 3474 | dependencies: 3475 | protochain "^1.0.5" 3476 | 3477 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3478 | version "2.0.0" 3479 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3480 | 3481 | set-immediate-shim@^1.0.1: 3482 | version "1.0.1" 3483 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3484 | 3485 | shebang-regex@^1.0.0: 3486 | version "1.0.0" 3487 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3488 | 3489 | shelljs@^0.5.3: 3490 | version "0.5.3" 3491 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.5.3.tgz#c54982b996c76ef0c1e6b59fbdc5825f5b713113" 3492 | 3493 | sigmund@^1.0.1: 3494 | version "1.0.1" 3495 | resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590" 3496 | 3497 | signal-exit@^2.0.0: 3498 | version "2.1.2" 3499 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-2.1.2.tgz#375879b1f92ebc3b334480d038dc546a6d558564" 3500 | 3501 | signal-exit@^3.0.0, signal-exit@^3.0.1: 3502 | version "3.0.1" 3503 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.1.tgz#5a4c884992b63a7acd9badb7894c3ee9cfccad81" 3504 | 3505 | simple-fmt@~0.1.0: 3506 | version "0.1.0" 3507 | resolved "https://registry.yarnpkg.com/simple-fmt/-/simple-fmt-0.1.0.tgz#191bf566a59e6530482cb25ab53b4a8dc85c3a6b" 3508 | 3509 | simple-is@~0.2.0: 3510 | version "0.2.0" 3511 | resolved "https://registry.yarnpkg.com/simple-is/-/simple-is-0.2.0.tgz#2abb75aade39deb5cc815ce10e6191164850baf0" 3512 | 3513 | sinon@^1.17.4: 3514 | version "1.17.6" 3515 | resolved "https://registry.yarnpkg.com/sinon/-/sinon-1.17.6.tgz#a43116db59577c8296356afee13fafc2332e58e1" 3516 | dependencies: 3517 | formatio "1.1.1" 3518 | lolex "1.3.2" 3519 | samsam "1.1.2" 3520 | util ">=0.10.3 <1" 3521 | 3522 | slash@^1.0.0: 3523 | version "1.0.0" 3524 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3525 | 3526 | slide@^1.1.5: 3527 | version "1.1.6" 3528 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 3529 | 3530 | sntp@1.x.x: 3531 | version "1.0.9" 3532 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3533 | dependencies: 3534 | hoek "2.x.x" 3535 | 3536 | source-map-support@^0.2.10: 3537 | version "0.2.10" 3538 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.2.10.tgz#ea5a3900a1c1cb25096a0ae8cc5c2b4b10ded3dc" 3539 | dependencies: 3540 | source-map "0.1.32" 3541 | 3542 | source-map-support@^0.4.0, source-map-support@^0.4.2: 3543 | version "0.4.6" 3544 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.6.tgz#32552aa64b458392a85eab3b0b5ee61527167aeb" 3545 | dependencies: 3546 | source-map "^0.5.3" 3547 | 3548 | source-map@0.1.32: 3549 | version "0.1.32" 3550 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.32.tgz#c8b6c167797ba4740a8ea33252162ff08591b266" 3551 | dependencies: 3552 | amdefine ">=0.0.4" 3553 | 3554 | source-map@^0.4.4: 3555 | version "0.4.4" 3556 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3557 | dependencies: 3558 | amdefine ">=0.0.4" 3559 | 3560 | source-map@^0.5.0, source-map@^0.5.3, source-map@~0.5.0, source-map@~0.5.1: 3561 | version "0.5.6" 3562 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3563 | 3564 | source-map@~0.2.0: 3565 | version "0.2.0" 3566 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 3567 | dependencies: 3568 | amdefine ">=0.0.4" 3569 | 3570 | spawn-sync@^1.0.5: 3571 | version "1.0.15" 3572 | resolved "https://registry.yarnpkg.com/spawn-sync/-/spawn-sync-1.0.15.tgz#b00799557eb7fb0c8376c29d44e8a1ea67e57476" 3573 | dependencies: 3574 | concat-stream "^1.4.7" 3575 | os-shim "^0.1.2" 3576 | 3577 | spawn-wrap@^1.2.4: 3578 | version "1.2.4" 3579 | resolved "https://registry.yarnpkg.com/spawn-wrap/-/spawn-wrap-1.2.4.tgz#920eb211a769c093eebfbd5b0e7a5d2e68ab2e40" 3580 | dependencies: 3581 | foreground-child "^1.3.3" 3582 | mkdirp "^0.5.0" 3583 | os-homedir "^1.0.1" 3584 | rimraf "^2.3.3" 3585 | signal-exit "^2.0.0" 3586 | which "^1.2.4" 3587 | 3588 | spdx-correct@~1.0.0: 3589 | version "1.0.2" 3590 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3591 | dependencies: 3592 | spdx-license-ids "^1.0.2" 3593 | 3594 | spdx-expression-parse@~1.0.0: 3595 | version "1.0.4" 3596 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3597 | 3598 | spdx-license-ids@^1.0.2: 3599 | version "1.2.2" 3600 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3601 | 3602 | sprintf-js@~1.0.2: 3603 | version "1.0.3" 3604 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3605 | 3606 | sshpk@^1.7.0: 3607 | version "1.10.1" 3608 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.1.tgz#30e1a5d329244974a1af61511339d595af6638b0" 3609 | dependencies: 3610 | asn1 "~0.2.3" 3611 | assert-plus "^1.0.0" 3612 | dashdash "^1.12.0" 3613 | getpass "^0.1.1" 3614 | optionalDependencies: 3615 | bcrypt-pbkdf "^1.0.0" 3616 | ecc-jsbn "~0.1.1" 3617 | jodid25519 "^1.0.0" 3618 | jsbn "~0.1.0" 3619 | tweetnacl "~0.14.0" 3620 | 3621 | stable@~0.1.3: 3622 | version "0.1.5" 3623 | resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.5.tgz#08232f60c732e9890784b5bed0734f8b32a887b9" 3624 | 3625 | standard-engine@^2.0.4: 3626 | version "2.2.5" 3627 | resolved "https://registry.yarnpkg.com/standard-engine/-/standard-engine-2.2.5.tgz#a2b9d4419f648a221b8d17823fb745406f37c34e" 3628 | dependencies: 3629 | defaults "^1.0.2" 3630 | deglob "^1.0.0" 3631 | dezalgo "^1.0.2" 3632 | eslint "1.9.0" 3633 | find-root "^0.1.1" 3634 | get-stdin "^4.0.1" 3635 | minimist "^1.1.0" 3636 | multiline "^1.0.2" 3637 | pkg-config "^1.0.1" 3638 | xtend "^4.0.0" 3639 | 3640 | standard-format@^1.3.3: 3641 | version "1.6.10" 3642 | resolved "https://registry.yarnpkg.com/standard-format/-/standard-format-1.6.10.tgz#b183c8f837c8d3938798f3d0943e5d807a1ba03f" 3643 | dependencies: 3644 | deglob "^1.0.0" 3645 | esformatter "^0.8.1" 3646 | esformatter-eol-last "^1.0.0" 3647 | esformatter-jsx "^2.0.11" 3648 | esformatter-literal-notation "^1.0.0" 3649 | esformatter-quotes "^1.0.0" 3650 | esformatter-semicolon-first "^1.1.0" 3651 | esformatter-spaced-lined-comment "^2.0.0" 3652 | minimist "^1.1.0" 3653 | stdin "0.0.1" 3654 | 3655 | standard@^5.4.1: 3656 | version "5.4.1" 3657 | resolved "https://registry.yarnpkg.com/standard/-/standard-5.4.1.tgz#2f013912b2794ddb30bbaa89dc13fb3a990cc72b" 3658 | dependencies: 3659 | eslint-config-standard "4.4.0" 3660 | eslint-config-standard-react "1.2.1" 3661 | eslint-plugin-react "^3.9.0" 3662 | eslint-plugin-standard "^1.3.1" 3663 | standard-engine "^2.0.4" 3664 | standard-format "^1.3.3" 3665 | 3666 | stdin@*, stdin@0.0.1: 3667 | version "0.0.1" 3668 | resolved "https://registry.yarnpkg.com/stdin/-/stdin-0.0.1.tgz#d3041981aaec3dfdbc77a1b38d6372e38f5fb71e" 3669 | 3670 | string-width@^1.0.1, string-width@^1.0.2: 3671 | version "1.0.2" 3672 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3673 | dependencies: 3674 | code-point-at "^1.0.0" 3675 | is-fullwidth-code-point "^1.0.0" 3676 | strip-ansi "^3.0.0" 3677 | 3678 | string.prototype.endswith@^0.2.0: 3679 | version "0.2.0" 3680 | resolved "https://registry.yarnpkg.com/string.prototype.endswith/-/string.prototype.endswith-0.2.0.tgz#a19c20dee51a98777e9a47e10f09be393b9bba75" 3681 | 3682 | string_decoder@~0.10.x: 3683 | version "0.10.31" 3684 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3685 | 3686 | stringmap@~0.2.2: 3687 | version "0.2.2" 3688 | resolved "https://registry.yarnpkg.com/stringmap/-/stringmap-0.2.2.tgz#556c137b258f942b8776f5b2ef582aa069d7d1b1" 3689 | 3690 | stringset@~0.2.1: 3691 | version "0.2.1" 3692 | resolved "https://registry.yarnpkg.com/stringset/-/stringset-0.2.1.tgz#ef259c4e349344377fcd1c913dd2e848c9c042b5" 3693 | 3694 | stringstream@~0.0.4: 3695 | version "0.0.5" 3696 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3697 | 3698 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3699 | version "3.0.1" 3700 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3701 | dependencies: 3702 | ansi-regex "^2.0.0" 3703 | 3704 | strip-bom@^2.0.0: 3705 | version "2.0.0" 3706 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3707 | dependencies: 3708 | is-utf8 "^0.2.0" 3709 | 3710 | strip-indent@^1.0.0: 3711 | version "1.0.1" 3712 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 3713 | dependencies: 3714 | get-stdin "^4.0.1" 3715 | 3716 | strip-json-comments@~0.1.1: 3717 | version "0.1.3" 3718 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-0.1.3.tgz#164c64e370a8a3cc00c9e01b539e569823f0ee54" 3719 | 3720 | strip-json-comments@~1.0.1, strip-json-comments@~1.0.4: 3721 | version "1.0.4" 3722 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 3723 | 3724 | supports-color@3.1.2, supports-color@^3.1.2: 3725 | version "3.1.2" 3726 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 3727 | dependencies: 3728 | has-flag "^1.0.0" 3729 | 3730 | supports-color@^1.3.1: 3731 | version "1.3.1" 3732 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-1.3.1.tgz#15758df09d8ff3b4acc307539fabe27095e1042d" 3733 | 3734 | supports-color@^2.0.0: 3735 | version "2.0.0" 3736 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3737 | 3738 | "symbol-tree@>= 3.1.0 < 4.0.0": 3739 | version "3.1.4" 3740 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.1.4.tgz#02b279348d337debc39694c5c95f882d448a312a" 3741 | 3742 | sync-exec@^0.5.0: 3743 | version "0.5.0" 3744 | resolved "https://registry.yarnpkg.com/sync-exec/-/sync-exec-0.5.0.tgz#3f7258e4a5ba17245381909fa6a6f6cf506e1661" 3745 | 3746 | taffydb@2.7.2: 3747 | version "2.7.2" 3748 | resolved "https://registry.yarnpkg.com/taffydb/-/taffydb-2.7.2.tgz#7bf8106a5c1a48251b3e3bc0a0e1732489fd0dc8" 3749 | 3750 | tar-pack@~3.3.0: 3751 | version "3.3.0" 3752 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae" 3753 | dependencies: 3754 | debug "~2.2.0" 3755 | fstream "~1.0.10" 3756 | fstream-ignore "~1.0.5" 3757 | once "~1.3.3" 3758 | readable-stream "~2.1.4" 3759 | rimraf "~2.5.1" 3760 | tar "~2.2.1" 3761 | uid-number "~0.0.6" 3762 | 3763 | tar@~2.2.1: 3764 | version "2.2.1" 3765 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3766 | dependencies: 3767 | block-stream "*" 3768 | fstream "^1.0.2" 3769 | inherits "2" 3770 | 3771 | temp@~0.5.1: 3772 | version "0.5.1" 3773 | resolved "https://registry.yarnpkg.com/temp/-/temp-0.5.1.tgz#77ab19c79aa7b593cbe4fac2441768cad987b8df" 3774 | dependencies: 3775 | rimraf "~2.1.4" 3776 | 3777 | test-exclude@^2.1.1, test-exclude@^2.1.3: 3778 | version "2.1.3" 3779 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-2.1.3.tgz#a8d8968e1da83266f9864f2852c55e220f06434a" 3780 | dependencies: 3781 | arrify "^1.0.1" 3782 | micromatch "^2.3.11" 3783 | object-assign "^4.1.0" 3784 | read-pkg-up "^1.0.1" 3785 | require-main-filename "^1.0.1" 3786 | 3787 | text-table@~0.2.0: 3788 | version "0.2.0" 3789 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3790 | 3791 | through@^2.3.6, through@~2.3.8: 3792 | version "2.3.8" 3793 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3794 | 3795 | to-double-quotes@^2.0.0: 3796 | version "2.0.0" 3797 | resolved "https://registry.yarnpkg.com/to-double-quotes/-/to-double-quotes-2.0.0.tgz#aaf231d6fa948949f819301bbab4484d8588e4a7" 3798 | 3799 | to-fast-properties@^1.0.0, to-fast-properties@^1.0.1: 3800 | version "1.0.2" 3801 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 3802 | 3803 | to-single-quotes@^2.0.0: 3804 | version "2.0.1" 3805 | resolved "https://registry.yarnpkg.com/to-single-quotes/-/to-single-quotes-2.0.1.tgz#7cc29151f0f5f2c41946f119f5932fe554170125" 3806 | 3807 | tough-cookie@^2.2.0, tough-cookie@^2.3.1, tough-cookie@~2.3.0: 3808 | version "2.3.2" 3809 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3810 | dependencies: 3811 | punycode "^1.4.1" 3812 | 3813 | tr46@~0.0.1, tr46@~0.0.3: 3814 | version "0.0.3" 3815 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 3816 | 3817 | trim-right@^1.0.0: 3818 | version "1.0.1" 3819 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3820 | 3821 | try-resolve@^1.0.0: 3822 | version "1.0.1" 3823 | resolved "https://registry.yarnpkg.com/try-resolve/-/try-resolve-1.0.1.tgz#cfde6fabd72d63e5797cfaab873abbe8e700e912" 3824 | 3825 | tryit@^1.0.1: 3826 | version "1.0.3" 3827 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3828 | 3829 | tryor@~0.1.2: 3830 | version "0.1.2" 3831 | resolved "https://registry.yarnpkg.com/tryor/-/tryor-0.1.2.tgz#8145e4ca7caff40acde3ccf946e8b8bb75b4172b" 3832 | 3833 | tunnel-agent@~0.4.1: 3834 | version "0.4.3" 3835 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 3836 | 3837 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3838 | version "0.14.3" 3839 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.3.tgz#3da382f670f25ded78d7b3d1792119bca0b7132d" 3840 | 3841 | type-check@~0.3.1, type-check@~0.3.2: 3842 | version "0.3.2" 3843 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3844 | dependencies: 3845 | prelude-ls "~1.1.2" 3846 | 3847 | typedarray@~0.0.5: 3848 | version "0.0.6" 3849 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3850 | 3851 | uglify-js@^2.6: 3852 | version "2.7.4" 3853 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.7.4.tgz#a295a0de12b6a650c031c40deb0dc40b14568bd2" 3854 | dependencies: 3855 | async "~0.2.6" 3856 | source-map "~0.5.1" 3857 | uglify-to-browserify "~1.0.0" 3858 | yargs "~3.10.0" 3859 | 3860 | uglify-to-browserify@~1.0.0: 3861 | version "1.0.2" 3862 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3863 | 3864 | uid-number@~0.0.6: 3865 | version "0.0.6" 3866 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3867 | 3868 | uniq@^1.0.1: 3869 | version "1.0.1" 3870 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" 3871 | 3872 | urlgrey@>=0.4.0: 3873 | version "0.4.4" 3874 | resolved "https://registry.yarnpkg.com/urlgrey/-/urlgrey-0.4.4.tgz#892fe95960805e85519f1cd4389f2cb4cbb7652f" 3875 | 3876 | user-home@^1.1.1: 3877 | version "1.1.1" 3878 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3879 | 3880 | user-home@^2.0.0: 3881 | version "2.0.0" 3882 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 3883 | dependencies: 3884 | os-homedir "^1.0.0" 3885 | 3886 | util-deprecate@~1.0.1: 3887 | version "1.0.2" 3888 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3889 | 3890 | "util@>=0.10.3 <1": 3891 | version "0.10.3" 3892 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 3893 | dependencies: 3894 | inherits "2.0.1" 3895 | 3896 | v8flags@^2.0.10: 3897 | version "2.0.11" 3898 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.0.11.tgz#bca8f30f0d6d60612cc2c00641e6962d42ae6881" 3899 | dependencies: 3900 | user-home "^1.1.1" 3901 | 3902 | validate-npm-package-license@^3.0.1: 3903 | version "3.0.1" 3904 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3905 | dependencies: 3906 | spdx-correct "~1.0.0" 3907 | spdx-expression-parse "~1.0.0" 3908 | 3909 | verror@1.3.6: 3910 | version "1.3.6" 3911 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3912 | dependencies: 3913 | extsprintf "1.0.2" 3914 | 3915 | vlq@^0.2.1: 3916 | version "0.2.1" 3917 | resolved "https://registry.yarnpkg.com/vlq/-/vlq-0.2.1.tgz#14439d711891e682535467f8587c5630e4222a6c" 3918 | 3919 | webidl-conversions@^2.0.0: 3920 | version "2.0.1" 3921 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-2.0.1.tgz#3bf8258f7d318c7443c36f2e169402a1a6703506" 3922 | 3923 | webidl-conversions@^3.0.0, webidl-conversions@^3.0.1: 3924 | version "3.0.1" 3925 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 3926 | 3927 | whatwg-encoding@^1.0.1: 3928 | version "1.0.1" 3929 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 3930 | dependencies: 3931 | iconv-lite "0.4.13" 3932 | 3933 | whatwg-url-compat@~0.6.5: 3934 | version "0.6.5" 3935 | resolved "https://registry.yarnpkg.com/whatwg-url-compat/-/whatwg-url-compat-0.6.5.tgz#00898111af689bb097541cd5a45ca6c8798445bf" 3936 | dependencies: 3937 | tr46 "~0.0.1" 3938 | 3939 | whatwg-url@^3.0.0: 3940 | version "3.0.0" 3941 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-3.0.0.tgz#b9033c50c7ce763e91d78777ce825a6d7f56dac5" 3942 | dependencies: 3943 | tr46 "~0.0.3" 3944 | webidl-conversions "^3.0.0" 3945 | 3946 | which-module@^1.0.0: 3947 | version "1.0.0" 3948 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3949 | 3950 | which@^1.0.5, which@^1.2.4, which@^1.2.9: 3951 | version "1.2.11" 3952 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.11.tgz#c8b2eeea6b8c1659fa7c1dd4fdaabe9533dc5e8b" 3953 | dependencies: 3954 | isexe "^1.1.1" 3955 | 3956 | wide-align@^1.1.0: 3957 | version "1.1.0" 3958 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 3959 | dependencies: 3960 | string-width "^1.0.1" 3961 | 3962 | widjet-disposables@*, widjet-disposables@^0.1.7: 3963 | version "0.1.7" 3964 | resolved "https://registry.yarnpkg.com/widjet-disposables/-/widjet-disposables-0.1.7.tgz#3eede093a972a0cfa8e74ee2a4fcc942297ddcc8" 3965 | dependencies: 3966 | babel-cli "^6.3.17" 3967 | babel-plugin-transform-es3-member-expression-literals "^6.8.0" 3968 | babel-plugin-transform-es3-property-literals "^6.8.0" 3969 | babel-preset-es2015 "^6.3.13" 3970 | 3971 | widjet-test-utils@^1.7.0: 3972 | version "1.7.4" 3973 | resolved "https://registry.yarnpkg.com/widjet-test-utils/-/widjet-test-utils-1.7.4.tgz#642b735f06996b6ccad08f279d224466baf1584f" 3974 | dependencies: 3975 | babel-cli "^6.3.17" 3976 | babel-plugin-transform-es3-member-expression-literals "^6.8.0" 3977 | babel-plugin-transform-es3-property-literals "^6.8.0" 3978 | babel-preset-es2015 "^6.3.13" 3979 | colors "^1.1.2" 3980 | commander "^2.9.0" 3981 | glob "^7.1.0" 3982 | rollup "^0.36.1" 3983 | rollup-plugin-babel "^2.6.1" 3984 | rollup-plugin-commonjs "^5.0.4" 3985 | rollup-plugin-includepaths "^0.1.6" 3986 | rollup-plugin-node-resolve "^2.0.0" 3987 | widjet-utils "^0.3.0" 3988 | 3989 | widjet-utils@^0.3.0: 3990 | version "0.3.4" 3991 | resolved "https://registry.yarnpkg.com/widjet-utils/-/widjet-utils-0.3.4.tgz#8a250a7d11463b1de7c2e20addd61e6da90cfb78" 3992 | dependencies: 3993 | babel-cli "^6.3.17" 3994 | babel-plugin-transform-es3-member-expression-literals "^6.8.0" 3995 | babel-plugin-transform-es3-property-literals "^6.8.0" 3996 | babel-preset-es2015 "^6.3.13" 3997 | widjet-disposables "^0.1.7" 3998 | 3999 | widjet-utils@^0.6.0: 4000 | version "0.6.0" 4001 | resolved "https://registry.yarnpkg.com/widjet-utils/-/widjet-utils-0.6.0.tgz#e4c8a3f69f6eeed5d7457b8a25ef16d7c0c17771" 4002 | dependencies: 4003 | babel-cli "^6.3.17" 4004 | babel-plugin-transform-es3-member-expression-literals "^6.8.0" 4005 | babel-plugin-transform-es3-property-literals "^6.8.0" 4006 | babel-preset-es2015 "^6.3.13" 4007 | widjet-disposables "^0.1.7" 4008 | 4009 | widjet@^1.0.4: 4010 | version "1.0.4" 4011 | resolved "https://registry.yarnpkg.com/widjet/-/widjet-1.0.4.tgz#db63752f0bf27181a2bc69bf19dfdfcec70866a8" 4012 | dependencies: 4013 | babel-cli "^6.3.17" 4014 | babel-plugin-transform-es3-member-expression-literals "^6.8.0" 4015 | babel-plugin-transform-es3-property-literals "^6.8.0" 4016 | babel-preset-es2015 "^6.3.13" 4017 | widjet-disposables "^0.1.7" 4018 | widjet-utils "^0.6.0" 4019 | 4020 | window-size@0.1.0: 4021 | version "0.1.0" 4022 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 4023 | 4024 | window-size@^0.1.2: 4025 | version "0.1.4" 4026 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.4.tgz#f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876" 4027 | 4028 | window-size@^0.2.0: 4029 | version "0.2.0" 4030 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.2.0.tgz#b4315bb4214a3d7058ebeee892e13fa24d98b075" 4031 | 4032 | wordwrap@0.0.2: 4033 | version "0.0.2" 4034 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 4035 | 4036 | wordwrap@~0.0.2: 4037 | version "0.0.3" 4038 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 4039 | 4040 | wordwrap@~1.0.0: 4041 | version "1.0.0" 4042 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 4043 | 4044 | wrap-ansi@^2.0.0: 4045 | version "2.0.0" 4046 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.0.0.tgz#7d30f8f873f9a5bbc3a64dabc8d177e071ae426f" 4047 | dependencies: 4048 | string-width "^1.0.1" 4049 | 4050 | wrappy@1: 4051 | version "1.0.2" 4052 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 4053 | 4054 | write-file-atomic@^1.1.4: 4055 | version "1.2.0" 4056 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.2.0.tgz#14c66d4e4cb3ca0565c28cf3b7a6f3e4d5938fab" 4057 | dependencies: 4058 | graceful-fs "^4.1.2" 4059 | imurmurhash "^0.1.4" 4060 | slide "^1.1.5" 4061 | 4062 | write@^0.2.1: 4063 | version "0.2.1" 4064 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 4065 | dependencies: 4066 | mkdirp "^0.5.1" 4067 | 4068 | xml-escape@~1.0.0: 4069 | version "1.0.0" 4070 | resolved "https://registry.yarnpkg.com/xml-escape/-/xml-escape-1.0.0.tgz#00963d697b2adf0c185c4e04e73174ba9b288eb2" 4071 | 4072 | "xml-name-validator@>= 2.0.1 < 3.0.0": 4073 | version "2.0.1" 4074 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 4075 | 4076 | xtend@^4.0.0, xtend@^4.0.1: 4077 | version "4.0.1" 4078 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 4079 | 4080 | y18n@^3.2.0, y18n@^3.2.1: 4081 | version "3.2.1" 4082 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 4083 | 4084 | yallist@^2.0.0: 4085 | version "2.0.0" 4086 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.0.0.tgz#306c543835f09ee1a4cb23b7bce9ab341c91cdd4" 4087 | 4088 | yargs-parser@^4.0.2: 4089 | version "4.1.0" 4090 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.1.0.tgz#313df030f20124124aeae8fbab2da53ec28c56d7" 4091 | dependencies: 4092 | camelcase "^3.0.0" 4093 | 4094 | yargs@^6.0.0: 4095 | version "6.3.0" 4096 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.3.0.tgz#19c6dbb768744d571eb6ebae0c174cf2f71b188d" 4097 | dependencies: 4098 | camelcase "^3.0.0" 4099 | cliui "^3.2.0" 4100 | decamelize "^1.1.1" 4101 | get-caller-file "^1.0.1" 4102 | os-locale "^1.4.0" 4103 | read-pkg-up "^1.0.1" 4104 | require-directory "^2.1.1" 4105 | require-main-filename "^1.0.1" 4106 | set-blocking "^2.0.0" 4107 | string-width "^1.0.2" 4108 | which-module "^1.0.0" 4109 | window-size "^0.2.0" 4110 | y18n "^3.2.1" 4111 | yargs-parser "^4.0.2" 4112 | 4113 | yargs@~3.10.0: 4114 | version "3.10.0" 4115 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 4116 | dependencies: 4117 | camelcase "^1.0.2" 4118 | cliui "^2.1.0" 4119 | decamelize "^1.0.0" 4120 | window-size "0.1.0" 4121 | 4122 | yargs@~3.27.0: 4123 | version "3.27.0" 4124 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.27.0.tgz#21205469316e939131d59f2da0c6d7f98221ea40" 4125 | dependencies: 4126 | camelcase "^1.2.1" 4127 | cliui "^2.1.0" 4128 | decamelize "^1.0.0" 4129 | os-locale "^1.4.0" 4130 | window-size "^0.1.2" 4131 | y18n "^3.2.0" 4132 | --------------------------------------------------------------------------------