├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── index.m.js ├── package.json ├── rollup.config.js ├── test.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 2 6 | end_of_line = lf 7 | charset = utf-8 8 | trim_trailing_whitespace = true 9 | insert_final_newline = true 10 | 11 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- 1 | name: build 2 | 3 | on: 4 | pull_request: 5 | paths-ignore: 6 | - "**.md" 7 | push: 8 | branches: 9 | - master 10 | paths-ignore: 11 | - "**.md" 12 | 13 | jobs: 14 | build-test: 15 | runs-on: ubuntu-latest 16 | strategy: 17 | matrix: 18 | node: ["10", "12", "14", "15"] 19 | steps: 20 | - uses: actions/checkout@v2 21 | - name: Setup node ${{ matrix.node }} 22 | uses: actions/setup-node@v2 23 | with: 24 | node-version: ${{ matrix.node }} 25 | - run: yarn install 26 | - run: yarn run test 27 | - run: yarn run coverage 28 | - uses: coverallsapp/github-action@master 29 | with: 30 | github-token: ${{ secrets.GITHUB_TOKEN }} 31 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | name: publish 2 | 3 | on: 4 | push: 5 | tags: 6 | - "v*" 7 | 8 | jobs: 9 | publish: 10 | runs-on: ubuntu-latest 11 | steps: 12 | - uses: actions/checkout@v2 13 | - uses: actions/setup-node@v2 14 | with: 15 | node-version: "12.x" 16 | registry-url: "https://registry.npmjs.org" 17 | - run: yarn install 18 | - run: yarn publish 19 | env: 20 | NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} 21 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | npm-debug.log 4 | *.sublime* 5 | .idea 6 | .nyc_output 7 | coverage/ 8 | /index.js 9 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .gitignore 2 | .editorconfig 3 | *.sublime* 4 | 5 | node_modules/ 6 | npm-debug.log 7 | 8 | test.js 9 | .travis.yml 10 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | 2 | ## [1.2.2](https://github.com/leodido/postcss-clean/compare/v1.2.1...v1.2.2) (2021-02-07) 3 | 4 | 5 | ### Build 6 | 7 | * Refinements to the coverage npm script ([56650c894c4938b8c4b1a6eb2e1e212a6b2feab0](https://github.com/leodido/postcss-clean/commit/56650c894c4938b8c4b1a6eb2e1e212a6b2feab0)) 8 | 9 | ### CI 10 | 11 | * Remove TravisCI ([d5536b5c343aed7f7ba9f89f936ec5172f32d7fe](https://github.com/leodido/postcss-clean/commit/d5536b5c343aed7f7ba9f89f936ec5172f32d7fe)) 12 | * Setup GitHub Actions ([a65c975930fab0b0dae12b4431092b574dbd2ac8](https://github.com/leodido/postcss-clean/commit/a65c975930fab0b0dae12b4431092b574dbd2ac8)) 13 | 14 | ### Docs 15 | 16 | * Github Actions badge ([720324e8f6987cca83f2607aac7a3133b056a43b](https://github.com/leodido/postcss-clean/commit/720324e8f6987cca83f2607aac7a3133b056a43b)) 17 | 18 | ### Update 19 | 20 | * Test disabling tidySelector option ([0cb1badab167447f96ce30fc94626e08c892f7ba](https://github.com/leodido/postcss-clean/commit/0cb1badab167447f96ce30fc94626e08c892f7ba)) 21 | 22 | ### Upgrade 23 | 24 | * Bump clean-css from 4.1.8 to 4.1.11 ([7d584743172b710c3b8c48cc0e92539123c019c1](https://github.com/leodido/postcss-clean/commit/7d584743172b710c3b8c48cc0e92539123c019c1)) 25 | * Bump debug from 2.6.8 to 2.6.9 ([c86face5f3aa84bd3616159123a77a54bc6ca862](https://github.com/leodido/postcss-clean/commit/c86face5f3aa84bd3616159123a77a54bc6ca862)) 26 | * Bump extend from 3.0.1 to 3.0.2 ([c7b74f5eccbbb2cae702f7caffcd71b9dba35df2](https://github.com/leodido/postcss-clean/commit/c7b74f5eccbbb2cae702f7caffcd71b9dba35df2)) 27 | * Bump lodash.template from 4.4.0 to 4.5.0 ([b5c7a88c3c36f3998f708277da9d0a7df5c3e1bc](https://github.com/leodido/postcss-clean/commit/b5c7a88c3c36f3998f708277da9d0a7df5c3e1bc)) 28 | * Bump sshpk from 1.13.0 to 1.16.1 ([6485b976aa7ad581d4a3d196c11418bf5b53a67c](https://github.com/leodido/postcss-clean/commit/6485b976aa7ad581d4a3d196c11418bf5b53a67c)) 29 | * Bump stringstream from 0.0.5 to 0.0.6 ([635b75d0d552f8daca2ae4f07d9e1523791522d7](https://github.com/leodido/postcss-clean/commit/635b75d0d552f8daca2ae4f07d9e1523791522d7)) 30 | * Bump tar from 2.2.1 to 2.2.2 ([5d106da94193ac76452b92531873f5847e90bd86](https://github.com/leodido/postcss-clean/commit/5d106da94193ac76452b92531873f5847e90bd86)) 31 | 32 | 33 | 34 | 35 | ## [1.2.1](https://github.com/leodido/postcss-clean/compare/v1.1.0...v1.2.1) (2021-01-22) 36 | 37 | 38 | ### CI 39 | 40 | * Do not consider the develop branch when releasing ([be9fac675cd44688f715c785083d876568fd63c3](https://github.com/leodido/postcss-clean/commit/be9fac675cd44688f715c785083d876568fd63c3)) 41 | * Upgrade node versions into TravisCI YAML file ([9f01583ccfbf180d6f852f08e806401ea7e8d8d6](https://github.com/leodido/postcss-clean/commit/9f01583ccfbf180d6f852f08e806401ea7e8d8d6)) 42 | 43 | ### Build 44 | 45 | * Bump handlebars from 4.0.10 to 4.7.6 ([ed39c7b69fb1adb316f29b86d327e8e2ce58f9c5](https://github.com/leodido/postcss-clean/commit/ed39c7b69fb1adb316f29b86d327e8e2ce58f9c5)) 46 | * Bump ini from 1.3.4 to 1.3.8 ([20413ba38f575ad27de922184acbd55c38116dce](https://github.com/leodido/postcss-clean/commit/20413ba38f575ad27de922184acbd55c38116dce)) 47 | * Bump is-my-json-valid from 2.16.0 to 2.20.5 ([9fb6dceaf3f821d94a30dcb198173a1390618486](https://github.com/leodido/postcss-clean/commit/9fb6dceaf3f821d94a30dcb198173a1390618486)) 48 | * Bump lodash from 4.17.4 to 4.17.20 ([af9a1a66d8ce9e1bc9e7d302d2628be53f418d6a](https://github.com/leodido/postcss-clean/commit/af9a1a66d8ce9e1bc9e7d302d2628be53f418d6a)) 49 | 50 | 51 | 52 | 53 | # [1.1.0](https://github.com/leodido/postcss-clean/compare/v1.0.4...v1.1.0) (2017-09-15) 54 | 55 | 56 | ### Upgrade 57 | 58 | * Dependencies upgraded to support clean-css versions >=4.0.0 and <5.0.0 ([f526ae72b3e90a2a1557c083708ccd03a8bf5506](https://github.com/leodido/postcss-clean/commit/f526ae72b3e90a2a1557c083708ccd03a8bf5506)), closes [#26](https://github.com/leodido/postcss-clean/issues/26) 59 | * Dependencies upgraded to support postcss versions >=6.0.0 and <7.0.0 ([0ecf2666296a09081c24df04f2c594f01f6c9915](https://github.com/leodido/postcss-clean/commit/0ecf2666296a09081c24df04f2c594f01f6c9915)) 60 | 61 | 62 | 63 | 64 | ## [1.0.4](https://github.com/leodido/postcss-clean/compare/v1.0.3...v1.0.4) (2017-09-15) 65 | 66 | 67 | ### Upgrade 68 | 69 | * Dependencies lock file ([8fa0aed770f4923f2cfea9e18735742c9041a0b0](https://github.com/leodido/postcss-clean/commit/8fa0aed770f4923f2cfea9e18735742c9041a0b0)) 70 | * Use caret ranges for broader dependency matching ([5e9b76128a9171d5e8a2cbdddbd30bcdf8dc74dd](https://github.com/leodido/postcss-clean/commit/5e9b76128a9171d5e8a2cbdddbd30bcdf8dc74dd)) 71 | 72 | 73 | 74 | 75 | ## [1.0.3](https://github.com/leodido/postcss-clean/compare/v1.0.2...v1.0.3) (2017-07-06) 76 | 77 | 78 | ### Build 79 | 80 | * Also node 7 in the test matrix ([cd67df681de261bfaaf01e500062da861be459c1](https://github.com/leodido/postcss-clean/commit/cd67df681de261bfaaf01e500062da861be459c1)) 81 | * Automation of the releasing process ([fc20365dbea58d543d57bc61dd7b40668313083e](https://github.com/leodido/postcss-clean/commit/fc20365dbea58d543d57bc61dd7b40668313083e)) 82 | * Destructuring within the configuration file is not possible for node <= 5 ([1e4765f1c3157e34edf93b328c5adfb8d039cd33](https://github.com/leodido/postcss-clean/commit/1e4765f1c3157e34edf93b328c5adfb8d039cd33)) 83 | * Switch to Buble ([b459d2959973f02ec14047c286fe0bcaf4d7ed49](https://github.com/leodido/postcss-clean/commit/b459d2959973f02ec14047c286fe0bcaf4d7ed49)) 84 | 85 | ### Docs 86 | 87 | * Monthly downloads badge ([3b9514f10e03572101d63dee292cb6ed4126dc13](https://github.com/leodido/postcss-clean/commit/3b9514f10e03572101d63dee292cb6ed4126dc13)) 88 | 89 | ### Fix 90 | 91 | * Now using the "module" field to point to the ES module ([a0870fdbee292f2bd1064b2a9d723faa6384aae8](https://github.com/leodido/postcss-clean/commit/a0870fdbee292f2bd1064b2a9d723faa6384aae8)) 92 | 93 | ### Update 94 | 95 | * Support node 6 also ([233bb35f8f89c54b30f24c0d7c2d9fa6a1b28689](https://github.com/leodido/postcss-clean/commit/233bb35f8f89c54b30f24c0d7c2d9fa6a1b28689)) 96 | * Test suite improvements ([c278d39122732829a1c1925037486c0f67ea54fe](https://github.com/leodido/postcss-clean/commit/c278d39122732829a1c1925037486c0f67ea54fe)) 97 | 98 | ### Upgrade 99 | 100 | * Buble rather than Babel, plus new AVA ([5531704f41635da38fcf3996cb06379523b8dac6](https://github.com/leodido/postcss-clean/commit/5531704f41635da38fcf3996cb06379523b8dac6)) 101 | * Deprecating node 0.12 ([93f8efd6f8a041caad36c1e22b2c112e7caeddcd](https://github.com/leodido/postcss-clean/commit/93f8efd6f8a041caad36c1e22b2c112e7caeddcd)) 102 | * Minimum node version is now 4 ([8a0ebe4bb3ccbf2589b5f6cacf656da01a649792](https://github.com/leodido/postcss-clean/commit/8a0ebe4bb3ccbf2589b5f6cacf656da01a649792)) 103 | * No need to have a dependency to parse the package JSON ([fd08bff6254e201b4d088bdfcb0d44d8cad856ad](https://github.com/leodido/postcss-clean/commit/fd08bff6254e201b4d088bdfcb0d44d8cad856ad)) 104 | 105 | 106 | 107 | 108 | ## [1.0.2](https://github.com/leodido/postcss-clean/compare/v1.0.1...v1.0.2) (2016-05-05) 109 | 110 | 111 | ### Build 112 | 113 | * Dependency constraints relaxed ([75bc817330f414e46e5aa8a9ee06956d596b1368](https://github.com/leodido/postcss-clean/commit/75bc817330f414e46e5aa8a9ee06956d596b1368)) 114 | 115 | ### Docs 116 | 117 | * Coverage badge ([cc8c954f20019f563f19cad05a94bdf67a2f3ada](https://github.com/leodido/postcss-clean/commit/cc8c954f20019f563f19cad05a94bdf67a2f3ada)) 118 | 119 | ### Update 120 | 121 | * Node 5 ([862d66d412cd86eccf70ebb6a3c7092500e34cf4](https://github.com/leodido/postcss-clean/commit/862d66d412cd86eccf70ebb6a3c7092500e34cf4)) 122 | 123 | 124 | 125 | 126 | ## 1.0.1 (2016-04-19) 127 | 128 | 129 | ### Build 130 | 131 | * Improvements ([bc6d2414a3208dde865086309a565a3f88ddf79e](https://github.com/leodido/postcss-clean/commit/bc6d2414a3208dde865086309a565a3f88ddf79e)), closes [#3](https://github.com/leodido/postcss-clean/issues/3) [#4](https://github.com/leodido/postcss-clean/issues/4) [#6](https://github.com/leodido/postcss-clean/issues/6) 132 | * Node 0.12.x support ([297cd0e23efb3bc3ce3befd3e3c3e43a497052cc](https://github.com/leodido/postcss-clean/commit/297cd0e23efb3bc3ce3befd3e3c3e43a497052cc)), closes [#8](https://github.com/leodido/postcss-clean/issues/8) 133 | * Send text lcov to coveralls ([68de5f2f00d8113ae36e97e2aebd7b7388488ff0](https://github.com/leodido/postcss-clean/commit/68de5f2f00d8113ae36e97e2aebd7b7388488ff0)), closes [#9](https://github.com/leodido/postcss-clean/issues/9) 134 | 135 | ### Fix 136 | 137 | * Field jsnext:main ([629439f152523bc342a2210fcd0e809929eba65a](https://github.com/leodido/postcss-clean/commit/629439f152523bc342a2210fcd0e809929eba65a)) 138 | 139 | ### New 140 | 141 | * Automate changelog generation ([c504c5b051034be88391639d49061dad1952245e](https://github.com/leodido/postcss-clean/commit/c504c5b051034be88391639d49061dad1952245e)), closes [#5](https://github.com/leodido/postcss-clean/issues/5) 142 | * Code coverage plus coveralls integration ([8c9993d8e5f7cdc86986d593df5049a6a236ac6f](https://github.com/leodido/postcss-clean/commit/8c9993d8e5f7cdc86986d593df5049a6a236ac6f)), closes [#7](https://github.com/leodido/postcss-clean/issues/7) 143 | 144 | ### Update 145 | 146 | * Git dotfiles ([3d7d0e629f920c64907c05deedfedbc30071fa2f](https://github.com/leodido/postcss-clean/commit/3d7d0e629f920c64907c05deedfedbc30071fa2f)) 147 | * Use shortcut into package.json scripts section ([562e36bf63ff272efe4d18e02e70b0a0294c8298](https://github.com/leodido/postcss-clean/commit/562e36bf63ff272efe4d18e02e70b0a0294c8298)) 148 | 149 | 150 | 151 | 152 | ## 1.0.0 (2016-03-06) 153 | 154 | * Initial release 155 | * Full support of clean-css functionalities 156 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright 2016 Leonardo Di Donato 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # [postcss][postcss]-clean ![GitHub Workflow Status (branch)](https://img.shields.io/github/workflow/status/leodido/postcss-clean/build/master?style=flat-square) [![NPM](https://img.shields.io/npm/v/postcss-clean.svg?style=flat-square)][npm] [![Coveralls branch](https://img.shields.io/coveralls/leodido/postcss-clean/master.svg?style=flat-square)](https://coveralls.io/r/leodido/postcss-clean?branch=master) [![NPM Monthly Downloads](https://img.shields.io/npm/dm/postcss-clean.svg?style=flat-square)][npm] 2 | 3 | > PostCss plugin to minify your CSS 4 | 5 | Compression will be handled by **[clean-css][clean-css]**, which according to [this benchmark](http://goalsmashers.github.io/css-minification-benchmark) is one of the top (probably the best) libraries for minifying CSS. 6 | 7 | ## Install 8 | 9 | With [npm](https://npmjs.org/package/postcss-clean) do: 10 | 11 | ``` 12 | npm install postcss-clean --save 13 | ``` 14 | 15 | ## Example 16 | 17 | ### Input 18 | 19 | ```css 20 | .try { 21 | color: #607d8b; 22 | width: 32px; 23 | } 24 | ``` 25 | 26 | ### Output 27 | 28 | ```css 29 | .try{color:#607d8b;width:32px} 30 | ``` 31 | 32 | ### Input 33 | 34 | ```css 35 | :host { 36 | display: block; 37 | } 38 | 39 | :host ::content { 40 | & > * { 41 | color: var(--primary-color); 42 | } 43 | } 44 | ``` 45 | 46 | ### Output 47 | 48 | ```css 49 | :host{display:block}:host ::content>*{color:var(--my-color)} 50 | ``` 51 | 52 | **Note** this example assumes you combined postcss-clean with other plugins (e.g. [postcss-nesting][postcss-nesting]). 53 | 54 | ## API 55 | 56 | ### `clean([options])` 57 | 58 | Note that **postcss-clean** is an asynchronous processor. It cannot be used like this: 59 | 60 | ```javascript 61 | var out = postcss([ clean() ]).process(css).css; 62 | console.log(out) 63 | ``` 64 | 65 | Instead make sure your runner uses the async APIs: 66 | 67 | ```javascript 68 | postcss([ clean() ]).process(css).then(function(out) { 69 | console.log(out.css); 70 | }); 71 | ``` 72 | 73 | #### options 74 | 75 | It simply proxies the [clean-css][clean-css] options. See the complete list of options [here][clean-css-opts]. 76 | 77 | ## Usage 78 | 79 | See the [PostCSS documentation](https://github.com/postcss/postcss#usage) for examples for your environment. 80 | 81 | ## Contributing 82 | 83 | Pull requests are welcome. 84 | 85 | ## License 86 | 87 | MIT © Leonardo Di Donato 88 | 89 | --- 90 | 91 | [![Analytics](https://ga-beacon.appspot.com/UA-49657176-1/postcss-clean?flat)](https://github.com/igrigorik/ga-beacon) 92 | 93 | [clean-css]: http://github.com/jakubpawlowicz/clean-css 94 | [clean-css-opts]: https://github.com/jakubpawlowicz/clean-css/tree/3.4#how-to-use-clean-css-api 95 | [ci]: https://travis-ci.org/leodido/postcss-clean 96 | [deps]: https://gemnasium.com/leodido/postcss-clean 97 | [postcss]: https://github.com/postcss/postcss 98 | [postcss-nesting]: https://github.com/jonathantneal/postcss-nesting 99 | [npm]: https://www.npmjs.com/package/postcss-clean 100 | -------------------------------------------------------------------------------- /index.m.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | import postcss from 'postcss' 4 | import CleanCss from 'clean-css' 5 | 6 | const initializer = (opts = {}) => { 7 | const cleancss = new CleanCss(opts) 8 | 9 | return (css, res) => { 10 | return new Promise((resolve, reject) => { 11 | cleancss.minify(css.toString(), (err, min) => { 12 | if (err) { 13 | return reject(new Error(err.join('\n'))) 14 | } 15 | 16 | for (let w of min.warnings) { 17 | res.warn(w) 18 | } 19 | 20 | res.root = postcss.parse(min.styles) 21 | resolve() 22 | }) 23 | }) 24 | } 25 | } 26 | 27 | export default postcss.plugin('clean', initializer) 28 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "postcss-clean", 3 | "version": "1.2.2", 4 | "description": "PostCSS plugin to minify CSS with clean-css", 5 | "author": { 6 | "name": "Leo Di Donato", 7 | "email": "leodidonato@gmail.com", 8 | "url": "http://git.io/leodido" 9 | }, 10 | "engines": { 11 | "node": ">=4.0.0" 12 | }, 13 | "license": "MIT", 14 | "repository": "leodido/postcss-clean", 15 | "bugs": { 16 | "url": "https://github.com/leodido/postcss-clean/issues" 17 | }, 18 | "homepage": "https://github.com/leodido/postcss-clean", 19 | "main": "index.js", 20 | "module": "index.m.js", 21 | "dependencies": { 22 | "clean-css": "^4.x", 23 | "postcss": "^6.x" 24 | }, 25 | "devDependencies": { 26 | "ava": "^0.18", 27 | "babel-eslint": "^6.0", 28 | "buble": "^0.15", 29 | "conventional-changelog-cli": "^1.1", 30 | "coveralls": "^2.11", 31 | "eslint": "^2.8", 32 | "eslint-config-defaults": "^9.0", 33 | "nyc": "^6.4", 34 | "rollup": "^0.41", 35 | "rollup-plugin-buble": "^0.15" 36 | }, 37 | "scripts": { 38 | "clean": "rm -f $npm_package_main *.log && rm -rf coverage .nyc_output", 39 | "lint": "eslint $npm_package_jsnext:main test.js rollup.config.js", 40 | "develop": "BUILD_ENV=dev rollup -c rollup.config.js", 41 | "distrib": "rollup -c rollup.config.js", 42 | "pretest": "npm run lint && npm run develop", 43 | "test": "nyc ava --verbose --serial", 44 | "coverage": "nyc report --cache --reporter=text-summary --reporter=lcov", 45 | "report": "nyc report --reporter=html", 46 | "prepublish": "npm run distrib", 47 | "changelog": "conventional-changelog -p eslint -i CHANGELOG.md -s", 48 | "changelog:edit": "$(git var GIT_EDITOR) CHANGELOG.md", 49 | "from:master": "[ $(git symbolic-ref -q HEAD --short) = \"master\" ]", 50 | "preversion": "npm run from:master && npm run distrib", 51 | "version": "npm run changelog && npm run changelog:edit && git add CHANGELOG.md", 52 | "postversion": "git push && git push --tags" 53 | }, 54 | "eslintConfig": { 55 | "extends": "eslint-config-defaults", 56 | "parser": "babel-eslint", 57 | "parserOptions": { 58 | "ecmaVersion": 6, 59 | "sourceType": "module" 60 | }, 61 | "globals": { 62 | "Promise": true 63 | }, 64 | "env": { 65 | "es6": true 66 | } 67 | }, 68 | "keywords": [ 69 | "postcss", 70 | "css", 71 | "postcss-plugin", 72 | "clean-css", 73 | "minifier", 74 | "minify", 75 | "minification", 76 | "optimisation", 77 | "optimization", 78 | "optimise", 79 | "optimize", 80 | "compress", 81 | "compression" 82 | ] 83 | } 84 | -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- 1 | /* global process */ 2 | 3 | import buble from 'rollup-plugin-buble' 4 | import { readFileSync } from 'fs'; 5 | 6 | const inDevelopment = () => 7 | process.env.BUILD_ENV && 8 | ['development', 'dev', 'develop'].indexOf(process.env.BUILD_ENV.toLowerCase()) >= 0 9 | 10 | 11 | const pkg = JSON.parse(readFileSync('./package.json', 'utf-8')) 12 | 13 | const rollupOpts = { 14 | entry: pkg.module, 15 | format: 'cjs', 16 | external: Object.keys(pkg.dependencies), 17 | plugins: [ 18 | buble({ 19 | include: pkg.module, 20 | transforms: { dangerousForOf: true } 21 | }) 22 | ], 23 | dest: pkg.main 24 | } 25 | 26 | if (inDevelopment()) { 27 | rollupOpts.sourceMap = 'inline' 28 | } 29 | 30 | export default rollupOpts 31 | -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- 1 | import test from 'ava'; 2 | import postcss from 'postcss'; 3 | import plugin from './'; 4 | import CleanCss from 'clean-css' 5 | 6 | // Test that postcss plugin works like clean-css 7 | 8 | async function arun(t, input, opts = {}) { 9 | const result = await postcss([plugin(opts)]).process(input) 10 | const output = new CleanCss(opts).minify(input).styles 11 | 12 | t.deepEqual(result.css, output) 13 | t.deepEqual(result.warnings().length, 0); 14 | } 15 | 16 | const colors = [ 17 | '#f0f8ff', 18 | '#faebd7', 19 | '#0ff', 20 | '#7fffd4', 21 | '#f0ffff', 22 | '#f5f5dc', 23 | '#ffe4c4', 24 | '#000', 25 | '#ffebcd', 26 | '#00f', 27 | '#8a2be2', 28 | '#a52a2a', 29 | '#deb887', 30 | '#5f9ea0', 31 | '#7fff00', 32 | '#d2691e', 33 | '#ff7f50', 34 | '#6495ed', 35 | '#fff8dc', 36 | '#dc143c', 37 | '#0ff', 38 | '#00008b', 39 | '#008b8b', 40 | '#b8860b', 41 | '#a9a9a9', 42 | '#006400', 43 | '#a9a9a9', 44 | '#bdb76b', 45 | '#8b008b', 46 | '#556b2f', 47 | '#ff8c00', 48 | '#9932cc', 49 | '#8b0000', 50 | '#e9967a', 51 | '#8fbc8f', 52 | '#483d8b', 53 | '#2f4f4f', 54 | '#2f4f4f', 55 | '#00ced1', 56 | '#9400d3', 57 | '#ff1493', 58 | '#00bfff', 59 | '#696969', 60 | '#696969', 61 | '#1e90ff', 62 | '#b22222', 63 | '#fffaf0', 64 | '#228b22', 65 | '#f0f', 66 | '#dcdcdc', 67 | '#f8f8ff', 68 | '#ffd700', 69 | '#daa520', 70 | '#808080', 71 | '#008000', 72 | '#adff2f', 73 | '#808080', 74 | '#f0fff0', 75 | '#ff69b4', 76 | '#cd5c5c', 77 | '#4b0082', 78 | '#fffff0', 79 | '#f0e68c', 80 | '#e6e6fa', 81 | '#fff0f5', 82 | '#7cfc00', 83 | '#fffacd', 84 | '#add8e6', 85 | '#f08080', 86 | '#e0ffff', 87 | '#fafad2', 88 | '#d3d3d3', 89 | '#90ee90', 90 | '#d3d3d3', 91 | '#ffb6c1', 92 | '#ffa07a', 93 | '#20b2aa', 94 | '#87cefa', 95 | '#778899', 96 | '#778899', 97 | '#b0c4de', 98 | '#ffffe0', 99 | '#0f0', 100 | '#32cd32', 101 | '#faf0e6', 102 | '#ff00ff', 103 | '#800000', 104 | '#66cdaa', 105 | '#0000cd', 106 | '#ba55d3', 107 | '#9370db', 108 | '#3cb371', 109 | '#7b68ee', 110 | '#00fa9a', 111 | '#48d1cc', 112 | '#c71585', 113 | '#191970', 114 | '#f5fffa', 115 | '#ffe4e1', 116 | '#ffe4b5', 117 | '#ffdead', 118 | '#000080', 119 | '#fdf5e6', 120 | '#808000', 121 | '#6b8e23', 122 | '#ffa500', 123 | '#ff4500', 124 | '#da70d6', 125 | '#eee8aa', 126 | '#98fb98', 127 | '#afeeee', 128 | '#db7093', 129 | '#ffefd5', 130 | '#ffdab9', 131 | '#cd853f', 132 | '#ffc0cb', 133 | '#dda0dd', 134 | '#b0e0e6', 135 | '#800080', 136 | '#663399', 137 | '#f00', 138 | '#bc8f8f', 139 | '#4169e1', 140 | '#8b4513', 141 | '#fa8072', 142 | '#f4a460', 143 | '#2e8b57', 144 | '#fff5ee', 145 | '#a0522d', 146 | '#c0c0c0', 147 | '#87ceeb', 148 | '#6a5acd', 149 | '#708090', 150 | '#708090', 151 | '#fffafa', 152 | '#00ff7f', 153 | '#4682b4', 154 | '#d2b48c', 155 | '#008080', 156 | '#d8bfd8', 157 | '#ff6347', 158 | '#40e0d0', 159 | '#ee82ee', 160 | '#f5deb3', 161 | '#fff', 162 | '#f5f5f5', 163 | '#ff0', 164 | '#9acd32' 165 | ] 166 | 167 | for (let color of colors) { 168 | const input = `a { 169 | color: ${color}; 170 | }` 171 | 172 | test(`should shorten color ${color}`, t => arun(t, input)) 173 | } 174 | 175 | const alloptims = new Map() 176 | .set('optimise adjacents', 'a{display:none}a{display:none;visibility:hidden}') // a{display:none;visibility:hidden} 177 | .set('optimise repeated', 'a{color:red;color:red}') // a{color:red} 178 | .set('optimise units', '.one{width:1px;width:1rem;display:block}.two{color:red}.one{width:2px;width:1.1rem}') // .one{display:block;width:2px;width:1.1rem}.two{color:red} 179 | .set('override by !important', 'a{margin:0}a{margin:0!important}') // a{margin:0!important} 180 | 181 | 182 | for (let [descr, input] of alloptims.entries()) { 183 | test(`should ${descr} (advanced on & aggresive merging on)`, t => arun(t, input, { advanced: true, aggressiveMerging: true })) 184 | test(`should ${descr} (advanced on & aggresive merging off)`, t => arun(t, input, { advanced: true, aggressiveMerging: false })) 185 | } 186 | 187 | const ignoptims = new Map() 188 | .set('ignore repeated', 'a{color:red;color:red}') // a{color:red;color:red} 189 | 190 | for (let [descr, input] of ignoptims.entries()) { 191 | test(`should ${descr} (advanced off)`, t => arun(t, input, { advanced: false })) 192 | } 193 | 194 | const mediaqueries = new Map() 195 | .set('empty @media', '@media (min-width:980px){}') // '' 196 | .set('@media containing whitespaces', ' @media ( min-width: 980px ){}') // '' 197 | .set('body @media', '@media (min-width:980px){\na\n{color:red}}') // @media (min-width:980px){a{color:red}} 198 | .set('multiple @media ', '@media screen, print, (min-width:980px){a{color:red}}') // @media screen,print,(min-width:980px){a{color:red}} 199 | .set('@media nested once', '@media screen { @media print { a{color:red} } }') // @media screen{@media print{a{color:red}}} 200 | .set('@media nested twice', '@media screen { @media print { @media (min-width:980px) { a{color:red} } } }') // @media screen{@media print{@media (min-width:980px){a{color:red}}}} 201 | 202 | for (let [descr, input] of mediaqueries.entries()) { 203 | test(`should process ${descr}`, t => arun(t, input)) 204 | } 205 | 206 | const tidyselectors = new Map() 207 | .set('not optimize selectors', '#shadow::part(a) { color: red; }#shadow::part(a b) { font-weight: bold; }#shadow::part(a b c) { font-size: large; }') // '#shadow::part(a){color:red}#shadow::part(a b){font-weight:700}#shadow::part(a b c){font-size:large}' 208 | 209 | for (let [descr, input] of tidyselectors.entries()) { 210 | test(`should ${descr} when tidy selectors is off`, t => arun(t, input, { level: { 1: { tidySelectors: false } } })) 211 | } 212 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@ava/babel-preset-stage-4@^1.0.0": 6 | version "1.0.0" 7 | resolved "https://registry.yarnpkg.com/@ava/babel-preset-stage-4/-/babel-preset-stage-4-1.0.0.tgz#a613b5e152f529305422546b072d47facfb26291" 8 | dependencies: 9 | babel-plugin-check-es2015-constants "^6.8.0" 10 | babel-plugin-syntax-trailing-function-commas "^6.20.0" 11 | babel-plugin-transform-async-to-generator "^6.16.0" 12 | babel-plugin-transform-es2015-destructuring "^6.19.0" 13 | babel-plugin-transform-es2015-function-name "^6.9.0" 14 | babel-plugin-transform-es2015-modules-commonjs "^6.18.0" 15 | babel-plugin-transform-es2015-parameters "^6.21.0" 16 | babel-plugin-transform-es2015-spread "^6.8.0" 17 | babel-plugin-transform-es2015-sticky-regex "^6.8.0" 18 | babel-plugin-transform-es2015-unicode-regex "^6.11.0" 19 | babel-plugin-transform-exponentiation-operator "^6.8.0" 20 | package-hash "^1.2.0" 21 | 22 | "@ava/babel-preset-transform-test-files@^2.0.0": 23 | version "2.0.1" 24 | resolved "https://registry.yarnpkg.com/@ava/babel-preset-transform-test-files/-/babel-preset-transform-test-files-2.0.1.tgz#d75232cc6d71dc9c7eae4b76a9004fd81501d0c1" 25 | dependencies: 26 | babel-plugin-ava-throws-helper "^1.0.0" 27 | babel-plugin-espower "^2.3.2" 28 | package-hash "^1.2.0" 29 | 30 | "@ava/pretty-format@^1.1.0": 31 | version "1.1.0" 32 | resolved "https://registry.yarnpkg.com/@ava/pretty-format/-/pretty-format-1.1.0.tgz#d0a57d25eb9aeab9643bdd1a030642b91c123e28" 33 | dependencies: 34 | ansi-styles "^2.2.1" 35 | esutils "^2.0.2" 36 | 37 | JSONStream@^1.0.4: 38 | version "1.3.1" 39 | resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.1.tgz#707f761e01dae9e16f1bcf93703b78c70966579a" 40 | dependencies: 41 | jsonparse "^1.2.0" 42 | through ">=2.2.7 <3" 43 | 44 | abbrev@1, abbrev@1.0.x: 45 | version "1.0.9" 46 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 47 | 48 | acorn-jsx@^3.0.0, acorn-jsx@^3.0.1: 49 | version "3.0.1" 50 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 51 | dependencies: 52 | acorn "^3.0.4" 53 | 54 | acorn-object-spread@^1.0.0: 55 | version "1.0.0" 56 | resolved "https://registry.yarnpkg.com/acorn-object-spread/-/acorn-object-spread-1.0.0.tgz#48ead0f4a8eb16995a17a0db9ffc6acaada4ba68" 57 | dependencies: 58 | acorn "^3.1.0" 59 | 60 | acorn@^3.0.4, acorn@^3.1.0, acorn@^3.3.0: 61 | version "3.3.0" 62 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 63 | 64 | acorn@^5.0.1: 65 | version "5.1.0" 66 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.0.tgz#e468bf609b0672700e02f878ae2f1b360fe24b4f" 67 | 68 | add-stream@^1.0.0: 69 | version "1.0.0" 70 | resolved "https://registry.yarnpkg.com/add-stream/-/add-stream-1.0.0.tgz#6a7990437ca736d5e1288db92bd3266d5f5cb2aa" 71 | 72 | ajv-keywords@^1.0.0: 73 | version "1.5.1" 74 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 75 | 76 | ajv@^4.7.0, ajv@^4.9.1: 77 | version "4.11.8" 78 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 79 | dependencies: 80 | co "^4.6.0" 81 | json-stable-stringify "^1.0.1" 82 | 83 | amdefine@>=0.0.4: 84 | version "1.0.1" 85 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 86 | 87 | ansi-align@^1.1.0: 88 | version "1.1.0" 89 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-1.1.0.tgz#2f0c1658829739add5ebb15e6b0c6e3423f016ba" 90 | dependencies: 91 | string-width "^1.0.1" 92 | 93 | ansi-escapes@^1.1.0: 94 | version "1.4.0" 95 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 96 | 97 | ansi-regex@^2.0.0: 98 | version "2.1.1" 99 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 100 | 101 | ansi-styles@^2.2.1: 102 | version "2.2.1" 103 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 104 | 105 | ansi-styles@^3.1.0: 106 | version "3.2.0" 107 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 108 | dependencies: 109 | color-convert "^1.9.0" 110 | 111 | ansi-styles@~1.0.0: 112 | version "1.0.0" 113 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-1.0.0.tgz#cb102df1c56f5123eab8b67cd7b98027a0279178" 114 | 115 | anymatch@^1.3.0: 116 | version "1.3.0" 117 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 118 | dependencies: 119 | arrify "^1.0.0" 120 | micromatch "^2.1.5" 121 | 122 | append-transform@^0.4.0: 123 | version "0.4.0" 124 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 125 | dependencies: 126 | default-require-extensions "^1.0.0" 127 | 128 | aproba@^1.0.3: 129 | version "1.1.1" 130 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" 131 | 132 | are-we-there-yet@~1.1.2: 133 | version "1.1.4" 134 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 135 | dependencies: 136 | delegates "^1.0.0" 137 | readable-stream "^2.0.6" 138 | 139 | argparse@^1.0.7: 140 | version "1.0.9" 141 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 142 | dependencies: 143 | sprintf-js "~1.0.2" 144 | 145 | arr-diff@^2.0.0: 146 | version "2.0.0" 147 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 148 | dependencies: 149 | arr-flatten "^1.0.1" 150 | 151 | arr-exclude@^1.0.0: 152 | version "1.0.0" 153 | resolved "https://registry.yarnpkg.com/arr-exclude/-/arr-exclude-1.0.0.tgz#dfc7c2e552a270723ccda04cf3128c8cbfe5c631" 154 | 155 | arr-flatten@^1.0.1: 156 | version "1.0.3" 157 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 158 | 159 | array-differ@^1.0.0: 160 | version "1.0.0" 161 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 162 | 163 | array-find-index@^1.0.1: 164 | version "1.0.2" 165 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 166 | 167 | array-ify@^1.0.0: 168 | version "1.0.0" 169 | resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece" 170 | 171 | array-union@^1.0.1: 172 | version "1.0.2" 173 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 174 | dependencies: 175 | array-uniq "^1.0.1" 176 | 177 | array-uniq@^1.0.1, array-uniq@^1.0.2: 178 | version "1.0.3" 179 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 180 | 181 | array-unique@^0.2.1: 182 | version "0.2.1" 183 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 184 | 185 | arrify@^1.0.0, arrify@^1.0.1: 186 | version "1.0.1" 187 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 188 | 189 | asn1@~0.2.3: 190 | version "0.2.4" 191 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" 192 | dependencies: 193 | safer-buffer "~2.1.0" 194 | 195 | assert-plus@1.0.0, assert-plus@^1.0.0: 196 | version "1.0.0" 197 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 198 | 199 | assert-plus@^0.2.0: 200 | version "0.2.0" 201 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 202 | 203 | async-each@^1.0.0: 204 | version "1.0.1" 205 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 206 | 207 | async@1.x: 208 | version "1.5.2" 209 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 210 | 211 | asynckit@^0.4.0: 212 | version "0.4.0" 213 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 214 | 215 | auto-bind@^1.1.0: 216 | version "1.1.0" 217 | resolved "https://registry.yarnpkg.com/auto-bind/-/auto-bind-1.1.0.tgz#93b864dc7ee01a326281775d5c75ca0a751e5961" 218 | 219 | ava-init@^0.2.0: 220 | version "0.2.0" 221 | resolved "https://registry.yarnpkg.com/ava-init/-/ava-init-0.2.0.tgz#9304c8b4c357d66e3dfdae1fbff47b1199d5c55d" 222 | dependencies: 223 | arr-exclude "^1.0.0" 224 | execa "^0.5.0" 225 | has-yarn "^1.0.0" 226 | read-pkg-up "^2.0.0" 227 | write-pkg "^2.0.0" 228 | 229 | ava@^0.18: 230 | version "0.18.2" 231 | resolved "https://registry.yarnpkg.com/ava/-/ava-0.18.2.tgz#79253d1636077034a2780bb55b5c3e6c3d7f312f" 232 | dependencies: 233 | "@ava/babel-preset-stage-4" "^1.0.0" 234 | "@ava/babel-preset-transform-test-files" "^2.0.0" 235 | "@ava/pretty-format" "^1.1.0" 236 | arr-flatten "^1.0.1" 237 | array-union "^1.0.1" 238 | array-uniq "^1.0.2" 239 | arrify "^1.0.0" 240 | auto-bind "^1.1.0" 241 | ava-init "^0.2.0" 242 | babel-code-frame "^6.16.0" 243 | babel-core "^6.17.0" 244 | bluebird "^3.0.0" 245 | caching-transform "^1.0.0" 246 | chalk "^1.0.0" 247 | chokidar "^1.4.2" 248 | clean-stack "^1.1.1" 249 | clean-yaml-object "^0.1.0" 250 | cli-cursor "^2.1.0" 251 | cli-spinners "^1.0.0" 252 | cli-truncate "^0.2.0" 253 | co-with-promise "^4.6.0" 254 | code-excerpt "^2.1.0" 255 | common-path-prefix "^1.0.0" 256 | convert-source-map "^1.2.0" 257 | core-assert "^0.2.0" 258 | currently-unhandled "^0.4.1" 259 | debug "^2.2.0" 260 | diff "^3.0.1" 261 | dot-prop "^4.1.0" 262 | empower-core "^0.6.1" 263 | equal-length "^1.0.0" 264 | figures "^2.0.0" 265 | find-cache-dir "^0.1.1" 266 | fn-name "^2.0.0" 267 | get-port "^2.1.0" 268 | globby "^6.0.0" 269 | has-flag "^2.0.0" 270 | ignore-by-default "^1.0.0" 271 | indent-string "^3.0.0" 272 | is-ci "^1.0.7" 273 | is-generator-fn "^1.0.0" 274 | is-obj "^1.0.0" 275 | is-observable "^0.2.0" 276 | is-promise "^2.1.0" 277 | jest-snapshot "^18.1.0" 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 | max-timeout "^1.0.0" 286 | md5-hex "^2.0.0" 287 | meow "^3.7.0" 288 | ms "^0.7.1" 289 | multimatch "^2.1.0" 290 | observable-to-promise "^0.4.0" 291 | option-chain "^0.1.0" 292 | package-hash "^1.2.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 | time-require "^0.1.2" 304 | unique-temp-dir "^1.0.0" 305 | update-notifier "^1.0.0" 306 | 307 | aws-sign2@~0.6.0: 308 | version "0.6.0" 309 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 310 | 311 | aws4@^1.2.1: 312 | version "1.6.0" 313 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 314 | 315 | babel-code-frame@^6.16.0, babel-code-frame@^6.22.0: 316 | version "6.22.0" 317 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 318 | dependencies: 319 | chalk "^1.1.0" 320 | esutils "^2.0.2" 321 | js-tokens "^3.0.0" 322 | 323 | babel-core@^6.17.0, babel-core@^6.24.1: 324 | version "6.24.1" 325 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" 326 | dependencies: 327 | babel-code-frame "^6.22.0" 328 | babel-generator "^6.24.1" 329 | babel-helpers "^6.24.1" 330 | babel-messages "^6.23.0" 331 | babel-register "^6.24.1" 332 | babel-runtime "^6.22.0" 333 | babel-template "^6.24.1" 334 | babel-traverse "^6.24.1" 335 | babel-types "^6.24.1" 336 | babylon "^6.11.0" 337 | convert-source-map "^1.1.0" 338 | debug "^2.1.1" 339 | json5 "^0.5.0" 340 | lodash "^4.2.0" 341 | minimatch "^3.0.2" 342 | path-is-absolute "^1.0.0" 343 | private "^0.1.6" 344 | slash "^1.0.0" 345 | source-map "^0.5.0" 346 | 347 | babel-eslint@^6.0: 348 | version "6.1.2" 349 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-6.1.2.tgz#5293419fe3672d66598d327da9694567ba6a5f2f" 350 | dependencies: 351 | babel-traverse "^6.0.20" 352 | babel-types "^6.0.19" 353 | babylon "^6.0.18" 354 | lodash.assign "^4.0.0" 355 | lodash.pickby "^4.0.0" 356 | 357 | babel-generator@^6.1.0, babel-generator@^6.24.1: 358 | version "6.24.1" 359 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" 360 | dependencies: 361 | babel-messages "^6.23.0" 362 | babel-runtime "^6.22.0" 363 | babel-types "^6.24.1" 364 | detect-indent "^4.0.0" 365 | jsesc "^1.3.0" 366 | lodash "^4.2.0" 367 | source-map "^0.5.0" 368 | trim-right "^1.0.1" 369 | 370 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 371 | version "6.24.1" 372 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 373 | dependencies: 374 | babel-helper-explode-assignable-expression "^6.24.1" 375 | babel-runtime "^6.22.0" 376 | babel-types "^6.24.1" 377 | 378 | babel-helper-call-delegate@^6.24.1: 379 | version "6.24.1" 380 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 381 | dependencies: 382 | babel-helper-hoist-variables "^6.24.1" 383 | babel-runtime "^6.22.0" 384 | babel-traverse "^6.24.1" 385 | babel-types "^6.24.1" 386 | 387 | babel-helper-explode-assignable-expression@^6.24.1: 388 | version "6.24.1" 389 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 390 | dependencies: 391 | babel-runtime "^6.22.0" 392 | babel-traverse "^6.24.1" 393 | babel-types "^6.24.1" 394 | 395 | babel-helper-function-name@^6.24.1: 396 | version "6.24.1" 397 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 398 | dependencies: 399 | babel-helper-get-function-arity "^6.24.1" 400 | babel-runtime "^6.22.0" 401 | babel-template "^6.24.1" 402 | babel-traverse "^6.24.1" 403 | babel-types "^6.24.1" 404 | 405 | babel-helper-get-function-arity@^6.24.1: 406 | version "6.24.1" 407 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 408 | dependencies: 409 | babel-runtime "^6.22.0" 410 | babel-types "^6.24.1" 411 | 412 | babel-helper-hoist-variables@^6.24.1: 413 | version "6.24.1" 414 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 415 | dependencies: 416 | babel-runtime "^6.22.0" 417 | babel-types "^6.24.1" 418 | 419 | babel-helper-regex@^6.24.1: 420 | version "6.24.1" 421 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" 422 | dependencies: 423 | babel-runtime "^6.22.0" 424 | babel-types "^6.24.1" 425 | lodash "^4.2.0" 426 | 427 | babel-helper-remap-async-to-generator@^6.24.1: 428 | version "6.24.1" 429 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 430 | dependencies: 431 | babel-helper-function-name "^6.24.1" 432 | babel-runtime "^6.22.0" 433 | babel-template "^6.24.1" 434 | babel-traverse "^6.24.1" 435 | babel-types "^6.24.1" 436 | 437 | babel-helpers@^6.24.1: 438 | version "6.24.1" 439 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 440 | dependencies: 441 | babel-runtime "^6.22.0" 442 | babel-template "^6.24.1" 443 | 444 | babel-messages@^6.23.0: 445 | version "6.23.0" 446 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 447 | dependencies: 448 | babel-runtime "^6.22.0" 449 | 450 | babel-plugin-ava-throws-helper@^1.0.0: 451 | version "1.0.0" 452 | resolved "https://registry.yarnpkg.com/babel-plugin-ava-throws-helper/-/babel-plugin-ava-throws-helper-1.0.0.tgz#8fe6e79d2fd19838b5c3649f89cfb03fd563e241" 453 | dependencies: 454 | babel-template "^6.7.0" 455 | babel-types "^6.7.2" 456 | 457 | babel-plugin-check-es2015-constants@^6.8.0: 458 | version "6.22.0" 459 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 460 | dependencies: 461 | babel-runtime "^6.22.0" 462 | 463 | babel-plugin-espower@^2.3.2: 464 | version "2.3.2" 465 | resolved "https://registry.yarnpkg.com/babel-plugin-espower/-/babel-plugin-espower-2.3.2.tgz#5516b8fcdb26c9f0e1d8160749f6e4c65e71271e" 466 | dependencies: 467 | babel-generator "^6.1.0" 468 | babylon "^6.1.0" 469 | call-matcher "^1.0.0" 470 | core-js "^2.0.0" 471 | espower-location-detector "^1.0.0" 472 | espurify "^1.6.0" 473 | estraverse "^4.1.1" 474 | 475 | babel-plugin-syntax-async-functions@^6.8.0: 476 | version "6.13.0" 477 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 478 | 479 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 480 | version "6.13.0" 481 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 482 | 483 | babel-plugin-syntax-trailing-function-commas@^6.20.0: 484 | version "6.22.0" 485 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 486 | 487 | babel-plugin-transform-async-to-generator@^6.16.0: 488 | version "6.24.1" 489 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 490 | dependencies: 491 | babel-helper-remap-async-to-generator "^6.24.1" 492 | babel-plugin-syntax-async-functions "^6.8.0" 493 | babel-runtime "^6.22.0" 494 | 495 | babel-plugin-transform-es2015-destructuring@^6.19.0: 496 | version "6.23.0" 497 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 498 | dependencies: 499 | babel-runtime "^6.22.0" 500 | 501 | babel-plugin-transform-es2015-function-name@^6.9.0: 502 | version "6.24.1" 503 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 504 | dependencies: 505 | babel-helper-function-name "^6.24.1" 506 | babel-runtime "^6.22.0" 507 | babel-types "^6.24.1" 508 | 509 | babel-plugin-transform-es2015-modules-commonjs@^6.18.0: 510 | version "6.24.1" 511 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 512 | dependencies: 513 | babel-plugin-transform-strict-mode "^6.24.1" 514 | babel-runtime "^6.22.0" 515 | babel-template "^6.24.1" 516 | babel-types "^6.24.1" 517 | 518 | babel-plugin-transform-es2015-parameters@^6.21.0: 519 | version "6.24.1" 520 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 521 | dependencies: 522 | babel-helper-call-delegate "^6.24.1" 523 | babel-helper-get-function-arity "^6.24.1" 524 | babel-runtime "^6.22.0" 525 | babel-template "^6.24.1" 526 | babel-traverse "^6.24.1" 527 | babel-types "^6.24.1" 528 | 529 | babel-plugin-transform-es2015-spread@^6.8.0: 530 | version "6.22.0" 531 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 532 | dependencies: 533 | babel-runtime "^6.22.0" 534 | 535 | babel-plugin-transform-es2015-sticky-regex@^6.8.0: 536 | version "6.24.1" 537 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 538 | dependencies: 539 | babel-helper-regex "^6.24.1" 540 | babel-runtime "^6.22.0" 541 | babel-types "^6.24.1" 542 | 543 | babel-plugin-transform-es2015-unicode-regex@^6.11.0: 544 | version "6.24.1" 545 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 546 | dependencies: 547 | babel-helper-regex "^6.24.1" 548 | babel-runtime "^6.22.0" 549 | regexpu-core "^2.0.0" 550 | 551 | babel-plugin-transform-exponentiation-operator@^6.8.0: 552 | version "6.24.1" 553 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 554 | dependencies: 555 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 556 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 557 | babel-runtime "^6.22.0" 558 | 559 | babel-plugin-transform-strict-mode@^6.24.1: 560 | version "6.24.1" 561 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 562 | dependencies: 563 | babel-runtime "^6.22.0" 564 | babel-types "^6.24.1" 565 | 566 | babel-register@^6.24.1: 567 | version "6.24.1" 568 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 569 | dependencies: 570 | babel-core "^6.24.1" 571 | babel-runtime "^6.22.0" 572 | core-js "^2.4.0" 573 | home-or-tmp "^2.0.0" 574 | lodash "^4.2.0" 575 | mkdirp "^0.5.1" 576 | source-map-support "^0.4.2" 577 | 578 | babel-runtime@^6.22.0: 579 | version "6.23.0" 580 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 581 | dependencies: 582 | core-js "^2.4.0" 583 | regenerator-runtime "^0.10.0" 584 | 585 | babel-template@^6.24.1, babel-template@^6.7.0: 586 | version "6.24.1" 587 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" 588 | dependencies: 589 | babel-runtime "^6.22.0" 590 | babel-traverse "^6.24.1" 591 | babel-types "^6.24.1" 592 | babylon "^6.11.0" 593 | lodash "^4.2.0" 594 | 595 | babel-traverse@^6.0.20, babel-traverse@^6.24.1: 596 | version "6.24.1" 597 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" 598 | dependencies: 599 | babel-code-frame "^6.22.0" 600 | babel-messages "^6.23.0" 601 | babel-runtime "^6.22.0" 602 | babel-types "^6.24.1" 603 | babylon "^6.15.0" 604 | debug "^2.2.0" 605 | globals "^9.0.0" 606 | invariant "^2.2.0" 607 | lodash "^4.2.0" 608 | 609 | babel-types@^6.0.19, babel-types@^6.24.1, babel-types@^6.7.2: 610 | version "6.24.1" 611 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" 612 | dependencies: 613 | babel-runtime "^6.22.0" 614 | esutils "^2.0.2" 615 | lodash "^4.2.0" 616 | to-fast-properties "^1.0.1" 617 | 618 | babylon@^6.0.18, babylon@^6.1.0, babylon@^6.11.0, babylon@^6.15.0: 619 | version "6.17.1" 620 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.1.tgz#17f14fddf361b695981fe679385e4f1c01ebd86f" 621 | 622 | balanced-match@^1.0.0: 623 | version "1.0.0" 624 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 625 | 626 | bcrypt-pbkdf@^1.0.0: 627 | version "1.0.2" 628 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" 629 | dependencies: 630 | tweetnacl "^0.14.3" 631 | 632 | binary-extensions@^1.0.0: 633 | version "1.8.0" 634 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 635 | 636 | block-stream@*: 637 | version "0.0.9" 638 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 639 | dependencies: 640 | inherits "~2.0.0" 641 | 642 | bluebird@^3.0.0: 643 | version "3.5.0" 644 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.0.tgz#791420d7f551eea2897453a8a77653f96606d67c" 645 | 646 | boom@2.x.x: 647 | version "2.10.1" 648 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 649 | dependencies: 650 | hoek "2.x.x" 651 | 652 | boxen@^0.6.0: 653 | version "0.6.0" 654 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-0.6.0.tgz#8364d4248ac34ff0ef1b2f2bf49a6c60ce0d81b6" 655 | dependencies: 656 | ansi-align "^1.1.0" 657 | camelcase "^2.1.0" 658 | chalk "^1.1.1" 659 | cli-boxes "^1.0.0" 660 | filled-array "^1.0.0" 661 | object-assign "^4.0.1" 662 | repeating "^2.0.0" 663 | string-width "^1.0.1" 664 | widest-line "^1.0.0" 665 | 666 | brace-expansion@^1.1.7: 667 | version "1.1.11" 668 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 669 | dependencies: 670 | balanced-match "^1.0.0" 671 | concat-map "0.0.1" 672 | 673 | braces@^1.8.2: 674 | version "1.8.5" 675 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 676 | dependencies: 677 | expand-range "^1.8.1" 678 | preserve "^0.2.0" 679 | repeat-element "^1.1.2" 680 | 681 | buble@^0.15, buble@^0.15.0: 682 | version "0.15.2" 683 | resolved "https://registry.yarnpkg.com/buble/-/buble-0.15.2.tgz#547fc47483f8e5e8176d82aa5ebccb183b02d613" 684 | dependencies: 685 | acorn "^3.3.0" 686 | acorn-jsx "^3.0.1" 687 | acorn-object-spread "^1.0.0" 688 | chalk "^1.1.3" 689 | magic-string "^0.14.0" 690 | minimist "^1.2.0" 691 | os-homedir "^1.0.1" 692 | 693 | buf-compare@^1.0.0: 694 | version "1.0.1" 695 | resolved "https://registry.yarnpkg.com/buf-compare/-/buf-compare-1.0.1.tgz#fef28da8b8113a0a0db4430b0b6467b69730b34a" 696 | 697 | buffer-shims@~1.0.0: 698 | version "1.0.0" 699 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 700 | 701 | builtin-modules@^1.0.0: 702 | version "1.1.1" 703 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 704 | 705 | caching-transform@^1.0.0: 706 | version "1.0.1" 707 | resolved "https://registry.yarnpkg.com/caching-transform/-/caching-transform-1.0.1.tgz#6dbdb2f20f8d8fbce79f3e94e9d1742dcdf5c0a1" 708 | dependencies: 709 | md5-hex "^1.2.0" 710 | mkdirp "^0.5.1" 711 | write-file-atomic "^1.1.4" 712 | 713 | call-matcher@^1.0.0: 714 | version "1.0.1" 715 | resolved "https://registry.yarnpkg.com/call-matcher/-/call-matcher-1.0.1.tgz#5134d077984f712a54dad3cbf62de28dce416ca8" 716 | dependencies: 717 | core-js "^2.0.0" 718 | deep-equal "^1.0.0" 719 | espurify "^1.6.0" 720 | estraverse "^4.0.0" 721 | 722 | call-signature@0.0.2: 723 | version "0.0.2" 724 | resolved "https://registry.yarnpkg.com/call-signature/-/call-signature-0.0.2.tgz#a84abc825a55ef4cb2b028bd74e205a65b9a4996" 725 | 726 | caller-path@^0.1.0: 727 | version "0.1.0" 728 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 729 | dependencies: 730 | callsites "^0.2.0" 731 | 732 | callsites@^0.2.0: 733 | version "0.2.0" 734 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 735 | 736 | camelcase-keys@^2.0.0: 737 | version "2.1.0" 738 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 739 | dependencies: 740 | camelcase "^2.0.0" 741 | map-obj "^1.0.0" 742 | 743 | camelcase@^2.0.0, camelcase@^2.1.0: 744 | version "2.1.1" 745 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 746 | 747 | camelcase@^3.0.0: 748 | version "3.0.0" 749 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 750 | 751 | capture-stack-trace@^1.0.0: 752 | version "1.0.0" 753 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 754 | 755 | caseless@~0.11.0: 756 | version "0.11.0" 757 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 758 | 759 | caseless@~0.12.0: 760 | version "0.12.0" 761 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 762 | 763 | chalk@^0.4.0: 764 | version "0.4.0" 765 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.4.0.tgz#5199a3ddcd0c1efe23bc08c1b027b06176e0c64f" 766 | dependencies: 767 | ansi-styles "~1.0.0" 768 | has-color "~0.1.0" 769 | strip-ansi "~0.1.0" 770 | 771 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 772 | version "1.1.3" 773 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 774 | dependencies: 775 | ansi-styles "^2.2.1" 776 | escape-string-regexp "^1.0.2" 777 | has-ansi "^2.0.0" 778 | strip-ansi "^3.0.0" 779 | supports-color "^2.0.0" 780 | 781 | chalk@^2.1.0: 782 | version "2.1.0" 783 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.1.0.tgz#ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e" 784 | dependencies: 785 | ansi-styles "^3.1.0" 786 | escape-string-regexp "^1.0.5" 787 | supports-color "^4.0.0" 788 | 789 | chokidar@^1.4.2: 790 | version "1.7.0" 791 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 792 | dependencies: 793 | anymatch "^1.3.0" 794 | async-each "^1.0.0" 795 | glob-parent "^2.0.0" 796 | inherits "^2.0.1" 797 | is-binary-path "^1.0.0" 798 | is-glob "^2.0.0" 799 | path-is-absolute "^1.0.0" 800 | readdirp "^2.0.0" 801 | optionalDependencies: 802 | fsevents "^1.0.0" 803 | 804 | ci-info@^1.0.0: 805 | version "1.0.0" 806 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 807 | 808 | circular-json@^0.3.1: 809 | version "0.3.1" 810 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 811 | 812 | clean-css@^4.x: 813 | version "4.1.11" 814 | resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.1.11.tgz#2ecdf145aba38f54740f26cefd0ff3e03e125d6a" 815 | dependencies: 816 | source-map "0.5.x" 817 | 818 | clean-stack@^1.1.1: 819 | version "1.2.0" 820 | resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-1.2.0.tgz#a465128d62c31fb1a3606d00abfe59dcf652f568" 821 | 822 | clean-yaml-object@^0.1.0: 823 | version "0.1.0" 824 | resolved "https://registry.yarnpkg.com/clean-yaml-object/-/clean-yaml-object-0.1.0.tgz#63fb110dc2ce1a84dc21f6d9334876d010ae8b68" 825 | 826 | cli-boxes@^1.0.0: 827 | version "1.0.0" 828 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 829 | 830 | cli-cursor@^1.0.1: 831 | version "1.0.2" 832 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 833 | dependencies: 834 | restore-cursor "^1.0.1" 835 | 836 | cli-cursor@^2.1.0: 837 | version "2.1.0" 838 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 839 | dependencies: 840 | restore-cursor "^2.0.0" 841 | 842 | cli-spinners@^1.0.0: 843 | version "1.0.0" 844 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-1.0.0.tgz#ef987ed3d48391ac3dab9180b406a742180d6e6a" 845 | 846 | cli-truncate@^0.2.0: 847 | version "0.2.1" 848 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574" 849 | dependencies: 850 | slice-ansi "0.0.4" 851 | string-width "^1.0.1" 852 | 853 | cli-width@^2.0.0: 854 | version "2.1.0" 855 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 856 | 857 | cliui@^3.2.0: 858 | version "3.2.0" 859 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 860 | dependencies: 861 | string-width "^1.0.1" 862 | strip-ansi "^3.0.1" 863 | wrap-ansi "^2.0.0" 864 | 865 | co-with-promise@^4.6.0: 866 | version "4.6.0" 867 | resolved "https://registry.yarnpkg.com/co-with-promise/-/co-with-promise-4.6.0.tgz#413e7db6f5893a60b942cf492c4bec93db415ab7" 868 | dependencies: 869 | pinkie-promise "^1.0.0" 870 | 871 | co@^4.6.0: 872 | version "4.6.0" 873 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 874 | 875 | code-excerpt@^2.1.0: 876 | version "2.1.0" 877 | resolved "https://registry.yarnpkg.com/code-excerpt/-/code-excerpt-2.1.0.tgz#5dcc081e88f4a7e3b554e9e35d7ef232d47f8147" 878 | dependencies: 879 | convert-to-spaces "^1.0.1" 880 | 881 | code-point-at@^1.0.0: 882 | version "1.1.0" 883 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 884 | 885 | color-convert@^1.9.0: 886 | version "1.9.0" 887 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 888 | dependencies: 889 | color-name "^1.1.1" 890 | 891 | color-name@^1.1.1: 892 | version "1.1.3" 893 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 894 | 895 | combined-stream@^1.0.5, combined-stream@~1.0.5: 896 | version "1.0.5" 897 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 898 | dependencies: 899 | delayed-stream "~1.0.0" 900 | 901 | commander@^2.9.0: 902 | version "2.9.0" 903 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 904 | dependencies: 905 | graceful-readlink ">= 1.0.0" 906 | 907 | common-path-prefix@^1.0.0: 908 | version "1.0.0" 909 | resolved "https://registry.yarnpkg.com/common-path-prefix/-/common-path-prefix-1.0.0.tgz#cd52f6f0712e0baab97d6f9732874f22f47752c0" 910 | 911 | commondir@^1.0.1: 912 | version "1.0.1" 913 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 914 | 915 | compare-func@^1.3.1: 916 | version "1.3.2" 917 | resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-1.3.2.tgz#99dd0ba457e1f9bc722b12c08ec33eeab31fa648" 918 | dependencies: 919 | array-ify "^1.0.0" 920 | dot-prop "^3.0.0" 921 | 922 | concat-map@0.0.1: 923 | version "0.0.1" 924 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 925 | 926 | concat-stream@^1.4.6: 927 | version "1.6.0" 928 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 929 | dependencies: 930 | inherits "^2.0.3" 931 | readable-stream "^2.2.2" 932 | typedarray "^0.0.6" 933 | 934 | configstore@^2.0.0: 935 | version "2.1.0" 936 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-2.1.0.tgz#737a3a7036e9886102aa6099e47bb33ab1aba1a1" 937 | dependencies: 938 | dot-prop "^3.0.0" 939 | graceful-fs "^4.1.2" 940 | mkdirp "^0.5.0" 941 | object-assign "^4.0.1" 942 | os-tmpdir "^1.0.0" 943 | osenv "^0.1.0" 944 | uuid "^2.0.1" 945 | write-file-atomic "^1.1.2" 946 | xdg-basedir "^2.0.0" 947 | 948 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 949 | version "1.1.0" 950 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 951 | 952 | conventional-changelog-angular@^1.3.4: 953 | version "1.3.4" 954 | resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-1.3.4.tgz#7d7cdfbd358948312904d02229a61fd6075cf455" 955 | dependencies: 956 | compare-func "^1.3.1" 957 | github-url-from-git "^1.4.0" 958 | q "^1.4.1" 959 | 960 | conventional-changelog-atom@^0.1.0: 961 | version "0.1.0" 962 | resolved "https://registry.yarnpkg.com/conventional-changelog-atom/-/conventional-changelog-atom-0.1.0.tgz#67a47c66a42b2f8909ef1587c9989ae1de730b92" 963 | dependencies: 964 | q "^1.4.1" 965 | 966 | conventional-changelog-cli@^1.1: 967 | version "1.3.1" 968 | resolved "https://registry.yarnpkg.com/conventional-changelog-cli/-/conventional-changelog-cli-1.3.1.tgz#1cd5a9dbae25ffb5ffe67afef1e136eaceefd2d5" 969 | dependencies: 970 | add-stream "^1.0.0" 971 | conventional-changelog "^1.1.3" 972 | lodash "^4.1.0" 973 | meow "^3.7.0" 974 | tempfile "^1.1.1" 975 | 976 | conventional-changelog-codemirror@^0.1.0: 977 | version "0.1.0" 978 | resolved "https://registry.yarnpkg.com/conventional-changelog-codemirror/-/conventional-changelog-codemirror-0.1.0.tgz#7577a591dbf9b538e7a150a7ee62f65a2872b334" 979 | dependencies: 980 | q "^1.4.1" 981 | 982 | conventional-changelog-core@^1.9.0: 983 | version "1.9.0" 984 | resolved "https://registry.yarnpkg.com/conventional-changelog-core/-/conventional-changelog-core-1.9.0.tgz#de5dfbc091847656508d4a389e35c9a1bc49e7f4" 985 | dependencies: 986 | conventional-changelog-writer "^1.1.0" 987 | conventional-commits-parser "^1.0.0" 988 | dateformat "^1.0.12" 989 | get-pkg-repo "^1.0.0" 990 | git-raw-commits "^1.2.0" 991 | git-remote-origin-url "^2.0.0" 992 | git-semver-tags "^1.2.0" 993 | lodash "^4.0.0" 994 | normalize-package-data "^2.3.5" 995 | q "^1.4.1" 996 | read-pkg "^1.1.0" 997 | read-pkg-up "^1.0.1" 998 | through2 "^2.0.0" 999 | 1000 | conventional-changelog-ember@^0.2.6: 1001 | version "0.2.6" 1002 | resolved "https://registry.yarnpkg.com/conventional-changelog-ember/-/conventional-changelog-ember-0.2.6.tgz#8b7355419f5127493c4c562473ab2fc792f1c2b6" 1003 | dependencies: 1004 | q "^1.4.1" 1005 | 1006 | conventional-changelog-eslint@^0.1.0: 1007 | version "0.1.0" 1008 | resolved "https://registry.yarnpkg.com/conventional-changelog-eslint/-/conventional-changelog-eslint-0.1.0.tgz#a52411e999e0501ce500b856b0a643d0330907e2" 1009 | dependencies: 1010 | q "^1.4.1" 1011 | 1012 | conventional-changelog-express@^0.1.0: 1013 | version "0.1.0" 1014 | resolved "https://registry.yarnpkg.com/conventional-changelog-express/-/conventional-changelog-express-0.1.0.tgz#55c6c841c811962036c037bdbd964a54ae310fce" 1015 | dependencies: 1016 | q "^1.4.1" 1017 | 1018 | conventional-changelog-jquery@^0.1.0: 1019 | version "0.1.0" 1020 | resolved "https://registry.yarnpkg.com/conventional-changelog-jquery/-/conventional-changelog-jquery-0.1.0.tgz#0208397162e3846986e71273b6c79c5b5f80f510" 1021 | dependencies: 1022 | q "^1.4.1" 1023 | 1024 | conventional-changelog-jscs@^0.1.0: 1025 | version "0.1.0" 1026 | resolved "https://registry.yarnpkg.com/conventional-changelog-jscs/-/conventional-changelog-jscs-0.1.0.tgz#0479eb443cc7d72c58bf0bcf0ef1d444a92f0e5c" 1027 | dependencies: 1028 | q "^1.4.1" 1029 | 1030 | conventional-changelog-jshint@^0.1.0: 1031 | version "0.1.0" 1032 | resolved "https://registry.yarnpkg.com/conventional-changelog-jshint/-/conventional-changelog-jshint-0.1.0.tgz#00cab8e9a3317487abd94c4d84671342918d2a07" 1033 | dependencies: 1034 | compare-func "^1.3.1" 1035 | q "^1.4.1" 1036 | 1037 | conventional-changelog-writer@^1.1.0: 1038 | version "1.4.1" 1039 | resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-1.4.1.tgz#3f4cb4d003ebb56989d30d345893b52a43639c8e" 1040 | dependencies: 1041 | compare-func "^1.3.1" 1042 | conventional-commits-filter "^1.0.0" 1043 | dateformat "^1.0.11" 1044 | handlebars "^4.0.2" 1045 | json-stringify-safe "^5.0.1" 1046 | lodash "^4.0.0" 1047 | meow "^3.3.0" 1048 | semver "^5.0.1" 1049 | split "^1.0.0" 1050 | through2 "^2.0.0" 1051 | 1052 | conventional-changelog@^1.1.3: 1053 | version "1.1.4" 1054 | resolved "https://registry.yarnpkg.com/conventional-changelog/-/conventional-changelog-1.1.4.tgz#108bc750c2a317e200e2f9b413caaa1f8c7efa3b" 1055 | dependencies: 1056 | conventional-changelog-angular "^1.3.4" 1057 | conventional-changelog-atom "^0.1.0" 1058 | conventional-changelog-codemirror "^0.1.0" 1059 | conventional-changelog-core "^1.9.0" 1060 | conventional-changelog-ember "^0.2.6" 1061 | conventional-changelog-eslint "^0.1.0" 1062 | conventional-changelog-express "^0.1.0" 1063 | conventional-changelog-jquery "^0.1.0" 1064 | conventional-changelog-jscs "^0.1.0" 1065 | conventional-changelog-jshint "^0.1.0" 1066 | 1067 | conventional-commits-filter@^1.0.0: 1068 | version "1.0.0" 1069 | resolved "https://registry.yarnpkg.com/conventional-commits-filter/-/conventional-commits-filter-1.0.0.tgz#6fc2a659372bc3f2339cf9ffff7e1b0344b93039" 1070 | dependencies: 1071 | is-subset "^0.1.1" 1072 | modify-values "^1.0.0" 1073 | 1074 | conventional-commits-parser@^1.0.0: 1075 | version "1.3.0" 1076 | resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-1.3.0.tgz#e327b53194e1a7ad5dc63479ee9099a52b024865" 1077 | dependencies: 1078 | JSONStream "^1.0.4" 1079 | is-text-path "^1.0.0" 1080 | lodash "^4.2.1" 1081 | meow "^3.3.0" 1082 | split2 "^2.0.0" 1083 | through2 "^2.0.0" 1084 | trim-off-newlines "^1.0.0" 1085 | 1086 | convert-source-map@^1.1.0, convert-source-map@^1.1.2, convert-source-map@^1.2.0: 1087 | version "1.5.0" 1088 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 1089 | 1090 | convert-to-spaces@^1.0.1: 1091 | version "1.0.2" 1092 | resolved "https://registry.yarnpkg.com/convert-to-spaces/-/convert-to-spaces-1.0.2.tgz#7e3e48bbe6d997b1417ddca2868204b4d3d85715" 1093 | 1094 | core-assert@^0.2.0: 1095 | version "0.2.1" 1096 | resolved "https://registry.yarnpkg.com/core-assert/-/core-assert-0.2.1.tgz#f85e2cf9bfed28f773cc8b3fa5c5b69bdc02fe3f" 1097 | dependencies: 1098 | buf-compare "^1.0.0" 1099 | is-error "^2.2.0" 1100 | 1101 | core-js@^2.0.0, core-js@^2.4.0: 1102 | version "2.4.1" 1103 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 1104 | 1105 | core-util-is@~1.0.0: 1106 | version "1.0.2" 1107 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1108 | 1109 | coveralls@^2.11: 1110 | version "2.13.1" 1111 | resolved "https://registry.yarnpkg.com/coveralls/-/coveralls-2.13.1.tgz#d70bb9acc1835ec4f063ff9dac5423c17b11f178" 1112 | dependencies: 1113 | js-yaml "3.6.1" 1114 | lcov-parse "0.0.10" 1115 | log-driver "1.2.5" 1116 | minimist "1.2.0" 1117 | request "2.79.0" 1118 | 1119 | create-error-class@^3.0.1: 1120 | version "3.0.2" 1121 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 1122 | dependencies: 1123 | capture-stack-trace "^1.0.0" 1124 | 1125 | cross-spawn@^4, cross-spawn@^4.0.0: 1126 | version "4.0.2" 1127 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" 1128 | dependencies: 1129 | lru-cache "^4.0.1" 1130 | which "^1.2.9" 1131 | 1132 | cryptiles@2.x.x: 1133 | version "2.0.5" 1134 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1135 | dependencies: 1136 | boom "2.x.x" 1137 | 1138 | currently-unhandled@^0.4.1: 1139 | version "0.4.1" 1140 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 1141 | dependencies: 1142 | array-find-index "^1.0.1" 1143 | 1144 | d@1: 1145 | version "1.0.0" 1146 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 1147 | dependencies: 1148 | es5-ext "^0.10.9" 1149 | 1150 | dargs@^4.0.1: 1151 | version "4.1.0" 1152 | resolved "https://registry.yarnpkg.com/dargs/-/dargs-4.1.0.tgz#03a9dbb4b5c2f139bf14ae53f0b8a2a6a86f4e17" 1153 | dependencies: 1154 | number-is-nan "^1.0.0" 1155 | 1156 | dashdash@^1.12.0: 1157 | version "1.14.1" 1158 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1159 | dependencies: 1160 | assert-plus "^1.0.0" 1161 | 1162 | date-time@^0.1.1: 1163 | version "0.1.1" 1164 | resolved "https://registry.yarnpkg.com/date-time/-/date-time-0.1.1.tgz#ed2f6d93d9790ce2fd66d5b5ff3edd5bbcbf3b07" 1165 | 1166 | dateformat@^1.0.11, dateformat@^1.0.12: 1167 | version "1.0.12" 1168 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-1.0.12.tgz#9f124b67594c937ff706932e4a642cca8dbbfee9" 1169 | dependencies: 1170 | get-stdin "^4.0.1" 1171 | meow "^3.3.0" 1172 | 1173 | debug@^2.1.1, debug@^2.2.0: 1174 | version "2.6.9" 1175 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1176 | dependencies: 1177 | ms "2.0.0" 1178 | 1179 | decamelize@^1.1.1, decamelize@^1.1.2: 1180 | version "1.2.0" 1181 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1182 | 1183 | deep-equal@^1.0.0: 1184 | version "1.0.1" 1185 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" 1186 | 1187 | deep-extend@~0.4.0: 1188 | version "0.4.2" 1189 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1190 | 1191 | deep-is@~0.1.3: 1192 | version "0.1.3" 1193 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1194 | 1195 | default-require-extensions@^1.0.0: 1196 | version "1.0.0" 1197 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 1198 | dependencies: 1199 | strip-bom "^2.0.0" 1200 | 1201 | del@^2.0.2: 1202 | version "2.2.2" 1203 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1204 | dependencies: 1205 | globby "^5.0.0" 1206 | is-path-cwd "^1.0.0" 1207 | is-path-in-cwd "^1.0.0" 1208 | object-assign "^4.0.1" 1209 | pify "^2.0.0" 1210 | pinkie-promise "^2.0.0" 1211 | rimraf "^2.2.8" 1212 | 1213 | delayed-stream@~1.0.0: 1214 | version "1.0.0" 1215 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1216 | 1217 | delegates@^1.0.0: 1218 | version "1.0.0" 1219 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1220 | 1221 | detect-indent@^4.0.0: 1222 | version "4.0.0" 1223 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1224 | dependencies: 1225 | repeating "^2.0.0" 1226 | 1227 | diff@^3.0.0, diff@^3.0.1: 1228 | version "3.2.0" 1229 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 1230 | 1231 | doctrine@^1.2.2: 1232 | version "1.5.0" 1233 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1234 | dependencies: 1235 | esutils "^2.0.2" 1236 | isarray "^1.0.0" 1237 | 1238 | dot-prop@^3.0.0: 1239 | version "3.0.0" 1240 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177" 1241 | dependencies: 1242 | is-obj "^1.0.0" 1243 | 1244 | dot-prop@^4.1.0: 1245 | version "4.1.1" 1246 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.1.1.tgz#a8493f0b7b5eeec82525b5c7587fa7de7ca859c1" 1247 | dependencies: 1248 | is-obj "^1.0.0" 1249 | 1250 | duplexer2@^0.1.4: 1251 | version "0.1.4" 1252 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" 1253 | dependencies: 1254 | readable-stream "^2.0.2" 1255 | 1256 | ecc-jsbn@~0.1.1: 1257 | version "0.1.2" 1258 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" 1259 | dependencies: 1260 | jsbn "~0.1.0" 1261 | safer-buffer "^2.1.0" 1262 | 1263 | empower-core@^0.6.1: 1264 | version "0.6.1" 1265 | resolved "https://registry.yarnpkg.com/empower-core/-/empower-core-0.6.1.tgz#6c187f502fcef7554d57933396aac655483772b1" 1266 | dependencies: 1267 | call-signature "0.0.2" 1268 | core-js "^2.0.0" 1269 | 1270 | equal-length@^1.0.0: 1271 | version "1.0.1" 1272 | resolved "https://registry.yarnpkg.com/equal-length/-/equal-length-1.0.1.tgz#21ca112d48ab24b4e1e7ffc0e5339d31fdfc274c" 1273 | 1274 | error-ex@^1.2.0: 1275 | version "1.3.1" 1276 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1277 | dependencies: 1278 | is-arrayish "^0.2.1" 1279 | 1280 | es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14: 1281 | version "0.10.21" 1282 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.21.tgz#19a725f9e51d0300bbc1e8e821109fd9daf55925" 1283 | dependencies: 1284 | es6-iterator "2" 1285 | es6-symbol "~3.1" 1286 | 1287 | es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1: 1288 | version "2.0.1" 1289 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512" 1290 | dependencies: 1291 | d "1" 1292 | es5-ext "^0.10.14" 1293 | es6-symbol "^3.1" 1294 | 1295 | es6-map@^0.1.3: 1296 | version "0.1.5" 1297 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 1298 | dependencies: 1299 | d "1" 1300 | es5-ext "~0.10.14" 1301 | es6-iterator "~2.0.1" 1302 | es6-set "~0.1.5" 1303 | es6-symbol "~3.1.1" 1304 | event-emitter "~0.3.5" 1305 | 1306 | es6-set@~0.1.5: 1307 | version "0.1.5" 1308 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 1309 | dependencies: 1310 | d "1" 1311 | es5-ext "~0.10.14" 1312 | es6-iterator "~2.0.1" 1313 | es6-symbol "3.1.1" 1314 | event-emitter "~0.3.5" 1315 | 1316 | es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1: 1317 | version "3.1.1" 1318 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 1319 | dependencies: 1320 | d "1" 1321 | es5-ext "~0.10.14" 1322 | 1323 | es6-weak-map@^2.0.1: 1324 | version "2.0.2" 1325 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 1326 | dependencies: 1327 | d "1" 1328 | es5-ext "^0.10.14" 1329 | es6-iterator "^2.0.1" 1330 | es6-symbol "^3.1.1" 1331 | 1332 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.4, escape-string-regexp@^1.0.5: 1333 | version "1.0.5" 1334 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1335 | 1336 | escodegen@1.8.x: 1337 | version "1.8.1" 1338 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 1339 | dependencies: 1340 | esprima "^2.7.1" 1341 | estraverse "^1.9.1" 1342 | esutils "^2.0.2" 1343 | optionator "^0.8.1" 1344 | optionalDependencies: 1345 | source-map "~0.2.0" 1346 | 1347 | escope@^3.6.0: 1348 | version "3.6.0" 1349 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1350 | dependencies: 1351 | es6-map "^0.1.3" 1352 | es6-weak-map "^2.0.1" 1353 | esrecurse "^4.1.0" 1354 | estraverse "^4.1.1" 1355 | 1356 | eslint-config-defaults@^9.0: 1357 | version "9.0.0" 1358 | resolved "https://registry.yarnpkg.com/eslint-config-defaults/-/eslint-config-defaults-9.0.0.tgz#a090adc13b2935e3f43b3cd048a92701654e5ad5" 1359 | 1360 | eslint@^2.8: 1361 | version "2.13.1" 1362 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-2.13.1.tgz#e4cc8fa0f009fb829aaae23855a29360be1f6c11" 1363 | dependencies: 1364 | chalk "^1.1.3" 1365 | concat-stream "^1.4.6" 1366 | debug "^2.1.1" 1367 | doctrine "^1.2.2" 1368 | es6-map "^0.1.3" 1369 | escope "^3.6.0" 1370 | espree "^3.1.6" 1371 | estraverse "^4.2.0" 1372 | esutils "^2.0.2" 1373 | file-entry-cache "^1.1.1" 1374 | glob "^7.0.3" 1375 | globals "^9.2.0" 1376 | ignore "^3.1.2" 1377 | imurmurhash "^0.1.4" 1378 | inquirer "^0.12.0" 1379 | is-my-json-valid "^2.10.0" 1380 | is-resolvable "^1.0.0" 1381 | js-yaml "^3.5.1" 1382 | json-stable-stringify "^1.0.0" 1383 | levn "^0.3.0" 1384 | lodash "^4.0.0" 1385 | mkdirp "^0.5.0" 1386 | optionator "^0.8.1" 1387 | path-is-absolute "^1.0.0" 1388 | path-is-inside "^1.0.1" 1389 | pluralize "^1.2.1" 1390 | progress "^1.1.8" 1391 | require-uncached "^1.0.2" 1392 | shelljs "^0.6.0" 1393 | strip-json-comments "~1.0.1" 1394 | table "^3.7.8" 1395 | text-table "~0.2.0" 1396 | user-home "^2.0.0" 1397 | 1398 | espower-location-detector@^1.0.0: 1399 | version "1.0.0" 1400 | resolved "https://registry.yarnpkg.com/espower-location-detector/-/espower-location-detector-1.0.0.tgz#a17b7ecc59d30e179e2bef73fb4137704cb331b5" 1401 | dependencies: 1402 | is-url "^1.2.1" 1403 | path-is-absolute "^1.0.0" 1404 | source-map "^0.5.0" 1405 | xtend "^4.0.0" 1406 | 1407 | espree@^3.1.6: 1408 | version "3.4.3" 1409 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.3.tgz#2910b5ccd49ce893c2ffffaab4fd8b3a31b82374" 1410 | dependencies: 1411 | acorn "^5.0.1" 1412 | acorn-jsx "^3.0.0" 1413 | 1414 | esprima@2.7.x, esprima@^2.6.0, esprima@^2.7.1: 1415 | version "2.7.3" 1416 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1417 | 1418 | espurify@^1.6.0: 1419 | version "1.7.0" 1420 | resolved "https://registry.yarnpkg.com/espurify/-/espurify-1.7.0.tgz#1c5cf6cbccc32e6f639380bd4f991fab9ba9d226" 1421 | dependencies: 1422 | core-js "^2.0.0" 1423 | 1424 | esrecurse@^4.1.0: 1425 | version "4.1.0" 1426 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 1427 | dependencies: 1428 | estraverse "~4.1.0" 1429 | object-assign "^4.0.1" 1430 | 1431 | estraverse@^1.9.1: 1432 | version "1.9.3" 1433 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 1434 | 1435 | estraverse@^4.0.0, estraverse@^4.1.1, estraverse@^4.2.0: 1436 | version "4.2.0" 1437 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1438 | 1439 | estraverse@~4.1.0: 1440 | version "4.1.1" 1441 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 1442 | 1443 | estree-walker@^0.2.1: 1444 | version "0.2.1" 1445 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.2.1.tgz#bdafe8095383d8414d5dc2ecf4c9173b6db9412e" 1446 | 1447 | esutils@^2.0.2: 1448 | version "2.0.2" 1449 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1450 | 1451 | event-emitter@~0.3.5: 1452 | version "0.3.5" 1453 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 1454 | dependencies: 1455 | d "1" 1456 | es5-ext "~0.10.14" 1457 | 1458 | execa@^0.5.0: 1459 | version "0.5.1" 1460 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.5.1.tgz#de3fb85cb8d6e91c85bcbceb164581785cb57b36" 1461 | dependencies: 1462 | cross-spawn "^4.0.0" 1463 | get-stream "^2.2.0" 1464 | is-stream "^1.1.0" 1465 | npm-run-path "^2.0.0" 1466 | p-finally "^1.0.0" 1467 | signal-exit "^3.0.0" 1468 | strip-eof "^1.0.0" 1469 | 1470 | exit-hook@^1.0.0: 1471 | version "1.1.1" 1472 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1473 | 1474 | expand-brackets@^0.1.4: 1475 | version "0.1.5" 1476 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1477 | dependencies: 1478 | is-posix-bracket "^0.1.0" 1479 | 1480 | expand-range@^1.8.1: 1481 | version "1.8.2" 1482 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1483 | dependencies: 1484 | fill-range "^2.1.0" 1485 | 1486 | extend@~3.0.0: 1487 | version "3.0.2" 1488 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 1489 | 1490 | extglob@^0.3.1: 1491 | version "0.3.2" 1492 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1493 | dependencies: 1494 | is-extglob "^1.0.0" 1495 | 1496 | extsprintf@1.0.2: 1497 | version "1.0.2" 1498 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1499 | 1500 | fast-levenshtein@~2.0.4: 1501 | version "2.0.6" 1502 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1503 | 1504 | figures@^1.3.5: 1505 | version "1.7.0" 1506 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1507 | dependencies: 1508 | escape-string-regexp "^1.0.5" 1509 | object-assign "^4.1.0" 1510 | 1511 | figures@^2.0.0: 1512 | version "2.0.0" 1513 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1514 | dependencies: 1515 | escape-string-regexp "^1.0.5" 1516 | 1517 | file-entry-cache@^1.1.1: 1518 | version "1.3.1" 1519 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-1.3.1.tgz#44c61ea607ae4be9c1402f41f44270cbfe334ff8" 1520 | dependencies: 1521 | flat-cache "^1.2.1" 1522 | object-assign "^4.0.1" 1523 | 1524 | filename-regex@^2.0.0: 1525 | version "2.0.1" 1526 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1527 | 1528 | fill-range@^2.1.0: 1529 | version "2.2.3" 1530 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1531 | dependencies: 1532 | is-number "^2.1.0" 1533 | isobject "^2.0.0" 1534 | randomatic "^1.1.3" 1535 | repeat-element "^1.1.2" 1536 | repeat-string "^1.5.2" 1537 | 1538 | filled-array@^1.0.0: 1539 | version "1.1.0" 1540 | resolved "https://registry.yarnpkg.com/filled-array/-/filled-array-1.1.0.tgz#c3c4f6c663b923459a9aa29912d2d031f1507f84" 1541 | 1542 | find-cache-dir@^0.1.1: 1543 | version "0.1.1" 1544 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" 1545 | dependencies: 1546 | commondir "^1.0.1" 1547 | mkdirp "^0.5.1" 1548 | pkg-dir "^1.0.0" 1549 | 1550 | find-up@^1.0.0, find-up@^1.1.2: 1551 | version "1.1.2" 1552 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1553 | dependencies: 1554 | path-exists "^2.0.0" 1555 | pinkie-promise "^2.0.0" 1556 | 1557 | find-up@^2.0.0: 1558 | version "2.1.0" 1559 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1560 | dependencies: 1561 | locate-path "^2.0.0" 1562 | 1563 | flat-cache@^1.2.1: 1564 | version "1.2.2" 1565 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 1566 | dependencies: 1567 | circular-json "^0.3.1" 1568 | del "^2.0.2" 1569 | graceful-fs "^4.1.2" 1570 | write "^0.2.1" 1571 | 1572 | fn-name@^2.0.0: 1573 | version "2.0.1" 1574 | resolved "https://registry.yarnpkg.com/fn-name/-/fn-name-2.0.1.tgz#5214d7537a4d06a4a301c0cc262feb84188002e7" 1575 | 1576 | for-in@^1.0.1: 1577 | version "1.0.2" 1578 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1579 | 1580 | for-own@^0.1.4: 1581 | version "0.1.5" 1582 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1583 | dependencies: 1584 | for-in "^1.0.1" 1585 | 1586 | foreground-child@^1.5.1, foreground-child@^1.5.6: 1587 | version "1.5.6" 1588 | resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-1.5.6.tgz#4fd71ad2dfde96789b980a5c0a295937cb2f5ce9" 1589 | dependencies: 1590 | cross-spawn "^4" 1591 | signal-exit "^3.0.0" 1592 | 1593 | forever-agent@~0.6.1: 1594 | version "0.6.1" 1595 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1596 | 1597 | form-data@~2.1.1: 1598 | version "2.1.4" 1599 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1600 | dependencies: 1601 | asynckit "^0.4.0" 1602 | combined-stream "^1.0.5" 1603 | mime-types "^2.1.12" 1604 | 1605 | fs.realpath@^1.0.0: 1606 | version "1.0.0" 1607 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1608 | 1609 | fsevents@^1.0.0: 1610 | version "1.1.1" 1611 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" 1612 | dependencies: 1613 | nan "^2.3.0" 1614 | node-pre-gyp "^0.6.29" 1615 | 1616 | fstream-ignore@^1.0.5: 1617 | version "1.0.5" 1618 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1619 | dependencies: 1620 | fstream "^1.0.0" 1621 | inherits "2" 1622 | minimatch "^3.0.0" 1623 | 1624 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.12: 1625 | version "1.0.12" 1626 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.12.tgz#4e8ba8ee2d48be4f7d0de505455548eae5932045" 1627 | dependencies: 1628 | graceful-fs "^4.1.2" 1629 | inherits "~2.0.0" 1630 | mkdirp ">=0.5 0" 1631 | rimraf "2" 1632 | 1633 | gauge@~2.7.3: 1634 | version "2.7.4" 1635 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1636 | dependencies: 1637 | aproba "^1.0.3" 1638 | console-control-strings "^1.0.0" 1639 | has-unicode "^2.0.0" 1640 | object-assign "^4.1.0" 1641 | signal-exit "^3.0.0" 1642 | string-width "^1.0.1" 1643 | strip-ansi "^3.0.1" 1644 | wide-align "^1.1.0" 1645 | 1646 | generate-function@^2.0.0: 1647 | version "2.3.1" 1648 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.3.1.tgz#f069617690c10c868e73b8465746764f97c3479f" 1649 | dependencies: 1650 | is-property "^1.0.2" 1651 | 1652 | generate-object-property@^1.1.0: 1653 | version "1.2.0" 1654 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1655 | dependencies: 1656 | is-property "^1.0.0" 1657 | 1658 | get-caller-file@^1.0.1: 1659 | version "1.0.2" 1660 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1661 | 1662 | get-pkg-repo@^1.0.0: 1663 | version "1.3.0" 1664 | resolved "https://registry.yarnpkg.com/get-pkg-repo/-/get-pkg-repo-1.3.0.tgz#43c6b4c048b75dd604fc5388edecde557f6335df" 1665 | dependencies: 1666 | hosted-git-info "^2.1.4" 1667 | meow "^3.3.0" 1668 | normalize-package-data "^2.3.0" 1669 | parse-github-repo-url "^1.3.0" 1670 | through2 "^2.0.0" 1671 | 1672 | get-port@^2.1.0: 1673 | version "2.1.0" 1674 | resolved "https://registry.yarnpkg.com/get-port/-/get-port-2.1.0.tgz#8783f9dcebd1eea495a334e1a6a251e78887ab1a" 1675 | dependencies: 1676 | pinkie-promise "^2.0.0" 1677 | 1678 | get-stdin@^4.0.1: 1679 | version "4.0.1" 1680 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1681 | 1682 | get-stream@^2.2.0: 1683 | version "2.3.1" 1684 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-2.3.1.tgz#5f38f93f346009666ee0150a054167f91bdd95de" 1685 | dependencies: 1686 | object-assign "^4.0.1" 1687 | pinkie-promise "^2.0.0" 1688 | 1689 | getpass@^0.1.1: 1690 | version "0.1.7" 1691 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1692 | dependencies: 1693 | assert-plus "^1.0.0" 1694 | 1695 | git-raw-commits@^1.2.0: 1696 | version "1.2.0" 1697 | resolved "https://registry.yarnpkg.com/git-raw-commits/-/git-raw-commits-1.2.0.tgz#0f3a8bfd99ae0f2d8b9224d58892975e9a52d03c" 1698 | dependencies: 1699 | dargs "^4.0.1" 1700 | lodash.template "^4.0.2" 1701 | meow "^3.3.0" 1702 | split2 "^2.0.0" 1703 | through2 "^2.0.0" 1704 | 1705 | git-remote-origin-url@^2.0.0: 1706 | version "2.0.0" 1707 | resolved "https://registry.yarnpkg.com/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz#5282659dae2107145a11126112ad3216ec5fa65f" 1708 | dependencies: 1709 | gitconfiglocal "^1.0.0" 1710 | pify "^2.3.0" 1711 | 1712 | git-semver-tags@^1.2.0: 1713 | version "1.2.0" 1714 | resolved "https://registry.yarnpkg.com/git-semver-tags/-/git-semver-tags-1.2.0.tgz#b31fd02c8ab578bd6c9b5cacca5e1c64c1177ac1" 1715 | dependencies: 1716 | meow "^3.3.0" 1717 | semver "^5.0.1" 1718 | 1719 | gitconfiglocal@^1.0.0: 1720 | version "1.0.0" 1721 | resolved "https://registry.yarnpkg.com/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz#41d045f3851a5ea88f03f24ca1c6178114464b9b" 1722 | dependencies: 1723 | ini "^1.3.2" 1724 | 1725 | github-url-from-git@^1.4.0: 1726 | version "1.5.0" 1727 | resolved "https://registry.yarnpkg.com/github-url-from-git/-/github-url-from-git-1.5.0.tgz#f985fedcc0a9aa579dc88d7aff068d55cc6251a0" 1728 | 1729 | glob-base@^0.3.0: 1730 | version "0.3.0" 1731 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1732 | dependencies: 1733 | glob-parent "^2.0.0" 1734 | is-glob "^2.0.0" 1735 | 1736 | glob-parent@^2.0.0: 1737 | version "2.0.0" 1738 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1739 | dependencies: 1740 | is-glob "^2.0.0" 1741 | 1742 | glob@^5.0.15: 1743 | version "5.0.15" 1744 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 1745 | dependencies: 1746 | inflight "^1.0.4" 1747 | inherits "2" 1748 | minimatch "2 || 3" 1749 | once "^1.3.0" 1750 | path-is-absolute "^1.0.0" 1751 | 1752 | glob@^7.0.3, glob@^7.0.5: 1753 | version "7.1.2" 1754 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1755 | dependencies: 1756 | fs.realpath "^1.0.0" 1757 | inflight "^1.0.4" 1758 | inherits "2" 1759 | minimatch "^3.0.4" 1760 | once "^1.3.0" 1761 | path-is-absolute "^1.0.0" 1762 | 1763 | glob@^7.1.3: 1764 | version "7.1.6" 1765 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 1766 | dependencies: 1767 | fs.realpath "^1.0.0" 1768 | inflight "^1.0.4" 1769 | inherits "2" 1770 | minimatch "^3.0.4" 1771 | once "^1.3.0" 1772 | path-is-absolute "^1.0.0" 1773 | 1774 | globals@^9.0.0, globals@^9.2.0: 1775 | version "9.17.0" 1776 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 1777 | 1778 | globby@^5.0.0: 1779 | version "5.0.0" 1780 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1781 | dependencies: 1782 | array-union "^1.0.1" 1783 | arrify "^1.0.0" 1784 | glob "^7.0.3" 1785 | object-assign "^4.0.1" 1786 | pify "^2.0.0" 1787 | pinkie-promise "^2.0.0" 1788 | 1789 | globby@^6.0.0: 1790 | version "6.1.0" 1791 | resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" 1792 | dependencies: 1793 | array-union "^1.0.1" 1794 | glob "^7.0.3" 1795 | object-assign "^4.0.1" 1796 | pify "^2.0.0" 1797 | pinkie-promise "^2.0.0" 1798 | 1799 | got@^5.0.0: 1800 | version "5.7.1" 1801 | resolved "https://registry.yarnpkg.com/got/-/got-5.7.1.tgz#5f81635a61e4a6589f180569ea4e381680a51f35" 1802 | dependencies: 1803 | create-error-class "^3.0.1" 1804 | duplexer2 "^0.1.4" 1805 | is-redirect "^1.0.0" 1806 | is-retry-allowed "^1.0.0" 1807 | is-stream "^1.0.0" 1808 | lowercase-keys "^1.0.0" 1809 | node-status-codes "^1.0.0" 1810 | object-assign "^4.0.1" 1811 | parse-json "^2.1.0" 1812 | pinkie-promise "^2.0.0" 1813 | read-all-stream "^3.0.0" 1814 | readable-stream "^2.0.5" 1815 | timed-out "^3.0.0" 1816 | unzip-response "^1.0.2" 1817 | url-parse-lax "^1.0.0" 1818 | 1819 | graceful-fs@^4.1.11, graceful-fs@^4.1.6: 1820 | version "4.1.11" 1821 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1822 | 1823 | graceful-fs@^4.1.2: 1824 | version "4.2.4" 1825 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" 1826 | 1827 | "graceful-readlink@>= 1.0.0": 1828 | version "1.0.1" 1829 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1830 | 1831 | handlebars@^4.0.1, handlebars@^4.0.2: 1832 | version "4.7.6" 1833 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.6.tgz#d4c05c1baf90e9945f77aa68a7a219aa4a7df74e" 1834 | dependencies: 1835 | minimist "^1.2.5" 1836 | neo-async "^2.6.0" 1837 | source-map "^0.6.1" 1838 | wordwrap "^1.0.0" 1839 | optionalDependencies: 1840 | uglify-js "^3.1.4" 1841 | 1842 | har-schema@^1.0.5: 1843 | version "1.0.5" 1844 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1845 | 1846 | har-validator@~2.0.6: 1847 | version "2.0.6" 1848 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 1849 | dependencies: 1850 | chalk "^1.1.1" 1851 | commander "^2.9.0" 1852 | is-my-json-valid "^2.12.4" 1853 | pinkie-promise "^2.0.0" 1854 | 1855 | har-validator@~4.2.1: 1856 | version "4.2.1" 1857 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1858 | dependencies: 1859 | ajv "^4.9.1" 1860 | har-schema "^1.0.5" 1861 | 1862 | has-ansi@^2.0.0: 1863 | version "2.0.0" 1864 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1865 | dependencies: 1866 | ansi-regex "^2.0.0" 1867 | 1868 | has-color@~0.1.0: 1869 | version "0.1.7" 1870 | resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f" 1871 | 1872 | has-flag@^1.0.0: 1873 | version "1.0.0" 1874 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1875 | 1876 | has-flag@^2.0.0: 1877 | version "2.0.0" 1878 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1879 | 1880 | has-unicode@^2.0.0: 1881 | version "2.0.1" 1882 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1883 | 1884 | has-yarn@^1.0.0: 1885 | version "1.0.0" 1886 | resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-1.0.0.tgz#89e25db604b725c8f5976fff0addc921b828a5a7" 1887 | 1888 | hawk@~3.1.3: 1889 | version "3.1.3" 1890 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1891 | dependencies: 1892 | boom "2.x.x" 1893 | cryptiles "2.x.x" 1894 | hoek "2.x.x" 1895 | sntp "1.x.x" 1896 | 1897 | hoek@2.x.x: 1898 | version "2.16.3" 1899 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1900 | 1901 | home-or-tmp@^2.0.0: 1902 | version "2.0.0" 1903 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1904 | dependencies: 1905 | os-homedir "^1.0.0" 1906 | os-tmpdir "^1.0.1" 1907 | 1908 | hosted-git-info@^2.1.4: 1909 | version "2.8.9" 1910 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" 1911 | 1912 | http-signature@~1.1.0: 1913 | version "1.1.1" 1914 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1915 | dependencies: 1916 | assert-plus "^0.2.0" 1917 | jsprim "^1.2.2" 1918 | sshpk "^1.7.0" 1919 | 1920 | ignore-by-default@^1.0.0: 1921 | version "1.0.1" 1922 | resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" 1923 | 1924 | ignore@^3.1.2: 1925 | version "3.3.3" 1926 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.3.tgz#432352e57accd87ab3110e82d3fea0e47812156d" 1927 | 1928 | imurmurhash@^0.1.4: 1929 | version "0.1.4" 1930 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1931 | 1932 | indent-string@^2.1.0: 1933 | version "2.1.0" 1934 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1935 | dependencies: 1936 | repeating "^2.0.0" 1937 | 1938 | indent-string@^3.0.0: 1939 | version "3.1.0" 1940 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.1.0.tgz#08ff4334603388399b329e6b9538dc7a3cf5de7d" 1941 | 1942 | inflight@^1.0.4: 1943 | version "1.0.6" 1944 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1945 | dependencies: 1946 | once "^1.3.0" 1947 | wrappy "1" 1948 | 1949 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1: 1950 | version "2.0.4" 1951 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1952 | 1953 | ini@^1.3.2, ini@~1.3.0: 1954 | version "1.3.8" 1955 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" 1956 | 1957 | inquirer@^0.12.0: 1958 | version "0.12.0" 1959 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 1960 | dependencies: 1961 | ansi-escapes "^1.1.0" 1962 | ansi-regex "^2.0.0" 1963 | chalk "^1.0.0" 1964 | cli-cursor "^1.0.1" 1965 | cli-width "^2.0.0" 1966 | figures "^1.3.5" 1967 | lodash "^4.3.0" 1968 | readline2 "^1.0.1" 1969 | run-async "^0.1.0" 1970 | rx-lite "^3.1.2" 1971 | string-width "^1.0.1" 1972 | strip-ansi "^3.0.0" 1973 | through "^2.3.6" 1974 | 1975 | invariant@^2.2.0: 1976 | version "2.2.2" 1977 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1978 | dependencies: 1979 | loose-envify "^1.0.0" 1980 | 1981 | invert-kv@^1.0.0: 1982 | version "1.0.0" 1983 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1984 | 1985 | irregular-plurals@^1.0.0: 1986 | version "1.2.0" 1987 | resolved "https://registry.yarnpkg.com/irregular-plurals/-/irregular-plurals-1.2.0.tgz#38f299834ba8c00c30be9c554e137269752ff3ac" 1988 | 1989 | is-arrayish@^0.2.1: 1990 | version "0.2.1" 1991 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1992 | 1993 | is-binary-path@^1.0.0: 1994 | version "1.0.1" 1995 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1996 | dependencies: 1997 | binary-extensions "^1.0.0" 1998 | 1999 | is-buffer@^1.1.5: 2000 | version "1.1.5" 2001 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 2002 | 2003 | is-builtin-module@^1.0.0: 2004 | version "1.0.0" 2005 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 2006 | dependencies: 2007 | builtin-modules "^1.0.0" 2008 | 2009 | is-ci@^1.0.7: 2010 | version "1.0.10" 2011 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 2012 | dependencies: 2013 | ci-info "^1.0.0" 2014 | 2015 | is-dotfile@^1.0.0: 2016 | version "1.0.2" 2017 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 2018 | 2019 | is-equal-shallow@^0.1.3: 2020 | version "0.1.3" 2021 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 2022 | dependencies: 2023 | is-primitive "^2.0.0" 2024 | 2025 | is-error@^2.2.0: 2026 | version "2.2.1" 2027 | resolved "https://registry.yarnpkg.com/is-error/-/is-error-2.2.1.tgz#684a96d84076577c98f4cdb40c6d26a5123bf19c" 2028 | 2029 | is-extendable@^0.1.1: 2030 | version "0.1.1" 2031 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2032 | 2033 | is-extglob@^1.0.0: 2034 | version "1.0.0" 2035 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 2036 | 2037 | is-finite@^1.0.0, is-finite@^1.0.1: 2038 | version "1.0.2" 2039 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 2040 | dependencies: 2041 | number-is-nan "^1.0.0" 2042 | 2043 | is-fullwidth-code-point@^1.0.0: 2044 | version "1.0.0" 2045 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2046 | dependencies: 2047 | number-is-nan "^1.0.0" 2048 | 2049 | is-fullwidth-code-point@^2.0.0: 2050 | version "2.0.0" 2051 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 2052 | 2053 | is-generator-fn@^1.0.0: 2054 | version "1.0.0" 2055 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a" 2056 | 2057 | is-glob@^2.0.0, is-glob@^2.0.1: 2058 | version "2.0.1" 2059 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 2060 | dependencies: 2061 | is-extglob "^1.0.0" 2062 | 2063 | is-my-ip-valid@^1.0.0: 2064 | version "1.0.0" 2065 | resolved "https://registry.yarnpkg.com/is-my-ip-valid/-/is-my-ip-valid-1.0.0.tgz#7b351b8e8edd4d3995d4d066680e664d94696824" 2066 | 2067 | is-my-json-valid@^2.10.0, is-my-json-valid@^2.12.4: 2068 | version "2.20.5" 2069 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.20.5.tgz#5eca6a8232a687f68869b7361be1612e7512e5df" 2070 | dependencies: 2071 | generate-function "^2.0.0" 2072 | generate-object-property "^1.1.0" 2073 | is-my-ip-valid "^1.0.0" 2074 | jsonpointer "^4.0.0" 2075 | xtend "^4.0.0" 2076 | 2077 | is-npm@^1.0.0: 2078 | version "1.0.0" 2079 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 2080 | 2081 | is-number@^2.0.2, is-number@^2.1.0: 2082 | version "2.1.0" 2083 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2084 | dependencies: 2085 | kind-of "^3.0.2" 2086 | 2087 | is-obj@^1.0.0: 2088 | version "1.0.1" 2089 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 2090 | 2091 | is-observable@^0.2.0: 2092 | version "0.2.0" 2093 | resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-0.2.0.tgz#b361311d83c6e5d726cabf5e250b0237106f5ae2" 2094 | dependencies: 2095 | symbol-observable "^0.2.2" 2096 | 2097 | is-path-cwd@^1.0.0: 2098 | version "1.0.0" 2099 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 2100 | 2101 | is-path-in-cwd@^1.0.0: 2102 | version "1.0.0" 2103 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 2104 | dependencies: 2105 | is-path-inside "^1.0.0" 2106 | 2107 | is-path-inside@^1.0.0: 2108 | version "1.0.0" 2109 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 2110 | dependencies: 2111 | path-is-inside "^1.0.1" 2112 | 2113 | is-plain-obj@^1.0.0: 2114 | version "1.1.0" 2115 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 2116 | 2117 | is-posix-bracket@^0.1.0: 2118 | version "0.1.1" 2119 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2120 | 2121 | is-primitive@^2.0.0: 2122 | version "2.0.0" 2123 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2124 | 2125 | is-promise@^2.1.0: 2126 | version "2.1.0" 2127 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 2128 | 2129 | is-property@^1.0.0, is-property@^1.0.2: 2130 | version "1.0.2" 2131 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 2132 | 2133 | is-redirect@^1.0.0: 2134 | version "1.0.0" 2135 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 2136 | 2137 | is-resolvable@^1.0.0: 2138 | version "1.0.0" 2139 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 2140 | dependencies: 2141 | tryit "^1.0.1" 2142 | 2143 | is-retry-allowed@^1.0.0: 2144 | version "1.1.0" 2145 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 2146 | 2147 | is-stream@^1.0.0, is-stream@^1.1.0: 2148 | version "1.1.0" 2149 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2150 | 2151 | is-subset@^0.1.1: 2152 | version "0.1.1" 2153 | resolved "https://registry.yarnpkg.com/is-subset/-/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6" 2154 | 2155 | is-text-path@^1.0.0: 2156 | version "1.0.1" 2157 | resolved "https://registry.yarnpkg.com/is-text-path/-/is-text-path-1.0.1.tgz#4e1aa0fb51bfbcb3e92688001397202c1775b66e" 2158 | dependencies: 2159 | text-extensions "^1.0.0" 2160 | 2161 | is-typedarray@~1.0.0: 2162 | version "1.0.0" 2163 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2164 | 2165 | is-url@^1.2.1: 2166 | version "1.2.2" 2167 | resolved "https://registry.yarnpkg.com/is-url/-/is-url-1.2.2.tgz#498905a593bf47cc2d9e7f738372bbf7696c7f26" 2168 | 2169 | is-utf8@^0.2.0, is-utf8@^0.2.1: 2170 | version "0.2.1" 2171 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2172 | 2173 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2174 | version "1.0.0" 2175 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2176 | 2177 | isexe@^2.0.0: 2178 | version "2.0.0" 2179 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2180 | 2181 | isobject@^2.0.0: 2182 | version "2.1.0" 2183 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2184 | dependencies: 2185 | isarray "1.0.0" 2186 | 2187 | isstream@~0.1.2: 2188 | version "0.1.2" 2189 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2190 | 2191 | istanbul@^0.4.3: 2192 | version "0.4.5" 2193 | resolved "https://registry.yarnpkg.com/istanbul/-/istanbul-0.4.5.tgz#65c7d73d4c4da84d4f3ac310b918fb0b8033733b" 2194 | dependencies: 2195 | abbrev "1.0.x" 2196 | async "1.x" 2197 | escodegen "1.8.x" 2198 | esprima "2.7.x" 2199 | glob "^5.0.15" 2200 | handlebars "^4.0.1" 2201 | js-yaml "3.x" 2202 | mkdirp "0.5.x" 2203 | nopt "3.x" 2204 | once "1.x" 2205 | resolve "1.1.x" 2206 | supports-color "^3.1.0" 2207 | which "^1.1.1" 2208 | wordwrap "^1.0.0" 2209 | 2210 | jest-diff@^18.1.0: 2211 | version "18.1.0" 2212 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-18.1.0.tgz#4ff79e74dd988c139195b365dc65d87f606f4803" 2213 | dependencies: 2214 | chalk "^1.1.3" 2215 | diff "^3.0.0" 2216 | jest-matcher-utils "^18.1.0" 2217 | pretty-format "^18.1.0" 2218 | 2219 | jest-file-exists@^17.0.0: 2220 | version "17.0.0" 2221 | resolved "https://registry.yarnpkg.com/jest-file-exists/-/jest-file-exists-17.0.0.tgz#7f63eb73a1c43a13f461be261768b45af2cdd169" 2222 | 2223 | jest-matcher-utils@^18.1.0: 2224 | version "18.1.0" 2225 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-18.1.0.tgz#1ac4651955ee2a60cef1e7fcc98cdfd773c0f932" 2226 | dependencies: 2227 | chalk "^1.1.3" 2228 | pretty-format "^18.1.0" 2229 | 2230 | jest-mock@^18.0.0: 2231 | version "18.0.0" 2232 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-18.0.0.tgz#5c248846ea33fa558b526f5312ab4a6765e489b3" 2233 | 2234 | jest-snapshot@^18.1.0: 2235 | version "18.1.0" 2236 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-18.1.0.tgz#55b96d2ee639c9bce76f87f2a3fd40b71c7a5916" 2237 | dependencies: 2238 | jest-diff "^18.1.0" 2239 | jest-file-exists "^17.0.0" 2240 | jest-matcher-utils "^18.1.0" 2241 | jest-util "^18.1.0" 2242 | natural-compare "^1.4.0" 2243 | pretty-format "^18.1.0" 2244 | 2245 | jest-util@^18.1.0: 2246 | version "18.1.0" 2247 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-18.1.0.tgz#3a99c32114ab17f84be094382527006e6d4bfc6a" 2248 | dependencies: 2249 | chalk "^1.1.1" 2250 | diff "^3.0.0" 2251 | graceful-fs "^4.1.6" 2252 | jest-file-exists "^17.0.0" 2253 | jest-mock "^18.0.0" 2254 | mkdirp "^0.5.1" 2255 | 2256 | js-tokens@^3.0.0: 2257 | version "3.0.1" 2258 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 2259 | 2260 | js-yaml@3.6.1, js-yaml@3.x, js-yaml@^3.5.1: 2261 | version "3.6.1" 2262 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.6.1.tgz#6e5fe67d8b205ce4d22fad05b7781e8dadcc4b30" 2263 | dependencies: 2264 | argparse "^1.0.7" 2265 | esprima "^2.6.0" 2266 | 2267 | jsbn@~0.1.0: 2268 | version "0.1.1" 2269 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2270 | 2271 | jsesc@^1.3.0: 2272 | version "1.3.0" 2273 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2274 | 2275 | jsesc@~0.5.0: 2276 | version "0.5.0" 2277 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2278 | 2279 | json-schema@0.2.3: 2280 | version "0.2.3" 2281 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2282 | 2283 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 2284 | version "1.0.1" 2285 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2286 | dependencies: 2287 | jsonify "~0.0.0" 2288 | 2289 | json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1: 2290 | version "5.0.1" 2291 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2292 | 2293 | json5@^0.5.0: 2294 | version "0.5.1" 2295 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2296 | 2297 | jsonify@~0.0.0: 2298 | version "0.0.0" 2299 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2300 | 2301 | jsonparse@^1.2.0: 2302 | version "1.3.1" 2303 | resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" 2304 | 2305 | jsonpointer@^4.0.0: 2306 | version "4.1.0" 2307 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.1.0.tgz#501fb89986a2389765ba09e6053299ceb4f2c2cc" 2308 | 2309 | jsprim@^1.2.2: 2310 | version "1.4.0" 2311 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 2312 | dependencies: 2313 | assert-plus "1.0.0" 2314 | extsprintf "1.0.2" 2315 | json-schema "0.2.3" 2316 | verror "1.3.6" 2317 | 2318 | kind-of@^3.0.2: 2319 | version "3.2.2" 2320 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2321 | dependencies: 2322 | is-buffer "^1.1.5" 2323 | 2324 | last-line-stream@^1.0.0: 2325 | version "1.0.0" 2326 | resolved "https://registry.yarnpkg.com/last-line-stream/-/last-line-stream-1.0.0.tgz#d1b64d69f86ff24af2d04883a2ceee14520a5600" 2327 | dependencies: 2328 | through2 "^2.0.0" 2329 | 2330 | latest-version@^2.0.0: 2331 | version "2.0.0" 2332 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-2.0.0.tgz#56f8d6139620847b8017f8f1f4d78e211324168b" 2333 | dependencies: 2334 | package-json "^2.0.0" 2335 | 2336 | lazy-req@^1.1.0: 2337 | version "1.1.0" 2338 | resolved "https://registry.yarnpkg.com/lazy-req/-/lazy-req-1.1.0.tgz#bdaebead30f8d824039ce0ce149d4daa07ba1fac" 2339 | 2340 | lcid@^1.0.0: 2341 | version "1.0.0" 2342 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2343 | dependencies: 2344 | invert-kv "^1.0.0" 2345 | 2346 | lcov-parse@0.0.10: 2347 | version "0.0.10" 2348 | resolved "https://registry.yarnpkg.com/lcov-parse/-/lcov-parse-0.0.10.tgz#1b0b8ff9ac9c7889250582b70b71315d9da6d9a3" 2349 | 2350 | levn@^0.3.0, levn@~0.3.0: 2351 | version "0.3.0" 2352 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2353 | dependencies: 2354 | prelude-ls "~1.1.2" 2355 | type-check "~0.3.2" 2356 | 2357 | load-json-file@^1.0.0: 2358 | version "1.1.0" 2359 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2360 | dependencies: 2361 | graceful-fs "^4.1.2" 2362 | parse-json "^2.2.0" 2363 | pify "^2.0.0" 2364 | pinkie-promise "^2.0.0" 2365 | strip-bom "^2.0.0" 2366 | 2367 | load-json-file@^2.0.0: 2368 | version "2.0.0" 2369 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2370 | dependencies: 2371 | graceful-fs "^4.1.2" 2372 | parse-json "^2.2.0" 2373 | pify "^2.0.0" 2374 | strip-bom "^3.0.0" 2375 | 2376 | locate-path@^2.0.0: 2377 | version "2.0.0" 2378 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2379 | dependencies: 2380 | p-locate "^2.0.0" 2381 | path-exists "^3.0.0" 2382 | 2383 | lodash._reinterpolate@^3.0.0: 2384 | version "3.0.0" 2385 | resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" 2386 | 2387 | lodash.assign@^4.0.0, lodash.assign@^4.0.3, lodash.assign@^4.0.6, lodash.assign@^4.0.9: 2388 | version "4.2.0" 2389 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" 2390 | 2391 | lodash.debounce@^4.0.3: 2392 | version "4.0.8" 2393 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" 2394 | 2395 | lodash.difference@^4.3.0: 2396 | version "4.5.0" 2397 | resolved "https://registry.yarnpkg.com/lodash.difference/-/lodash.difference-4.5.0.tgz#9ccb4e505d486b91651345772885a2df27fd017c" 2398 | 2399 | lodash.flatten@^4.2.0: 2400 | version "4.4.0" 2401 | resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" 2402 | 2403 | lodash.isequal@^4.5.0: 2404 | version "4.5.0" 2405 | resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" 2406 | 2407 | lodash.pickby@^4.0.0: 2408 | version "4.6.0" 2409 | resolved "https://registry.yarnpkg.com/lodash.pickby/-/lodash.pickby-4.6.0.tgz#7dea21d8c18d7703a27c704c15d3b84a67e33aff" 2410 | 2411 | lodash.template@^4.0.2: 2412 | version "4.5.0" 2413 | resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.5.0.tgz#f976195cf3f347d0d5f52483569fe8031ccce8ab" 2414 | dependencies: 2415 | lodash._reinterpolate "^3.0.0" 2416 | lodash.templatesettings "^4.0.0" 2417 | 2418 | lodash.templatesettings@^4.0.0: 2419 | version "4.2.0" 2420 | resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz#e481310f049d3cf6d47e912ad09313b154f0fb33" 2421 | dependencies: 2422 | lodash._reinterpolate "^3.0.0" 2423 | 2424 | lodash@^4.0.0, lodash@^4.1.0, lodash@^4.2.0, lodash@^4.2.1, lodash@^4.3.0: 2425 | version "4.17.20" 2426 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52" 2427 | 2428 | log-driver@1.2.5: 2429 | version "1.2.5" 2430 | resolved "https://registry.yarnpkg.com/log-driver/-/log-driver-1.2.5.tgz#7ae4ec257302fd790d557cb10c97100d857b0056" 2431 | 2432 | loose-envify@^1.0.0: 2433 | version "1.3.1" 2434 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2435 | dependencies: 2436 | js-tokens "^3.0.0" 2437 | 2438 | loud-rejection@^1.0.0, loud-rejection@^1.2.0: 2439 | version "1.6.0" 2440 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 2441 | dependencies: 2442 | currently-unhandled "^0.4.1" 2443 | signal-exit "^3.0.0" 2444 | 2445 | lowercase-keys@^1.0.0: 2446 | version "1.0.0" 2447 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 2448 | 2449 | lru-cache@^4.0.1: 2450 | version "4.0.2" 2451 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e" 2452 | dependencies: 2453 | pseudomap "^1.0.1" 2454 | yallist "^2.0.0" 2455 | 2456 | magic-string@^0.14.0: 2457 | version "0.14.0" 2458 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.14.0.tgz#57224aef1701caeed273b17a39a956e72b172462" 2459 | dependencies: 2460 | vlq "^0.2.1" 2461 | 2462 | make-dir@^1.0.0: 2463 | version "1.0.0" 2464 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.0.0.tgz#97a011751e91dd87cfadef58832ebb04936de978" 2465 | dependencies: 2466 | pify "^2.3.0" 2467 | 2468 | map-obj@^1.0.0, map-obj@^1.0.1: 2469 | version "1.0.1" 2470 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 2471 | 2472 | matcher@^0.1.1: 2473 | version "0.1.2" 2474 | resolved "https://registry.yarnpkg.com/matcher/-/matcher-0.1.2.tgz#ef20cbde64c24c50cc61af5b83ee0b1b8ff00101" 2475 | dependencies: 2476 | escape-string-regexp "^1.0.4" 2477 | 2478 | max-timeout@^1.0.0: 2479 | version "1.0.0" 2480 | resolved "https://registry.yarnpkg.com/max-timeout/-/max-timeout-1.0.0.tgz#b68f69a2f99e0b476fd4cb23e2059ca750715e1f" 2481 | 2482 | md5-hex@^1.2.0, md5-hex@^1.3.0: 2483 | version "1.3.0" 2484 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-1.3.0.tgz#d2c4afe983c4370662179b8cad145219135046c4" 2485 | dependencies: 2486 | md5-o-matic "^0.1.1" 2487 | 2488 | md5-hex@^2.0.0: 2489 | version "2.0.0" 2490 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-2.0.0.tgz#d0588e9f1c74954492ecd24ac0ac6ce997d92e33" 2491 | dependencies: 2492 | md5-o-matic "^0.1.1" 2493 | 2494 | md5-o-matic@^0.1.1: 2495 | version "0.1.1" 2496 | resolved "https://registry.yarnpkg.com/md5-o-matic/-/md5-o-matic-0.1.1.tgz#822bccd65e117c514fab176b25945d54100a03c3" 2497 | 2498 | meow@^3.3.0, meow@^3.7.0: 2499 | version "3.7.0" 2500 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 2501 | dependencies: 2502 | camelcase-keys "^2.0.0" 2503 | decamelize "^1.1.2" 2504 | loud-rejection "^1.0.0" 2505 | map-obj "^1.0.1" 2506 | minimist "^1.1.3" 2507 | normalize-package-data "^2.3.4" 2508 | object-assign "^4.0.1" 2509 | read-pkg-up "^1.0.1" 2510 | redent "^1.0.0" 2511 | trim-newlines "^1.0.0" 2512 | 2513 | micromatch@^2.1.5, micromatch@^2.3.7, micromatch@^2.3.8: 2514 | version "2.3.11" 2515 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2516 | dependencies: 2517 | arr-diff "^2.0.0" 2518 | array-unique "^0.2.1" 2519 | braces "^1.8.2" 2520 | expand-brackets "^0.1.4" 2521 | extglob "^0.3.1" 2522 | filename-regex "^2.0.0" 2523 | is-extglob "^1.0.0" 2524 | is-glob "^2.0.1" 2525 | kind-of "^3.0.2" 2526 | normalize-path "^2.0.1" 2527 | object.omit "^2.0.0" 2528 | parse-glob "^3.0.4" 2529 | regex-cache "^0.4.2" 2530 | 2531 | mime-db@~1.27.0: 2532 | version "1.27.0" 2533 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 2534 | 2535 | mime-types@^2.1.12, mime-types@~2.1.7: 2536 | version "2.1.15" 2537 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 2538 | dependencies: 2539 | mime-db "~1.27.0" 2540 | 2541 | mimic-fn@^1.0.0: 2542 | version "1.1.0" 2543 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 2544 | 2545 | "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 2546 | version "3.0.4" 2547 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2548 | dependencies: 2549 | brace-expansion "^1.1.7" 2550 | 2551 | minimist@0.0.8: 2552 | version "0.0.8" 2553 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2554 | 2555 | minimist@1.2.0: 2556 | version "1.2.0" 2557 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2558 | 2559 | minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.5: 2560 | version "1.2.5" 2561 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 2562 | 2563 | mkdirp@0.5.x, mkdirp@^0.5.0, mkdirp@^0.5.1: 2564 | version "0.5.1" 2565 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2566 | dependencies: 2567 | minimist "0.0.8" 2568 | 2569 | "mkdirp@>=0.5 0": 2570 | version "0.5.5" 2571 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" 2572 | dependencies: 2573 | minimist "^1.2.5" 2574 | 2575 | modify-values@^1.0.0: 2576 | version "1.0.0" 2577 | resolved "https://registry.yarnpkg.com/modify-values/-/modify-values-1.0.0.tgz#e2b6cdeb9ce19f99317a53722f3dbf5df5eaaab2" 2578 | 2579 | ms@2.0.0: 2580 | version "2.0.0" 2581 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2582 | 2583 | ms@^0.7.1: 2584 | version "0.7.3" 2585 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.3.tgz#708155a5e44e33f5fd0fc53e81d0d40a91be1fff" 2586 | 2587 | multimatch@^2.1.0: 2588 | version "2.1.0" 2589 | resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" 2590 | dependencies: 2591 | array-differ "^1.0.0" 2592 | array-union "^1.0.1" 2593 | arrify "^1.0.0" 2594 | minimatch "^3.0.0" 2595 | 2596 | mute-stream@0.0.5: 2597 | version "0.0.5" 2598 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 2599 | 2600 | nan@^2.3.0: 2601 | version "2.6.2" 2602 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" 2603 | 2604 | natural-compare@^1.4.0: 2605 | version "1.4.0" 2606 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2607 | 2608 | neo-async@^2.6.0: 2609 | version "2.6.2" 2610 | resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" 2611 | 2612 | node-pre-gyp@^0.6.29: 2613 | version "0.6.34" 2614 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.34.tgz#94ad1c798a11d7fc67381b50d47f8cc18d9799f7" 2615 | dependencies: 2616 | mkdirp "^0.5.1" 2617 | nopt "^4.0.1" 2618 | npmlog "^4.0.2" 2619 | rc "^1.1.7" 2620 | request "^2.81.0" 2621 | rimraf "^2.6.1" 2622 | semver "^5.3.0" 2623 | tar "^2.2.1" 2624 | tar-pack "^3.4.0" 2625 | 2626 | node-status-codes@^1.0.0: 2627 | version "1.0.0" 2628 | resolved "https://registry.yarnpkg.com/node-status-codes/-/node-status-codes-1.0.0.tgz#5ae5541d024645d32a58fcddc9ceecea7ae3ac2f" 2629 | 2630 | nopt@3.x: 2631 | version "3.0.6" 2632 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 2633 | dependencies: 2634 | abbrev "1" 2635 | 2636 | nopt@^4.0.1: 2637 | version "4.0.1" 2638 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2639 | dependencies: 2640 | abbrev "1" 2641 | osenv "^0.1.4" 2642 | 2643 | normalize-package-data@^2.3.0, normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.3.5: 2644 | version "2.3.8" 2645 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" 2646 | dependencies: 2647 | hosted-git-info "^2.1.4" 2648 | is-builtin-module "^1.0.0" 2649 | semver "2 || 3 || 4 || 5" 2650 | validate-npm-package-license "^3.0.1" 2651 | 2652 | normalize-path@^2.0.1: 2653 | version "2.1.1" 2654 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2655 | dependencies: 2656 | remove-trailing-separator "^1.0.1" 2657 | 2658 | npm-run-path@^2.0.0: 2659 | version "2.0.2" 2660 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2661 | dependencies: 2662 | path-key "^2.0.0" 2663 | 2664 | npmlog@^4.0.2: 2665 | version "4.1.0" 2666 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.0.tgz#dc59bee85f64f00ed424efb2af0783df25d1c0b5" 2667 | dependencies: 2668 | are-we-there-yet "~1.1.2" 2669 | console-control-strings "~1.1.0" 2670 | gauge "~2.7.3" 2671 | set-blocking "~2.0.0" 2672 | 2673 | number-is-nan@^1.0.0: 2674 | version "1.0.1" 2675 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2676 | 2677 | nyc@^6.4: 2678 | version "6.6.1" 2679 | resolved "https://registry.yarnpkg.com/nyc/-/nyc-6.6.1.tgz#2f6014610a57070021c4c067e9b9e330a23ac6a7" 2680 | dependencies: 2681 | append-transform "^0.4.0" 2682 | arrify "^1.0.1" 2683 | caching-transform "^1.0.0" 2684 | convert-source-map "^1.1.2" 2685 | default-require-extensions "^1.0.0" 2686 | find-cache-dir "^0.1.1" 2687 | find-up "^1.1.2" 2688 | foreground-child "^1.5.1" 2689 | glob "^7.0.3" 2690 | istanbul "^0.4.3" 2691 | md5-hex "^1.2.0" 2692 | micromatch "^2.3.7" 2693 | mkdirp "^0.5.0" 2694 | pkg-up "^1.0.0" 2695 | resolve-from "^2.0.0" 2696 | rimraf "^2.5.0" 2697 | signal-exit "^3.0.0" 2698 | source-map "^0.5.3" 2699 | spawn-wrap "^1.2.2" 2700 | test-exclude "^1.1.0" 2701 | yargs "^4.7.0" 2702 | 2703 | oauth-sign@~0.8.1: 2704 | version "0.8.2" 2705 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2706 | 2707 | object-assign@^4.0.1, object-assign@^4.1.0: 2708 | version "4.1.1" 2709 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2710 | 2711 | object.omit@^2.0.0: 2712 | version "2.0.1" 2713 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2714 | dependencies: 2715 | for-own "^0.1.4" 2716 | is-extendable "^0.1.1" 2717 | 2718 | observable-to-promise@^0.4.0: 2719 | version "0.4.0" 2720 | resolved "https://registry.yarnpkg.com/observable-to-promise/-/observable-to-promise-0.4.0.tgz#28afe71645308f2d41d71f47ad3fece1a377e52b" 2721 | dependencies: 2722 | is-observable "^0.2.0" 2723 | symbol-observable "^0.2.2" 2724 | 2725 | once@1.x, once@^1.3.0, once@^1.3.3: 2726 | version "1.4.0" 2727 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2728 | dependencies: 2729 | wrappy "1" 2730 | 2731 | onetime@^1.0.0: 2732 | version "1.1.0" 2733 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2734 | 2735 | onetime@^2.0.0: 2736 | version "2.0.1" 2737 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2738 | dependencies: 2739 | mimic-fn "^1.0.0" 2740 | 2741 | option-chain@^0.1.0: 2742 | version "0.1.1" 2743 | resolved "https://registry.yarnpkg.com/option-chain/-/option-chain-0.1.1.tgz#e9b811e006f1c0f54802f28295bfc8970f8dcfbd" 2744 | dependencies: 2745 | object-assign "^4.0.1" 2746 | 2747 | optionator@^0.8.1: 2748 | version "0.8.2" 2749 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2750 | dependencies: 2751 | deep-is "~0.1.3" 2752 | fast-levenshtein "~2.0.4" 2753 | levn "~0.3.0" 2754 | prelude-ls "~1.1.2" 2755 | type-check "~0.3.2" 2756 | wordwrap "~1.0.0" 2757 | 2758 | os-homedir@^1.0.0, os-homedir@^1.0.1: 2759 | version "1.0.2" 2760 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2761 | 2762 | os-locale@^1.4.0: 2763 | version "1.4.0" 2764 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2765 | dependencies: 2766 | lcid "^1.0.0" 2767 | 2768 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2769 | version "1.0.2" 2770 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2771 | 2772 | osenv@^0.1.0, osenv@^0.1.4: 2773 | version "0.1.4" 2774 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2775 | dependencies: 2776 | os-homedir "^1.0.0" 2777 | os-tmpdir "^1.0.0" 2778 | 2779 | p-finally@^1.0.0: 2780 | version "1.0.0" 2781 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2782 | 2783 | p-limit@^1.1.0: 2784 | version "1.1.0" 2785 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2786 | 2787 | p-locate@^2.0.0: 2788 | version "2.0.0" 2789 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2790 | dependencies: 2791 | p-limit "^1.1.0" 2792 | 2793 | package-hash@^1.2.0: 2794 | version "1.2.0" 2795 | resolved "https://registry.yarnpkg.com/package-hash/-/package-hash-1.2.0.tgz#003e56cd57b736a6ed6114cc2b81542672770e44" 2796 | dependencies: 2797 | md5-hex "^1.3.0" 2798 | 2799 | package-json@^2.0.0: 2800 | version "2.4.0" 2801 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-2.4.0.tgz#0d15bd67d1cbbddbb2ca222ff2edb86bcb31a8bb" 2802 | dependencies: 2803 | got "^5.0.0" 2804 | registry-auth-token "^3.0.1" 2805 | registry-url "^3.0.3" 2806 | semver "^5.1.0" 2807 | 2808 | parse-github-repo-url@^1.3.0: 2809 | version "1.4.0" 2810 | resolved "https://registry.yarnpkg.com/parse-github-repo-url/-/parse-github-repo-url-1.4.0.tgz#286c53e2c9962e0641649ee3ac9508fca4dd959c" 2811 | 2812 | parse-glob@^3.0.4: 2813 | version "3.0.4" 2814 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2815 | dependencies: 2816 | glob-base "^0.3.0" 2817 | is-dotfile "^1.0.0" 2818 | is-extglob "^1.0.0" 2819 | is-glob "^2.0.0" 2820 | 2821 | parse-json@^2.1.0, parse-json@^2.2.0: 2822 | version "2.2.0" 2823 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2824 | dependencies: 2825 | error-ex "^1.2.0" 2826 | 2827 | parse-ms@^0.1.0: 2828 | version "0.1.2" 2829 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-0.1.2.tgz#dd3fa25ed6c2efc7bdde12ad9b46c163aa29224e" 2830 | 2831 | parse-ms@^1.0.0: 2832 | version "1.0.1" 2833 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-1.0.1.tgz#56346d4749d78f23430ca0c713850aef91aa361d" 2834 | 2835 | path-exists@^2.0.0: 2836 | version "2.1.0" 2837 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2838 | dependencies: 2839 | pinkie-promise "^2.0.0" 2840 | 2841 | path-exists@^3.0.0: 2842 | version "3.0.0" 2843 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2844 | 2845 | path-is-absolute@^1.0.0: 2846 | version "1.0.1" 2847 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2848 | 2849 | path-is-inside@^1.0.1: 2850 | version "1.0.2" 2851 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2852 | 2853 | path-key@^2.0.0: 2854 | version "2.0.1" 2855 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2856 | 2857 | path-type@^1.0.0: 2858 | version "1.1.0" 2859 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2860 | dependencies: 2861 | graceful-fs "^4.1.2" 2862 | pify "^2.0.0" 2863 | pinkie-promise "^2.0.0" 2864 | 2865 | path-type@^2.0.0: 2866 | version "2.0.0" 2867 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2868 | dependencies: 2869 | pify "^2.0.0" 2870 | 2871 | performance-now@^0.2.0: 2872 | version "0.2.0" 2873 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2874 | 2875 | pify@^2.0.0, pify@^2.3.0: 2876 | version "2.3.0" 2877 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2878 | 2879 | pinkie-promise@^1.0.0: 2880 | version "1.0.0" 2881 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-1.0.0.tgz#d1da67f5482563bb7cf57f286ae2822ecfbf3670" 2882 | dependencies: 2883 | pinkie "^1.0.0" 2884 | 2885 | pinkie-promise@^2.0.0: 2886 | version "2.0.1" 2887 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2888 | dependencies: 2889 | pinkie "^2.0.0" 2890 | 2891 | pinkie@^1.0.0: 2892 | version "1.0.0" 2893 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-1.0.0.tgz#5a47f28ba1015d0201bda7bf0f358e47bec8c7e4" 2894 | 2895 | pinkie@^2.0.0: 2896 | version "2.0.4" 2897 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2898 | 2899 | pkg-conf@^2.0.0: 2900 | version "2.0.0" 2901 | resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-2.0.0.tgz#071c87650403bccfb9c627f58751bfe47c067279" 2902 | dependencies: 2903 | find-up "^2.0.0" 2904 | load-json-file "^2.0.0" 2905 | 2906 | pkg-dir@^1.0.0: 2907 | version "1.0.0" 2908 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 2909 | dependencies: 2910 | find-up "^1.0.0" 2911 | 2912 | pkg-up@^1.0.0: 2913 | version "1.0.0" 2914 | resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-1.0.0.tgz#3e08fb461525c4421624a33b9f7e6d0af5b05a26" 2915 | dependencies: 2916 | find-up "^1.0.0" 2917 | 2918 | plur@^1.0.0: 2919 | version "1.0.0" 2920 | resolved "https://registry.yarnpkg.com/plur/-/plur-1.0.0.tgz#db85c6814f5e5e5a3b49efc28d604fec62975156" 2921 | 2922 | plur@^2.0.0: 2923 | version "2.1.2" 2924 | resolved "https://registry.yarnpkg.com/plur/-/plur-2.1.2.tgz#7482452c1a0f508e3e344eaec312c91c29dc655a" 2925 | dependencies: 2926 | irregular-plurals "^1.0.0" 2927 | 2928 | pluralize@^1.2.1: 2929 | version "1.2.1" 2930 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 2931 | 2932 | postcss@^6.x: 2933 | version "6.0.11" 2934 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.11.tgz#f48db210b1d37a7f7ab6499b7a54982997ab6f72" 2935 | dependencies: 2936 | chalk "^2.1.0" 2937 | source-map "^0.5.7" 2938 | supports-color "^4.4.0" 2939 | 2940 | prelude-ls@~1.1.2: 2941 | version "1.1.2" 2942 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2943 | 2944 | prepend-http@^1.0.1: 2945 | version "1.0.4" 2946 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 2947 | 2948 | preserve@^0.2.0: 2949 | version "0.2.0" 2950 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2951 | 2952 | pretty-format@^18.1.0: 2953 | version "18.1.0" 2954 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-18.1.0.tgz#fb65a86f7a7f9194963eee91865c1bcf1039e284" 2955 | dependencies: 2956 | ansi-styles "^2.2.1" 2957 | 2958 | pretty-ms@^0.2.1: 2959 | version "0.2.2" 2960 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-0.2.2.tgz#da879a682ff33a37011046f13d627f67c73b84f6" 2961 | dependencies: 2962 | parse-ms "^0.1.0" 2963 | 2964 | pretty-ms@^2.0.0: 2965 | version "2.1.0" 2966 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-2.1.0.tgz#4257c256df3fb0b451d6affaab021884126981dc" 2967 | dependencies: 2968 | is-finite "^1.0.1" 2969 | parse-ms "^1.0.0" 2970 | plur "^1.0.0" 2971 | 2972 | private@^0.1.6: 2973 | version "0.1.7" 2974 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2975 | 2976 | process-nextick-args@~1.0.6: 2977 | version "1.0.7" 2978 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2979 | 2980 | progress@^1.1.8: 2981 | version "1.1.8" 2982 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 2983 | 2984 | pseudomap@^1.0.1: 2985 | version "1.0.2" 2986 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2987 | 2988 | punycode@^1.4.1: 2989 | version "1.4.1" 2990 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2991 | 2992 | q@^1.4.1: 2993 | version "1.5.0" 2994 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.0.tgz#dd01bac9d06d30e6f219aecb8253ee9ebdc308f1" 2995 | 2996 | qs@~6.3.0: 2997 | version "6.3.2" 2998 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.2.tgz#e75bd5f6e268122a2a0e0bda630b2550c166502c" 2999 | 3000 | qs@~6.4.0: 3001 | version "6.4.0" 3002 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 3003 | 3004 | randomatic@^1.1.3: 3005 | version "1.1.6" 3006 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 3007 | dependencies: 3008 | is-number "^2.0.2" 3009 | kind-of "^3.0.2" 3010 | 3011 | rc@^1.0.1, rc@^1.1.6, rc@^1.1.7: 3012 | version "1.2.1" 3013 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 3014 | dependencies: 3015 | deep-extend "~0.4.0" 3016 | ini "~1.3.0" 3017 | minimist "^1.2.0" 3018 | strip-json-comments "~2.0.1" 3019 | 3020 | read-all-stream@^3.0.0: 3021 | version "3.1.0" 3022 | resolved "https://registry.yarnpkg.com/read-all-stream/-/read-all-stream-3.1.0.tgz#35c3e177f2078ef789ee4bfafa4373074eaef4fa" 3023 | dependencies: 3024 | pinkie-promise "^2.0.0" 3025 | readable-stream "^2.0.0" 3026 | 3027 | read-pkg-up@^1.0.1: 3028 | version "1.0.1" 3029 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 3030 | dependencies: 3031 | find-up "^1.0.0" 3032 | read-pkg "^1.0.0" 3033 | 3034 | read-pkg-up@^2.0.0: 3035 | version "2.0.0" 3036 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 3037 | dependencies: 3038 | find-up "^2.0.0" 3039 | read-pkg "^2.0.0" 3040 | 3041 | read-pkg@^1.0.0, read-pkg@^1.1.0: 3042 | version "1.1.0" 3043 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 3044 | dependencies: 3045 | load-json-file "^1.0.0" 3046 | normalize-package-data "^2.3.2" 3047 | path-type "^1.0.0" 3048 | 3049 | read-pkg@^2.0.0: 3050 | version "2.0.0" 3051 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 3052 | dependencies: 3053 | load-json-file "^2.0.0" 3054 | normalize-package-data "^2.3.2" 3055 | path-type "^2.0.0" 3056 | 3057 | readable-stream@^2.0.0, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5, readable-stream@^2.2.2: 3058 | version "2.2.9" 3059 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.9.tgz#cf78ec6f4a6d1eb43d26488cac97f042e74b7fc8" 3060 | dependencies: 3061 | buffer-shims "~1.0.0" 3062 | core-util-is "~1.0.0" 3063 | inherits "~2.0.1" 3064 | isarray "~1.0.0" 3065 | process-nextick-args "~1.0.6" 3066 | string_decoder "~1.0.0" 3067 | util-deprecate "~1.0.1" 3068 | 3069 | readdirp@^2.0.0: 3070 | version "2.1.0" 3071 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 3072 | dependencies: 3073 | graceful-fs "^4.1.2" 3074 | minimatch "^3.0.2" 3075 | readable-stream "^2.0.2" 3076 | set-immediate-shim "^1.0.1" 3077 | 3078 | readline2@^1.0.1: 3079 | version "1.0.1" 3080 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 3081 | dependencies: 3082 | code-point-at "^1.0.0" 3083 | is-fullwidth-code-point "^1.0.0" 3084 | mute-stream "0.0.5" 3085 | 3086 | redent@^1.0.0: 3087 | version "1.0.0" 3088 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 3089 | dependencies: 3090 | indent-string "^2.1.0" 3091 | strip-indent "^1.0.1" 3092 | 3093 | regenerate@^1.2.1: 3094 | version "1.3.2" 3095 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 3096 | 3097 | regenerator-runtime@^0.10.0: 3098 | version "0.10.5" 3099 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 3100 | 3101 | regex-cache@^0.4.2: 3102 | version "0.4.3" 3103 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 3104 | dependencies: 3105 | is-equal-shallow "^0.1.3" 3106 | is-primitive "^2.0.0" 3107 | 3108 | regexpu-core@^2.0.0: 3109 | version "2.0.0" 3110 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 3111 | dependencies: 3112 | regenerate "^1.2.1" 3113 | regjsgen "^0.2.0" 3114 | regjsparser "^0.1.4" 3115 | 3116 | registry-auth-token@^3.0.1: 3117 | version "3.3.1" 3118 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.1.tgz#fb0d3289ee0d9ada2cbb52af5dfe66cb070d3006" 3119 | dependencies: 3120 | rc "^1.1.6" 3121 | safe-buffer "^5.0.1" 3122 | 3123 | registry-url@^3.0.3: 3124 | version "3.1.0" 3125 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 3126 | dependencies: 3127 | rc "^1.0.1" 3128 | 3129 | regjsgen@^0.2.0: 3130 | version "0.2.0" 3131 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 3132 | 3133 | regjsparser@^0.1.4: 3134 | version "0.1.5" 3135 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 3136 | dependencies: 3137 | jsesc "~0.5.0" 3138 | 3139 | remove-trailing-separator@^1.0.1: 3140 | version "1.0.1" 3141 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 3142 | 3143 | repeat-element@^1.1.2: 3144 | version "1.1.2" 3145 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3146 | 3147 | repeat-string@^1.5.2: 3148 | version "1.6.1" 3149 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3150 | 3151 | repeating@^2.0.0: 3152 | version "2.0.1" 3153 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3154 | dependencies: 3155 | is-finite "^1.0.0" 3156 | 3157 | request@2.79.0: 3158 | version "2.79.0" 3159 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 3160 | dependencies: 3161 | aws-sign2 "~0.6.0" 3162 | aws4 "^1.2.1" 3163 | caseless "~0.11.0" 3164 | combined-stream "~1.0.5" 3165 | extend "~3.0.0" 3166 | forever-agent "~0.6.1" 3167 | form-data "~2.1.1" 3168 | har-validator "~2.0.6" 3169 | hawk "~3.1.3" 3170 | http-signature "~1.1.0" 3171 | is-typedarray "~1.0.0" 3172 | isstream "~0.1.2" 3173 | json-stringify-safe "~5.0.1" 3174 | mime-types "~2.1.7" 3175 | oauth-sign "~0.8.1" 3176 | qs "~6.3.0" 3177 | stringstream "~0.0.4" 3178 | tough-cookie "~2.3.0" 3179 | tunnel-agent "~0.4.1" 3180 | uuid "^3.0.0" 3181 | 3182 | request@^2.81.0: 3183 | version "2.81.0" 3184 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 3185 | dependencies: 3186 | aws-sign2 "~0.6.0" 3187 | aws4 "^1.2.1" 3188 | caseless "~0.12.0" 3189 | combined-stream "~1.0.5" 3190 | extend "~3.0.0" 3191 | forever-agent "~0.6.1" 3192 | form-data "~2.1.1" 3193 | har-validator "~4.2.1" 3194 | hawk "~3.1.3" 3195 | http-signature "~1.1.0" 3196 | is-typedarray "~1.0.0" 3197 | isstream "~0.1.2" 3198 | json-stringify-safe "~5.0.1" 3199 | mime-types "~2.1.7" 3200 | oauth-sign "~0.8.1" 3201 | performance-now "^0.2.0" 3202 | qs "~6.4.0" 3203 | safe-buffer "^5.0.1" 3204 | stringstream "~0.0.4" 3205 | tough-cookie "~2.3.0" 3206 | tunnel-agent "^0.6.0" 3207 | uuid "^3.0.0" 3208 | 3209 | require-directory@^2.1.1: 3210 | version "2.1.1" 3211 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3212 | 3213 | require-main-filename@^1.0.1: 3214 | version "1.0.1" 3215 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3216 | 3217 | require-precompiled@^0.1.0: 3218 | version "0.1.0" 3219 | resolved "https://registry.yarnpkg.com/require-precompiled/-/require-precompiled-0.1.0.tgz#5a1b52eb70ebed43eb982e974c85ab59571e56fa" 3220 | 3221 | require-uncached@^1.0.2: 3222 | version "1.0.3" 3223 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 3224 | dependencies: 3225 | caller-path "^0.1.0" 3226 | resolve-from "^1.0.0" 3227 | 3228 | resolve-cwd@^1.0.0: 3229 | version "1.0.0" 3230 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-1.0.0.tgz#4eaeea41ed040d1702457df64a42b2b07d246f9f" 3231 | dependencies: 3232 | resolve-from "^2.0.0" 3233 | 3234 | resolve-from@^1.0.0: 3235 | version "1.0.1" 3236 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 3237 | 3238 | resolve-from@^2.0.0: 3239 | version "2.0.0" 3240 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" 3241 | 3242 | resolve@1.1.x: 3243 | version "1.1.7" 3244 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 3245 | 3246 | restore-cursor@^1.0.1: 3247 | version "1.0.1" 3248 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 3249 | dependencies: 3250 | exit-hook "^1.0.0" 3251 | onetime "^1.0.0" 3252 | 3253 | restore-cursor@^2.0.0: 3254 | version "2.0.0" 3255 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 3256 | dependencies: 3257 | onetime "^2.0.0" 3258 | signal-exit "^3.0.2" 3259 | 3260 | rimraf@2: 3261 | version "2.7.1" 3262 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" 3263 | dependencies: 3264 | glob "^7.1.3" 3265 | 3266 | rimraf@^2.2.8, rimraf@^2.3.3, rimraf@^2.5.0, rimraf@^2.5.1, rimraf@^2.6.1: 3267 | version "2.6.1" 3268 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 3269 | dependencies: 3270 | glob "^7.0.5" 3271 | 3272 | rollup-plugin-buble@^0.15: 3273 | version "0.15.0" 3274 | resolved "https://registry.yarnpkg.com/rollup-plugin-buble/-/rollup-plugin-buble-0.15.0.tgz#83c3e89c7fd2266c7918f41ba3980313519c7fd0" 3275 | dependencies: 3276 | buble "^0.15.0" 3277 | rollup-pluginutils "^1.5.0" 3278 | 3279 | rollup-pluginutils@^1.5.0: 3280 | version "1.5.2" 3281 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-1.5.2.tgz#1e156e778f94b7255bfa1b3d0178be8f5c552408" 3282 | dependencies: 3283 | estree-walker "^0.2.1" 3284 | minimatch "^3.0.2" 3285 | 3286 | rollup@^0.41: 3287 | version "0.41.6" 3288 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.41.6.tgz#e0d05497877a398c104d816d2733a718a7a94e2a" 3289 | dependencies: 3290 | source-map-support "^0.4.0" 3291 | 3292 | run-async@^0.1.0: 3293 | version "0.1.0" 3294 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 3295 | dependencies: 3296 | once "^1.3.0" 3297 | 3298 | rx-lite@^3.1.2: 3299 | version "3.1.2" 3300 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 3301 | 3302 | safe-buffer@^5.0.1: 3303 | version "5.0.1" 3304 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 3305 | 3306 | safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: 3307 | version "2.1.2" 3308 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 3309 | 3310 | semver-diff@^2.0.0: 3311 | version "2.1.0" 3312 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 3313 | dependencies: 3314 | semver "^5.0.3" 3315 | 3316 | "semver@2 || 3 || 4 || 5", semver@^5.0.1, semver@^5.0.3, semver@^5.1.0, semver@^5.3.0: 3317 | version "5.3.0" 3318 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3319 | 3320 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3321 | version "2.0.0" 3322 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3323 | 3324 | set-immediate-shim@^1.0.1: 3325 | version "1.0.1" 3326 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3327 | 3328 | shelljs@^0.6.0: 3329 | version "0.6.1" 3330 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.6.1.tgz#ec6211bed1920442088fe0f70b2837232ed2c8a8" 3331 | 3332 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3333 | version "3.0.2" 3334 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3335 | 3336 | slash@^1.0.0: 3337 | version "1.0.0" 3338 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3339 | 3340 | slice-ansi@0.0.4: 3341 | version "0.0.4" 3342 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 3343 | 3344 | slide@^1.1.5: 3345 | version "1.1.6" 3346 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 3347 | 3348 | sntp@1.x.x: 3349 | version "1.0.9" 3350 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3351 | dependencies: 3352 | hoek "2.x.x" 3353 | 3354 | sort-keys@^1.1.1, sort-keys@^1.1.2: 3355 | version "1.1.2" 3356 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" 3357 | dependencies: 3358 | is-plain-obj "^1.0.0" 3359 | 3360 | source-map-support@^0.4.0, source-map-support@^0.4.2: 3361 | version "0.4.15" 3362 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" 3363 | dependencies: 3364 | source-map "^0.5.6" 3365 | 3366 | source-map@0.5.x, source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7: 3367 | version "0.5.7" 3368 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3369 | 3370 | source-map@^0.6.1: 3371 | version "0.6.1" 3372 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3373 | 3374 | source-map@~0.2.0: 3375 | version "0.2.0" 3376 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 3377 | dependencies: 3378 | amdefine ">=0.0.4" 3379 | 3380 | spawn-wrap@^1.2.2: 3381 | version "1.3.5" 3382 | resolved "https://registry.yarnpkg.com/spawn-wrap/-/spawn-wrap-1.3.5.tgz#2efc49df38ba8a6574b51f41acc5c539a486bfd3" 3383 | dependencies: 3384 | foreground-child "^1.5.6" 3385 | mkdirp "^0.5.0" 3386 | os-homedir "^1.0.1" 3387 | rimraf "^2.3.3" 3388 | signal-exit "^3.0.2" 3389 | which "^1.2.4" 3390 | 3391 | spdx-correct@~1.0.0: 3392 | version "1.0.2" 3393 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3394 | dependencies: 3395 | spdx-license-ids "^1.0.2" 3396 | 3397 | spdx-expression-parse@~1.0.0: 3398 | version "1.0.4" 3399 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3400 | 3401 | spdx-license-ids@^1.0.2: 3402 | version "1.2.2" 3403 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3404 | 3405 | split2@^2.0.0: 3406 | version "2.1.1" 3407 | resolved "https://registry.yarnpkg.com/split2/-/split2-2.1.1.tgz#7a1f551e176a90ecd3345f7246a0cfe175ef4fd0" 3408 | dependencies: 3409 | through2 "^2.0.2" 3410 | 3411 | split@^1.0.0: 3412 | version "1.0.0" 3413 | resolved "https://registry.yarnpkg.com/split/-/split-1.0.0.tgz#c4395ce683abcd254bc28fe1dabb6e5c27dcffae" 3414 | dependencies: 3415 | through "2" 3416 | 3417 | sprintf-js@~1.0.2: 3418 | version "1.0.3" 3419 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3420 | 3421 | sshpk@^1.7.0: 3422 | version "1.16.1" 3423 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" 3424 | dependencies: 3425 | asn1 "~0.2.3" 3426 | assert-plus "^1.0.0" 3427 | bcrypt-pbkdf "^1.0.0" 3428 | dashdash "^1.12.0" 3429 | ecc-jsbn "~0.1.1" 3430 | getpass "^0.1.1" 3431 | jsbn "~0.1.0" 3432 | safer-buffer "^2.0.2" 3433 | tweetnacl "~0.14.0" 3434 | 3435 | stack-utils@^1.0.0: 3436 | version "1.0.1" 3437 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620" 3438 | 3439 | string-width@^1.0.1, string-width@^1.0.2: 3440 | version "1.0.2" 3441 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3442 | dependencies: 3443 | code-point-at "^1.0.0" 3444 | is-fullwidth-code-point "^1.0.0" 3445 | strip-ansi "^3.0.0" 3446 | 3447 | string-width@^2.0.0: 3448 | version "2.0.0" 3449 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 3450 | dependencies: 3451 | is-fullwidth-code-point "^2.0.0" 3452 | strip-ansi "^3.0.0" 3453 | 3454 | string_decoder@~1.0.0: 3455 | version "1.0.1" 3456 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.1.tgz#62e200f039955a6810d8df0a33ffc0f013662d98" 3457 | dependencies: 3458 | safe-buffer "^5.0.1" 3459 | 3460 | stringstream@~0.0.4: 3461 | version "0.0.6" 3462 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.6.tgz#7880225b0d4ad10e30927d167a1d6f2fd3b33a72" 3463 | 3464 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3465 | version "3.0.1" 3466 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3467 | dependencies: 3468 | ansi-regex "^2.0.0" 3469 | 3470 | strip-ansi@~0.1.0: 3471 | version "0.1.1" 3472 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-0.1.1.tgz#39e8a98d044d150660abe4a6808acf70bb7bc991" 3473 | 3474 | strip-bom-buf@^1.0.0: 3475 | version "1.0.0" 3476 | resolved "https://registry.yarnpkg.com/strip-bom-buf/-/strip-bom-buf-1.0.0.tgz#1cb45aaf57530f4caf86c7f75179d2c9a51dd572" 3477 | dependencies: 3478 | is-utf8 "^0.2.1" 3479 | 3480 | strip-bom@^2.0.0: 3481 | version "2.0.0" 3482 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3483 | dependencies: 3484 | is-utf8 "^0.2.0" 3485 | 3486 | strip-bom@^3.0.0: 3487 | version "3.0.0" 3488 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3489 | 3490 | strip-eof@^1.0.0: 3491 | version "1.0.0" 3492 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3493 | 3494 | strip-indent@^1.0.1: 3495 | version "1.0.1" 3496 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 3497 | dependencies: 3498 | get-stdin "^4.0.1" 3499 | 3500 | strip-json-comments@~1.0.1: 3501 | version "1.0.4" 3502 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 3503 | 3504 | strip-json-comments@~2.0.1: 3505 | version "2.0.1" 3506 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3507 | 3508 | supports-color@^2.0.0: 3509 | version "2.0.0" 3510 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3511 | 3512 | supports-color@^3.1.0: 3513 | version "3.2.3" 3514 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3515 | dependencies: 3516 | has-flag "^1.0.0" 3517 | 3518 | supports-color@^4.0.0, supports-color@^4.4.0: 3519 | version "4.4.0" 3520 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e" 3521 | dependencies: 3522 | has-flag "^2.0.0" 3523 | 3524 | symbol-observable@^0.2.2: 3525 | version "0.2.4" 3526 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-0.2.4.tgz#95a83db26186d6af7e7a18dbd9760a2f86d08f40" 3527 | 3528 | table@^3.7.8: 3529 | version "3.8.3" 3530 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 3531 | dependencies: 3532 | ajv "^4.7.0" 3533 | ajv-keywords "^1.0.0" 3534 | chalk "^1.1.1" 3535 | lodash "^4.0.0" 3536 | slice-ansi "0.0.4" 3537 | string-width "^2.0.0" 3538 | 3539 | tar-pack@^3.4.0: 3540 | version "3.4.0" 3541 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 3542 | dependencies: 3543 | debug "^2.2.0" 3544 | fstream "^1.0.10" 3545 | fstream-ignore "^1.0.5" 3546 | once "^1.3.3" 3547 | readable-stream "^2.1.4" 3548 | rimraf "^2.5.1" 3549 | tar "^2.2.1" 3550 | uid-number "^0.0.6" 3551 | 3552 | tar@^2.2.1: 3553 | version "2.2.2" 3554 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.2.tgz#0ca8848562c7299b8b446ff6a4d60cdbb23edc40" 3555 | dependencies: 3556 | block-stream "*" 3557 | fstream "^1.0.12" 3558 | inherits "2" 3559 | 3560 | tempfile@^1.1.1: 3561 | version "1.1.1" 3562 | resolved "https://registry.yarnpkg.com/tempfile/-/tempfile-1.1.1.tgz#5bcc4eaecc4ab2c707d8bc11d99ccc9a2cb287f2" 3563 | dependencies: 3564 | os-tmpdir "^1.0.0" 3565 | uuid "^2.0.1" 3566 | 3567 | test-exclude@^1.1.0: 3568 | version "1.1.0" 3569 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-1.1.0.tgz#f5ddd718927b12fd02f270a0aa939ceb6eea4151" 3570 | dependencies: 3571 | arrify "^1.0.1" 3572 | lodash.assign "^4.0.9" 3573 | micromatch "^2.3.8" 3574 | read-pkg-up "^1.0.1" 3575 | require-main-filename "^1.0.1" 3576 | 3577 | text-extensions@^1.0.0: 3578 | version "1.4.0" 3579 | resolved "https://registry.yarnpkg.com/text-extensions/-/text-extensions-1.4.0.tgz#c385d2e80879fe6ef97893e1709d88d9453726e9" 3580 | 3581 | text-table@^0.2.0, text-table@~0.2.0: 3582 | version "0.2.0" 3583 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3584 | 3585 | through2@^2.0.0, through2@^2.0.2: 3586 | version "2.0.3" 3587 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 3588 | dependencies: 3589 | readable-stream "^2.1.5" 3590 | xtend "~4.0.1" 3591 | 3592 | through@2, "through@>=2.2.7 <3", through@^2.3.6: 3593 | version "2.3.8" 3594 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3595 | 3596 | time-require@^0.1.2: 3597 | version "0.1.2" 3598 | resolved "https://registry.yarnpkg.com/time-require/-/time-require-0.1.2.tgz#f9e12cb370fc2605e11404582ba54ef5ca2b2d98" 3599 | dependencies: 3600 | chalk "^0.4.0" 3601 | date-time "^0.1.1" 3602 | pretty-ms "^0.2.1" 3603 | text-table "^0.2.0" 3604 | 3605 | timed-out@^3.0.0: 3606 | version "3.1.3" 3607 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-3.1.3.tgz#95860bfcc5c76c277f8f8326fd0f5b2e20eba217" 3608 | 3609 | to-fast-properties@^1.0.1: 3610 | version "1.0.3" 3611 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3612 | 3613 | tough-cookie@~2.3.0: 3614 | version "2.3.2" 3615 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3616 | dependencies: 3617 | punycode "^1.4.1" 3618 | 3619 | trim-newlines@^1.0.0: 3620 | version "1.0.0" 3621 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 3622 | 3623 | trim-off-newlines@^1.0.0: 3624 | version "1.0.1" 3625 | resolved "https://registry.yarnpkg.com/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz#9f9ba9d9efa8764c387698bcbfeb2c848f11adb3" 3626 | 3627 | trim-right@^1.0.1: 3628 | version "1.0.1" 3629 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3630 | 3631 | tryit@^1.0.1: 3632 | version "1.0.3" 3633 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3634 | 3635 | tunnel-agent@^0.6.0: 3636 | version "0.6.0" 3637 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3638 | dependencies: 3639 | safe-buffer "^5.0.1" 3640 | 3641 | tunnel-agent@~0.4.1: 3642 | version "0.4.3" 3643 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 3644 | 3645 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3646 | version "0.14.5" 3647 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3648 | 3649 | type-check@~0.3.2: 3650 | version "0.3.2" 3651 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3652 | dependencies: 3653 | prelude-ls "~1.1.2" 3654 | 3655 | typedarray@^0.0.6: 3656 | version "0.0.6" 3657 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3658 | 3659 | uglify-js@^3.1.4: 3660 | version "3.12.5" 3661 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.12.5.tgz#83241496087c640efe9dfc934832e71725aba008" 3662 | 3663 | uid-number@^0.0.6: 3664 | version "0.0.6" 3665 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3666 | 3667 | uid2@0.0.3: 3668 | version "0.0.3" 3669 | resolved "https://registry.yarnpkg.com/uid2/-/uid2-0.0.3.tgz#483126e11774df2f71b8b639dcd799c376162b82" 3670 | 3671 | unique-temp-dir@^1.0.0: 3672 | version "1.0.0" 3673 | resolved "https://registry.yarnpkg.com/unique-temp-dir/-/unique-temp-dir-1.0.0.tgz#6dce95b2681ca003eebfb304a415f9cbabcc5385" 3674 | dependencies: 3675 | mkdirp "^0.5.1" 3676 | os-tmpdir "^1.0.1" 3677 | uid2 "0.0.3" 3678 | 3679 | unzip-response@^1.0.2: 3680 | version "1.0.2" 3681 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-1.0.2.tgz#b984f0877fc0a89c2c773cc1ef7b5b232b5b06fe" 3682 | 3683 | update-notifier@^1.0.0: 3684 | version "1.0.3" 3685 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-1.0.3.tgz#8f92c515482bd6831b7c93013e70f87552c7cf5a" 3686 | dependencies: 3687 | boxen "^0.6.0" 3688 | chalk "^1.0.0" 3689 | configstore "^2.0.0" 3690 | is-npm "^1.0.0" 3691 | latest-version "^2.0.0" 3692 | lazy-req "^1.1.0" 3693 | semver-diff "^2.0.0" 3694 | xdg-basedir "^2.0.0" 3695 | 3696 | url-parse-lax@^1.0.0: 3697 | version "1.0.0" 3698 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 3699 | dependencies: 3700 | prepend-http "^1.0.1" 3701 | 3702 | user-home@^2.0.0: 3703 | version "2.0.0" 3704 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 3705 | dependencies: 3706 | os-homedir "^1.0.0" 3707 | 3708 | util-deprecate@~1.0.1: 3709 | version "1.0.2" 3710 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3711 | 3712 | uuid@^2.0.1: 3713 | version "2.0.3" 3714 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 3715 | 3716 | uuid@^3.0.0: 3717 | version "3.0.1" 3718 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 3719 | 3720 | validate-npm-package-license@^3.0.1: 3721 | version "3.0.1" 3722 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3723 | dependencies: 3724 | spdx-correct "~1.0.0" 3725 | spdx-expression-parse "~1.0.0" 3726 | 3727 | verror@1.3.6: 3728 | version "1.3.6" 3729 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3730 | dependencies: 3731 | extsprintf "1.0.2" 3732 | 3733 | vlq@^0.2.1: 3734 | version "0.2.2" 3735 | resolved "https://registry.yarnpkg.com/vlq/-/vlq-0.2.2.tgz#e316d5257b40b86bb43cb8d5fea5d7f54d6b0ca1" 3736 | 3737 | which-module@^1.0.0: 3738 | version "1.0.0" 3739 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3740 | 3741 | which@^1.1.1, which@^1.2.4, which@^1.2.9: 3742 | version "1.2.14" 3743 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 3744 | dependencies: 3745 | isexe "^2.0.0" 3746 | 3747 | wide-align@^1.1.0: 3748 | version "1.1.2" 3749 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3750 | dependencies: 3751 | string-width "^1.0.2" 3752 | 3753 | widest-line@^1.0.0: 3754 | version "1.0.0" 3755 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-1.0.0.tgz#0c09c85c2a94683d0d7eaf8ee097d564bf0e105c" 3756 | dependencies: 3757 | string-width "^1.0.1" 3758 | 3759 | window-size@^0.2.0: 3760 | version "0.2.0" 3761 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.2.0.tgz#b4315bb4214a3d7058ebeee892e13fa24d98b075" 3762 | 3763 | wordwrap@^1.0.0, wordwrap@~1.0.0: 3764 | version "1.0.0" 3765 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3766 | 3767 | wrap-ansi@^2.0.0: 3768 | version "2.1.0" 3769 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3770 | dependencies: 3771 | string-width "^1.0.1" 3772 | strip-ansi "^3.0.1" 3773 | 3774 | wrappy@1: 3775 | version "1.0.2" 3776 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3777 | 3778 | write-file-atomic@^1.1.2, write-file-atomic@^1.1.4: 3779 | version "1.3.4" 3780 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f" 3781 | dependencies: 3782 | graceful-fs "^4.1.11" 3783 | imurmurhash "^0.1.4" 3784 | slide "^1.1.5" 3785 | 3786 | write-file-atomic@^2.0.0: 3787 | version "2.1.0" 3788 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.1.0.tgz#1769f4b551eedce419f0505deae2e26763542d37" 3789 | dependencies: 3790 | graceful-fs "^4.1.11" 3791 | imurmurhash "^0.1.4" 3792 | slide "^1.1.5" 3793 | 3794 | write-json-file@^2.0.0: 3795 | version "2.1.0" 3796 | resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-2.1.0.tgz#ba1cf3ac7ee89db26c3d528986e48421389046b7" 3797 | dependencies: 3798 | graceful-fs "^4.1.2" 3799 | make-dir "^1.0.0" 3800 | pify "^2.0.0" 3801 | sort-keys "^1.1.1" 3802 | write-file-atomic "^2.0.0" 3803 | 3804 | write-pkg@^2.0.0: 3805 | version "2.1.0" 3806 | resolved "https://registry.yarnpkg.com/write-pkg/-/write-pkg-2.1.0.tgz#353aa44c39c48c21440f5c08ce6abd46141c9c08" 3807 | dependencies: 3808 | sort-keys "^1.1.2" 3809 | write-json-file "^2.0.0" 3810 | 3811 | write@^0.2.1: 3812 | version "0.2.1" 3813 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3814 | dependencies: 3815 | mkdirp "^0.5.1" 3816 | 3817 | xdg-basedir@^2.0.0: 3818 | version "2.0.0" 3819 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-2.0.0.tgz#edbc903cc385fc04523d966a335504b5504d1bd2" 3820 | dependencies: 3821 | os-homedir "^1.0.0" 3822 | 3823 | xtend@^4.0.0, xtend@~4.0.1: 3824 | version "4.0.2" 3825 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" 3826 | 3827 | y18n@^3.2.1: 3828 | version "3.2.2" 3829 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.2.tgz#85c901bd6470ce71fc4bb723ad209b70f7f28696" 3830 | 3831 | yallist@^2.0.0: 3832 | version "2.1.2" 3833 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3834 | 3835 | yargs-parser@^2.4.1: 3836 | version "2.4.1" 3837 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-2.4.1.tgz#85568de3cf150ff49fa51825f03a8c880ddcc5c4" 3838 | dependencies: 3839 | camelcase "^3.0.0" 3840 | lodash.assign "^4.0.6" 3841 | 3842 | yargs@^4.7.0: 3843 | version "4.8.1" 3844 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-4.8.1.tgz#c0c42924ca4aaa6b0e6da1739dfb216439f9ddc0" 3845 | dependencies: 3846 | cliui "^3.2.0" 3847 | decamelize "^1.1.1" 3848 | get-caller-file "^1.0.1" 3849 | lodash.assign "^4.0.3" 3850 | os-locale "^1.4.0" 3851 | read-pkg-up "^1.0.1" 3852 | require-directory "^2.1.1" 3853 | require-main-filename "^1.0.1" 3854 | set-blocking "^2.0.0" 3855 | string-width "^1.0.1" 3856 | which-module "^1.0.0" 3857 | window-size "^0.2.0" 3858 | y18n "^3.2.1" 3859 | yargs-parser "^2.4.1" 3860 | --------------------------------------------------------------------------------