├── .eslintrc ├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── package.json ├── rollup.config.js ├── src └── index.js ├── test ├── .eslintrc ├── fixtures │ └── index.js ├── index.js └── mocha.opts └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "ecmaFeatures": { 3 | "modules": true 4 | }, 5 | "parserOptions": { 6 | "sourceType": "module" 7 | }, 8 | "env": { 9 | "es6": true, 10 | "browser": true 11 | }, 12 | "rules": { 13 | "no-unused-vars": 2, 14 | "no-undef": 2, 15 | "eqeqeq": 2, 16 | "guard-for-in": 2, 17 | "no-extend-native": 2, 18 | "wrap-iife": 2, 19 | "new-cap": 2, 20 | "no-caller": 2, 21 | "no-multi-str": 0, 22 | "dot-notation": 0, 23 | "semi": [2, "always"], 24 | "strict": [2, "global"], 25 | "valid-jsdoc": 1, 26 | "no-irregular-whitespace": 1, 27 | "no-multi-spaces": 2, 28 | "one-var": [2, "never"], 29 | "constructor-super": 2, 30 | "no-this-before-super": 2, 31 | "no-var": 2, 32 | "prefer-const": 1, 33 | "no-const-assign": 2 34 | }, 35 | "globals": { 36 | "require": false, 37 | "module": false, 38 | "exports": false 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | language: node_js 3 | node_js: 4 | - "4" 5 | - "6" 6 | env: 7 | global: 8 | - BUILD_TIMEOUT=10000 9 | install: npm install 10 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 [these people](https://github.com/phamann/rollup-plugin-hash/graphs/contributors) 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 13 | all 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 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # rollup-plugin-hash [![Travis Build Status][travis-img]][travis] 2 | 3 | [travis-img]: https://travis-ci.org/phamann/rollup-plugin-hash.svg 4 | [travis]: https://travis-ci.org/phamann/rollup-plugin-hash 5 | [rollup]: https://github.com/rollup/rollup 6 | 7 | [Rollup] plugin to compose bundle output filenames with unique hashes, to facilitate long-term caching of your static resources. 8 | 9 | It uses is simple placeholder pattern to substitue filename with bundle hash. I.e. 10 | ``` 11 | main.[hash].js 12 | ``` 13 | becomes: 14 | ``` 15 | main.07d2bf0d12655d9f51c0637718da4889.js 16 | ``` 17 | 18 | ## Install 19 | 20 | via npm: 21 | ```sh 22 | npm install --save-dev rollup-plugin-hash 23 | ``` 24 | 25 | via yarn: 26 | ```sh 27 | yarn add --dev rollup-plugin-hash 28 | ``` 29 | 30 | ## Usage 31 | 32 | ```js 33 | import { rollup } from 'rollup'; 34 | import hash from 'rollup-plugin-hash'; 35 | 36 | rollup({ 37 | entry: 'main.js', 38 | plugins: [ 39 | hash({ 40 | dest: 'main.[hash].js' 41 | }) 42 | ] 43 | }); 44 | ``` 45 | 46 | Meanwhile, if dest filename is written the following way, only first 4 characters of hash will 47 | be used in final filename: `main.[hash:4].js`. You could change this number to modify the 48 | output result. 49 | 50 | ## Options 51 | 52 | ### dest 53 | 54 | Type: `string` 55 | Required: `true` 56 | 57 | The template of your filename destination. Must include the placeholder `[hash]` to be replaced. 58 | 59 | ### replace 60 | 61 | Type: `boolean` 62 | Default: `false` 63 | Required: `false` 64 | 65 | Whether the hashed version should replace the main output file generated by Rollup. 66 | Useful in CI environments where you don't need any non-hashed assets. 67 | 68 | ### algorithm 69 | 70 | Type: `string` 71 | Default: `sha1` 72 | Required: `true` 73 | 74 | Hashing algorithm used to generate hash. Can be one of `md5`, `sha1`, `sha256`, `sha512` 75 | 76 | ### manifest 77 | 78 | Type: `string` 79 | Required: `false` 80 | 81 | Filename to write a manifest to. Will generate a JSON manifest mapping input filename to hashed output filename. 82 | Useful if you want to dynamically generate link to your hashed output server-side. 83 | 84 | Example manifest: 85 | ```json 86 | { 87 | "main.js": "main.56770a64be1a1132502b276c4132a76bb94d9e1b.js" 88 | } 89 | ``` 90 | 91 | ### manifestKey 92 | 93 | Type: `string` 94 | Default: `bundle.dest` 95 | Required: `false` 96 | 97 | The filename used as the input key in the generated manifest map. 98 | Useful in certain build setups where `path.resolve` is needed as `bundle.dest` but not in the manifest. 99 | 100 | ### callback 101 | 102 | Type: `function` 103 | Required: `false` 104 | 105 | Callback which is called with the resulting hashed filename. This is useful if you are integrating with other build steps and want to store the filename locally to be used in subsequent configs etc. 106 | 107 | # License 108 | 109 | MIT © 110 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "rollup-plugin-hash", 3 | "version": "1.3.0", 4 | "description": "Rollup plugin to add a checksum to your destination filename", 5 | "main": "dist/rollup-plugin-hash.js", 6 | "module": "dist/rollup-plugin-hash.es.js", 7 | "jsnext:main": "dist/rollup-plugin-hash.es.js", 8 | "repository": "http://github.com/phamann/rollup-plugin-hash", 9 | "author": "Patrick Hamann", 10 | "license": "MIT", 11 | "keywords": [ 12 | "rollup", 13 | "rollup-plugin", 14 | "hash", 15 | "rev" 16 | ], 17 | "scripts": { 18 | "lint": "eslint src/index.js", 19 | "pretest": "npm run build", 20 | "test": "mocha", 21 | "build": "rollup -c", 22 | "prepublish": "npm run lint && npm test && npm run build" 23 | }, 24 | "devDependencies": { 25 | "buble": "^0.15.2", 26 | "chai": "^3.5.0", 27 | "chai-as-promised": "^6.0.0", 28 | "chai-spies": "^0.7.1", 29 | "eslint": "^3.13.1", 30 | "mocha": "^3.2.0", 31 | "rollup": "^0.48.0", 32 | "rollup-plugin-buble": "^0.15.0", 33 | "rollup-plugin-commonjs": "^7.0.0", 34 | "rollup-plugin-node-resolve": "^2.0.0" 35 | }, 36 | "dependencies": { 37 | "hasha": "^2.2.0" 38 | }, 39 | "files": [ 40 | "dist", 41 | "README.md" 42 | ] 43 | } 44 | -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- 1 | import commonjs from 'rollup-plugin-commonjs'; 2 | import nodeResolve from 'rollup-plugin-node-resolve'; 3 | import buble from 'rollup-plugin-buble'; 4 | 5 | export default { 6 | input: 'src/index.js', 7 | plugins: [ 8 | buble({ 9 | include: [ 'src/index.js' ], 10 | target: { 11 | node: '0.12' 12 | } 13 | }), 14 | commonjs(), 15 | nodeResolve({ 16 | jsnext: true 17 | }) 18 | ], 19 | external: [ 20 | 'fs', 21 | 'path', 22 | 'hasha' 23 | ], 24 | output: [ 25 | { file: 'dist/rollup-plugin-hash.js', format: 'cjs' }, 26 | { file: 'dist/rollup-plugin-hash.es.js', format: 'es' } 27 | ] 28 | }; 29 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import hasha from 'hasha'; 2 | import fs from 'fs'; 3 | import path from 'path'; 4 | 5 | const algorithms = { 6 | 'md5': true, 7 | 'sha1': true, 8 | 'sha256': true, 9 | 'sha512': true 10 | }; 11 | 12 | const defaultOptions = { 13 | algorithm: 'sha1', 14 | replace: false 15 | }; 16 | 17 | const msg = { 18 | noTemplate: '[Hash] Destination filename must contain `[hash]` template.', 19 | noAlgorithm: '[Hash] Algorithm can only be one of: md5, sha1, sha256, sha512', 20 | noManifest: '[Hash] Manifest filename must be a string', 21 | noManifestKey: '[Hash] Key for manifest filename must be a string' 22 | }; 23 | 24 | const pattern = /\[hash(?::(\d+))?\]/; 25 | 26 | function hasTemplate(dest) { 27 | return pattern.test(dest); 28 | } 29 | 30 | function generateManifest(input, output) { 31 | return JSON.stringify({[input]: output}); 32 | } 33 | 34 | function formatFilename(dest, hash) { 35 | const match = pattern.exec(dest); 36 | const length = match && match[1]; 37 | let hashResult = hash; 38 | if (length) { 39 | hashResult = hash.substr(0, +length); 40 | } 41 | return dest.replace(pattern, hashResult); 42 | } 43 | 44 | function mkdirpath (dest) { 45 | const dir = path.dirname(dest); 46 | try { 47 | fs.readdirSync(dir); 48 | } catch ( err ) { 49 | mkdirpath( dir ); 50 | fs.mkdirSync( dir ); 51 | } 52 | } 53 | 54 | function logError(msg) { 55 | throw new Error(msg); 56 | } 57 | 58 | export default function hash(opts = {}) { 59 | const options = Object.assign({}, defaultOptions, opts); 60 | 61 | return { 62 | name: 'hash', 63 | onwrite: function(bundle, data) { 64 | const destinationOption = options.output ? options.output.file : options.dest; 65 | const builtFile = bundle.file || bundle.dest; 66 | 67 | if(!destinationOption || !hasTemplate(destinationOption)) { 68 | logError(msg.noTemplate); 69 | return false; 70 | } 71 | 72 | if(!algorithms[options.algorithm]) { 73 | logError(msg.noAlgorithm); 74 | return false; 75 | } 76 | 77 | if(options.manifest && typeof options.manifest !== 'string') { 78 | logError(msg.noManifest); 79 | return false; 80 | } 81 | 82 | if(options.manifestKey && typeof options.manifestKey !== 'string') { 83 | logError(msg.noManifestKey); 84 | return false; 85 | } 86 | 87 | const hash = hasha(data.code, options); 88 | const fileName = formatFilename(destinationOption, hash); 89 | 90 | if(options.replace) { 91 | fs.unlinkSync(builtFile); 92 | } 93 | 94 | if(options.manifest) { 95 | const manifest = generateManifest(options.manifestKey || builtFile, fileName); 96 | mkdirpath(options.manifest); 97 | fs.writeFileSync(options.manifest, manifest, 'utf8'); 98 | } 99 | 100 | mkdirpath(fileName); 101 | 102 | let code = data.code; 103 | if (bundle.sourcemap) { 104 | const basename = path.basename(fileName); 105 | data.map.file = basename; 106 | 107 | let url; 108 | if (bundle.sourcemap === 'inline') { 109 | url = data.map.toUrl(); 110 | } else { 111 | url = basename + '.map'; 112 | fs.writeFileSync(fileName + '.map', data.map.toString()); 113 | } 114 | 115 | code += `\n//# sourceMappingURL=${url}`; 116 | } 117 | 118 | fs.writeFileSync(fileName, code, 'utf8'); 119 | 120 | if(options.callback && typeof options.callback === 'function') { 121 | options.callback(fileName); 122 | } 123 | } 124 | }; 125 | } 126 | -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "globals": { 3 | "chai": true, 4 | "describe": true, 5 | "it": true, 6 | "expect": true, 7 | "beforeEach": true, 8 | "afterEach": true, 9 | "before": true, 10 | "after": true 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /test/fixtures/index.js: -------------------------------------------------------------------------------- 1 | const hello = 'hello world'; 2 | 3 | export default hello; 4 | -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- 1 | /* global process */ 2 | const fs = require('fs'); 3 | const hash = require('../'); 4 | const { rollup } = require('rollup'); 5 | const chai = require('chai'); 6 | const expect = chai.expect; 7 | const chaiAsPromised = require('chai-as-promised'); 8 | const chaiSpies = require('chai-spies'); 9 | 10 | chai.use(chaiSpies); 11 | chai.use(chaiAsPromised); 12 | process.chdir('test'); 13 | 14 | const results = { 15 | 'md5': '07d2bf0d12655d9f51c0637718da4889.js', 16 | 'sha1': '56770a64be1a1132502b276c4132a76bb94d9e1b.js', 17 | 'manifest': 'manifest.json', 18 | 'manifestCustomInput': 'manifestCustomInput.json' 19 | }; 20 | 21 | function hashWithOptions(options, outputOptions) { 22 | return rollup({ 23 | input: 'fixtures/index.js', 24 | plugins: [ 25 | hash(options) 26 | ] 27 | }).then(bundle => { 28 | return bundle.write(Object.assign({ 29 | format: 'es', 30 | file: 'tmp/index.js' 31 | }, outputOptions)); 32 | }); 33 | } 34 | 35 | function rmDirectoryRecursive(path) { 36 | if(fs.existsSync(path)) { 37 | fs.readdirSync(path).forEach(file => { 38 | const curPath = `${path}/${file}`; 39 | if(fs.lstatSync(curPath).isDirectory()) { 40 | rmDirectoryRecursive(curPath); 41 | } else { 42 | fs.unlinkSync(curPath); 43 | } 44 | }); 45 | fs.rmdirSync(path); 46 | } 47 | }; 48 | 49 | function readJson(file) { 50 | return JSON.parse(fs.readFileSync(file, 'utf-8')); 51 | } 52 | 53 | describe('rollup-plugin-hash', () => { 54 | 55 | afterEach(() => { 56 | rmDirectoryRecursive('tmp'); 57 | }); 58 | 59 | it('should hash destination filenames', () => { 60 | const res = hashWithOptions({ dest: 'tmp/[hash].js' }); 61 | return expect(res).to.be.fulfilled; 62 | }); 63 | 64 | it('should fail if no destination string supplied', () => { 65 | const res = hashWithOptions({}); 66 | return expect(res).to.be.rejected; 67 | }); 68 | 69 | it(`should fail if supplied algorithm isn't supported`, () => { 70 | const res = hashWithOptions({ dest: 'tmp/[hash].js', algorithm: 'foo' }); 71 | return expect(res).to.be.rejected; 72 | }); 73 | 74 | it('should replace dest filename template with hash of bundle', () => { 75 | const res = hashWithOptions({ dest: 'tmp/[hash].js' }); 76 | return res.then(() => { 77 | const tmp = fs.readdirSync('tmp'); 78 | expect(tmp).to.contain(results.sha1); 79 | }); 80 | }); 81 | 82 | it('should create a sourcemap, if applicable', () => { 83 | const res = hashWithOptions({ dest: 'tmp/[hash].js' }, { sourcemap: true }); 84 | return res.then(() => { 85 | const tmp = fs.readdirSync('tmp'); 86 | expect(tmp).to.contain(results.sha1); 87 | expect(tmp).to.contain(results.sha1 + '.map'); 88 | const code = fs.readFileSync(`tmp/${results.sha1}`, 'utf-8'); 89 | expect(code).to.contain(`//# sourceMappingURL=${results.sha1}.map`); 90 | const map = readJson(`tmp/${results.sha1}.map`); 91 | expect(map.file).to.equal(results.sha1); 92 | }); 93 | }); 94 | 95 | it('should attach an inline sourcemap, if applicable', () => { 96 | const res = hashWithOptions({ dest: 'tmp/[hash].js' }, { sourcemap: 'inline' }); 97 | return res.then(() => { 98 | const tmp = fs.readdirSync('tmp'); 99 | expect(tmp).to.contain(results.sha1); 100 | expect(tmp).not.to.contain(results.sha1 + '.map'); 101 | const code = fs.readFileSync(`tmp/${results.sha1}`, 'utf-8'); 102 | const base64 = /^\/\/# sourceMappingURL=data:application\/json;charset=utf-8;base64,(.+)/m.exec(code)[1]; 103 | const json = new Buffer(base64, 'base64').toString(); 104 | const map = JSON.parse(json); 105 | expect(map.file).to.equal(results.sha1); 106 | }); 107 | }); 108 | 109 | it('should support alternative hashing algorithms if configured', () => { 110 | const res = hashWithOptions({ dest: 'tmp/[hash].js', algorithm: 'md5' }); 111 | return res.then(() => { 112 | const tmp = fs.readdirSync('tmp'); 113 | expect(tmp).to.contain(results.md5); 114 | }); 115 | }); 116 | 117 | it('should replace original bundle with hashed version if configured', () => { 118 | const res = hashWithOptions({ dest: 'tmp/[hash].js', replace: true }); 119 | return res.then(() => { 120 | const tmp = fs.readdirSync('tmp'); 121 | expect(tmp).to.have.length(1); 122 | expect(tmp).to.contain(results.sha1); 123 | }); 124 | }); 125 | 126 | it('should replace dest filename template with sub-string of bundle hash', () => { 127 | const res = hashWithOptions({ dest: 'tmp/[hash:4].js' }); 128 | return res.then(() => { 129 | const tmp = fs.readdirSync('tmp'); 130 | expect(tmp).to.contain(`${results.sha1.substr(0, 4)}.js`); 131 | }); 132 | }); 133 | 134 | it('should use bundle hash when substring length is greater then original', () => { 135 | const res = hashWithOptions({ dest: 'tmp/[hash:41].js' }); 136 | return res.then(() => { 137 | const tmp = fs.readdirSync('tmp'); 138 | expect(tmp).to.contain(results.sha1); 139 | }); 140 | }); 141 | 142 | it(`should create dest folder structure if doesn't exist`, () => { 143 | const res = hashWithOptions({ dest: 'tmp/test/[hash].js' }); 144 | return res.then(() => { 145 | const isDirectory = fs.lstatSync('tmp/test').isDirectory(); 146 | expect(isDirectory).to.be.true; 147 | }); 148 | }); 149 | 150 | it('should support the hashing being a directory name', () => { 151 | const res = hashWithOptions({ dest: 'tmp/[hash]/index.js' }); 152 | return res.then(() => { 153 | const hash = results.sha1.replace('.js', ''); 154 | const isDirectory = fs.lstatSync('tmp/' + hash).isDirectory(); 155 | expect(isDirectory).to.be.true; 156 | }); 157 | }); 158 | 159 | it('should create a manifest.json if configured', () => { 160 | const res = hashWithOptions({ dest: 'tmp/[hash].js', manifest: 'tmp/manifest.json' }); 161 | return res.then(() => { 162 | const tmp = fs.readdirSync('tmp'); 163 | const manifest = require('./tmp/manifest.json'); 164 | expect(tmp).to.contain(results.manifest); 165 | expect(manifest).to.be.an('object'); 166 | expect(manifest).to.have.property('tmp/index.js'); 167 | expect(manifest['tmp/index.js']).to.equal('tmp/' + results.sha1); 168 | }); 169 | }); 170 | 171 | it('should support custom manifest input name', () => { 172 | const res = hashWithOptions({ manifestKey: 'custom/dir/index.js', dest: 'tmp/[hash].js', manifest: 'tmp/manifestCustomInput.json' }); 173 | return res.then(() => { 174 | const tmp = fs.readdirSync('tmp'); 175 | const manifest = require('./tmp/manifestCustomInput.json'); 176 | expect(tmp).to.contain(results.manifestCustomInput); 177 | expect(manifest).to.be.an('object'); 178 | expect(manifest).to.have.property('custom/dir/index.js'); 179 | expect(manifest['custom/dir/index.js']).to.equal('tmp/' + results.sha1); 180 | }); 181 | }); 182 | 183 | it('should call a callback with the hashed filename, if supplied', () => { 184 | const callback = chai.spy(); 185 | const res = hashWithOptions({ dest: 'tmp/[hash].js', manifest: 'tmp/manifest.json', callback }); 186 | return res.then(() => { 187 | expect(callback).to.have.been.called.once; 188 | expect(callback).to.have.been.called.with(`tmp/${results.sha1}`); 189 | }); 190 | }); 191 | }); 192 | -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --compilers js:buble/register 2 | -------------------------------------------------------------------------------- /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, acorn-jsx@^3.0.1: 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-object-spread@^1.0.0: 12 | version "1.0.0" 13 | resolved "https://registry.yarnpkg.com/acorn-object-spread/-/acorn-object-spread-1.0.0.tgz#48ead0f4a8eb16995a17a0db9ffc6acaada4ba68" 14 | dependencies: 15 | acorn "^3.1.0" 16 | 17 | acorn@^3.0.4, acorn@^3.1.0, acorn@^3.3.0: 18 | version "3.3.0" 19 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 20 | 21 | acorn@^4.0.1: 22 | version "4.0.4" 23 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.4.tgz#17a8d6a7a6c4ef538b814ec9abac2779293bf30a" 24 | 25 | ajv-keywords@^1.0.0: 26 | version "1.5.0" 27 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.0.tgz#c11e6859eafff83e0dafc416929472eca946aa2c" 28 | 29 | ajv@^4.7.0: 30 | version "4.10.4" 31 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.10.4.tgz#c0974dd00b3464984892d6010aa9c2c945933254" 32 | dependencies: 33 | co "^4.6.0" 34 | json-stable-stringify "^1.0.1" 35 | 36 | ansi-escapes@^1.1.0: 37 | version "1.4.0" 38 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 39 | 40 | ansi-regex@^2.0.0: 41 | version "2.1.1" 42 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 43 | 44 | ansi-styles@^2.2.1: 45 | version "2.2.1" 46 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 47 | 48 | argparse@^1.0.7: 49 | version "1.0.9" 50 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 51 | dependencies: 52 | sprintf-js "~1.0.2" 53 | 54 | array-union@^1.0.1: 55 | version "1.0.2" 56 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 57 | dependencies: 58 | array-uniq "^1.0.1" 59 | 60 | array-uniq@^1.0.1: 61 | version "1.0.3" 62 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 63 | 64 | arrify@^1.0.0: 65 | version "1.0.1" 66 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 67 | 68 | assertion-error@^1.0.1: 69 | version "1.0.2" 70 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.0.2.tgz#13ca515d86206da0bac66e834dd397d87581094c" 71 | 72 | babel-code-frame@^6.16.0: 73 | version "6.20.0" 74 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.20.0.tgz#b968f839090f9a8bc6d41938fb96cb84f7387b26" 75 | dependencies: 76 | chalk "^1.1.0" 77 | esutils "^2.0.2" 78 | js-tokens "^2.0.0" 79 | 80 | balanced-match@^0.4.1: 81 | version "0.4.2" 82 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 83 | 84 | brace-expansion@^1.0.0: 85 | version "1.1.6" 86 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 87 | dependencies: 88 | balanced-match "^0.4.1" 89 | concat-map "0.0.1" 90 | 91 | browser-resolve@^1.11.0: 92 | version "1.11.2" 93 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 94 | dependencies: 95 | resolve "1.1.7" 96 | 97 | browser-stdout@1.3.0: 98 | version "1.3.0" 99 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" 100 | 101 | buble@^0.15.0, buble@^0.15.2: 102 | version "0.15.2" 103 | resolved "https://registry.yarnpkg.com/buble/-/buble-0.15.2.tgz#547fc47483f8e5e8176d82aa5ebccb183b02d613" 104 | dependencies: 105 | acorn "^3.3.0" 106 | acorn-jsx "^3.0.1" 107 | acorn-object-spread "^1.0.0" 108 | chalk "^1.1.3" 109 | magic-string "^0.14.0" 110 | minimist "^1.2.0" 111 | os-homedir "^1.0.1" 112 | 113 | buffer-shims@^1.0.0: 114 | version "1.0.0" 115 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 116 | 117 | builtin-modules@^1.1.0: 118 | version "1.1.1" 119 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 120 | 121 | caller-path@^0.1.0: 122 | version "0.1.0" 123 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 124 | dependencies: 125 | callsites "^0.2.0" 126 | 127 | callsites@^0.2.0: 128 | version "0.2.0" 129 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 130 | 131 | chai-as-promised@^6.0.0: 132 | version "6.0.0" 133 | resolved "https://registry.yarnpkg.com/chai-as-promised/-/chai-as-promised-6.0.0.tgz#1a02a433a6f24dafac63b9c96fa1684db1aa8da6" 134 | dependencies: 135 | check-error "^1.0.2" 136 | 137 | chai-spies@^0.7.1: 138 | version "0.7.1" 139 | resolved "https://registry.yarnpkg.com/chai-spies/-/chai-spies-0.7.1.tgz#343d99f51244212e8b17e64b93996ff7b2c2a9b1" 140 | 141 | chai@^3.5.0: 142 | version "3.5.0" 143 | resolved "https://registry.yarnpkg.com/chai/-/chai-3.5.0.tgz#4d02637b067fe958bdbfdd3a40ec56fef7373247" 144 | dependencies: 145 | assertion-error "^1.0.1" 146 | deep-eql "^0.1.3" 147 | type-detect "^1.0.0" 148 | 149 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 150 | version "1.1.3" 151 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 152 | dependencies: 153 | ansi-styles "^2.2.1" 154 | escape-string-regexp "^1.0.2" 155 | has-ansi "^2.0.0" 156 | strip-ansi "^3.0.0" 157 | supports-color "^2.0.0" 158 | 159 | check-error@^1.0.2: 160 | version "1.0.2" 161 | resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" 162 | 163 | circular-json@^0.3.1: 164 | version "0.3.1" 165 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 166 | 167 | cli-cursor@^1.0.1: 168 | version "1.0.2" 169 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 170 | dependencies: 171 | restore-cursor "^1.0.1" 172 | 173 | cli-width@^2.0.0: 174 | version "2.1.0" 175 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 176 | 177 | co@^4.6.0: 178 | version "4.6.0" 179 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 180 | 181 | code-point-at@^1.0.0: 182 | version "1.1.0" 183 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 184 | 185 | commander@2.9.0: 186 | version "2.9.0" 187 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 188 | dependencies: 189 | graceful-readlink ">= 1.0.0" 190 | 191 | concat-map@0.0.1: 192 | version "0.0.1" 193 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 194 | 195 | concat-stream@^1.4.6: 196 | version "1.6.0" 197 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 198 | dependencies: 199 | inherits "^2.0.3" 200 | readable-stream "^2.2.2" 201 | typedarray "^0.0.6" 202 | 203 | core-util-is@~1.0.0: 204 | version "1.0.2" 205 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 206 | 207 | d@^0.1.1, d@~0.1.1: 208 | version "0.1.1" 209 | resolved "https://registry.yarnpkg.com/d/-/d-0.1.1.tgz#da184c535d18d8ee7ba2aa229b914009fae11309" 210 | dependencies: 211 | es5-ext "~0.10.2" 212 | 213 | debug@2.2.0, debug@^2.1.1: 214 | version "2.2.0" 215 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 216 | dependencies: 217 | ms "0.7.1" 218 | 219 | deep-eql@^0.1.3: 220 | version "0.1.3" 221 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-0.1.3.tgz#ef558acab8de25206cd713906d74e56930eb69f2" 222 | dependencies: 223 | type-detect "0.1.1" 224 | 225 | deep-is@~0.1.3: 226 | version "0.1.3" 227 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 228 | 229 | del@^2.0.2: 230 | version "2.2.2" 231 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 232 | dependencies: 233 | globby "^5.0.0" 234 | is-path-cwd "^1.0.0" 235 | is-path-in-cwd "^1.0.0" 236 | object-assign "^4.0.1" 237 | pify "^2.0.0" 238 | pinkie-promise "^2.0.0" 239 | rimraf "^2.2.8" 240 | 241 | diff@1.4.0: 242 | version "1.4.0" 243 | resolved "https://registry.yarnpkg.com/diff/-/diff-1.4.0.tgz#7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf" 244 | 245 | doctrine@^1.2.2: 246 | version "1.5.0" 247 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 248 | dependencies: 249 | esutils "^2.0.2" 250 | isarray "^1.0.0" 251 | 252 | es5-ext@^0.10.7, es5-ext@^0.10.8, es5-ext@~0.10.11, es5-ext@~0.10.2, es5-ext@~0.10.7: 253 | version "0.10.12" 254 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.12.tgz#aa84641d4db76b62abba5e45fd805ecbab140047" 255 | dependencies: 256 | es6-iterator "2" 257 | es6-symbol "~3.1" 258 | 259 | es6-iterator@2: 260 | version "2.0.0" 261 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.0.tgz#bd968567d61635e33c0b80727613c9cb4b096bac" 262 | dependencies: 263 | d "^0.1.1" 264 | es5-ext "^0.10.7" 265 | es6-symbol "3" 266 | 267 | es6-map@^0.1.3: 268 | version "0.1.4" 269 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.4.tgz#a34b147be224773a4d7da8072794cefa3632b897" 270 | dependencies: 271 | d "~0.1.1" 272 | es5-ext "~0.10.11" 273 | es6-iterator "2" 274 | es6-set "~0.1.3" 275 | es6-symbol "~3.1.0" 276 | event-emitter "~0.3.4" 277 | 278 | es6-set@~0.1.3: 279 | version "0.1.4" 280 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.4.tgz#9516b6761c2964b92ff479456233a247dc707ce8" 281 | dependencies: 282 | d "~0.1.1" 283 | es5-ext "~0.10.11" 284 | es6-iterator "2" 285 | es6-symbol "3" 286 | event-emitter "~0.3.4" 287 | 288 | es6-symbol@3, es6-symbol@~3.1, es6-symbol@~3.1.0: 289 | version "3.1.0" 290 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.0.tgz#94481c655e7a7cad82eba832d97d5433496d7ffa" 291 | dependencies: 292 | d "~0.1.1" 293 | es5-ext "~0.10.11" 294 | 295 | es6-weak-map@^2.0.1: 296 | version "2.0.1" 297 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.1.tgz#0d2bbd8827eb5fb4ba8f97fbfea50d43db21ea81" 298 | dependencies: 299 | d "^0.1.1" 300 | es5-ext "^0.10.8" 301 | es6-iterator "2" 302 | es6-symbol "3" 303 | 304 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 305 | version "1.0.5" 306 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 307 | 308 | escope@^3.6.0: 309 | version "3.6.0" 310 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 311 | dependencies: 312 | es6-map "^0.1.3" 313 | es6-weak-map "^2.0.1" 314 | esrecurse "^4.1.0" 315 | estraverse "^4.1.1" 316 | 317 | eslint@^3.13.1: 318 | version "3.13.1" 319 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.13.1.tgz#564d2646b5efded85df96985332edd91a23bff25" 320 | dependencies: 321 | babel-code-frame "^6.16.0" 322 | chalk "^1.1.3" 323 | concat-stream "^1.4.6" 324 | debug "^2.1.1" 325 | doctrine "^1.2.2" 326 | escope "^3.6.0" 327 | espree "^3.3.1" 328 | estraverse "^4.2.0" 329 | esutils "^2.0.2" 330 | file-entry-cache "^2.0.0" 331 | glob "^7.0.3" 332 | globals "^9.14.0" 333 | ignore "^3.2.0" 334 | imurmurhash "^0.1.4" 335 | inquirer "^0.12.0" 336 | is-my-json-valid "^2.10.0" 337 | is-resolvable "^1.0.0" 338 | js-yaml "^3.5.1" 339 | json-stable-stringify "^1.0.0" 340 | levn "^0.3.0" 341 | lodash "^4.0.0" 342 | mkdirp "^0.5.0" 343 | natural-compare "^1.4.0" 344 | optionator "^0.8.2" 345 | path-is-inside "^1.0.1" 346 | pluralize "^1.2.1" 347 | progress "^1.1.8" 348 | require-uncached "^1.0.2" 349 | shelljs "^0.7.5" 350 | strip-bom "^3.0.0" 351 | strip-json-comments "~2.0.1" 352 | table "^3.7.8" 353 | text-table "~0.2.0" 354 | user-home "^2.0.0" 355 | 356 | espree@^3.3.1: 357 | version "3.3.2" 358 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.3.2.tgz#dbf3fadeb4ecb4d4778303e50103b3d36c88b89c" 359 | dependencies: 360 | acorn "^4.0.1" 361 | acorn-jsx "^3.0.0" 362 | 363 | esprima@^2.6.0: 364 | version "2.7.3" 365 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 366 | 367 | esrecurse@^4.1.0: 368 | version "4.1.0" 369 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 370 | dependencies: 371 | estraverse "~4.1.0" 372 | object-assign "^4.0.1" 373 | 374 | estraverse@^4.1.1, estraverse@^4.2.0: 375 | version "4.2.0" 376 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 377 | 378 | estraverse@~4.1.0: 379 | version "4.1.1" 380 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 381 | 382 | estree-walker@^0.2.1: 383 | version "0.2.1" 384 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.2.1.tgz#bdafe8095383d8414d5dc2ecf4c9173b6db9412e" 385 | 386 | estree-walker@^0.3.0: 387 | version "0.3.0" 388 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.3.0.tgz#f67ca8f57b9ed66d886af816c099c779b315d4db" 389 | 390 | esutils@^2.0.2: 391 | version "2.0.2" 392 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 393 | 394 | event-emitter@~0.3.4: 395 | version "0.3.4" 396 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.4.tgz#8d63ddfb4cfe1fae3b32ca265c4c720222080bb5" 397 | dependencies: 398 | d "~0.1.1" 399 | es5-ext "~0.10.7" 400 | 401 | exit-hook@^1.0.0: 402 | version "1.1.1" 403 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 404 | 405 | fast-levenshtein@~2.0.4: 406 | version "2.0.6" 407 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 408 | 409 | figures@^1.3.5: 410 | version "1.7.0" 411 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 412 | dependencies: 413 | escape-string-regexp "^1.0.5" 414 | object-assign "^4.1.0" 415 | 416 | file-entry-cache@^2.0.0: 417 | version "2.0.0" 418 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 419 | dependencies: 420 | flat-cache "^1.2.1" 421 | object-assign "^4.0.1" 422 | 423 | flat-cache@^1.2.1: 424 | version "1.2.2" 425 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 426 | dependencies: 427 | circular-json "^0.3.1" 428 | del "^2.0.2" 429 | graceful-fs "^4.1.2" 430 | write "^0.2.1" 431 | 432 | fs.realpath@^1.0.0: 433 | version "1.0.0" 434 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 435 | 436 | generate-function@^2.0.0: 437 | version "2.0.0" 438 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 439 | 440 | generate-object-property@^1.1.0: 441 | version "1.2.0" 442 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 443 | dependencies: 444 | is-property "^1.0.0" 445 | 446 | glob@7.0.5, glob@^7.0.0, glob@^7.0.3, glob@^7.0.5: 447 | version "7.0.5" 448 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.5.tgz#b4202a69099bbb4d292a7c1b95b6682b67ebdc95" 449 | dependencies: 450 | fs.realpath "^1.0.0" 451 | inflight "^1.0.4" 452 | inherits "2" 453 | minimatch "^3.0.2" 454 | once "^1.3.0" 455 | path-is-absolute "^1.0.0" 456 | 457 | globals@^9.14.0: 458 | version "9.14.0" 459 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.14.0.tgz#8859936af0038741263053b39d0e76ca241e4034" 460 | 461 | globby@^5.0.0: 462 | version "5.0.0" 463 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 464 | dependencies: 465 | array-union "^1.0.1" 466 | arrify "^1.0.0" 467 | glob "^7.0.3" 468 | object-assign "^4.0.1" 469 | pify "^2.0.0" 470 | pinkie-promise "^2.0.0" 471 | 472 | graceful-fs@^4.1.2: 473 | version "4.1.11" 474 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 475 | 476 | "graceful-readlink@>= 1.0.0": 477 | version "1.0.1" 478 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 479 | 480 | growl@1.9.2: 481 | version "1.9.2" 482 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" 483 | 484 | has-ansi@^2.0.0: 485 | version "2.0.0" 486 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 487 | dependencies: 488 | ansi-regex "^2.0.0" 489 | 490 | has-flag@^1.0.0: 491 | version "1.0.0" 492 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 493 | 494 | hasha@^2.2.0: 495 | version "2.2.0" 496 | resolved "https://registry.yarnpkg.com/hasha/-/hasha-2.2.0.tgz#78d7cbfc1e6d66303fe79837365984517b2f6ee1" 497 | dependencies: 498 | is-stream "^1.0.1" 499 | pinkie-promise "^2.0.0" 500 | 501 | ignore@^3.2.0: 502 | version "3.2.0" 503 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.0.tgz#8d88f03c3002a0ac52114db25d2c673b0bf1e435" 504 | 505 | imurmurhash@^0.1.4: 506 | version "0.1.4" 507 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 508 | 509 | inflight@^1.0.4: 510 | version "1.0.6" 511 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 512 | dependencies: 513 | once "^1.3.0" 514 | wrappy "1" 515 | 516 | inherits@2, inherits@^2.0.3, inherits@~2.0.1: 517 | version "2.0.3" 518 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 519 | 520 | inquirer@^0.12.0: 521 | version "0.12.0" 522 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 523 | dependencies: 524 | ansi-escapes "^1.1.0" 525 | ansi-regex "^2.0.0" 526 | chalk "^1.0.0" 527 | cli-cursor "^1.0.1" 528 | cli-width "^2.0.0" 529 | figures "^1.3.5" 530 | lodash "^4.3.0" 531 | readline2 "^1.0.1" 532 | run-async "^0.1.0" 533 | rx-lite "^3.1.2" 534 | string-width "^1.0.1" 535 | strip-ansi "^3.0.0" 536 | through "^2.3.6" 537 | 538 | interpret@^1.0.0: 539 | version "1.0.1" 540 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.1.tgz#d579fb7f693b858004947af39fa0db49f795602c" 541 | 542 | is-fullwidth-code-point@^1.0.0: 543 | version "1.0.0" 544 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 545 | dependencies: 546 | number-is-nan "^1.0.0" 547 | 548 | is-fullwidth-code-point@^2.0.0: 549 | version "2.0.0" 550 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 551 | 552 | is-my-json-valid@^2.10.0: 553 | version "2.15.0" 554 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b" 555 | dependencies: 556 | generate-function "^2.0.0" 557 | generate-object-property "^1.1.0" 558 | jsonpointer "^4.0.0" 559 | xtend "^4.0.0" 560 | 561 | is-path-cwd@^1.0.0: 562 | version "1.0.0" 563 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 564 | 565 | is-path-in-cwd@^1.0.0: 566 | version "1.0.0" 567 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 568 | dependencies: 569 | is-path-inside "^1.0.0" 570 | 571 | is-path-inside@^1.0.0: 572 | version "1.0.0" 573 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 574 | dependencies: 575 | path-is-inside "^1.0.1" 576 | 577 | is-property@^1.0.0: 578 | version "1.0.2" 579 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 580 | 581 | is-resolvable@^1.0.0: 582 | version "1.0.0" 583 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 584 | dependencies: 585 | tryit "^1.0.1" 586 | 587 | is-stream@^1.0.1: 588 | version "1.1.0" 589 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 590 | 591 | isarray@^1.0.0, isarray@~1.0.0: 592 | version "1.0.0" 593 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 594 | 595 | js-tokens@^2.0.0: 596 | version "2.0.0" 597 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-2.0.0.tgz#79903f5563ee778cc1162e6dcf1a0027c97f9cb5" 598 | 599 | js-yaml@^3.5.1: 600 | version "3.7.0" 601 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80" 602 | dependencies: 603 | argparse "^1.0.7" 604 | esprima "^2.6.0" 605 | 606 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 607 | version "1.0.1" 608 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 609 | dependencies: 610 | jsonify "~0.0.0" 611 | 612 | json3@3.3.2: 613 | version "3.3.2" 614 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 615 | 616 | jsonify@~0.0.0: 617 | version "0.0.0" 618 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 619 | 620 | jsonpointer@^4.0.0: 621 | version "4.0.1" 622 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 623 | 624 | levn@^0.3.0, levn@~0.3.0: 625 | version "0.3.0" 626 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 627 | dependencies: 628 | prelude-ls "~1.1.2" 629 | type-check "~0.3.2" 630 | 631 | lodash._baseassign@^3.0.0: 632 | version "3.2.0" 633 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 634 | dependencies: 635 | lodash._basecopy "^3.0.0" 636 | lodash.keys "^3.0.0" 637 | 638 | lodash._basecopy@^3.0.0: 639 | version "3.0.1" 640 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 641 | 642 | lodash._basecreate@^3.0.0: 643 | version "3.0.3" 644 | resolved "https://registry.yarnpkg.com/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz#1bc661614daa7fc311b7d03bf16806a0213cf821" 645 | 646 | lodash._getnative@^3.0.0: 647 | version "3.9.1" 648 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 649 | 650 | lodash._isiterateecall@^3.0.0: 651 | version "3.0.9" 652 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 653 | 654 | lodash.create@3.1.1: 655 | version "3.1.1" 656 | resolved "https://registry.yarnpkg.com/lodash.create/-/lodash.create-3.1.1.tgz#d7f2849f0dbda7e04682bb8cd72ab022461debe7" 657 | dependencies: 658 | lodash._baseassign "^3.0.0" 659 | lodash._basecreate "^3.0.0" 660 | lodash._isiterateecall "^3.0.0" 661 | 662 | lodash.isarguments@^3.0.0: 663 | version "3.1.0" 664 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 665 | 666 | lodash.isarray@^3.0.0: 667 | version "3.0.4" 668 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 669 | 670 | lodash.keys@^3.0.0: 671 | version "3.1.2" 672 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 673 | dependencies: 674 | lodash._getnative "^3.0.0" 675 | lodash.isarguments "^3.0.0" 676 | lodash.isarray "^3.0.0" 677 | 678 | lodash@^4.0.0, lodash@^4.3.0: 679 | version "4.17.4" 680 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 681 | 682 | magic-string@^0.14.0: 683 | version "0.14.0" 684 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.14.0.tgz#57224aef1701caeed273b17a39a956e72b172462" 685 | dependencies: 686 | vlq "^0.2.1" 687 | 688 | magic-string@^0.19.0: 689 | version "0.19.0" 690 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.19.0.tgz#198948217254e3e0b93080e01146b7c73b2a06b2" 691 | dependencies: 692 | vlq "^0.2.1" 693 | 694 | minimatch@^3.0.2: 695 | version "3.0.3" 696 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 697 | dependencies: 698 | brace-expansion "^1.0.0" 699 | 700 | minimist@0.0.8: 701 | version "0.0.8" 702 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 703 | 704 | minimist@^1.2.0: 705 | version "1.2.0" 706 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 707 | 708 | mkdirp@0.5.1, mkdirp@^0.5.0, mkdirp@^0.5.1: 709 | version "0.5.1" 710 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 711 | dependencies: 712 | minimist "0.0.8" 713 | 714 | mocha@^3.2.0: 715 | version "3.2.0" 716 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-3.2.0.tgz#7dc4f45e5088075171a68896814e6ae9eb7a85e3" 717 | dependencies: 718 | browser-stdout "1.3.0" 719 | commander "2.9.0" 720 | debug "2.2.0" 721 | diff "1.4.0" 722 | escape-string-regexp "1.0.5" 723 | glob "7.0.5" 724 | growl "1.9.2" 725 | json3 "3.3.2" 726 | lodash.create "3.1.1" 727 | mkdirp "0.5.1" 728 | supports-color "3.1.2" 729 | 730 | ms@0.7.1: 731 | version "0.7.1" 732 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 733 | 734 | mute-stream@0.0.5: 735 | version "0.0.5" 736 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 737 | 738 | natural-compare@^1.4.0: 739 | version "1.4.0" 740 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 741 | 742 | number-is-nan@^1.0.0: 743 | version "1.0.1" 744 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 745 | 746 | object-assign@^4.0.1, object-assign@^4.1.0: 747 | version "4.1.1" 748 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 749 | 750 | once@^1.3.0: 751 | version "1.4.0" 752 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 753 | dependencies: 754 | wrappy "1" 755 | 756 | onetime@^1.0.0: 757 | version "1.1.0" 758 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 759 | 760 | optionator@^0.8.2: 761 | version "0.8.2" 762 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 763 | dependencies: 764 | deep-is "~0.1.3" 765 | fast-levenshtein "~2.0.4" 766 | levn "~0.3.0" 767 | prelude-ls "~1.1.2" 768 | type-check "~0.3.2" 769 | wordwrap "~1.0.0" 770 | 771 | os-homedir@^1.0.0, os-homedir@^1.0.1: 772 | version "1.0.2" 773 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 774 | 775 | path-is-absolute@^1.0.0: 776 | version "1.0.1" 777 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 778 | 779 | path-is-inside@^1.0.1: 780 | version "1.0.2" 781 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 782 | 783 | pify@^2.0.0: 784 | version "2.3.0" 785 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 786 | 787 | pinkie-promise@^2.0.0: 788 | version "2.0.1" 789 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 790 | dependencies: 791 | pinkie "^2.0.0" 792 | 793 | pinkie@^2.0.0: 794 | version "2.0.4" 795 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 796 | 797 | pluralize@^1.2.1: 798 | version "1.2.1" 799 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 800 | 801 | prelude-ls@~1.1.2: 802 | version "1.1.2" 803 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 804 | 805 | process-nextick-args@~1.0.6: 806 | version "1.0.7" 807 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 808 | 809 | progress@^1.1.8: 810 | version "1.1.8" 811 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 812 | 813 | readable-stream@^2.2.2: 814 | version "2.2.2" 815 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.2.tgz#a9e6fec3c7dda85f8bb1b3ba7028604556fc825e" 816 | dependencies: 817 | buffer-shims "^1.0.0" 818 | core-util-is "~1.0.0" 819 | inherits "~2.0.1" 820 | isarray "~1.0.0" 821 | process-nextick-args "~1.0.6" 822 | string_decoder "~0.10.x" 823 | util-deprecate "~1.0.1" 824 | 825 | readline2@^1.0.1: 826 | version "1.0.1" 827 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 828 | dependencies: 829 | code-point-at "^1.0.0" 830 | is-fullwidth-code-point "^1.0.0" 831 | mute-stream "0.0.5" 832 | 833 | rechoir@^0.6.2: 834 | version "0.6.2" 835 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 836 | dependencies: 837 | resolve "^1.1.6" 838 | 839 | require-uncached@^1.0.2: 840 | version "1.0.3" 841 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 842 | dependencies: 843 | caller-path "^0.1.0" 844 | resolve-from "^1.0.0" 845 | 846 | resolve-from@^1.0.0: 847 | version "1.0.1" 848 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 849 | 850 | resolve@1.1.7: 851 | version "1.1.7" 852 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 853 | 854 | resolve@^1.1.6, resolve@^1.1.7: 855 | version "1.2.0" 856 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.2.0.tgz#9589c3f2f6149d1417a40becc1663db6ec6bc26c" 857 | 858 | restore-cursor@^1.0.1: 859 | version "1.0.1" 860 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 861 | dependencies: 862 | exit-hook "^1.0.0" 863 | onetime "^1.0.0" 864 | 865 | rimraf@^2.2.8: 866 | version "2.5.4" 867 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 868 | dependencies: 869 | glob "^7.0.5" 870 | 871 | rollup-plugin-buble@^0.15.0: 872 | version "0.15.0" 873 | resolved "https://registry.yarnpkg.com/rollup-plugin-buble/-/rollup-plugin-buble-0.15.0.tgz#83c3e89c7fd2266c7918f41ba3980313519c7fd0" 874 | dependencies: 875 | buble "^0.15.0" 876 | rollup-pluginutils "^1.5.0" 877 | 878 | rollup-plugin-commonjs@^7.0.0: 879 | version "7.0.0" 880 | resolved "https://registry.yarnpkg.com/rollup-plugin-commonjs/-/rollup-plugin-commonjs-7.0.0.tgz#510762d5c423c761cd16d8e8451715b39f0ceb08" 881 | dependencies: 882 | acorn "^4.0.1" 883 | estree-walker "^0.3.0" 884 | magic-string "^0.19.0" 885 | resolve "^1.1.7" 886 | rollup-pluginutils "^1.5.1" 887 | 888 | rollup-plugin-node-resolve@^2.0.0: 889 | version "2.0.0" 890 | resolved "https://registry.yarnpkg.com/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-2.0.0.tgz#07e0ae94ac002a3ea36e8f33ca121d9f836b1309" 891 | dependencies: 892 | browser-resolve "^1.11.0" 893 | builtin-modules "^1.1.0" 894 | resolve "^1.1.6" 895 | 896 | rollup-pluginutils@^1.5.0, rollup-pluginutils@^1.5.1: 897 | version "1.5.2" 898 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-1.5.2.tgz#1e156e778f94b7255bfa1b3d0178be8f5c552408" 899 | dependencies: 900 | estree-walker "^0.2.1" 901 | minimatch "^3.0.2" 902 | 903 | rollup@^0.48.0: 904 | version "0.48.2" 905 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.48.2.tgz#dd9214eaf78d98a7771bf5583123cc80a0b5d6dc" 906 | 907 | run-async@^0.1.0: 908 | version "0.1.0" 909 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 910 | dependencies: 911 | once "^1.3.0" 912 | 913 | rx-lite@^3.1.2: 914 | version "3.1.2" 915 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 916 | 917 | shelljs@^0.7.5: 918 | version "0.7.6" 919 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.6.tgz#379cccfb56b91c8601e4793356eb5382924de9ad" 920 | dependencies: 921 | glob "^7.0.0" 922 | interpret "^1.0.0" 923 | rechoir "^0.6.2" 924 | 925 | slice-ansi@0.0.4: 926 | version "0.0.4" 927 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 928 | 929 | sprintf-js@~1.0.2: 930 | version "1.0.3" 931 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 932 | 933 | string-width@^1.0.1: 934 | version "1.0.2" 935 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 936 | dependencies: 937 | code-point-at "^1.0.0" 938 | is-fullwidth-code-point "^1.0.0" 939 | strip-ansi "^3.0.0" 940 | 941 | string-width@^2.0.0: 942 | version "2.0.0" 943 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 944 | dependencies: 945 | is-fullwidth-code-point "^2.0.0" 946 | strip-ansi "^3.0.0" 947 | 948 | string_decoder@~0.10.x: 949 | version "0.10.31" 950 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 951 | 952 | strip-ansi@^3.0.0: 953 | version "3.0.1" 954 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 955 | dependencies: 956 | ansi-regex "^2.0.0" 957 | 958 | strip-bom@^3.0.0: 959 | version "3.0.0" 960 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 961 | 962 | strip-json-comments@~2.0.1: 963 | version "2.0.1" 964 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 965 | 966 | supports-color@3.1.2: 967 | version "3.1.2" 968 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 969 | dependencies: 970 | has-flag "^1.0.0" 971 | 972 | supports-color@^2.0.0: 973 | version "2.0.0" 974 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 975 | 976 | table@^3.7.8: 977 | version "3.8.3" 978 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 979 | dependencies: 980 | ajv "^4.7.0" 981 | ajv-keywords "^1.0.0" 982 | chalk "^1.1.1" 983 | lodash "^4.0.0" 984 | slice-ansi "0.0.4" 985 | string-width "^2.0.0" 986 | 987 | text-table@~0.2.0: 988 | version "0.2.0" 989 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 990 | 991 | through@^2.3.6: 992 | version "2.3.8" 993 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 994 | 995 | tryit@^1.0.1: 996 | version "1.0.3" 997 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 998 | 999 | type-check@~0.3.2: 1000 | version "0.3.2" 1001 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 1002 | dependencies: 1003 | prelude-ls "~1.1.2" 1004 | 1005 | type-detect@0.1.1: 1006 | version "0.1.1" 1007 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-0.1.1.tgz#0ba5ec2a885640e470ea4e8505971900dac58822" 1008 | 1009 | type-detect@^1.0.0: 1010 | version "1.0.0" 1011 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-1.0.0.tgz#762217cc06db258ec48908a1298e8b95121e8ea2" 1012 | 1013 | typedarray@^0.0.6: 1014 | version "0.0.6" 1015 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 1016 | 1017 | user-home@^2.0.0: 1018 | version "2.0.0" 1019 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 1020 | dependencies: 1021 | os-homedir "^1.0.0" 1022 | 1023 | util-deprecate@~1.0.1: 1024 | version "1.0.2" 1025 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1026 | 1027 | vlq@^0.2.1: 1028 | version "0.2.1" 1029 | resolved "https://registry.yarnpkg.com/vlq/-/vlq-0.2.1.tgz#14439d711891e682535467f8587c5630e4222a6c" 1030 | 1031 | wordwrap@~1.0.0: 1032 | version "1.0.0" 1033 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 1034 | 1035 | wrappy@1: 1036 | version "1.0.2" 1037 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1038 | 1039 | write@^0.2.1: 1040 | version "0.2.1" 1041 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 1042 | dependencies: 1043 | mkdirp "^0.5.1" 1044 | 1045 | xtend@^4.0.0: 1046 | version "4.0.1" 1047 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 1048 | --------------------------------------------------------------------------------