├── .babelrc ├── .eslintrc.yml ├── .gitignore ├── .travis.yml ├── History.md ├── LICENSE ├── README.md ├── package.json ├── rollup.config.js ├── src └── index.js ├── test ├── img │ ├── test1.png │ ├── test2.png │ └── testres.png └── test.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["transform-es2015-modules-commonjs"] 3 | } 4 | -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- 1 | extends: 'eslint-config-cheminfo' 2 | parserOptions: 3 | sourceType: module 4 | env: 5 | jest: true 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | 6 | # Runtime data 7 | pids 8 | *.pid 9 | *.seed 10 | 11 | # Directory for instrumented libs generated by jscoverage/JSCover 12 | lib-cov 13 | 14 | # Coverage directory used by tools like istanbul 15 | coverage 16 | 17 | # nyc test coverage 18 | .nyc_output 19 | 20 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 21 | .grunt 22 | 23 | # node-waf configuration 24 | .lock-wscript 25 | 26 | # Compiled binary addons (http://nodejs.org/api/addons.html) 27 | build/Release 28 | 29 | # Dependency directories 30 | node_modules 31 | jspm_packages 32 | 33 | # Optional npm cache directory 34 | .npm 35 | 36 | # Optional REPL history 37 | .node_repl_history 38 | 39 | lib 40 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 8 4 | -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- 1 | 2 | # 1.0.0 (2017-06-28) 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2017 image-js 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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # canny-edge-detector 2 | 3 | [![NPM version][npm-image]][npm-url] 4 | [![build status][travis-image]][travis-url] 5 | [![npm download][download-image]][download-url] 6 | 7 | Canny edge detector 8 | 9 | ## Installation 10 | 11 | `$ npm install canny-edge-detector image-js` 12 | 13 | ## Usage 14 | 15 | ### cannyEdgeDetector(image[, options]) 16 | 17 | Find edges in an image using the [Canny algorithm](https://en.wikipedia.org/wiki/Canny_edge_detector). 18 | Returns a greyscale image with the edges at `options.brightness` value. 19 | 20 | __arguments__ 21 | 22 | * `image` - a greyscale Image 23 | * `options` - an optional object 24 | 25 | __options__ 26 | 27 | * `lowThreshold`: Low threshold for the hysteresis procedure (default: 10). 28 | * `highThreshold`: High threshold for the hysteresis procedure (default: 30). 29 | * `gaussianBlur`: Sigma parameter for the gaussian filter step (default: 1.1). 30 | * `brightness`: Values assigned to each edge pixel on the result image (default: image.maxValue). 31 | 32 | ## Example 33 | ```js 34 | const cannyEdgeDetector = require('canny-edge-detector'); 35 | const Image = require('image-js').Image; 36 | 37 | Image.load('my-image.png').then((img) => { 38 | const grey = img.grey(); 39 | const edge = cannyEdgeDetector(grey); 40 | return edge.save('edge.png'); 41 | }) 42 | ``` 43 | 44 | ## License 45 | 46 | [MIT](./LICENSE) 47 | 48 | [npm-image]: https://img.shields.io/npm/v/canny-edge-detector.svg?style=flat-square 49 | [npm-url]: https://npmjs.org/package/canny-edge-detector 50 | [travis-image]: https://img.shields.io/travis/image-js/canny-edge-detector/master.svg?style=flat-square 51 | [travis-url]: https://travis-ci.org/image-js/canny-edge-detector 52 | [download-image]: https://img.shields.io/npm/dm/canny-edge-detector.svg?style=flat-square 53 | [download-url]: https://npmjs.org/package/canny-edge-detector 54 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "canny-edge-detector", 3 | "version": "1.0.0", 4 | "description": "Canny edge detector", 5 | "main": "lib/index.js", 6 | "module": "src/index.js", 7 | "files": [ 8 | "lib", 9 | "src" 10 | ], 11 | "scripts": { 12 | "eslint": "eslint src", 13 | "eslint-fix": "npm run eslint -- --fix", 14 | "prepublish": "rollup -c", 15 | "test": "run-s testonly eslint", 16 | "testonly": "jest" 17 | }, 18 | "repository": { 19 | "type": "git", 20 | "url": "https://github.com/image-js/canny-edge-detector.git" 21 | }, 22 | "keywords": [ 23 | "image-js", 24 | "image", 25 | "computer", 26 | "vision", 27 | "canny", 28 | "edge", 29 | "detector" 30 | ], 31 | "author": "Jefferson Hernandez ", 32 | "license": "MIT", 33 | "bugs": { 34 | "url": "https://github.com/image-js/canny-edge-detector/issues" 35 | }, 36 | "homepage": "https://github.com/image-js/canny-edge-detector#readme", 37 | "devDependencies": { 38 | "babel-plugin-transform-es2015-modules-commonjs": "^6.24.1", 39 | "eslint": "^4.1.1", 40 | "eslint-config-cheminfo": "^1.6.0", 41 | "eslint-plugin-no-only-tests": "^2.0.0", 42 | "image-js": "^0.11.4", 43 | "jest": "^20.0.4", 44 | "npm-run-all": "^4.0.2", 45 | "rollup": "^0.43.0" 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | entry: 'src/index.js', 3 | format: 'cjs', 4 | dest: 'lib/index.js' 5 | }; 6 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | const defaultOptions = { 2 | lowThreshold: 10, 3 | highThreshold: 30, 4 | gaussianBlur: 1.1 5 | }; 6 | 7 | const Gx = [ 8 | [-1, 0, +1], 9 | [-2, 0, +2], 10 | [-1, 0, +1] 11 | ]; 12 | 13 | const Gy = [ 14 | [-1, -2, -1], 15 | [0, 0, 0], 16 | [+1, +2, +1] 17 | ]; 18 | 19 | const convOptions = { 20 | bitDepth: 32, 21 | mode: 'periodic' 22 | }; 23 | 24 | export default function cannyEdgeDetector(image, options) { 25 | image.checkProcessable('Canny edge detector', { 26 | bitDepth: 8, 27 | channels: 1, 28 | components: 1 29 | }); 30 | 31 | options = Object.assign({}, defaultOptions, options); 32 | 33 | const width = image.width; 34 | const height = image.height; 35 | const brightness = image.maxValue; 36 | 37 | const gfOptions = { 38 | sigma: options.gaussianBlur, 39 | radius: 3 40 | }; 41 | 42 | const gf = image.gaussianFilter(gfOptions); 43 | 44 | const gradientX = gf.convolution(Gy, convOptions); 45 | const gradientY = gf.convolution(Gx, convOptions); 46 | 47 | const G = gradientY.hypotenuse(gradientX); 48 | 49 | const Image = image.constructor; 50 | 51 | const nms = new Image(width, height, { 52 | kind: 'GREY', 53 | bitDepth: 32 54 | }); 55 | 56 | const edges = new Image(width, height, { 57 | kind: 'GREY', 58 | bitDepth: 32 59 | }); 60 | 61 | const finalImage = new Image(width, height, { 62 | kind: 'GREY' 63 | }); 64 | 65 | // Non-Maximum supression 66 | for (var i = 1; i < width - 1; i++) { 67 | for (var j = 1; j < height - 1; j++) { 68 | 69 | var dir = (Math.round(Math.atan2(gradientY.getValueXY(i, j, 0), gradientX.getValueXY(i, j, 0)) * (5.0 / Math.PI)) + 5) % 5; 70 | 71 | if ( 72 | !((dir === 0 && (G.getValueXY(i, j, 0) <= G.getValueXY(i, j - 1, 0) || G.getValueXY(i, j, 0) <= G.getValueXY(i, j + 1, 0))) 73 | || (dir === 1 && (G.getValueXY(i, j, 0) <= G.getValueXY(i - 1, j + 1, 0) || G.getValueXY(i, j, 0) <= G.getValueXY(i + 1, j - 1, 0))) 74 | || (dir === 2 && (G.getValueXY(i, j, 0) <= G.getValueXY(i - 1, j, 0) || G.getValueXY(i, j, 0) <= G.getValueXY(i + 1, j, 0))) 75 | || (dir === 3 && (G.getValueXY(i, j, 0) <= G.getValueXY(i - 1, j - 1, 0) || G.getValueXY(i, j, 0) <= G.getValueXY(i + 1, j + 1, 0)))) 76 | ) { 77 | nms.setValueXY(i, j, 0, G.getValueXY(i, j, 0)); 78 | } 79 | } 80 | } 81 | 82 | for (i = 0; i < width * height; ++i) { 83 | var currentNms = nms.data[i]; 84 | var currentEdge = 0; 85 | if (currentNms > options.highThreshold) { 86 | currentEdge++; 87 | finalImage.data[i] = brightness; 88 | } 89 | if (currentNms > options.lowThreshold) { 90 | currentEdge++; 91 | } 92 | 93 | edges.data[i] = currentEdge; 94 | } 95 | 96 | // Hysteresis: first pass 97 | var currentPixels = []; 98 | for (i = 1; i < width - 1; ++i) { 99 | for (j = 1; j < height - 1; ++j) { 100 | if (edges.getValueXY(i, j, 0) !== 1) { 101 | continue; 102 | } 103 | 104 | outer: for (var k = i - 1; k < i + 2; ++k) { 105 | for (var l = j - 1; l < j + 2; ++l) { 106 | if (edges.getValueXY(k, l, 0) === 2) { 107 | currentPixels.push([i, j]); 108 | finalImage.setValueXY(i, j, 0, brightness); 109 | break outer; 110 | } 111 | } 112 | } 113 | } 114 | } 115 | 116 | // Hysteresis: second pass 117 | while (currentPixels.length > 0) { 118 | var newPixels = []; 119 | for (i = 0; i < currentPixels.length; ++i) { 120 | for (j = -1; j < 2; ++j) { 121 | for (k = -1; k < 2; ++k) { 122 | if (j === 0 && k === 0) { 123 | continue; 124 | } 125 | var row = currentPixels[i][0] + j; 126 | var col = currentPixels[i][1] + k; 127 | if (edges.getValueXY(row, col, 0) === 1 && finalImage.getValueXY(row, col, 0) === 0) { 128 | newPixels.push([row, col]); 129 | finalImage.setValueXY(row, col, 0, brightness); 130 | } 131 | } 132 | } 133 | } 134 | currentPixels = newPixels; 135 | } 136 | 137 | return finalImage; 138 | } 139 | -------------------------------------------------------------------------------- /test/img/test1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-js/canny-edge-detector/8f987546c240f8a2600d74572b10ab9e40d9f3f0/test/img/test1.png -------------------------------------------------------------------------------- /test/img/test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-js/canny-edge-detector/8f987546c240f8a2600d74572b10ab9e40d9f3f0/test/img/test2.png -------------------------------------------------------------------------------- /test/img/testres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-js/canny-edge-detector/8f987546c240f8a2600d74572b10ab9e40d9f3f0/test/img/testres.png -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- 1 | import Image from 'image-js'; 2 | import cannyEdgeDetector from '../src'; 3 | 4 | describe('canny-edge-detector test', () => { 5 | it('Main test', async () => { 6 | const promises = [Image.load('./test/img/test1.png'), Image.load('./test/img/test2.png'), Image.load('./test/img/testres.png')]; 7 | const images = await Promise.all(promises); 8 | const params = { 9 | gaussianBlur: 1.1 10 | }; 11 | const edges1 = cannyEdgeDetector(images[0].grey(), params); 12 | const edges2 = cannyEdgeDetector(images[1].grey(), params); 13 | const expectedOutput = images[2]; 14 | expectedOutput.colorModel = 'GREY'; 15 | 16 | expect(expectedOutput.getSimilarity(edges1)).toBeGreaterThan(0.7); 17 | expect(expectedOutput.getSimilarity(edges2)).toBeGreaterThan(0.7); 18 | }); 19 | }); 20 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abab@^1.0.3: 6 | version "1.0.3" 7 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d" 8 | 9 | acorn-globals@^3.1.0: 10 | version "3.1.0" 11 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 12 | dependencies: 13 | acorn "^4.0.4" 14 | 15 | acorn-jsx@^3.0.0: 16 | version "3.0.1" 17 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 18 | dependencies: 19 | acorn "^3.0.4" 20 | 21 | acorn@^3.0.4: 22 | version "3.3.0" 23 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 24 | 25 | acorn@^4.0.4: 26 | version "4.0.13" 27 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 28 | 29 | acorn@^5.0.1: 30 | version "5.0.3" 31 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.0.3.tgz#c460df08491463f028ccb82eab3730bf01087b3d" 32 | 33 | ajv-keywords@^1.0.0: 34 | version "1.5.1" 35 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 36 | 37 | ajv@^4.7.0, ajv@^4.9.1: 38 | version "4.11.8" 39 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 40 | dependencies: 41 | co "^4.6.0" 42 | json-stable-stringify "^1.0.1" 43 | 44 | align-text@^0.1.1, align-text@^0.1.3: 45 | version "0.1.4" 46 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 47 | dependencies: 48 | kind-of "^3.0.2" 49 | longest "^1.0.1" 50 | repeat-string "^1.5.2" 51 | 52 | amdefine@>=0.0.4: 53 | version "1.0.1" 54 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 55 | 56 | ansi-escapes@^1.4.0: 57 | version "1.4.0" 58 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 59 | 60 | ansi-escapes@^2.0.0: 61 | version "2.0.0" 62 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-2.0.0.tgz#5bae52be424878dd9783e8910e3fc2922e83c81b" 63 | 64 | ansi-regex@^2.0.0, ansi-regex@^2.1.1: 65 | version "2.1.1" 66 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 67 | 68 | ansi-regex@^3.0.0: 69 | version "3.0.0" 70 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 71 | 72 | ansi-styles@^2.2.1: 73 | version "2.2.1" 74 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 75 | 76 | ansi-styles@^3.0.0: 77 | version "3.1.0" 78 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.1.0.tgz#09c202d5c917ec23188caa5c9cb9179cd9547750" 79 | dependencies: 80 | color-convert "^1.0.0" 81 | 82 | anymatch@^1.3.0: 83 | version "1.3.0" 84 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 85 | dependencies: 86 | arrify "^1.0.0" 87 | micromatch "^2.1.5" 88 | 89 | append-transform@^0.4.0: 90 | version "0.4.0" 91 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 92 | dependencies: 93 | default-require-extensions "^1.0.0" 94 | 95 | argparse@^1.0.7: 96 | version "1.0.9" 97 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 98 | dependencies: 99 | sprintf-js "~1.0.2" 100 | 101 | arr-diff@^2.0.0: 102 | version "2.0.0" 103 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 104 | dependencies: 105 | arr-flatten "^1.0.1" 106 | 107 | arr-flatten@^1.0.1: 108 | version "1.0.3" 109 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 110 | 111 | array-equal@^1.0.0: 112 | version "1.0.0" 113 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 114 | 115 | array-filter@~0.0.0: 116 | version "0.0.1" 117 | resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" 118 | 119 | array-map@~0.0.0: 120 | version "0.0.0" 121 | resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" 122 | 123 | array-reduce@~0.0.0: 124 | version "0.0.0" 125 | resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" 126 | 127 | array-union@^1.0.1: 128 | version "1.0.2" 129 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 130 | dependencies: 131 | array-uniq "^1.0.1" 132 | 133 | array-uniq@^1.0.1: 134 | version "1.0.3" 135 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 136 | 137 | array-unique@^0.2.1: 138 | version "0.2.1" 139 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 140 | 141 | arrify@^1.0.0, arrify@^1.0.1: 142 | version "1.0.1" 143 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 144 | 145 | asn1@~0.2.3: 146 | version "0.2.3" 147 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 148 | 149 | assert-plus@1.0.0, assert-plus@^1.0.0: 150 | version "1.0.0" 151 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 152 | 153 | assert-plus@^0.2.0: 154 | version "0.2.0" 155 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 156 | 157 | async@^1.4.0: 158 | version "1.5.2" 159 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 160 | 161 | async@^2.1.4: 162 | version "2.5.0" 163 | resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d" 164 | dependencies: 165 | lodash "^4.14.0" 166 | 167 | asynckit@^0.4.0: 168 | version "0.4.0" 169 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 170 | 171 | aws-sign2@~0.6.0: 172 | version "0.6.0" 173 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 174 | 175 | aws4@^1.2.1: 176 | version "1.6.0" 177 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 178 | 179 | babel-code-frame@^6.22.0: 180 | version "6.22.0" 181 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 182 | dependencies: 183 | chalk "^1.1.0" 184 | esutils "^2.0.2" 185 | js-tokens "^3.0.0" 186 | 187 | babel-core@^6.0.0, babel-core@^6.24.1: 188 | version "6.25.0" 189 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.25.0.tgz#7dd42b0463c742e9d5296deb3ec67a9322dad729" 190 | dependencies: 191 | babel-code-frame "^6.22.0" 192 | babel-generator "^6.25.0" 193 | babel-helpers "^6.24.1" 194 | babel-messages "^6.23.0" 195 | babel-register "^6.24.1" 196 | babel-runtime "^6.22.0" 197 | babel-template "^6.25.0" 198 | babel-traverse "^6.25.0" 199 | babel-types "^6.25.0" 200 | babylon "^6.17.2" 201 | convert-source-map "^1.1.0" 202 | debug "^2.1.1" 203 | json5 "^0.5.0" 204 | lodash "^4.2.0" 205 | minimatch "^3.0.2" 206 | path-is-absolute "^1.0.0" 207 | private "^0.1.6" 208 | slash "^1.0.0" 209 | source-map "^0.5.0" 210 | 211 | babel-generator@^6.18.0, babel-generator@^6.25.0: 212 | version "6.25.0" 213 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.25.0.tgz#33a1af70d5f2890aeb465a4a7793c1df6a9ea9fc" 214 | dependencies: 215 | babel-messages "^6.23.0" 216 | babel-runtime "^6.22.0" 217 | babel-types "^6.25.0" 218 | detect-indent "^4.0.0" 219 | jsesc "^1.3.0" 220 | lodash "^4.2.0" 221 | source-map "^0.5.0" 222 | trim-right "^1.0.1" 223 | 224 | babel-helpers@^6.24.1: 225 | version "6.24.1" 226 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 227 | dependencies: 228 | babel-runtime "^6.22.0" 229 | babel-template "^6.24.1" 230 | 231 | babel-jest@^20.0.3: 232 | version "20.0.3" 233 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-20.0.3.tgz#e4a03b13dc10389e140fc645d09ffc4ced301671" 234 | dependencies: 235 | babel-core "^6.0.0" 236 | babel-plugin-istanbul "^4.0.0" 237 | babel-preset-jest "^20.0.3" 238 | 239 | babel-messages@^6.23.0: 240 | version "6.23.0" 241 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 242 | dependencies: 243 | babel-runtime "^6.22.0" 244 | 245 | babel-plugin-istanbul@^4.0.0: 246 | version "4.1.4" 247 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.4.tgz#18dde84bf3ce329fddf3f4103fae921456d8e587" 248 | dependencies: 249 | find-up "^2.1.0" 250 | istanbul-lib-instrument "^1.7.2" 251 | test-exclude "^4.1.1" 252 | 253 | babel-plugin-jest-hoist@^20.0.3: 254 | version "20.0.3" 255 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-20.0.3.tgz#afedc853bd3f8dc3548ea671fbe69d03cc2c1767" 256 | 257 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 258 | version "6.24.1" 259 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 260 | dependencies: 261 | babel-plugin-transform-strict-mode "^6.24.1" 262 | babel-runtime "^6.22.0" 263 | babel-template "^6.24.1" 264 | babel-types "^6.24.1" 265 | 266 | babel-plugin-transform-strict-mode@^6.24.1: 267 | version "6.24.1" 268 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 269 | dependencies: 270 | babel-runtime "^6.22.0" 271 | babel-types "^6.24.1" 272 | 273 | babel-preset-jest@^20.0.3: 274 | version "20.0.3" 275 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-20.0.3.tgz#cbacaadecb5d689ca1e1de1360ebfc66862c178a" 276 | dependencies: 277 | babel-plugin-jest-hoist "^20.0.3" 278 | 279 | babel-register@^6.24.1: 280 | version "6.24.1" 281 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 282 | dependencies: 283 | babel-core "^6.24.1" 284 | babel-runtime "^6.22.0" 285 | core-js "^2.4.0" 286 | home-or-tmp "^2.0.0" 287 | lodash "^4.2.0" 288 | mkdirp "^0.5.1" 289 | source-map-support "^0.4.2" 290 | 291 | babel-runtime@^6.22.0: 292 | version "6.23.0" 293 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 294 | dependencies: 295 | core-js "^2.4.0" 296 | regenerator-runtime "^0.10.0" 297 | 298 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.25.0: 299 | version "6.25.0" 300 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.25.0.tgz#665241166b7c2aa4c619d71e192969552b10c071" 301 | dependencies: 302 | babel-runtime "^6.22.0" 303 | babel-traverse "^6.25.0" 304 | babel-types "^6.25.0" 305 | babylon "^6.17.2" 306 | lodash "^4.2.0" 307 | 308 | babel-traverse@^6.18.0, babel-traverse@^6.25.0: 309 | version "6.25.0" 310 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.25.0.tgz#2257497e2fcd19b89edc13c4c91381f9512496f1" 311 | dependencies: 312 | babel-code-frame "^6.22.0" 313 | babel-messages "^6.23.0" 314 | babel-runtime "^6.22.0" 315 | babel-types "^6.25.0" 316 | babylon "^6.17.2" 317 | debug "^2.2.0" 318 | globals "^9.0.0" 319 | invariant "^2.2.0" 320 | lodash "^4.2.0" 321 | 322 | babel-types@^6.18.0, babel-types@^6.24.1, babel-types@^6.25.0: 323 | version "6.25.0" 324 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.25.0.tgz#70afb248d5660e5d18f811d91c8303b54134a18e" 325 | dependencies: 326 | babel-runtime "^6.22.0" 327 | esutils "^2.0.2" 328 | lodash "^4.2.0" 329 | to-fast-properties "^1.0.1" 330 | 331 | babylon@^6.17.2, babylon@^6.17.4: 332 | version "6.17.4" 333 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.4.tgz#3e8b7402b88d22c3423e137a1577883b15ff869a" 334 | 335 | balanced-match@^1.0.0: 336 | version "1.0.0" 337 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 338 | 339 | bcrypt-pbkdf@^1.0.0: 340 | version "1.0.1" 341 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 342 | dependencies: 343 | tweetnacl "^0.14.3" 344 | 345 | blob-util@^1.2.1: 346 | version "1.2.1" 347 | resolved "https://registry.yarnpkg.com/blob-util/-/blob-util-1.2.1.tgz#cda95814d2359802611a6110fe0bc88aa2dcaa2f" 348 | dependencies: 349 | blob "0.0.4" 350 | native-or-lie "1.0.0" 351 | 352 | blob@0.0.4: 353 | version "0.0.4" 354 | resolved "https://registry.yarnpkg.com/blob/-/blob-0.0.4.tgz#bcf13052ca54463f30f9fc7e95b9a47630a94921" 355 | 356 | boom@2.x.x: 357 | version "2.10.1" 358 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 359 | dependencies: 360 | hoek "2.x.x" 361 | 362 | brace-expansion@^1.1.7: 363 | version "1.1.8" 364 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 365 | dependencies: 366 | balanced-match "^1.0.0" 367 | concat-map "0.0.1" 368 | 369 | braces@^1.8.2: 370 | version "1.8.5" 371 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 372 | dependencies: 373 | expand-range "^1.8.1" 374 | preserve "^0.2.0" 375 | repeat-element "^1.1.2" 376 | 377 | browser-resolve@^1.11.2: 378 | version "1.11.2" 379 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 380 | dependencies: 381 | resolve "1.1.7" 382 | 383 | bser@1.0.2: 384 | version "1.0.2" 385 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 386 | dependencies: 387 | node-int64 "^0.4.0" 388 | 389 | bser@^2.0.0: 390 | version "2.0.0" 391 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 392 | dependencies: 393 | node-int64 "^0.4.0" 394 | 395 | builtin-modules@^1.0.0: 396 | version "1.1.1" 397 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 398 | 399 | caller-path@^0.1.0: 400 | version "0.1.0" 401 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 402 | dependencies: 403 | callsites "^0.2.0" 404 | 405 | callsites@^0.2.0: 406 | version "0.2.0" 407 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 408 | 409 | callsites@^2.0.0: 410 | version "2.0.0" 411 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 412 | 413 | camelcase@^1.0.2: 414 | version "1.2.1" 415 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 416 | 417 | camelcase@^3.0.0: 418 | version "3.0.0" 419 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 420 | 421 | canvas@^1.6.0: 422 | version "1.6.5" 423 | resolved "https://registry.yarnpkg.com/canvas/-/canvas-1.6.5.tgz#557f9988f5d2c95fdc247c61a5ee43de52f6717c" 424 | dependencies: 425 | nan "^2.4.0" 426 | parse-css-font "^2.0.2" 427 | units-css "^0.4.0" 428 | 429 | caseless@~0.12.0: 430 | version "0.12.0" 431 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 432 | 433 | center-align@^0.1.1: 434 | version "0.1.3" 435 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 436 | dependencies: 437 | align-text "^0.1.3" 438 | lazy-cache "^1.0.3" 439 | 440 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 441 | version "1.1.3" 442 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 443 | dependencies: 444 | ansi-styles "^2.2.1" 445 | escape-string-regexp "^1.0.2" 446 | has-ansi "^2.0.0" 447 | strip-ansi "^3.0.0" 448 | supports-color "^2.0.0" 449 | 450 | ci-info@^1.0.0: 451 | version "1.0.0" 452 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 453 | 454 | circular-json@^0.3.1: 455 | version "0.3.1" 456 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 457 | 458 | cli-cursor@^2.1.0: 459 | version "2.1.0" 460 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 461 | dependencies: 462 | restore-cursor "^2.0.0" 463 | 464 | cli-width@^2.0.0: 465 | version "2.1.0" 466 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 467 | 468 | cliui@^2.1.0: 469 | version "2.1.0" 470 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 471 | dependencies: 472 | center-align "^0.1.1" 473 | right-align "^0.1.1" 474 | wordwrap "0.0.2" 475 | 476 | cliui@^3.2.0: 477 | version "3.2.0" 478 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 479 | dependencies: 480 | string-width "^1.0.1" 481 | strip-ansi "^3.0.1" 482 | wrap-ansi "^2.0.0" 483 | 484 | co@^4.6.0: 485 | version "4.6.0" 486 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 487 | 488 | code-point-at@^1.0.0: 489 | version "1.1.0" 490 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 491 | 492 | color-convert@^1.0.0: 493 | version "1.9.0" 494 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 495 | dependencies: 496 | color-name "^1.1.1" 497 | 498 | color-functions@^1.1.0: 499 | version "1.1.0" 500 | resolved "https://registry.yarnpkg.com/color-functions/-/color-functions-1.1.0.tgz#4cb805479065a3658c3269f48fac73eff00f95de" 501 | 502 | color-name@^1.1.1: 503 | version "1.1.2" 504 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d" 505 | 506 | combined-stream@^1.0.5, combined-stream@~1.0.5: 507 | version "1.0.5" 508 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 509 | dependencies: 510 | delayed-stream "~1.0.0" 511 | 512 | concat-map@0.0.1: 513 | version "0.0.1" 514 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 515 | 516 | concat-stream@^1.6.0: 517 | version "1.6.0" 518 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 519 | dependencies: 520 | inherits "^2.0.3" 521 | readable-stream "^2.2.2" 522 | typedarray "^0.0.6" 523 | 524 | content-type-parser@^1.0.1: 525 | version "1.0.1" 526 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 527 | 528 | convert-source-map@^1.1.0, convert-source-map@^1.4.0: 529 | version "1.5.0" 530 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 531 | 532 | core-js@^2.4.0: 533 | version "2.4.1" 534 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 535 | 536 | core-util-is@~1.0.0: 537 | version "1.0.2" 538 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 539 | 540 | cross-spawn@^5.0.1: 541 | version "5.1.0" 542 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 543 | dependencies: 544 | lru-cache "^4.0.1" 545 | shebang-command "^1.2.0" 546 | which "^1.2.9" 547 | 548 | cryptiles@2.x.x: 549 | version "2.0.5" 550 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 551 | dependencies: 552 | boom "2.x.x" 553 | 554 | css-font-size-keywords@^1.0.0: 555 | version "1.0.0" 556 | resolved "https://registry.yarnpkg.com/css-font-size-keywords/-/css-font-size-keywords-1.0.0.tgz#854875ace9aca6a8d2ee0d345a44aae9bb6db6cb" 557 | 558 | css-font-stretch-keywords@^1.0.1: 559 | version "1.0.1" 560 | resolved "https://registry.yarnpkg.com/css-font-stretch-keywords/-/css-font-stretch-keywords-1.0.1.tgz#50cee9b9ba031fb5c952d4723139f1e107b54b10" 561 | 562 | css-font-style-keywords@^1.0.1: 563 | version "1.0.1" 564 | resolved "https://registry.yarnpkg.com/css-font-style-keywords/-/css-font-style-keywords-1.0.1.tgz#5c3532813f63b4a1de954d13cea86ab4333409e4" 565 | 566 | css-font-weight-keywords@^1.0.0: 567 | version "1.0.0" 568 | resolved "https://registry.yarnpkg.com/css-font-weight-keywords/-/css-font-weight-keywords-1.0.0.tgz#9bc04671ac85bc724b574ef5d3ac96b0d604fd97" 569 | 570 | css-global-keywords@^1.0.1: 571 | version "1.0.1" 572 | resolved "https://registry.yarnpkg.com/css-global-keywords/-/css-global-keywords-1.0.1.tgz#72a9aea72796d019b1d2a3252de4e5aaa37e4a69" 573 | 574 | css-list-helpers@^1.0.1: 575 | version "1.0.1" 576 | resolved "https://registry.yarnpkg.com/css-list-helpers/-/css-list-helpers-1.0.1.tgz#fff57192202db83240c41686f919e449a7024f7d" 577 | dependencies: 578 | tcomb "^2.5.0" 579 | 580 | css-system-font-keywords@^1.0.0: 581 | version "1.0.0" 582 | resolved "https://registry.yarnpkg.com/css-system-font-keywords/-/css-system-font-keywords-1.0.0.tgz#85c6f086aba4eb32c571a3086affc434b84823ed" 583 | 584 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 585 | version "0.3.2" 586 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 587 | 588 | "cssstyle@>= 0.2.37 < 0.3.0": 589 | version "0.2.37" 590 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 591 | dependencies: 592 | cssom "0.3.x" 593 | 594 | dashdash@^1.12.0: 595 | version "1.14.1" 596 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 597 | dependencies: 598 | assert-plus "^1.0.0" 599 | 600 | debug@^2.1.1, debug@^2.2.0, debug@^2.6.3, debug@^2.6.8: 601 | version "2.6.8" 602 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 603 | dependencies: 604 | ms "2.0.0" 605 | 606 | decamelize@^1.0.0, decamelize@^1.1.1: 607 | version "1.2.0" 608 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 609 | 610 | deep-is@~0.1.3: 611 | version "0.1.3" 612 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 613 | 614 | default-require-extensions@^1.0.0: 615 | version "1.0.0" 616 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 617 | dependencies: 618 | strip-bom "^2.0.0" 619 | 620 | define-properties@^1.1.2: 621 | version "1.1.2" 622 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 623 | dependencies: 624 | foreach "^2.0.5" 625 | object-keys "^1.0.8" 626 | 627 | del@^2.0.2: 628 | version "2.2.2" 629 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 630 | dependencies: 631 | globby "^5.0.0" 632 | is-path-cwd "^1.0.0" 633 | is-path-in-cwd "^1.0.0" 634 | object-assign "^4.0.1" 635 | pify "^2.0.0" 636 | pinkie-promise "^2.0.0" 637 | rimraf "^2.2.8" 638 | 639 | delayed-stream@~1.0.0: 640 | version "1.0.0" 641 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 642 | 643 | detect-indent@^4.0.0: 644 | version "4.0.0" 645 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 646 | dependencies: 647 | repeating "^2.0.0" 648 | 649 | diff@^3.2.0: 650 | version "3.2.0" 651 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 652 | 653 | doctrine@^2.0.0: 654 | version "2.0.0" 655 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 656 | dependencies: 657 | esutils "^2.0.2" 658 | isarray "^1.0.0" 659 | 660 | duplexer@~0.1.1: 661 | version "0.1.1" 662 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 663 | 664 | ecc-jsbn@~0.1.1: 665 | version "0.1.1" 666 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 667 | dependencies: 668 | jsbn "~0.1.0" 669 | 670 | "errno@>=0.1.1 <0.2.0-0": 671 | version "0.1.4" 672 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 673 | dependencies: 674 | prr "~0.0.0" 675 | 676 | error-ex@^1.2.0: 677 | version "1.3.1" 678 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 679 | dependencies: 680 | is-arrayish "^0.2.1" 681 | 682 | es-abstract@^1.4.3: 683 | version "1.7.0" 684 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.7.0.tgz#dfade774e01bfcd97f96180298c449c8623fb94c" 685 | dependencies: 686 | es-to-primitive "^1.1.1" 687 | function-bind "^1.1.0" 688 | is-callable "^1.1.3" 689 | is-regex "^1.0.3" 690 | 691 | es-to-primitive@^1.1.1: 692 | version "1.1.1" 693 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 694 | dependencies: 695 | is-callable "^1.1.1" 696 | is-date-object "^1.0.1" 697 | is-symbol "^1.0.1" 698 | 699 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 700 | version "1.0.5" 701 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 702 | 703 | escodegen@^1.6.1: 704 | version "1.8.1" 705 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 706 | dependencies: 707 | esprima "^2.7.1" 708 | estraverse "^1.9.1" 709 | esutils "^2.0.2" 710 | optionator "^0.8.1" 711 | optionalDependencies: 712 | source-map "~0.2.0" 713 | 714 | eslint-config-cheminfo@^1.6.0: 715 | version "1.8.0" 716 | resolved "https://registry.yarnpkg.com/eslint-config-cheminfo/-/eslint-config-cheminfo-1.8.0.tgz#7f5c15889c240425643a8f8159c881937b2cdd82" 717 | 718 | eslint-plugin-no-only-tests@^2.0.0: 719 | version "2.0.0" 720 | resolved "https://registry.yarnpkg.com/eslint-plugin-no-only-tests/-/eslint-plugin-no-only-tests-2.0.0.tgz#c76c29e973bb76f24c14e20fa87f1ff1f0c18d5f" 721 | 722 | eslint-scope@^3.7.1: 723 | version "3.7.1" 724 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 725 | dependencies: 726 | esrecurse "^4.1.0" 727 | estraverse "^4.1.1" 728 | 729 | eslint@^4.1.1: 730 | version "4.1.1" 731 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.1.1.tgz#facbdfcfe3e0facd3a8b80dc98c4e6c13ae582df" 732 | dependencies: 733 | babel-code-frame "^6.22.0" 734 | chalk "^1.1.3" 735 | concat-stream "^1.6.0" 736 | debug "^2.6.8" 737 | doctrine "^2.0.0" 738 | eslint-scope "^3.7.1" 739 | espree "^3.4.3" 740 | esquery "^1.0.0" 741 | estraverse "^4.2.0" 742 | esutils "^2.0.2" 743 | file-entry-cache "^2.0.0" 744 | glob "^7.1.2" 745 | globals "^9.17.0" 746 | ignore "^3.3.3" 747 | imurmurhash "^0.1.4" 748 | inquirer "^3.0.6" 749 | is-my-json-valid "^2.16.0" 750 | is-resolvable "^1.0.0" 751 | js-yaml "^3.8.4" 752 | json-stable-stringify "^1.0.1" 753 | levn "^0.3.0" 754 | lodash "^4.17.4" 755 | minimatch "^3.0.2" 756 | mkdirp "^0.5.1" 757 | natural-compare "^1.4.0" 758 | optionator "^0.8.2" 759 | path-is-inside "^1.0.2" 760 | pluralize "^4.0.0" 761 | progress "^2.0.0" 762 | require-uncached "^1.0.3" 763 | strip-json-comments "~2.0.1" 764 | table "^4.0.1" 765 | text-table "~0.2.0" 766 | 767 | espree@^3.4.3: 768 | version "3.4.3" 769 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.3.tgz#2910b5ccd49ce893c2ffffaab4fd8b3a31b82374" 770 | dependencies: 771 | acorn "^5.0.1" 772 | acorn-jsx "^3.0.0" 773 | 774 | esprima@^2.7.1: 775 | version "2.7.3" 776 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 777 | 778 | esprima@^3.1.1: 779 | version "3.1.3" 780 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 781 | 782 | esquery@^1.0.0: 783 | version "1.0.0" 784 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 785 | dependencies: 786 | estraverse "^4.0.0" 787 | 788 | esrecurse@^4.1.0: 789 | version "4.2.0" 790 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 791 | dependencies: 792 | estraverse "^4.1.0" 793 | object-assign "^4.0.1" 794 | 795 | estraverse@^1.9.1: 796 | version "1.9.3" 797 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 798 | 799 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: 800 | version "4.2.0" 801 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 802 | 803 | esutils@^2.0.2: 804 | version "2.0.2" 805 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 806 | 807 | event-stream@~3.3.0: 808 | version "3.3.4" 809 | resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" 810 | dependencies: 811 | duplexer "~0.1.1" 812 | from "~0" 813 | map-stream "~0.1.0" 814 | pause-stream "0.0.11" 815 | split "0.3" 816 | stream-combiner "~0.0.4" 817 | through "~2.3.1" 818 | 819 | exec-sh@^0.2.0: 820 | version "0.2.0" 821 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 822 | dependencies: 823 | merge "^1.1.3" 824 | 825 | expand-brackets@^0.1.4: 826 | version "0.1.5" 827 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 828 | dependencies: 829 | is-posix-bracket "^0.1.0" 830 | 831 | expand-range@^1.8.1: 832 | version "1.8.2" 833 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 834 | dependencies: 835 | fill-range "^2.1.0" 836 | 837 | extend@^3.0.0, extend@~3.0.0: 838 | version "3.0.1" 839 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 840 | 841 | external-editor@^2.0.4: 842 | version "2.0.4" 843 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.4.tgz#1ed9199da9cbfe2ef2f7a31b2fde8b0d12368972" 844 | dependencies: 845 | iconv-lite "^0.4.17" 846 | jschardet "^1.4.2" 847 | tmp "^0.0.31" 848 | 849 | extglob@^0.3.1: 850 | version "0.3.2" 851 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 852 | dependencies: 853 | is-extglob "^1.0.0" 854 | 855 | extsprintf@1.0.2: 856 | version "1.0.2" 857 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 858 | 859 | fast-bmp@^1.0.0: 860 | version "1.0.0" 861 | resolved "https://registry.yarnpkg.com/fast-bmp/-/fast-bmp-1.0.0.tgz#7de95f42c290484090ae2c70ab25440673acca37" 862 | dependencies: 863 | iobuffer "^3.1.0" 864 | 865 | fast-jpeg@^1.0.1: 866 | version "1.0.1" 867 | resolved "https://registry.yarnpkg.com/fast-jpeg/-/fast-jpeg-1.0.1.tgz#bd545ec6cd82430ca5ded4bd30bbd061fafecf8b" 868 | dependencies: 869 | iobuffer "^2.1.0" 870 | tiff "^2.0.0" 871 | 872 | fast-levenshtein@~2.0.4: 873 | version "2.0.6" 874 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 875 | 876 | fast-list@^1.0.3: 877 | version "1.0.3" 878 | resolved "https://registry.yarnpkg.com/fast-list/-/fast-list-1.0.3.tgz#f5d5754a7c1cbf682a15961ef9a063897571eaa1" 879 | 880 | fast-png@^1.1.0: 881 | version "1.1.0" 882 | resolved "https://registry.yarnpkg.com/fast-png/-/fast-png-1.1.0.tgz#f1c34d4e93a31201ca2eb6d83b6a8d9605bffbc3" 883 | dependencies: 884 | iobuffer "^2.0.0" 885 | pako "^1.0.0" 886 | 887 | fb-watchman@^1.8.0: 888 | version "1.9.2" 889 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 890 | dependencies: 891 | bser "1.0.2" 892 | 893 | fb-watchman@^2.0.0: 894 | version "2.0.0" 895 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 896 | dependencies: 897 | bser "^2.0.0" 898 | 899 | fft.js@^4.0.3: 900 | version "4.0.3" 901 | resolved "https://registry.yarnpkg.com/fft.js/-/fft.js-4.0.3.tgz#b0084efa94188febdd1cffe68691f4c85a0fb8cb" 902 | 903 | figures@^2.0.0: 904 | version "2.0.0" 905 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 906 | dependencies: 907 | escape-string-regexp "^1.0.5" 908 | 909 | file-entry-cache@^2.0.0: 910 | version "2.0.0" 911 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 912 | dependencies: 913 | flat-cache "^1.2.1" 914 | object-assign "^4.0.1" 915 | 916 | file-type@^4.1.0: 917 | version "4.4.0" 918 | resolved "https://registry.yarnpkg.com/file-type/-/file-type-4.4.0.tgz#1b600e5fca1fbdc6e80c0a70c71c8dba5f7906c5" 919 | 920 | filename-regex@^2.0.0: 921 | version "2.0.1" 922 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 923 | 924 | fileset@^2.0.2: 925 | version "2.0.3" 926 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 927 | dependencies: 928 | glob "^7.0.3" 929 | minimatch "^3.0.3" 930 | 931 | fill-range@^2.1.0: 932 | version "2.2.3" 933 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 934 | dependencies: 935 | is-number "^2.1.0" 936 | isobject "^2.0.0" 937 | randomatic "^1.1.3" 938 | repeat-element "^1.1.2" 939 | repeat-string "^1.5.2" 940 | 941 | find-up@^1.0.0: 942 | version "1.1.2" 943 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 944 | dependencies: 945 | path-exists "^2.0.0" 946 | pinkie-promise "^2.0.0" 947 | 948 | find-up@^2.1.0: 949 | version "2.1.0" 950 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 951 | dependencies: 952 | locate-path "^2.0.0" 953 | 954 | flat-cache@^1.2.1: 955 | version "1.2.2" 956 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 957 | dependencies: 958 | circular-json "^0.3.1" 959 | del "^2.0.2" 960 | graceful-fs "^4.1.2" 961 | write "^0.2.1" 962 | 963 | for-in@^1.0.1: 964 | version "1.0.2" 965 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 966 | 967 | for-own@^0.1.4: 968 | version "0.1.5" 969 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 970 | dependencies: 971 | for-in "^1.0.1" 972 | 973 | foreach@^2.0.5: 974 | version "2.0.5" 975 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 976 | 977 | forever-agent@~0.6.1: 978 | version "0.6.1" 979 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 980 | 981 | form-data@~2.1.1: 982 | version "2.1.4" 983 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 984 | dependencies: 985 | asynckit "^0.4.0" 986 | combined-stream "^1.0.5" 987 | mime-types "^2.1.12" 988 | 989 | from@~0: 990 | version "0.1.7" 991 | resolved "https://registry.yarnpkg.com/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" 992 | 993 | fs.realpath@^1.0.0: 994 | version "1.0.0" 995 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 996 | 997 | function-bind@^1.0.2, function-bind@^1.1.0: 998 | version "1.1.0" 999 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1000 | 1001 | generate-function@^2.0.0: 1002 | version "2.0.0" 1003 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1004 | 1005 | generate-object-property@^1.1.0: 1006 | version "1.2.0" 1007 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1008 | dependencies: 1009 | is-property "^1.0.0" 1010 | 1011 | get-caller-file@^1.0.1: 1012 | version "1.0.2" 1013 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1014 | 1015 | getpass@^0.1.1: 1016 | version "0.1.7" 1017 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1018 | dependencies: 1019 | assert-plus "^1.0.0" 1020 | 1021 | glob-base@^0.3.0: 1022 | version "0.3.0" 1023 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1024 | dependencies: 1025 | glob-parent "^2.0.0" 1026 | is-glob "^2.0.0" 1027 | 1028 | glob-parent@^2.0.0: 1029 | version "2.0.0" 1030 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1031 | dependencies: 1032 | is-glob "^2.0.0" 1033 | 1034 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: 1035 | version "7.1.2" 1036 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1037 | dependencies: 1038 | fs.realpath "^1.0.0" 1039 | inflight "^1.0.4" 1040 | inherits "2" 1041 | minimatch "^3.0.4" 1042 | once "^1.3.0" 1043 | path-is-absolute "^1.0.0" 1044 | 1045 | globals@^9.0.0, globals@^9.17.0: 1046 | version "9.18.0" 1047 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1048 | 1049 | globby@^5.0.0: 1050 | version "5.0.0" 1051 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1052 | dependencies: 1053 | array-union "^1.0.1" 1054 | arrify "^1.0.0" 1055 | glob "^7.0.3" 1056 | object-assign "^4.0.1" 1057 | pify "^2.0.0" 1058 | pinkie-promise "^2.0.0" 1059 | 1060 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 1061 | version "4.1.11" 1062 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1063 | 1064 | growly@^1.3.0: 1065 | version "1.3.0" 1066 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1067 | 1068 | handlebars@^4.0.3: 1069 | version "4.0.10" 1070 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" 1071 | dependencies: 1072 | async "^1.4.0" 1073 | optimist "^0.6.1" 1074 | source-map "^0.4.4" 1075 | optionalDependencies: 1076 | uglify-js "^2.6" 1077 | 1078 | har-schema@^1.0.5: 1079 | version "1.0.5" 1080 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1081 | 1082 | har-validator@~4.2.1: 1083 | version "4.2.1" 1084 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1085 | dependencies: 1086 | ajv "^4.9.1" 1087 | har-schema "^1.0.5" 1088 | 1089 | has-ansi@^2.0.0: 1090 | version "2.0.0" 1091 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1092 | dependencies: 1093 | ansi-regex "^2.0.0" 1094 | 1095 | has-flag@^1.0.0: 1096 | version "1.0.0" 1097 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1098 | 1099 | has-own@^1.0.0: 1100 | version "1.0.0" 1101 | resolved "https://registry.yarnpkg.com/has-own/-/has-own-1.0.0.tgz#3062246e31cfd887a9a61ee6d38ca57289378cd1" 1102 | 1103 | has@^1.0.1: 1104 | version "1.0.1" 1105 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1106 | dependencies: 1107 | function-bind "^1.0.2" 1108 | 1109 | hawk@~3.1.3: 1110 | version "3.1.3" 1111 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1112 | dependencies: 1113 | boom "2.x.x" 1114 | cryptiles "2.x.x" 1115 | hoek "2.x.x" 1116 | sntp "1.x.x" 1117 | 1118 | hoek@2.x.x: 1119 | version "2.16.3" 1120 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1121 | 1122 | home-or-tmp@^2.0.0: 1123 | version "2.0.0" 1124 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1125 | dependencies: 1126 | os-homedir "^1.0.0" 1127 | os-tmpdir "^1.0.1" 1128 | 1129 | hosted-git-info@^2.1.4: 1130 | version "2.5.0" 1131 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1132 | 1133 | html-encoding-sniffer@^1.0.1: 1134 | version "1.0.1" 1135 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 1136 | dependencies: 1137 | whatwg-encoding "^1.0.1" 1138 | 1139 | http-signature@~1.1.0: 1140 | version "1.1.1" 1141 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1142 | dependencies: 1143 | assert-plus "^0.2.0" 1144 | jsprim "^1.2.2" 1145 | sshpk "^1.7.0" 1146 | 1147 | iconv-lite@0.4.13: 1148 | version "0.4.13" 1149 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1150 | 1151 | iconv-lite@^0.4.17: 1152 | version "0.4.18" 1153 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.18.tgz#23d8656b16aae6742ac29732ea8f0336a4789cf2" 1154 | 1155 | ignore@^3.3.3: 1156 | version "3.3.3" 1157 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.3.tgz#432352e57accd87ab3110e82d3fea0e47812156d" 1158 | 1159 | image-js@^0.11.4: 1160 | version "0.11.4" 1161 | resolved "https://registry.yarnpkg.com/image-js/-/image-js-0.11.4.tgz#a23e208d7bdfb86891e5579f694580a147da3ea1" 1162 | dependencies: 1163 | blob-util "^1.2.1" 1164 | color-functions "^1.1.0" 1165 | extend "^3.0.0" 1166 | fast-bmp "^1.0.0" 1167 | fast-jpeg "^1.0.1" 1168 | fast-list "^1.0.3" 1169 | fast-png "^1.1.0" 1170 | has-own "^1.0.0" 1171 | image-type "^3.0.0" 1172 | is-array-type "^1.0.0" 1173 | is-integer "^1.0.6" 1174 | js-priority-queue "^0.1.5" 1175 | ml-convolution "^0.2.0" 1176 | ml-disjoint-set "^1.0.0" 1177 | ml-matrix "3.0.0" 1178 | ml-matrix-convolution "0.4.3" 1179 | ml-regression "^4.0.0" 1180 | monotone-chain-convex-hull "^1.0.0" 1181 | new-array "^1.0.0" 1182 | num-sort "^1.0.0" 1183 | robust-point-in-polygon "^1.0.3" 1184 | tiff "^2.1.0" 1185 | web-worker-manager "^0.2.0" 1186 | optionalDependencies: 1187 | canvas "^1.6.0" 1188 | 1189 | image-type@^3.0.0: 1190 | version "3.0.0" 1191 | resolved "https://registry.yarnpkg.com/image-type/-/image-type-3.0.0.tgz#1502af3135f906e122c877c31e94af7b7a9146c5" 1192 | dependencies: 1193 | file-type "^4.1.0" 1194 | 1195 | immediate@~3.0.5: 1196 | version "3.0.6" 1197 | resolved "https://registry.yarnpkg.com/immediate/-/immediate-3.0.6.tgz#9db1dbd0faf8de6fbe0f5dd5e56bb606280de69b" 1198 | 1199 | imurmurhash@^0.1.4: 1200 | version "0.1.4" 1201 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1202 | 1203 | inflight@^1.0.4: 1204 | version "1.0.6" 1205 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1206 | dependencies: 1207 | once "^1.3.0" 1208 | wrappy "1" 1209 | 1210 | inherits@2, inherits@^2.0.3, inherits@~2.0.3: 1211 | version "2.0.3" 1212 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1213 | 1214 | inquirer@^3.0.6: 1215 | version "3.1.1" 1216 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.1.1.tgz#87621c4fba4072f48a8dd71c9f9df6f100b2d534" 1217 | dependencies: 1218 | ansi-escapes "^2.0.0" 1219 | chalk "^1.0.0" 1220 | cli-cursor "^2.1.0" 1221 | cli-width "^2.0.0" 1222 | external-editor "^2.0.4" 1223 | figures "^2.0.0" 1224 | lodash "^4.3.0" 1225 | mute-stream "0.0.7" 1226 | run-async "^2.2.0" 1227 | rx-lite "^4.0.8" 1228 | rx-lite-aggregates "^4.0.8" 1229 | string-width "^2.0.0" 1230 | strip-ansi "^3.0.0" 1231 | through "^2.3.6" 1232 | 1233 | invariant@^2.2.0: 1234 | version "2.2.2" 1235 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1236 | dependencies: 1237 | loose-envify "^1.0.0" 1238 | 1239 | invert-kv@^1.0.0: 1240 | version "1.0.0" 1241 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1242 | 1243 | iobuffer@^2.0.0, iobuffer@^2.1.0: 1244 | version "2.1.0" 1245 | resolved "https://registry.yarnpkg.com/iobuffer/-/iobuffer-2.1.0.tgz#074882d24020a85db6a5042a0418ef9b6b2e616a" 1246 | 1247 | iobuffer@^3.1.0: 1248 | version "3.2.0" 1249 | resolved "https://registry.yarnpkg.com/iobuffer/-/iobuffer-3.2.0.tgz#9234f4d2cb1042818704f07d1f5c833f41327e26" 1250 | dependencies: 1251 | utf8 "^2.1.2" 1252 | 1253 | is-array-type@^1.0.0: 1254 | version "1.0.0" 1255 | resolved "https://registry.yarnpkg.com/is-array-type/-/is-array-type-1.0.0.tgz#0bd8a263430319c8fa32fa7af260140f4762b506" 1256 | 1257 | is-arrayish@^0.2.1: 1258 | version "0.2.1" 1259 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1260 | 1261 | is-buffer@^1.1.5: 1262 | version "1.1.5" 1263 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1264 | 1265 | is-builtin-module@^1.0.0: 1266 | version "1.0.0" 1267 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1268 | dependencies: 1269 | builtin-modules "^1.0.0" 1270 | 1271 | is-callable@^1.1.1, is-callable@^1.1.3: 1272 | version "1.1.3" 1273 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1274 | 1275 | is-ci@^1.0.10: 1276 | version "1.0.10" 1277 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1278 | dependencies: 1279 | ci-info "^1.0.0" 1280 | 1281 | is-date-object@^1.0.1: 1282 | version "1.0.1" 1283 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1284 | 1285 | is-dotfile@^1.0.0: 1286 | version "1.0.3" 1287 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1288 | 1289 | is-equal-shallow@^0.1.3: 1290 | version "0.1.3" 1291 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1292 | dependencies: 1293 | is-primitive "^2.0.0" 1294 | 1295 | is-extendable@^0.1.1: 1296 | version "0.1.1" 1297 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1298 | 1299 | is-extglob@^1.0.0: 1300 | version "1.0.0" 1301 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1302 | 1303 | is-finite@^1.0.0: 1304 | version "1.0.2" 1305 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1306 | dependencies: 1307 | number-is-nan "^1.0.0" 1308 | 1309 | is-fullwidth-code-point@^1.0.0: 1310 | version "1.0.0" 1311 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1312 | dependencies: 1313 | number-is-nan "^1.0.0" 1314 | 1315 | is-fullwidth-code-point@^2.0.0: 1316 | version "2.0.0" 1317 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1318 | 1319 | is-glob@^2.0.0, is-glob@^2.0.1: 1320 | version "2.0.1" 1321 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1322 | dependencies: 1323 | is-extglob "^1.0.0" 1324 | 1325 | is-integer@^1.0.6: 1326 | version "1.0.7" 1327 | resolved "https://registry.yarnpkg.com/is-integer/-/is-integer-1.0.7.tgz#6bde81aacddf78b659b6629d629cadc51a886d5c" 1328 | dependencies: 1329 | is-finite "^1.0.0" 1330 | 1331 | is-my-json-valid@^2.16.0: 1332 | version "2.16.0" 1333 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" 1334 | dependencies: 1335 | generate-function "^2.0.0" 1336 | generate-object-property "^1.1.0" 1337 | jsonpointer "^4.0.0" 1338 | xtend "^4.0.0" 1339 | 1340 | is-number@^2.1.0: 1341 | version "2.1.0" 1342 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1343 | dependencies: 1344 | kind-of "^3.0.2" 1345 | 1346 | is-number@^3.0.0: 1347 | version "3.0.0" 1348 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1349 | dependencies: 1350 | kind-of "^3.0.2" 1351 | 1352 | is-path-cwd@^1.0.0: 1353 | version "1.0.0" 1354 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1355 | 1356 | is-path-in-cwd@^1.0.0: 1357 | version "1.0.0" 1358 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1359 | dependencies: 1360 | is-path-inside "^1.0.0" 1361 | 1362 | is-path-inside@^1.0.0: 1363 | version "1.0.0" 1364 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1365 | dependencies: 1366 | path-is-inside "^1.0.1" 1367 | 1368 | is-posix-bracket@^0.1.0: 1369 | version "0.1.1" 1370 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1371 | 1372 | is-primitive@^2.0.0: 1373 | version "2.0.0" 1374 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1375 | 1376 | is-promise@^2.1.0: 1377 | version "2.1.0" 1378 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1379 | 1380 | is-property@^1.0.0: 1381 | version "1.0.2" 1382 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1383 | 1384 | is-regex@^1.0.3: 1385 | version "1.0.4" 1386 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 1387 | dependencies: 1388 | has "^1.0.1" 1389 | 1390 | is-resolvable@^1.0.0: 1391 | version "1.0.0" 1392 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 1393 | dependencies: 1394 | tryit "^1.0.1" 1395 | 1396 | is-symbol@^1.0.1: 1397 | version "1.0.1" 1398 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 1399 | 1400 | is-typedarray@~1.0.0: 1401 | version "1.0.0" 1402 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1403 | 1404 | is-utf8@^0.2.0: 1405 | version "0.2.1" 1406 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1407 | 1408 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1409 | version "1.0.0" 1410 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1411 | 1412 | isexe@^2.0.0: 1413 | version "2.0.0" 1414 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1415 | 1416 | isnumeric@^0.2.0: 1417 | version "0.2.0" 1418 | resolved "https://registry.yarnpkg.com/isnumeric/-/isnumeric-0.2.0.tgz#a2347ba360de19e33d0ffd590fddf7755cbf2e64" 1419 | 1420 | isobject@^2.0.0: 1421 | version "2.1.0" 1422 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1423 | dependencies: 1424 | isarray "1.0.0" 1425 | 1426 | isstream@~0.1.2: 1427 | version "0.1.2" 1428 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1429 | 1430 | istanbul-api@^1.1.1: 1431 | version "1.1.10" 1432 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.10.tgz#f27e5e7125c8de13f6a80661af78f512e5439b2b" 1433 | dependencies: 1434 | async "^2.1.4" 1435 | fileset "^2.0.2" 1436 | istanbul-lib-coverage "^1.1.1" 1437 | istanbul-lib-hook "^1.0.7" 1438 | istanbul-lib-instrument "^1.7.3" 1439 | istanbul-lib-report "^1.1.1" 1440 | istanbul-lib-source-maps "^1.2.1" 1441 | istanbul-reports "^1.1.1" 1442 | js-yaml "^3.7.0" 1443 | mkdirp "^0.5.1" 1444 | once "^1.4.0" 1445 | 1446 | istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.1: 1447 | version "1.1.1" 1448 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 1449 | 1450 | istanbul-lib-hook@^1.0.7: 1451 | version "1.0.7" 1452 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.7.tgz#dd6607f03076578fe7d6f2a630cf143b49bacddc" 1453 | dependencies: 1454 | append-transform "^0.4.0" 1455 | 1456 | istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.2, istanbul-lib-instrument@^1.7.3: 1457 | version "1.7.3" 1458 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.3.tgz#925b239163eabdd68cc4048f52c2fa4f899ecfa7" 1459 | dependencies: 1460 | babel-generator "^6.18.0" 1461 | babel-template "^6.16.0" 1462 | babel-traverse "^6.18.0" 1463 | babel-types "^6.18.0" 1464 | babylon "^6.17.4" 1465 | istanbul-lib-coverage "^1.1.1" 1466 | semver "^5.3.0" 1467 | 1468 | istanbul-lib-report@^1.1.1: 1469 | version "1.1.1" 1470 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#f0e55f56655ffa34222080b7a0cd4760e1405fc9" 1471 | dependencies: 1472 | istanbul-lib-coverage "^1.1.1" 1473 | mkdirp "^0.5.1" 1474 | path-parse "^1.0.5" 1475 | supports-color "^3.1.2" 1476 | 1477 | istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.1: 1478 | version "1.2.1" 1479 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.1.tgz#a6fe1acba8ce08eebc638e572e294d267008aa0c" 1480 | dependencies: 1481 | debug "^2.6.3" 1482 | istanbul-lib-coverage "^1.1.1" 1483 | mkdirp "^0.5.1" 1484 | rimraf "^2.6.1" 1485 | source-map "^0.5.3" 1486 | 1487 | istanbul-reports@^1.1.1: 1488 | version "1.1.1" 1489 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.1.tgz#042be5c89e175bc3f86523caab29c014e77fee4e" 1490 | dependencies: 1491 | handlebars "^4.0.3" 1492 | 1493 | jest-changed-files@^20.0.3: 1494 | version "20.0.3" 1495 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-20.0.3.tgz#9394d5cc65c438406149bef1bf4d52b68e03e3f8" 1496 | 1497 | jest-cli@^20.0.4: 1498 | version "20.0.4" 1499 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-20.0.4.tgz#e532b19d88ae5bc6c417e8b0593a6fe954b1dc93" 1500 | dependencies: 1501 | ansi-escapes "^1.4.0" 1502 | callsites "^2.0.0" 1503 | chalk "^1.1.3" 1504 | graceful-fs "^4.1.11" 1505 | is-ci "^1.0.10" 1506 | istanbul-api "^1.1.1" 1507 | istanbul-lib-coverage "^1.0.1" 1508 | istanbul-lib-instrument "^1.4.2" 1509 | istanbul-lib-source-maps "^1.1.0" 1510 | jest-changed-files "^20.0.3" 1511 | jest-config "^20.0.4" 1512 | jest-docblock "^20.0.3" 1513 | jest-environment-jsdom "^20.0.3" 1514 | jest-haste-map "^20.0.4" 1515 | jest-jasmine2 "^20.0.4" 1516 | jest-message-util "^20.0.3" 1517 | jest-regex-util "^20.0.3" 1518 | jest-resolve-dependencies "^20.0.3" 1519 | jest-runtime "^20.0.4" 1520 | jest-snapshot "^20.0.3" 1521 | jest-util "^20.0.3" 1522 | micromatch "^2.3.11" 1523 | node-notifier "^5.0.2" 1524 | pify "^2.3.0" 1525 | slash "^1.0.0" 1526 | string-length "^1.0.1" 1527 | throat "^3.0.0" 1528 | which "^1.2.12" 1529 | worker-farm "^1.3.1" 1530 | yargs "^7.0.2" 1531 | 1532 | jest-config@^20.0.4: 1533 | version "20.0.4" 1534 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-20.0.4.tgz#e37930ab2217c913605eff13e7bd763ec48faeea" 1535 | dependencies: 1536 | chalk "^1.1.3" 1537 | glob "^7.1.1" 1538 | jest-environment-jsdom "^20.0.3" 1539 | jest-environment-node "^20.0.3" 1540 | jest-jasmine2 "^20.0.4" 1541 | jest-matcher-utils "^20.0.3" 1542 | jest-regex-util "^20.0.3" 1543 | jest-resolve "^20.0.4" 1544 | jest-validate "^20.0.3" 1545 | pretty-format "^20.0.3" 1546 | 1547 | jest-diff@^20.0.3: 1548 | version "20.0.3" 1549 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-20.0.3.tgz#81f288fd9e675f0fb23c75f1c2b19445fe586617" 1550 | dependencies: 1551 | chalk "^1.1.3" 1552 | diff "^3.2.0" 1553 | jest-matcher-utils "^20.0.3" 1554 | pretty-format "^20.0.3" 1555 | 1556 | jest-docblock@^20.0.3: 1557 | version "20.0.3" 1558 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-20.0.3.tgz#17bea984342cc33d83c50fbe1545ea0efaa44712" 1559 | 1560 | jest-environment-jsdom@^20.0.3: 1561 | version "20.0.3" 1562 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-20.0.3.tgz#048a8ac12ee225f7190417713834bb999787de99" 1563 | dependencies: 1564 | jest-mock "^20.0.3" 1565 | jest-util "^20.0.3" 1566 | jsdom "^9.12.0" 1567 | 1568 | jest-environment-node@^20.0.3: 1569 | version "20.0.3" 1570 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-20.0.3.tgz#d488bc4612af2c246e986e8ae7671a099163d403" 1571 | dependencies: 1572 | jest-mock "^20.0.3" 1573 | jest-util "^20.0.3" 1574 | 1575 | jest-haste-map@^20.0.4: 1576 | version "20.0.4" 1577 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-20.0.4.tgz#653eb55c889ce3c021f7b94693f20a4159badf03" 1578 | dependencies: 1579 | fb-watchman "^2.0.0" 1580 | graceful-fs "^4.1.11" 1581 | jest-docblock "^20.0.3" 1582 | micromatch "^2.3.11" 1583 | sane "~1.6.0" 1584 | worker-farm "^1.3.1" 1585 | 1586 | jest-jasmine2@^20.0.4: 1587 | version "20.0.4" 1588 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-20.0.4.tgz#fcc5b1411780d911d042902ef1859e852e60d5e1" 1589 | dependencies: 1590 | chalk "^1.1.3" 1591 | graceful-fs "^4.1.11" 1592 | jest-diff "^20.0.3" 1593 | jest-matcher-utils "^20.0.3" 1594 | jest-matchers "^20.0.3" 1595 | jest-message-util "^20.0.3" 1596 | jest-snapshot "^20.0.3" 1597 | once "^1.4.0" 1598 | p-map "^1.1.1" 1599 | 1600 | jest-matcher-utils@^20.0.3: 1601 | version "20.0.3" 1602 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-20.0.3.tgz#b3a6b8e37ca577803b0832a98b164f44b7815612" 1603 | dependencies: 1604 | chalk "^1.1.3" 1605 | pretty-format "^20.0.3" 1606 | 1607 | jest-matchers@^20.0.3: 1608 | version "20.0.3" 1609 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-20.0.3.tgz#ca69db1c32db5a6f707fa5e0401abb55700dfd60" 1610 | dependencies: 1611 | jest-diff "^20.0.3" 1612 | jest-matcher-utils "^20.0.3" 1613 | jest-message-util "^20.0.3" 1614 | jest-regex-util "^20.0.3" 1615 | 1616 | jest-message-util@^20.0.3: 1617 | version "20.0.3" 1618 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-20.0.3.tgz#6aec2844306fcb0e6e74d5796c1006d96fdd831c" 1619 | dependencies: 1620 | chalk "^1.1.3" 1621 | micromatch "^2.3.11" 1622 | slash "^1.0.0" 1623 | 1624 | jest-mock@^20.0.3: 1625 | version "20.0.3" 1626 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-20.0.3.tgz#8bc070e90414aa155c11a8d64c869a0d5c71da59" 1627 | 1628 | jest-regex-util@^20.0.3: 1629 | version "20.0.3" 1630 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-20.0.3.tgz#85bbab5d133e44625b19faf8c6aa5122d085d762" 1631 | 1632 | jest-resolve-dependencies@^20.0.3: 1633 | version "20.0.3" 1634 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-20.0.3.tgz#6e14a7b717af0f2cb3667c549de40af017b1723a" 1635 | dependencies: 1636 | jest-regex-util "^20.0.3" 1637 | 1638 | jest-resolve@^20.0.4: 1639 | version "20.0.4" 1640 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-20.0.4.tgz#9448b3e8b6bafc15479444c6499045b7ffe597a5" 1641 | dependencies: 1642 | browser-resolve "^1.11.2" 1643 | is-builtin-module "^1.0.0" 1644 | resolve "^1.3.2" 1645 | 1646 | jest-runtime@^20.0.4: 1647 | version "20.0.4" 1648 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-20.0.4.tgz#a2c802219c4203f754df1404e490186169d124d8" 1649 | dependencies: 1650 | babel-core "^6.0.0" 1651 | babel-jest "^20.0.3" 1652 | babel-plugin-istanbul "^4.0.0" 1653 | chalk "^1.1.3" 1654 | convert-source-map "^1.4.0" 1655 | graceful-fs "^4.1.11" 1656 | jest-config "^20.0.4" 1657 | jest-haste-map "^20.0.4" 1658 | jest-regex-util "^20.0.3" 1659 | jest-resolve "^20.0.4" 1660 | jest-util "^20.0.3" 1661 | json-stable-stringify "^1.0.1" 1662 | micromatch "^2.3.11" 1663 | strip-bom "3.0.0" 1664 | yargs "^7.0.2" 1665 | 1666 | jest-snapshot@^20.0.3: 1667 | version "20.0.3" 1668 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-20.0.3.tgz#5b847e1adb1a4d90852a7f9f125086e187c76566" 1669 | dependencies: 1670 | chalk "^1.1.3" 1671 | jest-diff "^20.0.3" 1672 | jest-matcher-utils "^20.0.3" 1673 | jest-util "^20.0.3" 1674 | natural-compare "^1.4.0" 1675 | pretty-format "^20.0.3" 1676 | 1677 | jest-util@^20.0.3: 1678 | version "20.0.3" 1679 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-20.0.3.tgz#0c07f7d80d82f4e5a67c6f8b9c3fe7f65cfd32ad" 1680 | dependencies: 1681 | chalk "^1.1.3" 1682 | graceful-fs "^4.1.11" 1683 | jest-message-util "^20.0.3" 1684 | jest-mock "^20.0.3" 1685 | jest-validate "^20.0.3" 1686 | leven "^2.1.0" 1687 | mkdirp "^0.5.1" 1688 | 1689 | jest-validate@^20.0.3: 1690 | version "20.0.3" 1691 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-20.0.3.tgz#d0cfd1de4f579f298484925c280f8f1d94ec3cab" 1692 | dependencies: 1693 | chalk "^1.1.3" 1694 | jest-matcher-utils "^20.0.3" 1695 | leven "^2.1.0" 1696 | pretty-format "^20.0.3" 1697 | 1698 | jest@^20.0.4: 1699 | version "20.0.4" 1700 | resolved "https://registry.yarnpkg.com/jest/-/jest-20.0.4.tgz#3dd260c2989d6dad678b1e9cc4d91944f6d602ac" 1701 | dependencies: 1702 | jest-cli "^20.0.4" 1703 | 1704 | js-priority-queue@^0.1.5: 1705 | version "0.1.5" 1706 | resolved "https://registry.yarnpkg.com/js-priority-queue/-/js-priority-queue-0.1.5.tgz#f71e9b2120c91e8a1ddab3b7d347dac01d81e837" 1707 | 1708 | js-tokens@^3.0.0: 1709 | version "3.0.1" 1710 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 1711 | 1712 | js-yaml@^3.7.0, js-yaml@^3.8.4: 1713 | version "3.8.4" 1714 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.4.tgz#520b4564f86573ba96662af85a8cafa7b4b5a6f6" 1715 | dependencies: 1716 | argparse "^1.0.7" 1717 | esprima "^3.1.1" 1718 | 1719 | jsbn@~0.1.0: 1720 | version "0.1.1" 1721 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1722 | 1723 | jschardet@^1.4.2: 1724 | version "1.4.2" 1725 | resolved "https://registry.yarnpkg.com/jschardet/-/jschardet-1.4.2.tgz#2aa107f142af4121d145659d44f50830961e699a" 1726 | 1727 | jsdom@^9.12.0: 1728 | version "9.12.0" 1729 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 1730 | dependencies: 1731 | abab "^1.0.3" 1732 | acorn "^4.0.4" 1733 | acorn-globals "^3.1.0" 1734 | array-equal "^1.0.0" 1735 | content-type-parser "^1.0.1" 1736 | cssom ">= 0.3.2 < 0.4.0" 1737 | cssstyle ">= 0.2.37 < 0.3.0" 1738 | escodegen "^1.6.1" 1739 | html-encoding-sniffer "^1.0.1" 1740 | nwmatcher ">= 1.3.9 < 2.0.0" 1741 | parse5 "^1.5.1" 1742 | request "^2.79.0" 1743 | sax "^1.2.1" 1744 | symbol-tree "^3.2.1" 1745 | tough-cookie "^2.3.2" 1746 | webidl-conversions "^4.0.0" 1747 | whatwg-encoding "^1.0.1" 1748 | whatwg-url "^4.3.0" 1749 | xml-name-validator "^2.0.1" 1750 | 1751 | jsesc@^1.3.0: 1752 | version "1.3.0" 1753 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1754 | 1755 | json-schema@0.2.3: 1756 | version "0.2.3" 1757 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1758 | 1759 | json-stable-stringify@^1.0.1: 1760 | version "1.0.1" 1761 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1762 | dependencies: 1763 | jsonify "~0.0.0" 1764 | 1765 | json-stringify-safe@~5.0.1: 1766 | version "5.0.1" 1767 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1768 | 1769 | json5@^0.5.0: 1770 | version "0.5.1" 1771 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1772 | 1773 | jsonify@~0.0.0: 1774 | version "0.0.0" 1775 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1776 | 1777 | jsonpointer@^4.0.0: 1778 | version "4.0.1" 1779 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 1780 | 1781 | jsprim@^1.2.2: 1782 | version "1.4.0" 1783 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 1784 | dependencies: 1785 | assert-plus "1.0.0" 1786 | extsprintf "1.0.2" 1787 | json-schema "0.2.3" 1788 | verror "1.3.6" 1789 | 1790 | kind-of@^3.0.2: 1791 | version "3.2.2" 1792 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1793 | dependencies: 1794 | is-buffer "^1.1.5" 1795 | 1796 | kind-of@^4.0.0: 1797 | version "4.0.0" 1798 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1799 | dependencies: 1800 | is-buffer "^1.1.5" 1801 | 1802 | lazy-cache@^1.0.3: 1803 | version "1.0.4" 1804 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1805 | 1806 | lcid@^1.0.0: 1807 | version "1.0.0" 1808 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1809 | dependencies: 1810 | invert-kv "^1.0.0" 1811 | 1812 | leven@^2.1.0: 1813 | version "2.1.0" 1814 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 1815 | 1816 | levn@^0.3.0, levn@~0.3.0: 1817 | version "0.3.0" 1818 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1819 | dependencies: 1820 | prelude-ls "~1.1.2" 1821 | type-check "~0.3.2" 1822 | 1823 | lie@*: 1824 | version "3.1.1" 1825 | resolved "https://registry.yarnpkg.com/lie/-/lie-3.1.1.tgz#9a436b2cc7746ca59de7a41fa469b3efb76bd87e" 1826 | dependencies: 1827 | immediate "~3.0.5" 1828 | 1829 | load-json-file@^1.0.0: 1830 | version "1.1.0" 1831 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1832 | dependencies: 1833 | graceful-fs "^4.1.2" 1834 | parse-json "^2.2.0" 1835 | pify "^2.0.0" 1836 | pinkie-promise "^2.0.0" 1837 | strip-bom "^2.0.0" 1838 | 1839 | load-json-file@^2.0.0: 1840 | version "2.0.0" 1841 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1842 | dependencies: 1843 | graceful-fs "^4.1.2" 1844 | parse-json "^2.2.0" 1845 | pify "^2.0.0" 1846 | strip-bom "^3.0.0" 1847 | 1848 | locate-path@^2.0.0: 1849 | version "2.0.0" 1850 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1851 | dependencies: 1852 | p-locate "^2.0.0" 1853 | path-exists "^3.0.0" 1854 | 1855 | lodash@^4.0.0, lodash@^4.14.0, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0: 1856 | version "4.17.4" 1857 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1858 | 1859 | longest@^1.0.1: 1860 | version "1.0.1" 1861 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1862 | 1863 | loose-envify@^1.0.0: 1864 | version "1.3.1" 1865 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1866 | dependencies: 1867 | js-tokens "^3.0.0" 1868 | 1869 | lru-cache@^4.0.1: 1870 | version "4.1.1" 1871 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 1872 | dependencies: 1873 | pseudomap "^1.0.2" 1874 | yallist "^2.1.2" 1875 | 1876 | makeerror@1.0.x: 1877 | version "1.0.11" 1878 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 1879 | dependencies: 1880 | tmpl "1.0.x" 1881 | 1882 | map-stream@~0.1.0: 1883 | version "0.1.0" 1884 | resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" 1885 | 1886 | merge@^1.1.3: 1887 | version "1.2.0" 1888 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 1889 | 1890 | micromatch@^2.1.5, micromatch@^2.3.11: 1891 | version "2.3.11" 1892 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1893 | dependencies: 1894 | arr-diff "^2.0.0" 1895 | array-unique "^0.2.1" 1896 | braces "^1.8.2" 1897 | expand-brackets "^0.1.4" 1898 | extglob "^0.3.1" 1899 | filename-regex "^2.0.0" 1900 | is-extglob "^1.0.0" 1901 | is-glob "^2.0.1" 1902 | kind-of "^3.0.2" 1903 | normalize-path "^2.0.1" 1904 | object.omit "^2.0.0" 1905 | parse-glob "^3.0.4" 1906 | regex-cache "^0.4.2" 1907 | 1908 | mime-db@~1.27.0: 1909 | version "1.27.0" 1910 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 1911 | 1912 | mime-types@^2.1.12, mime-types@~2.1.7: 1913 | version "2.1.15" 1914 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 1915 | dependencies: 1916 | mime-db "~1.27.0" 1917 | 1918 | mimic-fn@^1.0.0: 1919 | version "1.1.0" 1920 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 1921 | 1922 | minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 1923 | version "3.0.4" 1924 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1925 | dependencies: 1926 | brace-expansion "^1.1.7" 1927 | 1928 | minimist@0.0.8, minimist@~0.0.1: 1929 | version "0.0.8" 1930 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1931 | 1932 | minimist@^1.1.1: 1933 | version "1.2.0" 1934 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1935 | 1936 | mkdirp@^0.5.1: 1937 | version "0.5.1" 1938 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1939 | dependencies: 1940 | minimist "0.0.8" 1941 | 1942 | ml-array-utils@^0.3.0: 1943 | version "0.3.0" 1944 | resolved "https://registry.yarnpkg.com/ml-array-utils/-/ml-array-utils-0.3.0.tgz#c0cc5afdc1cb051f5a83b1ce71641c243672f649" 1945 | dependencies: 1946 | ml-stat "^1.0.1" 1947 | 1948 | ml-convolution@^0.2.0: 1949 | version "0.2.0" 1950 | resolved "https://registry.yarnpkg.com/ml-convolution/-/ml-convolution-0.2.0.tgz#374659a6f75c98324ef7d61766c1e6209caff594" 1951 | dependencies: 1952 | fft.js "^4.0.3" 1953 | next-power-of-two "^1.0.0" 1954 | 1955 | ml-disjoint-set@^1.0.0: 1956 | version "1.0.0" 1957 | resolved "https://registry.yarnpkg.com/ml-disjoint-set/-/ml-disjoint-set-1.0.0.tgz#6cd8e583eef5a02585348b98d0df21fd83ef6082" 1958 | 1959 | ml-distance-euclidean@^1.0.0: 1960 | version "1.0.0" 1961 | resolved "https://registry.yarnpkg.com/ml-distance-euclidean/-/ml-distance-euclidean-1.0.0.tgz#08447c2233641a2b2a9b4c29e5f792d28f1d5b95" 1962 | 1963 | ml-fft@1.3.5: 1964 | version "1.3.5" 1965 | resolved "https://registry.yarnpkg.com/ml-fft/-/ml-fft-1.3.5.tgz#effc1f3c5d0b803a0b39738feb3dacd27c145010" 1966 | 1967 | ml-kernel-gaussian@^2.0.1: 1968 | version "2.0.1" 1969 | resolved "https://registry.yarnpkg.com/ml-kernel-gaussian/-/ml-kernel-gaussian-2.0.1.tgz#a01aef9f44f5bcc11341b09a383b1b32f11933c0" 1970 | dependencies: 1971 | ml-distance-euclidean "^1.0.0" 1972 | 1973 | ml-kernel-polynomial@^2.0.0: 1974 | version "2.0.0" 1975 | resolved "https://registry.yarnpkg.com/ml-kernel-polynomial/-/ml-kernel-polynomial-2.0.0.tgz#8ec02c02ccb68bf25a92fbccb4d55a4b387c8313" 1976 | 1977 | ml-kernel-sigmoid@^1.0.0: 1978 | version "1.0.0" 1979 | resolved "https://registry.yarnpkg.com/ml-kernel-sigmoid/-/ml-kernel-sigmoid-1.0.0.tgz#884b28be13f61a60a5173f04240e8096eb1d9cd2" 1980 | 1981 | ml-kernel@^2.0.0: 1982 | version "2.3.3" 1983 | resolved "https://registry.yarnpkg.com/ml-kernel/-/ml-kernel-2.3.3.tgz#a9b2ee69a03c2cf24b15976146354d2b1f29aa4a" 1984 | dependencies: 1985 | ml-distance-euclidean "^1.0.0" 1986 | ml-kernel-gaussian "^2.0.1" 1987 | ml-kernel-polynomial "^2.0.0" 1988 | ml-kernel-sigmoid "^1.0.0" 1989 | ml-matrix "^3.0.0" 1990 | 1991 | ml-matrix-convolution@0.4.3: 1992 | version "0.4.3" 1993 | resolved "https://registry.yarnpkg.com/ml-matrix-convolution/-/ml-matrix-convolution-0.4.3.tgz#cbc75346b8996caf24a9b431bbad47f9ad2a4c11" 1994 | dependencies: 1995 | ml-fft "1.3.5" 1996 | ml-stat "^1.2.0" 1997 | 1998 | ml-matrix@3.0.0, ml-matrix@^3.0.0: 1999 | version "3.0.0" 2000 | resolved "https://registry.yarnpkg.com/ml-matrix/-/ml-matrix-3.0.0.tgz#e8dd9ee2e976757f0d4e10512cc0466b7f324ecd" 2001 | dependencies: 2002 | ml-array-utils "^0.3.0" 2003 | 2004 | ml-regression-base@^1.0.0, ml-regression-base@^1.1.1, ml-regression-base@^1.2.0: 2005 | version "1.2.0" 2006 | resolved "https://registry.yarnpkg.com/ml-regression-base/-/ml-regression-base-1.2.0.tgz#e8c58c12b649d845ecb13e0c246ad1be6e57cc1c" 2007 | 2008 | ml-regression-exponential@^1.0.0: 2009 | version "1.0.1" 2010 | resolved "https://registry.yarnpkg.com/ml-regression-exponential/-/ml-regression-exponential-1.0.1.tgz#f5eedba31a3e0bcfbbb92c26c590f9d02970e7d0" 2011 | dependencies: 2012 | ml-regression-base "^1.1.1" 2013 | ml-regression-simple-linear "^1.0.1" 2014 | 2015 | ml-regression-polynomial@^1.0.0: 2016 | version "1.0.2" 2017 | resolved "https://registry.yarnpkg.com/ml-regression-polynomial/-/ml-regression-polynomial-1.0.2.tgz#10fde6550d4a9a887e5628628a5027323e0ff7ee" 2018 | dependencies: 2019 | ml-matrix "^3.0.0" 2020 | ml-regression-base "^1.1.1" 2021 | 2022 | ml-regression-power@^1.0.0: 2023 | version "1.0.0" 2024 | resolved "https://registry.yarnpkg.com/ml-regression-power/-/ml-regression-power-1.0.0.tgz#eb934fc3c0531a15d8772f46a7ca9551785e481f" 2025 | dependencies: 2026 | ml-regression-base "^1.2.0" 2027 | ml-regression-simple-linear "^1.0.2" 2028 | 2029 | ml-regression-robust-polynomial@^1.0.0: 2030 | version "1.0.0" 2031 | resolved "https://registry.yarnpkg.com/ml-regression-robust-polynomial/-/ml-regression-robust-polynomial-1.0.0.tgz#35566cdda308725da7c23ebbcf6c088be3f4ae05" 2032 | dependencies: 2033 | ml-matrix "^3.0.0" 2034 | ml-regression-base "^1.2.0" 2035 | 2036 | ml-regression-simple-linear@^1.0.0, ml-regression-simple-linear@^1.0.1, ml-regression-simple-linear@^1.0.2: 2037 | version "1.0.2" 2038 | resolved "https://registry.yarnpkg.com/ml-regression-simple-linear/-/ml-regression-simple-linear-1.0.2.tgz#d99fe95be9178c3bf045cc58490b1e62851336af" 2039 | dependencies: 2040 | ml-regression-base "^1.0.0" 2041 | 2042 | ml-regression-theil-sen@^1.0.0: 2043 | version "1.0.0" 2044 | resolved "https://registry.yarnpkg.com/ml-regression-theil-sen/-/ml-regression-theil-sen-1.0.0.tgz#fb33c67ca88cd182c9eee999cecccd7aad5c2bc8" 2045 | dependencies: 2046 | ml-regression-base "^1.2.0" 2047 | ml-stat "^1.3.3" 2048 | 2049 | ml-regression@^4.0.0: 2050 | version "4.3.0" 2051 | resolved "https://registry.yarnpkg.com/ml-regression/-/ml-regression-4.3.0.tgz#64685712b935cd0373ee9c51d3b6ef181fe94dd9" 2052 | dependencies: 2053 | is-integer "^1.0.6" 2054 | ml-kernel "^2.0.0" 2055 | ml-matrix "^3.0.0" 2056 | ml-regression-exponential "^1.0.0" 2057 | ml-regression-polynomial "^1.0.0" 2058 | ml-regression-power "^1.0.0" 2059 | ml-regression-robust-polynomial "^1.0.0" 2060 | ml-regression-simple-linear "^1.0.0" 2061 | ml-regression-theil-sen "^1.0.0" 2062 | ml-stat "^1.3.3" 2063 | 2064 | ml-stat@^1.0.1, ml-stat@^1.2.0, ml-stat@^1.3.3: 2065 | version "1.3.3" 2066 | resolved "https://registry.yarnpkg.com/ml-stat/-/ml-stat-1.3.3.tgz#8a5493b0f67382fbf705c260e070436655a7dcfa" 2067 | 2068 | monotone-chain-convex-hull@^1.0.0: 2069 | version "1.0.0" 2070 | resolved "https://registry.yarnpkg.com/monotone-chain-convex-hull/-/monotone-chain-convex-hull-1.0.0.tgz#e5e3a39f305d6bc6fe71062fc7072bc56c3a55e0" 2071 | 2072 | ms@2.0.0: 2073 | version "2.0.0" 2074 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2075 | 2076 | mute-stream@0.0.7: 2077 | version "0.0.7" 2078 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2079 | 2080 | nan@^2.4.0: 2081 | version "2.6.2" 2082 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" 2083 | 2084 | native-or-lie@1.0.0: 2085 | version "1.0.0" 2086 | resolved "https://registry.yarnpkg.com/native-or-lie/-/native-or-lie-1.0.0.tgz#14f8783f4b26257780be75142fa145375c50d980" 2087 | dependencies: 2088 | lie "*" 2089 | 2090 | natural-compare@^1.4.0: 2091 | version "1.4.0" 2092 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2093 | 2094 | new-array@^1.0.0: 2095 | version "1.0.0" 2096 | resolved "https://registry.yarnpkg.com/new-array/-/new-array-1.0.0.tgz#5dbc639d961eac7f1a9fbc1a7146ec12f2924fbf" 2097 | 2098 | next-power-of-two@^1.0.0: 2099 | version "1.0.0" 2100 | resolved "https://registry.yarnpkg.com/next-power-of-two/-/next-power-of-two-1.0.0.tgz#cbc1f2f62b586fc501bd3ab2fb9962ac4e4e9359" 2101 | 2102 | node-int64@^0.4.0: 2103 | version "0.4.0" 2104 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2105 | 2106 | node-notifier@^5.0.2: 2107 | version "5.1.2" 2108 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 2109 | dependencies: 2110 | growly "^1.3.0" 2111 | semver "^5.3.0" 2112 | shellwords "^0.1.0" 2113 | which "^1.2.12" 2114 | 2115 | normalize-package-data@^2.3.2: 2116 | version "2.4.0" 2117 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2118 | dependencies: 2119 | hosted-git-info "^2.1.4" 2120 | is-builtin-module "^1.0.0" 2121 | semver "2 || 3 || 4 || 5" 2122 | validate-npm-package-license "^3.0.1" 2123 | 2124 | normalize-path@^2.0.1: 2125 | version "2.1.1" 2126 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2127 | dependencies: 2128 | remove-trailing-separator "^1.0.1" 2129 | 2130 | npm-run-all@^4.0.2: 2131 | version "4.0.2" 2132 | resolved "https://registry.yarnpkg.com/npm-run-all/-/npm-run-all-4.0.2.tgz#a84669348e6db6ccbe052200b4cdb6bfe034a4fe" 2133 | dependencies: 2134 | chalk "^1.1.3" 2135 | cross-spawn "^5.0.1" 2136 | minimatch "^3.0.2" 2137 | ps-tree "^1.0.1" 2138 | read-pkg "^2.0.0" 2139 | shell-quote "^1.6.1" 2140 | string.prototype.padend "^3.0.0" 2141 | 2142 | num-sort@^1.0.0: 2143 | version "1.0.0" 2144 | resolved "https://registry.yarnpkg.com/num-sort/-/num-sort-1.0.0.tgz#cabec1fd5f4da4aca995af90b7a0f379944e1dbd" 2145 | dependencies: 2146 | number-is-nan "^1.0.0" 2147 | 2148 | number-is-nan@^1.0.0: 2149 | version "1.0.1" 2150 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2151 | 2152 | "nwmatcher@>= 1.3.9 < 2.0.0": 2153 | version "1.4.1" 2154 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.1.tgz#7ae9b07b0ea804db7e25f05cb5fe4097d4e4949f" 2155 | 2156 | oauth-sign@~0.8.1: 2157 | version "0.8.2" 2158 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2159 | 2160 | object-assign@^4.0.1, object-assign@^4.1.0: 2161 | version "4.1.1" 2162 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2163 | 2164 | object-keys@^1.0.8: 2165 | version "1.0.11" 2166 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 2167 | 2168 | object.omit@^2.0.0: 2169 | version "2.0.1" 2170 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2171 | dependencies: 2172 | for-own "^0.1.4" 2173 | is-extendable "^0.1.1" 2174 | 2175 | once@^1.3.0, once@^1.4.0: 2176 | version "1.4.0" 2177 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2178 | dependencies: 2179 | wrappy "1" 2180 | 2181 | onetime@^2.0.0: 2182 | version "2.0.1" 2183 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2184 | dependencies: 2185 | mimic-fn "^1.0.0" 2186 | 2187 | optimist@^0.6.1: 2188 | version "0.6.1" 2189 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2190 | dependencies: 2191 | minimist "~0.0.1" 2192 | wordwrap "~0.0.2" 2193 | 2194 | optionator@^0.8.1, optionator@^0.8.2: 2195 | version "0.8.2" 2196 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2197 | dependencies: 2198 | deep-is "~0.1.3" 2199 | fast-levenshtein "~2.0.4" 2200 | levn "~0.3.0" 2201 | prelude-ls "~1.1.2" 2202 | type-check "~0.3.2" 2203 | wordwrap "~1.0.0" 2204 | 2205 | os-homedir@^1.0.0: 2206 | version "1.0.2" 2207 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2208 | 2209 | os-locale@^1.4.0: 2210 | version "1.4.0" 2211 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2212 | dependencies: 2213 | lcid "^1.0.0" 2214 | 2215 | os-tmpdir@^1.0.1, os-tmpdir@~1.0.1: 2216 | version "1.0.2" 2217 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2218 | 2219 | p-limit@^1.1.0: 2220 | version "1.1.0" 2221 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2222 | 2223 | p-locate@^2.0.0: 2224 | version "2.0.0" 2225 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2226 | dependencies: 2227 | p-limit "^1.1.0" 2228 | 2229 | p-map@^1.1.1: 2230 | version "1.1.1" 2231 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.1.1.tgz#05f5e4ae97a068371bc2a5cc86bfbdbc19c4ae7a" 2232 | 2233 | pako@^1.0.0: 2234 | version "1.0.5" 2235 | resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.5.tgz#d2205dfe5b9da8af797e7c163db4d1f84e4600bc" 2236 | 2237 | parse-css-font@^2.0.2: 2238 | version "2.0.2" 2239 | resolved "https://registry.yarnpkg.com/parse-css-font/-/parse-css-font-2.0.2.tgz#7b60b060705a25a9b90b7f0ed493e5823248a652" 2240 | dependencies: 2241 | css-font-size-keywords "^1.0.0" 2242 | css-font-stretch-keywords "^1.0.1" 2243 | css-font-style-keywords "^1.0.1" 2244 | css-font-weight-keywords "^1.0.0" 2245 | css-global-keywords "^1.0.1" 2246 | css-list-helpers "^1.0.1" 2247 | css-system-font-keywords "^1.0.0" 2248 | tcomb "^2.5.0" 2249 | unquote "^1.1.0" 2250 | 2251 | parse-glob@^3.0.4: 2252 | version "3.0.4" 2253 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2254 | dependencies: 2255 | glob-base "^0.3.0" 2256 | is-dotfile "^1.0.0" 2257 | is-extglob "^1.0.0" 2258 | is-glob "^2.0.0" 2259 | 2260 | parse-json@^2.2.0: 2261 | version "2.2.0" 2262 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2263 | dependencies: 2264 | error-ex "^1.2.0" 2265 | 2266 | parse5@^1.5.1: 2267 | version "1.5.1" 2268 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 2269 | 2270 | path-exists@^2.0.0: 2271 | version "2.1.0" 2272 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2273 | dependencies: 2274 | pinkie-promise "^2.0.0" 2275 | 2276 | path-exists@^3.0.0: 2277 | version "3.0.0" 2278 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2279 | 2280 | path-is-absolute@^1.0.0: 2281 | version "1.0.1" 2282 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2283 | 2284 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 2285 | version "1.0.2" 2286 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2287 | 2288 | path-parse@^1.0.5: 2289 | version "1.0.5" 2290 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2291 | 2292 | path-type@^1.0.0: 2293 | version "1.1.0" 2294 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2295 | dependencies: 2296 | graceful-fs "^4.1.2" 2297 | pify "^2.0.0" 2298 | pinkie-promise "^2.0.0" 2299 | 2300 | path-type@^2.0.0: 2301 | version "2.0.0" 2302 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2303 | dependencies: 2304 | pify "^2.0.0" 2305 | 2306 | pause-stream@0.0.11: 2307 | version "0.0.11" 2308 | resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" 2309 | dependencies: 2310 | through "~2.3" 2311 | 2312 | performance-now@^0.2.0: 2313 | version "0.2.0" 2314 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2315 | 2316 | pify@^2.0.0, pify@^2.3.0: 2317 | version "2.3.0" 2318 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2319 | 2320 | pinkie-promise@^2.0.0: 2321 | version "2.0.1" 2322 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2323 | dependencies: 2324 | pinkie "^2.0.0" 2325 | 2326 | pinkie@^2.0.0: 2327 | version "2.0.4" 2328 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2329 | 2330 | pluralize@^4.0.0: 2331 | version "4.0.0" 2332 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-4.0.0.tgz#59b708c1c0190a2f692f1c7618c446b052fd1762" 2333 | 2334 | prelude-ls@~1.1.2: 2335 | version "1.1.2" 2336 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2337 | 2338 | preserve@^0.2.0: 2339 | version "0.2.0" 2340 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2341 | 2342 | pretty-format@^20.0.3: 2343 | version "20.0.3" 2344 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-20.0.3.tgz#020e350a560a1fe1a98dc3beb6ccffb386de8b14" 2345 | dependencies: 2346 | ansi-regex "^2.1.1" 2347 | ansi-styles "^3.0.0" 2348 | 2349 | private@^0.1.6: 2350 | version "0.1.7" 2351 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2352 | 2353 | process-nextick-args@~1.0.6: 2354 | version "1.0.7" 2355 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2356 | 2357 | progress@^2.0.0: 2358 | version "2.0.0" 2359 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 2360 | 2361 | prr@~0.0.0: 2362 | version "0.0.0" 2363 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 2364 | 2365 | ps-tree@^1.0.1: 2366 | version "1.1.0" 2367 | resolved "https://registry.yarnpkg.com/ps-tree/-/ps-tree-1.1.0.tgz#b421b24140d6203f1ed3c76996b4427b08e8c014" 2368 | dependencies: 2369 | event-stream "~3.3.0" 2370 | 2371 | pseudomap@^1.0.2: 2372 | version "1.0.2" 2373 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2374 | 2375 | punycode@^1.4.1: 2376 | version "1.4.1" 2377 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2378 | 2379 | qs@~6.4.0: 2380 | version "6.4.0" 2381 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2382 | 2383 | randomatic@^1.1.3: 2384 | version "1.1.7" 2385 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2386 | dependencies: 2387 | is-number "^3.0.0" 2388 | kind-of "^4.0.0" 2389 | 2390 | read-pkg-up@^1.0.1: 2391 | version "1.0.1" 2392 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2393 | dependencies: 2394 | find-up "^1.0.0" 2395 | read-pkg "^1.0.0" 2396 | 2397 | read-pkg@^1.0.0: 2398 | version "1.1.0" 2399 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2400 | dependencies: 2401 | load-json-file "^1.0.0" 2402 | normalize-package-data "^2.3.2" 2403 | path-type "^1.0.0" 2404 | 2405 | read-pkg@^2.0.0: 2406 | version "2.0.0" 2407 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 2408 | dependencies: 2409 | load-json-file "^2.0.0" 2410 | normalize-package-data "^2.3.2" 2411 | path-type "^2.0.0" 2412 | 2413 | readable-stream@^2.2.2: 2414 | version "2.3.2" 2415 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.2.tgz#5a04df05e4f57fe3f0dc68fdd11dc5c97c7e6f4d" 2416 | dependencies: 2417 | core-util-is "~1.0.0" 2418 | inherits "~2.0.3" 2419 | isarray "~1.0.0" 2420 | process-nextick-args "~1.0.6" 2421 | safe-buffer "~5.1.0" 2422 | string_decoder "~1.0.0" 2423 | util-deprecate "~1.0.1" 2424 | 2425 | regenerator-runtime@^0.10.0: 2426 | version "0.10.5" 2427 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2428 | 2429 | regex-cache@^0.4.2: 2430 | version "0.4.3" 2431 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2432 | dependencies: 2433 | is-equal-shallow "^0.1.3" 2434 | is-primitive "^2.0.0" 2435 | 2436 | remove-trailing-separator@^1.0.1: 2437 | version "1.0.2" 2438 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.2.tgz#69b062d978727ad14dc6b56ba4ab772fd8d70511" 2439 | 2440 | repeat-element@^1.1.2: 2441 | version "1.1.2" 2442 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2443 | 2444 | repeat-string@^1.5.2: 2445 | version "1.6.1" 2446 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2447 | 2448 | repeating@^2.0.0: 2449 | version "2.0.1" 2450 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2451 | dependencies: 2452 | is-finite "^1.0.0" 2453 | 2454 | request@^2.79.0: 2455 | version "2.81.0" 2456 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2457 | dependencies: 2458 | aws-sign2 "~0.6.0" 2459 | aws4 "^1.2.1" 2460 | caseless "~0.12.0" 2461 | combined-stream "~1.0.5" 2462 | extend "~3.0.0" 2463 | forever-agent "~0.6.1" 2464 | form-data "~2.1.1" 2465 | har-validator "~4.2.1" 2466 | hawk "~3.1.3" 2467 | http-signature "~1.1.0" 2468 | is-typedarray "~1.0.0" 2469 | isstream "~0.1.2" 2470 | json-stringify-safe "~5.0.1" 2471 | mime-types "~2.1.7" 2472 | oauth-sign "~0.8.1" 2473 | performance-now "^0.2.0" 2474 | qs "~6.4.0" 2475 | safe-buffer "^5.0.1" 2476 | stringstream "~0.0.4" 2477 | tough-cookie "~2.3.0" 2478 | tunnel-agent "^0.6.0" 2479 | uuid "^3.0.0" 2480 | 2481 | require-directory@^2.1.1: 2482 | version "2.1.1" 2483 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2484 | 2485 | require-main-filename@^1.0.1: 2486 | version "1.0.1" 2487 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2488 | 2489 | require-uncached@^1.0.3: 2490 | version "1.0.3" 2491 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 2492 | dependencies: 2493 | caller-path "^0.1.0" 2494 | resolve-from "^1.0.0" 2495 | 2496 | resolve-from@^1.0.0: 2497 | version "1.0.1" 2498 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 2499 | 2500 | resolve@1.1.7: 2501 | version "1.1.7" 2502 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2503 | 2504 | resolve@^1.3.2: 2505 | version "1.3.3" 2506 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" 2507 | dependencies: 2508 | path-parse "^1.0.5" 2509 | 2510 | restore-cursor@^2.0.0: 2511 | version "2.0.0" 2512 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2513 | dependencies: 2514 | onetime "^2.0.0" 2515 | signal-exit "^3.0.2" 2516 | 2517 | right-align@^0.1.1: 2518 | version "0.1.3" 2519 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2520 | dependencies: 2521 | align-text "^0.1.1" 2522 | 2523 | rimraf@^2.2.8, rimraf@^2.6.1: 2524 | version "2.6.1" 2525 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 2526 | dependencies: 2527 | glob "^7.0.5" 2528 | 2529 | robust-orientation@^1.0.2: 2530 | version "1.1.3" 2531 | resolved "https://registry.yarnpkg.com/robust-orientation/-/robust-orientation-1.1.3.tgz#daff5b00d3be4e60722f0e9c0156ef967f1c2049" 2532 | dependencies: 2533 | robust-scale "^1.0.2" 2534 | robust-subtract "^1.0.0" 2535 | robust-sum "^1.0.0" 2536 | two-product "^1.0.2" 2537 | 2538 | robust-point-in-polygon@^1.0.3: 2539 | version "1.0.3" 2540 | resolved "https://registry.yarnpkg.com/robust-point-in-polygon/-/robust-point-in-polygon-1.0.3.tgz#ea68f025a44dfe6aede80f0863788705cf547ec4" 2541 | dependencies: 2542 | robust-orientation "^1.0.2" 2543 | 2544 | robust-scale@^1.0.2: 2545 | version "1.0.2" 2546 | resolved "https://registry.yarnpkg.com/robust-scale/-/robust-scale-1.0.2.tgz#775132ed09542d028e58b2cc79c06290bcf78c32" 2547 | dependencies: 2548 | two-product "^1.0.2" 2549 | two-sum "^1.0.0" 2550 | 2551 | robust-subtract@^1.0.0: 2552 | version "1.0.0" 2553 | resolved "https://registry.yarnpkg.com/robust-subtract/-/robust-subtract-1.0.0.tgz#e0b164e1ed8ba4e3a5dda45a12038348dbed3e9a" 2554 | 2555 | robust-sum@^1.0.0: 2556 | version "1.0.0" 2557 | resolved "https://registry.yarnpkg.com/robust-sum/-/robust-sum-1.0.0.tgz#16646e525292b4d25d82757a286955e0bbfa53d9" 2558 | 2559 | rollup@^0.43.0: 2560 | version "0.43.0" 2561 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.43.0.tgz#b36bdb75fa5e0823b6de8aee18ff7b5655520543" 2562 | dependencies: 2563 | source-map-support "^0.4.0" 2564 | 2565 | run-async@^2.2.0: 2566 | version "2.3.0" 2567 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 2568 | dependencies: 2569 | is-promise "^2.1.0" 2570 | 2571 | rx-lite-aggregates@^4.0.8: 2572 | version "4.0.8" 2573 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 2574 | dependencies: 2575 | rx-lite "*" 2576 | 2577 | rx-lite@*, rx-lite@^4.0.8: 2578 | version "4.0.8" 2579 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 2580 | 2581 | safe-buffer@^5.0.1, safe-buffer@~5.1.0: 2582 | version "5.1.1" 2583 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2584 | 2585 | sane@~1.6.0: 2586 | version "1.6.0" 2587 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.6.0.tgz#9610c452307a135d29c1fdfe2547034180c46775" 2588 | dependencies: 2589 | anymatch "^1.3.0" 2590 | exec-sh "^0.2.0" 2591 | fb-watchman "^1.8.0" 2592 | minimatch "^3.0.2" 2593 | minimist "^1.1.1" 2594 | walker "~1.0.5" 2595 | watch "~0.10.0" 2596 | 2597 | sax@^1.2.1: 2598 | version "1.2.4" 2599 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2600 | 2601 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 2602 | version "5.3.0" 2603 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2604 | 2605 | set-blocking@^2.0.0: 2606 | version "2.0.0" 2607 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2608 | 2609 | shebang-command@^1.2.0: 2610 | version "1.2.0" 2611 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2612 | dependencies: 2613 | shebang-regex "^1.0.0" 2614 | 2615 | shebang-regex@^1.0.0: 2616 | version "1.0.0" 2617 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2618 | 2619 | shell-quote@^1.6.1: 2620 | version "1.6.1" 2621 | resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" 2622 | dependencies: 2623 | array-filter "~0.0.0" 2624 | array-map "~0.0.0" 2625 | array-reduce "~0.0.0" 2626 | jsonify "~0.0.0" 2627 | 2628 | shellwords@^0.1.0: 2629 | version "0.1.0" 2630 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.0.tgz#66afd47b6a12932d9071cbfd98a52e785cd0ba14" 2631 | 2632 | signal-exit@^3.0.2: 2633 | version "3.0.2" 2634 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2635 | 2636 | slash@^1.0.0: 2637 | version "1.0.0" 2638 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2639 | 2640 | slice-ansi@0.0.4: 2641 | version "0.0.4" 2642 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 2643 | 2644 | sntp@1.x.x: 2645 | version "1.0.9" 2646 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2647 | dependencies: 2648 | hoek "2.x.x" 2649 | 2650 | source-map-support@^0.4.0, source-map-support@^0.4.2: 2651 | version "0.4.15" 2652 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" 2653 | dependencies: 2654 | source-map "^0.5.6" 2655 | 2656 | source-map@^0.4.4: 2657 | version "0.4.4" 2658 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 2659 | dependencies: 2660 | amdefine ">=0.0.4" 2661 | 2662 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 2663 | version "0.5.6" 2664 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 2665 | 2666 | source-map@~0.2.0: 2667 | version "0.2.0" 2668 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 2669 | dependencies: 2670 | amdefine ">=0.0.4" 2671 | 2672 | spdx-correct@~1.0.0: 2673 | version "1.0.2" 2674 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2675 | dependencies: 2676 | spdx-license-ids "^1.0.2" 2677 | 2678 | spdx-expression-parse@~1.0.0: 2679 | version "1.0.4" 2680 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2681 | 2682 | spdx-license-ids@^1.0.2: 2683 | version "1.2.2" 2684 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2685 | 2686 | split@0.3: 2687 | version "0.3.3" 2688 | resolved "https://registry.yarnpkg.com/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" 2689 | dependencies: 2690 | through "2" 2691 | 2692 | sprintf-js@~1.0.2: 2693 | version "1.0.3" 2694 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2695 | 2696 | sshpk@^1.7.0: 2697 | version "1.13.1" 2698 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2699 | dependencies: 2700 | asn1 "~0.2.3" 2701 | assert-plus "^1.0.0" 2702 | dashdash "^1.12.0" 2703 | getpass "^0.1.1" 2704 | optionalDependencies: 2705 | bcrypt-pbkdf "^1.0.0" 2706 | ecc-jsbn "~0.1.1" 2707 | jsbn "~0.1.0" 2708 | tweetnacl "~0.14.0" 2709 | 2710 | stream-combiner@~0.0.4: 2711 | version "0.0.4" 2712 | resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" 2713 | dependencies: 2714 | duplexer "~0.1.1" 2715 | 2716 | string-length@^1.0.1: 2717 | version "1.0.1" 2718 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 2719 | dependencies: 2720 | strip-ansi "^3.0.0" 2721 | 2722 | string-width@^1.0.1, string-width@^1.0.2: 2723 | version "1.0.2" 2724 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2725 | dependencies: 2726 | code-point-at "^1.0.0" 2727 | is-fullwidth-code-point "^1.0.0" 2728 | strip-ansi "^3.0.0" 2729 | 2730 | string-width@^2.0.0: 2731 | version "2.1.0" 2732 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.0.tgz#030664561fc146c9423ec7d978fe2457437fe6d0" 2733 | dependencies: 2734 | is-fullwidth-code-point "^2.0.0" 2735 | strip-ansi "^4.0.0" 2736 | 2737 | string.prototype.padend@^3.0.0: 2738 | version "3.0.0" 2739 | resolved "https://registry.yarnpkg.com/string.prototype.padend/-/string.prototype.padend-3.0.0.tgz#f3aaef7c1719f170c5eab1c32bf780d96e21f2f0" 2740 | dependencies: 2741 | define-properties "^1.1.2" 2742 | es-abstract "^1.4.3" 2743 | function-bind "^1.0.2" 2744 | 2745 | string_decoder@~1.0.0: 2746 | version "1.0.3" 2747 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2748 | dependencies: 2749 | safe-buffer "~5.1.0" 2750 | 2751 | stringstream@~0.0.4: 2752 | version "0.0.5" 2753 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2754 | 2755 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2756 | version "3.0.1" 2757 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2758 | dependencies: 2759 | ansi-regex "^2.0.0" 2760 | 2761 | strip-ansi@^4.0.0: 2762 | version "4.0.0" 2763 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2764 | dependencies: 2765 | ansi-regex "^3.0.0" 2766 | 2767 | strip-bom@3.0.0, strip-bom@^3.0.0: 2768 | version "3.0.0" 2769 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2770 | 2771 | strip-bom@^2.0.0: 2772 | version "2.0.0" 2773 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2774 | dependencies: 2775 | is-utf8 "^0.2.0" 2776 | 2777 | strip-json-comments@~2.0.1: 2778 | version "2.0.1" 2779 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2780 | 2781 | supports-color@^2.0.0: 2782 | version "2.0.0" 2783 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2784 | 2785 | supports-color@^3.1.2: 2786 | version "3.2.3" 2787 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 2788 | dependencies: 2789 | has-flag "^1.0.0" 2790 | 2791 | symbol-tree@^3.2.1: 2792 | version "3.2.2" 2793 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 2794 | 2795 | table@^4.0.1: 2796 | version "4.0.1" 2797 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.1.tgz#a8116c133fac2c61f4a420ab6cdf5c4d61f0e435" 2798 | dependencies: 2799 | ajv "^4.7.0" 2800 | ajv-keywords "^1.0.0" 2801 | chalk "^1.1.1" 2802 | lodash "^4.0.0" 2803 | slice-ansi "0.0.4" 2804 | string-width "^2.0.0" 2805 | 2806 | tcomb@^2.5.0: 2807 | version "2.7.0" 2808 | resolved "https://registry.yarnpkg.com/tcomb/-/tcomb-2.7.0.tgz#10d62958041669a5d53567b9a4ee8cde22b1c2b0" 2809 | 2810 | test-exclude@^4.1.1: 2811 | version "4.1.1" 2812 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" 2813 | dependencies: 2814 | arrify "^1.0.1" 2815 | micromatch "^2.3.11" 2816 | object-assign "^4.1.0" 2817 | read-pkg-up "^1.0.1" 2818 | require-main-filename "^1.0.1" 2819 | 2820 | text-table@~0.2.0: 2821 | version "0.2.0" 2822 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2823 | 2824 | throat@^3.0.0: 2825 | version "3.2.0" 2826 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.2.0.tgz#50cb0670edbc40237b9e347d7e1f88e4620af836" 2827 | 2828 | through@2, through@^2.3.6, through@~2.3, through@~2.3.1: 2829 | version "2.3.8" 2830 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2831 | 2832 | tiff@^2.0.0, tiff@^2.1.0: 2833 | version "2.1.0" 2834 | resolved "https://registry.yarnpkg.com/tiff/-/tiff-2.1.0.tgz#b3f41c519bd66835267f14cb31a04acb1f7860ca" 2835 | dependencies: 2836 | iobuffer "^2.1.0" 2837 | 2838 | tmp@^0.0.31: 2839 | version "0.0.31" 2840 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.31.tgz#8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7" 2841 | dependencies: 2842 | os-tmpdir "~1.0.1" 2843 | 2844 | tmpl@1.0.x: 2845 | version "1.0.4" 2846 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 2847 | 2848 | to-fast-properties@^1.0.1: 2849 | version "1.0.3" 2850 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2851 | 2852 | tough-cookie@^2.3.2, tough-cookie@~2.3.0: 2853 | version "2.3.2" 2854 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 2855 | dependencies: 2856 | punycode "^1.4.1" 2857 | 2858 | tr46@~0.0.3: 2859 | version "0.0.3" 2860 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 2861 | 2862 | trim-right@^1.0.1: 2863 | version "1.0.1" 2864 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2865 | 2866 | tryit@^1.0.1: 2867 | version "1.0.3" 2868 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 2869 | 2870 | tunnel-agent@^0.6.0: 2871 | version "0.6.0" 2872 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2873 | dependencies: 2874 | safe-buffer "^5.0.1" 2875 | 2876 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2877 | version "0.14.5" 2878 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2879 | 2880 | two-product@^1.0.2: 2881 | version "1.0.2" 2882 | resolved "https://registry.yarnpkg.com/two-product/-/two-product-1.0.2.tgz#67d95d4b257a921e2cb4bd7af9511f9088522eaa" 2883 | 2884 | two-sum@^1.0.0: 2885 | version "1.0.0" 2886 | resolved "https://registry.yarnpkg.com/two-sum/-/two-sum-1.0.0.tgz#31d3f32239e4f731eca9df9155e2b297f008ab64" 2887 | 2888 | type-check@~0.3.2: 2889 | version "0.3.2" 2890 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2891 | dependencies: 2892 | prelude-ls "~1.1.2" 2893 | 2894 | typedarray@^0.0.6: 2895 | version "0.0.6" 2896 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 2897 | 2898 | uglify-js@^2.6: 2899 | version "2.8.29" 2900 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 2901 | dependencies: 2902 | source-map "~0.5.1" 2903 | yargs "~3.10.0" 2904 | optionalDependencies: 2905 | uglify-to-browserify "~1.0.0" 2906 | 2907 | uglify-to-browserify@~1.0.0: 2908 | version "1.0.2" 2909 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 2910 | 2911 | units-css@^0.4.0: 2912 | version "0.4.0" 2913 | resolved "https://registry.yarnpkg.com/units-css/-/units-css-0.4.0.tgz#d6228653a51983d7c16ff28f8b9dc3b1ffed3a07" 2914 | dependencies: 2915 | isnumeric "^0.2.0" 2916 | viewport-dimensions "^0.2.0" 2917 | 2918 | unquote@^1.1.0: 2919 | version "1.1.0" 2920 | resolved "https://registry.yarnpkg.com/unquote/-/unquote-1.1.0.tgz#98e1fc608b6b854c75afb1b95afc099ba69d942f" 2921 | 2922 | utf8@^2.1.2: 2923 | version "2.1.2" 2924 | resolved "https://registry.yarnpkg.com/utf8/-/utf8-2.1.2.tgz#1fa0d9270e9be850d9b05027f63519bf46457d96" 2925 | 2926 | util-deprecate@~1.0.1: 2927 | version "1.0.2" 2928 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2929 | 2930 | uuid@^3.0.0: 2931 | version "3.1.0" 2932 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 2933 | 2934 | validate-npm-package-license@^3.0.1: 2935 | version "3.0.1" 2936 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2937 | dependencies: 2938 | spdx-correct "~1.0.0" 2939 | spdx-expression-parse "~1.0.0" 2940 | 2941 | verror@1.3.6: 2942 | version "1.3.6" 2943 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 2944 | dependencies: 2945 | extsprintf "1.0.2" 2946 | 2947 | viewport-dimensions@^0.2.0: 2948 | version "0.2.0" 2949 | resolved "https://registry.yarnpkg.com/viewport-dimensions/-/viewport-dimensions-0.2.0.tgz#de740747db5387fd1725f5175e91bac76afdf36c" 2950 | 2951 | walker@~1.0.5: 2952 | version "1.0.7" 2953 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 2954 | dependencies: 2955 | makeerror "1.0.x" 2956 | 2957 | watch@~0.10.0: 2958 | version "0.10.0" 2959 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 2960 | 2961 | web-worker-manager@^0.2.0: 2962 | version "0.2.0" 2963 | resolved "https://registry.yarnpkg.com/web-worker-manager/-/web-worker-manager-0.2.0.tgz#e1bce423c640b76c409731f9de950bb1b9266521" 2964 | 2965 | webidl-conversions@^3.0.0: 2966 | version "3.0.1" 2967 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 2968 | 2969 | webidl-conversions@^4.0.0: 2970 | version "4.0.1" 2971 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.1.tgz#8015a17ab83e7e1b311638486ace81da6ce206a0" 2972 | 2973 | whatwg-encoding@^1.0.1: 2974 | version "1.0.1" 2975 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 2976 | dependencies: 2977 | iconv-lite "0.4.13" 2978 | 2979 | whatwg-url@^4.3.0: 2980 | version "4.8.0" 2981 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" 2982 | dependencies: 2983 | tr46 "~0.0.3" 2984 | webidl-conversions "^3.0.0" 2985 | 2986 | which-module@^1.0.0: 2987 | version "1.0.0" 2988 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 2989 | 2990 | which@^1.2.12, which@^1.2.9: 2991 | version "1.2.14" 2992 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 2993 | dependencies: 2994 | isexe "^2.0.0" 2995 | 2996 | window-size@0.1.0: 2997 | version "0.1.0" 2998 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 2999 | 3000 | wordwrap@0.0.2: 3001 | version "0.0.2" 3002 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3003 | 3004 | wordwrap@~0.0.2: 3005 | version "0.0.3" 3006 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3007 | 3008 | wordwrap@~1.0.0: 3009 | version "1.0.0" 3010 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3011 | 3012 | worker-farm@^1.3.1: 3013 | version "1.3.1" 3014 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.3.1.tgz#4333112bb49b17aa050b87895ca6b2cacf40e5ff" 3015 | dependencies: 3016 | errno ">=0.1.1 <0.2.0-0" 3017 | xtend ">=4.0.0 <4.1.0-0" 3018 | 3019 | wrap-ansi@^2.0.0: 3020 | version "2.1.0" 3021 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3022 | dependencies: 3023 | string-width "^1.0.1" 3024 | strip-ansi "^3.0.1" 3025 | 3026 | wrappy@1: 3027 | version "1.0.2" 3028 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3029 | 3030 | write@^0.2.1: 3031 | version "0.2.1" 3032 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3033 | dependencies: 3034 | mkdirp "^0.5.1" 3035 | 3036 | xml-name-validator@^2.0.1: 3037 | version "2.0.1" 3038 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 3039 | 3040 | "xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0: 3041 | version "4.0.1" 3042 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3043 | 3044 | y18n@^3.2.1: 3045 | version "3.2.1" 3046 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3047 | 3048 | yallist@^2.1.2: 3049 | version "2.1.2" 3050 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3051 | 3052 | yargs-parser@^5.0.0: 3053 | version "5.0.0" 3054 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" 3055 | dependencies: 3056 | camelcase "^3.0.0" 3057 | 3058 | yargs@^7.0.2: 3059 | version "7.1.0" 3060 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" 3061 | dependencies: 3062 | camelcase "^3.0.0" 3063 | cliui "^3.2.0" 3064 | decamelize "^1.1.1" 3065 | get-caller-file "^1.0.1" 3066 | os-locale "^1.4.0" 3067 | read-pkg-up "^1.0.1" 3068 | require-directory "^2.1.1" 3069 | require-main-filename "^1.0.1" 3070 | set-blocking "^2.0.0" 3071 | string-width "^1.0.2" 3072 | which-module "^1.0.0" 3073 | y18n "^3.2.1" 3074 | yargs-parser "^5.0.0" 3075 | 3076 | yargs@~3.10.0: 3077 | version "3.10.0" 3078 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3079 | dependencies: 3080 | camelcase "^1.0.2" 3081 | cliui "^2.1.0" 3082 | decamelize "^1.0.0" 3083 | window-size "0.1.0" 3084 | --------------------------------------------------------------------------------