├── .babelrc ├── .editorconfig ├── .eslintrc ├── .gitattributes ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Makefile ├── README.md ├── UNLICENSE ├── develop └── index.js ├── index.js ├── package.json ├── src └── index.js ├── test ├── .eslintrc ├── atrule.test.js ├── control.test.js ├── fixture │ ├── atrule │ │ ├── at-least │ │ │ ├── expected.css │ │ │ └── input.css │ │ ├── at-most │ │ │ ├── expected.css │ │ │ └── input.css │ │ ├── between │ │ │ ├── expected.css │ │ │ └── input.css │ │ └── exactly │ │ │ ├── expected.css │ │ │ └── input.css │ ├── control │ │ ├── expected.css │ │ └── input.css │ └── pseudo │ │ ├── at-least │ │ ├── expected.css │ │ └── input.css │ │ ├── at-most │ │ ├── expected.css │ │ └── input.css │ │ ├── between │ │ ├── expected.css │ │ └── input.css │ │ └── exactly │ │ ├── expected.css │ │ └── input.css └── pseudo.test.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | ["env", { 4 | "targets": { 5 | "node": 4, 6 | }, 7 | }], 8 | ], 9 | } 10 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig helps developers define and maintain consistent 2 | # coding styles between different editors and IDEs 3 | # editorconfig.org 4 | 5 | root = true 6 | 7 | [*] 8 | indent_style = space 9 | indent_size = 2 10 | end_of_line = lf 11 | charset = utf-8 12 | trim_trailing_whitespace = true 13 | insert_final_newline = true 14 | 15 | [*.md] 16 | trim_trailing_whitespace = false 17 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | --- 2 | root: true 3 | parser: "babel-eslint" 4 | extends: 5 | - "airbnb-base" 6 | - "plugin:ava/recommended" 7 | plugins: 8 | - ava 9 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | coverage 4 | .nyc_output 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - '4' 5 | - '6' 6 | - 'stable' 7 | 8 | before_install: 9 | - npm i npm@latest -g 10 | 11 | sudo: false 12 | 13 | git: 14 | depth: 10 15 | 16 | script: make test 17 | after_success: make coveralls 18 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # postcss-quantity-queries change Log 2 | 3 | All notable changes to this project will be documented in this file. 4 | 5 | The format is based on [Keep a Changelog](http://keepachangelog.com/) 6 | and this project adheres to [Semantic Versioning](http://semver.org/). 7 | 8 | 9 | ## [Unreleased] 10 | 11 | ## [0.5.0] - 2017-05-07 12 | ### Changed 13 | * PostCSS 6 upgrade. 14 | 15 | ## [0.4.0] - 2015-09-04 16 | ### Changed 17 | * PostCSS 5 upgrade. 18 | 19 | ## [0.3.1] - 2015-05-02 20 | ### Fixed 21 | * Use standard package keyword 22 | ([#319](https://github.com/postcss/postcss/issues/319)) 23 | 24 | ## [0.3.0]- 2015-04-08 25 | ### Changed 26 | * Use latest PostCSS 4.1.* plugin API. 27 | * Upgrade to Babel 5.0. 28 | 29 | ## [0.2.0] - 2015-03-12 30 | ### Added 31 | * A new pseudo-selectors API. 32 | ([#2](https://github.com/pascalduez/postcss-quantity-queries/issues/2)) 33 | 34 | ## [0.1.0] - 2015-03-09 35 | * Initial release. 36 | 37 | [Unreleased]: https://github.com/pascalduez/postcss-quantity-queries/compare/0.5.0...HEAD 38 | [0.5.0]: https://github.com/pascalduez/postcss-quantity-queries/compare/0.4.0...0.5.0 39 | [0.4.0]: https://github.com/pascalduez/postcss-quantity-queries/compare/0.3.1...0.4.0 40 | [0.3.1]: https://github.com/pascalduez/postcss-quantity-queries/compare/0.3.0...0.3.1 41 | [0.3.0]: https://github.com/pascalduez/postcss-quantity-queries/compare/0.2.0...0.3.0 42 | [0.2.0]: https://github.com/pascalduez/postcss-quantity-queries/compare/0.1.0...0.2.0 43 | [0.1.0]: https://github.com/pascalduez/postcss-quantity-queries/tags/0.1.0 44 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | PATH := $(PWD)/node_modules/.bin:$(PATH) 2 | 3 | all: lint dist test 4 | 5 | 6 | # ESnext compilation 7 | # ====================== 8 | 9 | dist: 10 | rm -rf $@ 11 | babel src -d $@ 12 | 13 | develop: 14 | babel-node $@ 15 | 16 | 17 | # Code quality 18 | # ============ 19 | 20 | lint: 21 | eslint ./src ./test 22 | 23 | test: lint dist 24 | ava 25 | 26 | cover: dist 27 | nyc ava 28 | 29 | cover-browse: dist cover 30 | rm -rf coverage 31 | nyc --reporter=html ava 32 | opn coverage/index.html 33 | 34 | coveralls: cover 35 | (nyc report --reporter=text-lcov | coveralls) || exit 0 36 | 37 | 38 | # Publish package to npm 39 | # @see npm/npm#3059 40 | # ======================= 41 | 42 | publish: all 43 | npm publish 44 | 45 | # Release, publish 46 | # ================ 47 | 48 | # "patch", "minor", "major", "prepatch", 49 | # "preminor", "premajor", "prerelease" 50 | VERS ?= "patch" 51 | TAG ?= "latest" 52 | 53 | release: all 54 | npm version $(VERS) -m "Release %s" 55 | npm publish --tag $(TAG) 56 | git push --follow-tags 57 | 58 | 59 | # Tools 60 | # ===== 61 | 62 | rebuild: 63 | rm -rf node_modules 64 | npm install 65 | 66 | 67 | .PHONY: dist develop test 68 | .SILENT: dist develop cover travis 69 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # postcss-quantity-queries 2 | 3 | [![npm version][npm-image]][npm-url] 4 | [![Build Status][travis-image]][travis-url] 5 | [![Coverage Status][coveralls-image]][coveralls-url] 6 | 7 | 8 | > [PostCSS] plugin enabling quantity-queries. 9 | 10 | This plugin is derived from the Sass [Quantity Queries mixins] by Daniel Guillan. 11 | For informations about quantity queries check those resources: 12 | [Quantity Queries for CSS][] 13 | [Styling elements based on sibling count][] 14 | [Daniel’s demo on CodePen][] 15 | 16 | 17 | 18 | ## Installation 19 | 20 | ``` 21 | npm install postcss-quantity-queries --save-dev 22 | ``` 23 | 24 | 25 | 26 | ## Usage 27 | 28 | ```js 29 | const fs = require('fs'); 30 | const postcss = require('postcss'); 31 | const quantityQueries = require('postcss-quantity-queries'); 32 | 33 | const input = fs.readFileSync('input.css', 'utf8'); 34 | 35 | postcss() 36 | .use(quantityQueries) 37 | .process(input) 38 | .then(result => { 39 | fs.writeFileSync('output.css', result.css); 40 | }); 41 | ``` 42 | 43 | 44 | 45 | ## API 46 | 47 | ### at-least 48 | 49 | Target `count` items or more: 50 | ```css 51 | :at-least(count) { ... } 52 | ``` 53 | input: 54 | ```css 55 | ul > li:at-least(4) { 56 | color: rebeccapurple; 57 | } 58 | ``` 59 | output: 60 | ```css 61 | ul > li:nth-last-child(n+4), 62 | ul > li:nth-last-child(n+4) ~ li { 63 | color: rebeccapurple; 64 | } 65 | ``` 66 | 67 | 68 | 69 | ### at-most 70 | 71 | Target `count` items or less: 72 | ```css 73 | :at-most(count) { ... } 74 | ``` 75 | input: 76 | ```css 77 | ul > li:at-most(4) { 78 | color: rebeccapurple; 79 | } 80 | ``` 81 | output: 82 | ```css 83 | ul > li:nth-last-child(-n+4):first-child, 84 | ul > li:nth-last-child(-n+4):first-child ~ li { 85 | color: rebeccapurple; 86 | } 87 | ``` 88 | 89 | 90 | 91 | ### between 92 | 93 | Target a range of items between `start` and `end`: 94 | ```css 95 | :between(start, end) { ... } 96 | ``` 97 | input: 98 | ```css 99 | ul > li:between(4, 6) { 100 | color: rebeccapurple; 101 | } 102 | ``` 103 | output: 104 | ```css 105 | ul > li:nth-last-child(n+4):nth-last-child(-n+6):first-child, 106 | ul > li:nth-last-child(n+4):nth-last-child(-n+6):first-child ~ li { 107 | color: rebeccapurple; 108 | } 109 | ``` 110 | 111 | 112 | 113 | ### exactly 114 | 115 | Target exactly `count` items: 116 | ```css 117 | :exactly(count) { ... } 118 | ``` 119 | input: 120 | ```css 121 | ul > li:exactly(4) { 122 | color: rebeccapurple; 123 | } 124 | ``` 125 | output: 126 | ```css 127 | ul > li:nth-last-child(4):first-child, 128 | ul > li:nth-last-child(4):first-child ~ li { 129 | color: rebeccapurple; 130 | } 131 | ``` 132 | 133 | ### All pseudo-selector extensions 134 | 135 | Selector | Description 136 | ---|--- 137 | [#](#at-least) `:at-least(count) { … }` | Target `count` items or more 138 | [#](#at-most) `:at-most(count) { … }` | Target `count` items or less 139 | [#](#between) `:between(start, end) { … }` | Target a range of items between `start` and `end` 140 | [#](#exactly) `:exactly(count) { … }` | Target exactly `count` items 141 | 142 | ## At-rule API 143 | 144 | There is also an at-rule API available, similar to pre-processors. 145 | Although it might get deprecated at some point. 146 | The recommended API is the pseudo-selectors one. 147 | 148 | ```css 149 | @at-least count [, selector] { ... } 150 | ``` 151 | ```css 152 | @at-most count [, selector] { ... } 153 | ``` 154 | ```css 155 | @between start end [, selector] { ... } 156 | ``` 157 | ```css 158 | @exactly count [, selector] { ... } 159 | ``` 160 | 161 | ```css 162 | ul > li { 163 | @at-least 4 span { 164 | color: rebeccapurple; 165 | } 166 | } 167 | 168 | ul > li { 169 | @between 4 6 { 170 | color: rebeccapurple; 171 | } 172 | } 173 | ``` 174 | 175 | Check out the [tests](test/fixture) for more examples. 176 | 177 | 178 | 179 | ## Credits 180 | 181 | * [Pascal Duez](https://github.com/pascalduez) 182 | 183 | 184 | ## Licence 185 | 186 | postcss-quantity-queries is [unlicensed](http://unlicense.org/). 187 | 188 | 189 | 190 | [PostCSS]: https://github.com/postcss/postcss 191 | [Quantity Queries mixins]: https://github.com/danielguillan/quantity-queries 192 | [Quantity Queries for CSS]: http://alistapart.com/article/quantity-queries-for-css 193 | [Styling elements based on sibling count]: http://lea.verou.me/2011/01/styling-children-based-on-their-number-with-css3 194 | [Daniel’s demo on CodePen]: http://codepen.io/danielguillan/pen/GgBOxm 195 | 196 | [npm-url]: https://www.npmjs.org/package/postcss-quantity-queries 197 | [npm-image]: http://img.shields.io/npm/v/postcss-quantity-queries.svg?style=flat-square 198 | [travis-url]: https://travis-ci.org/pascalduez/postcss-quantity-queries?branch=master 199 | [travis-image]: http://img.shields.io/travis/pascalduez/postcss-quantity-queries.svg?style=flat-square 200 | [coveralls-url]: https://coveralls.io/r/pascalduez/postcss-quantity-queries 201 | [coveralls-image]: https://img.shields.io/coveralls/pascalduez/postcss-quantity-queries.svg?style=flat-square 202 | [depstat-url]: https://david-dm.org/pascalduez/postcss-quantity-queries 203 | [depstat-image]: https://david-dm.org/pascalduez/postcss-quantity-queries.svg?style=flat-square 204 | [license-image]: http://img.shields.io/npm/l/postcss-quantity-queries.svg?style=flat-square 205 | [license-url]: UNLICENSE 206 | -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- 1 | This is free and unencumbered software released into the public domain. 2 | 3 | Anyone is free to copy, modify, publish, use, compile, sell, or 4 | distribute this software, either in source code form or as a compiled 5 | binary, for any purpose, commercial or non-commercial, and by any 6 | means. 7 | 8 | In jurisdictions that recognize copyright laws, the author or authors 9 | of this software dedicate any and all copyright interest in the 10 | software to the public domain. We make this dedication for the benefit 11 | of the public at large and to the detriment of our heirs and 12 | successors. We intend this dedication to be an overt act of 13 | relinquishment in perpetuity of all present and future rights to this 14 | software under copyright law. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 19 | IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR 20 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 21 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 | OTHER DEALINGS IN THE SOFTWARE. 23 | 24 | For more information, please refer to 25 | -------------------------------------------------------------------------------- /develop/index.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable no-console */ 2 | 3 | import fs from 'fs'; 4 | import { join } from 'path'; 5 | import postcss from 'postcss'; 6 | import plugin from '../'; 7 | 8 | const read = name => 9 | fs.readFileSync(join(process.cwd(), 'test', 'fixture', name), 'utf8'); 10 | 11 | 12 | ['at-least', 'at-most', 'between', 'exactly'].forEach(test => { 13 | const input = read(join('atrule', test, 'input.css')); 14 | const css = postcss(plugin()).process(input).css; 15 | 16 | console.log(css); 17 | }); 18 | 19 | ['at-least', 'at-most', 'between', 'exactly'].forEach(test => { 20 | const input = read(join('pseudo', test, 'input.css')); 21 | const css = postcss(plugin()).process(input).css; 22 | 23 | console.log(css); 24 | }); 25 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./dist').default; 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "postcss-quantity-queries", 3 | "version": "0.5.0", 4 | "description": "PostCSS plugin enabling quantity-queries", 5 | "keywords": [ 6 | "css", 7 | "quantity-queries", 8 | "postcss", 9 | "postcss-plugin" 10 | ], 11 | "author": { 12 | "name": "Pascal Duez", 13 | "url": "https://github.com/pascalduez" 14 | }, 15 | "homepage": "https://github.com/pascalduez/postcss-quantity-queries", 16 | "bugs": "https://github.com/pascalduez/postcss-quantity-queries/issues", 17 | "repository": { 18 | "type": "git", 19 | "url": "git://github.com/pascalduez/postcss-quantity-queries.git" 20 | }, 21 | "license": "Unlicense", 22 | "files": [ 23 | "dist", 24 | "CHANGELOG.md", 25 | "index.js", 26 | "README.md", 27 | "UNLICENSE" 28 | ], 29 | "scripts": { 30 | "test": "ava", 31 | "coverage": "nyc npm test" 32 | }, 33 | "ava": { 34 | "files": "test/**/*.test.js", 35 | "failWithoutAssertions": false 36 | }, 37 | "dependencies": { 38 | "balanced-match": "^0.4.2", 39 | "postcss": "^6.0.0" 40 | }, 41 | "devDependencies": { 42 | "ava": "^0.19.1", 43 | "babel-cli": "^6.22.2", 44 | "babel-eslint": "^7.1.1", 45 | "babel-preset-env": "^1.4.0", 46 | "chai": "^3.5.0", 47 | "coveralls": "^2.11.16", 48 | "eslint": "^3.15.0", 49 | "eslint-config-airbnb-base": "^11.1.0", 50 | "eslint-plugin-ava": "^4.0.1", 51 | "eslint-plugin-import": "^2.2.0", 52 | "nyc": "^10.1.2", 53 | "opn-cli": "^3.0.1" 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable no-param-reassign, no-use-before-define, consistent-return */ 2 | 3 | import postcss, { list } from 'postcss'; 4 | import balanced from 'balanced-match'; 5 | 6 | export default postcss.plugin('postcss-quantity-queries', () => (css) => { 7 | css.walk((node) => { 8 | if (node.type === 'rule') { 9 | return processRule(node); 10 | } 11 | if (node.type === 'atrule') { 12 | return processAtRule(node); 13 | } 14 | }); 15 | }); 16 | 17 | const rePseudo = /(.*)(?::{1,2})(at-(?:least|most)|between|exactly)/; 18 | const reAtRule = /(at-(?:least|most)|between|exactly)/; 19 | 20 | function processRule(rule) { 21 | if (!rePseudo.test(rule.selector)) return; 22 | 23 | rule.selectors = 24 | rule.selectors.map((s) => { 25 | const { pre, body } = balanced('(', ')', s); 26 | const args = list.comma(body); 27 | const [selector, quantifier] = pre.split(/:{1,2}/); 28 | 29 | return quantifiers[quantifier](...args)([selector]); 30 | }); 31 | } 32 | 33 | function processAtRule(atRule) { 34 | if (!reAtRule.test(atRule.name)) return; 35 | 36 | const args = list.space(atRule.params); 37 | const parent = atRule.parent; 38 | const root = parent.root(); 39 | const selectors = quantifiers[atRule.name](...args)(parent.selectors); 40 | 41 | const newRule = postcss.rule({ 42 | selectors, 43 | nodes: atRule.nodes, 44 | source: atRule.source, 45 | raws: { 46 | semicolon: true, 47 | }, 48 | }); 49 | 50 | cleanIndent(newRule); 51 | 52 | root.insertAfter(parent, newRule); 53 | atRule.remove(); 54 | 55 | if (!parent.nodes.length) parent.remove(); 56 | } 57 | 58 | const cleanIndent = rule => 59 | rule.walkDecls((decl) => { 60 | decl.raws.before = decl.raws.before.replace(/[^\S\x0a\x0d]{2,}/, ' '); 61 | }); 62 | 63 | const quantitySelectors = (quantifier, last) => selectors => 64 | selectors.map(s => 65 | `${s}${quantifier}, ${s}${quantifier} ~ ${last || list.space(s).pop()}`); 66 | 67 | const quantifiers = { 68 | 69 | 'at-least': (count, last) => 70 | quantitySelectors(`:nth-last-child(n+${count})`, last), 71 | 72 | 'at-most': (count, last) => 73 | quantitySelectors(`:nth-last-child(-n+${count}):first-child`, last), 74 | 75 | between: (start, end, last) => 76 | quantitySelectors(`:nth-last-child(n+${start}):nth-last-child(-n+${end}):first-child`, last), 77 | 78 | exactly: (count, last) => 79 | quantitySelectors(`:nth-last-child(${count}):first-child`, last), 80 | 81 | }; 82 | -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- 1 | --- 2 | rules: 3 | import/no-extraneous-dependencies: off 4 | -------------------------------------------------------------------------------- /test/atrule.test.js: -------------------------------------------------------------------------------- 1 | import fs from 'fs'; 2 | import path from 'path'; 3 | import test from 'ava'; 4 | import { expect } from 'chai'; 5 | import postcss from 'postcss'; 6 | import plugin from '../'; 7 | 8 | const read = name => 9 | fs.readFileSync(path.join(__dirname, 'fixture', name), 'utf8'); 10 | 11 | 12 | test('atrule::at-least', async () => { 13 | const input = read('atrule/at-least/input.css'); 14 | const expected = read('atrule/at-least/expected.css'); 15 | 16 | const result = await postcss() 17 | .use(plugin) 18 | .process(input); 19 | 20 | expect(result.css).to.equal(expected); 21 | }); 22 | 23 | test('atrule::at-most', async () => { 24 | const input = read('atrule/at-most/input.css'); 25 | const expected = read('atrule/at-most/expected.css'); 26 | 27 | const result = await postcss() 28 | .use(plugin) 29 | .process(input); 30 | 31 | expect(result.css).to.equal(expected); 32 | }); 33 | 34 | test('atrule::between', async () => { 35 | const input = read('atrule/between/input.css'); 36 | const expected = read('atrule/between/expected.css'); 37 | 38 | const result = await postcss() 39 | .use(plugin) 40 | .process(input); 41 | 42 | expect(result.css).to.equal(expected); 43 | }); 44 | 45 | test('atrule::exactly', async () => { 46 | const input = read('atrule/exactly/input.css'); 47 | const expected = read('atrule/exactly/expected.css'); 48 | 49 | const result = await postcss() 50 | .use(plugin) 51 | .process(input); 52 | 53 | expect(result.css).to.equal(expected); 54 | }); 55 | -------------------------------------------------------------------------------- /test/control.test.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable no-unused-expressions */ 2 | 3 | import fs from 'fs'; 4 | import path from 'path'; 5 | import test from 'ava'; 6 | import { expect } from 'chai'; 7 | import postcss from 'postcss'; 8 | import plugin from '../'; 9 | 10 | const pluginName = require('../package.json').name; 11 | 12 | const read = name => 13 | fs.readFileSync(path.join(__dirname, 'fixture', name), 'utf8'); 14 | 15 | const expected = read('control/expected.css'); 16 | const input = read('control/input.css'); 17 | 18 | 19 | test('control: no options', () => 20 | postcss([plugin]) 21 | .process(input) 22 | .then((result) => { 23 | expect(result.css).to.equal(expected); 24 | })); 25 | 26 | test('control: with options', () => 27 | postcss([plugin({})]) 28 | .process(input) 29 | .then((result) => { 30 | expect(result.css).to.equal(expected); 31 | })); 32 | 33 | test('control: PostCSS legacy API', () => { 34 | const result = postcss([plugin.postcss]).process(input).css; 35 | expect(result).to.equal(expected); 36 | }); 37 | 38 | test('control: PostCSS API', async () => { 39 | const processor = postcss(); 40 | processor.use(plugin); 41 | 42 | const result = await processor.process(input); 43 | 44 | expect(result.css).to.equal(expected); 45 | expect(processor.plugins[0].postcssPlugin).to.equal(pluginName); 46 | expect(processor.plugins[0].postcssVersion).to.be.ok; 47 | }); 48 | -------------------------------------------------------------------------------- /test/fixture/atrule/at-least/expected.css: -------------------------------------------------------------------------------- 1 | ul > li:nth-last-child(n+4), ul > li:nth-last-child(n+4) ~ li { 2 | content: 'test'; 3 | } 4 | 5 | ul > li:nth-last-child(n+4), ul > li:nth-last-child(n+4) ~ * { 6 | content: 'test'; 7 | } 8 | 9 | ul > li:nth-last-child(n+4), ul > li:nth-last-child(n+4) ~ li, nav > div:nth-last-child(n+4), nav > div:nth-last-child(n+4) ~ div { 10 | content: 'test'; 11 | } 12 | 13 | ul > li:nth-last-child(n+4), ul > li:nth-last-child(n+4) ~ *, nav > div:nth-last-child(n+4), nav > div:nth-last-child(n+4) ~ * { 14 | content: 'test'; 15 | } 16 | -------------------------------------------------------------------------------- /test/fixture/atrule/at-least/input.css: -------------------------------------------------------------------------------- 1 | ul > li { 2 | @at-least 4 { 3 | content: 'test'; 4 | } 5 | } 6 | 7 | ul > li { 8 | @at-least 4 * { 9 | content: 'test'; 10 | } 11 | } 12 | 13 | ul > li, 14 | nav > div { 15 | @at-least 4 { 16 | content: 'test'; 17 | } 18 | } 19 | 20 | ul > li, 21 | nav > div { 22 | @at-least 4 * { 23 | content: 'test'; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /test/fixture/atrule/at-most/expected.css: -------------------------------------------------------------------------------- 1 | ul > li:nth-last-child(-n+4):first-child, ul > li:nth-last-child(-n+4):first-child ~ li { 2 | content: 'test'; 3 | } 4 | 5 | ul > li:nth-last-child(-n+4):first-child, ul > li:nth-last-child(-n+4):first-child ~ * { 6 | content: 'test'; 7 | } 8 | 9 | ul > li:nth-last-child(-n+4):first-child, ul > li:nth-last-child(-n+4):first-child ~ li, nav > div:nth-last-child(-n+4):first-child, nav > div:nth-last-child(-n+4):first-child ~ div { 10 | content: 'test'; 11 | } 12 | 13 | ul > li:nth-last-child(-n+4):first-child, ul > li:nth-last-child(-n+4):first-child ~ *, nav > div:nth-last-child(-n+4):first-child, nav > div:nth-last-child(-n+4):first-child ~ * { 14 | content: 'test'; 15 | } 16 | -------------------------------------------------------------------------------- /test/fixture/atrule/at-most/input.css: -------------------------------------------------------------------------------- 1 | ul > li { 2 | @at-most 4 { 3 | content: 'test'; 4 | } 5 | } 6 | 7 | ul > li { 8 | @at-most 4 * { 9 | content: 'test'; 10 | } 11 | } 12 | 13 | ul > li, 14 | nav > div { 15 | @at-most 4 { 16 | content: 'test'; 17 | } 18 | } 19 | 20 | ul > li, 21 | nav > div { 22 | @at-most 4 * { 23 | content: 'test'; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /test/fixture/atrule/between/expected.css: -------------------------------------------------------------------------------- 1 | ul > li:nth-last-child(n+4):nth-last-child(-n+6):first-child, ul > li:nth-last-child(n+4):nth-last-child(-n+6):first-child ~ li { 2 | content: 'test'; 3 | } 4 | 5 | ul > li:nth-last-child(n+4):nth-last-child(-n+6):first-child, ul > li:nth-last-child(n+4):nth-last-child(-n+6):first-child ~ * { 6 | content: 'test'; 7 | } 8 | 9 | ul > li:nth-last-child(n+4):nth-last-child(-n+6):first-child, ul > li:nth-last-child(n+4):nth-last-child(-n+6):first-child ~ li, nav > div:nth-last-child(n+4):nth-last-child(-n+6):first-child, nav > div:nth-last-child(n+4):nth-last-child(-n+6):first-child ~ div { 10 | content: 'test'; 11 | } 12 | 13 | ul > li:nth-last-child(n+4):nth-last-child(-n+6):first-child, ul > li:nth-last-child(n+4):nth-last-child(-n+6):first-child ~ *, nav > div:nth-last-child(n+4):nth-last-child(-n+6):first-child, nav > div:nth-last-child(n+4):nth-last-child(-n+6):first-child ~ * { 14 | content: 'test'; 15 | } 16 | -------------------------------------------------------------------------------- /test/fixture/atrule/between/input.css: -------------------------------------------------------------------------------- 1 | ul > li { 2 | @between 4 6 { 3 | content: 'test'; 4 | } 5 | } 6 | 7 | ul > li { 8 | @between 4 6 * { 9 | content: 'test'; 10 | } 11 | } 12 | 13 | ul > li, 14 | nav > div { 15 | @between 4 6 { 16 | content: 'test'; 17 | } 18 | } 19 | 20 | ul > li, 21 | nav > div { 22 | @between 4 6 * { 23 | content: 'test'; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /test/fixture/atrule/exactly/expected.css: -------------------------------------------------------------------------------- 1 | ul > li:nth-last-child(4):first-child, ul > li:nth-last-child(4):first-child ~ li { 2 | content: 'test'; 3 | } 4 | 5 | ul > li:nth-last-child(4):first-child, ul > li:nth-last-child(4):first-child ~ * { 6 | content: 'test'; 7 | } 8 | 9 | ul > li:nth-last-child(4):first-child, ul > li:nth-last-child(4):first-child ~ li, nav > div:nth-last-child(4):first-child, nav > div:nth-last-child(4):first-child ~ div { 10 | content: 'test'; 11 | } 12 | 13 | ul > li:nth-last-child(4):first-child, ul > li:nth-last-child(4):first-child ~ *, nav > div:nth-last-child(4):first-child, nav > div:nth-last-child(4):first-child ~ * { 14 | content: 'test'; 15 | } 16 | -------------------------------------------------------------------------------- /test/fixture/atrule/exactly/input.css: -------------------------------------------------------------------------------- 1 | ul > li { 2 | @exactly 4 { 3 | content: 'test'; 4 | } 5 | } 6 | 7 | ul > li { 8 | @exactly 4 * { 9 | content: 'test'; 10 | } 11 | } 12 | 13 | ul > li, 14 | nav > div { 15 | @exactly 4 { 16 | content: 'test'; 17 | } 18 | } 19 | 20 | ul > li, 21 | nav > div { 22 | @exactly 4 * { 23 | content: 'test'; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /test/fixture/control/expected.css: -------------------------------------------------------------------------------- 1 | ul > li { 2 | @media screen (min-width: 500px) { 3 | content: 'test'; 4 | } 5 | } 6 | 7 | ul > li { 8 | content: 'master'; 9 | } 10 | 11 | ul > li:nth-last-child(n+4), ul > li:nth-last-child(n+4) ~ li { 12 | content: 'test'; 13 | } 14 | -------------------------------------------------------------------------------- /test/fixture/control/input.css: -------------------------------------------------------------------------------- 1 | ul > li { 2 | @media screen (min-width: 500px) { 3 | content: 'test'; 4 | } 5 | } 6 | 7 | ul > li { 8 | @at-least 4 { 9 | content: 'test'; 10 | } 11 | content: 'master'; 12 | } 13 | -------------------------------------------------------------------------------- /test/fixture/pseudo/at-least/expected.css: -------------------------------------------------------------------------------- 1 | ul > li:nth-last-child(n+4), ul > li:nth-last-child(n+4) ~ li { 2 | content: 'at-least test'; 3 | } 4 | 5 | ul > li:nth-last-child(n+4), ul > li:nth-last-child(n+4) ~ li, 6 | nav > div:nth-last-child(n+4), nav > div:nth-last-child(n+4) ~ div { 7 | content: 'at-least test'; 8 | } 9 | -------------------------------------------------------------------------------- /test/fixture/pseudo/at-least/input.css: -------------------------------------------------------------------------------- 1 | ul > li:at-least(4) { 2 | content: 'at-least test'; 3 | } 4 | 5 | ul > li:at-least(4), 6 | nav > div:at-least(4) { 7 | content: 'at-least test'; 8 | } 9 | -------------------------------------------------------------------------------- /test/fixture/pseudo/at-most/expected.css: -------------------------------------------------------------------------------- 1 | ul > li:nth-last-child(-n+4):first-child, ul > li:nth-last-child(-n+4):first-child ~ li { 2 | content: 'at-most test'; 3 | } 4 | 5 | ul > li:nth-last-child(-n+4):first-child, ul > li:nth-last-child(-n+4):first-child ~ li, 6 | nav > div:nth-last-child(-n+4):first-child, nav > div:nth-last-child(-n+4):first-child ~ div { 7 | content: 'at-most test'; 8 | } 9 | -------------------------------------------------------------------------------- /test/fixture/pseudo/at-most/input.css: -------------------------------------------------------------------------------- 1 | ul > li:at-most(4) { 2 | content: 'at-most test'; 3 | } 4 | 5 | ul > li:at-most(4), 6 | nav > div:at-most(4) { 7 | content: 'at-most test'; 8 | } 9 | -------------------------------------------------------------------------------- /test/fixture/pseudo/between/expected.css: -------------------------------------------------------------------------------- 1 | ul > li:nth-last-child(n+4):nth-last-child(-n+6):first-child, ul > li:nth-last-child(n+4):nth-last-child(-n+6):first-child ~ li { 2 | content: 'between test'; 3 | } 4 | 5 | ul > li:nth-last-child(n+4):nth-last-child(-n+6):first-child, ul > li:nth-last-child(n+4):nth-last-child(-n+6):first-child ~ li, nav > div:nth-last-child(n+4):nth-last-child(-n+6):first-child, nav > div:nth-last-child(n+4):nth-last-child(-n+6):first-child ~ div { 6 | content: 'between test'; 7 | } 8 | -------------------------------------------------------------------------------- /test/fixture/pseudo/between/input.css: -------------------------------------------------------------------------------- 1 | ul > li:between(4, 6) { 2 | content: 'between test'; 3 | } 4 | 5 | ul > li:between(4, 6), 6 | nav > div:between(4, 6) { 7 | content: 'between test'; 8 | } 9 | -------------------------------------------------------------------------------- /test/fixture/pseudo/exactly/expected.css: -------------------------------------------------------------------------------- 1 | ul > li:nth-last-child(4):first-child, ul > li:nth-last-child(4):first-child ~ li { 2 | content: 'exactly test'; 3 | } 4 | 5 | ul > li:nth-last-child(4):first-child, ul > li:nth-last-child(4):first-child ~ li, 6 | nav > div:nth-last-child(4):first-child, nav > div:nth-last-child(4):first-child ~ div { 7 | content: 'exactly test'; 8 | } 9 | -------------------------------------------------------------------------------- /test/fixture/pseudo/exactly/input.css: -------------------------------------------------------------------------------- 1 | ul > li:exactly(4) { 2 | content: 'exactly test'; 3 | } 4 | 5 | ul > li:exactly(4), 6 | nav > div:exactly(4) { 7 | content: 'exactly test'; 8 | } 9 | -------------------------------------------------------------------------------- /test/pseudo.test.js: -------------------------------------------------------------------------------- 1 | import fs from 'fs'; 2 | import path from 'path'; 3 | import test from 'ava'; 4 | import { expect } from 'chai'; 5 | import postcss from 'postcss'; 6 | import plugin from '../'; 7 | 8 | const read = name => 9 | fs.readFileSync(path.join(__dirname, 'fixture', name), 'utf8'); 10 | 11 | 12 | test('pseudo::at-least', async () => { 13 | const input = read('pseudo/at-least/input.css'); 14 | const expected = read('pseudo/at-least/expected.css'); 15 | 16 | const result = await postcss() 17 | .use(plugin) 18 | .process(input); 19 | 20 | expect(result.css).to.equal(expected); 21 | }); 22 | 23 | test('pseudo::at-most', async () => { 24 | const input = read('pseudo/at-most/input.css'); 25 | const expected = read('pseudo/at-most/expected.css'); 26 | 27 | const result = await postcss() 28 | .use(plugin) 29 | .process(input); 30 | 31 | expect(result.css).to.equal(expected); 32 | }); 33 | 34 | test('pseudo::between', async () => { 35 | const input = read('pseudo/between/input.css'); 36 | const expected = read('pseudo/between/expected.css'); 37 | 38 | const result = await postcss() 39 | .use(plugin) 40 | .process(input); 41 | 42 | expect(result.css).to.equal(expected); 43 | }); 44 | 45 | test('pseudo::exactly', async () => { 46 | const input = read('pseudo/exactly/input.css'); 47 | const expected = read('pseudo/exactly/expected.css'); 48 | 49 | const result = await postcss() 50 | .use(plugin) 51 | .process(input); 52 | 53 | expect(result.css).to.equal(expected); 54 | }); 55 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@ava/babel-plugin-throws-helper@^2.0.0": 6 | version "2.0.0" 7 | resolved "https://registry.yarnpkg.com/@ava/babel-plugin-throws-helper/-/babel-plugin-throws-helper-2.0.0.tgz#2fc1fe3c211a71071a4eca7b8f7af5842cd1ae7c" 8 | 9 | "@ava/babel-preset-stage-4@^1.0.0": 10 | version "1.0.0" 11 | resolved "https://registry.yarnpkg.com/@ava/babel-preset-stage-4/-/babel-preset-stage-4-1.0.0.tgz#a613b5e152f529305422546b072d47facfb26291" 12 | dependencies: 13 | babel-plugin-check-es2015-constants "^6.8.0" 14 | babel-plugin-syntax-trailing-function-commas "^6.20.0" 15 | babel-plugin-transform-async-to-generator "^6.16.0" 16 | babel-plugin-transform-es2015-destructuring "^6.19.0" 17 | babel-plugin-transform-es2015-function-name "^6.9.0" 18 | babel-plugin-transform-es2015-modules-commonjs "^6.18.0" 19 | babel-plugin-transform-es2015-parameters "^6.21.0" 20 | babel-plugin-transform-es2015-spread "^6.8.0" 21 | babel-plugin-transform-es2015-sticky-regex "^6.8.0" 22 | babel-plugin-transform-es2015-unicode-regex "^6.11.0" 23 | babel-plugin-transform-exponentiation-operator "^6.8.0" 24 | package-hash "^1.2.0" 25 | 26 | "@ava/babel-preset-transform-test-files@^3.0.0": 27 | version "3.0.0" 28 | resolved "https://registry.yarnpkg.com/@ava/babel-preset-transform-test-files/-/babel-preset-transform-test-files-3.0.0.tgz#cded1196a8d8d9381a509240ab92e91a5ec069f7" 29 | dependencies: 30 | "@ava/babel-plugin-throws-helper" "^2.0.0" 31 | babel-plugin-espower "^2.3.2" 32 | 33 | "@ava/pretty-format@^1.1.0": 34 | version "1.1.0" 35 | resolved "https://registry.yarnpkg.com/@ava/pretty-format/-/pretty-format-1.1.0.tgz#d0a57d25eb9aeab9643bdd1a030642b91c123e28" 36 | dependencies: 37 | ansi-styles "^2.2.1" 38 | esutils "^2.0.2" 39 | 40 | abbrev@1: 41 | version "1.1.0" 42 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 43 | 44 | acorn-jsx@^3.0.0: 45 | version "3.0.1" 46 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 47 | dependencies: 48 | acorn "^3.0.4" 49 | 50 | acorn@^3.0.4: 51 | version "3.3.0" 52 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 53 | 54 | acorn@^5.0.1: 55 | version "5.0.3" 56 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.0.3.tgz#c460df08491463f028ccb82eab3730bf01087b3d" 57 | 58 | ajv-keywords@^1.0.0: 59 | version "1.5.1" 60 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 61 | 62 | ajv@^4.7.0, ajv@^4.9.1: 63 | version "4.11.8" 64 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 65 | dependencies: 66 | co "^4.6.0" 67 | json-stable-stringify "^1.0.1" 68 | 69 | align-text@^0.1.1, align-text@^0.1.3: 70 | version "0.1.4" 71 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 72 | dependencies: 73 | kind-of "^3.0.2" 74 | longest "^1.0.1" 75 | repeat-string "^1.5.2" 76 | 77 | amdefine@>=0.0.4: 78 | version "1.0.1" 79 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 80 | 81 | ansi-align@^2.0.0: 82 | version "2.0.0" 83 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" 84 | dependencies: 85 | string-width "^2.0.0" 86 | 87 | ansi-escapes@^1.1.0: 88 | version "1.4.0" 89 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 90 | 91 | ansi-regex@^2.0.0: 92 | version "2.1.1" 93 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 94 | 95 | ansi-styles@^2.2.1: 96 | version "2.2.1" 97 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 98 | 99 | ansi-styles@^3.0.0: 100 | version "3.0.0" 101 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.0.0.tgz#5404e93a544c4fec7f048262977bebfe3155e0c1" 102 | dependencies: 103 | color-convert "^1.0.0" 104 | 105 | ansi-styles@~1.0.0: 106 | version "1.0.0" 107 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-1.0.0.tgz#cb102df1c56f5123eab8b67cd7b98027a0279178" 108 | 109 | anymatch@^1.3.0: 110 | version "1.3.0" 111 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 112 | dependencies: 113 | arrify "^1.0.0" 114 | micromatch "^2.1.5" 115 | 116 | append-transform@^0.4.0: 117 | version "0.4.0" 118 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 119 | dependencies: 120 | default-require-extensions "^1.0.0" 121 | 122 | aproba@^1.0.3: 123 | version "1.1.1" 124 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" 125 | 126 | archy@^1.0.0: 127 | version "1.0.0" 128 | resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" 129 | 130 | are-we-there-yet@~1.1.2: 131 | version "1.1.4" 132 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 133 | dependencies: 134 | delegates "^1.0.0" 135 | readable-stream "^2.0.6" 136 | 137 | argparse@^1.0.7: 138 | version "1.0.9" 139 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 140 | dependencies: 141 | sprintf-js "~1.0.2" 142 | 143 | arr-diff@^2.0.0: 144 | version "2.0.0" 145 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 146 | dependencies: 147 | arr-flatten "^1.0.1" 148 | 149 | arr-exclude@^1.0.0: 150 | version "1.0.0" 151 | resolved "https://registry.yarnpkg.com/arr-exclude/-/arr-exclude-1.0.0.tgz#dfc7c2e552a270723ccda04cf3128c8cbfe5c631" 152 | 153 | arr-flatten@^1.0.1: 154 | version "1.0.3" 155 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 156 | 157 | array-differ@^1.0.0: 158 | version "1.0.0" 159 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 160 | 161 | array-find-index@^1.0.1: 162 | version "1.0.2" 163 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 164 | 165 | array-union@^1.0.1: 166 | version "1.0.2" 167 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 168 | dependencies: 169 | array-uniq "^1.0.1" 170 | 171 | array-uniq@^1.0.1, array-uniq@^1.0.2: 172 | version "1.0.3" 173 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 174 | 175 | array-unique@^0.2.1: 176 | version "0.2.1" 177 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 178 | 179 | arrify@^1.0.0, arrify@^1.0.1: 180 | version "1.0.1" 181 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 182 | 183 | asn1@~0.2.3: 184 | version "0.2.3" 185 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 186 | 187 | assert-plus@1.0.0, assert-plus@^1.0.0: 188 | version "1.0.0" 189 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 190 | 191 | assert-plus@^0.2.0: 192 | version "0.2.0" 193 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 194 | 195 | assertion-error@^1.0.1: 196 | version "1.0.2" 197 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.0.2.tgz#13ca515d86206da0bac66e834dd397d87581094c" 198 | 199 | async-each@^1.0.0: 200 | version "1.0.1" 201 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 202 | 203 | async@^1.4.0: 204 | version "1.5.2" 205 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 206 | 207 | asynckit@^0.4.0: 208 | version "0.4.0" 209 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 210 | 211 | auto-bind@^1.1.0: 212 | version "1.1.0" 213 | resolved "https://registry.yarnpkg.com/auto-bind/-/auto-bind-1.1.0.tgz#93b864dc7ee01a326281775d5c75ca0a751e5961" 214 | 215 | ava-init@^0.2.0: 216 | version "0.2.0" 217 | resolved "https://registry.yarnpkg.com/ava-init/-/ava-init-0.2.0.tgz#9304c8b4c357d66e3dfdae1fbff47b1199d5c55d" 218 | dependencies: 219 | arr-exclude "^1.0.0" 220 | execa "^0.5.0" 221 | has-yarn "^1.0.0" 222 | read-pkg-up "^2.0.0" 223 | write-pkg "^2.0.0" 224 | 225 | ava@^0.19.1: 226 | version "0.19.1" 227 | resolved "https://registry.yarnpkg.com/ava/-/ava-0.19.1.tgz#43dd82435ad19b3980ffca2488f05daab940b273" 228 | dependencies: 229 | "@ava/babel-preset-stage-4" "^1.0.0" 230 | "@ava/babel-preset-transform-test-files" "^3.0.0" 231 | "@ava/pretty-format" "^1.1.0" 232 | arr-flatten "^1.0.1" 233 | array-union "^1.0.1" 234 | array-uniq "^1.0.2" 235 | arrify "^1.0.0" 236 | auto-bind "^1.1.0" 237 | ava-init "^0.2.0" 238 | babel-code-frame "^6.16.0" 239 | babel-core "^6.17.0" 240 | bluebird "^3.0.0" 241 | caching-transform "^1.0.0" 242 | chalk "^1.0.0" 243 | chokidar "^1.4.2" 244 | clean-stack "^1.1.1" 245 | clean-yaml-object "^0.1.0" 246 | cli-cursor "^2.1.0" 247 | cli-spinners "^1.0.0" 248 | cli-truncate "^1.0.0" 249 | co-with-promise "^4.6.0" 250 | code-excerpt "^2.1.0" 251 | common-path-prefix "^1.0.0" 252 | convert-source-map "^1.2.0" 253 | core-assert "^0.2.0" 254 | currently-unhandled "^0.4.1" 255 | debug "^2.2.0" 256 | diff "^3.0.1" 257 | diff-match-patch "^1.0.0" 258 | dot-prop "^4.1.0" 259 | empower-core "^0.6.1" 260 | equal-length "^1.0.0" 261 | figures "^2.0.0" 262 | find-cache-dir "^0.1.1" 263 | fn-name "^2.0.0" 264 | get-port "^3.0.0" 265 | globby "^6.0.0" 266 | has-flag "^2.0.0" 267 | hullabaloo-config-manager "^1.0.0" 268 | ignore-by-default "^1.0.0" 269 | indent-string "^3.0.0" 270 | is-ci "^1.0.7" 271 | is-generator-fn "^1.0.0" 272 | is-obj "^1.0.0" 273 | is-observable "^0.2.0" 274 | is-promise "^2.1.0" 275 | jest-diff "19.0.0" 276 | jest-snapshot "19.0.2" 277 | js-yaml "^3.8.2" 278 | last-line-stream "^1.0.0" 279 | lodash.debounce "^4.0.3" 280 | lodash.difference "^4.3.0" 281 | lodash.flatten "^4.2.0" 282 | lodash.isequal "^4.5.0" 283 | loud-rejection "^1.2.0" 284 | matcher "^0.1.1" 285 | md5-hex "^2.0.0" 286 | meow "^3.7.0" 287 | mkdirp "^0.5.1" 288 | ms "^0.7.1" 289 | multimatch "^2.1.0" 290 | observable-to-promise "^0.5.0" 291 | option-chain "^0.1.0" 292 | package-hash "^2.0.0" 293 | pkg-conf "^2.0.0" 294 | plur "^2.0.0" 295 | pretty-ms "^2.0.0" 296 | require-precompiled "^0.1.0" 297 | resolve-cwd "^1.0.0" 298 | slash "^1.0.0" 299 | source-map-support "^0.4.0" 300 | stack-utils "^1.0.0" 301 | strip-ansi "^3.0.1" 302 | strip-bom-buf "^1.0.0" 303 | supports-color "^3.2.3" 304 | time-require "^0.1.2" 305 | unique-temp-dir "^1.0.0" 306 | update-notifier "^2.1.0" 307 | 308 | aws-sign2@~0.6.0: 309 | version "0.6.0" 310 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 311 | 312 | aws4@^1.2.1: 313 | version "1.6.0" 314 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 315 | 316 | babel-cli@^6.22.2: 317 | version "6.24.1" 318 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.24.1.tgz#207cd705bba61489b2ea41b5312341cf6aca2283" 319 | dependencies: 320 | babel-core "^6.24.1" 321 | babel-polyfill "^6.23.0" 322 | babel-register "^6.24.1" 323 | babel-runtime "^6.22.0" 324 | commander "^2.8.1" 325 | convert-source-map "^1.1.0" 326 | fs-readdir-recursive "^1.0.0" 327 | glob "^7.0.0" 328 | lodash "^4.2.0" 329 | output-file-sync "^1.1.0" 330 | path-is-absolute "^1.0.0" 331 | slash "^1.0.0" 332 | source-map "^0.5.0" 333 | v8flags "^2.0.10" 334 | optionalDependencies: 335 | chokidar "^1.6.1" 336 | 337 | babel-code-frame@^6.16.0, babel-code-frame@^6.22.0: 338 | version "6.22.0" 339 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 340 | dependencies: 341 | chalk "^1.1.0" 342 | esutils "^2.0.2" 343 | js-tokens "^3.0.0" 344 | 345 | babel-core@^6.17.0, babel-core@^6.24.1: 346 | version "6.24.1" 347 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" 348 | dependencies: 349 | babel-code-frame "^6.22.0" 350 | babel-generator "^6.24.1" 351 | babel-helpers "^6.24.1" 352 | babel-messages "^6.23.0" 353 | babel-register "^6.24.1" 354 | babel-runtime "^6.22.0" 355 | babel-template "^6.24.1" 356 | babel-traverse "^6.24.1" 357 | babel-types "^6.24.1" 358 | babylon "^6.11.0" 359 | convert-source-map "^1.1.0" 360 | debug "^2.1.1" 361 | json5 "^0.5.0" 362 | lodash "^4.2.0" 363 | minimatch "^3.0.2" 364 | path-is-absolute "^1.0.0" 365 | private "^0.1.6" 366 | slash "^1.0.0" 367 | source-map "^0.5.0" 368 | 369 | babel-eslint@^7.1.1: 370 | version "7.2.3" 371 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.2.3.tgz#b2fe2d80126470f5c19442dc757253a897710827" 372 | dependencies: 373 | babel-code-frame "^6.22.0" 374 | babel-traverse "^6.23.1" 375 | babel-types "^6.23.0" 376 | babylon "^6.17.0" 377 | 378 | babel-generator@^6.1.0, babel-generator@^6.18.0, babel-generator@^6.24.1: 379 | version "6.24.1" 380 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" 381 | dependencies: 382 | babel-messages "^6.23.0" 383 | babel-runtime "^6.22.0" 384 | babel-types "^6.24.1" 385 | detect-indent "^4.0.0" 386 | jsesc "^1.3.0" 387 | lodash "^4.2.0" 388 | source-map "^0.5.0" 389 | trim-right "^1.0.1" 390 | 391 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 392 | version "6.24.1" 393 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 394 | dependencies: 395 | babel-helper-explode-assignable-expression "^6.24.1" 396 | babel-runtime "^6.22.0" 397 | babel-types "^6.24.1" 398 | 399 | babel-helper-call-delegate@^6.24.1: 400 | version "6.24.1" 401 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 402 | dependencies: 403 | babel-helper-hoist-variables "^6.24.1" 404 | babel-runtime "^6.22.0" 405 | babel-traverse "^6.24.1" 406 | babel-types "^6.24.1" 407 | 408 | babel-helper-define-map@^6.24.1: 409 | version "6.24.1" 410 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz#7a9747f258d8947d32d515f6aa1c7bd02204a080" 411 | dependencies: 412 | babel-helper-function-name "^6.24.1" 413 | babel-runtime "^6.22.0" 414 | babel-types "^6.24.1" 415 | lodash "^4.2.0" 416 | 417 | babel-helper-explode-assignable-expression@^6.24.1: 418 | version "6.24.1" 419 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 420 | dependencies: 421 | babel-runtime "^6.22.0" 422 | babel-traverse "^6.24.1" 423 | babel-types "^6.24.1" 424 | 425 | babel-helper-function-name@^6.24.1: 426 | version "6.24.1" 427 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 428 | dependencies: 429 | babel-helper-get-function-arity "^6.24.1" 430 | babel-runtime "^6.22.0" 431 | babel-template "^6.24.1" 432 | babel-traverse "^6.24.1" 433 | babel-types "^6.24.1" 434 | 435 | babel-helper-get-function-arity@^6.24.1: 436 | version "6.24.1" 437 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 438 | dependencies: 439 | babel-runtime "^6.22.0" 440 | babel-types "^6.24.1" 441 | 442 | babel-helper-hoist-variables@^6.24.1: 443 | version "6.24.1" 444 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 445 | dependencies: 446 | babel-runtime "^6.22.0" 447 | babel-types "^6.24.1" 448 | 449 | babel-helper-optimise-call-expression@^6.24.1: 450 | version "6.24.1" 451 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 452 | dependencies: 453 | babel-runtime "^6.22.0" 454 | babel-types "^6.24.1" 455 | 456 | babel-helper-regex@^6.24.1: 457 | version "6.24.1" 458 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" 459 | dependencies: 460 | babel-runtime "^6.22.0" 461 | babel-types "^6.24.1" 462 | lodash "^4.2.0" 463 | 464 | babel-helper-remap-async-to-generator@^6.24.1: 465 | version "6.24.1" 466 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 467 | dependencies: 468 | babel-helper-function-name "^6.24.1" 469 | babel-runtime "^6.22.0" 470 | babel-template "^6.24.1" 471 | babel-traverse "^6.24.1" 472 | babel-types "^6.24.1" 473 | 474 | babel-helper-replace-supers@^6.24.1: 475 | version "6.24.1" 476 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 477 | dependencies: 478 | babel-helper-optimise-call-expression "^6.24.1" 479 | babel-messages "^6.23.0" 480 | babel-runtime "^6.22.0" 481 | babel-template "^6.24.1" 482 | babel-traverse "^6.24.1" 483 | babel-types "^6.24.1" 484 | 485 | babel-helpers@^6.24.1: 486 | version "6.24.1" 487 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 488 | dependencies: 489 | babel-runtime "^6.22.0" 490 | babel-template "^6.24.1" 491 | 492 | babel-messages@^6.23.0: 493 | version "6.23.0" 494 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 495 | dependencies: 496 | babel-runtime "^6.22.0" 497 | 498 | babel-plugin-check-es2015-constants@^6.22.0, babel-plugin-check-es2015-constants@^6.8.0: 499 | version "6.22.0" 500 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 501 | dependencies: 502 | babel-runtime "^6.22.0" 503 | 504 | babel-plugin-espower@^2.3.2: 505 | version "2.3.2" 506 | resolved "https://registry.yarnpkg.com/babel-plugin-espower/-/babel-plugin-espower-2.3.2.tgz#5516b8fcdb26c9f0e1d8160749f6e4c65e71271e" 507 | dependencies: 508 | babel-generator "^6.1.0" 509 | babylon "^6.1.0" 510 | call-matcher "^1.0.0" 511 | core-js "^2.0.0" 512 | espower-location-detector "^1.0.0" 513 | espurify "^1.6.0" 514 | estraverse "^4.1.1" 515 | 516 | babel-plugin-syntax-async-functions@^6.8.0: 517 | version "6.13.0" 518 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 519 | 520 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 521 | version "6.13.0" 522 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 523 | 524 | babel-plugin-syntax-trailing-function-commas@^6.20.0, babel-plugin-syntax-trailing-function-commas@^6.22.0: 525 | version "6.22.0" 526 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 527 | 528 | babel-plugin-transform-async-to-generator@^6.16.0, babel-plugin-transform-async-to-generator@^6.22.0: 529 | version "6.24.1" 530 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 531 | dependencies: 532 | babel-helper-remap-async-to-generator "^6.24.1" 533 | babel-plugin-syntax-async-functions "^6.8.0" 534 | babel-runtime "^6.22.0" 535 | 536 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 537 | version "6.22.0" 538 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 539 | dependencies: 540 | babel-runtime "^6.22.0" 541 | 542 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 543 | version "6.22.0" 544 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 545 | dependencies: 546 | babel-runtime "^6.22.0" 547 | 548 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 549 | version "6.24.1" 550 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz#76c295dc3a4741b1665adfd3167215dcff32a576" 551 | dependencies: 552 | babel-runtime "^6.22.0" 553 | babel-template "^6.24.1" 554 | babel-traverse "^6.24.1" 555 | babel-types "^6.24.1" 556 | lodash "^4.2.0" 557 | 558 | babel-plugin-transform-es2015-classes@^6.23.0: 559 | version "6.24.1" 560 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 561 | dependencies: 562 | babel-helper-define-map "^6.24.1" 563 | babel-helper-function-name "^6.24.1" 564 | babel-helper-optimise-call-expression "^6.24.1" 565 | babel-helper-replace-supers "^6.24.1" 566 | babel-messages "^6.23.0" 567 | babel-runtime "^6.22.0" 568 | babel-template "^6.24.1" 569 | babel-traverse "^6.24.1" 570 | babel-types "^6.24.1" 571 | 572 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 573 | version "6.24.1" 574 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 575 | dependencies: 576 | babel-runtime "^6.22.0" 577 | babel-template "^6.24.1" 578 | 579 | babel-plugin-transform-es2015-destructuring@^6.19.0, babel-plugin-transform-es2015-destructuring@^6.23.0: 580 | version "6.23.0" 581 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 582 | dependencies: 583 | babel-runtime "^6.22.0" 584 | 585 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 586 | version "6.24.1" 587 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 588 | dependencies: 589 | babel-runtime "^6.22.0" 590 | babel-types "^6.24.1" 591 | 592 | babel-plugin-transform-es2015-for-of@^6.23.0: 593 | version "6.23.0" 594 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 595 | dependencies: 596 | babel-runtime "^6.22.0" 597 | 598 | babel-plugin-transform-es2015-function-name@^6.22.0, babel-plugin-transform-es2015-function-name@^6.9.0: 599 | version "6.24.1" 600 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 601 | dependencies: 602 | babel-helper-function-name "^6.24.1" 603 | babel-runtime "^6.22.0" 604 | babel-types "^6.24.1" 605 | 606 | babel-plugin-transform-es2015-literals@^6.22.0: 607 | version "6.22.0" 608 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 609 | dependencies: 610 | babel-runtime "^6.22.0" 611 | 612 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 613 | version "6.24.1" 614 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 615 | dependencies: 616 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 617 | babel-runtime "^6.22.0" 618 | babel-template "^6.24.1" 619 | 620 | babel-plugin-transform-es2015-modules-commonjs@^6.18.0, babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 621 | version "6.24.1" 622 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 623 | dependencies: 624 | babel-plugin-transform-strict-mode "^6.24.1" 625 | babel-runtime "^6.22.0" 626 | babel-template "^6.24.1" 627 | babel-types "^6.24.1" 628 | 629 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 630 | version "6.24.1" 631 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 632 | dependencies: 633 | babel-helper-hoist-variables "^6.24.1" 634 | babel-runtime "^6.22.0" 635 | babel-template "^6.24.1" 636 | 637 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 638 | version "6.24.1" 639 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 640 | dependencies: 641 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 642 | babel-runtime "^6.22.0" 643 | babel-template "^6.24.1" 644 | 645 | babel-plugin-transform-es2015-object-super@^6.22.0: 646 | version "6.24.1" 647 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 648 | dependencies: 649 | babel-helper-replace-supers "^6.24.1" 650 | babel-runtime "^6.22.0" 651 | 652 | babel-plugin-transform-es2015-parameters@^6.21.0, babel-plugin-transform-es2015-parameters@^6.23.0: 653 | version "6.24.1" 654 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 655 | dependencies: 656 | babel-helper-call-delegate "^6.24.1" 657 | babel-helper-get-function-arity "^6.24.1" 658 | babel-runtime "^6.22.0" 659 | babel-template "^6.24.1" 660 | babel-traverse "^6.24.1" 661 | babel-types "^6.24.1" 662 | 663 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 664 | version "6.24.1" 665 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 666 | dependencies: 667 | babel-runtime "^6.22.0" 668 | babel-types "^6.24.1" 669 | 670 | babel-plugin-transform-es2015-spread@^6.22.0, babel-plugin-transform-es2015-spread@^6.8.0: 671 | version "6.22.0" 672 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 673 | dependencies: 674 | babel-runtime "^6.22.0" 675 | 676 | babel-plugin-transform-es2015-sticky-regex@^6.22.0, babel-plugin-transform-es2015-sticky-regex@^6.8.0: 677 | version "6.24.1" 678 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 679 | dependencies: 680 | babel-helper-regex "^6.24.1" 681 | babel-runtime "^6.22.0" 682 | babel-types "^6.24.1" 683 | 684 | babel-plugin-transform-es2015-template-literals@^6.22.0: 685 | version "6.22.0" 686 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 687 | dependencies: 688 | babel-runtime "^6.22.0" 689 | 690 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 691 | version "6.23.0" 692 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 693 | dependencies: 694 | babel-runtime "^6.22.0" 695 | 696 | babel-plugin-transform-es2015-unicode-regex@^6.11.0, babel-plugin-transform-es2015-unicode-regex@^6.22.0: 697 | version "6.24.1" 698 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 699 | dependencies: 700 | babel-helper-regex "^6.24.1" 701 | babel-runtime "^6.22.0" 702 | regexpu-core "^2.0.0" 703 | 704 | babel-plugin-transform-exponentiation-operator@^6.22.0, babel-plugin-transform-exponentiation-operator@^6.8.0: 705 | version "6.24.1" 706 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 707 | dependencies: 708 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 709 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 710 | babel-runtime "^6.22.0" 711 | 712 | babel-plugin-transform-regenerator@^6.22.0: 713 | version "6.24.1" 714 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418" 715 | dependencies: 716 | regenerator-transform "0.9.11" 717 | 718 | babel-plugin-transform-strict-mode@^6.24.1: 719 | version "6.24.1" 720 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 721 | dependencies: 722 | babel-runtime "^6.22.0" 723 | babel-types "^6.24.1" 724 | 725 | babel-polyfill@^6.23.0: 726 | version "6.23.0" 727 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" 728 | dependencies: 729 | babel-runtime "^6.22.0" 730 | core-js "^2.4.0" 731 | regenerator-runtime "^0.10.0" 732 | 733 | babel-preset-env@^1.4.0: 734 | version "1.4.0" 735 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.4.0.tgz#c8e02a3bcc7792f23cded68e0355b9d4c28f0f7a" 736 | dependencies: 737 | babel-plugin-check-es2015-constants "^6.22.0" 738 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 739 | babel-plugin-transform-async-to-generator "^6.22.0" 740 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 741 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 742 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 743 | babel-plugin-transform-es2015-classes "^6.23.0" 744 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 745 | babel-plugin-transform-es2015-destructuring "^6.23.0" 746 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 747 | babel-plugin-transform-es2015-for-of "^6.23.0" 748 | babel-plugin-transform-es2015-function-name "^6.22.0" 749 | babel-plugin-transform-es2015-literals "^6.22.0" 750 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 751 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 752 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 753 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 754 | babel-plugin-transform-es2015-object-super "^6.22.0" 755 | babel-plugin-transform-es2015-parameters "^6.23.0" 756 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 757 | babel-plugin-transform-es2015-spread "^6.22.0" 758 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 759 | babel-plugin-transform-es2015-template-literals "^6.22.0" 760 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 761 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 762 | babel-plugin-transform-exponentiation-operator "^6.22.0" 763 | babel-plugin-transform-regenerator "^6.22.0" 764 | browserslist "^1.4.0" 765 | invariant "^2.2.2" 766 | 767 | babel-register@^6.24.1: 768 | version "6.24.1" 769 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 770 | dependencies: 771 | babel-core "^6.24.1" 772 | babel-runtime "^6.22.0" 773 | core-js "^2.4.0" 774 | home-or-tmp "^2.0.0" 775 | lodash "^4.2.0" 776 | mkdirp "^0.5.1" 777 | source-map-support "^0.4.2" 778 | 779 | babel-runtime@^6.18.0, babel-runtime@^6.22.0: 780 | version "6.23.0" 781 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 782 | dependencies: 783 | core-js "^2.4.0" 784 | regenerator-runtime "^0.10.0" 785 | 786 | babel-template@^6.16.0, babel-template@^6.24.1: 787 | version "6.24.1" 788 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" 789 | dependencies: 790 | babel-runtime "^6.22.0" 791 | babel-traverse "^6.24.1" 792 | babel-types "^6.24.1" 793 | babylon "^6.11.0" 794 | lodash "^4.2.0" 795 | 796 | babel-traverse@^6.18.0, babel-traverse@^6.23.1, babel-traverse@^6.24.1: 797 | version "6.24.1" 798 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" 799 | dependencies: 800 | babel-code-frame "^6.22.0" 801 | babel-messages "^6.23.0" 802 | babel-runtime "^6.22.0" 803 | babel-types "^6.24.1" 804 | babylon "^6.15.0" 805 | debug "^2.2.0" 806 | globals "^9.0.0" 807 | invariant "^2.2.0" 808 | lodash "^4.2.0" 809 | 810 | babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.23.0, babel-types@^6.24.1: 811 | version "6.24.1" 812 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" 813 | dependencies: 814 | babel-runtime "^6.22.0" 815 | esutils "^2.0.2" 816 | lodash "^4.2.0" 817 | to-fast-properties "^1.0.1" 818 | 819 | babylon@^6.1.0, babylon@^6.11.0, babylon@^6.13.0, babylon@^6.15.0, babylon@^6.17.0: 820 | version "6.17.0" 821 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.0.tgz#37da948878488b9c4e3c4038893fa3314b3fc932" 822 | 823 | balanced-match@^0.4.1, balanced-match@^0.4.2: 824 | version "0.4.2" 825 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 826 | 827 | bcrypt-pbkdf@^1.0.0: 828 | version "1.0.1" 829 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 830 | dependencies: 831 | tweetnacl "^0.14.3" 832 | 833 | binary-extensions@^1.0.0: 834 | version "1.8.0" 835 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 836 | 837 | block-stream@*: 838 | version "0.0.9" 839 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 840 | dependencies: 841 | inherits "~2.0.0" 842 | 843 | bluebird@^3.0.0: 844 | version "3.5.0" 845 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.0.tgz#791420d7f551eea2897453a8a77653f96606d67c" 846 | 847 | boom@2.x.x: 848 | version "2.10.1" 849 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 850 | dependencies: 851 | hoek "2.x.x" 852 | 853 | boxen@^1.0.0: 854 | version "1.1.0" 855 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.1.0.tgz#b1b69dd522305e807a99deee777dbd6e5167b102" 856 | dependencies: 857 | ansi-align "^2.0.0" 858 | camelcase "^4.0.0" 859 | chalk "^1.1.1" 860 | cli-boxes "^1.0.0" 861 | string-width "^2.0.0" 862 | term-size "^0.1.0" 863 | widest-line "^1.0.0" 864 | 865 | brace-expansion@^1.0.0: 866 | version "1.1.7" 867 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59" 868 | dependencies: 869 | balanced-match "^0.4.1" 870 | concat-map "0.0.1" 871 | 872 | braces@^1.8.2: 873 | version "1.8.5" 874 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 875 | dependencies: 876 | expand-range "^1.8.1" 877 | preserve "^0.2.0" 878 | repeat-element "^1.1.2" 879 | 880 | browserslist@^1.4.0: 881 | version "1.7.7" 882 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.7.7.tgz#0bd76704258be829b2398bb50e4b62d1a166b0b9" 883 | dependencies: 884 | caniuse-db "^1.0.30000639" 885 | electron-to-chromium "^1.2.7" 886 | 887 | buf-compare@^1.0.0: 888 | version "1.0.1" 889 | resolved "https://registry.yarnpkg.com/buf-compare/-/buf-compare-1.0.1.tgz#fef28da8b8113a0a0db4430b0b6467b69730b34a" 890 | 891 | buffer-shims@~1.0.0: 892 | version "1.0.0" 893 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 894 | 895 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 896 | version "1.1.1" 897 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 898 | 899 | caching-transform@^1.0.0: 900 | version "1.0.1" 901 | resolved "https://registry.yarnpkg.com/caching-transform/-/caching-transform-1.0.1.tgz#6dbdb2f20f8d8fbce79f3e94e9d1742dcdf5c0a1" 902 | dependencies: 903 | md5-hex "^1.2.0" 904 | mkdirp "^0.5.1" 905 | write-file-atomic "^1.1.4" 906 | 907 | call-matcher@^1.0.0: 908 | version "1.0.1" 909 | resolved "https://registry.yarnpkg.com/call-matcher/-/call-matcher-1.0.1.tgz#5134d077984f712a54dad3cbf62de28dce416ca8" 910 | dependencies: 911 | core-js "^2.0.0" 912 | deep-equal "^1.0.0" 913 | espurify "^1.6.0" 914 | estraverse "^4.0.0" 915 | 916 | call-signature@0.0.2: 917 | version "0.0.2" 918 | resolved "https://registry.yarnpkg.com/call-signature/-/call-signature-0.0.2.tgz#a84abc825a55ef4cb2b028bd74e205a65b9a4996" 919 | 920 | caller-path@^0.1.0: 921 | version "0.1.0" 922 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 923 | dependencies: 924 | callsites "^0.2.0" 925 | 926 | callsites@^0.2.0: 927 | version "0.2.0" 928 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 929 | 930 | camelcase-keys@^2.0.0: 931 | version "2.1.0" 932 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 933 | dependencies: 934 | camelcase "^2.0.0" 935 | map-obj "^1.0.0" 936 | 937 | camelcase@^1.0.2: 938 | version "1.2.1" 939 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 940 | 941 | camelcase@^2.0.0: 942 | version "2.1.1" 943 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 944 | 945 | camelcase@^3.0.0: 946 | version "3.0.0" 947 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 948 | 949 | camelcase@^4.0.0: 950 | version "4.1.0" 951 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 952 | 953 | caniuse-db@^1.0.30000639: 954 | version "1.0.30000665" 955 | resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000665.tgz#e84f4277935f295f546f8533cb0b410a8415b972" 956 | 957 | capture-stack-trace@^1.0.0: 958 | version "1.0.0" 959 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 960 | 961 | caseless@~0.11.0: 962 | version "0.11.0" 963 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 964 | 965 | caseless@~0.12.0: 966 | version "0.12.0" 967 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 968 | 969 | center-align@^0.1.1: 970 | version "0.1.3" 971 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 972 | dependencies: 973 | align-text "^0.1.3" 974 | lazy-cache "^1.0.3" 975 | 976 | chai@^3.5.0: 977 | version "3.5.0" 978 | resolved "https://registry.yarnpkg.com/chai/-/chai-3.5.0.tgz#4d02637b067fe958bdbfdd3a40ec56fef7373247" 979 | dependencies: 980 | assertion-error "^1.0.1" 981 | deep-eql "^0.1.3" 982 | type-detect "^1.0.0" 983 | 984 | chalk@^0.4.0: 985 | version "0.4.0" 986 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.4.0.tgz#5199a3ddcd0c1efe23bc08c1b027b06176e0c64f" 987 | dependencies: 988 | ansi-styles "~1.0.0" 989 | has-color "~0.1.0" 990 | strip-ansi "~0.1.0" 991 | 992 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 993 | version "1.1.3" 994 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 995 | dependencies: 996 | ansi-styles "^2.2.1" 997 | escape-string-regexp "^1.0.2" 998 | has-ansi "^2.0.0" 999 | strip-ansi "^3.0.0" 1000 | supports-color "^2.0.0" 1001 | 1002 | chokidar@^1.4.2, chokidar@^1.6.1: 1003 | version "1.6.1" 1004 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 1005 | dependencies: 1006 | anymatch "^1.3.0" 1007 | async-each "^1.0.0" 1008 | glob-parent "^2.0.0" 1009 | inherits "^2.0.1" 1010 | is-binary-path "^1.0.0" 1011 | is-glob "^2.0.0" 1012 | path-is-absolute "^1.0.0" 1013 | readdirp "^2.0.0" 1014 | optionalDependencies: 1015 | fsevents "^1.0.0" 1016 | 1017 | ci-info@^1.0.0: 1018 | version "1.0.0" 1019 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 1020 | 1021 | circular-json@^0.3.1: 1022 | version "0.3.1" 1023 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 1024 | 1025 | clean-stack@^1.1.1: 1026 | version "1.1.1" 1027 | resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-1.1.1.tgz#a1b3711122df162df7c7cb9b3c0470f28cb58adb" 1028 | 1029 | clean-yaml-object@^0.1.0: 1030 | version "0.1.0" 1031 | resolved "https://registry.yarnpkg.com/clean-yaml-object/-/clean-yaml-object-0.1.0.tgz#63fb110dc2ce1a84dc21f6d9334876d010ae8b68" 1032 | 1033 | cli-boxes@^1.0.0: 1034 | version "1.0.0" 1035 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 1036 | 1037 | cli-cursor@^1.0.1: 1038 | version "1.0.2" 1039 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 1040 | dependencies: 1041 | restore-cursor "^1.0.1" 1042 | 1043 | cli-cursor@^2.1.0: 1044 | version "2.1.0" 1045 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 1046 | dependencies: 1047 | restore-cursor "^2.0.0" 1048 | 1049 | cli-spinners@^1.0.0: 1050 | version "1.0.0" 1051 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-1.0.0.tgz#ef987ed3d48391ac3dab9180b406a742180d6e6a" 1052 | 1053 | cli-truncate@^1.0.0: 1054 | version "1.0.0" 1055 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-1.0.0.tgz#21eb91f47b3f6560f004db77a769b4668d9c5518" 1056 | dependencies: 1057 | slice-ansi "0.0.4" 1058 | string-width "^2.0.0" 1059 | 1060 | cli-width@^2.0.0: 1061 | version "2.1.0" 1062 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 1063 | 1064 | cliui@^2.1.0: 1065 | version "2.1.0" 1066 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 1067 | dependencies: 1068 | center-align "^0.1.1" 1069 | right-align "^0.1.1" 1070 | wordwrap "0.0.2" 1071 | 1072 | cliui@^3.2.0: 1073 | version "3.2.0" 1074 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 1075 | dependencies: 1076 | string-width "^1.0.1" 1077 | strip-ansi "^3.0.1" 1078 | wrap-ansi "^2.0.0" 1079 | 1080 | co-with-promise@^4.6.0: 1081 | version "4.6.0" 1082 | resolved "https://registry.yarnpkg.com/co-with-promise/-/co-with-promise-4.6.0.tgz#413e7db6f5893a60b942cf492c4bec93db415ab7" 1083 | dependencies: 1084 | pinkie-promise "^1.0.0" 1085 | 1086 | co@^4.6.0: 1087 | version "4.6.0" 1088 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1089 | 1090 | code-excerpt@^2.1.0: 1091 | version "2.1.0" 1092 | resolved "https://registry.yarnpkg.com/code-excerpt/-/code-excerpt-2.1.0.tgz#5dcc081e88f4a7e3b554e9e35d7ef232d47f8147" 1093 | dependencies: 1094 | convert-to-spaces "^1.0.1" 1095 | 1096 | code-point-at@^1.0.0: 1097 | version "1.1.0" 1098 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1099 | 1100 | color-convert@^1.0.0: 1101 | version "1.9.0" 1102 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 1103 | dependencies: 1104 | color-name "^1.1.1" 1105 | 1106 | color-name@^1.1.1: 1107 | version "1.1.2" 1108 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d" 1109 | 1110 | combined-stream@^1.0.5, combined-stream@~1.0.5: 1111 | version "1.0.5" 1112 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 1113 | dependencies: 1114 | delayed-stream "~1.0.0" 1115 | 1116 | commander@^2.8.1, commander@^2.9.0: 1117 | version "2.9.0" 1118 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 1119 | dependencies: 1120 | graceful-readlink ">= 1.0.0" 1121 | 1122 | common-path-prefix@^1.0.0: 1123 | version "1.0.0" 1124 | resolved "https://registry.yarnpkg.com/common-path-prefix/-/common-path-prefix-1.0.0.tgz#cd52f6f0712e0baab97d6f9732874f22f47752c0" 1125 | 1126 | commondir@^1.0.1: 1127 | version "1.0.1" 1128 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 1129 | 1130 | concat-map@0.0.1: 1131 | version "0.0.1" 1132 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1133 | 1134 | concat-stream@^1.5.2: 1135 | version "1.6.0" 1136 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 1137 | dependencies: 1138 | inherits "^2.0.3" 1139 | readable-stream "^2.2.2" 1140 | typedarray "^0.0.6" 1141 | 1142 | configstore@^3.0.0: 1143 | version "3.0.0" 1144 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.0.0.tgz#e1b8669c1803ccc50b545e92f8e6e79aa80e0196" 1145 | dependencies: 1146 | dot-prop "^4.1.0" 1147 | graceful-fs "^4.1.2" 1148 | mkdirp "^0.5.0" 1149 | unique-string "^1.0.0" 1150 | write-file-atomic "^1.1.2" 1151 | xdg-basedir "^3.0.0" 1152 | 1153 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1154 | version "1.1.0" 1155 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1156 | 1157 | contains-path@^0.1.0: 1158 | version "0.1.0" 1159 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 1160 | 1161 | convert-source-map@^1.1.0, convert-source-map@^1.2.0, convert-source-map@^1.3.0: 1162 | version "1.5.0" 1163 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 1164 | 1165 | convert-to-spaces@^1.0.1: 1166 | version "1.0.2" 1167 | resolved "https://registry.yarnpkg.com/convert-to-spaces/-/convert-to-spaces-1.0.2.tgz#7e3e48bbe6d997b1417ddca2868204b4d3d85715" 1168 | 1169 | core-assert@^0.2.0: 1170 | version "0.2.1" 1171 | resolved "https://registry.yarnpkg.com/core-assert/-/core-assert-0.2.1.tgz#f85e2cf9bfed28f773cc8b3fa5c5b69bdc02fe3f" 1172 | dependencies: 1173 | buf-compare "^1.0.0" 1174 | is-error "^2.2.0" 1175 | 1176 | core-js@^2.0.0, core-js@^2.4.0: 1177 | version "2.4.1" 1178 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 1179 | 1180 | core-util-is@~1.0.0: 1181 | version "1.0.2" 1182 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1183 | 1184 | coveralls@^2.11.16: 1185 | version "2.13.1" 1186 | resolved "https://registry.yarnpkg.com/coveralls/-/coveralls-2.13.1.tgz#d70bb9acc1835ec4f063ff9dac5423c17b11f178" 1187 | dependencies: 1188 | js-yaml "3.6.1" 1189 | lcov-parse "0.0.10" 1190 | log-driver "1.2.5" 1191 | minimist "1.2.0" 1192 | request "2.79.0" 1193 | 1194 | create-error-class@^3.0.0: 1195 | version "3.0.2" 1196 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 1197 | dependencies: 1198 | capture-stack-trace "^1.0.0" 1199 | 1200 | cross-spawn-async@^2.1.1: 1201 | version "2.2.5" 1202 | resolved "https://registry.yarnpkg.com/cross-spawn-async/-/cross-spawn-async-2.2.5.tgz#845ff0c0834a3ded9d160daca6d390906bb288cc" 1203 | dependencies: 1204 | lru-cache "^4.0.0" 1205 | which "^1.2.8" 1206 | 1207 | cross-spawn@^4, cross-spawn@^4.0.0: 1208 | version "4.0.2" 1209 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" 1210 | dependencies: 1211 | lru-cache "^4.0.1" 1212 | which "^1.2.9" 1213 | 1214 | cryptiles@2.x.x: 1215 | version "2.0.5" 1216 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1217 | dependencies: 1218 | boom "2.x.x" 1219 | 1220 | crypto-random-string@^1.0.0: 1221 | version "1.0.0" 1222 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" 1223 | 1224 | currently-unhandled@^0.4.1: 1225 | version "0.4.1" 1226 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 1227 | dependencies: 1228 | array-find-index "^1.0.1" 1229 | 1230 | d@1: 1231 | version "1.0.0" 1232 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 1233 | dependencies: 1234 | es5-ext "^0.10.9" 1235 | 1236 | dashdash@^1.12.0: 1237 | version "1.14.1" 1238 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1239 | dependencies: 1240 | assert-plus "^1.0.0" 1241 | 1242 | date-time@^0.1.1: 1243 | version "0.1.1" 1244 | resolved "https://registry.yarnpkg.com/date-time/-/date-time-0.1.1.tgz#ed2f6d93d9790ce2fd66d5b5ff3edd5bbcbf3b07" 1245 | 1246 | debug-log@^1.0.1: 1247 | version "1.0.1" 1248 | resolved "https://registry.yarnpkg.com/debug-log/-/debug-log-1.0.1.tgz#2307632d4c04382b8df8a32f70b895046d52745f" 1249 | 1250 | debug@2.2.0: 1251 | version "2.2.0" 1252 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 1253 | dependencies: 1254 | ms "0.7.1" 1255 | 1256 | debug@^2.1.1, debug@^2.2.0, debug@^2.6.3: 1257 | version "2.6.6" 1258 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.6.tgz#a9fa6fbe9ca43cf1e79f73b75c0189cbb7d6db5a" 1259 | dependencies: 1260 | ms "0.7.3" 1261 | 1262 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: 1263 | version "1.2.0" 1264 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1265 | 1266 | deep-eql@^0.1.3: 1267 | version "0.1.3" 1268 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-0.1.3.tgz#ef558acab8de25206cd713906d74e56930eb69f2" 1269 | dependencies: 1270 | type-detect "0.1.1" 1271 | 1272 | deep-equal@^1.0.0: 1273 | version "1.0.1" 1274 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" 1275 | 1276 | deep-extend@~0.4.0: 1277 | version "0.4.1" 1278 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 1279 | 1280 | deep-is@~0.1.3: 1281 | version "0.1.3" 1282 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1283 | 1284 | deep-strict-equal@^0.2.0: 1285 | version "0.2.0" 1286 | resolved "https://registry.yarnpkg.com/deep-strict-equal/-/deep-strict-equal-0.2.0.tgz#4a078147a8ab57f6a0d4f5547243cd22f44eb4e4" 1287 | dependencies: 1288 | core-assert "^0.2.0" 1289 | 1290 | default-require-extensions@^1.0.0: 1291 | version "1.0.0" 1292 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 1293 | dependencies: 1294 | strip-bom "^2.0.0" 1295 | 1296 | del@^2.0.2: 1297 | version "2.2.2" 1298 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1299 | dependencies: 1300 | globby "^5.0.0" 1301 | is-path-cwd "^1.0.0" 1302 | is-path-in-cwd "^1.0.0" 1303 | object-assign "^4.0.1" 1304 | pify "^2.0.0" 1305 | pinkie-promise "^2.0.0" 1306 | rimraf "^2.2.8" 1307 | 1308 | delayed-stream@~1.0.0: 1309 | version "1.0.0" 1310 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1311 | 1312 | delegates@^1.0.0: 1313 | version "1.0.0" 1314 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1315 | 1316 | detect-indent@^4.0.0: 1317 | version "4.0.0" 1318 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1319 | dependencies: 1320 | repeating "^2.0.0" 1321 | 1322 | diff-match-patch@^1.0.0: 1323 | version "1.0.0" 1324 | resolved "https://registry.yarnpkg.com/diff-match-patch/-/diff-match-patch-1.0.0.tgz#1cc3c83a490d67f95d91e39f6ad1f2e086b63048" 1325 | 1326 | diff@^3.0.0, diff@^3.0.1: 1327 | version "3.2.0" 1328 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 1329 | 1330 | doctrine@1.5.0: 1331 | version "1.5.0" 1332 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1333 | dependencies: 1334 | esutils "^2.0.2" 1335 | isarray "^1.0.0" 1336 | 1337 | doctrine@^2.0.0: 1338 | version "2.0.0" 1339 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 1340 | dependencies: 1341 | esutils "^2.0.2" 1342 | isarray "^1.0.0" 1343 | 1344 | dot-prop@^4.1.0: 1345 | version "4.1.1" 1346 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.1.1.tgz#a8493f0b7b5eeec82525b5c7587fa7de7ca859c1" 1347 | dependencies: 1348 | is-obj "^1.0.0" 1349 | 1350 | duplexer3@^0.1.4: 1351 | version "0.1.4" 1352 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 1353 | 1354 | ecc-jsbn@~0.1.1: 1355 | version "0.1.1" 1356 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1357 | dependencies: 1358 | jsbn "~0.1.0" 1359 | 1360 | electron-to-chromium@^1.2.7: 1361 | version "1.3.9" 1362 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.9.tgz#db1cba2a26aebcca2f7f5b8b034554468609157d" 1363 | 1364 | empower-core@^0.6.1: 1365 | version "0.6.1" 1366 | resolved "https://registry.yarnpkg.com/empower-core/-/empower-core-0.6.1.tgz#6c187f502fcef7554d57933396aac655483772b1" 1367 | dependencies: 1368 | call-signature "0.0.2" 1369 | core-js "^2.0.0" 1370 | 1371 | enhance-visitors@^1.0.0: 1372 | version "1.0.0" 1373 | resolved "https://registry.yarnpkg.com/enhance-visitors/-/enhance-visitors-1.0.0.tgz#aa945d05da465672a1ebd38fee2ed3da8518e95a" 1374 | dependencies: 1375 | lodash "^4.13.1" 1376 | 1377 | equal-length@^1.0.0: 1378 | version "1.0.1" 1379 | resolved "https://registry.yarnpkg.com/equal-length/-/equal-length-1.0.1.tgz#21ca112d48ab24b4e1e7ffc0e5339d31fdfc274c" 1380 | 1381 | error-ex@^1.2.0: 1382 | version "1.3.1" 1383 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1384 | dependencies: 1385 | is-arrayish "^0.2.1" 1386 | 1387 | es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14: 1388 | version "0.10.15" 1389 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.15.tgz#c330a5934c1ee21284a7c081a86e5fd937c91ea6" 1390 | dependencies: 1391 | es6-iterator "2" 1392 | es6-symbol "~3.1" 1393 | 1394 | es6-error@^4.0.1, es6-error@^4.0.2: 1395 | version "4.0.2" 1396 | resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-4.0.2.tgz#eec5c726eacef51b7f6b73c20db6e1b13b069c98" 1397 | 1398 | es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1: 1399 | version "2.0.1" 1400 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512" 1401 | dependencies: 1402 | d "1" 1403 | es5-ext "^0.10.14" 1404 | es6-symbol "^3.1" 1405 | 1406 | es6-map@^0.1.3: 1407 | version "0.1.5" 1408 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 1409 | dependencies: 1410 | d "1" 1411 | es5-ext "~0.10.14" 1412 | es6-iterator "~2.0.1" 1413 | es6-set "~0.1.5" 1414 | es6-symbol "~3.1.1" 1415 | event-emitter "~0.3.5" 1416 | 1417 | es6-set@~0.1.5: 1418 | version "0.1.5" 1419 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 1420 | dependencies: 1421 | d "1" 1422 | es5-ext "~0.10.14" 1423 | es6-iterator "~2.0.1" 1424 | es6-symbol "3.1.1" 1425 | event-emitter "~0.3.5" 1426 | 1427 | es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1: 1428 | version "3.1.1" 1429 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 1430 | dependencies: 1431 | d "1" 1432 | es5-ext "~0.10.14" 1433 | 1434 | es6-weak-map@^2.0.1: 1435 | version "2.0.2" 1436 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 1437 | dependencies: 1438 | d "1" 1439 | es5-ext "^0.10.14" 1440 | es6-iterator "^2.0.1" 1441 | es6-symbol "^3.1.1" 1442 | 1443 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.4, escape-string-regexp@^1.0.5: 1444 | version "1.0.5" 1445 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1446 | 1447 | escope@^3.6.0: 1448 | version "3.6.0" 1449 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1450 | dependencies: 1451 | es6-map "^0.1.3" 1452 | es6-weak-map "^2.0.1" 1453 | esrecurse "^4.1.0" 1454 | estraverse "^4.1.1" 1455 | 1456 | eslint-config-airbnb-base@^11.1.0: 1457 | version "11.1.3" 1458 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-11.1.3.tgz#0e8db71514fa36b977fbcf977c01edcf863e0cf0" 1459 | 1460 | eslint-import-resolver-node@^0.2.0: 1461 | version "0.2.3" 1462 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.2.3.tgz#5add8106e8c928db2cba232bcd9efa846e3da16c" 1463 | dependencies: 1464 | debug "^2.2.0" 1465 | object-assign "^4.0.1" 1466 | resolve "^1.1.6" 1467 | 1468 | eslint-module-utils@^2.0.0: 1469 | version "2.0.0" 1470 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.0.0.tgz#a6f8c21d901358759cdc35dbac1982ae1ee58bce" 1471 | dependencies: 1472 | debug "2.2.0" 1473 | pkg-dir "^1.0.0" 1474 | 1475 | eslint-plugin-ava@^4.0.1: 1476 | version "4.2.0" 1477 | resolved "https://registry.yarnpkg.com/eslint-plugin-ava/-/eslint-plugin-ava-4.2.0.tgz#12e4664659c1fae7895fa3f346c313ceb8907c77" 1478 | dependencies: 1479 | arrify "^1.0.1" 1480 | deep-strict-equal "^0.2.0" 1481 | enhance-visitors "^1.0.0" 1482 | espree "^3.1.3" 1483 | espurify "^1.5.0" 1484 | multimatch "^2.1.0" 1485 | pkg-up "^1.0.0" 1486 | req-all "^1.0.0" 1487 | 1488 | eslint-plugin-import@^2.2.0: 1489 | version "2.2.0" 1490 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.2.0.tgz#72ba306fad305d67c4816348a4699a4229ac8b4e" 1491 | dependencies: 1492 | builtin-modules "^1.1.1" 1493 | contains-path "^0.1.0" 1494 | debug "^2.2.0" 1495 | doctrine "1.5.0" 1496 | eslint-import-resolver-node "^0.2.0" 1497 | eslint-module-utils "^2.0.0" 1498 | has "^1.0.1" 1499 | lodash.cond "^4.3.0" 1500 | minimatch "^3.0.3" 1501 | pkg-up "^1.0.0" 1502 | 1503 | eslint@^3.15.0: 1504 | version "3.19.0" 1505 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.19.0.tgz#c8fc6201c7f40dd08941b87c085767386a679acc" 1506 | dependencies: 1507 | babel-code-frame "^6.16.0" 1508 | chalk "^1.1.3" 1509 | concat-stream "^1.5.2" 1510 | debug "^2.1.1" 1511 | doctrine "^2.0.0" 1512 | escope "^3.6.0" 1513 | espree "^3.4.0" 1514 | esquery "^1.0.0" 1515 | estraverse "^4.2.0" 1516 | esutils "^2.0.2" 1517 | file-entry-cache "^2.0.0" 1518 | glob "^7.0.3" 1519 | globals "^9.14.0" 1520 | ignore "^3.2.0" 1521 | imurmurhash "^0.1.4" 1522 | inquirer "^0.12.0" 1523 | is-my-json-valid "^2.10.0" 1524 | is-resolvable "^1.0.0" 1525 | js-yaml "^3.5.1" 1526 | json-stable-stringify "^1.0.0" 1527 | levn "^0.3.0" 1528 | lodash "^4.0.0" 1529 | mkdirp "^0.5.0" 1530 | natural-compare "^1.4.0" 1531 | optionator "^0.8.2" 1532 | path-is-inside "^1.0.1" 1533 | pluralize "^1.2.1" 1534 | progress "^1.1.8" 1535 | require-uncached "^1.0.2" 1536 | shelljs "^0.7.5" 1537 | strip-bom "^3.0.0" 1538 | strip-json-comments "~2.0.1" 1539 | table "^3.7.8" 1540 | text-table "~0.2.0" 1541 | user-home "^2.0.0" 1542 | 1543 | espower-location-detector@^1.0.0: 1544 | version "1.0.0" 1545 | resolved "https://registry.yarnpkg.com/espower-location-detector/-/espower-location-detector-1.0.0.tgz#a17b7ecc59d30e179e2bef73fb4137704cb331b5" 1546 | dependencies: 1547 | is-url "^1.2.1" 1548 | path-is-absolute "^1.0.0" 1549 | source-map "^0.5.0" 1550 | xtend "^4.0.0" 1551 | 1552 | espree@^3.1.3, espree@^3.4.0: 1553 | version "3.4.3" 1554 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.3.tgz#2910b5ccd49ce893c2ffffaab4fd8b3a31b82374" 1555 | dependencies: 1556 | acorn "^5.0.1" 1557 | acorn-jsx "^3.0.0" 1558 | 1559 | esprima@^2.6.0: 1560 | version "2.7.3" 1561 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1562 | 1563 | esprima@^3.1.1: 1564 | version "3.1.3" 1565 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1566 | 1567 | espurify@^1.5.0, espurify@^1.6.0: 1568 | version "1.7.0" 1569 | resolved "https://registry.yarnpkg.com/espurify/-/espurify-1.7.0.tgz#1c5cf6cbccc32e6f639380bd4f991fab9ba9d226" 1570 | dependencies: 1571 | core-js "^2.0.0" 1572 | 1573 | esquery@^1.0.0: 1574 | version "1.0.0" 1575 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1576 | dependencies: 1577 | estraverse "^4.0.0" 1578 | 1579 | esrecurse@^4.1.0: 1580 | version "4.1.0" 1581 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 1582 | dependencies: 1583 | estraverse "~4.1.0" 1584 | object-assign "^4.0.1" 1585 | 1586 | estraverse@^4.0.0, estraverse@^4.1.1, estraverse@^4.2.0: 1587 | version "4.2.0" 1588 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1589 | 1590 | estraverse@~4.1.0: 1591 | version "4.1.1" 1592 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 1593 | 1594 | esutils@^2.0.2: 1595 | version "2.0.2" 1596 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1597 | 1598 | event-emitter@~0.3.5: 1599 | version "0.3.5" 1600 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 1601 | dependencies: 1602 | d "1" 1603 | es5-ext "~0.10.14" 1604 | 1605 | execa@^0.4.0: 1606 | version "0.4.0" 1607 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.4.0.tgz#4eb6467a36a095fabb2970ff9d5e3fb7bce6ebc3" 1608 | dependencies: 1609 | cross-spawn-async "^2.1.1" 1610 | is-stream "^1.1.0" 1611 | npm-run-path "^1.0.0" 1612 | object-assign "^4.0.1" 1613 | path-key "^1.0.0" 1614 | strip-eof "^1.0.0" 1615 | 1616 | execa@^0.5.0: 1617 | version "0.5.1" 1618 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.5.1.tgz#de3fb85cb8d6e91c85bcbceb164581785cb57b36" 1619 | dependencies: 1620 | cross-spawn "^4.0.0" 1621 | get-stream "^2.2.0" 1622 | is-stream "^1.1.0" 1623 | npm-run-path "^2.0.0" 1624 | p-finally "^1.0.0" 1625 | signal-exit "^3.0.0" 1626 | strip-eof "^1.0.0" 1627 | 1628 | exit-hook@^1.0.0: 1629 | version "1.1.1" 1630 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1631 | 1632 | expand-brackets@^0.1.4: 1633 | version "0.1.5" 1634 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1635 | dependencies: 1636 | is-posix-bracket "^0.1.0" 1637 | 1638 | expand-range@^1.8.1: 1639 | version "1.8.2" 1640 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1641 | dependencies: 1642 | fill-range "^2.1.0" 1643 | 1644 | extend@~3.0.0: 1645 | version "3.0.1" 1646 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1647 | 1648 | extglob@^0.3.1: 1649 | version "0.3.2" 1650 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1651 | dependencies: 1652 | is-extglob "^1.0.0" 1653 | 1654 | extsprintf@1.0.2: 1655 | version "1.0.2" 1656 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1657 | 1658 | fast-levenshtein@~2.0.4: 1659 | version "2.0.6" 1660 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1661 | 1662 | figures@^1.3.5: 1663 | version "1.7.0" 1664 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1665 | dependencies: 1666 | escape-string-regexp "^1.0.5" 1667 | object-assign "^4.1.0" 1668 | 1669 | figures@^2.0.0: 1670 | version "2.0.0" 1671 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1672 | dependencies: 1673 | escape-string-regexp "^1.0.5" 1674 | 1675 | file-entry-cache@^2.0.0: 1676 | version "2.0.0" 1677 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1678 | dependencies: 1679 | flat-cache "^1.2.1" 1680 | object-assign "^4.0.1" 1681 | 1682 | file-type@^3.6.0: 1683 | version "3.9.0" 1684 | resolved "https://registry.yarnpkg.com/file-type/-/file-type-3.9.0.tgz#257a078384d1db8087bc449d107d52a52672b9e9" 1685 | 1686 | filename-regex@^2.0.0: 1687 | version "2.0.1" 1688 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1689 | 1690 | fill-range@^2.1.0: 1691 | version "2.2.3" 1692 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1693 | dependencies: 1694 | is-number "^2.1.0" 1695 | isobject "^2.0.0" 1696 | randomatic "^1.1.3" 1697 | repeat-element "^1.1.2" 1698 | repeat-string "^1.5.2" 1699 | 1700 | find-cache-dir@^0.1.1: 1701 | version "0.1.1" 1702 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" 1703 | dependencies: 1704 | commondir "^1.0.1" 1705 | mkdirp "^0.5.1" 1706 | pkg-dir "^1.0.0" 1707 | 1708 | find-up@^1.0.0, find-up@^1.1.2: 1709 | version "1.1.2" 1710 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1711 | dependencies: 1712 | path-exists "^2.0.0" 1713 | pinkie-promise "^2.0.0" 1714 | 1715 | find-up@^2.0.0: 1716 | version "2.1.0" 1717 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1718 | dependencies: 1719 | locate-path "^2.0.0" 1720 | 1721 | flat-cache@^1.2.1: 1722 | version "1.2.2" 1723 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 1724 | dependencies: 1725 | circular-json "^0.3.1" 1726 | del "^2.0.2" 1727 | graceful-fs "^4.1.2" 1728 | write "^0.2.1" 1729 | 1730 | fn-name@^2.0.0: 1731 | version "2.0.1" 1732 | resolved "https://registry.yarnpkg.com/fn-name/-/fn-name-2.0.1.tgz#5214d7537a4d06a4a301c0cc262feb84188002e7" 1733 | 1734 | for-in@^1.0.1: 1735 | version "1.0.2" 1736 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1737 | 1738 | for-own@^0.1.4: 1739 | version "0.1.5" 1740 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1741 | dependencies: 1742 | for-in "^1.0.1" 1743 | 1744 | foreground-child@^1.3.3, foreground-child@^1.5.3: 1745 | version "1.5.6" 1746 | resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-1.5.6.tgz#4fd71ad2dfde96789b980a5c0a295937cb2f5ce9" 1747 | dependencies: 1748 | cross-spawn "^4" 1749 | signal-exit "^3.0.0" 1750 | 1751 | forever-agent@~0.6.1: 1752 | version "0.6.1" 1753 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1754 | 1755 | form-data@~2.1.1: 1756 | version "2.1.4" 1757 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1758 | dependencies: 1759 | asynckit "^0.4.0" 1760 | combined-stream "^1.0.5" 1761 | mime-types "^2.1.12" 1762 | 1763 | fs-readdir-recursive@^1.0.0: 1764 | version "1.0.0" 1765 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1766 | 1767 | fs.realpath@^1.0.0: 1768 | version "1.0.0" 1769 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1770 | 1771 | fsevents@^1.0.0: 1772 | version "1.1.1" 1773 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" 1774 | dependencies: 1775 | nan "^2.3.0" 1776 | node-pre-gyp "^0.6.29" 1777 | 1778 | fstream-ignore@^1.0.5: 1779 | version "1.0.5" 1780 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1781 | dependencies: 1782 | fstream "^1.0.0" 1783 | inherits "2" 1784 | minimatch "^3.0.0" 1785 | 1786 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1787 | version "1.0.11" 1788 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1789 | dependencies: 1790 | graceful-fs "^4.1.2" 1791 | inherits "~2.0.0" 1792 | mkdirp ">=0.5 0" 1793 | rimraf "2" 1794 | 1795 | function-bind@^1.0.2: 1796 | version "1.1.0" 1797 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1798 | 1799 | gauge@~2.7.3: 1800 | version "2.7.4" 1801 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1802 | dependencies: 1803 | aproba "^1.0.3" 1804 | console-control-strings "^1.0.0" 1805 | has-unicode "^2.0.0" 1806 | object-assign "^4.1.0" 1807 | signal-exit "^3.0.0" 1808 | string-width "^1.0.1" 1809 | strip-ansi "^3.0.1" 1810 | wide-align "^1.1.0" 1811 | 1812 | generate-function@^2.0.0: 1813 | version "2.0.0" 1814 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1815 | 1816 | generate-object-property@^1.1.0: 1817 | version "1.2.0" 1818 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1819 | dependencies: 1820 | is-property "^1.0.0" 1821 | 1822 | get-caller-file@^1.0.1: 1823 | version "1.0.2" 1824 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1825 | 1826 | get-port@^3.0.0: 1827 | version "3.1.0" 1828 | resolved "https://registry.yarnpkg.com/get-port/-/get-port-3.1.0.tgz#ef01b18a84ca6486970ff99e54446141a73ffd3e" 1829 | 1830 | get-stdin@^4.0.1: 1831 | version "4.0.1" 1832 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1833 | 1834 | get-stdin@^5.0.1: 1835 | version "5.0.1" 1836 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 1837 | 1838 | get-stream@^2.2.0: 1839 | version "2.3.1" 1840 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-2.3.1.tgz#5f38f93f346009666ee0150a054167f91bdd95de" 1841 | dependencies: 1842 | object-assign "^4.0.1" 1843 | pinkie-promise "^2.0.0" 1844 | 1845 | get-stream@^3.0.0: 1846 | version "3.0.0" 1847 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1848 | 1849 | getpass@^0.1.1: 1850 | version "0.1.7" 1851 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1852 | dependencies: 1853 | assert-plus "^1.0.0" 1854 | 1855 | glob-base@^0.3.0: 1856 | version "0.3.0" 1857 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1858 | dependencies: 1859 | glob-parent "^2.0.0" 1860 | is-glob "^2.0.0" 1861 | 1862 | glob-parent@^2.0.0: 1863 | version "2.0.0" 1864 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1865 | dependencies: 1866 | is-glob "^2.0.0" 1867 | 1868 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.0.6: 1869 | version "7.1.1" 1870 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1871 | dependencies: 1872 | fs.realpath "^1.0.0" 1873 | inflight "^1.0.4" 1874 | inherits "2" 1875 | minimatch "^3.0.2" 1876 | once "^1.3.0" 1877 | path-is-absolute "^1.0.0" 1878 | 1879 | globals@^9.0.0, globals@^9.14.0: 1880 | version "9.17.0" 1881 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 1882 | 1883 | globby@^5.0.0: 1884 | version "5.0.0" 1885 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1886 | dependencies: 1887 | array-union "^1.0.1" 1888 | arrify "^1.0.0" 1889 | glob "^7.0.3" 1890 | object-assign "^4.0.1" 1891 | pify "^2.0.0" 1892 | pinkie-promise "^2.0.0" 1893 | 1894 | globby@^6.0.0: 1895 | version "6.1.0" 1896 | resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" 1897 | dependencies: 1898 | array-union "^1.0.1" 1899 | glob "^7.0.3" 1900 | object-assign "^4.0.1" 1901 | pify "^2.0.0" 1902 | pinkie-promise "^2.0.0" 1903 | 1904 | got@^6.7.1: 1905 | version "6.7.1" 1906 | resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" 1907 | dependencies: 1908 | create-error-class "^3.0.0" 1909 | duplexer3 "^0.1.4" 1910 | get-stream "^3.0.0" 1911 | is-redirect "^1.0.0" 1912 | is-retry-allowed "^1.0.0" 1913 | is-stream "^1.0.0" 1914 | lowercase-keys "^1.0.0" 1915 | safe-buffer "^5.0.1" 1916 | timed-out "^4.0.0" 1917 | unzip-response "^2.0.1" 1918 | url-parse-lax "^1.0.0" 1919 | 1920 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4, graceful-fs@^4.1.6: 1921 | version "4.1.11" 1922 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1923 | 1924 | "graceful-readlink@>= 1.0.0": 1925 | version "1.0.1" 1926 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1927 | 1928 | handlebars@^4.0.3: 1929 | version "4.0.8" 1930 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.8.tgz#22b875cd3f0e6cbea30314f144e82bc7a72ff420" 1931 | dependencies: 1932 | async "^1.4.0" 1933 | optimist "^0.6.1" 1934 | source-map "^0.4.4" 1935 | optionalDependencies: 1936 | uglify-js "^2.6" 1937 | 1938 | har-schema@^1.0.5: 1939 | version "1.0.5" 1940 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1941 | 1942 | har-validator@~2.0.6: 1943 | version "2.0.6" 1944 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 1945 | dependencies: 1946 | chalk "^1.1.1" 1947 | commander "^2.9.0" 1948 | is-my-json-valid "^2.12.4" 1949 | pinkie-promise "^2.0.0" 1950 | 1951 | har-validator@~4.2.1: 1952 | version "4.2.1" 1953 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1954 | dependencies: 1955 | ajv "^4.9.1" 1956 | har-schema "^1.0.5" 1957 | 1958 | has-ansi@^2.0.0: 1959 | version "2.0.0" 1960 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1961 | dependencies: 1962 | ansi-regex "^2.0.0" 1963 | 1964 | has-color@~0.1.0: 1965 | version "0.1.7" 1966 | resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f" 1967 | 1968 | has-flag@^1.0.0: 1969 | version "1.0.0" 1970 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1971 | 1972 | has-flag@^2.0.0: 1973 | version "2.0.0" 1974 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1975 | 1976 | has-unicode@^2.0.0: 1977 | version "2.0.1" 1978 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1979 | 1980 | has-yarn@^1.0.0: 1981 | version "1.0.0" 1982 | resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-1.0.0.tgz#89e25db604b725c8f5976fff0addc921b828a5a7" 1983 | 1984 | has@^1.0.1: 1985 | version "1.0.1" 1986 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1987 | dependencies: 1988 | function-bind "^1.0.2" 1989 | 1990 | hawk@~3.1.3: 1991 | version "3.1.3" 1992 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1993 | dependencies: 1994 | boom "2.x.x" 1995 | cryptiles "2.x.x" 1996 | hoek "2.x.x" 1997 | sntp "1.x.x" 1998 | 1999 | hoek@2.x.x: 2000 | version "2.16.3" 2001 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 2002 | 2003 | home-or-tmp@^2.0.0: 2004 | version "2.0.0" 2005 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 2006 | dependencies: 2007 | os-homedir "^1.0.0" 2008 | os-tmpdir "^1.0.1" 2009 | 2010 | hosted-git-info@^2.1.4: 2011 | version "2.4.2" 2012 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67" 2013 | 2014 | http-signature@~1.1.0: 2015 | version "1.1.1" 2016 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 2017 | dependencies: 2018 | assert-plus "^0.2.0" 2019 | jsprim "^1.2.2" 2020 | sshpk "^1.7.0" 2021 | 2022 | hullabaloo-config-manager@^1.0.0: 2023 | version "1.0.1" 2024 | resolved "https://registry.yarnpkg.com/hullabaloo-config-manager/-/hullabaloo-config-manager-1.0.1.tgz#c72be7ba249a67c99b6ba3eb1f55837fa01acd8f" 2025 | dependencies: 2026 | dot-prop "^4.1.0" 2027 | es6-error "^4.0.2" 2028 | graceful-fs "^4.1.11" 2029 | indent-string "^3.1.0" 2030 | json5 "^0.5.1" 2031 | lodash.clonedeep "^4.5.0" 2032 | lodash.clonedeepwith "^4.5.0" 2033 | lodash.isequal "^4.5.0" 2034 | lodash.merge "^4.6.0" 2035 | md5-hex "^2.0.0" 2036 | package-hash "^2.0.0" 2037 | pkg-dir "^1.0.0" 2038 | resolve-from "^2.0.0" 2039 | 2040 | ignore-by-default@^1.0.0: 2041 | version "1.0.1" 2042 | resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" 2043 | 2044 | ignore@^3.2.0: 2045 | version "3.3.0" 2046 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.0.tgz#3812d22cbe9125f2c2b4915755a1b8abd745a001" 2047 | 2048 | imurmurhash@^0.1.4: 2049 | version "0.1.4" 2050 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 2051 | 2052 | indent-string@^2.1.0: 2053 | version "2.1.0" 2054 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 2055 | dependencies: 2056 | repeating "^2.0.0" 2057 | 2058 | indent-string@^3.0.0, indent-string@^3.1.0: 2059 | version "3.1.0" 2060 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.1.0.tgz#08ff4334603388399b329e6b9538dc7a3cf5de7d" 2061 | 2062 | inflight@^1.0.4: 2063 | version "1.0.6" 2064 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 2065 | dependencies: 2066 | once "^1.3.0" 2067 | wrappy "1" 2068 | 2069 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1: 2070 | version "2.0.3" 2071 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 2072 | 2073 | ini@~1.3.0: 2074 | version "1.3.4" 2075 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 2076 | 2077 | inquirer@^0.12.0: 2078 | version "0.12.0" 2079 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 2080 | dependencies: 2081 | ansi-escapes "^1.1.0" 2082 | ansi-regex "^2.0.0" 2083 | chalk "^1.0.0" 2084 | cli-cursor "^1.0.1" 2085 | cli-width "^2.0.0" 2086 | figures "^1.3.5" 2087 | lodash "^4.3.0" 2088 | readline2 "^1.0.1" 2089 | run-async "^0.1.0" 2090 | rx-lite "^3.1.2" 2091 | string-width "^1.0.1" 2092 | strip-ansi "^3.0.0" 2093 | through "^2.3.6" 2094 | 2095 | interpret@^1.0.0: 2096 | version "1.0.3" 2097 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90" 2098 | 2099 | invariant@^2.2.0, invariant@^2.2.2: 2100 | version "2.2.2" 2101 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 2102 | dependencies: 2103 | loose-envify "^1.0.0" 2104 | 2105 | invert-kv@^1.0.0: 2106 | version "1.0.0" 2107 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 2108 | 2109 | irregular-plurals@^1.0.0: 2110 | version "1.2.0" 2111 | resolved "https://registry.yarnpkg.com/irregular-plurals/-/irregular-plurals-1.2.0.tgz#38f299834ba8c00c30be9c554e137269752ff3ac" 2112 | 2113 | is-arrayish@^0.2.1: 2114 | version "0.2.1" 2115 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 2116 | 2117 | is-binary-path@^1.0.0: 2118 | version "1.0.1" 2119 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 2120 | dependencies: 2121 | binary-extensions "^1.0.0" 2122 | 2123 | is-buffer@^1.1.5: 2124 | version "1.1.5" 2125 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 2126 | 2127 | is-builtin-module@^1.0.0: 2128 | version "1.0.0" 2129 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 2130 | dependencies: 2131 | builtin-modules "^1.0.0" 2132 | 2133 | is-ci@^1.0.7: 2134 | version "1.0.10" 2135 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 2136 | dependencies: 2137 | ci-info "^1.0.0" 2138 | 2139 | is-dotfile@^1.0.0: 2140 | version "1.0.2" 2141 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 2142 | 2143 | is-equal-shallow@^0.1.3: 2144 | version "0.1.3" 2145 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 2146 | dependencies: 2147 | is-primitive "^2.0.0" 2148 | 2149 | is-error@^2.2.0: 2150 | version "2.2.1" 2151 | resolved "https://registry.yarnpkg.com/is-error/-/is-error-2.2.1.tgz#684a96d84076577c98f4cdb40c6d26a5123bf19c" 2152 | 2153 | is-extendable@^0.1.1: 2154 | version "0.1.1" 2155 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2156 | 2157 | is-extglob@^1.0.0: 2158 | version "1.0.0" 2159 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 2160 | 2161 | is-finite@^1.0.0, is-finite@^1.0.1: 2162 | version "1.0.2" 2163 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 2164 | dependencies: 2165 | number-is-nan "^1.0.0" 2166 | 2167 | is-fullwidth-code-point@^1.0.0: 2168 | version "1.0.0" 2169 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2170 | dependencies: 2171 | number-is-nan "^1.0.0" 2172 | 2173 | is-fullwidth-code-point@^2.0.0: 2174 | version "2.0.0" 2175 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 2176 | 2177 | is-generator-fn@^1.0.0: 2178 | version "1.0.0" 2179 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a" 2180 | 2181 | is-glob@^2.0.0, is-glob@^2.0.1: 2182 | version "2.0.1" 2183 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 2184 | dependencies: 2185 | is-extglob "^1.0.0" 2186 | 2187 | is-my-json-valid@^2.10.0, is-my-json-valid@^2.12.4: 2188 | version "2.16.0" 2189 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" 2190 | dependencies: 2191 | generate-function "^2.0.0" 2192 | generate-object-property "^1.1.0" 2193 | jsonpointer "^4.0.0" 2194 | xtend "^4.0.0" 2195 | 2196 | is-npm@^1.0.0: 2197 | version "1.0.0" 2198 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 2199 | 2200 | is-number@^2.0.2, is-number@^2.1.0: 2201 | version "2.1.0" 2202 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2203 | dependencies: 2204 | kind-of "^3.0.2" 2205 | 2206 | is-obj@^1.0.0: 2207 | version "1.0.1" 2208 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 2209 | 2210 | is-observable@^0.2.0: 2211 | version "0.2.0" 2212 | resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-0.2.0.tgz#b361311d83c6e5d726cabf5e250b0237106f5ae2" 2213 | dependencies: 2214 | symbol-observable "^0.2.2" 2215 | 2216 | is-path-cwd@^1.0.0: 2217 | version "1.0.0" 2218 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 2219 | 2220 | is-path-in-cwd@^1.0.0: 2221 | version "1.0.0" 2222 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 2223 | dependencies: 2224 | is-path-inside "^1.0.0" 2225 | 2226 | is-path-inside@^1.0.0: 2227 | version "1.0.0" 2228 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 2229 | dependencies: 2230 | path-is-inside "^1.0.1" 2231 | 2232 | is-plain-obj@^1.0.0: 2233 | version "1.1.0" 2234 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 2235 | 2236 | is-posix-bracket@^0.1.0: 2237 | version "0.1.1" 2238 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2239 | 2240 | is-primitive@^2.0.0: 2241 | version "2.0.0" 2242 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2243 | 2244 | is-promise@^2.1.0: 2245 | version "2.1.0" 2246 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 2247 | 2248 | is-property@^1.0.0: 2249 | version "1.0.2" 2250 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 2251 | 2252 | is-redirect@^1.0.0: 2253 | version "1.0.0" 2254 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 2255 | 2256 | is-resolvable@^1.0.0: 2257 | version "1.0.0" 2258 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 2259 | dependencies: 2260 | tryit "^1.0.1" 2261 | 2262 | is-retry-allowed@^1.0.0: 2263 | version "1.1.0" 2264 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 2265 | 2266 | is-stream@^1.0.0, is-stream@^1.1.0: 2267 | version "1.1.0" 2268 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2269 | 2270 | is-typedarray@~1.0.0: 2271 | version "1.0.0" 2272 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2273 | 2274 | is-url@^1.2.1: 2275 | version "1.2.2" 2276 | resolved "https://registry.yarnpkg.com/is-url/-/is-url-1.2.2.tgz#498905a593bf47cc2d9e7f738372bbf7696c7f26" 2277 | 2278 | is-utf8@^0.2.0, is-utf8@^0.2.1: 2279 | version "0.2.1" 2280 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2281 | 2282 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2283 | version "1.0.0" 2284 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2285 | 2286 | isexe@^2.0.0: 2287 | version "2.0.0" 2288 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2289 | 2290 | isobject@^2.0.0: 2291 | version "2.1.0" 2292 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2293 | dependencies: 2294 | isarray "1.0.0" 2295 | 2296 | isstream@~0.1.2: 2297 | version "0.1.2" 2298 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2299 | 2300 | istanbul-lib-coverage@^1.1.0: 2301 | version "1.1.0" 2302 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.0.tgz#caca19decaef3525b5d6331d701f3f3b7ad48528" 2303 | 2304 | istanbul-lib-hook@^1.0.6: 2305 | version "1.0.6" 2306 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.6.tgz#c0866d1e81cf2d5319249510131fc16dee49231f" 2307 | dependencies: 2308 | append-transform "^0.4.0" 2309 | 2310 | istanbul-lib-instrument@^1.7.1: 2311 | version "1.7.1" 2312 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.1.tgz#169e31bc62c778851a99439dd99c3cc12184d360" 2313 | dependencies: 2314 | babel-generator "^6.18.0" 2315 | babel-template "^6.16.0" 2316 | babel-traverse "^6.18.0" 2317 | babel-types "^6.18.0" 2318 | babylon "^6.13.0" 2319 | istanbul-lib-coverage "^1.1.0" 2320 | semver "^5.3.0" 2321 | 2322 | istanbul-lib-report@^1.1.0: 2323 | version "1.1.0" 2324 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.0.tgz#444c4ecca9afa93cf584f56b10f195bf768c0770" 2325 | dependencies: 2326 | istanbul-lib-coverage "^1.1.0" 2327 | mkdirp "^0.5.1" 2328 | path-parse "^1.0.5" 2329 | supports-color "^3.1.2" 2330 | 2331 | istanbul-lib-source-maps@^1.2.0: 2332 | version "1.2.0" 2333 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.0.tgz#8c7706d497e26feeb6af3e0c28fd5b0669598d0e" 2334 | dependencies: 2335 | debug "^2.6.3" 2336 | istanbul-lib-coverage "^1.1.0" 2337 | mkdirp "^0.5.1" 2338 | rimraf "^2.6.1" 2339 | source-map "^0.5.3" 2340 | 2341 | istanbul-reports@^1.1.0: 2342 | version "1.1.0" 2343 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.0.tgz#1ef3b795889219cfb5fad16365f6ce108d5f8c66" 2344 | dependencies: 2345 | handlebars "^4.0.3" 2346 | 2347 | jest-diff@19.0.0, jest-diff@^19.0.0: 2348 | version "19.0.0" 2349 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-19.0.0.tgz#d1563cfc56c8b60232988fbc05d4d16ed90f063c" 2350 | dependencies: 2351 | chalk "^1.1.3" 2352 | diff "^3.0.0" 2353 | jest-matcher-utils "^19.0.0" 2354 | pretty-format "^19.0.0" 2355 | 2356 | jest-file-exists@^19.0.0: 2357 | version "19.0.0" 2358 | resolved "https://registry.yarnpkg.com/jest-file-exists/-/jest-file-exists-19.0.0.tgz#cca2e587a11ec92e24cfeab3f8a94d657f3fceb8" 2359 | 2360 | jest-matcher-utils@^19.0.0: 2361 | version "19.0.0" 2362 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-19.0.0.tgz#5ecd9b63565d2b001f61fbf7ec4c7f537964564d" 2363 | dependencies: 2364 | chalk "^1.1.3" 2365 | pretty-format "^19.0.0" 2366 | 2367 | jest-message-util@^19.0.0: 2368 | version "19.0.0" 2369 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-19.0.0.tgz#721796b89c0e4d761606f9ba8cb828a3b6246416" 2370 | dependencies: 2371 | chalk "^1.1.1" 2372 | micromatch "^2.3.11" 2373 | 2374 | jest-mock@^19.0.0: 2375 | version "19.0.0" 2376 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-19.0.0.tgz#67038641e9607ab2ce08ec4a8cb83aabbc899d01" 2377 | 2378 | jest-snapshot@19.0.2: 2379 | version "19.0.2" 2380 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-19.0.2.tgz#9c1b216214f7187c38bfd5c70b1efab16b0ff50b" 2381 | dependencies: 2382 | chalk "^1.1.3" 2383 | jest-diff "^19.0.0" 2384 | jest-file-exists "^19.0.0" 2385 | jest-matcher-utils "^19.0.0" 2386 | jest-util "^19.0.2" 2387 | natural-compare "^1.4.0" 2388 | pretty-format "^19.0.0" 2389 | 2390 | jest-util@^19.0.2: 2391 | version "19.0.2" 2392 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-19.0.2.tgz#e0a0232a2ab9e6b2b53668bdb3534c2b5977ed41" 2393 | dependencies: 2394 | chalk "^1.1.1" 2395 | graceful-fs "^4.1.6" 2396 | jest-file-exists "^19.0.0" 2397 | jest-message-util "^19.0.0" 2398 | jest-mock "^19.0.0" 2399 | jest-validate "^19.0.2" 2400 | leven "^2.0.0" 2401 | mkdirp "^0.5.1" 2402 | 2403 | jest-validate@^19.0.2: 2404 | version "19.0.2" 2405 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-19.0.2.tgz#dc534df5f1278d5b63df32b14241d4dbf7244c0c" 2406 | dependencies: 2407 | chalk "^1.1.1" 2408 | jest-matcher-utils "^19.0.0" 2409 | leven "^2.0.0" 2410 | pretty-format "^19.0.0" 2411 | 2412 | jodid25519@^1.0.0: 2413 | version "1.0.2" 2414 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 2415 | dependencies: 2416 | jsbn "~0.1.0" 2417 | 2418 | js-tokens@^3.0.0: 2419 | version "3.0.1" 2420 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 2421 | 2422 | js-yaml@3.6.1: 2423 | version "3.6.1" 2424 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.6.1.tgz#6e5fe67d8b205ce4d22fad05b7781e8dadcc4b30" 2425 | dependencies: 2426 | argparse "^1.0.7" 2427 | esprima "^2.6.0" 2428 | 2429 | js-yaml@^3.5.1, js-yaml@^3.8.2: 2430 | version "3.8.3" 2431 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.3.tgz#33a05ec481c850c8875929166fe1beb61c728766" 2432 | dependencies: 2433 | argparse "^1.0.7" 2434 | esprima "^3.1.1" 2435 | 2436 | jsbn@~0.1.0: 2437 | version "0.1.1" 2438 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2439 | 2440 | jsesc@^1.3.0: 2441 | version "1.3.0" 2442 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2443 | 2444 | jsesc@~0.5.0: 2445 | version "0.5.0" 2446 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2447 | 2448 | json-schema@0.2.3: 2449 | version "0.2.3" 2450 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2451 | 2452 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 2453 | version "1.0.1" 2454 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2455 | dependencies: 2456 | jsonify "~0.0.0" 2457 | 2458 | json-stringify-safe@~5.0.1: 2459 | version "5.0.1" 2460 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2461 | 2462 | json5@^0.5.0, json5@^0.5.1: 2463 | version "0.5.1" 2464 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2465 | 2466 | jsonify@~0.0.0: 2467 | version "0.0.0" 2468 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2469 | 2470 | jsonpointer@^4.0.0: 2471 | version "4.0.1" 2472 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 2473 | 2474 | jsprim@^1.2.2: 2475 | version "1.4.0" 2476 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 2477 | dependencies: 2478 | assert-plus "1.0.0" 2479 | extsprintf "1.0.2" 2480 | json-schema "0.2.3" 2481 | verror "1.3.6" 2482 | 2483 | kind-of@^3.0.2: 2484 | version "3.2.0" 2485 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.0.tgz#b58abe4d5c044ad33726a8c1525b48cf891bff07" 2486 | dependencies: 2487 | is-buffer "^1.1.5" 2488 | 2489 | last-line-stream@^1.0.0: 2490 | version "1.0.0" 2491 | resolved "https://registry.yarnpkg.com/last-line-stream/-/last-line-stream-1.0.0.tgz#d1b64d69f86ff24af2d04883a2ceee14520a5600" 2492 | dependencies: 2493 | through2 "^2.0.0" 2494 | 2495 | latest-version@^3.0.0: 2496 | version "3.1.0" 2497 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" 2498 | dependencies: 2499 | package-json "^4.0.0" 2500 | 2501 | lazy-cache@^1.0.3: 2502 | version "1.0.4" 2503 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2504 | 2505 | lazy-req@^2.0.0: 2506 | version "2.0.0" 2507 | resolved "https://registry.yarnpkg.com/lazy-req/-/lazy-req-2.0.0.tgz#c9450a363ecdda2e6f0c70132ad4f37f8f06f2b4" 2508 | 2509 | lcid@^1.0.0: 2510 | version "1.0.0" 2511 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2512 | dependencies: 2513 | invert-kv "^1.0.0" 2514 | 2515 | lcov-parse@0.0.10: 2516 | version "0.0.10" 2517 | resolved "https://registry.yarnpkg.com/lcov-parse/-/lcov-parse-0.0.10.tgz#1b0b8ff9ac9c7889250582b70b71315d9da6d9a3" 2518 | 2519 | leven@^2.0.0: 2520 | version "2.1.0" 2521 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2522 | 2523 | levn@^0.3.0, levn@~0.3.0: 2524 | version "0.3.0" 2525 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2526 | dependencies: 2527 | prelude-ls "~1.1.2" 2528 | type-check "~0.3.2" 2529 | 2530 | load-json-file@^1.0.0: 2531 | version "1.1.0" 2532 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2533 | dependencies: 2534 | graceful-fs "^4.1.2" 2535 | parse-json "^2.2.0" 2536 | pify "^2.0.0" 2537 | pinkie-promise "^2.0.0" 2538 | strip-bom "^2.0.0" 2539 | 2540 | load-json-file@^2.0.0: 2541 | version "2.0.0" 2542 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2543 | dependencies: 2544 | graceful-fs "^4.1.2" 2545 | parse-json "^2.2.0" 2546 | pify "^2.0.0" 2547 | strip-bom "^3.0.0" 2548 | 2549 | locate-path@^2.0.0: 2550 | version "2.0.0" 2551 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2552 | dependencies: 2553 | p-locate "^2.0.0" 2554 | path-exists "^3.0.0" 2555 | 2556 | lodash.clonedeep@^4.5.0: 2557 | version "4.5.0" 2558 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" 2559 | 2560 | lodash.clonedeepwith@^4.5.0: 2561 | version "4.5.0" 2562 | resolved "https://registry.yarnpkg.com/lodash.clonedeepwith/-/lodash.clonedeepwith-4.5.0.tgz#6ee30573a03a1a60d670a62ef33c10cf1afdbdd4" 2563 | 2564 | lodash.cond@^4.3.0: 2565 | version "4.5.2" 2566 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 2567 | 2568 | lodash.debounce@^4.0.3: 2569 | version "4.0.8" 2570 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" 2571 | 2572 | lodash.difference@^4.3.0: 2573 | version "4.5.0" 2574 | resolved "https://registry.yarnpkg.com/lodash.difference/-/lodash.difference-4.5.0.tgz#9ccb4e505d486b91651345772885a2df27fd017c" 2575 | 2576 | lodash.flatten@^4.2.0: 2577 | version "4.4.0" 2578 | resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" 2579 | 2580 | lodash.flattendeep@^4.4.0: 2581 | version "4.4.0" 2582 | resolved "https://registry.yarnpkg.com/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz#fb030917f86a3134e5bc9bec0d69e0013ddfedb2" 2583 | 2584 | lodash.isequal@^4.5.0: 2585 | version "4.5.0" 2586 | resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" 2587 | 2588 | lodash.merge@^4.6.0: 2589 | version "4.6.0" 2590 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.0.tgz#69884ba144ac33fe699737a6086deffadd0f89c5" 2591 | 2592 | lodash@^4.0.0, lodash@^4.13.1, lodash@^4.2.0, lodash@^4.3.0: 2593 | version "4.17.4" 2594 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2595 | 2596 | log-driver@1.2.5: 2597 | version "1.2.5" 2598 | resolved "https://registry.yarnpkg.com/log-driver/-/log-driver-1.2.5.tgz#7ae4ec257302fd790d557cb10c97100d857b0056" 2599 | 2600 | longest@^1.0.1: 2601 | version "1.0.1" 2602 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2603 | 2604 | loose-envify@^1.0.0: 2605 | version "1.3.1" 2606 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2607 | dependencies: 2608 | js-tokens "^3.0.0" 2609 | 2610 | loud-rejection@^1.0.0, loud-rejection@^1.2.0: 2611 | version "1.6.0" 2612 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 2613 | dependencies: 2614 | currently-unhandled "^0.4.1" 2615 | signal-exit "^3.0.0" 2616 | 2617 | lowercase-keys@^1.0.0: 2618 | version "1.0.0" 2619 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 2620 | 2621 | lru-cache@^4.0.0, lru-cache@^4.0.1: 2622 | version "4.0.2" 2623 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e" 2624 | dependencies: 2625 | pseudomap "^1.0.1" 2626 | yallist "^2.0.0" 2627 | 2628 | map-obj@^1.0.0, map-obj@^1.0.1: 2629 | version "1.0.1" 2630 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 2631 | 2632 | matcher@^0.1.1: 2633 | version "0.1.2" 2634 | resolved "https://registry.yarnpkg.com/matcher/-/matcher-0.1.2.tgz#ef20cbde64c24c50cc61af5b83ee0b1b8ff00101" 2635 | dependencies: 2636 | escape-string-regexp "^1.0.4" 2637 | 2638 | md5-hex@^1.2.0, md5-hex@^1.3.0: 2639 | version "1.3.0" 2640 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-1.3.0.tgz#d2c4afe983c4370662179b8cad145219135046c4" 2641 | dependencies: 2642 | md5-o-matic "^0.1.1" 2643 | 2644 | md5-hex@^2.0.0: 2645 | version "2.0.0" 2646 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-2.0.0.tgz#d0588e9f1c74954492ecd24ac0ac6ce997d92e33" 2647 | dependencies: 2648 | md5-o-matic "^0.1.1" 2649 | 2650 | md5-o-matic@^0.1.1: 2651 | version "0.1.1" 2652 | resolved "https://registry.yarnpkg.com/md5-o-matic/-/md5-o-matic-0.1.1.tgz#822bccd65e117c514fab176b25945d54100a03c3" 2653 | 2654 | meow@^3.7.0: 2655 | version "3.7.0" 2656 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 2657 | dependencies: 2658 | camelcase-keys "^2.0.0" 2659 | decamelize "^1.1.2" 2660 | loud-rejection "^1.0.0" 2661 | map-obj "^1.0.1" 2662 | minimist "^1.1.3" 2663 | normalize-package-data "^2.3.4" 2664 | object-assign "^4.0.1" 2665 | read-pkg-up "^1.0.1" 2666 | redent "^1.0.0" 2667 | trim-newlines "^1.0.0" 2668 | 2669 | merge-source-map@^1.0.2: 2670 | version "1.0.3" 2671 | resolved "https://registry.yarnpkg.com/merge-source-map/-/merge-source-map-1.0.3.tgz#da1415f2722a5119db07b14c4f973410863a2abf" 2672 | dependencies: 2673 | source-map "^0.5.3" 2674 | 2675 | micromatch@^2.1.5, micromatch@^2.3.11: 2676 | version "2.3.11" 2677 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2678 | dependencies: 2679 | arr-diff "^2.0.0" 2680 | array-unique "^0.2.1" 2681 | braces "^1.8.2" 2682 | expand-brackets "^0.1.4" 2683 | extglob "^0.3.1" 2684 | filename-regex "^2.0.0" 2685 | is-extglob "^1.0.0" 2686 | is-glob "^2.0.1" 2687 | kind-of "^3.0.2" 2688 | normalize-path "^2.0.1" 2689 | object.omit "^2.0.0" 2690 | parse-glob "^3.0.4" 2691 | regex-cache "^0.4.2" 2692 | 2693 | mime-db@~1.27.0: 2694 | version "1.27.0" 2695 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 2696 | 2697 | mime-types@^2.1.12, mime-types@~2.1.7: 2698 | version "2.1.15" 2699 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 2700 | dependencies: 2701 | mime-db "~1.27.0" 2702 | 2703 | mimic-fn@^1.0.0: 2704 | version "1.1.0" 2705 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 2706 | 2707 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3: 2708 | version "3.0.3" 2709 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 2710 | dependencies: 2711 | brace-expansion "^1.0.0" 2712 | 2713 | minimist@0.0.8, minimist@~0.0.1: 2714 | version "0.0.8" 2715 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2716 | 2717 | minimist@1.2.0, minimist@^1.1.3, minimist@^1.2.0: 2718 | version "1.2.0" 2719 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2720 | 2721 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1: 2722 | version "0.5.1" 2723 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2724 | dependencies: 2725 | minimist "0.0.8" 2726 | 2727 | ms@0.7.1: 2728 | version "0.7.1" 2729 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2730 | 2731 | ms@0.7.3, ms@^0.7.1: 2732 | version "0.7.3" 2733 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.3.tgz#708155a5e44e33f5fd0fc53e81d0d40a91be1fff" 2734 | 2735 | multimatch@^2.1.0: 2736 | version "2.1.0" 2737 | resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" 2738 | dependencies: 2739 | array-differ "^1.0.0" 2740 | array-union "^1.0.1" 2741 | arrify "^1.0.0" 2742 | minimatch "^3.0.0" 2743 | 2744 | mute-stream@0.0.5: 2745 | version "0.0.5" 2746 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 2747 | 2748 | nan@^2.3.0: 2749 | version "2.6.2" 2750 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" 2751 | 2752 | natural-compare@^1.4.0: 2753 | version "1.4.0" 2754 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2755 | 2756 | node-pre-gyp@^0.6.29: 2757 | version "0.6.34" 2758 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.34.tgz#94ad1c798a11d7fc67381b50d47f8cc18d9799f7" 2759 | dependencies: 2760 | mkdirp "^0.5.1" 2761 | nopt "^4.0.1" 2762 | npmlog "^4.0.2" 2763 | rc "^1.1.7" 2764 | request "^2.81.0" 2765 | rimraf "^2.6.1" 2766 | semver "^5.3.0" 2767 | tar "^2.2.1" 2768 | tar-pack "^3.4.0" 2769 | 2770 | nopt@^4.0.1: 2771 | version "4.0.1" 2772 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2773 | dependencies: 2774 | abbrev "1" 2775 | osenv "^0.1.4" 2776 | 2777 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 2778 | version "2.3.8" 2779 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" 2780 | dependencies: 2781 | hosted-git-info "^2.1.4" 2782 | is-builtin-module "^1.0.0" 2783 | semver "2 || 3 || 4 || 5" 2784 | validate-npm-package-license "^3.0.1" 2785 | 2786 | normalize-path@^2.0.1: 2787 | version "2.1.1" 2788 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2789 | dependencies: 2790 | remove-trailing-separator "^1.0.1" 2791 | 2792 | npm-run-path@^1.0.0: 2793 | version "1.0.0" 2794 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-1.0.0.tgz#f5c32bf595fe81ae927daec52e82f8b000ac3c8f" 2795 | dependencies: 2796 | path-key "^1.0.0" 2797 | 2798 | npm-run-path@^2.0.0: 2799 | version "2.0.2" 2800 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2801 | dependencies: 2802 | path-key "^2.0.0" 2803 | 2804 | npmlog@^4.0.2: 2805 | version "4.1.0" 2806 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.0.tgz#dc59bee85f64f00ed424efb2af0783df25d1c0b5" 2807 | dependencies: 2808 | are-we-there-yet "~1.1.2" 2809 | console-control-strings "~1.1.0" 2810 | gauge "~2.7.3" 2811 | set-blocking "~2.0.0" 2812 | 2813 | number-is-nan@^1.0.0: 2814 | version "1.0.1" 2815 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2816 | 2817 | nyc@^10.1.2: 2818 | version "10.3.2" 2819 | resolved "https://registry.yarnpkg.com/nyc/-/nyc-10.3.2.tgz#f27f4d91f2a9db36c24f574ff5c6efff0233de46" 2820 | dependencies: 2821 | archy "^1.0.0" 2822 | arrify "^1.0.1" 2823 | caching-transform "^1.0.0" 2824 | convert-source-map "^1.3.0" 2825 | debug-log "^1.0.1" 2826 | default-require-extensions "^1.0.0" 2827 | find-cache-dir "^0.1.1" 2828 | find-up "^1.1.2" 2829 | foreground-child "^1.5.3" 2830 | glob "^7.0.6" 2831 | istanbul-lib-coverage "^1.1.0" 2832 | istanbul-lib-hook "^1.0.6" 2833 | istanbul-lib-instrument "^1.7.1" 2834 | istanbul-lib-report "^1.1.0" 2835 | istanbul-lib-source-maps "^1.2.0" 2836 | istanbul-reports "^1.1.0" 2837 | md5-hex "^1.2.0" 2838 | merge-source-map "^1.0.2" 2839 | micromatch "^2.3.11" 2840 | mkdirp "^0.5.0" 2841 | resolve-from "^2.0.0" 2842 | rimraf "^2.5.4" 2843 | signal-exit "^3.0.1" 2844 | spawn-wrap "1.2.4" 2845 | test-exclude "^4.1.0" 2846 | yargs "^7.1.0" 2847 | yargs-parser "^5.0.0" 2848 | 2849 | oauth-sign@~0.8.1: 2850 | version "0.8.2" 2851 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2852 | 2853 | object-assign@^4.0.1, object-assign@^4.1.0: 2854 | version "4.1.1" 2855 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2856 | 2857 | object.omit@^2.0.0: 2858 | version "2.0.1" 2859 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2860 | dependencies: 2861 | for-own "^0.1.4" 2862 | is-extendable "^0.1.1" 2863 | 2864 | observable-to-promise@^0.5.0: 2865 | version "0.5.0" 2866 | resolved "https://registry.yarnpkg.com/observable-to-promise/-/observable-to-promise-0.5.0.tgz#c828f0f0dc47e9f86af8a4977c5d55076ce7a91f" 2867 | dependencies: 2868 | is-observable "^0.2.0" 2869 | symbol-observable "^1.0.4" 2870 | 2871 | once@^1.3.0, once@^1.3.3: 2872 | version "1.4.0" 2873 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2874 | dependencies: 2875 | wrappy "1" 2876 | 2877 | onetime@^1.0.0: 2878 | version "1.1.0" 2879 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2880 | 2881 | onetime@^2.0.0: 2882 | version "2.0.1" 2883 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2884 | dependencies: 2885 | mimic-fn "^1.0.0" 2886 | 2887 | opn-cli@^3.0.1: 2888 | version "3.1.0" 2889 | resolved "https://registry.yarnpkg.com/opn-cli/-/opn-cli-3.1.0.tgz#f819ae6cae0b411bd0149b8560fe6c88adad20f8" 2890 | dependencies: 2891 | file-type "^3.6.0" 2892 | get-stdin "^5.0.1" 2893 | meow "^3.7.0" 2894 | opn "^4.0.0" 2895 | temp-write "^2.1.0" 2896 | 2897 | opn@^4.0.0: 2898 | version "4.0.2" 2899 | resolved "https://registry.yarnpkg.com/opn/-/opn-4.0.2.tgz#7abc22e644dff63b0a96d5ab7f2790c0f01abc95" 2900 | dependencies: 2901 | object-assign "^4.0.1" 2902 | pinkie-promise "^2.0.0" 2903 | 2904 | optimist@^0.6.1: 2905 | version "0.6.1" 2906 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2907 | dependencies: 2908 | minimist "~0.0.1" 2909 | wordwrap "~0.0.2" 2910 | 2911 | option-chain@^0.1.0: 2912 | version "0.1.1" 2913 | resolved "https://registry.yarnpkg.com/option-chain/-/option-chain-0.1.1.tgz#e9b811e006f1c0f54802f28295bfc8970f8dcfbd" 2914 | dependencies: 2915 | object-assign "^4.0.1" 2916 | 2917 | optionator@^0.8.2: 2918 | version "0.8.2" 2919 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2920 | dependencies: 2921 | deep-is "~0.1.3" 2922 | fast-levenshtein "~2.0.4" 2923 | levn "~0.3.0" 2924 | prelude-ls "~1.1.2" 2925 | type-check "~0.3.2" 2926 | wordwrap "~1.0.0" 2927 | 2928 | os-homedir@^1.0.0, os-homedir@^1.0.1: 2929 | version "1.0.2" 2930 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2931 | 2932 | os-locale@^1.4.0: 2933 | version "1.4.0" 2934 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2935 | dependencies: 2936 | lcid "^1.0.0" 2937 | 2938 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2939 | version "1.0.2" 2940 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2941 | 2942 | osenv@^0.1.4: 2943 | version "0.1.4" 2944 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2945 | dependencies: 2946 | os-homedir "^1.0.0" 2947 | os-tmpdir "^1.0.0" 2948 | 2949 | output-file-sync@^1.1.0: 2950 | version "1.1.2" 2951 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2952 | dependencies: 2953 | graceful-fs "^4.1.4" 2954 | mkdirp "^0.5.1" 2955 | object-assign "^4.1.0" 2956 | 2957 | p-finally@^1.0.0: 2958 | version "1.0.0" 2959 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2960 | 2961 | p-limit@^1.1.0: 2962 | version "1.1.0" 2963 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2964 | 2965 | p-locate@^2.0.0: 2966 | version "2.0.0" 2967 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2968 | dependencies: 2969 | p-limit "^1.1.0" 2970 | 2971 | package-hash@^1.2.0: 2972 | version "1.2.0" 2973 | resolved "https://registry.yarnpkg.com/package-hash/-/package-hash-1.2.0.tgz#003e56cd57b736a6ed6114cc2b81542672770e44" 2974 | dependencies: 2975 | md5-hex "^1.3.0" 2976 | 2977 | package-hash@^2.0.0: 2978 | version "2.0.0" 2979 | resolved "https://registry.yarnpkg.com/package-hash/-/package-hash-2.0.0.tgz#78ae326c89e05a4d813b68601977af05c00d2a0d" 2980 | dependencies: 2981 | graceful-fs "^4.1.11" 2982 | lodash.flattendeep "^4.4.0" 2983 | md5-hex "^2.0.0" 2984 | release-zalgo "^1.0.0" 2985 | 2986 | package-json@^4.0.0: 2987 | version "4.0.1" 2988 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" 2989 | dependencies: 2990 | got "^6.7.1" 2991 | registry-auth-token "^3.0.1" 2992 | registry-url "^3.0.3" 2993 | semver "^5.1.0" 2994 | 2995 | parse-glob@^3.0.4: 2996 | version "3.0.4" 2997 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2998 | dependencies: 2999 | glob-base "^0.3.0" 3000 | is-dotfile "^1.0.0" 3001 | is-extglob "^1.0.0" 3002 | is-glob "^2.0.0" 3003 | 3004 | parse-json@^2.2.0: 3005 | version "2.2.0" 3006 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 3007 | dependencies: 3008 | error-ex "^1.2.0" 3009 | 3010 | parse-ms@^0.1.0: 3011 | version "0.1.2" 3012 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-0.1.2.tgz#dd3fa25ed6c2efc7bdde12ad9b46c163aa29224e" 3013 | 3014 | parse-ms@^1.0.0: 3015 | version "1.0.1" 3016 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-1.0.1.tgz#56346d4749d78f23430ca0c713850aef91aa361d" 3017 | 3018 | path-exists@^2.0.0: 3019 | version "2.1.0" 3020 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 3021 | dependencies: 3022 | pinkie-promise "^2.0.0" 3023 | 3024 | path-exists@^3.0.0: 3025 | version "3.0.0" 3026 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 3027 | 3028 | path-is-absolute@^1.0.0: 3029 | version "1.0.1" 3030 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 3031 | 3032 | path-is-inside@^1.0.1: 3033 | version "1.0.2" 3034 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 3035 | 3036 | path-key@^1.0.0: 3037 | version "1.0.0" 3038 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-1.0.0.tgz#5d53d578019646c0d68800db4e146e6bdc2ac7af" 3039 | 3040 | path-key@^2.0.0: 3041 | version "2.0.1" 3042 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 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 | path-type@^2.0.0: 3057 | version "2.0.0" 3058 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 3059 | dependencies: 3060 | pify "^2.0.0" 3061 | 3062 | performance-now@^0.2.0: 3063 | version "0.2.0" 3064 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 3065 | 3066 | pify@^2.0.0, pify@^2.2.0: 3067 | version "2.3.0" 3068 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 3069 | 3070 | pinkie-promise@^1.0.0: 3071 | version "1.0.0" 3072 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-1.0.0.tgz#d1da67f5482563bb7cf57f286ae2822ecfbf3670" 3073 | dependencies: 3074 | pinkie "^1.0.0" 3075 | 3076 | pinkie-promise@^2.0.0: 3077 | version "2.0.1" 3078 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 3079 | dependencies: 3080 | pinkie "^2.0.0" 3081 | 3082 | pinkie@^1.0.0: 3083 | version "1.0.0" 3084 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-1.0.0.tgz#5a47f28ba1015d0201bda7bf0f358e47bec8c7e4" 3085 | 3086 | pinkie@^2.0.0: 3087 | version "2.0.4" 3088 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 3089 | 3090 | pkg-conf@^2.0.0: 3091 | version "2.0.0" 3092 | resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-2.0.0.tgz#071c87650403bccfb9c627f58751bfe47c067279" 3093 | dependencies: 3094 | find-up "^2.0.0" 3095 | load-json-file "^2.0.0" 3096 | 3097 | pkg-dir@^1.0.0: 3098 | version "1.0.0" 3099 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 3100 | dependencies: 3101 | find-up "^1.0.0" 3102 | 3103 | pkg-up@^1.0.0: 3104 | version "1.0.0" 3105 | resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-1.0.0.tgz#3e08fb461525c4421624a33b9f7e6d0af5b05a26" 3106 | dependencies: 3107 | find-up "^1.0.0" 3108 | 3109 | plur@^1.0.0: 3110 | version "1.0.0" 3111 | resolved "https://registry.yarnpkg.com/plur/-/plur-1.0.0.tgz#db85c6814f5e5e5a3b49efc28d604fec62975156" 3112 | 3113 | plur@^2.0.0: 3114 | version "2.1.2" 3115 | resolved "https://registry.yarnpkg.com/plur/-/plur-2.1.2.tgz#7482452c1a0f508e3e344eaec312c91c29dc655a" 3116 | dependencies: 3117 | irregular-plurals "^1.0.0" 3118 | 3119 | pluralize@^1.2.1: 3120 | version "1.2.1" 3121 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 3122 | 3123 | postcss@^6.0.0: 3124 | version "6.0.1" 3125 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.1.tgz#000dbd1f8eef217aa368b9a212c5fc40b2a8f3f2" 3126 | dependencies: 3127 | chalk "^1.1.3" 3128 | source-map "^0.5.6" 3129 | supports-color "^3.2.3" 3130 | 3131 | prelude-ls@~1.1.2: 3132 | version "1.1.2" 3133 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 3134 | 3135 | prepend-http@^1.0.1: 3136 | version "1.0.4" 3137 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 3138 | 3139 | preserve@^0.2.0: 3140 | version "0.2.0" 3141 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 3142 | 3143 | pretty-format@^19.0.0: 3144 | version "19.0.0" 3145 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-19.0.0.tgz#56530d32acb98a3fa4851c4e2b9d37b420684c84" 3146 | dependencies: 3147 | ansi-styles "^3.0.0" 3148 | 3149 | pretty-ms@^0.2.1: 3150 | version "0.2.2" 3151 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-0.2.2.tgz#da879a682ff33a37011046f13d627f67c73b84f6" 3152 | dependencies: 3153 | parse-ms "^0.1.0" 3154 | 3155 | pretty-ms@^2.0.0: 3156 | version "2.1.0" 3157 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-2.1.0.tgz#4257c256df3fb0b451d6affaab021884126981dc" 3158 | dependencies: 3159 | is-finite "^1.0.1" 3160 | parse-ms "^1.0.0" 3161 | plur "^1.0.0" 3162 | 3163 | private@^0.1.6: 3164 | version "0.1.7" 3165 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 3166 | 3167 | process-nextick-args@~1.0.6: 3168 | version "1.0.7" 3169 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 3170 | 3171 | progress@^1.1.8: 3172 | version "1.1.8" 3173 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 3174 | 3175 | pseudomap@^1.0.1: 3176 | version "1.0.2" 3177 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 3178 | 3179 | punycode@^1.4.1: 3180 | version "1.4.1" 3181 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 3182 | 3183 | qs@~6.3.0: 3184 | version "6.3.2" 3185 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.2.tgz#e75bd5f6e268122a2a0e0bda630b2550c166502c" 3186 | 3187 | qs@~6.4.0: 3188 | version "6.4.0" 3189 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 3190 | 3191 | randomatic@^1.1.3: 3192 | version "1.1.6" 3193 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 3194 | dependencies: 3195 | is-number "^2.0.2" 3196 | kind-of "^3.0.2" 3197 | 3198 | rc@^1.0.1, rc@^1.1.6, rc@^1.1.7: 3199 | version "1.2.1" 3200 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 3201 | dependencies: 3202 | deep-extend "~0.4.0" 3203 | ini "~1.3.0" 3204 | minimist "^1.2.0" 3205 | strip-json-comments "~2.0.1" 3206 | 3207 | read-pkg-up@^1.0.1: 3208 | version "1.0.1" 3209 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 3210 | dependencies: 3211 | find-up "^1.0.0" 3212 | read-pkg "^1.0.0" 3213 | 3214 | read-pkg-up@^2.0.0: 3215 | version "2.0.0" 3216 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 3217 | dependencies: 3218 | find-up "^2.0.0" 3219 | read-pkg "^2.0.0" 3220 | 3221 | read-pkg@^1.0.0: 3222 | version "1.1.0" 3223 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 3224 | dependencies: 3225 | load-json-file "^1.0.0" 3226 | normalize-package-data "^2.3.2" 3227 | path-type "^1.0.0" 3228 | 3229 | read-pkg@^2.0.0: 3230 | version "2.0.0" 3231 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 3232 | dependencies: 3233 | load-json-file "^2.0.0" 3234 | normalize-package-data "^2.3.2" 3235 | path-type "^2.0.0" 3236 | 3237 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5, readable-stream@^2.2.2: 3238 | version "2.2.9" 3239 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.9.tgz#cf78ec6f4a6d1eb43d26488cac97f042e74b7fc8" 3240 | dependencies: 3241 | buffer-shims "~1.0.0" 3242 | core-util-is "~1.0.0" 3243 | inherits "~2.0.1" 3244 | isarray "~1.0.0" 3245 | process-nextick-args "~1.0.6" 3246 | string_decoder "~1.0.0" 3247 | util-deprecate "~1.0.1" 3248 | 3249 | readdirp@^2.0.0: 3250 | version "2.1.0" 3251 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 3252 | dependencies: 3253 | graceful-fs "^4.1.2" 3254 | minimatch "^3.0.2" 3255 | readable-stream "^2.0.2" 3256 | set-immediate-shim "^1.0.1" 3257 | 3258 | readline2@^1.0.1: 3259 | version "1.0.1" 3260 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 3261 | dependencies: 3262 | code-point-at "^1.0.0" 3263 | is-fullwidth-code-point "^1.0.0" 3264 | mute-stream "0.0.5" 3265 | 3266 | rechoir@^0.6.2: 3267 | version "0.6.2" 3268 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 3269 | dependencies: 3270 | resolve "^1.1.6" 3271 | 3272 | redent@^1.0.0: 3273 | version "1.0.0" 3274 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 3275 | dependencies: 3276 | indent-string "^2.1.0" 3277 | strip-indent "^1.0.1" 3278 | 3279 | regenerate@^1.2.1: 3280 | version "1.3.2" 3281 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 3282 | 3283 | regenerator-runtime@^0.10.0: 3284 | version "0.10.5" 3285 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 3286 | 3287 | regenerator-transform@0.9.11: 3288 | version "0.9.11" 3289 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283" 3290 | dependencies: 3291 | babel-runtime "^6.18.0" 3292 | babel-types "^6.19.0" 3293 | private "^0.1.6" 3294 | 3295 | regex-cache@^0.4.2: 3296 | version "0.4.3" 3297 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 3298 | dependencies: 3299 | is-equal-shallow "^0.1.3" 3300 | is-primitive "^2.0.0" 3301 | 3302 | regexpu-core@^2.0.0: 3303 | version "2.0.0" 3304 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 3305 | dependencies: 3306 | regenerate "^1.2.1" 3307 | regjsgen "^0.2.0" 3308 | regjsparser "^0.1.4" 3309 | 3310 | registry-auth-token@^3.0.1: 3311 | version "3.3.1" 3312 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.1.tgz#fb0d3289ee0d9ada2cbb52af5dfe66cb070d3006" 3313 | dependencies: 3314 | rc "^1.1.6" 3315 | safe-buffer "^5.0.1" 3316 | 3317 | registry-url@^3.0.3: 3318 | version "3.1.0" 3319 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 3320 | dependencies: 3321 | rc "^1.0.1" 3322 | 3323 | regjsgen@^0.2.0: 3324 | version "0.2.0" 3325 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 3326 | 3327 | regjsparser@^0.1.4: 3328 | version "0.1.5" 3329 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 3330 | dependencies: 3331 | jsesc "~0.5.0" 3332 | 3333 | release-zalgo@^1.0.0: 3334 | version "1.0.0" 3335 | resolved "https://registry.yarnpkg.com/release-zalgo/-/release-zalgo-1.0.0.tgz#09700b7e5074329739330e535c5a90fb67851730" 3336 | dependencies: 3337 | es6-error "^4.0.1" 3338 | 3339 | remove-trailing-separator@^1.0.1: 3340 | version "1.0.1" 3341 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 3342 | 3343 | repeat-element@^1.1.2: 3344 | version "1.1.2" 3345 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3346 | 3347 | repeat-string@^1.5.2: 3348 | version "1.6.1" 3349 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3350 | 3351 | repeating@^2.0.0: 3352 | version "2.0.1" 3353 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3354 | dependencies: 3355 | is-finite "^1.0.0" 3356 | 3357 | req-all@^1.0.0: 3358 | version "1.0.0" 3359 | resolved "https://registry.yarnpkg.com/req-all/-/req-all-1.0.0.tgz#d128569451c340b432409c656cf166260cd2628d" 3360 | 3361 | request@2.79.0: 3362 | version "2.79.0" 3363 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 3364 | dependencies: 3365 | aws-sign2 "~0.6.0" 3366 | aws4 "^1.2.1" 3367 | caseless "~0.11.0" 3368 | combined-stream "~1.0.5" 3369 | extend "~3.0.0" 3370 | forever-agent "~0.6.1" 3371 | form-data "~2.1.1" 3372 | har-validator "~2.0.6" 3373 | hawk "~3.1.3" 3374 | http-signature "~1.1.0" 3375 | is-typedarray "~1.0.0" 3376 | isstream "~0.1.2" 3377 | json-stringify-safe "~5.0.1" 3378 | mime-types "~2.1.7" 3379 | oauth-sign "~0.8.1" 3380 | qs "~6.3.0" 3381 | stringstream "~0.0.4" 3382 | tough-cookie "~2.3.0" 3383 | tunnel-agent "~0.4.1" 3384 | uuid "^3.0.0" 3385 | 3386 | request@^2.81.0: 3387 | version "2.81.0" 3388 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 3389 | dependencies: 3390 | aws-sign2 "~0.6.0" 3391 | aws4 "^1.2.1" 3392 | caseless "~0.12.0" 3393 | combined-stream "~1.0.5" 3394 | extend "~3.0.0" 3395 | forever-agent "~0.6.1" 3396 | form-data "~2.1.1" 3397 | har-validator "~4.2.1" 3398 | hawk "~3.1.3" 3399 | http-signature "~1.1.0" 3400 | is-typedarray "~1.0.0" 3401 | isstream "~0.1.2" 3402 | json-stringify-safe "~5.0.1" 3403 | mime-types "~2.1.7" 3404 | oauth-sign "~0.8.1" 3405 | performance-now "^0.2.0" 3406 | qs "~6.4.0" 3407 | safe-buffer "^5.0.1" 3408 | stringstream "~0.0.4" 3409 | tough-cookie "~2.3.0" 3410 | tunnel-agent "^0.6.0" 3411 | uuid "^3.0.0" 3412 | 3413 | require-directory@^2.1.1: 3414 | version "2.1.1" 3415 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3416 | 3417 | require-main-filename@^1.0.1: 3418 | version "1.0.1" 3419 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3420 | 3421 | require-precompiled@^0.1.0: 3422 | version "0.1.0" 3423 | resolved "https://registry.yarnpkg.com/require-precompiled/-/require-precompiled-0.1.0.tgz#5a1b52eb70ebed43eb982e974c85ab59571e56fa" 3424 | 3425 | require-uncached@^1.0.2: 3426 | version "1.0.3" 3427 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 3428 | dependencies: 3429 | caller-path "^0.1.0" 3430 | resolve-from "^1.0.0" 3431 | 3432 | resolve-cwd@^1.0.0: 3433 | version "1.0.0" 3434 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-1.0.0.tgz#4eaeea41ed040d1702457df64a42b2b07d246f9f" 3435 | dependencies: 3436 | resolve-from "^2.0.0" 3437 | 3438 | resolve-from@^1.0.0: 3439 | version "1.0.1" 3440 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 3441 | 3442 | resolve-from@^2.0.0: 3443 | version "2.0.0" 3444 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" 3445 | 3446 | resolve@^1.1.6: 3447 | version "1.3.3" 3448 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" 3449 | dependencies: 3450 | path-parse "^1.0.5" 3451 | 3452 | restore-cursor@^1.0.1: 3453 | version "1.0.1" 3454 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 3455 | dependencies: 3456 | exit-hook "^1.0.0" 3457 | onetime "^1.0.0" 3458 | 3459 | restore-cursor@^2.0.0: 3460 | version "2.0.0" 3461 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 3462 | dependencies: 3463 | onetime "^2.0.0" 3464 | signal-exit "^3.0.2" 3465 | 3466 | right-align@^0.1.1: 3467 | version "0.1.3" 3468 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3469 | dependencies: 3470 | align-text "^0.1.1" 3471 | 3472 | rimraf@2, rimraf@^2.2.8, rimraf@^2.3.3, rimraf@^2.5.1, rimraf@^2.5.4, rimraf@^2.6.1: 3473 | version "2.6.1" 3474 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 3475 | dependencies: 3476 | glob "^7.0.5" 3477 | 3478 | run-async@^0.1.0: 3479 | version "0.1.0" 3480 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 3481 | dependencies: 3482 | once "^1.3.0" 3483 | 3484 | rx-lite@^3.1.2: 3485 | version "3.1.2" 3486 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 3487 | 3488 | safe-buffer@^5.0.1: 3489 | version "5.0.1" 3490 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 3491 | 3492 | semver-diff@^2.0.0: 3493 | version "2.1.0" 3494 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 3495 | dependencies: 3496 | semver "^5.0.3" 3497 | 3498 | "semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0: 3499 | version "5.3.0" 3500 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3501 | 3502 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3503 | version "2.0.0" 3504 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3505 | 3506 | set-immediate-shim@^1.0.1: 3507 | version "1.0.1" 3508 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3509 | 3510 | shelljs@^0.7.5: 3511 | version "0.7.7" 3512 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.7.tgz#b2f5c77ef97148f4b4f6e22682e10bba8667cff1" 3513 | dependencies: 3514 | glob "^7.0.0" 3515 | interpret "^1.0.0" 3516 | rechoir "^0.6.2" 3517 | 3518 | signal-exit@^2.0.0: 3519 | version "2.1.2" 3520 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-2.1.2.tgz#375879b1f92ebc3b334480d038dc546a6d558564" 3521 | 3522 | signal-exit@^3.0.0, signal-exit@^3.0.1, signal-exit@^3.0.2: 3523 | version "3.0.2" 3524 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3525 | 3526 | slash@^1.0.0: 3527 | version "1.0.0" 3528 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3529 | 3530 | slice-ansi@0.0.4: 3531 | version "0.0.4" 3532 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 3533 | 3534 | slide@^1.1.5: 3535 | version "1.1.6" 3536 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 3537 | 3538 | sntp@1.x.x: 3539 | version "1.0.9" 3540 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3541 | dependencies: 3542 | hoek "2.x.x" 3543 | 3544 | sort-keys@^1.1.1, sort-keys@^1.1.2: 3545 | version "1.1.2" 3546 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" 3547 | dependencies: 3548 | is-plain-obj "^1.0.0" 3549 | 3550 | source-map-support@^0.4.0, source-map-support@^0.4.2: 3551 | version "0.4.15" 3552 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" 3553 | dependencies: 3554 | source-map "^0.5.6" 3555 | 3556 | source-map@^0.4.4: 3557 | version "0.4.4" 3558 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3559 | dependencies: 3560 | amdefine ">=0.0.4" 3561 | 3562 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 3563 | version "0.5.6" 3564 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3565 | 3566 | spawn-wrap@1.2.4: 3567 | version "1.2.4" 3568 | resolved "https://registry.yarnpkg.com/spawn-wrap/-/spawn-wrap-1.2.4.tgz#920eb211a769c093eebfbd5b0e7a5d2e68ab2e40" 3569 | dependencies: 3570 | foreground-child "^1.3.3" 3571 | mkdirp "^0.5.0" 3572 | os-homedir "^1.0.1" 3573 | rimraf "^2.3.3" 3574 | signal-exit "^2.0.0" 3575 | which "^1.2.4" 3576 | 3577 | spdx-correct@~1.0.0: 3578 | version "1.0.2" 3579 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3580 | dependencies: 3581 | spdx-license-ids "^1.0.2" 3582 | 3583 | spdx-expression-parse@~1.0.0: 3584 | version "1.0.4" 3585 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3586 | 3587 | spdx-license-ids@^1.0.2: 3588 | version "1.2.2" 3589 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3590 | 3591 | sprintf-js@~1.0.2: 3592 | version "1.0.3" 3593 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3594 | 3595 | sshpk@^1.7.0: 3596 | version "1.13.0" 3597 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.0.tgz#ff2a3e4fd04497555fed97b39a0fd82fafb3a33c" 3598 | dependencies: 3599 | asn1 "~0.2.3" 3600 | assert-plus "^1.0.0" 3601 | dashdash "^1.12.0" 3602 | getpass "^0.1.1" 3603 | optionalDependencies: 3604 | bcrypt-pbkdf "^1.0.0" 3605 | ecc-jsbn "~0.1.1" 3606 | jodid25519 "^1.0.0" 3607 | jsbn "~0.1.0" 3608 | tweetnacl "~0.14.0" 3609 | 3610 | stack-utils@^1.0.0: 3611 | version "1.0.1" 3612 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620" 3613 | 3614 | string-width@^1.0.1, string-width@^1.0.2: 3615 | version "1.0.2" 3616 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3617 | dependencies: 3618 | code-point-at "^1.0.0" 3619 | is-fullwidth-code-point "^1.0.0" 3620 | strip-ansi "^3.0.0" 3621 | 3622 | string-width@^2.0.0: 3623 | version "2.0.0" 3624 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 3625 | dependencies: 3626 | is-fullwidth-code-point "^2.0.0" 3627 | strip-ansi "^3.0.0" 3628 | 3629 | string_decoder@~1.0.0: 3630 | version "1.0.0" 3631 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.0.tgz#f06f41157b664d86069f84bdbdc9b0d8ab281667" 3632 | dependencies: 3633 | buffer-shims "~1.0.0" 3634 | 3635 | stringstream@~0.0.4: 3636 | version "0.0.5" 3637 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3638 | 3639 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3640 | version "3.0.1" 3641 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3642 | dependencies: 3643 | ansi-regex "^2.0.0" 3644 | 3645 | strip-ansi@~0.1.0: 3646 | version "0.1.1" 3647 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-0.1.1.tgz#39e8a98d044d150660abe4a6808acf70bb7bc991" 3648 | 3649 | strip-bom-buf@^1.0.0: 3650 | version "1.0.0" 3651 | resolved "https://registry.yarnpkg.com/strip-bom-buf/-/strip-bom-buf-1.0.0.tgz#1cb45aaf57530f4caf86c7f75179d2c9a51dd572" 3652 | dependencies: 3653 | is-utf8 "^0.2.1" 3654 | 3655 | strip-bom@^2.0.0: 3656 | version "2.0.0" 3657 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3658 | dependencies: 3659 | is-utf8 "^0.2.0" 3660 | 3661 | strip-bom@^3.0.0: 3662 | version "3.0.0" 3663 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3664 | 3665 | strip-eof@^1.0.0: 3666 | version "1.0.0" 3667 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3668 | 3669 | strip-indent@^1.0.1: 3670 | version "1.0.1" 3671 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 3672 | dependencies: 3673 | get-stdin "^4.0.1" 3674 | 3675 | strip-json-comments@~2.0.1: 3676 | version "2.0.1" 3677 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3678 | 3679 | supports-color@^2.0.0: 3680 | version "2.0.0" 3681 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3682 | 3683 | supports-color@^3.1.2, supports-color@^3.2.3: 3684 | version "3.2.3" 3685 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3686 | dependencies: 3687 | has-flag "^1.0.0" 3688 | 3689 | symbol-observable@^0.2.2: 3690 | version "0.2.4" 3691 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-0.2.4.tgz#95a83db26186d6af7e7a18dbd9760a2f86d08f40" 3692 | 3693 | symbol-observable@^1.0.4: 3694 | version "1.0.4" 3695 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" 3696 | 3697 | table@^3.7.8: 3698 | version "3.8.3" 3699 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 3700 | dependencies: 3701 | ajv "^4.7.0" 3702 | ajv-keywords "^1.0.0" 3703 | chalk "^1.1.1" 3704 | lodash "^4.0.0" 3705 | slice-ansi "0.0.4" 3706 | string-width "^2.0.0" 3707 | 3708 | tar-pack@^3.4.0: 3709 | version "3.4.0" 3710 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 3711 | dependencies: 3712 | debug "^2.2.0" 3713 | fstream "^1.0.10" 3714 | fstream-ignore "^1.0.5" 3715 | once "^1.3.3" 3716 | readable-stream "^2.1.4" 3717 | rimraf "^2.5.1" 3718 | tar "^2.2.1" 3719 | uid-number "^0.0.6" 3720 | 3721 | tar@^2.2.1: 3722 | version "2.2.1" 3723 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3724 | dependencies: 3725 | block-stream "*" 3726 | fstream "^1.0.2" 3727 | inherits "2" 3728 | 3729 | temp-write@^2.1.0: 3730 | version "2.1.0" 3731 | resolved "https://registry.yarnpkg.com/temp-write/-/temp-write-2.1.0.tgz#59890918e0ef09d548aaa342f4bd3409d8404e96" 3732 | dependencies: 3733 | graceful-fs "^4.1.2" 3734 | mkdirp "^0.5.0" 3735 | os-tmpdir "^1.0.0" 3736 | pify "^2.2.0" 3737 | pinkie-promise "^2.0.0" 3738 | uuid "^2.0.1" 3739 | 3740 | term-size@^0.1.0: 3741 | version "0.1.1" 3742 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-0.1.1.tgz#87360b96396cab5760963714cda0d0cbeecad9ca" 3743 | dependencies: 3744 | execa "^0.4.0" 3745 | 3746 | test-exclude@^4.1.0: 3747 | version "4.1.0" 3748 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.0.tgz#04ca70b7390dd38c98d4a003a173806ca7991c91" 3749 | dependencies: 3750 | arrify "^1.0.1" 3751 | micromatch "^2.3.11" 3752 | object-assign "^4.1.0" 3753 | read-pkg-up "^1.0.1" 3754 | require-main-filename "^1.0.1" 3755 | 3756 | text-table@^0.2.0, text-table@~0.2.0: 3757 | version "0.2.0" 3758 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3759 | 3760 | through2@^2.0.0: 3761 | version "2.0.3" 3762 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 3763 | dependencies: 3764 | readable-stream "^2.1.5" 3765 | xtend "~4.0.1" 3766 | 3767 | through@^2.3.6: 3768 | version "2.3.8" 3769 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3770 | 3771 | time-require@^0.1.2: 3772 | version "0.1.2" 3773 | resolved "https://registry.yarnpkg.com/time-require/-/time-require-0.1.2.tgz#f9e12cb370fc2605e11404582ba54ef5ca2b2d98" 3774 | dependencies: 3775 | chalk "^0.4.0" 3776 | date-time "^0.1.1" 3777 | pretty-ms "^0.2.1" 3778 | text-table "^0.2.0" 3779 | 3780 | timed-out@^4.0.0: 3781 | version "4.0.1" 3782 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" 3783 | 3784 | to-fast-properties@^1.0.1: 3785 | version "1.0.3" 3786 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3787 | 3788 | tough-cookie@~2.3.0: 3789 | version "2.3.2" 3790 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3791 | dependencies: 3792 | punycode "^1.4.1" 3793 | 3794 | trim-newlines@^1.0.0: 3795 | version "1.0.0" 3796 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 3797 | 3798 | trim-right@^1.0.1: 3799 | version "1.0.1" 3800 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3801 | 3802 | tryit@^1.0.1: 3803 | version "1.0.3" 3804 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3805 | 3806 | tunnel-agent@^0.6.0: 3807 | version "0.6.0" 3808 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3809 | dependencies: 3810 | safe-buffer "^5.0.1" 3811 | 3812 | tunnel-agent@~0.4.1: 3813 | version "0.4.3" 3814 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 3815 | 3816 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3817 | version "0.14.5" 3818 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3819 | 3820 | type-check@~0.3.2: 3821 | version "0.3.2" 3822 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3823 | dependencies: 3824 | prelude-ls "~1.1.2" 3825 | 3826 | type-detect@0.1.1: 3827 | version "0.1.1" 3828 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-0.1.1.tgz#0ba5ec2a885640e470ea4e8505971900dac58822" 3829 | 3830 | type-detect@^1.0.0: 3831 | version "1.0.0" 3832 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-1.0.0.tgz#762217cc06db258ec48908a1298e8b95121e8ea2" 3833 | 3834 | typedarray@^0.0.6: 3835 | version "0.0.6" 3836 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3837 | 3838 | uglify-js@^2.6: 3839 | version "2.8.23" 3840 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.23.tgz#8230dd9783371232d62a7821e2cf9a817270a8a0" 3841 | dependencies: 3842 | source-map "~0.5.1" 3843 | yargs "~3.10.0" 3844 | optionalDependencies: 3845 | uglify-to-browserify "~1.0.0" 3846 | 3847 | uglify-to-browserify@~1.0.0: 3848 | version "1.0.2" 3849 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3850 | 3851 | uid-number@^0.0.6: 3852 | version "0.0.6" 3853 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3854 | 3855 | uid2@0.0.3: 3856 | version "0.0.3" 3857 | resolved "https://registry.yarnpkg.com/uid2/-/uid2-0.0.3.tgz#483126e11774df2f71b8b639dcd799c376162b82" 3858 | 3859 | unique-string@^1.0.0: 3860 | version "1.0.0" 3861 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" 3862 | dependencies: 3863 | crypto-random-string "^1.0.0" 3864 | 3865 | unique-temp-dir@^1.0.0: 3866 | version "1.0.0" 3867 | resolved "https://registry.yarnpkg.com/unique-temp-dir/-/unique-temp-dir-1.0.0.tgz#6dce95b2681ca003eebfb304a415f9cbabcc5385" 3868 | dependencies: 3869 | mkdirp "^0.5.1" 3870 | os-tmpdir "^1.0.1" 3871 | uid2 "0.0.3" 3872 | 3873 | unzip-response@^2.0.1: 3874 | version "2.0.1" 3875 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" 3876 | 3877 | update-notifier@^2.1.0: 3878 | version "2.1.0" 3879 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.1.0.tgz#ec0c1e53536b76647a24b77cb83966d9315123d9" 3880 | dependencies: 3881 | boxen "^1.0.0" 3882 | chalk "^1.0.0" 3883 | configstore "^3.0.0" 3884 | is-npm "^1.0.0" 3885 | latest-version "^3.0.0" 3886 | lazy-req "^2.0.0" 3887 | semver-diff "^2.0.0" 3888 | xdg-basedir "^3.0.0" 3889 | 3890 | url-parse-lax@^1.0.0: 3891 | version "1.0.0" 3892 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 3893 | dependencies: 3894 | prepend-http "^1.0.1" 3895 | 3896 | user-home@^1.1.1: 3897 | version "1.1.1" 3898 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3899 | 3900 | user-home@^2.0.0: 3901 | version "2.0.0" 3902 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 3903 | dependencies: 3904 | os-homedir "^1.0.0" 3905 | 3906 | util-deprecate@~1.0.1: 3907 | version "1.0.2" 3908 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3909 | 3910 | uuid@^2.0.1: 3911 | version "2.0.3" 3912 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 3913 | 3914 | uuid@^3.0.0: 3915 | version "3.0.1" 3916 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 3917 | 3918 | v8flags@^2.0.10: 3919 | version "2.1.1" 3920 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 3921 | dependencies: 3922 | user-home "^1.1.1" 3923 | 3924 | validate-npm-package-license@^3.0.1: 3925 | version "3.0.1" 3926 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3927 | dependencies: 3928 | spdx-correct "~1.0.0" 3929 | spdx-expression-parse "~1.0.0" 3930 | 3931 | verror@1.3.6: 3932 | version "1.3.6" 3933 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3934 | dependencies: 3935 | extsprintf "1.0.2" 3936 | 3937 | which-module@^1.0.0: 3938 | version "1.0.0" 3939 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3940 | 3941 | which@^1.2.4, which@^1.2.8, which@^1.2.9: 3942 | version "1.2.14" 3943 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 3944 | dependencies: 3945 | isexe "^2.0.0" 3946 | 3947 | wide-align@^1.1.0: 3948 | version "1.1.0" 3949 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 3950 | dependencies: 3951 | string-width "^1.0.1" 3952 | 3953 | widest-line@^1.0.0: 3954 | version "1.0.0" 3955 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-1.0.0.tgz#0c09c85c2a94683d0d7eaf8ee097d564bf0e105c" 3956 | dependencies: 3957 | string-width "^1.0.1" 3958 | 3959 | window-size@0.1.0: 3960 | version "0.1.0" 3961 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3962 | 3963 | wordwrap@0.0.2: 3964 | version "0.0.2" 3965 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3966 | 3967 | wordwrap@~0.0.2: 3968 | version "0.0.3" 3969 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3970 | 3971 | wordwrap@~1.0.0: 3972 | version "1.0.0" 3973 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3974 | 3975 | wrap-ansi@^2.0.0: 3976 | version "2.1.0" 3977 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3978 | dependencies: 3979 | string-width "^1.0.1" 3980 | strip-ansi "^3.0.1" 3981 | 3982 | wrappy@1: 3983 | version "1.0.2" 3984 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3985 | 3986 | write-file-atomic@^1.1.2, write-file-atomic@^1.1.4: 3987 | version "1.3.4" 3988 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f" 3989 | dependencies: 3990 | graceful-fs "^4.1.11" 3991 | imurmurhash "^0.1.4" 3992 | slide "^1.1.5" 3993 | 3994 | write-json-file@^2.0.0: 3995 | version "2.0.0" 3996 | resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-2.0.0.tgz#0eaec981fcf9288dbc2806cbd26e06ab9bdca4ed" 3997 | dependencies: 3998 | graceful-fs "^4.1.2" 3999 | mkdirp "^0.5.1" 4000 | pify "^2.0.0" 4001 | sort-keys "^1.1.1" 4002 | write-file-atomic "^1.1.2" 4003 | 4004 | write-pkg@^2.0.0: 4005 | version "2.1.0" 4006 | resolved "https://registry.yarnpkg.com/write-pkg/-/write-pkg-2.1.0.tgz#353aa44c39c48c21440f5c08ce6abd46141c9c08" 4007 | dependencies: 4008 | sort-keys "^1.1.2" 4009 | write-json-file "^2.0.0" 4010 | 4011 | write@^0.2.1: 4012 | version "0.2.1" 4013 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 4014 | dependencies: 4015 | mkdirp "^0.5.1" 4016 | 4017 | xdg-basedir@^3.0.0: 4018 | version "3.0.0" 4019 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" 4020 | 4021 | xtend@^4.0.0, xtend@~4.0.1: 4022 | version "4.0.1" 4023 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 4024 | 4025 | y18n@^3.2.1: 4026 | version "3.2.1" 4027 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 4028 | 4029 | yallist@^2.0.0: 4030 | version "2.1.2" 4031 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 4032 | 4033 | yargs-parser@^5.0.0: 4034 | version "5.0.0" 4035 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" 4036 | dependencies: 4037 | camelcase "^3.0.0" 4038 | 4039 | yargs@^7.1.0: 4040 | version "7.1.0" 4041 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" 4042 | dependencies: 4043 | camelcase "^3.0.0" 4044 | cliui "^3.2.0" 4045 | decamelize "^1.1.1" 4046 | get-caller-file "^1.0.1" 4047 | os-locale "^1.4.0" 4048 | read-pkg-up "^1.0.1" 4049 | require-directory "^2.1.1" 4050 | require-main-filename "^1.0.1" 4051 | set-blocking "^2.0.0" 4052 | string-width "^1.0.2" 4053 | which-module "^1.0.0" 4054 | y18n "^3.2.1" 4055 | yargs-parser "^5.0.0" 4056 | 4057 | yargs@~3.10.0: 4058 | version "3.10.0" 4059 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 4060 | dependencies: 4061 | camelcase "^1.0.2" 4062 | cliui "^2.1.0" 4063 | decamelize "^1.0.0" 4064 | window-size "0.1.0" 4065 | --------------------------------------------------------------------------------