├── .npmignore ├── .babelrc ├── test ├── fixtures │ ├── many-left │ │ ├── actual.js │ │ └── expected.js │ ├── inline │ │ ├── actual.js │ │ └── expected.js │ ├── nested │ │ ├── actual.js │ │ └── expected.js │ ├── multiple │ │ ├── actual.js │ │ └── expected.js │ ├── single │ │ ├── actual.js │ │ └── expected.js │ └── disable │ │ ├── actual.js │ │ └── expected.js └── index.js ├── src └── index.js ├── package.json ├── LICENSE ├── .gitignore ├── lib └── index.js ├── README.md └── yarn.lock /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | src 3 | test 4 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"] 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/many-left/actual.js: -------------------------------------------------------------------------------- 1 | (add2, mul5) & div3 2 | -------------------------------------------------------------------------------- /test/fixtures/inline/actual.js: -------------------------------------------------------------------------------- 1 | (x => x * 2) & (y => y * 3); 2 | -------------------------------------------------------------------------------- /test/fixtures/nested/actual.js: -------------------------------------------------------------------------------- 1 | const transform = add2 & (mul3 & div4); 2 | -------------------------------------------------------------------------------- /test/fixtures/inline/expected.js: -------------------------------------------------------------------------------- 1 | (...args) => (y => y * 3)((x => x * 2)(...args)); 2 | -------------------------------------------------------------------------------- /test/fixtures/many-left/expected.js: -------------------------------------------------------------------------------- 1 | (...args) => (div3)(((add2, mul5))(...args)); 2 | -------------------------------------------------------------------------------- /test/fixtures/nested/expected.js: -------------------------------------------------------------------------------- 1 | const transform = (...args) => ((...args) => (div4)((mul3)(...args)))((add2)(...args)); 2 | -------------------------------------------------------------------------------- /test/fixtures/multiple/actual.js: -------------------------------------------------------------------------------- 1 | const add2 = a => a + 2; 2 | const mul3 = b => b * 3; 3 | const div4 = c => c / 4; 4 | 5 | const flux = add2 & mul3 & div4; 6 | -------------------------------------------------------------------------------- /test/fixtures/single/actual.js: -------------------------------------------------------------------------------- 1 | const add = a => b => a + b; 2 | const mul = a => b => a * b; 3 | 4 | const add2 = add(2); 5 | const mul5 = mul(5); 6 | 7 | const add2ThenMul5 = add2 & mul5; 8 | -------------------------------------------------------------------------------- /test/fixtures/multiple/expected.js: -------------------------------------------------------------------------------- 1 | const add2 = a => a + 2; 2 | const mul3 = b => b * 3; 3 | const div4 = c => c / 4; 4 | 5 | const flux = (...args) => (div4)(((...args) => (mul3)((add2)(...args)))(...args)); 6 | -------------------------------------------------------------------------------- /test/fixtures/single/expected.js: -------------------------------------------------------------------------------- 1 | const add = a => b => a + b; 2 | const mul = a => b => a * b; 3 | 4 | const add2 = add(2); 5 | const mul5 = mul(5); 6 | 7 | const add2ThenMul5 = (...args) => (mul5)((add2)(...args)); 8 | -------------------------------------------------------------------------------- /test/fixtures/disable/actual.js: -------------------------------------------------------------------------------- 1 | const something = () => { 2 | const add2 = x => x + 2; 3 | const mul5 = x => x * 5; 4 | 5 | const transform = add2 & mul5; 6 | return () => { 7 | 'no composition'; 8 | 9 | const retransform = add2 & mul5; 10 | }; 11 | }; 12 | -------------------------------------------------------------------------------- /test/fixtures/disable/expected.js: -------------------------------------------------------------------------------- 1 | const something = () => { 2 | const add2 = x => x + 2; 3 | const mul5 = x => x * 5; 4 | 5 | const transform = (...args) => (mul5)((add2)(...args)); 6 | return () => { 7 | 'no composition'; 8 | 9 | const retransform = add2 & mul5; 10 | }; 11 | }; 12 | -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- 1 | import fs from 'fs'; 2 | import path from 'path'; 3 | import { expect } from 'chai'; 4 | import { transformFileSync } from 'babel-core'; 5 | 6 | describe('Function composition', () => { 7 | const fixtures = path.join(__dirname, 'fixtures'); 8 | 9 | fs.readdirSync(fixtures).forEach(fixture => { 10 | it(fixture, () => { 11 | const directory = path.join(fixtures, fixture); 12 | const actual = transformFileSync(path.join(directory, 'actual.js'), { 13 | babelrc: false, 14 | plugins: [path.resolve('./src/index.js')] 15 | }).code; 16 | const expected = fs.readFileSync(path.join(directory, 'expected.js')).toString(); 17 | 18 | expect(actual.trim()).to.equals(expected.trim()); 19 | }) 20 | }); 21 | }); 22 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | const hasNoComposition = path => 2 | !!path.findParent(({ node }) => 3 | node.directives && node.directives.some(({ value }) => value.value === 'no composition')); 4 | 5 | export default ({ types: t }) => ({ 6 | visitor: { 7 | BinaryExpression(path) { 8 | if (!path.isBinaryExpression({ operator: '&' }) || hasNoComposition(path)) { 9 | return; 10 | } 11 | 12 | const lambda = t.arrowFunctionExpression( 13 | [t.restElement(t.identifier('args'))], 14 | t.callExpression(t.parenthesizedExpression(path.node.right), [ 15 | t.callExpression( 16 | t.parenthesizedExpression(path.node.left), 17 | [t.spreadElement(t.identifier('args'))]) 18 | ])); 19 | 20 | path.replaceWith(lambda); 21 | } 22 | } 23 | }); 24 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "babel-plugin-function-composition", 3 | "version": "0.2.1", 4 | "description": "Babel plugin to compose functions with piping using the & operator", 5 | "main": "lib/index.js", 6 | "repository": "https://github.com/haskellcamargo/babel-plugin-function-composition.git", 7 | "author": "Marcelo Camargo ", 8 | "license": "MIT", 9 | "scripts": { 10 | "build": "babel src/index.js -o lib/index.js", 11 | "watch-build": "npm run build -- -w", 12 | "test": "mocha --compilers js:babel-register", 13 | "watch-test": "npm test -- -w" 14 | }, 15 | "keywords": [ 16 | "babel", 17 | "babel-plugin", 18 | "pipe", 19 | "function", 20 | "functional programming", 21 | "function composition" 22 | ], 23 | "bugs": { 24 | "url": "https://github.com/haskellcamargo/babel-plugin-function-composition/issues" 25 | }, 26 | "devDependencies": { 27 | "babel-cli": "6.26.0", 28 | "babel-core": "6.26.0", 29 | "babel-preset-es2015": "6.24.1", 30 | "babel-register": "6.26.0", 31 | "chai": "4.1.1", 32 | "mocha": "3.5.0" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Marcelo Camargo 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 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (http://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # Typescript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | 45 | # Optional eslint cache 46 | .eslintcache 47 | 48 | # Optional REPL history 49 | .node_repl_history 50 | 51 | # Output of 'npm pack' 52 | *.tgz 53 | 54 | # Yarn Integrity file 55 | .yarn-integrity 56 | 57 | # dotenv environment variables file 58 | .env 59 | 60 | -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | var hasNoComposition = function hasNoComposition(path) { 7 | return !!path.findParent(function (_ref) { 8 | var node = _ref.node; 9 | return node.directives && node.directives.some(function (_ref2) { 10 | var value = _ref2.value; 11 | return value.value === 'no composition'; 12 | }); 13 | }); 14 | }; 15 | 16 | exports.default = function (_ref3) { 17 | var t = _ref3.types; 18 | return { 19 | visitor: { 20 | BinaryExpression: function BinaryExpression(path) { 21 | if (!path.isBinaryExpression({ operator: '&' }) || hasNoComposition(path)) { 22 | return; 23 | } 24 | 25 | var lambda = t.arrowFunctionExpression([t.restElement(t.identifier('args'))], t.callExpression(t.parenthesizedExpression(path.node.right), [t.callExpression(t.parenthesizedExpression(path.node.left), [t.spreadElement(t.identifier('args'))])])); 26 | 27 | path.replaceWith(lambda); 28 | } 29 | } 30 | }; 31 | }; 32 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # babel-plugin-function-composition 2 | 3 | This plugin is made to work with point-free (tacit) functional programming by composing functions 4 | over piping. It is inspired by the work of [babel-plugin-pipe-operator-curry](https://github.com/Swizz/babel-plugin-pipe-operator-curry), 5 | but with a very different purpose, with focus on omitting arguments. I've overloaded the operator `&` for that. You 6 | can built more complex functions from simple ones. 7 | 8 | ## Examples 9 | 10 | ```javascript 11 | import { add, multiply } from 'ramda'; 12 | 13 | const add5AndMul5 = add(5) & multiply(5); 14 | ``` 15 | 16 | Turn into 17 | 18 | ```javascript 19 | import { add, multiply } from 'ramda'; 20 | 21 | const add5AndMul5 = (...args) => multiply(5)(add(5)(...args)); 22 | ``` 23 | 24 | ## Disabling in current scope 25 | 26 | If you want to use the original bitwise and operator, you can disable this plugin in 27 | current scope (and it children scopes) using `'no composition'` directive. 28 | 29 | ## Installation 30 | 31 | ```sh 32 | $ npm install --save-dev babel-plugin-function-composition 33 | ``` 34 | 35 | ## Usage 36 | 37 | ### Via `.babelrc` (Recommended) 38 | 39 | **.babelrc** 40 | 41 | ```json 42 | { 43 | "plugins": ["function-composition"] 44 | } 45 | ``` 46 | 47 | ### Via CLI 48 | 49 | ```sh 50 | $ babel --plugins function-composition script.js 51 | ``` 52 | 53 | ### Via Node API 54 | 55 | ```javascript 56 | require('babel-core').transform('code', { 57 | plugins: ['function-composition'] 58 | }); 59 | ``` 60 | 61 | # License 62 | 63 | MIT 64 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.1.0" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 8 | 9 | ajv@^4.9.1: 10 | version "4.11.8" 11 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 12 | dependencies: 13 | co "^4.6.0" 14 | json-stable-stringify "^1.0.1" 15 | 16 | ansi-regex@^2.0.0: 17 | version "2.1.1" 18 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 19 | 20 | ansi-styles@^2.2.1: 21 | version "2.2.1" 22 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 23 | 24 | anymatch@^1.3.0: 25 | version "1.3.2" 26 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 27 | dependencies: 28 | micromatch "^2.1.5" 29 | normalize-path "^2.0.0" 30 | 31 | aproba@^1.0.3: 32 | version "1.1.2" 33 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1" 34 | 35 | are-we-there-yet@~1.1.2: 36 | version "1.1.4" 37 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 38 | dependencies: 39 | delegates "^1.0.0" 40 | readable-stream "^2.0.6" 41 | 42 | arr-diff@^2.0.0: 43 | version "2.0.0" 44 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 45 | dependencies: 46 | arr-flatten "^1.0.1" 47 | 48 | arr-flatten@^1.0.1: 49 | version "1.1.0" 50 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 51 | 52 | array-unique@^0.2.1: 53 | version "0.2.1" 54 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 55 | 56 | asn1@~0.2.3: 57 | version "0.2.3" 58 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 59 | 60 | assert-plus@1.0.0, assert-plus@^1.0.0: 61 | version "1.0.0" 62 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 63 | 64 | assert-plus@^0.2.0: 65 | version "0.2.0" 66 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 67 | 68 | assertion-error@^1.0.1: 69 | version "1.0.2" 70 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.0.2.tgz#13ca515d86206da0bac66e834dd397d87581094c" 71 | 72 | async-each@^1.0.0: 73 | version "1.0.1" 74 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 75 | 76 | asynckit@^0.4.0: 77 | version "0.4.0" 78 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 79 | 80 | aws-sign2@~0.6.0: 81 | version "0.6.0" 82 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 83 | 84 | aws4@^1.2.1: 85 | version "1.6.0" 86 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 87 | 88 | babel-cli@6.26.0: 89 | version "6.26.0" 90 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" 91 | dependencies: 92 | babel-core "^6.26.0" 93 | babel-polyfill "^6.26.0" 94 | babel-register "^6.26.0" 95 | babel-runtime "^6.26.0" 96 | commander "^2.11.0" 97 | convert-source-map "^1.5.0" 98 | fs-readdir-recursive "^1.0.0" 99 | glob "^7.1.2" 100 | lodash "^4.17.4" 101 | output-file-sync "^1.1.2" 102 | path-is-absolute "^1.0.1" 103 | slash "^1.0.0" 104 | source-map "^0.5.6" 105 | v8flags "^2.1.1" 106 | optionalDependencies: 107 | chokidar "^1.6.1" 108 | 109 | babel-code-frame@^6.26.0: 110 | version "6.26.0" 111 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 112 | dependencies: 113 | chalk "^1.1.3" 114 | esutils "^2.0.2" 115 | js-tokens "^3.0.2" 116 | 117 | babel-core@6.26.0, babel-core@^6.26.0: 118 | version "6.26.0" 119 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 120 | dependencies: 121 | babel-code-frame "^6.26.0" 122 | babel-generator "^6.26.0" 123 | babel-helpers "^6.24.1" 124 | babel-messages "^6.23.0" 125 | babel-register "^6.26.0" 126 | babel-runtime "^6.26.0" 127 | babel-template "^6.26.0" 128 | babel-traverse "^6.26.0" 129 | babel-types "^6.26.0" 130 | babylon "^6.18.0" 131 | convert-source-map "^1.5.0" 132 | debug "^2.6.8" 133 | json5 "^0.5.1" 134 | lodash "^4.17.4" 135 | minimatch "^3.0.4" 136 | path-is-absolute "^1.0.1" 137 | private "^0.1.7" 138 | slash "^1.0.0" 139 | source-map "^0.5.6" 140 | 141 | babel-generator@^6.26.0: 142 | version "6.26.0" 143 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 144 | dependencies: 145 | babel-messages "^6.23.0" 146 | babel-runtime "^6.26.0" 147 | babel-types "^6.26.0" 148 | detect-indent "^4.0.0" 149 | jsesc "^1.3.0" 150 | lodash "^4.17.4" 151 | source-map "^0.5.6" 152 | trim-right "^1.0.1" 153 | 154 | babel-helper-call-delegate@^6.24.1: 155 | version "6.24.1" 156 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 157 | dependencies: 158 | babel-helper-hoist-variables "^6.24.1" 159 | babel-runtime "^6.22.0" 160 | babel-traverse "^6.24.1" 161 | babel-types "^6.24.1" 162 | 163 | babel-helper-define-map@^6.24.1: 164 | version "6.26.0" 165 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 166 | dependencies: 167 | babel-helper-function-name "^6.24.1" 168 | babel-runtime "^6.26.0" 169 | babel-types "^6.26.0" 170 | lodash "^4.17.4" 171 | 172 | babel-helper-function-name@^6.24.1: 173 | version "6.24.1" 174 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 175 | dependencies: 176 | babel-helper-get-function-arity "^6.24.1" 177 | babel-runtime "^6.22.0" 178 | babel-template "^6.24.1" 179 | babel-traverse "^6.24.1" 180 | babel-types "^6.24.1" 181 | 182 | babel-helper-get-function-arity@^6.24.1: 183 | version "6.24.1" 184 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 185 | dependencies: 186 | babel-runtime "^6.22.0" 187 | babel-types "^6.24.1" 188 | 189 | babel-helper-hoist-variables@^6.24.1: 190 | version "6.24.1" 191 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 192 | dependencies: 193 | babel-runtime "^6.22.0" 194 | babel-types "^6.24.1" 195 | 196 | babel-helper-optimise-call-expression@^6.24.1: 197 | version "6.24.1" 198 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 199 | dependencies: 200 | babel-runtime "^6.22.0" 201 | babel-types "^6.24.1" 202 | 203 | babel-helper-regex@^6.24.1: 204 | version "6.26.0" 205 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 206 | dependencies: 207 | babel-runtime "^6.26.0" 208 | babel-types "^6.26.0" 209 | lodash "^4.17.4" 210 | 211 | babel-helper-replace-supers@^6.24.1: 212 | version "6.24.1" 213 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 214 | dependencies: 215 | babel-helper-optimise-call-expression "^6.24.1" 216 | babel-messages "^6.23.0" 217 | babel-runtime "^6.22.0" 218 | babel-template "^6.24.1" 219 | babel-traverse "^6.24.1" 220 | babel-types "^6.24.1" 221 | 222 | babel-helpers@^6.24.1: 223 | version "6.24.1" 224 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 225 | dependencies: 226 | babel-runtime "^6.22.0" 227 | babel-template "^6.24.1" 228 | 229 | babel-messages@^6.23.0: 230 | version "6.23.0" 231 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 232 | dependencies: 233 | babel-runtime "^6.22.0" 234 | 235 | babel-plugin-check-es2015-constants@^6.22.0: 236 | version "6.22.0" 237 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 238 | dependencies: 239 | babel-runtime "^6.22.0" 240 | 241 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 242 | version "6.22.0" 243 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 244 | dependencies: 245 | babel-runtime "^6.22.0" 246 | 247 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 248 | version "6.22.0" 249 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 250 | dependencies: 251 | babel-runtime "^6.22.0" 252 | 253 | babel-plugin-transform-es2015-block-scoping@^6.24.1: 254 | version "6.26.0" 255 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 256 | dependencies: 257 | babel-runtime "^6.26.0" 258 | babel-template "^6.26.0" 259 | babel-traverse "^6.26.0" 260 | babel-types "^6.26.0" 261 | lodash "^4.17.4" 262 | 263 | babel-plugin-transform-es2015-classes@^6.24.1: 264 | version "6.24.1" 265 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 266 | dependencies: 267 | babel-helper-define-map "^6.24.1" 268 | babel-helper-function-name "^6.24.1" 269 | babel-helper-optimise-call-expression "^6.24.1" 270 | babel-helper-replace-supers "^6.24.1" 271 | babel-messages "^6.23.0" 272 | babel-runtime "^6.22.0" 273 | babel-template "^6.24.1" 274 | babel-traverse "^6.24.1" 275 | babel-types "^6.24.1" 276 | 277 | babel-plugin-transform-es2015-computed-properties@^6.24.1: 278 | version "6.24.1" 279 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 280 | dependencies: 281 | babel-runtime "^6.22.0" 282 | babel-template "^6.24.1" 283 | 284 | babel-plugin-transform-es2015-destructuring@^6.22.0: 285 | version "6.23.0" 286 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 287 | dependencies: 288 | babel-runtime "^6.22.0" 289 | 290 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1: 291 | version "6.24.1" 292 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 293 | dependencies: 294 | babel-runtime "^6.22.0" 295 | babel-types "^6.24.1" 296 | 297 | babel-plugin-transform-es2015-for-of@^6.22.0: 298 | version "6.23.0" 299 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 300 | dependencies: 301 | babel-runtime "^6.22.0" 302 | 303 | babel-plugin-transform-es2015-function-name@^6.24.1: 304 | version "6.24.1" 305 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 306 | dependencies: 307 | babel-helper-function-name "^6.24.1" 308 | babel-runtime "^6.22.0" 309 | babel-types "^6.24.1" 310 | 311 | babel-plugin-transform-es2015-literals@^6.22.0: 312 | version "6.22.0" 313 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 314 | dependencies: 315 | babel-runtime "^6.22.0" 316 | 317 | babel-plugin-transform-es2015-modules-amd@^6.24.1: 318 | version "6.24.1" 319 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 320 | dependencies: 321 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 322 | babel-runtime "^6.22.0" 323 | babel-template "^6.24.1" 324 | 325 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 326 | version "6.26.0" 327 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 328 | dependencies: 329 | babel-plugin-transform-strict-mode "^6.24.1" 330 | babel-runtime "^6.26.0" 331 | babel-template "^6.26.0" 332 | babel-types "^6.26.0" 333 | 334 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1: 335 | version "6.24.1" 336 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 337 | dependencies: 338 | babel-helper-hoist-variables "^6.24.1" 339 | babel-runtime "^6.22.0" 340 | babel-template "^6.24.1" 341 | 342 | babel-plugin-transform-es2015-modules-umd@^6.24.1: 343 | version "6.24.1" 344 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 345 | dependencies: 346 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 347 | babel-runtime "^6.22.0" 348 | babel-template "^6.24.1" 349 | 350 | babel-plugin-transform-es2015-object-super@^6.24.1: 351 | version "6.24.1" 352 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 353 | dependencies: 354 | babel-helper-replace-supers "^6.24.1" 355 | babel-runtime "^6.22.0" 356 | 357 | babel-plugin-transform-es2015-parameters@^6.24.1: 358 | version "6.24.1" 359 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 360 | dependencies: 361 | babel-helper-call-delegate "^6.24.1" 362 | babel-helper-get-function-arity "^6.24.1" 363 | babel-runtime "^6.22.0" 364 | babel-template "^6.24.1" 365 | babel-traverse "^6.24.1" 366 | babel-types "^6.24.1" 367 | 368 | babel-plugin-transform-es2015-shorthand-properties@^6.24.1: 369 | version "6.24.1" 370 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 371 | dependencies: 372 | babel-runtime "^6.22.0" 373 | babel-types "^6.24.1" 374 | 375 | babel-plugin-transform-es2015-spread@^6.22.0: 376 | version "6.22.0" 377 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 378 | dependencies: 379 | babel-runtime "^6.22.0" 380 | 381 | babel-plugin-transform-es2015-sticky-regex@^6.24.1: 382 | version "6.24.1" 383 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 384 | dependencies: 385 | babel-helper-regex "^6.24.1" 386 | babel-runtime "^6.22.0" 387 | babel-types "^6.24.1" 388 | 389 | babel-plugin-transform-es2015-template-literals@^6.22.0: 390 | version "6.22.0" 391 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 392 | dependencies: 393 | babel-runtime "^6.22.0" 394 | 395 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 396 | version "6.23.0" 397 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 398 | dependencies: 399 | babel-runtime "^6.22.0" 400 | 401 | babel-plugin-transform-es2015-unicode-regex@^6.24.1: 402 | version "6.24.1" 403 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 404 | dependencies: 405 | babel-helper-regex "^6.24.1" 406 | babel-runtime "^6.22.0" 407 | regexpu-core "^2.0.0" 408 | 409 | babel-plugin-transform-regenerator@^6.24.1: 410 | version "6.26.0" 411 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 412 | dependencies: 413 | regenerator-transform "^0.10.0" 414 | 415 | babel-plugin-transform-strict-mode@^6.24.1: 416 | version "6.24.1" 417 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 418 | dependencies: 419 | babel-runtime "^6.22.0" 420 | babel-types "^6.24.1" 421 | 422 | babel-polyfill@^6.26.0: 423 | version "6.26.0" 424 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 425 | dependencies: 426 | babel-runtime "^6.26.0" 427 | core-js "^2.5.0" 428 | regenerator-runtime "^0.10.5" 429 | 430 | babel-preset-es2015@6.24.1: 431 | version "6.24.1" 432 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" 433 | dependencies: 434 | babel-plugin-check-es2015-constants "^6.22.0" 435 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 436 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 437 | babel-plugin-transform-es2015-block-scoping "^6.24.1" 438 | babel-plugin-transform-es2015-classes "^6.24.1" 439 | babel-plugin-transform-es2015-computed-properties "^6.24.1" 440 | babel-plugin-transform-es2015-destructuring "^6.22.0" 441 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1" 442 | babel-plugin-transform-es2015-for-of "^6.22.0" 443 | babel-plugin-transform-es2015-function-name "^6.24.1" 444 | babel-plugin-transform-es2015-literals "^6.22.0" 445 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 446 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 447 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1" 448 | babel-plugin-transform-es2015-modules-umd "^6.24.1" 449 | babel-plugin-transform-es2015-object-super "^6.24.1" 450 | babel-plugin-transform-es2015-parameters "^6.24.1" 451 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1" 452 | babel-plugin-transform-es2015-spread "^6.22.0" 453 | babel-plugin-transform-es2015-sticky-regex "^6.24.1" 454 | babel-plugin-transform-es2015-template-literals "^6.22.0" 455 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 456 | babel-plugin-transform-es2015-unicode-regex "^6.24.1" 457 | babel-plugin-transform-regenerator "^6.24.1" 458 | 459 | babel-register@6.26.0, babel-register@^6.26.0: 460 | version "6.26.0" 461 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 462 | dependencies: 463 | babel-core "^6.26.0" 464 | babel-runtime "^6.26.0" 465 | core-js "^2.5.0" 466 | home-or-tmp "^2.0.0" 467 | lodash "^4.17.4" 468 | mkdirp "^0.5.1" 469 | source-map-support "^0.4.15" 470 | 471 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 472 | version "6.26.0" 473 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 474 | dependencies: 475 | core-js "^2.4.0" 476 | regenerator-runtime "^0.11.0" 477 | 478 | babel-template@^6.24.1, babel-template@^6.26.0: 479 | version "6.26.0" 480 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 481 | dependencies: 482 | babel-runtime "^6.26.0" 483 | babel-traverse "^6.26.0" 484 | babel-types "^6.26.0" 485 | babylon "^6.18.0" 486 | lodash "^4.17.4" 487 | 488 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 489 | version "6.26.0" 490 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 491 | dependencies: 492 | babel-code-frame "^6.26.0" 493 | babel-messages "^6.23.0" 494 | babel-runtime "^6.26.0" 495 | babel-types "^6.26.0" 496 | babylon "^6.18.0" 497 | debug "^2.6.8" 498 | globals "^9.18.0" 499 | invariant "^2.2.2" 500 | lodash "^4.17.4" 501 | 502 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 503 | version "6.26.0" 504 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 505 | dependencies: 506 | babel-runtime "^6.26.0" 507 | esutils "^2.0.2" 508 | lodash "^4.17.4" 509 | to-fast-properties "^1.0.3" 510 | 511 | babylon@^6.18.0: 512 | version "6.18.0" 513 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 514 | 515 | balanced-match@^1.0.0: 516 | version "1.0.0" 517 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 518 | 519 | bcrypt-pbkdf@^1.0.0: 520 | version "1.0.1" 521 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 522 | dependencies: 523 | tweetnacl "^0.14.3" 524 | 525 | binary-extensions@^1.0.0: 526 | version "1.10.0" 527 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.10.0.tgz#9aeb9a6c5e88638aad171e167f5900abe24835d0" 528 | 529 | block-stream@*: 530 | version "0.0.9" 531 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 532 | dependencies: 533 | inherits "~2.0.0" 534 | 535 | boom@2.x.x: 536 | version "2.10.1" 537 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 538 | dependencies: 539 | hoek "2.x.x" 540 | 541 | brace-expansion@^1.1.7: 542 | version "1.1.8" 543 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 544 | dependencies: 545 | balanced-match "^1.0.0" 546 | concat-map "0.0.1" 547 | 548 | braces@^1.8.2: 549 | version "1.8.5" 550 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 551 | dependencies: 552 | expand-range "^1.8.1" 553 | preserve "^0.2.0" 554 | repeat-element "^1.1.2" 555 | 556 | browser-stdout@1.3.0: 557 | version "1.3.0" 558 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" 559 | 560 | caseless@~0.12.0: 561 | version "0.12.0" 562 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 563 | 564 | chai@4.1.1: 565 | version "4.1.1" 566 | resolved "https://registry.yarnpkg.com/chai/-/chai-4.1.1.tgz#66e21279e6f3c6415ff8231878227900e2171b39" 567 | dependencies: 568 | assertion-error "^1.0.1" 569 | check-error "^1.0.1" 570 | deep-eql "^2.0.1" 571 | get-func-name "^2.0.0" 572 | pathval "^1.0.0" 573 | type-detect "^4.0.0" 574 | 575 | chalk@^1.1.3: 576 | version "1.1.3" 577 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 578 | dependencies: 579 | ansi-styles "^2.2.1" 580 | escape-string-regexp "^1.0.2" 581 | has-ansi "^2.0.0" 582 | strip-ansi "^3.0.0" 583 | supports-color "^2.0.0" 584 | 585 | check-error@^1.0.1: 586 | version "1.0.2" 587 | resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" 588 | 589 | chokidar@^1.6.1: 590 | version "1.7.0" 591 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 592 | dependencies: 593 | anymatch "^1.3.0" 594 | async-each "^1.0.0" 595 | glob-parent "^2.0.0" 596 | inherits "^2.0.1" 597 | is-binary-path "^1.0.0" 598 | is-glob "^2.0.0" 599 | path-is-absolute "^1.0.0" 600 | readdirp "^2.0.0" 601 | optionalDependencies: 602 | fsevents "^1.0.0" 603 | 604 | co@^4.6.0: 605 | version "4.6.0" 606 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 607 | 608 | code-point-at@^1.0.0: 609 | version "1.1.0" 610 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 611 | 612 | combined-stream@^1.0.5, combined-stream@~1.0.5: 613 | version "1.0.5" 614 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 615 | dependencies: 616 | delayed-stream "~1.0.0" 617 | 618 | commander@2.9.0: 619 | version "2.9.0" 620 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 621 | dependencies: 622 | graceful-readlink ">= 1.0.0" 623 | 624 | commander@^2.11.0: 625 | version "2.11.0" 626 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" 627 | 628 | concat-map@0.0.1: 629 | version "0.0.1" 630 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 631 | 632 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 633 | version "1.1.0" 634 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 635 | 636 | convert-source-map@^1.5.0: 637 | version "1.5.0" 638 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 639 | 640 | core-js@^2.4.0, core-js@^2.5.0: 641 | version "2.5.0" 642 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.0.tgz#569c050918be6486b3837552028ae0466b717086" 643 | 644 | core-util-is@1.0.2, core-util-is@~1.0.0: 645 | version "1.0.2" 646 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 647 | 648 | cryptiles@2.x.x: 649 | version "2.0.5" 650 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 651 | dependencies: 652 | boom "2.x.x" 653 | 654 | dashdash@^1.12.0: 655 | version "1.14.1" 656 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 657 | dependencies: 658 | assert-plus "^1.0.0" 659 | 660 | debug@2.6.8, debug@^2.2.0, debug@^2.6.8: 661 | version "2.6.8" 662 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 663 | dependencies: 664 | ms "2.0.0" 665 | 666 | deep-eql@^2.0.1: 667 | version "2.0.2" 668 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-2.0.2.tgz#b1bac06e56f0a76777686d50c9feb75c2ed7679a" 669 | dependencies: 670 | type-detect "^3.0.0" 671 | 672 | deep-extend@~0.4.0: 673 | version "0.4.2" 674 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 675 | 676 | delayed-stream@~1.0.0: 677 | version "1.0.0" 678 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 679 | 680 | delegates@^1.0.0: 681 | version "1.0.0" 682 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 683 | 684 | detect-indent@^4.0.0: 685 | version "4.0.0" 686 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 687 | dependencies: 688 | repeating "^2.0.0" 689 | 690 | diff@3.2.0: 691 | version "3.2.0" 692 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 693 | 694 | ecc-jsbn@~0.1.1: 695 | version "0.1.1" 696 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 697 | dependencies: 698 | jsbn "~0.1.0" 699 | 700 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2: 701 | version "1.0.5" 702 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 703 | 704 | esutils@^2.0.2: 705 | version "2.0.2" 706 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 707 | 708 | expand-brackets@^0.1.4: 709 | version "0.1.5" 710 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 711 | dependencies: 712 | is-posix-bracket "^0.1.0" 713 | 714 | expand-range@^1.8.1: 715 | version "1.8.2" 716 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 717 | dependencies: 718 | fill-range "^2.1.0" 719 | 720 | extend@~3.0.0: 721 | version "3.0.1" 722 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 723 | 724 | extglob@^0.3.1: 725 | version "0.3.2" 726 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 727 | dependencies: 728 | is-extglob "^1.0.0" 729 | 730 | extsprintf@1.3.0, extsprintf@^1.2.0: 731 | version "1.3.0" 732 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 733 | 734 | filename-regex@^2.0.0: 735 | version "2.0.1" 736 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 737 | 738 | fill-range@^2.1.0: 739 | version "2.2.3" 740 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 741 | dependencies: 742 | is-number "^2.1.0" 743 | isobject "^2.0.0" 744 | randomatic "^1.1.3" 745 | repeat-element "^1.1.2" 746 | repeat-string "^1.5.2" 747 | 748 | for-in@^1.0.1: 749 | version "1.0.2" 750 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 751 | 752 | for-own@^0.1.4: 753 | version "0.1.5" 754 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 755 | dependencies: 756 | for-in "^1.0.1" 757 | 758 | forever-agent@~0.6.1: 759 | version "0.6.1" 760 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 761 | 762 | form-data@~2.1.1: 763 | version "2.1.4" 764 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 765 | dependencies: 766 | asynckit "^0.4.0" 767 | combined-stream "^1.0.5" 768 | mime-types "^2.1.12" 769 | 770 | fs-readdir-recursive@^1.0.0: 771 | version "1.0.0" 772 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 773 | 774 | fs.realpath@^1.0.0: 775 | version "1.0.0" 776 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 777 | 778 | fsevents@^1.0.0: 779 | version "1.1.2" 780 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" 781 | dependencies: 782 | nan "^2.3.0" 783 | node-pre-gyp "^0.6.36" 784 | 785 | fstream-ignore@^1.0.5: 786 | version "1.0.5" 787 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 788 | dependencies: 789 | fstream "^1.0.0" 790 | inherits "2" 791 | minimatch "^3.0.0" 792 | 793 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 794 | version "1.0.11" 795 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 796 | dependencies: 797 | graceful-fs "^4.1.2" 798 | inherits "~2.0.0" 799 | mkdirp ">=0.5 0" 800 | rimraf "2" 801 | 802 | gauge@~2.7.3: 803 | version "2.7.4" 804 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 805 | dependencies: 806 | aproba "^1.0.3" 807 | console-control-strings "^1.0.0" 808 | has-unicode "^2.0.0" 809 | object-assign "^4.1.0" 810 | signal-exit "^3.0.0" 811 | string-width "^1.0.1" 812 | strip-ansi "^3.0.1" 813 | wide-align "^1.1.0" 814 | 815 | get-func-name@^2.0.0: 816 | version "2.0.0" 817 | resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" 818 | 819 | getpass@^0.1.1: 820 | version "0.1.7" 821 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 822 | dependencies: 823 | assert-plus "^1.0.0" 824 | 825 | glob-base@^0.3.0: 826 | version "0.3.0" 827 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 828 | dependencies: 829 | glob-parent "^2.0.0" 830 | is-glob "^2.0.0" 831 | 832 | glob-parent@^2.0.0: 833 | version "2.0.0" 834 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 835 | dependencies: 836 | is-glob "^2.0.0" 837 | 838 | glob@7.1.1: 839 | version "7.1.1" 840 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 841 | dependencies: 842 | fs.realpath "^1.0.0" 843 | inflight "^1.0.4" 844 | inherits "2" 845 | minimatch "^3.0.2" 846 | once "^1.3.0" 847 | path-is-absolute "^1.0.0" 848 | 849 | glob@^7.0.5, glob@^7.1.2: 850 | version "7.1.2" 851 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 852 | dependencies: 853 | fs.realpath "^1.0.0" 854 | inflight "^1.0.4" 855 | inherits "2" 856 | minimatch "^3.0.4" 857 | once "^1.3.0" 858 | path-is-absolute "^1.0.0" 859 | 860 | globals@^9.18.0: 861 | version "9.18.0" 862 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 863 | 864 | graceful-fs@^4.1.2, graceful-fs@^4.1.4: 865 | version "4.1.11" 866 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 867 | 868 | "graceful-readlink@>= 1.0.0": 869 | version "1.0.1" 870 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 871 | 872 | growl@1.9.2: 873 | version "1.9.2" 874 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" 875 | 876 | har-schema@^1.0.5: 877 | version "1.0.5" 878 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 879 | 880 | har-validator@~4.2.1: 881 | version "4.2.1" 882 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 883 | dependencies: 884 | ajv "^4.9.1" 885 | har-schema "^1.0.5" 886 | 887 | has-ansi@^2.0.0: 888 | version "2.0.0" 889 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 890 | dependencies: 891 | ansi-regex "^2.0.0" 892 | 893 | has-flag@^1.0.0: 894 | version "1.0.0" 895 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 896 | 897 | has-unicode@^2.0.0: 898 | version "2.0.1" 899 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 900 | 901 | hawk@~3.1.3: 902 | version "3.1.3" 903 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 904 | dependencies: 905 | boom "2.x.x" 906 | cryptiles "2.x.x" 907 | hoek "2.x.x" 908 | sntp "1.x.x" 909 | 910 | hoek@2.x.x: 911 | version "2.16.3" 912 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 913 | 914 | home-or-tmp@^2.0.0: 915 | version "2.0.0" 916 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 917 | dependencies: 918 | os-homedir "^1.0.0" 919 | os-tmpdir "^1.0.1" 920 | 921 | http-signature@~1.1.0: 922 | version "1.1.1" 923 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 924 | dependencies: 925 | assert-plus "^0.2.0" 926 | jsprim "^1.2.2" 927 | sshpk "^1.7.0" 928 | 929 | inflight@^1.0.4: 930 | version "1.0.6" 931 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 932 | dependencies: 933 | once "^1.3.0" 934 | wrappy "1" 935 | 936 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.3: 937 | version "2.0.3" 938 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 939 | 940 | ini@~1.3.0: 941 | version "1.3.4" 942 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 943 | 944 | invariant@^2.2.2: 945 | version "2.2.2" 946 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 947 | dependencies: 948 | loose-envify "^1.0.0" 949 | 950 | is-binary-path@^1.0.0: 951 | version "1.0.1" 952 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 953 | dependencies: 954 | binary-extensions "^1.0.0" 955 | 956 | is-buffer@^1.1.5: 957 | version "1.1.5" 958 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 959 | 960 | is-dotfile@^1.0.0: 961 | version "1.0.3" 962 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 963 | 964 | is-equal-shallow@^0.1.3: 965 | version "0.1.3" 966 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 967 | dependencies: 968 | is-primitive "^2.0.0" 969 | 970 | is-extendable@^0.1.1: 971 | version "0.1.1" 972 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 973 | 974 | is-extglob@^1.0.0: 975 | version "1.0.0" 976 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 977 | 978 | is-finite@^1.0.0: 979 | version "1.0.2" 980 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 981 | dependencies: 982 | number-is-nan "^1.0.0" 983 | 984 | is-fullwidth-code-point@^1.0.0: 985 | version "1.0.0" 986 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 987 | dependencies: 988 | number-is-nan "^1.0.0" 989 | 990 | is-glob@^2.0.0, is-glob@^2.0.1: 991 | version "2.0.1" 992 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 993 | dependencies: 994 | is-extglob "^1.0.0" 995 | 996 | is-number@^2.1.0: 997 | version "2.1.0" 998 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 999 | dependencies: 1000 | kind-of "^3.0.2" 1001 | 1002 | is-number@^3.0.0: 1003 | version "3.0.0" 1004 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1005 | dependencies: 1006 | kind-of "^3.0.2" 1007 | 1008 | is-posix-bracket@^0.1.0: 1009 | version "0.1.1" 1010 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1011 | 1012 | is-primitive@^2.0.0: 1013 | version "2.0.0" 1014 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1015 | 1016 | is-typedarray@~1.0.0: 1017 | version "1.0.0" 1018 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1019 | 1020 | isarray@1.0.0, isarray@~1.0.0: 1021 | version "1.0.0" 1022 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1023 | 1024 | isobject@^2.0.0: 1025 | version "2.1.0" 1026 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1027 | dependencies: 1028 | isarray "1.0.0" 1029 | 1030 | isstream@~0.1.2: 1031 | version "0.1.2" 1032 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1033 | 1034 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1035 | version "3.0.2" 1036 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1037 | 1038 | jsbn@~0.1.0: 1039 | version "0.1.1" 1040 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1041 | 1042 | jsesc@^1.3.0: 1043 | version "1.3.0" 1044 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1045 | 1046 | jsesc@~0.5.0: 1047 | version "0.5.0" 1048 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1049 | 1050 | json-schema@0.2.3: 1051 | version "0.2.3" 1052 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1053 | 1054 | json-stable-stringify@^1.0.1: 1055 | version "1.0.1" 1056 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1057 | dependencies: 1058 | jsonify "~0.0.0" 1059 | 1060 | json-stringify-safe@~5.0.1: 1061 | version "5.0.1" 1062 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1063 | 1064 | json3@3.3.2: 1065 | version "3.3.2" 1066 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 1067 | 1068 | json5@^0.5.1: 1069 | version "0.5.1" 1070 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1071 | 1072 | jsonify@~0.0.0: 1073 | version "0.0.0" 1074 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1075 | 1076 | jsprim@^1.2.2: 1077 | version "1.4.1" 1078 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1079 | dependencies: 1080 | assert-plus "1.0.0" 1081 | extsprintf "1.3.0" 1082 | json-schema "0.2.3" 1083 | verror "1.10.0" 1084 | 1085 | kind-of@^3.0.2: 1086 | version "3.2.2" 1087 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1088 | dependencies: 1089 | is-buffer "^1.1.5" 1090 | 1091 | kind-of@^4.0.0: 1092 | version "4.0.0" 1093 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1094 | dependencies: 1095 | is-buffer "^1.1.5" 1096 | 1097 | lodash._baseassign@^3.0.0: 1098 | version "3.2.0" 1099 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 1100 | dependencies: 1101 | lodash._basecopy "^3.0.0" 1102 | lodash.keys "^3.0.0" 1103 | 1104 | lodash._basecopy@^3.0.0: 1105 | version "3.0.1" 1106 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1107 | 1108 | lodash._basecreate@^3.0.0: 1109 | version "3.0.3" 1110 | resolved "https://registry.yarnpkg.com/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz#1bc661614daa7fc311b7d03bf16806a0213cf821" 1111 | 1112 | lodash._getnative@^3.0.0: 1113 | version "3.9.1" 1114 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1115 | 1116 | lodash._isiterateecall@^3.0.0: 1117 | version "3.0.9" 1118 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 1119 | 1120 | lodash.create@3.1.1: 1121 | version "3.1.1" 1122 | resolved "https://registry.yarnpkg.com/lodash.create/-/lodash.create-3.1.1.tgz#d7f2849f0dbda7e04682bb8cd72ab022461debe7" 1123 | dependencies: 1124 | lodash._baseassign "^3.0.0" 1125 | lodash._basecreate "^3.0.0" 1126 | lodash._isiterateecall "^3.0.0" 1127 | 1128 | lodash.isarguments@^3.0.0: 1129 | version "3.1.0" 1130 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 1131 | 1132 | lodash.isarray@^3.0.0: 1133 | version "3.0.4" 1134 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 1135 | 1136 | lodash.keys@^3.0.0: 1137 | version "3.1.2" 1138 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 1139 | dependencies: 1140 | lodash._getnative "^3.0.0" 1141 | lodash.isarguments "^3.0.0" 1142 | lodash.isarray "^3.0.0" 1143 | 1144 | lodash@^4.17.4: 1145 | version "4.17.4" 1146 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1147 | 1148 | loose-envify@^1.0.0: 1149 | version "1.3.1" 1150 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1151 | dependencies: 1152 | js-tokens "^3.0.0" 1153 | 1154 | micromatch@^2.1.5: 1155 | version "2.3.11" 1156 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1157 | dependencies: 1158 | arr-diff "^2.0.0" 1159 | array-unique "^0.2.1" 1160 | braces "^1.8.2" 1161 | expand-brackets "^0.1.4" 1162 | extglob "^0.3.1" 1163 | filename-regex "^2.0.0" 1164 | is-extglob "^1.0.0" 1165 | is-glob "^2.0.1" 1166 | kind-of "^3.0.2" 1167 | normalize-path "^2.0.1" 1168 | object.omit "^2.0.0" 1169 | parse-glob "^3.0.4" 1170 | regex-cache "^0.4.2" 1171 | 1172 | mime-db@~1.29.0: 1173 | version "1.29.0" 1174 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.29.0.tgz#48d26d235589651704ac5916ca06001914266878" 1175 | 1176 | mime-types@^2.1.12, mime-types@~2.1.7: 1177 | version "2.1.16" 1178 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.16.tgz#2b858a52e5ecd516db897ac2be87487830698e23" 1179 | dependencies: 1180 | mime-db "~1.29.0" 1181 | 1182 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 1183 | version "3.0.4" 1184 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1185 | dependencies: 1186 | brace-expansion "^1.1.7" 1187 | 1188 | minimist@0.0.8: 1189 | version "0.0.8" 1190 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1191 | 1192 | minimist@^1.2.0: 1193 | version "1.2.0" 1194 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1195 | 1196 | mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.1: 1197 | version "0.5.1" 1198 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1199 | dependencies: 1200 | minimist "0.0.8" 1201 | 1202 | mocha@3.5.0: 1203 | version "3.5.0" 1204 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-3.5.0.tgz#1328567d2717f997030f8006234bce9b8cd72465" 1205 | dependencies: 1206 | browser-stdout "1.3.0" 1207 | commander "2.9.0" 1208 | debug "2.6.8" 1209 | diff "3.2.0" 1210 | escape-string-regexp "1.0.5" 1211 | glob "7.1.1" 1212 | growl "1.9.2" 1213 | json3 "3.3.2" 1214 | lodash.create "3.1.1" 1215 | mkdirp "0.5.1" 1216 | supports-color "3.1.2" 1217 | 1218 | ms@2.0.0: 1219 | version "2.0.0" 1220 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1221 | 1222 | nan@^2.3.0: 1223 | version "2.7.0" 1224 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46" 1225 | 1226 | node-pre-gyp@^0.6.36: 1227 | version "0.6.36" 1228 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz#db604112cb74e0d477554e9b505b17abddfab786" 1229 | dependencies: 1230 | mkdirp "^0.5.1" 1231 | nopt "^4.0.1" 1232 | npmlog "^4.0.2" 1233 | rc "^1.1.7" 1234 | request "^2.81.0" 1235 | rimraf "^2.6.1" 1236 | semver "^5.3.0" 1237 | tar "^2.2.1" 1238 | tar-pack "^3.4.0" 1239 | 1240 | nopt@^4.0.1: 1241 | version "4.0.1" 1242 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1243 | dependencies: 1244 | abbrev "1" 1245 | osenv "^0.1.4" 1246 | 1247 | normalize-path@^2.0.0, normalize-path@^2.0.1: 1248 | version "2.1.1" 1249 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1250 | dependencies: 1251 | remove-trailing-separator "^1.0.1" 1252 | 1253 | npmlog@^4.0.2: 1254 | version "4.1.2" 1255 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1256 | dependencies: 1257 | are-we-there-yet "~1.1.2" 1258 | console-control-strings "~1.1.0" 1259 | gauge "~2.7.3" 1260 | set-blocking "~2.0.0" 1261 | 1262 | number-is-nan@^1.0.0: 1263 | version "1.0.1" 1264 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1265 | 1266 | oauth-sign@~0.8.1: 1267 | version "0.8.2" 1268 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1269 | 1270 | object-assign@^4.1.0: 1271 | version "4.1.1" 1272 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1273 | 1274 | object.omit@^2.0.0: 1275 | version "2.0.1" 1276 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1277 | dependencies: 1278 | for-own "^0.1.4" 1279 | is-extendable "^0.1.1" 1280 | 1281 | once@^1.3.0, once@^1.3.3: 1282 | version "1.4.0" 1283 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1284 | dependencies: 1285 | wrappy "1" 1286 | 1287 | os-homedir@^1.0.0: 1288 | version "1.0.2" 1289 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1290 | 1291 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 1292 | version "1.0.2" 1293 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1294 | 1295 | osenv@^0.1.4: 1296 | version "0.1.4" 1297 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 1298 | dependencies: 1299 | os-homedir "^1.0.0" 1300 | os-tmpdir "^1.0.0" 1301 | 1302 | output-file-sync@^1.1.2: 1303 | version "1.1.2" 1304 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 1305 | dependencies: 1306 | graceful-fs "^4.1.4" 1307 | mkdirp "^0.5.1" 1308 | object-assign "^4.1.0" 1309 | 1310 | parse-glob@^3.0.4: 1311 | version "3.0.4" 1312 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1313 | dependencies: 1314 | glob-base "^0.3.0" 1315 | is-dotfile "^1.0.0" 1316 | is-extglob "^1.0.0" 1317 | is-glob "^2.0.0" 1318 | 1319 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 1320 | version "1.0.1" 1321 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1322 | 1323 | pathval@^1.0.0: 1324 | version "1.1.0" 1325 | resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.0.tgz#b942e6d4bde653005ef6b71361def8727d0645e0" 1326 | 1327 | performance-now@^0.2.0: 1328 | version "0.2.0" 1329 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1330 | 1331 | preserve@^0.2.0: 1332 | version "0.2.0" 1333 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1334 | 1335 | private@^0.1.6, private@^0.1.7: 1336 | version "0.1.7" 1337 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 1338 | 1339 | process-nextick-args@~1.0.6: 1340 | version "1.0.7" 1341 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1342 | 1343 | punycode@^1.4.1: 1344 | version "1.4.1" 1345 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1346 | 1347 | qs@~6.4.0: 1348 | version "6.4.0" 1349 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 1350 | 1351 | randomatic@^1.1.3: 1352 | version "1.1.7" 1353 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 1354 | dependencies: 1355 | is-number "^3.0.0" 1356 | kind-of "^4.0.0" 1357 | 1358 | rc@^1.1.7: 1359 | version "1.2.1" 1360 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 1361 | dependencies: 1362 | deep-extend "~0.4.0" 1363 | ini "~1.3.0" 1364 | minimist "^1.2.0" 1365 | strip-json-comments "~2.0.1" 1366 | 1367 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4: 1368 | version "2.3.3" 1369 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 1370 | dependencies: 1371 | core-util-is "~1.0.0" 1372 | inherits "~2.0.3" 1373 | isarray "~1.0.0" 1374 | process-nextick-args "~1.0.6" 1375 | safe-buffer "~5.1.1" 1376 | string_decoder "~1.0.3" 1377 | util-deprecate "~1.0.1" 1378 | 1379 | readdirp@^2.0.0: 1380 | version "2.1.0" 1381 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 1382 | dependencies: 1383 | graceful-fs "^4.1.2" 1384 | minimatch "^3.0.2" 1385 | readable-stream "^2.0.2" 1386 | set-immediate-shim "^1.0.1" 1387 | 1388 | regenerate@^1.2.1: 1389 | version "1.3.2" 1390 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 1391 | 1392 | regenerator-runtime@^0.10.5: 1393 | version "0.10.5" 1394 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 1395 | 1396 | regenerator-runtime@^0.11.0: 1397 | version "0.11.0" 1398 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1" 1399 | 1400 | regenerator-transform@^0.10.0: 1401 | version "0.10.1" 1402 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 1403 | dependencies: 1404 | babel-runtime "^6.18.0" 1405 | babel-types "^6.19.0" 1406 | private "^0.1.6" 1407 | 1408 | regex-cache@^0.4.2: 1409 | version "0.4.3" 1410 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 1411 | dependencies: 1412 | is-equal-shallow "^0.1.3" 1413 | is-primitive "^2.0.0" 1414 | 1415 | regexpu-core@^2.0.0: 1416 | version "2.0.0" 1417 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 1418 | dependencies: 1419 | regenerate "^1.2.1" 1420 | regjsgen "^0.2.0" 1421 | regjsparser "^0.1.4" 1422 | 1423 | regjsgen@^0.2.0: 1424 | version "0.2.0" 1425 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 1426 | 1427 | regjsparser@^0.1.4: 1428 | version "0.1.5" 1429 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 1430 | dependencies: 1431 | jsesc "~0.5.0" 1432 | 1433 | remove-trailing-separator@^1.0.1: 1434 | version "1.1.0" 1435 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 1436 | 1437 | repeat-element@^1.1.2: 1438 | version "1.1.2" 1439 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1440 | 1441 | repeat-string@^1.5.2: 1442 | version "1.6.1" 1443 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1444 | 1445 | repeating@^2.0.0: 1446 | version "2.0.1" 1447 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1448 | dependencies: 1449 | is-finite "^1.0.0" 1450 | 1451 | request@^2.81.0: 1452 | version "2.81.0" 1453 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 1454 | dependencies: 1455 | aws-sign2 "~0.6.0" 1456 | aws4 "^1.2.1" 1457 | caseless "~0.12.0" 1458 | combined-stream "~1.0.5" 1459 | extend "~3.0.0" 1460 | forever-agent "~0.6.1" 1461 | form-data "~2.1.1" 1462 | har-validator "~4.2.1" 1463 | hawk "~3.1.3" 1464 | http-signature "~1.1.0" 1465 | is-typedarray "~1.0.0" 1466 | isstream "~0.1.2" 1467 | json-stringify-safe "~5.0.1" 1468 | mime-types "~2.1.7" 1469 | oauth-sign "~0.8.1" 1470 | performance-now "^0.2.0" 1471 | qs "~6.4.0" 1472 | safe-buffer "^5.0.1" 1473 | stringstream "~0.0.4" 1474 | tough-cookie "~2.3.0" 1475 | tunnel-agent "^0.6.0" 1476 | uuid "^3.0.0" 1477 | 1478 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: 1479 | version "2.6.1" 1480 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 1481 | dependencies: 1482 | glob "^7.0.5" 1483 | 1484 | safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1485 | version "5.1.1" 1486 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 1487 | 1488 | semver@^5.3.0: 1489 | version "5.4.1" 1490 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 1491 | 1492 | set-blocking@~2.0.0: 1493 | version "2.0.0" 1494 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1495 | 1496 | set-immediate-shim@^1.0.1: 1497 | version "1.0.1" 1498 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 1499 | 1500 | signal-exit@^3.0.0: 1501 | version "3.0.2" 1502 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1503 | 1504 | slash@^1.0.0: 1505 | version "1.0.0" 1506 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 1507 | 1508 | sntp@1.x.x: 1509 | version "1.0.9" 1510 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 1511 | dependencies: 1512 | hoek "2.x.x" 1513 | 1514 | source-map-support@^0.4.15: 1515 | version "0.4.16" 1516 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.16.tgz#16fecf98212467d017d586a2af68d628b9421cd8" 1517 | dependencies: 1518 | source-map "^0.5.6" 1519 | 1520 | source-map@^0.5.6: 1521 | version "0.5.7" 1522 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 1523 | 1524 | sshpk@^1.7.0: 1525 | version "1.13.1" 1526 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 1527 | dependencies: 1528 | asn1 "~0.2.3" 1529 | assert-plus "^1.0.0" 1530 | dashdash "^1.12.0" 1531 | getpass "^0.1.1" 1532 | optionalDependencies: 1533 | bcrypt-pbkdf "^1.0.0" 1534 | ecc-jsbn "~0.1.1" 1535 | jsbn "~0.1.0" 1536 | tweetnacl "~0.14.0" 1537 | 1538 | string-width@^1.0.1, string-width@^1.0.2: 1539 | version "1.0.2" 1540 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1541 | dependencies: 1542 | code-point-at "^1.0.0" 1543 | is-fullwidth-code-point "^1.0.0" 1544 | strip-ansi "^3.0.0" 1545 | 1546 | string_decoder@~1.0.3: 1547 | version "1.0.3" 1548 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 1549 | dependencies: 1550 | safe-buffer "~5.1.0" 1551 | 1552 | stringstream@~0.0.4: 1553 | version "0.0.5" 1554 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 1555 | 1556 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1557 | version "3.0.1" 1558 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1559 | dependencies: 1560 | ansi-regex "^2.0.0" 1561 | 1562 | strip-json-comments@~2.0.1: 1563 | version "2.0.1" 1564 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1565 | 1566 | supports-color@3.1.2: 1567 | version "3.1.2" 1568 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 1569 | dependencies: 1570 | has-flag "^1.0.0" 1571 | 1572 | supports-color@^2.0.0: 1573 | version "2.0.0" 1574 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1575 | 1576 | tar-pack@^3.4.0: 1577 | version "3.4.0" 1578 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 1579 | dependencies: 1580 | debug "^2.2.0" 1581 | fstream "^1.0.10" 1582 | fstream-ignore "^1.0.5" 1583 | once "^1.3.3" 1584 | readable-stream "^2.1.4" 1585 | rimraf "^2.5.1" 1586 | tar "^2.2.1" 1587 | uid-number "^0.0.6" 1588 | 1589 | tar@^2.2.1: 1590 | version "2.2.1" 1591 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 1592 | dependencies: 1593 | block-stream "*" 1594 | fstream "^1.0.2" 1595 | inherits "2" 1596 | 1597 | to-fast-properties@^1.0.3: 1598 | version "1.0.3" 1599 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 1600 | 1601 | tough-cookie@~2.3.0: 1602 | version "2.3.2" 1603 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 1604 | dependencies: 1605 | punycode "^1.4.1" 1606 | 1607 | trim-right@^1.0.1: 1608 | version "1.0.1" 1609 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 1610 | 1611 | tunnel-agent@^0.6.0: 1612 | version "0.6.0" 1613 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 1614 | dependencies: 1615 | safe-buffer "^5.0.1" 1616 | 1617 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1618 | version "0.14.5" 1619 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1620 | 1621 | type-detect@^3.0.0: 1622 | version "3.0.0" 1623 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-3.0.0.tgz#46d0cc8553abb7b13a352b0d6dea2fd58f2d9b55" 1624 | 1625 | type-detect@^4.0.0: 1626 | version "4.0.3" 1627 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.3.tgz#0e3f2670b44099b0b46c284d136a7ef49c74c2ea" 1628 | 1629 | uid-number@^0.0.6: 1630 | version "0.0.6" 1631 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 1632 | 1633 | user-home@^1.1.1: 1634 | version "1.1.1" 1635 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 1636 | 1637 | util-deprecate@~1.0.1: 1638 | version "1.0.2" 1639 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1640 | 1641 | uuid@^3.0.0: 1642 | version "3.1.0" 1643 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 1644 | 1645 | v8flags@^2.1.1: 1646 | version "2.1.1" 1647 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 1648 | dependencies: 1649 | user-home "^1.1.1" 1650 | 1651 | verror@1.10.0: 1652 | version "1.10.0" 1653 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 1654 | dependencies: 1655 | assert-plus "^1.0.0" 1656 | core-util-is "1.0.2" 1657 | extsprintf "^1.2.0" 1658 | 1659 | wide-align@^1.1.0: 1660 | version "1.1.2" 1661 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 1662 | dependencies: 1663 | string-width "^1.0.2" 1664 | 1665 | wrappy@1: 1666 | version "1.0.2" 1667 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1668 | --------------------------------------------------------------------------------