├── .eslintrc ├── .gitignore ├── README.md ├── lib ├── assertions │ └── visualChangesOf.js ├── commands │ ├── compareScreenshotFromElement.js │ └── takeScreenshotFromElement.js ├── helpers.js └── index.js ├── package.json └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "es6": true, 4 | "node": true, 5 | "browser": true 6 | }, 7 | "extends": "airbnb-base", 8 | "parserOptions": { 9 | "sourceType": "module" 10 | }, 11 | "rules" : { 12 | "max-len": ["error", { 13 | "code": 150 14 | }], 15 | "arrow-parens": ["error", "as-needed"], 16 | "no-multi-assign": 0, 17 | "strict": 0, 18 | "no-console": 0, 19 | "global-require": 0, 20 | "prefer-spread": 0, 21 | "prefer-rest-params": 0, 22 | "prefer-arrow-callback": 0, 23 | "arrow-body-style": 0, 24 | "consistent-return": 0, 25 | "no-param-reassign": 0, 26 | "no-underscore-dangle": 0, 27 | "import/no-unresolved": 0, 28 | "import/no-dynamic-require": 0, 29 | "import/no-extraneous-dependencies": 0 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![NPM version](https://badge.fury.io/js/dayguard.png)](http://badge.fury.io/js/dayguard) 2 | 3 | **Dayguard** is a "plugin" for [NightwatchJS](http://nightwatchjs.org/) that allows you to do CSS Regression tests. 4 | 5 | It's based on [Resemble.js](https://www.npmjs.com/package/node-resemble-js) (for NodeJS) and [gm](https://www.npmjs.com/package/gm) for GraphicsMagick/ImageMagick support. 6 | 7 | ## API 8 | 9 | - `visualChangesOf(selector, customName, threshold)` — will call low-level commands and test for differences 10 | - `takeScreenshotFromElement(selector, customName, timeout)` — takes a custom screenshot for the given selector 11 | - `compareScreenshotFromElement(selector, customName, callback)` — compare the differences between the last references 12 | 13 | ## Example 14 | 15 | Install the following dependencies: 16 | 17 | ```bash 18 | $ npm install nwrun dayguard nightwatch chromedriver 19 | ``` 20 | 21 | Save the following script as `runner.js`: 22 | 23 | ```javascript 24 | const chromedriver = require('chromedriver'); 25 | const dayguard = require('dayguard'); 26 | const nwrun = require('nwrun'); 27 | const path = require('path'); 28 | 29 | nwrun({ 30 | standalone: true, 31 | src_folders: path.join(__dirname, 'tests'), 32 | output_folder: path.join(__dirname, 'reports'), 33 | custom_commands_path: [dayguard.custom_commands_path], 34 | custom_assertions_path: [dayguard.custom_assertions_path], 35 | selenium: { 36 | cli_args: { 37 | 'webdriver.chrome.driver': chromedriver.path, 38 | }, 39 | }, 40 | test_settings: { 41 | default: { 42 | desiredCapabilities: { 43 | browserName: 'chrome', 44 | }, 45 | screenshots: { 46 | enabled: true, 47 | path: path.join(__dirname, 'screenshots'), 48 | }, 49 | }, 50 | }, 51 | }, success => { 52 | if (!success) { 53 | process.exit(1); 54 | } 55 | }); 56 | ``` 57 | 58 | Save the following code as `tests/dayguard.js`: 59 | 60 | ```javascript 61 | module.exports = { 62 | 'Load an example page just for testing': browser => { 63 | browser 64 | .url('http://randomcolour.com/') 65 | .waitForElementVisible('body', 200); 66 | }, 67 | 'Take a screenshot and ask for differences': browser => { 68 | browser 69 | .assert.visualChangesOf('body') 70 | .end(); 71 | }, 72 | }; 73 | ``` 74 | 75 | Now just execute `node runner.js` and see your tests fail. 76 | 77 | Why? Because each time you load randoumcolour.com you'll get a different color... 78 | 79 | ## How it works? 80 | 81 | Each time `takeScreenshotFromElement()` gets called dayguard will do the following: 82 | 83 | - Save the screenshot as `screenshots///ref..png` 84 | - If there's no previous reference skip the next steps... 85 | - Compare the most recent screenshot with the latest one: 86 | - Fail if the difference is not below the given thresdold 87 | - Continue othwerwise... 88 | 89 | Every used selector will keep its saved positions as `screenshots///index.json` where each array-item will match the `` pattern: 90 | 91 | - `ref.0.png` — initial reference 92 | - `ref.0_1.png` — difference between `0` and `1` refs 93 | - `ref.1.png` — second reference 94 | - etc. 95 | 96 | Using this cache dayguard is able to effectively report any difference found. 97 | 98 | ## Why not use other tools? 99 | 100 | Dayguard leverages on NightwatchJS (Webdriver → Selenium) so you can take screenshots from real browsers and not just headless ones. 101 | 102 | > I've got really tired from trying other solutions (NightwatchCSS, PhantomJS, PhantomCSS, CasperJS, Grunt, Gulp, etc.) that relies on "toy" browsers exposing ugly APIs to enjoy. 103 | 104 | Meh. 105 | -------------------------------------------------------------------------------- /lib/assertions/visualChangesOf.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports.assertion = function visualChangesOf(selector, customName, threshold) { 4 | if (!selector) { 5 | throw new TypeError('assert.visualChangesOf() expects a selector'); 6 | } 7 | 8 | if (typeof customName === 'number') { 9 | threshold = customName; 10 | customName = undefined; 11 | } 12 | 13 | threshold = parseFloat(threshold || 1.33); 14 | 15 | this.message = `Testing if element <${selector}> is under ${threshold}% of changes`; 16 | this.expected = `< ${threshold}`; 17 | 18 | this.pass = value => { 19 | return value < threshold; 20 | }; 21 | 22 | this.value = result => { 23 | if (result.pending) { 24 | this.message = result.pending; 25 | return true; 26 | } 27 | 28 | return result.imageDiff.misMatchPercentage; 29 | }; 30 | 31 | this.command = callback => { 32 | this.api 33 | .takeScreenshotFromElement(selector, customName) 34 | .compareScreenshotFromElement(selector, customName, (result, done) => { 35 | callback(result); 36 | done(); 37 | }); 38 | 39 | return this; 40 | }; 41 | }; 42 | -------------------------------------------------------------------------------- /lib/commands/compareScreenshotFromElement.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const util = require('../helpers'); 4 | 5 | const resemble = require('node-resemble-js'); 6 | const fs = require('fs-extra'); 7 | const path = require('path'); 8 | 9 | function retrieveCache(client, selector, customName, readDirCallback) { 10 | const fixedSelector = util.normalize(selector); 11 | const fixedName = customName ? util.normalize(customName) : client.currentTest.module; 12 | const filepath = path.join(client.options.screenshotsPath, fixedName); 13 | const options = client.options.dayguard || {}; 14 | let customFilePath = filepath; 15 | if (client.globals.customScreenshotsPath) { 16 | customFilePath = path.join(client.globals.customScreenshotsPath, fixedName); 17 | } 18 | const cache = util.cache(options, customFilePath, fixedSelector); 19 | if (cache && client.globals.customScreenshotsPath) { 20 | const b = cache.src.length - 1; 21 | const fileType = '.png'; // file extension 22 | let referenceFile = ''; 23 | fs.readdir(path.join(customFilePath, fixedSelector), function (err, list) { 24 | if (err) throw err; 25 | for (let i = 0; i < list.length; i++) { 26 | if (path.extname(list[i]) === fileType) { 27 | referenceFile = list[i]; 28 | const customCache = { 29 | latest: path.join(customFilePath, fixedSelector, referenceFile), 30 | current: path.join(filepath, fixedSelector, `ref.${b}.png`), 31 | filepathDiff: path.join(filepath, fixedSelector, `diff.${b}.png`), 32 | }; 33 | readDirCallback(customCache); 34 | } 35 | } 36 | }); 37 | } 38 | 39 | if (cache && ((cache.src.length > 1) || options.ref)) { 40 | const a = options.ref ? '_ref' : (cache.src.length - 2); 41 | const b = cache.src.length - 1; 42 | 43 | return { 44 | latest: path.join(customFilePath, fixedSelector, `${options.ref ? a : (`ref.${a}`)}.png`), 45 | current: path.join(filepath, fixedSelector, `ref.${b}.png`), 46 | filepathDiff: path.join(filepath, fixedSelector, `ref.${a}_${b}.png`), 47 | }; 48 | } 49 | } 50 | 51 | module.exports.command = function compareScreenshotFromElement(selector, customName, done) { 52 | if (!this.options.screenshots) { 53 | throw new Error('Please enable screenshots to use this feature'); 54 | } 55 | 56 | if (typeof customName === 'function') { 57 | done = customName; 58 | customName = null; 59 | } 60 | 61 | if (!selector) { 62 | throw new TypeError('compareScreenshotFromElement() expects a selector'); 63 | } 64 | 65 | if (typeof done !== 'function') { 66 | throw new TypeError('compareScreenshotFromElement() expects a valid callback'); 67 | } 68 | if (this.globals.customScreenshotsPath) { 69 | return this 70 | .perform((api, cb) => { 71 | function compareImage(cache) { 72 | if (!cache) { 73 | return done.call(this, { pending: 'Nothing to compare, skipping...' }, cb); 74 | } 75 | 76 | if (!fs.existsSync(cache.latest)) { 77 | throw new Error(`Missing latest reference ${cache.latest}`); 78 | } 79 | 80 | if (!fs.existsSync(cache.current)) { 81 | throw new Error(`Missing current reference ${cache.current}`); 82 | } 83 | resemble(cache.current) 84 | .compareTo(cache.latest) 85 | .onComplete(data => { 86 | data.getDiffImage().pack() 87 | .pipe(fs.createWriteStream(cache.filepathDiff)) 88 | .on('finish', () => { 89 | done.call(this, { 90 | filepathDiff: cache.filepathDiff, 91 | imageDiff: data, 92 | }, cb); 93 | }); 94 | }); 95 | } 96 | retrieveCache(this, selector, customName, compareImage); 97 | }); 98 | } 99 | return this 100 | .perform((api, cb) => { 101 | const diffImages = retrieveCache(this, selector, customName); 102 | 103 | if (!diffImages) { 104 | return done.call(this, { pending: 'Nothing to compare, skipping..' }, cb); 105 | } 106 | 107 | if (!fs.existsSync(diffImages.latest)) { 108 | throw new Error(`Missing latest reference ${diffImages.latest}`); 109 | } 110 | 111 | if (!fs.existsSync(diffImages.current)) { 112 | throw new Error(`Missing current reference ${diffImages.current}`); 113 | } 114 | resemble(diffImages.current) 115 | .compareTo(diffImages.latest) 116 | .onComplete(data => { 117 | data.getDiffImage().pack() 118 | .pipe(fs.createWriteStream(diffImages.filepathDiff)) 119 | .on('finish', () => { 120 | done.call(this, { 121 | filepathDiff: diffImages.filepathDiff, 122 | imageDiff: data, 123 | }, cb); 124 | }); 125 | }); 126 | }); 127 | }; 128 | -------------------------------------------------------------------------------- /lib/commands/takeScreenshotFromElement.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const util = require('../helpers'); 4 | 5 | const fs = require('fs-extra'); 6 | const path = require('path'); 7 | const gm = require('gm'); 8 | 9 | function getElementPosition() { 10 | /* eslint-disable */ 11 | var el = document.querySelector(arguments[0]); 12 | var rect = el.getBoundingClientRect(); 13 | 14 | var ratio = window.devicePixelRatio || 1; 15 | 16 | // hide scrollbar for better diffs 17 | document.body.style.overflow = 'hidden'; 18 | 19 | return { 20 | height: rect.height * ratio, 21 | width: rect.width * ratio, 22 | left: rect.left * ratio, 23 | top: rect.top * ratio 24 | }; 25 | /* eslint-enable */ 26 | } 27 | 28 | function takeScreenshot(done, client, selector, position, imageData, customName) { 29 | const fixedName = customName ? util.normalize(customName) : client.currentTest.module; 30 | const filepath = path.join(client.options.screenshotsPath, fixedName); 31 | const options = client.options.dayguard || {}; 32 | 33 | let ref = path.join(filepath, '_ref.png'); 34 | 35 | if (typeof options.ref === 'string') { 36 | ref = path.join(filepath, `${options.ref}.png`); 37 | } 38 | 39 | if (options.ref && !fs.existsSync(ref)) { 40 | throw new Error(`Missing reference ${ref}`); 41 | } 42 | 43 | const fixedSelector = util.normalize(selector); 44 | const loadImage = gm.subClass({ imageMagick: !options.gm }); 45 | const indexedImages = util.cache(options, filepath, fixedSelector); 46 | const imageChunk = path.join(filepath, fixedSelector, `ref.${indexedImages.src.length}.png`); 47 | 48 | fs.outputFileSync(imageChunk, new Buffer(imageData, 'base64')); 49 | 50 | const shot = loadImage(imageChunk).quality(100); 51 | 52 | shot.crop(position.width, position.height, position.left, position.top); 53 | 54 | shot.write(imageChunk, err => { 55 | if (err) { 56 | throw err; 57 | } 58 | 59 | indexedImages.add(position, done); 60 | }); 61 | } 62 | 63 | module.exports.command = function takeScreenshotFromElement(selector, customName, extraTimeout) { 64 | if (!this.options.screenshots) { 65 | throw new Error('Please enable screenshots to use this feature'); 66 | } 67 | 68 | if (typeof customName === 'number') { 69 | extraTimeout = customName; 70 | customName = null; 71 | } 72 | 73 | if (!selector) { 74 | throw new TypeError('takeScreenshotFromElement() expects a selector'); 75 | } 76 | 77 | let position; 78 | 79 | return this.execute(getElementPosition, [selector], data => { 80 | position = data.value; 81 | }) 82 | .pause(extraTimeout || 100) 83 | .perform((api, cb) => { 84 | api.screenshot(false, result => { 85 | takeScreenshot(cb, this, selector, position, result.value, customName); 86 | }); 87 | }); 88 | }; 89 | 90 | -------------------------------------------------------------------------------- /lib/helpers.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const fs = require('fs-extra'); 4 | const path = require('path'); 5 | 6 | const CACHED = {}; 7 | 8 | function normalize(name) { 9 | return name.replace(/[^\w()._-]+/g, '_').replace(/\.+$|^\W+/g, ''); 10 | } 11 | 12 | function cache(options, filepath, fixedName) { 13 | const indexFile = path.join(filepath, fixedName, 'index.json'); 14 | const key = `${filepath}.${fixedName}`; 15 | 16 | if (!CACHED[key]) { 17 | CACHED[key] = { 18 | src: fs.existsSync(indexFile) 19 | ? fs.readJsonSync(indexFile) 20 | : [], 21 | 22 | add: (position, cb) => { 23 | CACHED[key].src.push(position); 24 | fs.outputJson(indexFile, CACHED[key].src, cb); 25 | }, 26 | }; 27 | } 28 | 29 | return CACHED[key]; 30 | } 31 | 32 | module.exports = { 33 | normalize, 34 | cache, 35 | }; 36 | -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const path = require('path'); 4 | 5 | module.exports = { 6 | custom_commands_path: path.join(__dirname, 'commands'), 7 | custom_assertions_path: path.join(__dirname, 'assertions'), 8 | }; 9 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "dayguard", 3 | "version": "0.2.1", 4 | "main": "lib/index.js", 5 | "dependencies": { 6 | "fs-extra": "^0.26.2", 7 | "gm": "^1.21.1", 8 | "node-resemble-js": "git+https://github.com/lksv/node-resemble.js.git" 9 | }, 10 | "devDependencies": { 11 | "eslint": "^3.19.0", 12 | "eslint-config-airbnb-base": "^11.1.3", 13 | "eslint-plugin-import": "^2.2.0" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | acorn-jsx@^3.0.0: 6 | version "3.0.1" 7 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 8 | dependencies: 9 | acorn "^3.0.4" 10 | 11 | acorn@^3.0.4: 12 | version "3.3.0" 13 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 14 | 15 | acorn@^5.0.1: 16 | version "5.0.3" 17 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.0.3.tgz#c460df08491463f028ccb82eab3730bf01087b3d" 18 | 19 | ajv-keywords@^1.0.0: 20 | version "1.5.1" 21 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 22 | 23 | ajv@^4.7.0: 24 | version "4.11.8" 25 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 26 | dependencies: 27 | co "^4.6.0" 28 | json-stable-stringify "^1.0.1" 29 | 30 | ansi-escapes@^1.1.0: 31 | version "1.4.0" 32 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 33 | 34 | ansi-regex@^2.0.0: 35 | version "2.1.1" 36 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 37 | 38 | ansi-styles@^2.2.1: 39 | version "2.2.1" 40 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 41 | 42 | argparse@^1.0.7: 43 | version "1.0.9" 44 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 45 | dependencies: 46 | sprintf-js "~1.0.2" 47 | 48 | array-parallel@~0.1.3: 49 | version "0.1.3" 50 | resolved "https://registry.yarnpkg.com/array-parallel/-/array-parallel-0.1.3.tgz#8f785308926ed5aa478c47e64d1b334b6c0c947d" 51 | 52 | array-series@~0.1.5: 53 | version "0.1.5" 54 | resolved "https://registry.yarnpkg.com/array-series/-/array-series-0.1.5.tgz#df5d37bfc5c2ef0755e2aa4f92feae7d4b5a972f" 55 | 56 | array-union@^1.0.1: 57 | version "1.0.2" 58 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 59 | dependencies: 60 | array-uniq "^1.0.1" 61 | 62 | array-uniq@^1.0.1: 63 | version "1.0.3" 64 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 65 | 66 | arrify@^1.0.0: 67 | version "1.0.1" 68 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 69 | 70 | babel-code-frame@^6.16.0: 71 | version "6.22.0" 72 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 73 | dependencies: 74 | chalk "^1.1.0" 75 | esutils "^2.0.2" 76 | js-tokens "^3.0.0" 77 | 78 | balanced-match@^1.0.0: 79 | version "1.0.0" 80 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 81 | 82 | brace-expansion@^1.1.7: 83 | version "1.1.8" 84 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 85 | dependencies: 86 | balanced-match "^1.0.0" 87 | concat-map "0.0.1" 88 | 89 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 90 | version "1.1.1" 91 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 92 | 93 | caller-path@^0.1.0: 94 | version "0.1.0" 95 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 96 | dependencies: 97 | callsites "^0.2.0" 98 | 99 | callsites@^0.2.0: 100 | version "0.2.0" 101 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 102 | 103 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 104 | version "1.1.3" 105 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 106 | dependencies: 107 | ansi-styles "^2.2.1" 108 | escape-string-regexp "^1.0.2" 109 | has-ansi "^2.0.0" 110 | strip-ansi "^3.0.0" 111 | supports-color "^2.0.0" 112 | 113 | circular-json@^0.3.1: 114 | version "0.3.1" 115 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 116 | 117 | cli-cursor@^1.0.1: 118 | version "1.0.2" 119 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 120 | dependencies: 121 | restore-cursor "^1.0.1" 122 | 123 | cli-width@^2.0.0: 124 | version "2.1.0" 125 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 126 | 127 | co@^4.6.0: 128 | version "4.6.0" 129 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 130 | 131 | code-point-at@^1.0.0: 132 | version "1.1.0" 133 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 134 | 135 | concat-map@0.0.1: 136 | version "0.0.1" 137 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 138 | 139 | concat-stream@^1.5.2: 140 | version "1.6.0" 141 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 142 | dependencies: 143 | inherits "^2.0.3" 144 | readable-stream "^2.2.2" 145 | typedarray "^0.0.6" 146 | 147 | contains-path@^0.1.0: 148 | version "0.1.0" 149 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 150 | 151 | core-util-is@~1.0.0: 152 | version "1.0.2" 153 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 154 | 155 | cross-spawn@^4.0.0: 156 | version "4.0.2" 157 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" 158 | dependencies: 159 | lru-cache "^4.0.1" 160 | which "^1.2.9" 161 | 162 | d@1: 163 | version "1.0.0" 164 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 165 | dependencies: 166 | es5-ext "^0.10.9" 167 | 168 | debug@^2.1.1, debug@^2.2.0, debug@^2.6.8: 169 | version "2.6.8" 170 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 171 | dependencies: 172 | ms "2.0.0" 173 | 174 | debug@~2.2.0: 175 | version "2.2.0" 176 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 177 | dependencies: 178 | ms "0.7.1" 179 | 180 | deep-is@~0.1.3: 181 | version "0.1.3" 182 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 183 | 184 | del@^2.0.2: 185 | version "2.2.2" 186 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 187 | dependencies: 188 | globby "^5.0.0" 189 | is-path-cwd "^1.0.0" 190 | is-path-in-cwd "^1.0.0" 191 | object-assign "^4.0.1" 192 | pify "^2.0.0" 193 | pinkie-promise "^2.0.0" 194 | rimraf "^2.2.8" 195 | 196 | doctrine@1.5.0: 197 | version "1.5.0" 198 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 199 | dependencies: 200 | esutils "^2.0.2" 201 | isarray "^1.0.0" 202 | 203 | doctrine@^2.0.0: 204 | version "2.0.0" 205 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 206 | dependencies: 207 | esutils "^2.0.2" 208 | isarray "^1.0.0" 209 | 210 | error-ex@^1.2.0: 211 | version "1.3.1" 212 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 213 | dependencies: 214 | is-arrayish "^0.2.1" 215 | 216 | es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14: 217 | version "0.10.23" 218 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.23.tgz#7578b51be974207a5487821b56538c224e4e7b38" 219 | dependencies: 220 | es6-iterator "2" 221 | es6-symbol "~3.1" 222 | 223 | es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1: 224 | version "2.0.1" 225 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512" 226 | dependencies: 227 | d "1" 228 | es5-ext "^0.10.14" 229 | es6-symbol "^3.1" 230 | 231 | es6-map@^0.1.3: 232 | version "0.1.5" 233 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 234 | dependencies: 235 | d "1" 236 | es5-ext "~0.10.14" 237 | es6-iterator "~2.0.1" 238 | es6-set "~0.1.5" 239 | es6-symbol "~3.1.1" 240 | event-emitter "~0.3.5" 241 | 242 | es6-set@~0.1.5: 243 | version "0.1.5" 244 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 245 | dependencies: 246 | d "1" 247 | es5-ext "~0.10.14" 248 | es6-iterator "~2.0.1" 249 | es6-symbol "3.1.1" 250 | event-emitter "~0.3.5" 251 | 252 | es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1: 253 | version "3.1.1" 254 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 255 | dependencies: 256 | d "1" 257 | es5-ext "~0.10.14" 258 | 259 | es6-weak-map@^2.0.1: 260 | version "2.0.2" 261 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 262 | dependencies: 263 | d "1" 264 | es5-ext "^0.10.14" 265 | es6-iterator "^2.0.1" 266 | es6-symbol "^3.1.1" 267 | 268 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 269 | version "1.0.5" 270 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 271 | 272 | escope@^3.6.0: 273 | version "3.6.0" 274 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 275 | dependencies: 276 | es6-map "^0.1.3" 277 | es6-weak-map "^2.0.1" 278 | esrecurse "^4.1.0" 279 | estraverse "^4.1.1" 280 | 281 | eslint-config-airbnb-base@^11.1.3: 282 | version "11.2.0" 283 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-11.2.0.tgz#19a9dc4481a26f70904545ec040116876018f853" 284 | 285 | eslint-import-resolver-node@^0.2.0: 286 | version "0.2.3" 287 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.2.3.tgz#5add8106e8c928db2cba232bcd9efa846e3da16c" 288 | dependencies: 289 | debug "^2.2.0" 290 | object-assign "^4.0.1" 291 | resolve "^1.1.6" 292 | 293 | eslint-module-utils@^2.0.0: 294 | version "2.1.1" 295 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.1.1.tgz#abaec824177613b8a95b299639e1b6facf473449" 296 | dependencies: 297 | debug "^2.6.8" 298 | pkg-dir "^1.0.0" 299 | 300 | eslint-plugin-import@^2.2.0: 301 | version "2.6.0" 302 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.6.0.tgz#2a4bbad36a078e052a3c830ce3dfbd6b8a12c6e5" 303 | dependencies: 304 | builtin-modules "^1.1.1" 305 | contains-path "^0.1.0" 306 | debug "^2.6.8" 307 | doctrine "1.5.0" 308 | eslint-import-resolver-node "^0.2.0" 309 | eslint-module-utils "^2.0.0" 310 | has "^1.0.1" 311 | lodash.cond "^4.3.0" 312 | minimatch "^3.0.3" 313 | read-pkg-up "^2.0.0" 314 | 315 | eslint@^3.19.0: 316 | version "3.19.0" 317 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.19.0.tgz#c8fc6201c7f40dd08941b87c085767386a679acc" 318 | dependencies: 319 | babel-code-frame "^6.16.0" 320 | chalk "^1.1.3" 321 | concat-stream "^1.5.2" 322 | debug "^2.1.1" 323 | doctrine "^2.0.0" 324 | escope "^3.6.0" 325 | espree "^3.4.0" 326 | esquery "^1.0.0" 327 | estraverse "^4.2.0" 328 | esutils "^2.0.2" 329 | file-entry-cache "^2.0.0" 330 | glob "^7.0.3" 331 | globals "^9.14.0" 332 | ignore "^3.2.0" 333 | imurmurhash "^0.1.4" 334 | inquirer "^0.12.0" 335 | is-my-json-valid "^2.10.0" 336 | is-resolvable "^1.0.0" 337 | js-yaml "^3.5.1" 338 | json-stable-stringify "^1.0.0" 339 | levn "^0.3.0" 340 | lodash "^4.0.0" 341 | mkdirp "^0.5.0" 342 | natural-compare "^1.4.0" 343 | optionator "^0.8.2" 344 | path-is-inside "^1.0.1" 345 | pluralize "^1.2.1" 346 | progress "^1.1.8" 347 | require-uncached "^1.0.2" 348 | shelljs "^0.7.5" 349 | strip-bom "^3.0.0" 350 | strip-json-comments "~2.0.1" 351 | table "^3.7.8" 352 | text-table "~0.2.0" 353 | user-home "^2.0.0" 354 | 355 | espree@^3.4.0: 356 | version "3.4.3" 357 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.3.tgz#2910b5ccd49ce893c2ffffaab4fd8b3a31b82374" 358 | dependencies: 359 | acorn "^5.0.1" 360 | acorn-jsx "^3.0.0" 361 | 362 | esprima@^3.1.1: 363 | version "3.1.3" 364 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 365 | 366 | esquery@^1.0.0: 367 | version "1.0.0" 368 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 369 | dependencies: 370 | estraverse "^4.0.0" 371 | 372 | esrecurse@^4.1.0: 373 | version "4.2.0" 374 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 375 | dependencies: 376 | estraverse "^4.1.0" 377 | object-assign "^4.0.1" 378 | 379 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: 380 | version "4.2.0" 381 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 382 | 383 | esutils@^2.0.2: 384 | version "2.0.2" 385 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 386 | 387 | event-emitter@~0.3.5: 388 | version "0.3.5" 389 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 390 | dependencies: 391 | d "1" 392 | es5-ext "~0.10.14" 393 | 394 | exit-hook@^1.0.0: 395 | version "1.1.1" 396 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 397 | 398 | fast-levenshtein@~2.0.4: 399 | version "2.0.6" 400 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 401 | 402 | figures@^1.3.5: 403 | version "1.7.0" 404 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 405 | dependencies: 406 | escape-string-regexp "^1.0.5" 407 | object-assign "^4.1.0" 408 | 409 | file-entry-cache@^2.0.0: 410 | version "2.0.0" 411 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 412 | dependencies: 413 | flat-cache "^1.2.1" 414 | object-assign "^4.0.1" 415 | 416 | find-up@^1.0.0: 417 | version "1.1.2" 418 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 419 | dependencies: 420 | path-exists "^2.0.0" 421 | pinkie-promise "^2.0.0" 422 | 423 | find-up@^2.0.0: 424 | version "2.1.0" 425 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 426 | dependencies: 427 | locate-path "^2.0.0" 428 | 429 | flat-cache@^1.2.1: 430 | version "1.2.2" 431 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 432 | dependencies: 433 | circular-json "^0.3.1" 434 | del "^2.0.2" 435 | graceful-fs "^4.1.2" 436 | write "^0.2.1" 437 | 438 | fs-extra@^0.26.2: 439 | version "0.26.7" 440 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.26.7.tgz#9ae1fdd94897798edab76d0918cf42d0c3184fa9" 441 | dependencies: 442 | graceful-fs "^4.1.2" 443 | jsonfile "^2.1.0" 444 | klaw "^1.0.0" 445 | path-is-absolute "^1.0.0" 446 | rimraf "^2.2.8" 447 | 448 | fs.realpath@^1.0.0: 449 | version "1.0.0" 450 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 451 | 452 | function-bind@^1.0.2: 453 | version "1.1.0" 454 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 455 | 456 | generate-function@^2.0.0: 457 | version "2.0.0" 458 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 459 | 460 | generate-object-property@^1.1.0: 461 | version "1.2.0" 462 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 463 | dependencies: 464 | is-property "^1.0.0" 465 | 466 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5: 467 | version "7.1.2" 468 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 469 | dependencies: 470 | fs.realpath "^1.0.0" 471 | inflight "^1.0.4" 472 | inherits "2" 473 | minimatch "^3.0.4" 474 | once "^1.3.0" 475 | path-is-absolute "^1.0.0" 476 | 477 | globals@^9.14.0: 478 | version "9.18.0" 479 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 480 | 481 | globby@^5.0.0: 482 | version "5.0.0" 483 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 484 | dependencies: 485 | array-union "^1.0.1" 486 | arrify "^1.0.0" 487 | glob "^7.0.3" 488 | object-assign "^4.0.1" 489 | pify "^2.0.0" 490 | pinkie-promise "^2.0.0" 491 | 492 | gm@^1.21.1: 493 | version "1.23.0" 494 | resolved "https://registry.yarnpkg.com/gm/-/gm-1.23.0.tgz#80a2fe9cbf131515024846444658461269f52661" 495 | dependencies: 496 | array-parallel "~0.1.3" 497 | array-series "~0.1.5" 498 | cross-spawn "^4.0.0" 499 | debug "~2.2.0" 500 | 501 | graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9: 502 | version "4.1.11" 503 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 504 | 505 | has-ansi@^2.0.0: 506 | version "2.0.0" 507 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 508 | dependencies: 509 | ansi-regex "^2.0.0" 510 | 511 | has@^1.0.1: 512 | version "1.0.1" 513 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 514 | dependencies: 515 | function-bind "^1.0.2" 516 | 517 | hosted-git-info@^2.1.4: 518 | version "2.4.2" 519 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67" 520 | 521 | ignore@^3.2.0: 522 | version "3.3.3" 523 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.3.tgz#432352e57accd87ab3110e82d3fea0e47812156d" 524 | 525 | imurmurhash@^0.1.4: 526 | version "0.1.4" 527 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 528 | 529 | inflight@^1.0.4: 530 | version "1.0.6" 531 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 532 | dependencies: 533 | once "^1.3.0" 534 | wrappy "1" 535 | 536 | inherits@2, inherits@^2.0.3, inherits@~2.0.3: 537 | version "2.0.3" 538 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 539 | 540 | inquirer@^0.12.0: 541 | version "0.12.0" 542 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 543 | dependencies: 544 | ansi-escapes "^1.1.0" 545 | ansi-regex "^2.0.0" 546 | chalk "^1.0.0" 547 | cli-cursor "^1.0.1" 548 | cli-width "^2.0.0" 549 | figures "^1.3.5" 550 | lodash "^4.3.0" 551 | readline2 "^1.0.1" 552 | run-async "^0.1.0" 553 | rx-lite "^3.1.2" 554 | string-width "^1.0.1" 555 | strip-ansi "^3.0.0" 556 | through "^2.3.6" 557 | 558 | interpret@^1.0.0: 559 | version "1.0.3" 560 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90" 561 | 562 | is-arrayish@^0.2.1: 563 | version "0.2.1" 564 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 565 | 566 | is-builtin-module@^1.0.0: 567 | version "1.0.0" 568 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 569 | dependencies: 570 | builtin-modules "^1.0.0" 571 | 572 | is-fullwidth-code-point@^1.0.0: 573 | version "1.0.0" 574 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 575 | dependencies: 576 | number-is-nan "^1.0.0" 577 | 578 | is-fullwidth-code-point@^2.0.0: 579 | version "2.0.0" 580 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 581 | 582 | is-my-json-valid@^2.10.0: 583 | version "2.16.0" 584 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" 585 | dependencies: 586 | generate-function "^2.0.0" 587 | generate-object-property "^1.1.0" 588 | jsonpointer "^4.0.0" 589 | xtend "^4.0.0" 590 | 591 | is-path-cwd@^1.0.0: 592 | version "1.0.0" 593 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 594 | 595 | is-path-in-cwd@^1.0.0: 596 | version "1.0.0" 597 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 598 | dependencies: 599 | is-path-inside "^1.0.0" 600 | 601 | is-path-inside@^1.0.0: 602 | version "1.0.0" 603 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 604 | dependencies: 605 | path-is-inside "^1.0.1" 606 | 607 | is-property@^1.0.0: 608 | version "1.0.2" 609 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 610 | 611 | is-resolvable@^1.0.0: 612 | version "1.0.0" 613 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 614 | dependencies: 615 | tryit "^1.0.1" 616 | 617 | isarray@^1.0.0, isarray@~1.0.0: 618 | version "1.0.0" 619 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 620 | 621 | isexe@^2.0.0: 622 | version "2.0.0" 623 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 624 | 625 | jpeg-js@0.2.0: 626 | version "0.2.0" 627 | resolved "https://registry.yarnpkg.com/jpeg-js/-/jpeg-js-0.2.0.tgz#53e448ec9d263e683266467e9442d2c5a2ef5482" 628 | 629 | js-tokens@^3.0.0: 630 | version "3.0.1" 631 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 632 | 633 | js-yaml@^3.5.1: 634 | version "3.8.4" 635 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.4.tgz#520b4564f86573ba96662af85a8cafa7b4b5a6f6" 636 | dependencies: 637 | argparse "^1.0.7" 638 | esprima "^3.1.1" 639 | 640 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 641 | version "1.0.1" 642 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 643 | dependencies: 644 | jsonify "~0.0.0" 645 | 646 | jsonfile@^2.1.0: 647 | version "2.4.0" 648 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" 649 | optionalDependencies: 650 | graceful-fs "^4.1.6" 651 | 652 | jsonify@~0.0.0: 653 | version "0.0.0" 654 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 655 | 656 | jsonpointer@^4.0.0: 657 | version "4.0.1" 658 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 659 | 660 | klaw@^1.0.0: 661 | version "1.3.1" 662 | resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" 663 | optionalDependencies: 664 | graceful-fs "^4.1.9" 665 | 666 | levn@^0.3.0, levn@~0.3.0: 667 | version "0.3.0" 668 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 669 | dependencies: 670 | prelude-ls "~1.1.2" 671 | type-check "~0.3.2" 672 | 673 | load-json-file@^2.0.0: 674 | version "2.0.0" 675 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 676 | dependencies: 677 | graceful-fs "^4.1.2" 678 | parse-json "^2.2.0" 679 | pify "^2.0.0" 680 | strip-bom "^3.0.0" 681 | 682 | locate-path@^2.0.0: 683 | version "2.0.0" 684 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 685 | dependencies: 686 | p-locate "^2.0.0" 687 | path-exists "^3.0.0" 688 | 689 | lodash.cond@^4.3.0: 690 | version "4.5.2" 691 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 692 | 693 | lodash@^4.0.0, lodash@^4.3.0: 694 | version "4.17.4" 695 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 696 | 697 | lru-cache@^4.0.1: 698 | version "4.1.1" 699 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 700 | dependencies: 701 | pseudomap "^1.0.2" 702 | yallist "^2.1.2" 703 | 704 | minimatch@^3.0.3, minimatch@^3.0.4: 705 | version "3.0.4" 706 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 707 | dependencies: 708 | brace-expansion "^1.1.7" 709 | 710 | minimist@0.0.8: 711 | version "0.0.8" 712 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 713 | 714 | mkdirp@^0.5.0, mkdirp@^0.5.1: 715 | version "0.5.1" 716 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 717 | dependencies: 718 | minimist "0.0.8" 719 | 720 | ms@0.7.1: 721 | version "0.7.1" 722 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 723 | 724 | ms@2.0.0: 725 | version "2.0.0" 726 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 727 | 728 | mute-stream@0.0.5: 729 | version "0.0.5" 730 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 731 | 732 | natural-compare@^1.4.0: 733 | version "1.4.0" 734 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 735 | 736 | "node-resemble-js@git+https://github.com/lksv/node-resemble.js.git": 737 | version "0.2.0" 738 | resolved "git+https://github.com/lksv/node-resemble.js.git#5cc719bb619d82100cb4d34345a4b12144bf1470" 739 | dependencies: 740 | jpeg-js "0.2.0" 741 | pngjs "~2.2.0" 742 | 743 | normalize-package-data@^2.3.2: 744 | version "2.3.8" 745 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" 746 | dependencies: 747 | hosted-git-info "^2.1.4" 748 | is-builtin-module "^1.0.0" 749 | semver "2 || 3 || 4 || 5" 750 | validate-npm-package-license "^3.0.1" 751 | 752 | number-is-nan@^1.0.0: 753 | version "1.0.1" 754 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 755 | 756 | object-assign@^4.0.1, object-assign@^4.1.0: 757 | version "4.1.1" 758 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 759 | 760 | once@^1.3.0: 761 | version "1.4.0" 762 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 763 | dependencies: 764 | wrappy "1" 765 | 766 | onetime@^1.0.0: 767 | version "1.1.0" 768 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 769 | 770 | optionator@^0.8.2: 771 | version "0.8.2" 772 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 773 | dependencies: 774 | deep-is "~0.1.3" 775 | fast-levenshtein "~2.0.4" 776 | levn "~0.3.0" 777 | prelude-ls "~1.1.2" 778 | type-check "~0.3.2" 779 | wordwrap "~1.0.0" 780 | 781 | os-homedir@^1.0.0: 782 | version "1.0.2" 783 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 784 | 785 | p-limit@^1.1.0: 786 | version "1.1.0" 787 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 788 | 789 | p-locate@^2.0.0: 790 | version "2.0.0" 791 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 792 | dependencies: 793 | p-limit "^1.1.0" 794 | 795 | parse-json@^2.2.0: 796 | version "2.2.0" 797 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 798 | dependencies: 799 | error-ex "^1.2.0" 800 | 801 | path-exists@^2.0.0: 802 | version "2.1.0" 803 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 804 | dependencies: 805 | pinkie-promise "^2.0.0" 806 | 807 | path-exists@^3.0.0: 808 | version "3.0.0" 809 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 810 | 811 | path-is-absolute@^1.0.0: 812 | version "1.0.1" 813 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 814 | 815 | path-is-inside@^1.0.1: 816 | version "1.0.2" 817 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 818 | 819 | path-parse@^1.0.5: 820 | version "1.0.5" 821 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 822 | 823 | path-type@^2.0.0: 824 | version "2.0.0" 825 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 826 | dependencies: 827 | pify "^2.0.0" 828 | 829 | pify@^2.0.0: 830 | version "2.3.0" 831 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 832 | 833 | pinkie-promise@^2.0.0: 834 | version "2.0.1" 835 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 836 | dependencies: 837 | pinkie "^2.0.0" 838 | 839 | pinkie@^2.0.0: 840 | version "2.0.4" 841 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 842 | 843 | pkg-dir@^1.0.0: 844 | version "1.0.0" 845 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 846 | dependencies: 847 | find-up "^1.0.0" 848 | 849 | pluralize@^1.2.1: 850 | version "1.2.1" 851 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 852 | 853 | pngjs@~2.2.0: 854 | version "2.2.0" 855 | resolved "https://registry.yarnpkg.com/pngjs/-/pngjs-2.2.0.tgz#649663609a0ebab87c8f08b3fe724048b51d9d7f" 856 | 857 | prelude-ls@~1.1.2: 858 | version "1.1.2" 859 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 860 | 861 | process-nextick-args@~1.0.6: 862 | version "1.0.7" 863 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 864 | 865 | progress@^1.1.8: 866 | version "1.1.8" 867 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 868 | 869 | pseudomap@^1.0.2: 870 | version "1.0.2" 871 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 872 | 873 | read-pkg-up@^2.0.0: 874 | version "2.0.0" 875 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 876 | dependencies: 877 | find-up "^2.0.0" 878 | read-pkg "^2.0.0" 879 | 880 | read-pkg@^2.0.0: 881 | version "2.0.0" 882 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 883 | dependencies: 884 | load-json-file "^2.0.0" 885 | normalize-package-data "^2.3.2" 886 | path-type "^2.0.0" 887 | 888 | readable-stream@^2.2.2: 889 | version "2.3.2" 890 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.2.tgz#5a04df05e4f57fe3f0dc68fdd11dc5c97c7e6f4d" 891 | dependencies: 892 | core-util-is "~1.0.0" 893 | inherits "~2.0.3" 894 | isarray "~1.0.0" 895 | process-nextick-args "~1.0.6" 896 | safe-buffer "~5.1.0" 897 | string_decoder "~1.0.0" 898 | util-deprecate "~1.0.1" 899 | 900 | readline2@^1.0.1: 901 | version "1.0.1" 902 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 903 | dependencies: 904 | code-point-at "^1.0.0" 905 | is-fullwidth-code-point "^1.0.0" 906 | mute-stream "0.0.5" 907 | 908 | rechoir@^0.6.2: 909 | version "0.6.2" 910 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 911 | dependencies: 912 | resolve "^1.1.6" 913 | 914 | require-uncached@^1.0.2: 915 | version "1.0.3" 916 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 917 | dependencies: 918 | caller-path "^0.1.0" 919 | resolve-from "^1.0.0" 920 | 921 | resolve-from@^1.0.0: 922 | version "1.0.1" 923 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 924 | 925 | resolve@^1.1.6: 926 | version "1.3.3" 927 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" 928 | dependencies: 929 | path-parse "^1.0.5" 930 | 931 | restore-cursor@^1.0.1: 932 | version "1.0.1" 933 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 934 | dependencies: 935 | exit-hook "^1.0.0" 936 | onetime "^1.0.0" 937 | 938 | rimraf@^2.2.8: 939 | version "2.6.1" 940 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 941 | dependencies: 942 | glob "^7.0.5" 943 | 944 | run-async@^0.1.0: 945 | version "0.1.0" 946 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 947 | dependencies: 948 | once "^1.3.0" 949 | 950 | rx-lite@^3.1.2: 951 | version "3.1.2" 952 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 953 | 954 | safe-buffer@~5.1.0: 955 | version "5.1.1" 956 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 957 | 958 | "semver@2 || 3 || 4 || 5": 959 | version "5.3.0" 960 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 961 | 962 | shelljs@^0.7.5: 963 | version "0.7.8" 964 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.8.tgz#decbcf874b0d1e5fb72e14b164a9683048e9acb3" 965 | dependencies: 966 | glob "^7.0.0" 967 | interpret "^1.0.0" 968 | rechoir "^0.6.2" 969 | 970 | slice-ansi@0.0.4: 971 | version "0.0.4" 972 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 973 | 974 | spdx-correct@~1.0.0: 975 | version "1.0.2" 976 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 977 | dependencies: 978 | spdx-license-ids "^1.0.2" 979 | 980 | spdx-expression-parse@~1.0.0: 981 | version "1.0.4" 982 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 983 | 984 | spdx-license-ids@^1.0.2: 985 | version "1.2.2" 986 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 987 | 988 | sprintf-js@~1.0.2: 989 | version "1.0.3" 990 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 991 | 992 | string-width@^1.0.1: 993 | version "1.0.2" 994 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 995 | dependencies: 996 | code-point-at "^1.0.0" 997 | is-fullwidth-code-point "^1.0.0" 998 | strip-ansi "^3.0.0" 999 | 1000 | string-width@^2.0.0: 1001 | version "2.0.0" 1002 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 1003 | dependencies: 1004 | is-fullwidth-code-point "^2.0.0" 1005 | strip-ansi "^3.0.0" 1006 | 1007 | string_decoder@~1.0.0: 1008 | version "1.0.3" 1009 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 1010 | dependencies: 1011 | safe-buffer "~5.1.0" 1012 | 1013 | strip-ansi@^3.0.0: 1014 | version "3.0.1" 1015 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1016 | dependencies: 1017 | ansi-regex "^2.0.0" 1018 | 1019 | strip-bom@^3.0.0: 1020 | version "3.0.0" 1021 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 1022 | 1023 | strip-json-comments@~2.0.1: 1024 | version "2.0.1" 1025 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1026 | 1027 | supports-color@^2.0.0: 1028 | version "2.0.0" 1029 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1030 | 1031 | table@^3.7.8: 1032 | version "3.8.3" 1033 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 1034 | dependencies: 1035 | ajv "^4.7.0" 1036 | ajv-keywords "^1.0.0" 1037 | chalk "^1.1.1" 1038 | lodash "^4.0.0" 1039 | slice-ansi "0.0.4" 1040 | string-width "^2.0.0" 1041 | 1042 | text-table@~0.2.0: 1043 | version "0.2.0" 1044 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 1045 | 1046 | through@^2.3.6: 1047 | version "2.3.8" 1048 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 1049 | 1050 | tryit@^1.0.1: 1051 | version "1.0.3" 1052 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 1053 | 1054 | type-check@~0.3.2: 1055 | version "0.3.2" 1056 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 1057 | dependencies: 1058 | prelude-ls "~1.1.2" 1059 | 1060 | typedarray@^0.0.6: 1061 | version "0.0.6" 1062 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 1063 | 1064 | user-home@^2.0.0: 1065 | version "2.0.0" 1066 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 1067 | dependencies: 1068 | os-homedir "^1.0.0" 1069 | 1070 | util-deprecate@~1.0.1: 1071 | version "1.0.2" 1072 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1073 | 1074 | validate-npm-package-license@^3.0.1: 1075 | version "3.0.1" 1076 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 1077 | dependencies: 1078 | spdx-correct "~1.0.0" 1079 | spdx-expression-parse "~1.0.0" 1080 | 1081 | which@^1.2.9: 1082 | version "1.2.14" 1083 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 1084 | dependencies: 1085 | isexe "^2.0.0" 1086 | 1087 | wordwrap@~1.0.0: 1088 | version "1.0.0" 1089 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 1090 | 1091 | wrappy@1: 1092 | version "1.0.2" 1093 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1094 | 1095 | write@^0.2.1: 1096 | version "0.2.1" 1097 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 1098 | dependencies: 1099 | mkdirp "^0.5.1" 1100 | 1101 | xtend@^4.0.0: 1102 | version "4.0.1" 1103 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 1104 | 1105 | yallist@^2.1.2: 1106 | version "2.1.2" 1107 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 1108 | --------------------------------------------------------------------------------