├── .gitignore ├── .travis.yml ├── .editorconfig ├── .jshintrc ├── appveyor.yml ├── LICENSE ├── package.json ├── src ├── utils.js └── index.js ├── test ├── utils.js └── index.js ├── CHANGELOG.md ├── README.md └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | dist 4 | features.js 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # http://blog.travis-ci.com/2014-12-17-faster-builds-with-container-based-infrastructure/ 2 | sudo: false 3 | 4 | language: node_js 5 | node_js: stable 6 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | insert_final_newline = true 5 | charset = utf-8 6 | trim_trailing_whitespace = true 7 | insert_final_newline = true 8 | 9 | [*.js] 10 | indent_style = space 11 | indent_size = 2 12 | 13 | [*.md] 14 | trim_trailing_whitespace = false 15 | indent_size = 4 16 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "browser": true, 3 | "node": true, 4 | "esnext": true, 5 | "asi": true, 6 | "devel": true, 7 | "nonbsp": true, 8 | "indent": 2, 9 | "maxlen": 120, 10 | "laxcomma": true, 11 | "boss": true, 12 | "eqeqeq": false, 13 | "eqnull": true, 14 | "quotmark": "double", 15 | "undef": true, 16 | "unused": true 17 | } 18 | -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- 1 | # http://www.appveyor.com/docs/appveyor-yml 2 | 3 | environment: 4 | matrix: 5 | - nodejs_version: 0.12 6 | 7 | version: "{build}" 8 | build: off 9 | deploy: off 10 | 11 | install: 12 | - ps: Install-Product node $env:nodejs_version 13 | - npm install 14 | 15 | test_script: 16 | - node --version 17 | - npm --version 18 | - ps: "npm test # PowerShell" 19 | - cmd: "npm test" 20 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 Sébastien Balayn 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "caniuse-api", 3 | "version": "3.0.0", 4 | "description": "request the caniuse data to check browsers compatibilities", 5 | "repository": "https://github.com/nyalab/caniuse-api.git", 6 | "keywords": [ 7 | "caniuse", 8 | "browserslist" 9 | ], 10 | "authors": [ 11 | "nyalab", 12 | "MoOx" 13 | ], 14 | "license": "MIT", 15 | "main": "dist/index.js", 16 | "files": [ 17 | "dist" 18 | ], 19 | "dependencies": { 20 | "browserslist": "^4.0.0", 21 | "caniuse-lite": "^1.0.0", 22 | "lodash.memoize": "^4.1.2", 23 | "lodash.uniq": "^4.5.0" 24 | }, 25 | "devDependencies": { 26 | "babel-cli": "^6.22.2", 27 | "babel-eslint": "^5.0.0", 28 | "babel-preset-latest": "^6.22.0", 29 | "babel-tape-runner": "^2.0.1", 30 | "jshint": "^2.5.10", 31 | "npmpub": "^3.1.0", 32 | "tap-spec": "^4.1.1", 33 | "tape": "^4.6.0" 34 | }, 35 | "scripts": { 36 | "build": "babel src --out-dir dist", 37 | "lint": "jshint src", 38 | "prepublish": "npm run build", 39 | "test": "npm run lint && babel-tape-runner test/*.js | tap-spec", 40 | "release": "npmpub" 41 | }, 42 | "babel": { 43 | "presets": [ 44 | "babel-preset-latest" 45 | ] 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- 1 | import uniq from "lodash.uniq" 2 | import browserslist from "browserslist" 3 | 4 | export function contains(str, substr) { 5 | return !!~str.indexOf(substr) 6 | } 7 | 8 | export function parseCaniuseData(feature, browsers) { 9 | var support = {} 10 | var letters 11 | var letter 12 | 13 | browsers.forEach(function(browser) { 14 | support[browser] = {} 15 | for (var info in feature.stats[browser]) { 16 | letters = feature.stats[browser][info].replace(/#\d+/, "").trim().split(" ") 17 | info = parseFloat(info.split("-")[0]) //if info is a range, take the left 18 | if (isNaN(info)) continue 19 | for (var i = 0; i < letters.length ; i++) { 20 | letter = letters[i] 21 | if (letter === "d") { // skip this letter, we don't support it yet 22 | continue 23 | } else if (letter === "y"){ // min support asked, need to find the min value 24 | if (typeof support[browser][letter] === "undefined" || 25 | info < support[browser][letter]) { 26 | support[browser][letter] = info 27 | } 28 | } else { // any other support, need to find the max value 29 | if (typeof support[browser][letter] === "undefined" || 30 | info > support[browser][letter]) { 31 | support[browser][letter] = info 32 | } 33 | } 34 | } 35 | } 36 | }) 37 | 38 | return support 39 | } 40 | 41 | export function cleanBrowsersList(browserList) { 42 | return uniq(browserslist(browserList).map((browser) => browser.split(" ")[0])) 43 | } 44 | -------------------------------------------------------------------------------- /test/utils.js: -------------------------------------------------------------------------------- 1 | import test from "tape" 2 | import browserslist from "browserslist" 3 | import uniq from "lodash.uniq" 4 | import {feature} from "caniuse-lite" 5 | import {contains, parseCaniuseData, cleanBrowsersList} from "../src/utils" 6 | 7 | test("contains should work", (t) => { 8 | t.is(contains("abc", "a"), true, "abc contains b") 9 | t.isNot(contains("abc", "d"), true, "abc does not contain with d") 10 | t.is(contains("abc", ""), true, "contains empty string is true") 11 | t.end() 12 | }) 13 | 14 | test("parseCaniuseData should work", (t) => { 15 | const browsers = cleanBrowsersList() 16 | const borderRadiusFeature = feature(require('caniuse-lite/data/features/border-radius')) 17 | const parsed = parseCaniuseData(borderRadiusFeature, browsers) 18 | 19 | t.ok(parsed.safari.y, "border-radius support is ok on some safari") 20 | t.ok(parsed.firefox.y, "border-radius support is ok on some firefox") 21 | t.ok(parsed.chrome.y, "border-radius support is ok on some chrome") 22 | t.deepEqual(parseCaniuseData(borderRadiusFeature, []), [], "passing an empty browser list returns an empty array") 23 | 24 | t.end() 25 | }) 26 | 27 | test("cleanBrowsersList should work", (t) => { 28 | const dirtyList = ["firefox 4", "firefox 3.6", "opera 12.1", "ie 8", "ie 9", "chrome 37"] 29 | const cleanList = ["firefox", "opera", "ie", "chrome"] 30 | 31 | t.deepEqual(cleanBrowsersList(dirtyList).sort(), cleanList.sort(), "remove version numbers and deduplicate the list") 32 | t.deepEqual(cleanBrowsersList([]), [], "giving empty array returns empty array") 33 | 34 | t.end() 35 | }) 36 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import memoize from "lodash.memoize" 2 | import browserslist from "browserslist" 3 | import {features, feature as featureUnpack} from "caniuse-lite" 4 | 5 | import {contains, parseCaniuseData, cleanBrowsersList} from "./utils" 6 | 7 | const featuresList = Object.keys(features) 8 | 9 | let browsers 10 | function setBrowserScope(browserList) { 11 | browsers = cleanBrowsersList(browserList) 12 | } 13 | 14 | function getBrowserScope() { 15 | return browsers 16 | } 17 | 18 | const parse = memoize(parseCaniuseData, function(feat, browsers) { 19 | return feat.title + browsers 20 | }) 21 | 22 | function getSupport(query) { 23 | let feature 24 | try { 25 | feature = featureUnpack(features[query]) 26 | } catch(e) { 27 | let res = find(query) 28 | if (res.length === 1) return getSupport(res[0]) 29 | throw new ReferenceError(`Please provide a proper feature name. Cannot find ${query}`) 30 | } 31 | return parse(feature, browsers) 32 | } 33 | 34 | function isSupported(feature, browsers) { 35 | let data 36 | try { 37 | data = featureUnpack(features[feature]) 38 | } catch(e) { 39 | let res = find(feature) 40 | if (res.length === 1) { 41 | data = features[res[0]] 42 | } else { 43 | throw new ReferenceError(`Please provide a proper feature name. Cannot find ${feature}`) 44 | } 45 | } 46 | 47 | return browserslist(browsers, {ignoreUnknownVersions: true}) 48 | .map((browser) => browser.split(" ")) 49 | .every((browser) => data.stats[browser[0]] && data.stats[browser[0]][browser[1]] === "y") 50 | } 51 | 52 | function find(query) { 53 | if (typeof query !== "string") { 54 | throw new TypeError("The `query` parameter should be a string.") 55 | } 56 | 57 | if (~featuresList.indexOf(query)) { // exact match 58 | return query 59 | } 60 | 61 | return featuresList.filter((file) => contains(file, query)) 62 | } 63 | 64 | function getLatestStableBrowsers() { 65 | return browserslist("last 1 version") 66 | } 67 | 68 | setBrowserScope() 69 | 70 | export { 71 | featuresList as features, 72 | getSupport, 73 | isSupported, 74 | find, 75 | getLatestStableBrowsers, 76 | setBrowserScope, 77 | getBrowserScope 78 | } 79 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 3.0.0 - 2018-07-10 2 | 3 | - Upgraded: browserslist 4 | 5 | # 2.1.0 - 2018-06-06 (never released to npm) 6 | 7 | - Upgraded: browserslist, caniuse-lite 8 | 9 | # 2.0.0 - 2017-05-03 10 | 11 | - Changed: we now use caniuse-lite instead if caniuse-db 12 | ([#59](https://github.com/Nyalab/caniuse-api/pull/59)) 13 | 14 | # 1.6.1 - 2017-04-07 15 | 16 | - Added: export the feature list 17 | ([#48](https://github.com/Nyalab/caniuse-api/pull/48)) 18 | 19 | # 1.5.3 - 2017-02-01 20 | 21 | - Removed unused dependency 22 | ([#54](https://github.com/Nyalab/caniuse-api/pull/54) - @wtgtybhertgeghgtwtg) 23 | 24 | # 1.5.2 - 2016-09-05 25 | 26 | - Fixed: no more generation `postinstall` hook ``\o/``. 27 | ([#47](https://github.com/Nyalab/caniuse-api/pull/47) - @alexisvincent) 28 | 29 | # 1.5.1 - 2016-08-06 30 | 31 | - Fixed: Do not fail when browserslist gives a browser that caniuse-api doesn't 32 | know about 33 | ([#45](https://github.com/Nyalab/caniuse-api/pull/45) - @onigoetz) 34 | 35 | # 1.5.0 - 2016-06-01 36 | 37 | - Added: JSPM support with explicit file extensions ([#40](https://github.com/Nyalab/caniuse-api/issues/40)) 38 | - Upgraded: dependecies (lodash.memoize, lodash.uniq, shelljs, babel-tape-runner, tape, tap-spec) 39 | - Upgraded: ask travis to only test node stable 40 | - Upgraded: some tests fixed, some tests added 41 | 42 | # 1.4.1 - 2015-10-18 43 | 44 | - Fixed: `generator.js` was missing 45 | 46 | # 1.4.0 - 2015-10-18 47 | 48 | - Upgraded: browserslist 1.x 49 | - Upgraded: shelljs 0.5.x 50 | - Added: output to notify if generation has been made or not 51 | (related to [#25](https://github.com/Nyalab/caniuse-api/issues/25)) 52 | 53 | # 1.3.2 - 2015-06-23 54 | 55 | - Fixed: lodash.uniq dep 56 | ([#31](https://github.com/Nyalab/caniuse-api/issues/31)) 57 | 58 | # 1.3.1 - 2015-03-31 59 | 60 | - Fixed: Windows support 61 | 62 | # 1.3.0 - 2015-03-30 63 | 64 | - Added: better exception messages 65 | - Added: full browserify compatibility (by avoiding dynamic require) 66 | 67 | # 1.2.2 - 2015-02-06 68 | 69 | - Fixed: postinstall hook for Windows 70 | 71 | # 1.2.1 - 2015-02-04 72 | 73 | - Changed: Allow in browser usage by avoiding `require.resolve` and using a generated json instead or reading a directory ([#20](https://github.com/Nyalab/caniuse-api/pull/20)] 74 | 75 | # 1.2.0 [YANKED] 76 | 77 | # 1.1.0 - 2015-02-03 78 | 79 | - Fixed: usage of caniuse-db outside the package itself 80 | - Changed: upgrade to browserslist 0.2.x 81 | 82 | # 1.0.0 - 2014-12-16 83 | 84 | - Added: package is now automatically tested by [Travis-CI](https://travis-ci.org/Nyalab/caniuse-api) 85 | 86 | # 0.1.0 - 2014-12-15 87 | 88 | - Changed: complete API changes, released as `caniuse-api` package 89 | 90 | # 0.0.1 - 2014-12-09 91 | 92 | ✨Initial release 93 | -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- 1 | import test from "tape" 2 | import browserslist from "browserslist" 3 | import {feature} from "caniuse-lite" 4 | import * as caniuse from "../src/index" 5 | import {cleanBrowsersList} from "../src/utils" 6 | 7 | test("browserscope tests", (t) => { 8 | const defaultBrowserslist = cleanBrowsersList() 9 | 10 | t.deepEqual(caniuse.getBrowserScope().sort(), defaultBrowserslist.sort(), "default browser scope is browserslists one") 11 | caniuse.setBrowserScope(browserslist("Firefox 4, Opera 12.1")) 12 | t.deepEqual(caniuse.getBrowserScope().sort(), ["firefox", "opera"].sort(), "browser scope update does really update") 13 | 14 | t.end() 15 | }) 16 | 17 | test("features test", (t) => { 18 | t.ok(Array.isArray(caniuse.features), "a feature list is exported") 19 | t.ok(caniuse.features.length > 0, "the feature list is not empty") 20 | t.end() 21 | }) 22 | 23 | test("find tests", (t) => { 24 | t.deepEqual(caniuse.find("radius"), ["border-radius"], "`find` should find border-radius") 25 | t.deepEqual(caniuse.find("canaillou"), [], "non-existent property should return an empty array") 26 | t.ok(caniuse.find("border").length, "generic property name should return several results") 27 | t.throws(() => caniuse.find(null), "not a string should throw an exception") 28 | t.end() 29 | }) 30 | 31 | test("getLatestStableBrowsers tests", (t) => { 32 | t.ok(caniuse.getLatestStableBrowsers().length, "it should return an array of results") 33 | t.ok(caniuse.getLatestStableBrowsers().every((browser) => browser.match(/[A-z_]+ ([0-9\.\-]+|all)/)), "every entry is correctly formed") 34 | t.end() 35 | }) 36 | 37 | test("isSupported tests", (t) => { 38 | t.ok(caniuse.isSupported("border-radius", "ie 9"), "border-radius is supported on ie 9") 39 | t.notOk(caniuse.isSupported("border-radius", "ie 8"), "border-radius is not supported on ie 8") 40 | t.ok(caniuse.isSupported("border-radius", "chrome 45, ie 11"), "works when you pass multiple browsers") 41 | t.throws(() => caniuse.isSupported("canaillou", "chrome 37"), "throws if silly thing are asked") 42 | t.throws(() => caniuse.isSupported("border-radius", "not a real browser"), "throws if you do not pass a real browser") 43 | t.end() 44 | }) 45 | 46 | // If for some reason the caniuse-db is not the same in browserslist and in caniuse-api 47 | // browserslist could return browsers that caniuse-api doesn't know about and crashes 48 | test("isSupported test with browsers caniuse doesn't know", (t) => { 49 | browserslist.data.notabrowser = { 50 | name: 'notabrowser', 51 | versions: ['1'], 52 | released: ['1'] 53 | }; 54 | browserslist.versionAliases.notabrowser = {} 55 | 56 | t.notOk(caniuse.isSupported("border-radius", "notabrowser 1"), "do not throw on non existing data") 57 | 58 | delete browserslist.data.notabrowser 59 | delete browserslist.versionAliases.notabrowser 60 | t.end() 61 | }) 62 | 63 | test("getSupport tests", (t) => { 64 | caniuse.setBrowserScope() 65 | 66 | const borderRadiusFeature = feature(require('caniuse-lite/data/features/border-radius')) 67 | const support = caniuse.getSupport("border-radius") 68 | t.ok(support.safari.y, "border-radius support is ok on some safari") 69 | t.throws(() => caniuse.getSupport("canaillou"),"throws if silly thing are asked") 70 | t.end() 71 | }) 72 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # caniuse-api [![Build Status](https://travis-ci.org/Nyalab/caniuse-api.svg?branch=master)](https://travis-ci.org/Nyalab/caniuse-api) [![Build status](https://ci.appveyor.com/api/projects/status/6j3na522bv3bxfa5/branch/master?svg=true)](https://ci.appveyor.com/project/MoOx/caniuse-api/branch/master) 2 | 3 | request the caniuse data to check browsers compatibilities 4 | 5 | ## Installation 6 | 7 | ```console 8 | $ yarn add caniuse-api 9 | ``` 10 | 11 | ## Usage 12 | 13 | ```js 14 | const caniuse = require('caniuse-api') 15 | 16 | caniuse.getSupport('border-radius') 17 | caniuse.isSupported('border-radius', 'ie 8, ie 9') 18 | caniuse.setBrowserScope('> 5%, last 1 version') 19 | caniuse.getSupport('border-radius') 20 | // ... 21 | ``` 22 | 23 | ## API 24 | 25 | #### `caniuse.getSupport(feature)` 26 | 27 | _ask since which browsers versions a feature is available_ 28 | 29 | * `y`: Since which browser version the feature is available 30 | * `n`: Up to which browser version the feature is unavailable 31 | * `a`: Up to which browser version the feature is partially supported 32 | * `x`: Up to which browser version the feature is prefixed 33 | 34 | ```js 35 | caniuse.getSupport('border-radius', true) 36 | /* 37 | { and_chr: { y: 67 }, 38 | and_ff: { y: 60 }, 39 | and_qq: { y: 1.2 }, 40 | and_uc: { y: 11.8 }, 41 | android: { y: 2.1, x: 2.1 }, 42 | baidu: { y: 7.12 }, 43 | chrome: { y: 4, x: 4 }, 44 | edge: { y: 12 }, 45 | firefox: { a: 2, x: 3.6, y: 3 }, 46 | ie: { n: 8, y: 9 }, 47 | ie_mob: { y: 10 }, 48 | ios_saf: { y: 3.2, x: 3.2 }, 49 | op_mini: {}, 50 | op_mob: { n: 10, y: 11 }, 51 | opera: { n: 10, y: 10.5 }, 52 | safari: { y: 3.1, x: 4 }, 53 | samsung: { y: 4 } } 54 | */ 55 | ``` 56 | 57 | #### `caniuse.isSupported(feature, browsers)` 58 | 59 | _ask if a feature is supported by some browsers_ 60 | 61 | ```js 62 | caniuse.isSupported('border-radius', 'ie 8, ie 9') // false 63 | caniuse.isSupported('border-radius', 'ie 9') // true 64 | ``` 65 | 66 | #### `caniuse.find(query)` 67 | 68 | _search for a caniuse feature name_ 69 | 70 | Ex: 71 | 72 | ```js 73 | caniuse.find('radius') // ['border-radius'] 74 | caniuse.find('nothingness') // [] 75 | caniuse.find('css3') 76 | /* 77 | [ 'css3-attr', 78 | 'css3-boxsizing', 79 | 'css3-colors', 80 | 'css3-cursors-grab', 81 | 'css3-cursors-newer', 82 | 'css3-cursors', 83 | 'css3-tabsize' ] 84 | */ 85 | ``` 86 | 87 | #### `caniuse.getLatestStableBrowsers()` 88 | 89 | _get the current version for each browser_ 90 | 91 | ```js 92 | caniuse.getLatestStableBrowsers() 93 | /* 94 | [ 'and_chr 67', 95 | 'and_ff 60', 96 | 'and_qq 1.2', 97 | 'and_uc 11.8', 98 | 'android 67', 99 | 'baidu 7.12', 100 | 'bb 10', 101 | 'chrome 67', 102 | 'edge 17', 103 | 'firefox 61', 104 | 'ie 11', 105 | 'ie_mob 11', 106 | 'ios_saf 11.3-11.4', 107 | 'op_mini all', 108 | 'op_mob 46', 109 | 'opera 53', 110 | 'safari 11.1', 111 | 'samsung 7.2' ] 112 | */ 113 | ``` 114 | 115 | #### `caniuse.getBrowserScope()` 116 | 117 | _returns a list of browsers currently used for the scope of operations_ 118 | 119 | ```js 120 | caniuse.getBrowserScope() 121 | /* 122 | [ 'and_chr', 123 | 'and_ff', 124 | 'and_qq', 125 | 'and_uc', 126 | 'android', 127 | 'baidu', 128 | 'chrome', 129 | 'edge', 130 | 'firefox', 131 | 'ie', 132 | 'ie_mob', 133 | 'ios_saf', 134 | 'op_mini', 135 | 'op_mob', 136 | 'opera', 137 | 'safari', 138 | 'samsung' ] 139 | */ 140 | ``` 141 | 142 | #### `caniuse.setBrowserScope(browserscope)` 143 | 144 | _if you do not like the default browser scope, you can set it globally by using this method_ 145 | 146 | * browserscope should be a 'autoprefixer' formatted string 147 | 148 | ```js 149 | caniuse.setBrowserScope('> 5%, last 2 versions, Firefox ESR, Opera 12.1') 150 | ``` 151 | 152 | 153 | --- 154 | 155 | ## [Changelog](CHANGELOG.md) 156 | 157 | ## [License](LICENSE) 158 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@sindresorhus/df@^1.0.1": 6 | version "1.0.1" 7 | resolved "https://registry.yarnpkg.com/@sindresorhus/df/-/df-1.0.1.tgz#c69b66f52f6fcdd287c807df210305dbaf78500d" 8 | 9 | "@sindresorhus/df@^2.1.0": 10 | version "2.1.0" 11 | resolved "https://registry.yarnpkg.com/@sindresorhus/df/-/df-2.1.0.tgz#d208cf27e06f0bb476d14d7deccd7d726e9aa389" 12 | dependencies: 13 | execa "^0.2.2" 14 | 15 | abbrev@1: 16 | version "1.1.1" 17 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 18 | 19 | acorn-to-esprima@^2.0.4: 20 | version "2.0.8" 21 | resolved "https://registry.yarnpkg.com/acorn-to-esprima/-/acorn-to-esprima-2.0.8.tgz#003f0c642eb92132f417d3708f14ada82adf2eb1" 22 | 23 | agent-base@2: 24 | version "2.1.1" 25 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-2.1.1.tgz#d6de10d5af6132d5bd692427d46fc538539094c7" 26 | dependencies: 27 | extend "~3.0.0" 28 | semver "~5.0.1" 29 | 30 | ajv@^4.9.1: 31 | version "4.11.8" 32 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 33 | dependencies: 34 | co "^4.6.0" 35 | json-stable-stringify "^1.0.1" 36 | 37 | ansi-regex@^2.0.0: 38 | version "2.1.1" 39 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 40 | 41 | ansi-styles@^2.2.1: 42 | version "2.2.1" 43 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 44 | 45 | anymatch@^1.3.0: 46 | version "1.3.2" 47 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 48 | dependencies: 49 | micromatch "^2.1.5" 50 | normalize-path "^2.0.0" 51 | 52 | aproba@^1.0.3: 53 | version "1.2.0" 54 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 55 | 56 | are-we-there-yet@~1.1.2: 57 | version "1.1.4" 58 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 59 | dependencies: 60 | delegates "^1.0.0" 61 | readable-stream "^2.0.6" 62 | 63 | arr-diff@^2.0.0: 64 | version "2.0.0" 65 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 66 | dependencies: 67 | arr-flatten "^1.0.1" 68 | 69 | arr-flatten@^1.0.1: 70 | version "1.1.0" 71 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 72 | 73 | array-union@^1.0.1: 74 | version "1.0.2" 75 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 76 | dependencies: 77 | array-uniq "^1.0.1" 78 | 79 | array-uniq@^1.0.1: 80 | version "1.0.3" 81 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 82 | 83 | array-unique@^0.2.1: 84 | version "0.2.1" 85 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 86 | 87 | arrify@^1.0.0: 88 | version "1.0.1" 89 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 90 | 91 | asn1@~0.2.3: 92 | version "0.2.3" 93 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 94 | 95 | assert-plus@1.0.0, assert-plus@^1.0.0: 96 | version "1.0.0" 97 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 98 | 99 | assert-plus@^0.2.0: 100 | version "0.2.0" 101 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 102 | 103 | async-each@^1.0.0: 104 | version "1.0.1" 105 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 106 | 107 | asynckit@^0.4.0: 108 | version "0.4.0" 109 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 110 | 111 | aws-sign2@~0.6.0: 112 | version "0.6.0" 113 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 114 | 115 | aws4@^1.2.1: 116 | version "1.6.0" 117 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 118 | 119 | babel-cli@^6.22.2: 120 | version "6.26.0" 121 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" 122 | dependencies: 123 | babel-core "^6.26.0" 124 | babel-polyfill "^6.26.0" 125 | babel-register "^6.26.0" 126 | babel-runtime "^6.26.0" 127 | commander "^2.11.0" 128 | convert-source-map "^1.5.0" 129 | fs-readdir-recursive "^1.0.0" 130 | glob "^7.1.2" 131 | lodash "^4.17.4" 132 | output-file-sync "^1.1.2" 133 | path-is-absolute "^1.0.1" 134 | slash "^1.0.0" 135 | source-map "^0.5.6" 136 | v8flags "^2.1.1" 137 | optionalDependencies: 138 | chokidar "^1.6.1" 139 | 140 | babel-code-frame@^6.26.0: 141 | version "6.26.0" 142 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 143 | dependencies: 144 | chalk "^1.1.3" 145 | esutils "^2.0.2" 146 | js-tokens "^3.0.2" 147 | 148 | babel-core@^6.26.0: 149 | version "6.26.0" 150 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 151 | dependencies: 152 | babel-code-frame "^6.26.0" 153 | babel-generator "^6.26.0" 154 | babel-helpers "^6.24.1" 155 | babel-messages "^6.23.0" 156 | babel-register "^6.26.0" 157 | babel-runtime "^6.26.0" 158 | babel-template "^6.26.0" 159 | babel-traverse "^6.26.0" 160 | babel-types "^6.26.0" 161 | babylon "^6.18.0" 162 | convert-source-map "^1.5.0" 163 | debug "^2.6.8" 164 | json5 "^0.5.1" 165 | lodash "^4.17.4" 166 | minimatch "^3.0.4" 167 | path-is-absolute "^1.0.1" 168 | private "^0.1.7" 169 | slash "^1.0.0" 170 | source-map "^0.5.6" 171 | 172 | babel-eslint@^5.0.0: 173 | version "5.0.4" 174 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-5.0.4.tgz#a6ba51ae582a1d4e25adfddbc2a61f8d5a9040b9" 175 | dependencies: 176 | acorn-to-esprima "^2.0.4" 177 | babel-traverse "^6.0.20" 178 | babel-types "^6.0.19" 179 | babylon "^6.0.18" 180 | lodash.assign "^3.2.0" 181 | lodash.pick "^3.1.0" 182 | 183 | babel-generator@^6.26.0: 184 | version "6.26.1" 185 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" 186 | dependencies: 187 | babel-messages "^6.23.0" 188 | babel-runtime "^6.26.0" 189 | babel-types "^6.26.0" 190 | detect-indent "^4.0.0" 191 | jsesc "^1.3.0" 192 | lodash "^4.17.4" 193 | source-map "^0.5.7" 194 | trim-right "^1.0.1" 195 | 196 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 197 | version "6.24.1" 198 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 199 | dependencies: 200 | babel-helper-explode-assignable-expression "^6.24.1" 201 | babel-runtime "^6.22.0" 202 | babel-types "^6.24.1" 203 | 204 | babel-helper-call-delegate@^6.24.1: 205 | version "6.24.1" 206 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 207 | dependencies: 208 | babel-helper-hoist-variables "^6.24.1" 209 | babel-runtime "^6.22.0" 210 | babel-traverse "^6.24.1" 211 | babel-types "^6.24.1" 212 | 213 | babel-helper-define-map@^6.24.1: 214 | version "6.26.0" 215 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 216 | dependencies: 217 | babel-helper-function-name "^6.24.1" 218 | babel-runtime "^6.26.0" 219 | babel-types "^6.26.0" 220 | lodash "^4.17.4" 221 | 222 | babel-helper-explode-assignable-expression@^6.24.1: 223 | version "6.24.1" 224 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 225 | dependencies: 226 | babel-runtime "^6.22.0" 227 | babel-traverse "^6.24.1" 228 | babel-types "^6.24.1" 229 | 230 | babel-helper-function-name@^6.24.1: 231 | version "6.24.1" 232 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 233 | dependencies: 234 | babel-helper-get-function-arity "^6.24.1" 235 | babel-runtime "^6.22.0" 236 | babel-template "^6.24.1" 237 | babel-traverse "^6.24.1" 238 | babel-types "^6.24.1" 239 | 240 | babel-helper-get-function-arity@^6.24.1: 241 | version "6.24.1" 242 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 243 | dependencies: 244 | babel-runtime "^6.22.0" 245 | babel-types "^6.24.1" 246 | 247 | babel-helper-hoist-variables@^6.24.1: 248 | version "6.24.1" 249 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 250 | dependencies: 251 | babel-runtime "^6.22.0" 252 | babel-types "^6.24.1" 253 | 254 | babel-helper-optimise-call-expression@^6.24.1: 255 | version "6.24.1" 256 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 257 | dependencies: 258 | babel-runtime "^6.22.0" 259 | babel-types "^6.24.1" 260 | 261 | babel-helper-regex@^6.24.1: 262 | version "6.26.0" 263 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 264 | dependencies: 265 | babel-runtime "^6.26.0" 266 | babel-types "^6.26.0" 267 | lodash "^4.17.4" 268 | 269 | babel-helper-remap-async-to-generator@^6.24.1: 270 | version "6.24.1" 271 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 272 | dependencies: 273 | babel-helper-function-name "^6.24.1" 274 | babel-runtime "^6.22.0" 275 | babel-template "^6.24.1" 276 | babel-traverse "^6.24.1" 277 | babel-types "^6.24.1" 278 | 279 | babel-helper-replace-supers@^6.24.1: 280 | version "6.24.1" 281 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 282 | dependencies: 283 | babel-helper-optimise-call-expression "^6.24.1" 284 | babel-messages "^6.23.0" 285 | babel-runtime "^6.22.0" 286 | babel-template "^6.24.1" 287 | babel-traverse "^6.24.1" 288 | babel-types "^6.24.1" 289 | 290 | babel-helpers@^6.24.1: 291 | version "6.24.1" 292 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 293 | dependencies: 294 | babel-runtime "^6.22.0" 295 | babel-template "^6.24.1" 296 | 297 | babel-messages@^6.23.0: 298 | version "6.23.0" 299 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 300 | dependencies: 301 | babel-runtime "^6.22.0" 302 | 303 | babel-plugin-check-es2015-constants@^6.22.0: 304 | version "6.22.0" 305 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 306 | dependencies: 307 | babel-runtime "^6.22.0" 308 | 309 | babel-plugin-syntax-async-functions@^6.8.0: 310 | version "6.13.0" 311 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 312 | 313 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 314 | version "6.13.0" 315 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 316 | 317 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 318 | version "6.22.0" 319 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 320 | 321 | babel-plugin-transform-async-to-generator@^6.24.1: 322 | version "6.24.1" 323 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 324 | dependencies: 325 | babel-helper-remap-async-to-generator "^6.24.1" 326 | babel-plugin-syntax-async-functions "^6.8.0" 327 | babel-runtime "^6.22.0" 328 | 329 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 330 | version "6.22.0" 331 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 332 | dependencies: 333 | babel-runtime "^6.22.0" 334 | 335 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 336 | version "6.22.0" 337 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 338 | dependencies: 339 | babel-runtime "^6.22.0" 340 | 341 | babel-plugin-transform-es2015-block-scoping@^6.24.1: 342 | version "6.26.0" 343 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 344 | dependencies: 345 | babel-runtime "^6.26.0" 346 | babel-template "^6.26.0" 347 | babel-traverse "^6.26.0" 348 | babel-types "^6.26.0" 349 | lodash "^4.17.4" 350 | 351 | babel-plugin-transform-es2015-classes@^6.24.1: 352 | version "6.24.1" 353 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 354 | dependencies: 355 | babel-helper-define-map "^6.24.1" 356 | babel-helper-function-name "^6.24.1" 357 | babel-helper-optimise-call-expression "^6.24.1" 358 | babel-helper-replace-supers "^6.24.1" 359 | babel-messages "^6.23.0" 360 | babel-runtime "^6.22.0" 361 | babel-template "^6.24.1" 362 | babel-traverse "^6.24.1" 363 | babel-types "^6.24.1" 364 | 365 | babel-plugin-transform-es2015-computed-properties@^6.24.1: 366 | version "6.24.1" 367 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 368 | dependencies: 369 | babel-runtime "^6.22.0" 370 | babel-template "^6.24.1" 371 | 372 | babel-plugin-transform-es2015-destructuring@^6.22.0: 373 | version "6.23.0" 374 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 375 | dependencies: 376 | babel-runtime "^6.22.0" 377 | 378 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1: 379 | version "6.24.1" 380 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 381 | dependencies: 382 | babel-runtime "^6.22.0" 383 | babel-types "^6.24.1" 384 | 385 | babel-plugin-transform-es2015-for-of@^6.22.0: 386 | version "6.23.0" 387 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 388 | dependencies: 389 | babel-runtime "^6.22.0" 390 | 391 | babel-plugin-transform-es2015-function-name@^6.24.1: 392 | version "6.24.1" 393 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 394 | dependencies: 395 | babel-helper-function-name "^6.24.1" 396 | babel-runtime "^6.22.0" 397 | babel-types "^6.24.1" 398 | 399 | babel-plugin-transform-es2015-literals@^6.22.0: 400 | version "6.22.0" 401 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 402 | dependencies: 403 | babel-runtime "^6.22.0" 404 | 405 | babel-plugin-transform-es2015-modules-amd@^6.24.1: 406 | version "6.24.1" 407 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 408 | dependencies: 409 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 410 | babel-runtime "^6.22.0" 411 | babel-template "^6.24.1" 412 | 413 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 414 | version "6.26.0" 415 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 416 | dependencies: 417 | babel-plugin-transform-strict-mode "^6.24.1" 418 | babel-runtime "^6.26.0" 419 | babel-template "^6.26.0" 420 | babel-types "^6.26.0" 421 | 422 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1: 423 | version "6.24.1" 424 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 425 | dependencies: 426 | babel-helper-hoist-variables "^6.24.1" 427 | babel-runtime "^6.22.0" 428 | babel-template "^6.24.1" 429 | 430 | babel-plugin-transform-es2015-modules-umd@^6.24.1: 431 | version "6.24.1" 432 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 433 | dependencies: 434 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 435 | babel-runtime "^6.22.0" 436 | babel-template "^6.24.1" 437 | 438 | babel-plugin-transform-es2015-object-super@^6.24.1: 439 | version "6.24.1" 440 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 441 | dependencies: 442 | babel-helper-replace-supers "^6.24.1" 443 | babel-runtime "^6.22.0" 444 | 445 | babel-plugin-transform-es2015-parameters@^6.24.1: 446 | version "6.24.1" 447 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 448 | dependencies: 449 | babel-helper-call-delegate "^6.24.1" 450 | babel-helper-get-function-arity "^6.24.1" 451 | babel-runtime "^6.22.0" 452 | babel-template "^6.24.1" 453 | babel-traverse "^6.24.1" 454 | babel-types "^6.24.1" 455 | 456 | babel-plugin-transform-es2015-shorthand-properties@^6.24.1: 457 | version "6.24.1" 458 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 459 | dependencies: 460 | babel-runtime "^6.22.0" 461 | babel-types "^6.24.1" 462 | 463 | babel-plugin-transform-es2015-spread@^6.22.0: 464 | version "6.22.0" 465 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 466 | dependencies: 467 | babel-runtime "^6.22.0" 468 | 469 | babel-plugin-transform-es2015-sticky-regex@^6.24.1: 470 | version "6.24.1" 471 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 472 | dependencies: 473 | babel-helper-regex "^6.24.1" 474 | babel-runtime "^6.22.0" 475 | babel-types "^6.24.1" 476 | 477 | babel-plugin-transform-es2015-template-literals@^6.22.0: 478 | version "6.22.0" 479 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 480 | dependencies: 481 | babel-runtime "^6.22.0" 482 | 483 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 484 | version "6.23.0" 485 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 486 | dependencies: 487 | babel-runtime "^6.22.0" 488 | 489 | babel-plugin-transform-es2015-unicode-regex@^6.24.1: 490 | version "6.24.1" 491 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 492 | dependencies: 493 | babel-helper-regex "^6.24.1" 494 | babel-runtime "^6.22.0" 495 | regexpu-core "^2.0.0" 496 | 497 | babel-plugin-transform-exponentiation-operator@^6.24.1: 498 | version "6.24.1" 499 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 500 | dependencies: 501 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 502 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 503 | babel-runtime "^6.22.0" 504 | 505 | babel-plugin-transform-regenerator@^6.24.1: 506 | version "6.26.0" 507 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 508 | dependencies: 509 | regenerator-transform "^0.10.0" 510 | 511 | babel-plugin-transform-strict-mode@^6.24.1: 512 | version "6.24.1" 513 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 514 | dependencies: 515 | babel-runtime "^6.22.0" 516 | babel-types "^6.24.1" 517 | 518 | babel-polyfill@^6.26.0, babel-polyfill@^6.3.14: 519 | version "6.26.0" 520 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 521 | dependencies: 522 | babel-runtime "^6.26.0" 523 | core-js "^2.5.0" 524 | regenerator-runtime "^0.10.5" 525 | 526 | babel-preset-es2015@^6.24.1: 527 | version "6.24.1" 528 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" 529 | dependencies: 530 | babel-plugin-check-es2015-constants "^6.22.0" 531 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 532 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 533 | babel-plugin-transform-es2015-block-scoping "^6.24.1" 534 | babel-plugin-transform-es2015-classes "^6.24.1" 535 | babel-plugin-transform-es2015-computed-properties "^6.24.1" 536 | babel-plugin-transform-es2015-destructuring "^6.22.0" 537 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1" 538 | babel-plugin-transform-es2015-for-of "^6.22.0" 539 | babel-plugin-transform-es2015-function-name "^6.24.1" 540 | babel-plugin-transform-es2015-literals "^6.22.0" 541 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 542 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 543 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1" 544 | babel-plugin-transform-es2015-modules-umd "^6.24.1" 545 | babel-plugin-transform-es2015-object-super "^6.24.1" 546 | babel-plugin-transform-es2015-parameters "^6.24.1" 547 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1" 548 | babel-plugin-transform-es2015-spread "^6.22.0" 549 | babel-plugin-transform-es2015-sticky-regex "^6.24.1" 550 | babel-plugin-transform-es2015-template-literals "^6.22.0" 551 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 552 | babel-plugin-transform-es2015-unicode-regex "^6.24.1" 553 | babel-plugin-transform-regenerator "^6.24.1" 554 | 555 | babel-preset-es2016@^6.24.1: 556 | version "6.24.1" 557 | resolved "https://registry.yarnpkg.com/babel-preset-es2016/-/babel-preset-es2016-6.24.1.tgz#f900bf93e2ebc0d276df9b8ab59724ebfd959f8b" 558 | dependencies: 559 | babel-plugin-transform-exponentiation-operator "^6.24.1" 560 | 561 | babel-preset-es2017@^6.24.1: 562 | version "6.24.1" 563 | resolved "https://registry.yarnpkg.com/babel-preset-es2017/-/babel-preset-es2017-6.24.1.tgz#597beadfb9f7f208bcfd8a12e9b2b29b8b2f14d1" 564 | dependencies: 565 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 566 | babel-plugin-transform-async-to-generator "^6.24.1" 567 | 568 | babel-preset-latest@^6.22.0: 569 | version "6.24.1" 570 | resolved "https://registry.yarnpkg.com/babel-preset-latest/-/babel-preset-latest-6.24.1.tgz#677de069154a7485c2d25c577c02f624b85b85e8" 571 | dependencies: 572 | babel-preset-es2015 "^6.24.1" 573 | babel-preset-es2016 "^6.24.1" 574 | babel-preset-es2017 "^6.24.1" 575 | 576 | babel-register@^6.26.0, babel-register@^6.3.13: 577 | version "6.26.0" 578 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 579 | dependencies: 580 | babel-core "^6.26.0" 581 | babel-runtime "^6.26.0" 582 | core-js "^2.5.0" 583 | home-or-tmp "^2.0.0" 584 | lodash "^4.17.4" 585 | mkdirp "^0.5.1" 586 | source-map-support "^0.4.15" 587 | 588 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 589 | version "6.26.0" 590 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 591 | dependencies: 592 | core-js "^2.4.0" 593 | regenerator-runtime "^0.11.0" 594 | 595 | babel-tape-runner@^2.0.1: 596 | version "2.0.1" 597 | resolved "https://registry.yarnpkg.com/babel-tape-runner/-/babel-tape-runner-2.0.1.tgz#9c012ff9ab0f30020ac11fcc8e848f203f222173" 598 | dependencies: 599 | babel-polyfill "^6.3.14" 600 | babel-register "^6.3.13" 601 | glob "^6.0.1" 602 | 603 | babel-template@^6.24.1, babel-template@^6.26.0: 604 | version "6.26.0" 605 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 606 | dependencies: 607 | babel-runtime "^6.26.0" 608 | babel-traverse "^6.26.0" 609 | babel-types "^6.26.0" 610 | babylon "^6.18.0" 611 | lodash "^4.17.4" 612 | 613 | babel-traverse@^6.0.20, babel-traverse@^6.24.1, babel-traverse@^6.26.0: 614 | version "6.26.0" 615 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 616 | dependencies: 617 | babel-code-frame "^6.26.0" 618 | babel-messages "^6.23.0" 619 | babel-runtime "^6.26.0" 620 | babel-types "^6.26.0" 621 | babylon "^6.18.0" 622 | debug "^2.6.8" 623 | globals "^9.18.0" 624 | invariant "^2.2.2" 625 | lodash "^4.17.4" 626 | 627 | babel-types@^6.0.19, babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 628 | version "6.26.0" 629 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 630 | dependencies: 631 | babel-runtime "^6.26.0" 632 | esutils "^2.0.2" 633 | lodash "^4.17.4" 634 | to-fast-properties "^1.0.3" 635 | 636 | babylon@^6.0.18, babylon@^6.18.0: 637 | version "6.18.0" 638 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 639 | 640 | balanced-match@^1.0.0: 641 | version "1.0.0" 642 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 643 | 644 | bcrypt-pbkdf@^1.0.0: 645 | version "1.0.1" 646 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 647 | dependencies: 648 | tweetnacl "^0.14.3" 649 | 650 | binary-extensions@^1.0.0: 651 | version "1.11.0" 652 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 653 | 654 | block-stream@*: 655 | version "0.0.9" 656 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 657 | dependencies: 658 | inherits "~2.0.0" 659 | 660 | boom@2.x.x: 661 | version "2.10.1" 662 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 663 | dependencies: 664 | hoek "2.x.x" 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 | browserslist@^3.0.0: 682 | version "3.2.8" 683 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-3.2.8.tgz#b0005361d6471f0f5952797a76fc985f1f978fc6" 684 | dependencies: 685 | caniuse-lite "^1.0.30000844" 686 | electron-to-chromium "^1.3.47" 687 | 688 | caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000844: 689 | version "1.0.30000849" 690 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000849.tgz#7e1aa48e6d58917dcd70aabf7e7a33514a258f91" 691 | 692 | caseless@~0.12.0: 693 | version "0.12.0" 694 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 695 | 696 | chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3: 697 | version "1.1.3" 698 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 699 | dependencies: 700 | ansi-styles "^2.2.1" 701 | escape-string-regexp "^1.0.2" 702 | has-ansi "^2.0.0" 703 | strip-ansi "^3.0.0" 704 | supports-color "^2.0.0" 705 | 706 | checkup@^1.3.0: 707 | version "1.3.0" 708 | resolved "https://registry.yarnpkg.com/checkup/-/checkup-1.3.0.tgz#d3800276fea5d0f247ffc951be78c8b02f8e0d76" 709 | 710 | chokidar@^1.6.1: 711 | version "1.7.0" 712 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 713 | dependencies: 714 | anymatch "^1.3.0" 715 | async-each "^1.0.0" 716 | glob-parent "^2.0.0" 717 | inherits "^2.0.1" 718 | is-binary-path "^1.0.0" 719 | is-glob "^2.0.0" 720 | path-is-absolute "^1.0.0" 721 | readdirp "^2.0.0" 722 | optionalDependencies: 723 | fsevents "^1.0.0" 724 | 725 | cli@~1.0.0: 726 | version "1.0.1" 727 | resolved "https://registry.yarnpkg.com/cli/-/cli-1.0.1.tgz#22817534f24bfa4950c34d532d48ecbc621b8c14" 728 | dependencies: 729 | exit "0.1.2" 730 | glob "^7.1.1" 731 | 732 | co@^4.6.0: 733 | version "4.6.0" 734 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 735 | 736 | code-point-at@^1.0.0: 737 | version "1.1.0" 738 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 739 | 740 | combined-stream@^1.0.5, combined-stream@~1.0.5: 741 | version "1.0.6" 742 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818" 743 | dependencies: 744 | delayed-stream "~1.0.0" 745 | 746 | commander@^2.11.0: 747 | version "2.15.0" 748 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.15.0.tgz#ad2a23a1c3b036e392469b8012cec6b33b4c1322" 749 | 750 | concat-map@0.0.1: 751 | version "0.0.1" 752 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 753 | 754 | console-browserify@1.1.x: 755 | version "1.1.0" 756 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 757 | dependencies: 758 | date-now "^0.1.4" 759 | 760 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 761 | version "1.1.0" 762 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 763 | 764 | convert-source-map@^1.5.0: 765 | version "1.5.1" 766 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 767 | 768 | core-js@^2.4.0, core-js@^2.5.0: 769 | version "2.5.3" 770 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e" 771 | 772 | core-util-is@1.0.2, core-util-is@~1.0.0: 773 | version "1.0.2" 774 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 775 | 776 | cross-spawn-async@^2.1.1: 777 | version "2.2.5" 778 | resolved "https://registry.yarnpkg.com/cross-spawn-async/-/cross-spawn-async-2.2.5.tgz#845ff0c0834a3ded9d160daca6d390906bb288cc" 779 | dependencies: 780 | lru-cache "^4.0.0" 781 | which "^1.2.8" 782 | 783 | cryptiles@2.x.x: 784 | version "2.0.5" 785 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 786 | dependencies: 787 | boom "2.x.x" 788 | 789 | dashdash@^1.12.0: 790 | version "1.14.1" 791 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 792 | dependencies: 793 | assert-plus "^1.0.0" 794 | 795 | date-now@^0.1.4: 796 | version "0.1.4" 797 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 798 | 799 | debug@2, debug@^2.2.0, debug@^2.6.8: 800 | version "2.6.9" 801 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 802 | dependencies: 803 | ms "2.0.0" 804 | 805 | debug@^3.0.0: 806 | version "3.1.0" 807 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 808 | dependencies: 809 | ms "2.0.0" 810 | 811 | deep-equal@~1.0.1: 812 | version "1.0.1" 813 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" 814 | 815 | deep-extend@~0.4.0: 816 | version "0.4.2" 817 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 818 | 819 | define-properties@^1.1.2: 820 | version "1.1.2" 821 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 822 | dependencies: 823 | foreach "^2.0.5" 824 | object-keys "^1.0.8" 825 | 826 | defined@~1.0.0: 827 | version "1.0.0" 828 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 829 | 830 | delayed-stream@~1.0.0: 831 | version "1.0.0" 832 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 833 | 834 | delegates@^1.0.0: 835 | version "1.0.0" 836 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 837 | 838 | detect-indent@^4.0.0: 839 | version "4.0.0" 840 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 841 | dependencies: 842 | repeating "^2.0.0" 843 | 844 | detect-libc@^1.0.2: 845 | version "1.0.3" 846 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 847 | 848 | dom-serializer@0: 849 | version "0.1.0" 850 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82" 851 | dependencies: 852 | domelementtype "~1.1.1" 853 | entities "~1.1.1" 854 | 855 | domelementtype@1: 856 | version "1.3.0" 857 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2" 858 | 859 | domelementtype@~1.1.1: 860 | version "1.1.3" 861 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b" 862 | 863 | domhandler@2.3: 864 | version "2.3.0" 865 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.3.0.tgz#2de59a0822d5027fabff6f032c2b25a2a8abe738" 866 | dependencies: 867 | domelementtype "1" 868 | 869 | domutils@1.5: 870 | version "1.5.1" 871 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" 872 | dependencies: 873 | dom-serializer "0" 874 | domelementtype "1" 875 | 876 | duplexer@^0.1.1: 877 | version "0.1.1" 878 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 879 | 880 | ecc-jsbn@~0.1.1: 881 | version "0.1.1" 882 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 883 | dependencies: 884 | jsbn "~0.1.0" 885 | 886 | electron-to-chromium@^1.3.47: 887 | version "1.3.48" 888 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.48.tgz#d3b0d8593814044e092ece2108fc3ac9aea4b900" 889 | 890 | entities@1.0: 891 | version "1.0.0" 892 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.0.0.tgz#b2987aa3821347fcde642b24fdfc9e4fb712bf26" 893 | 894 | entities@~1.1.1: 895 | version "1.1.1" 896 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0" 897 | 898 | es-abstract@^1.5.0: 899 | version "1.10.0" 900 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.10.0.tgz#1ecb36c197842a00d8ee4c2dfd8646bb97d60864" 901 | dependencies: 902 | es-to-primitive "^1.1.1" 903 | function-bind "^1.1.1" 904 | has "^1.0.1" 905 | is-callable "^1.1.3" 906 | is-regex "^1.0.4" 907 | 908 | es-to-primitive@^1.1.1: 909 | version "1.1.1" 910 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 911 | dependencies: 912 | is-callable "^1.1.1" 913 | is-date-object "^1.0.1" 914 | is-symbol "^1.0.1" 915 | 916 | escape-string-applescript@^1.0.0: 917 | version "1.0.0" 918 | resolved "https://registry.yarnpkg.com/escape-string-applescript/-/escape-string-applescript-1.0.0.tgz#6f1c2294245d82c63bc03338dc19a94aa8428892" 919 | 920 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 921 | version "1.0.5" 922 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 923 | 924 | esutils@^2.0.2: 925 | version "2.0.2" 926 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 927 | 928 | execa@^0.2.2: 929 | version "0.2.2" 930 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.2.2.tgz#e2ead472c2c31aad6f73f1ac956eef45e12320cb" 931 | dependencies: 932 | cross-spawn-async "^2.1.1" 933 | npm-run-path "^1.0.0" 934 | object-assign "^4.0.1" 935 | path-key "^1.0.0" 936 | strip-eof "^1.0.0" 937 | 938 | execon@^1.2.0: 939 | version "1.2.9" 940 | resolved "https://registry.yarnpkg.com/execon/-/execon-1.2.9.tgz#6db11333dcc824f1f13e7317fed0d94a2f26491f" 941 | 942 | exit@0.1.2, exit@0.1.x: 943 | version "0.1.2" 944 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 945 | 946 | expand-brackets@^0.1.4: 947 | version "0.1.5" 948 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 949 | dependencies: 950 | is-posix-bracket "^0.1.0" 951 | 952 | expand-range@^1.8.1: 953 | version "1.8.2" 954 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 955 | dependencies: 956 | fill-range "^2.1.0" 957 | 958 | extend@3, extend@~3.0.0: 959 | version "3.0.1" 960 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 961 | 962 | extglob@^0.3.1: 963 | version "0.3.2" 964 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 965 | dependencies: 966 | is-extglob "^1.0.0" 967 | 968 | extsprintf@1.3.0: 969 | version "1.3.0" 970 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 971 | 972 | extsprintf@^1.2.0: 973 | version "1.4.0" 974 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 975 | 976 | figures@^1.4.0: 977 | version "1.7.0" 978 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 979 | dependencies: 980 | escape-string-regexp "^1.0.5" 981 | object-assign "^4.1.0" 982 | 983 | filename-regex@^2.0.0: 984 | version "2.0.1" 985 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 986 | 987 | fill-range@^2.1.0: 988 | version "2.2.3" 989 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 990 | dependencies: 991 | is-number "^2.1.0" 992 | isobject "^2.0.0" 993 | randomatic "^1.1.3" 994 | repeat-element "^1.1.2" 995 | repeat-string "^1.5.2" 996 | 997 | follow-redirects@0.0.7: 998 | version "0.0.7" 999 | resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-0.0.7.tgz#34b90bab2a911aa347571da90f22bd36ecd8a919" 1000 | dependencies: 1001 | debug "^2.2.0" 1002 | stream-consume "^0.1.0" 1003 | 1004 | for-each@~0.3.2: 1005 | version "0.3.2" 1006 | resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.2.tgz#2c40450b9348e97f281322593ba96704b9abd4d4" 1007 | dependencies: 1008 | is-function "~1.0.0" 1009 | 1010 | for-in@^1.0.1: 1011 | version "1.0.2" 1012 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1013 | 1014 | for-own@^0.1.4: 1015 | version "0.1.5" 1016 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1017 | dependencies: 1018 | for-in "^1.0.1" 1019 | 1020 | foreach@^2.0.5: 1021 | version "2.0.5" 1022 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1023 | 1024 | forever-agent@~0.6.1: 1025 | version "0.6.1" 1026 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1027 | 1028 | form-data@~2.1.1: 1029 | version "2.1.4" 1030 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1031 | dependencies: 1032 | asynckit "^0.4.0" 1033 | combined-stream "^1.0.5" 1034 | mime-types "^2.1.12" 1035 | 1036 | fs-extra@^0.26.2: 1037 | version "0.26.7" 1038 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.26.7.tgz#9ae1fdd94897798edab76d0918cf42d0c3184fa9" 1039 | dependencies: 1040 | graceful-fs "^4.1.2" 1041 | jsonfile "^2.1.0" 1042 | klaw "^1.0.0" 1043 | path-is-absolute "^1.0.0" 1044 | rimraf "^2.2.8" 1045 | 1046 | fs-readdir-recursive@^1.0.0: 1047 | version "1.1.0" 1048 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" 1049 | 1050 | fs.realpath@^1.0.0: 1051 | version "1.0.0" 1052 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1053 | 1054 | fsevents@^1.0.0: 1055 | version "1.1.3" 1056 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" 1057 | dependencies: 1058 | nan "^2.3.0" 1059 | node-pre-gyp "^0.6.39" 1060 | 1061 | fstream-ignore@^1.0.5: 1062 | version "1.0.5" 1063 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1064 | dependencies: 1065 | fstream "^1.0.0" 1066 | inherits "2" 1067 | minimatch "^3.0.0" 1068 | 1069 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1070 | version "1.0.11" 1071 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1072 | dependencies: 1073 | graceful-fs "^4.1.2" 1074 | inherits "~2.0.0" 1075 | mkdirp ">=0.5 0" 1076 | rimraf "2" 1077 | 1078 | function-bind@^1.0.2, function-bind@^1.1.1, function-bind@~1.1.1: 1079 | version "1.1.1" 1080 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1081 | 1082 | gauge@~2.7.3: 1083 | version "2.7.4" 1084 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1085 | dependencies: 1086 | aproba "^1.0.3" 1087 | console-control-strings "^1.0.0" 1088 | has-unicode "^2.0.0" 1089 | object-assign "^4.1.0" 1090 | signal-exit "^3.0.0" 1091 | string-width "^1.0.1" 1092 | strip-ansi "^3.0.1" 1093 | wide-align "^1.1.0" 1094 | 1095 | getpass@^0.1.1: 1096 | version "0.1.7" 1097 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1098 | dependencies: 1099 | assert-plus "^1.0.0" 1100 | 1101 | github-release-from-changelog@^1.1.1: 1102 | version "1.3.1" 1103 | resolved "https://registry.yarnpkg.com/github-release-from-changelog/-/github-release-from-changelog-1.3.1.tgz#59055a520b5138b1711dde7498b8e91a6df66c93" 1104 | dependencies: 1105 | grizzly "^2.0.0" 1106 | minimist "^1.2.0" 1107 | 1108 | github@^11.0.0: 1109 | version "11.0.0" 1110 | resolved "https://registry.yarnpkg.com/github/-/github-11.0.0.tgz#edb32df5efb33cad004ebf0bdd2a4b30bb63a854" 1111 | dependencies: 1112 | follow-redirects "0.0.7" 1113 | https-proxy-agent "^1.0.0" 1114 | mime "^1.2.11" 1115 | netrc "^0.1.4" 1116 | 1117 | glob-base@^0.3.0: 1118 | version "0.3.0" 1119 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1120 | dependencies: 1121 | glob-parent "^2.0.0" 1122 | is-glob "^2.0.0" 1123 | 1124 | glob-parent@^2.0.0: 1125 | version "2.0.0" 1126 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1127 | dependencies: 1128 | is-glob "^2.0.0" 1129 | 1130 | glob@^6.0.1: 1131 | version "6.0.4" 1132 | resolved "https://registry.yarnpkg.com/glob/-/glob-6.0.4.tgz#0f08860f6a155127b2fadd4f9ce24b1aab6e4d22" 1133 | dependencies: 1134 | inflight "^1.0.4" 1135 | inherits "2" 1136 | minimatch "2 || 3" 1137 | once "^1.3.0" 1138 | path-is-absolute "^1.0.0" 1139 | 1140 | glob@^7.0.5, glob@^7.1.1, glob@^7.1.2, glob@~7.1.2: 1141 | version "7.1.2" 1142 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1143 | dependencies: 1144 | fs.realpath "^1.0.0" 1145 | inflight "^1.0.4" 1146 | inherits "2" 1147 | minimatch "^3.0.4" 1148 | once "^1.3.0" 1149 | path-is-absolute "^1.0.0" 1150 | 1151 | globals@^9.18.0: 1152 | version "9.18.0" 1153 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1154 | 1155 | globby@^4.0.0: 1156 | version "4.1.0" 1157 | resolved "https://registry.yarnpkg.com/globby/-/globby-4.1.0.tgz#080f54549ec1b82a6c60e631fc82e1211dbe95f8" 1158 | dependencies: 1159 | array-union "^1.0.1" 1160 | arrify "^1.0.0" 1161 | glob "^6.0.1" 1162 | object-assign "^4.0.1" 1163 | pify "^2.0.0" 1164 | pinkie-promise "^2.0.0" 1165 | 1166 | graceful-fs@^4.1.2, graceful-fs@^4.1.4, graceful-fs@^4.1.6, graceful-fs@^4.1.9: 1167 | version "4.1.11" 1168 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1169 | 1170 | grizzly@^2.0.0: 1171 | version "2.1.5" 1172 | resolved "https://registry.yarnpkg.com/grizzly/-/grizzly-2.1.5.tgz#d715be2039cb64c799b4c93a64ee1196d2795ea0" 1173 | dependencies: 1174 | checkup "^1.3.0" 1175 | debug "^3.0.0" 1176 | execon "^1.2.0" 1177 | github "^11.0.0" 1178 | minimist "^1.2.0" 1179 | os-homedir "^1.0.0" 1180 | readjson "^1.1.0" 1181 | 1182 | har-schema@^1.0.5: 1183 | version "1.0.5" 1184 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1185 | 1186 | har-validator@~4.2.1: 1187 | version "4.2.1" 1188 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1189 | dependencies: 1190 | ajv "^4.9.1" 1191 | har-schema "^1.0.5" 1192 | 1193 | has-ansi@^2.0.0: 1194 | version "2.0.0" 1195 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1196 | dependencies: 1197 | ansi-regex "^2.0.0" 1198 | 1199 | has-unicode@^2.0.0: 1200 | version "2.0.1" 1201 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1202 | 1203 | has@^1.0.1, has@~1.0.1: 1204 | version "1.0.1" 1205 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1206 | dependencies: 1207 | function-bind "^1.0.2" 1208 | 1209 | hawk@3.1.3, hawk@~3.1.3: 1210 | version "3.1.3" 1211 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1212 | dependencies: 1213 | boom "2.x.x" 1214 | cryptiles "2.x.x" 1215 | hoek "2.x.x" 1216 | sntp "1.x.x" 1217 | 1218 | hoek@2.x.x: 1219 | version "2.16.3" 1220 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1221 | 1222 | home-or-tmp@^2.0.0: 1223 | version "2.0.0" 1224 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1225 | dependencies: 1226 | os-homedir "^1.0.0" 1227 | os-tmpdir "^1.0.1" 1228 | 1229 | htmlparser2@3.8.x: 1230 | version "3.8.3" 1231 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.8.3.tgz#996c28b191516a8be86501a7d79757e5c70c1068" 1232 | dependencies: 1233 | domelementtype "1" 1234 | domhandler "2.3" 1235 | domutils "1.5" 1236 | entities "1.0" 1237 | readable-stream "1.1" 1238 | 1239 | http-signature@~1.1.0: 1240 | version "1.1.1" 1241 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1242 | dependencies: 1243 | assert-plus "^0.2.0" 1244 | jsprim "^1.2.2" 1245 | sshpk "^1.7.0" 1246 | 1247 | https-proxy-agent@^1.0.0: 1248 | version "1.0.0" 1249 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-1.0.0.tgz#35f7da6c48ce4ddbfa264891ac593ee5ff8671e6" 1250 | dependencies: 1251 | agent-base "2" 1252 | debug "2" 1253 | extend "3" 1254 | 1255 | inflight@^1.0.4: 1256 | version "1.0.6" 1257 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1258 | dependencies: 1259 | once "^1.3.0" 1260 | wrappy "1" 1261 | 1262 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 1263 | version "2.0.3" 1264 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1265 | 1266 | ini@~1.3.0: 1267 | version "1.3.5" 1268 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1269 | 1270 | invariant@^2.2.2: 1271 | version "2.2.3" 1272 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.3.tgz#1a827dfde7dcbd7c323f0ca826be8fa7c5e9d688" 1273 | dependencies: 1274 | loose-envify "^1.0.0" 1275 | 1276 | is-binary-path@^1.0.0: 1277 | version "1.0.1" 1278 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1279 | dependencies: 1280 | binary-extensions "^1.0.0" 1281 | 1282 | is-buffer@^1.1.5: 1283 | version "1.1.6" 1284 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1285 | 1286 | is-callable@^1.1.1, is-callable@^1.1.3: 1287 | version "1.1.3" 1288 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1289 | 1290 | is-date-object@^1.0.1: 1291 | version "1.0.1" 1292 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1293 | 1294 | is-dotfile@^1.0.0: 1295 | version "1.0.3" 1296 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1297 | 1298 | is-equal-shallow@^0.1.3: 1299 | version "0.1.3" 1300 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1301 | dependencies: 1302 | is-primitive "^2.0.0" 1303 | 1304 | is-extendable@^0.1.1: 1305 | version "0.1.1" 1306 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1307 | 1308 | is-extglob@^1.0.0: 1309 | version "1.0.0" 1310 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1311 | 1312 | is-finite@^1.0.0, is-finite@^1.0.1: 1313 | version "1.0.2" 1314 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1315 | dependencies: 1316 | number-is-nan "^1.0.0" 1317 | 1318 | is-fullwidth-code-point@^1.0.0: 1319 | version "1.0.0" 1320 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1321 | dependencies: 1322 | number-is-nan "^1.0.0" 1323 | 1324 | is-function@~1.0.0: 1325 | version "1.0.1" 1326 | resolved "https://registry.yarnpkg.com/is-function/-/is-function-1.0.1.tgz#12cfb98b65b57dd3d193a3121f5f6e2f437602b5" 1327 | 1328 | is-glob@^2.0.0, is-glob@^2.0.1: 1329 | version "2.0.1" 1330 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1331 | dependencies: 1332 | is-extglob "^1.0.0" 1333 | 1334 | is-number@^2.1.0: 1335 | version "2.1.0" 1336 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1337 | dependencies: 1338 | kind-of "^3.0.2" 1339 | 1340 | is-number@^3.0.0: 1341 | version "3.0.0" 1342 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1343 | dependencies: 1344 | kind-of "^3.0.2" 1345 | 1346 | is-posix-bracket@^0.1.0: 1347 | version "0.1.1" 1348 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1349 | 1350 | is-primitive@^2.0.0: 1351 | version "2.0.0" 1352 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1353 | 1354 | is-regex@^1.0.4: 1355 | version "1.0.4" 1356 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 1357 | dependencies: 1358 | has "^1.0.1" 1359 | 1360 | is-symbol@^1.0.1: 1361 | version "1.0.1" 1362 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 1363 | 1364 | is-typedarray@~1.0.0: 1365 | version "1.0.0" 1366 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1367 | 1368 | isarray@0.0.1: 1369 | version "0.0.1" 1370 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1371 | 1372 | isarray@1.0.0, isarray@~1.0.0: 1373 | version "1.0.0" 1374 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1375 | 1376 | isexe@^2.0.0: 1377 | version "2.0.0" 1378 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1379 | 1380 | isobject@^2.0.0: 1381 | version "2.1.0" 1382 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1383 | dependencies: 1384 | isarray "1.0.0" 1385 | 1386 | isstream@~0.1.2: 1387 | version "0.1.2" 1388 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1389 | 1390 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1391 | version "3.0.2" 1392 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1393 | 1394 | jsbn@~0.1.0: 1395 | version "0.1.1" 1396 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1397 | 1398 | jsesc@^1.3.0: 1399 | version "1.3.0" 1400 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1401 | 1402 | jsesc@~0.5.0: 1403 | version "0.5.0" 1404 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1405 | 1406 | jshint@^2.5.10: 1407 | version "2.9.5" 1408 | resolved "https://registry.yarnpkg.com/jshint/-/jshint-2.9.5.tgz#1e7252915ce681b40827ee14248c46d34e9aa62c" 1409 | dependencies: 1410 | cli "~1.0.0" 1411 | console-browserify "1.1.x" 1412 | exit "0.1.x" 1413 | htmlparser2 "3.8.x" 1414 | lodash "3.7.x" 1415 | minimatch "~3.0.2" 1416 | shelljs "0.3.x" 1417 | strip-json-comments "1.0.x" 1418 | 1419 | json-schema@0.2.3: 1420 | version "0.2.3" 1421 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1422 | 1423 | json-stable-stringify@^1.0.1: 1424 | version "1.0.1" 1425 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1426 | dependencies: 1427 | jsonify "~0.0.0" 1428 | 1429 | json-stringify-safe@~5.0.1: 1430 | version "5.0.1" 1431 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1432 | 1433 | json5@^0.5.1: 1434 | version "0.5.1" 1435 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1436 | 1437 | jsonfile@^2.1.0: 1438 | version "2.4.0" 1439 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" 1440 | optionalDependencies: 1441 | graceful-fs "^4.1.6" 1442 | 1443 | jsonify@~0.0.0: 1444 | version "0.0.0" 1445 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1446 | 1447 | jsprim@^1.2.2: 1448 | version "1.4.1" 1449 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1450 | dependencies: 1451 | assert-plus "1.0.0" 1452 | extsprintf "1.3.0" 1453 | json-schema "0.2.3" 1454 | verror "1.10.0" 1455 | 1456 | kind-of@^3.0.2: 1457 | version "3.2.2" 1458 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1459 | dependencies: 1460 | is-buffer "^1.1.5" 1461 | 1462 | kind-of@^4.0.0: 1463 | version "4.0.0" 1464 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1465 | dependencies: 1466 | is-buffer "^1.1.5" 1467 | 1468 | klaw@^1.0.0: 1469 | version "1.3.1" 1470 | resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" 1471 | optionalDependencies: 1472 | graceful-fs "^4.1.9" 1473 | 1474 | lodash._baseassign@^3.0.0: 1475 | version "3.2.0" 1476 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 1477 | dependencies: 1478 | lodash._basecopy "^3.0.0" 1479 | lodash.keys "^3.0.0" 1480 | 1481 | lodash._basecopy@^3.0.0: 1482 | version "3.0.1" 1483 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1484 | 1485 | lodash._baseflatten@^3.0.0: 1486 | version "3.1.4" 1487 | resolved "https://registry.yarnpkg.com/lodash._baseflatten/-/lodash._baseflatten-3.1.4.tgz#0770ff80131af6e34f3b511796a7ba5214e65ff7" 1488 | dependencies: 1489 | lodash.isarguments "^3.0.0" 1490 | lodash.isarray "^3.0.0" 1491 | 1492 | lodash._basefor@^3.0.0: 1493 | version "3.0.3" 1494 | resolved "https://registry.yarnpkg.com/lodash._basefor/-/lodash._basefor-3.0.3.tgz#7550b4e9218ef09fad24343b612021c79b4c20c2" 1495 | 1496 | lodash._bindcallback@^3.0.0: 1497 | version "3.0.1" 1498 | resolved "https://registry.yarnpkg.com/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e" 1499 | 1500 | lodash._createassigner@^3.0.0: 1501 | version "3.1.1" 1502 | resolved "https://registry.yarnpkg.com/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz#838a5bae2fdaca63ac22dee8e19fa4e6d6970b11" 1503 | dependencies: 1504 | lodash._bindcallback "^3.0.0" 1505 | lodash._isiterateecall "^3.0.0" 1506 | lodash.restparam "^3.0.0" 1507 | 1508 | lodash._getnative@^3.0.0: 1509 | version "3.9.1" 1510 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1511 | 1512 | lodash._isiterateecall@^3.0.0: 1513 | version "3.0.9" 1514 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 1515 | 1516 | lodash._pickbyarray@^3.0.0: 1517 | version "3.0.2" 1518 | resolved "https://registry.yarnpkg.com/lodash._pickbyarray/-/lodash._pickbyarray-3.0.2.tgz#1f898d9607eb560b0e167384b77c7c6d108aa4c5" 1519 | 1520 | lodash._pickbycallback@^3.0.0: 1521 | version "3.0.0" 1522 | resolved "https://registry.yarnpkg.com/lodash._pickbycallback/-/lodash._pickbycallback-3.0.0.tgz#ff61b9a017a7b3af7d30e6c53de28afa19b8750a" 1523 | dependencies: 1524 | lodash._basefor "^3.0.0" 1525 | lodash.keysin "^3.0.0" 1526 | 1527 | lodash.assign@^3.2.0: 1528 | version "3.2.0" 1529 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-3.2.0.tgz#3ce9f0234b4b2223e296b8fa0ac1fee8ebca64fa" 1530 | dependencies: 1531 | lodash._baseassign "^3.0.0" 1532 | lodash._createassigner "^3.0.0" 1533 | lodash.keys "^3.0.0" 1534 | 1535 | lodash.isarguments@^3.0.0: 1536 | version "3.1.0" 1537 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 1538 | 1539 | lodash.isarray@^3.0.0: 1540 | version "3.0.4" 1541 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 1542 | 1543 | lodash.keys@^3.0.0: 1544 | version "3.1.2" 1545 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 1546 | dependencies: 1547 | lodash._getnative "^3.0.0" 1548 | lodash.isarguments "^3.0.0" 1549 | lodash.isarray "^3.0.0" 1550 | 1551 | lodash.keysin@^3.0.0: 1552 | version "3.0.8" 1553 | resolved "https://registry.yarnpkg.com/lodash.keysin/-/lodash.keysin-3.0.8.tgz#22c4493ebbedb1427962a54b445b2c8a767fb47f" 1554 | dependencies: 1555 | lodash.isarguments "^3.0.0" 1556 | lodash.isarray "^3.0.0" 1557 | 1558 | lodash.memoize@^4.1.2: 1559 | version "4.1.2" 1560 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" 1561 | 1562 | lodash.pick@^3.1.0: 1563 | version "3.1.0" 1564 | resolved "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-3.1.0.tgz#f252a855b2046b61bcd3904b26f76bd2efc65550" 1565 | dependencies: 1566 | lodash._baseflatten "^3.0.0" 1567 | lodash._bindcallback "^3.0.0" 1568 | lodash._pickbyarray "^3.0.0" 1569 | lodash._pickbycallback "^3.0.0" 1570 | lodash.restparam "^3.0.0" 1571 | 1572 | lodash.restparam@^3.0.0: 1573 | version "3.6.1" 1574 | resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" 1575 | 1576 | lodash.uniq@^4.5.0: 1577 | version "4.5.0" 1578 | resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" 1579 | 1580 | lodash@3.7.x: 1581 | version "3.7.0" 1582 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.7.0.tgz#3678bd8ab995057c07ade836ed2ef087da811d45" 1583 | 1584 | lodash@^3.6.0: 1585 | version "3.10.1" 1586 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" 1587 | 1588 | lodash@^4.17.4: 1589 | version "4.17.5" 1590 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.5.tgz#99a92d65c0272debe8c96b6057bc8fbfa3bed511" 1591 | 1592 | loose-envify@^1.0.0: 1593 | version "1.3.1" 1594 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1595 | dependencies: 1596 | js-tokens "^3.0.0" 1597 | 1598 | lru-cache@^4.0.0: 1599 | version "4.1.2" 1600 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.2.tgz#45234b2e6e2f2b33da125624c4664929a0224c3f" 1601 | dependencies: 1602 | pseudomap "^1.0.2" 1603 | yallist "^2.1.2" 1604 | 1605 | micromatch@^2.1.5: 1606 | version "2.3.11" 1607 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1608 | dependencies: 1609 | arr-diff "^2.0.0" 1610 | array-unique "^0.2.1" 1611 | braces "^1.8.2" 1612 | expand-brackets "^0.1.4" 1613 | extglob "^0.3.1" 1614 | filename-regex "^2.0.0" 1615 | is-extglob "^1.0.0" 1616 | is-glob "^2.0.1" 1617 | kind-of "^3.0.2" 1618 | normalize-path "^2.0.1" 1619 | object.omit "^2.0.0" 1620 | parse-glob "^3.0.4" 1621 | regex-cache "^0.4.2" 1622 | 1623 | mime-db@~1.33.0: 1624 | version "1.33.0" 1625 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db" 1626 | 1627 | mime-types@^2.1.12, mime-types@~2.1.7: 1628 | version "2.1.18" 1629 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8" 1630 | dependencies: 1631 | mime-db "~1.33.0" 1632 | 1633 | mime@^1.2.11: 1634 | version "1.6.0" 1635 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" 1636 | 1637 | "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4, minimatch@~3.0.2: 1638 | version "3.0.4" 1639 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1640 | dependencies: 1641 | brace-expansion "^1.1.7" 1642 | 1643 | minimist@0.0.8: 1644 | version "0.0.8" 1645 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1646 | 1647 | minimist@^1.2.0, minimist@~1.2.0: 1648 | version "1.2.0" 1649 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1650 | 1651 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 1652 | version "0.5.1" 1653 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1654 | dependencies: 1655 | minimist "0.0.8" 1656 | 1657 | mount-point@^3.0.0: 1658 | version "3.0.0" 1659 | resolved "https://registry.yarnpkg.com/mount-point/-/mount-point-3.0.0.tgz#665cb9edebe80d110e658db56c31d0aef51a8f97" 1660 | dependencies: 1661 | "@sindresorhus/df" "^1.0.1" 1662 | pify "^2.3.0" 1663 | pinkie-promise "^2.0.1" 1664 | 1665 | ms@2.0.0: 1666 | version "2.0.0" 1667 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1668 | 1669 | nan@^2.3.0: 1670 | version "2.9.2" 1671 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.9.2.tgz#f564d75f5f8f36a6d9456cca7a6c4fe488ab7866" 1672 | 1673 | netrc@^0.1.4: 1674 | version "0.1.4" 1675 | resolved "https://registry.yarnpkg.com/netrc/-/netrc-0.1.4.tgz#6be94fcaca8d77ade0a9670dc460914c94472444" 1676 | 1677 | node-pre-gyp@^0.6.39: 1678 | version "0.6.39" 1679 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 1680 | dependencies: 1681 | detect-libc "^1.0.2" 1682 | hawk "3.1.3" 1683 | mkdirp "^0.5.1" 1684 | nopt "^4.0.1" 1685 | npmlog "^4.0.2" 1686 | rc "^1.1.7" 1687 | request "2.81.0" 1688 | rimraf "^2.6.1" 1689 | semver "^5.3.0" 1690 | tar "^2.2.1" 1691 | tar-pack "^3.4.0" 1692 | 1693 | nopt@^4.0.1: 1694 | version "4.0.1" 1695 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1696 | dependencies: 1697 | abbrev "1" 1698 | osenv "^0.1.4" 1699 | 1700 | normalize-path@^2.0.0, normalize-path@^2.0.1: 1701 | version "2.1.1" 1702 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1703 | dependencies: 1704 | remove-trailing-separator "^1.0.1" 1705 | 1706 | npm-run-path@^1.0.0: 1707 | version "1.0.0" 1708 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-1.0.0.tgz#f5c32bf595fe81ae927daec52e82f8b000ac3c8f" 1709 | dependencies: 1710 | path-key "^1.0.0" 1711 | 1712 | npmlog@^4.0.2: 1713 | version "4.1.2" 1714 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1715 | dependencies: 1716 | are-we-there-yet "~1.1.2" 1717 | console-control-strings "~1.1.0" 1718 | gauge "~2.7.3" 1719 | set-blocking "~2.0.0" 1720 | 1721 | npmpub@^3.1.0: 1722 | version "3.1.0" 1723 | resolved "https://registry.yarnpkg.com/npmpub/-/npmpub-3.1.0.tgz#7343a801ffb18bfd2cec233584b91459ae4ee149" 1724 | dependencies: 1725 | chalk "^1.1.1" 1726 | github-release-from-changelog "^1.1.1" 1727 | minimist "^1.2.0" 1728 | shelljs "^0.5.3" 1729 | trash "^3.4.1" 1730 | 1731 | number-is-nan@^1.0.0: 1732 | version "1.0.1" 1733 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1734 | 1735 | oauth-sign@~0.8.1: 1736 | version "0.8.2" 1737 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1738 | 1739 | object-assign@^4.0.1, object-assign@^4.1.0: 1740 | version "4.1.1" 1741 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1742 | 1743 | object-inspect@~1.5.0: 1744 | version "1.5.0" 1745 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.5.0.tgz#9d876c11e40f485c79215670281b767488f9bfe3" 1746 | 1747 | object-keys@^1.0.8: 1748 | version "1.0.11" 1749 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 1750 | 1751 | object.omit@^2.0.0: 1752 | version "2.0.1" 1753 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1754 | dependencies: 1755 | for-own "^0.1.4" 1756 | is-extendable "^0.1.1" 1757 | 1758 | once@^1.3.0, once@^1.3.3: 1759 | version "1.4.0" 1760 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1761 | dependencies: 1762 | wrappy "1" 1763 | 1764 | os-homedir@^1.0.0: 1765 | version "1.0.2" 1766 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1767 | 1768 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 1769 | version "1.0.2" 1770 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1771 | 1772 | osenv@^0.1.4: 1773 | version "0.1.5" 1774 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 1775 | dependencies: 1776 | os-homedir "^1.0.0" 1777 | os-tmpdir "^1.0.0" 1778 | 1779 | output-file-sync@^1.1.2: 1780 | version "1.1.2" 1781 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 1782 | dependencies: 1783 | graceful-fs "^4.1.4" 1784 | mkdirp "^0.5.1" 1785 | object-assign "^4.1.0" 1786 | 1787 | parse-glob@^3.0.4: 1788 | version "3.0.4" 1789 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1790 | dependencies: 1791 | glob-base "^0.3.0" 1792 | is-dotfile "^1.0.0" 1793 | is-extglob "^1.0.0" 1794 | is-glob "^2.0.0" 1795 | 1796 | parse-ms@^1.0.0: 1797 | version "1.0.1" 1798 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-1.0.1.tgz#56346d4749d78f23430ca0c713850aef91aa361d" 1799 | 1800 | path-exists@^2.0.0: 1801 | version "2.1.0" 1802 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1803 | dependencies: 1804 | pinkie-promise "^2.0.0" 1805 | 1806 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 1807 | version "1.0.1" 1808 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1809 | 1810 | path-key@^1.0.0: 1811 | version "1.0.0" 1812 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-1.0.0.tgz#5d53d578019646c0d68800db4e146e6bdc2ac7af" 1813 | 1814 | path-parse@^1.0.5: 1815 | version "1.0.5" 1816 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 1817 | 1818 | performance-now@^0.2.0: 1819 | version "0.2.0" 1820 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1821 | 1822 | pify@^2.0.0, pify@^2.2.0, pify@^2.3.0: 1823 | version "2.3.0" 1824 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1825 | 1826 | pinkie-promise@^2.0.0, pinkie-promise@^2.0.1: 1827 | version "2.0.1" 1828 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1829 | dependencies: 1830 | pinkie "^2.0.0" 1831 | 1832 | pinkie@^2.0.0: 1833 | version "2.0.4" 1834 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1835 | 1836 | plur@^1.0.0: 1837 | version "1.0.0" 1838 | resolved "https://registry.yarnpkg.com/plur/-/plur-1.0.0.tgz#db85c6814f5e5e5a3b49efc28d604fec62975156" 1839 | 1840 | preserve@^0.2.0: 1841 | version "0.2.0" 1842 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1843 | 1844 | pretty-ms@^2.1.0: 1845 | version "2.1.0" 1846 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-2.1.0.tgz#4257c256df3fb0b451d6affaab021884126981dc" 1847 | dependencies: 1848 | is-finite "^1.0.1" 1849 | parse-ms "^1.0.0" 1850 | plur "^1.0.0" 1851 | 1852 | private@^0.1.6, private@^0.1.7: 1853 | version "0.1.8" 1854 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 1855 | 1856 | process-nextick-args@~2.0.0: 1857 | version "2.0.0" 1858 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 1859 | 1860 | pseudomap@^1.0.2: 1861 | version "1.0.2" 1862 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 1863 | 1864 | punycode@^1.4.1: 1865 | version "1.4.1" 1866 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1867 | 1868 | qs@~6.4.0: 1869 | version "6.4.0" 1870 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 1871 | 1872 | randomatic@^1.1.3: 1873 | version "1.1.7" 1874 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 1875 | dependencies: 1876 | is-number "^3.0.0" 1877 | kind-of "^4.0.0" 1878 | 1879 | rc@^1.1.7: 1880 | version "1.2.5" 1881 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.5.tgz#275cd687f6e3b36cc756baa26dfee80a790301fd" 1882 | dependencies: 1883 | deep-extend "~0.4.0" 1884 | ini "~1.3.0" 1885 | minimist "^1.2.0" 1886 | strip-json-comments "~2.0.1" 1887 | 1888 | re-emitter@^1.0.0: 1889 | version "1.1.3" 1890 | resolved "https://registry.yarnpkg.com/re-emitter/-/re-emitter-1.1.3.tgz#fa9e319ffdeeeb35b27296ef0f3d374dac2f52a7" 1891 | 1892 | readable-stream@1.1: 1893 | version "1.1.13" 1894 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.13.tgz#f6eef764f514c89e2b9e23146a75ba106756d23e" 1895 | dependencies: 1896 | core-util-is "~1.0.0" 1897 | inherits "~2.0.1" 1898 | isarray "0.0.1" 1899 | string_decoder "~0.10.x" 1900 | 1901 | readable-stream@^2.0.0, readable-stream@^2.1.5: 1902 | version "2.3.6" 1903 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 1904 | dependencies: 1905 | core-util-is "~1.0.0" 1906 | inherits "~2.0.3" 1907 | isarray "~1.0.0" 1908 | process-nextick-args "~2.0.0" 1909 | safe-buffer "~5.1.1" 1910 | string_decoder "~1.1.1" 1911 | util-deprecate "~1.0.1" 1912 | 1913 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4: 1914 | version "2.3.5" 1915 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.5.tgz#b4f85003a938cbb6ecbce2a124fb1012bd1a838d" 1916 | dependencies: 1917 | core-util-is "~1.0.0" 1918 | inherits "~2.0.3" 1919 | isarray "~1.0.0" 1920 | process-nextick-args "~2.0.0" 1921 | safe-buffer "~5.1.1" 1922 | string_decoder "~1.0.3" 1923 | util-deprecate "~1.0.1" 1924 | 1925 | readdirp@^2.0.0: 1926 | version "2.1.0" 1927 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 1928 | dependencies: 1929 | graceful-fs "^4.1.2" 1930 | minimatch "^3.0.2" 1931 | readable-stream "^2.0.2" 1932 | set-immediate-shim "^1.0.1" 1933 | 1934 | readjson@^1.1.0: 1935 | version "1.1.4" 1936 | resolved "https://registry.yarnpkg.com/readjson/-/readjson-1.1.4.tgz#89501f648453dcda9b15399b3fb10c38249662c7" 1937 | dependencies: 1938 | try-catch "^2.0.0" 1939 | 1940 | regenerate@^1.2.1: 1941 | version "1.3.3" 1942 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" 1943 | 1944 | regenerator-runtime@^0.10.5: 1945 | version "0.10.5" 1946 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 1947 | 1948 | regenerator-runtime@^0.11.0: 1949 | version "0.11.1" 1950 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 1951 | 1952 | regenerator-transform@^0.10.0: 1953 | version "0.10.1" 1954 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 1955 | dependencies: 1956 | babel-runtime "^6.18.0" 1957 | babel-types "^6.19.0" 1958 | private "^0.1.6" 1959 | 1960 | regex-cache@^0.4.2: 1961 | version "0.4.4" 1962 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 1963 | dependencies: 1964 | is-equal-shallow "^0.1.3" 1965 | 1966 | regexpu-core@^2.0.0: 1967 | version "2.0.0" 1968 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 1969 | dependencies: 1970 | regenerate "^1.2.1" 1971 | regjsgen "^0.2.0" 1972 | regjsparser "^0.1.4" 1973 | 1974 | regjsgen@^0.2.0: 1975 | version "0.2.0" 1976 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 1977 | 1978 | regjsparser@^0.1.4: 1979 | version "0.1.5" 1980 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 1981 | dependencies: 1982 | jsesc "~0.5.0" 1983 | 1984 | remove-trailing-separator@^1.0.1: 1985 | version "1.1.0" 1986 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 1987 | 1988 | repeat-element@^1.1.2: 1989 | version "1.1.2" 1990 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1991 | 1992 | repeat-string@^1.5.2: 1993 | version "1.6.1" 1994 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1995 | 1996 | repeating@^2.0.0: 1997 | version "2.0.1" 1998 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1999 | dependencies: 2000 | is-finite "^1.0.0" 2001 | 2002 | request@2.81.0: 2003 | version "2.81.0" 2004 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2005 | dependencies: 2006 | aws-sign2 "~0.6.0" 2007 | aws4 "^1.2.1" 2008 | caseless "~0.12.0" 2009 | combined-stream "~1.0.5" 2010 | extend "~3.0.0" 2011 | forever-agent "~0.6.1" 2012 | form-data "~2.1.1" 2013 | har-validator "~4.2.1" 2014 | hawk "~3.1.3" 2015 | http-signature "~1.1.0" 2016 | is-typedarray "~1.0.0" 2017 | isstream "~0.1.2" 2018 | json-stringify-safe "~5.0.1" 2019 | mime-types "~2.1.7" 2020 | oauth-sign "~0.8.1" 2021 | performance-now "^0.2.0" 2022 | qs "~6.4.0" 2023 | safe-buffer "^5.0.1" 2024 | stringstream "~0.0.4" 2025 | tough-cookie "~2.3.0" 2026 | tunnel-agent "^0.6.0" 2027 | uuid "^3.0.0" 2028 | 2029 | resolve@~1.5.0: 2030 | version "1.5.0" 2031 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36" 2032 | dependencies: 2033 | path-parse "^1.0.5" 2034 | 2035 | resumer@~0.0.0: 2036 | version "0.0.0" 2037 | resolved "https://registry.yarnpkg.com/resumer/-/resumer-0.0.0.tgz#f1e8f461e4064ba39e82af3cdc2a8c893d076759" 2038 | dependencies: 2039 | through "~2.3.4" 2040 | 2041 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: 2042 | version "2.6.2" 2043 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2044 | dependencies: 2045 | glob "^7.0.5" 2046 | 2047 | run-applescript@^2.0.0: 2048 | version "2.1.0" 2049 | resolved "https://registry.yarnpkg.com/run-applescript/-/run-applescript-2.1.0.tgz#3bff2ccf95b6ceacb49723e550f00371d618510d" 2050 | dependencies: 2051 | pify "^2.2.0" 2052 | pinkie-promise "^2.0.0" 2053 | 2054 | safe-buffer@^5.0.1: 2055 | version "5.1.1" 2056 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2057 | 2058 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2059 | version "5.1.2" 2060 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2061 | 2062 | semver@^5.3.0: 2063 | version "5.5.0" 2064 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 2065 | 2066 | semver@~5.0.1: 2067 | version "5.0.3" 2068 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.0.3.tgz#77466de589cd5d3c95f138aa78bc569a3cb5d27a" 2069 | 2070 | set-blocking@~2.0.0: 2071 | version "2.0.0" 2072 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2073 | 2074 | set-immediate-shim@^1.0.1: 2075 | version "1.0.1" 2076 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2077 | 2078 | shelljs@0.3.x: 2079 | version "0.3.0" 2080 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.3.0.tgz#3596e6307a781544f591f37da618360f31db57b1" 2081 | 2082 | shelljs@^0.5.3: 2083 | version "0.5.3" 2084 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.5.3.tgz#c54982b996c76ef0c1e6b59fbdc5825f5b713113" 2085 | 2086 | signal-exit@^3.0.0: 2087 | version "3.0.2" 2088 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2089 | 2090 | slash@^1.0.0: 2091 | version "1.0.0" 2092 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2093 | 2094 | sntp@1.x.x: 2095 | version "1.0.9" 2096 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2097 | dependencies: 2098 | hoek "2.x.x" 2099 | 2100 | source-map-support@^0.4.15: 2101 | version "0.4.18" 2102 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 2103 | dependencies: 2104 | source-map "^0.5.6" 2105 | 2106 | source-map@^0.5.6, source-map@^0.5.7: 2107 | version "0.5.7" 2108 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2109 | 2110 | split@^1.0.0: 2111 | version "1.0.1" 2112 | resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" 2113 | dependencies: 2114 | through "2" 2115 | 2116 | sshpk@^1.7.0: 2117 | version "1.13.1" 2118 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2119 | dependencies: 2120 | asn1 "~0.2.3" 2121 | assert-plus "^1.0.0" 2122 | dashdash "^1.12.0" 2123 | getpass "^0.1.1" 2124 | optionalDependencies: 2125 | bcrypt-pbkdf "^1.0.0" 2126 | ecc-jsbn "~0.1.1" 2127 | jsbn "~0.1.0" 2128 | tweetnacl "~0.14.0" 2129 | 2130 | stream-consume@^0.1.0: 2131 | version "0.1.1" 2132 | resolved "https://registry.yarnpkg.com/stream-consume/-/stream-consume-0.1.1.tgz#d3bdb598c2bd0ae82b8cac7ac50b1107a7996c48" 2133 | 2134 | string-width@^1.0.1, string-width@^1.0.2: 2135 | version "1.0.2" 2136 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2137 | dependencies: 2138 | code-point-at "^1.0.0" 2139 | is-fullwidth-code-point "^1.0.0" 2140 | strip-ansi "^3.0.0" 2141 | 2142 | string.prototype.trim@~1.1.2: 2143 | version "1.1.2" 2144 | resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz#d04de2c89e137f4d7d206f086b5ed2fae6be8cea" 2145 | dependencies: 2146 | define-properties "^1.1.2" 2147 | es-abstract "^1.5.0" 2148 | function-bind "^1.0.2" 2149 | 2150 | string_decoder@~0.10.x: 2151 | version "0.10.31" 2152 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 2153 | 2154 | string_decoder@~1.0.3: 2155 | version "1.0.3" 2156 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2157 | dependencies: 2158 | safe-buffer "~5.1.0" 2159 | 2160 | string_decoder@~1.1.1: 2161 | version "1.1.1" 2162 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 2163 | dependencies: 2164 | safe-buffer "~5.1.0" 2165 | 2166 | stringstream@~0.0.4: 2167 | version "0.0.5" 2168 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2169 | 2170 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2171 | version "3.0.1" 2172 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2173 | dependencies: 2174 | ansi-regex "^2.0.0" 2175 | 2176 | strip-eof@^1.0.0: 2177 | version "1.0.0" 2178 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 2179 | 2180 | strip-json-comments@1.0.x: 2181 | version "1.0.4" 2182 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 2183 | 2184 | strip-json-comments@~2.0.1: 2185 | version "2.0.1" 2186 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2187 | 2188 | supports-color@^2.0.0: 2189 | version "2.0.0" 2190 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2191 | 2192 | tap-out@^1.4.1: 2193 | version "1.4.2" 2194 | resolved "https://registry.yarnpkg.com/tap-out/-/tap-out-1.4.2.tgz#c907ec1bf9405111d088263e92f5608b88cbb37a" 2195 | dependencies: 2196 | re-emitter "^1.0.0" 2197 | readable-stream "^2.0.0" 2198 | split "^1.0.0" 2199 | trim "0.0.1" 2200 | 2201 | tap-spec@^4.1.1: 2202 | version "4.1.2" 2203 | resolved "https://registry.yarnpkg.com/tap-spec/-/tap-spec-4.1.2.tgz#69e799224d0745a08ef310ae46fc34f92644347a" 2204 | dependencies: 2205 | chalk "^1.0.0" 2206 | duplexer "^0.1.1" 2207 | figures "^1.4.0" 2208 | lodash "^3.6.0" 2209 | pretty-ms "^2.1.0" 2210 | repeat-string "^1.5.2" 2211 | tap-out "^1.4.1" 2212 | through2 "^2.0.0" 2213 | 2214 | tape@^4.6.0: 2215 | version "4.9.0" 2216 | resolved "https://registry.yarnpkg.com/tape/-/tape-4.9.0.tgz#855c08360395133709d34d3fbf9ef341eb73ca6a" 2217 | dependencies: 2218 | deep-equal "~1.0.1" 2219 | defined "~1.0.0" 2220 | for-each "~0.3.2" 2221 | function-bind "~1.1.1" 2222 | glob "~7.1.2" 2223 | has "~1.0.1" 2224 | inherits "~2.0.3" 2225 | minimist "~1.2.0" 2226 | object-inspect "~1.5.0" 2227 | resolve "~1.5.0" 2228 | resumer "~0.0.0" 2229 | string.prototype.trim "~1.1.2" 2230 | through "~2.3.8" 2231 | 2232 | tar-pack@^3.4.0: 2233 | version "3.4.1" 2234 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 2235 | dependencies: 2236 | debug "^2.2.0" 2237 | fstream "^1.0.10" 2238 | fstream-ignore "^1.0.5" 2239 | once "^1.3.3" 2240 | readable-stream "^2.1.4" 2241 | rimraf "^2.5.1" 2242 | tar "^2.2.1" 2243 | uid-number "^0.0.6" 2244 | 2245 | tar@^2.2.1: 2246 | version "2.2.1" 2247 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2248 | dependencies: 2249 | block-stream "*" 2250 | fstream "^1.0.2" 2251 | inherits "2" 2252 | 2253 | through2@^2.0.0: 2254 | version "2.0.3" 2255 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 2256 | dependencies: 2257 | readable-stream "^2.1.5" 2258 | xtend "~4.0.1" 2259 | 2260 | through@2, through@~2.3.4, through@~2.3.8: 2261 | version "2.3.8" 2262 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2263 | 2264 | to-fast-properties@^1.0.3: 2265 | version "1.0.3" 2266 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2267 | 2268 | tough-cookie@~2.3.0: 2269 | version "2.3.4" 2270 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655" 2271 | dependencies: 2272 | punycode "^1.4.1" 2273 | 2274 | trash@^3.4.1: 2275 | version "3.4.2" 2276 | resolved "https://registry.yarnpkg.com/trash/-/trash-3.4.2.tgz#fb042252fc26a022276950a2bb0ece9b9405eb19" 2277 | dependencies: 2278 | escape-string-applescript "^1.0.0" 2279 | fs-extra "^0.26.2" 2280 | globby "^4.0.0" 2281 | path-exists "^2.0.0" 2282 | pify "^2.3.0" 2283 | pinkie-promise "^2.0.0" 2284 | run-applescript "^2.0.0" 2285 | uuid "^2.0.1" 2286 | xdg-trashdir "^2.0.0" 2287 | 2288 | trim-right@^1.0.1: 2289 | version "1.0.1" 2290 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2291 | 2292 | trim@0.0.1: 2293 | version "0.0.1" 2294 | resolved "https://registry.yarnpkg.com/trim/-/trim-0.0.1.tgz#5858547f6b290757ee95cccc666fb50084c460dd" 2295 | 2296 | try-catch@^2.0.0: 2297 | version "2.0.0" 2298 | resolved "https://registry.yarnpkg.com/try-catch/-/try-catch-2.0.0.tgz#a491141d597f8b72b46757fe1c47059341a16aed" 2299 | 2300 | tunnel-agent@^0.6.0: 2301 | version "0.6.0" 2302 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2303 | dependencies: 2304 | safe-buffer "^5.0.1" 2305 | 2306 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2307 | version "0.14.5" 2308 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2309 | 2310 | uid-number@^0.0.6: 2311 | version "0.0.6" 2312 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2313 | 2314 | user-home@^1.1.1: 2315 | version "1.1.1" 2316 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 2317 | 2318 | user-home@^2.0.0: 2319 | version "2.0.0" 2320 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 2321 | dependencies: 2322 | os-homedir "^1.0.0" 2323 | 2324 | util-deprecate@~1.0.1: 2325 | version "1.0.2" 2326 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2327 | 2328 | uuid@^2.0.1: 2329 | version "2.0.3" 2330 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 2331 | 2332 | uuid@^3.0.0: 2333 | version "3.2.1" 2334 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" 2335 | 2336 | v8flags@^2.1.1: 2337 | version "2.1.1" 2338 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 2339 | dependencies: 2340 | user-home "^1.1.1" 2341 | 2342 | verror@1.10.0: 2343 | version "1.10.0" 2344 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 2345 | dependencies: 2346 | assert-plus "^1.0.0" 2347 | core-util-is "1.0.2" 2348 | extsprintf "^1.2.0" 2349 | 2350 | which@^1.2.8: 2351 | version "1.3.0" 2352 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 2353 | dependencies: 2354 | isexe "^2.0.0" 2355 | 2356 | wide-align@^1.1.0: 2357 | version "1.1.2" 2358 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 2359 | dependencies: 2360 | string-width "^1.0.2" 2361 | 2362 | wrappy@1: 2363 | version "1.0.2" 2364 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2365 | 2366 | xdg-basedir@^2.0.0: 2367 | version "2.0.0" 2368 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-2.0.0.tgz#edbc903cc385fc04523d966a335504b5504d1bd2" 2369 | dependencies: 2370 | os-homedir "^1.0.0" 2371 | 2372 | xdg-trashdir@^2.0.0: 2373 | version "2.1.1" 2374 | resolved "https://registry.yarnpkg.com/xdg-trashdir/-/xdg-trashdir-2.1.1.tgz#59a60aaf8e6f9240c1daed9a0944b2f514c27d8e" 2375 | dependencies: 2376 | "@sindresorhus/df" "^2.1.0" 2377 | mount-point "^3.0.0" 2378 | pify "^2.2.0" 2379 | user-home "^2.0.0" 2380 | xdg-basedir "^2.0.0" 2381 | 2382 | xtend@~4.0.1: 2383 | version "4.0.1" 2384 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2385 | 2386 | yallist@^2.1.2: 2387 | version "2.1.2" 2388 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 2389 | --------------------------------------------------------------------------------