├── .eslintrc ├── .gitignore ├── .istanbul.yml ├── .travis.yml ├── README.md ├── build └── build.js ├── jasmine.json ├── libs ├── extend.js ├── get.js ├── index.js ├── internal │ └── parseNumber.js ├── isNumber.js ├── kmbt.js ├── obj2qs.js ├── percentage.js ├── remove.js └── thousands.js ├── package.json ├── test ├── extend-spec.js ├── get-spec.js ├── kmbt-spec.js ├── obj2qs-spec.js ├── percentage-spec.js ├── remove-spec.js └── thousands-spec.js └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "parserOptions": { 3 | "ecmaVersion": 6, 4 | "sourceType": "module" 5 | }, 6 | "env": { 7 | "node": true, 8 | "jasmine": true 9 | }, 10 | "extends": [ 11 | "standard" 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /dist/ 3 | .DS_Store 4 | /coverage/ 5 | /.idea/ 6 | -------------------------------------------------------------------------------- /.istanbul.yml: -------------------------------------------------------------------------------- 1 | instrumentation: 2 | root: dist 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - "node" 5 | 6 | cache: yarn 7 | 8 | script: 9 | - yarn test 10 | - yarn run upload-coverage 11 | 12 | notifications: 13 | email: false 14 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # nosh.js [![Build Status](https://img.shields.io/travis/lmk123/noshjs/master.svg?style=flat-square)](https://travis-ci.org/lmk123/noshjs) [![Coverage Status](https://img.shields.io/coveralls/lmk123/noshjs/master.svg?style=flat-square)](https://coveralls.io/github/lmk123/noshjs?branch=master) [![dependencies Status](https://img.shields.io/david/lmk123/noshjs.svg?style=flat-square)](https://david-dm.org/lmk123/noshjs) [![NPM Version](https://img.shields.io/npm/v/noshjs.svg?style=flat-square)](https://www.npmjs.com/package/noshjs) 2 | 3 | 一个我自己常用的工具函数库。 4 | 5 | ## 安装 6 | 7 | 可以用 NPM 或者 Yarn 安装: 8 | 9 | ```bash 10 | npm i noshjs 11 | ``` 12 | 13 | 或者直接将 [nosh.js](https://unpkg.com/noshjs) 下载到你的项目中,通过 script 标签引用,此时会注册一个全局变量 `window.nosh`。 14 | 15 | ## API 16 | 17 | ### nosh.copy(value) 18 | 19 | 类似于 [lodash.cloneDeep](https://lodash.com/docs/4.7.11#cloneDeep),但没有对特殊类型(例如 Set、Map、Buffer 等)做处理,所以性能比 lodash.cloneDeep 高,见 https://github.com/lodash/lodash/issues/1984 20 | 21 | ### nosh.extend(object, [sources]) 22 | 23 | 类似于 [lodash.merge](https://lodash.com/docs/4.7.11#merge),但没有对特殊类型做处理。 24 | 25 | ### nosh.get(object, path, [defaultValue]) 26 | 27 | 类似于 [lodash.get](https://lodash.com/docs/4.7.11#get),但是在读取到 `null` 时也会返回 `defaultValue`。例如: 28 | 29 | ```js 30 | lodash.get({ a: null }, 'a', 'default value') // null 31 | nosh.get({ a: null }, 'a', 'default value') // 'default value' 32 | ``` 33 | 34 | 这个方法性能比 lodash.get 低,如果介意的话,可以基于 lodash.get 封装: 35 | 36 | ```js 37 | function noshGet(object, path, defaultValue) { 38 | let result = lodash.get(object, path, defaultValue) 39 | if (result === null) result = defaultValue 40 | return result 41 | } 42 | ``` 43 | 44 | ### nosh.isNumber(value) 45 | 46 | 判断 `value` 是否满足 `typeof value === 'number' && !isNaN(value)`。 47 | 48 | ### nosh.kmbt(value, [fixed = 2]) 49 | 50 | 将一个数字转换成 KMBT 表现形式的字符串。如果 `value` 不能转换成数字,则返回 `null`。第二个参数可以设置保留多少位小数,默认保留两位。 51 | 52 | ```js 53 | nosh.kmbt('not a number') // null 54 | nosh.kmbt(988) // '988' 55 | nosh.kmbt(9888) // '9.89K' 56 | nosh.kmbt(9888777) // '9.89M' 57 | nosh.kmbt(98887776666) // '98.89B' 58 | nosh.kmbt(9888777666555) // '9.89T' 59 | nosh.kmbt(9888777666555444) // '9.89P' 60 | nosh.kmbt(9888777666555444333) // '9.89E') 61 | ``` 62 | 63 | ### nosh.obj2qs(object, [prefix]) 64 | 65 | 将一个对象转换成查询字符串。第二个参数用于指定查询字符串的前缀。 66 | 67 | ```js 68 | nosh.obj2qs({ a: 1, b: 2 }, '?') // '?a=1&b=2' 69 | ``` 70 | 71 | ### nosh.percentage(value, [fixed = 2]) 72 | 73 | 将一个数字转换成百分比表现形式的字符串。如果 `value` 不能转换成数字,则返回 `null`。第二个参数可以设置保留多少位小数,默认保留两位。 74 | 75 | ```js 76 | nosh.percentage('not a number') // null 77 | nosh.percentage('1') // '100%' 78 | nosh.percentage(-0.1) // '-10%' 79 | ``` 80 | 81 | ### nosh.remove(array, item) 82 | 83 | 从数组中删除指定的元素,这个方法只删除第一个匹配的元素。 84 | 85 | ```js 86 | nosh.remove([1, 2, 3, 1], 1) // [2, 3, 1] 87 | ``` 88 | 89 | ### nosh.thousands(value) 90 | 91 | 将一个数字转换成百分比表现形式的字符串。如果 `value` 不能转换成数字,则返回 `null`。 92 | 93 | ```js 94 | nosh.thousands('not a number') // null 95 | nosh.thousands(1000) // '1,000' 96 | ``` 97 | 98 | ## 许可 99 | 100 | MIT 101 | -------------------------------------------------------------------------------- /build/build.js: -------------------------------------------------------------------------------- 1 | const path = require('path') 2 | const fs = require('fs-extra') 3 | 4 | // 清空输出目录 5 | fs.emptyDirSync(path.resolve(__dirname, '../dist')) 6 | 7 | // 编译 js 8 | const rollup = require('rollup') 9 | const buble = require('rollup-plugin-buble') 10 | const uglifyJS = require('uglify-js') 11 | const pkg = require('../package.json') 12 | 13 | const banner = [ 14 | '/*!', 15 | ' * nosh.js v' + pkg.version, 16 | ' * https://github.com/lmk123/noshjs', 17 | ' * Released under the MIT License.', 18 | ' */' 19 | ].join('\n') 20 | 21 | rollup 22 | .rollup({ 23 | input: path.resolve(__dirname, '../libs/index.js'), 24 | plugins: [buble()] 25 | }) 26 | .then(bundle => { 27 | // 输出 umd 格式 28 | bundle 29 | .generate({ 30 | format: 'umd', 31 | name: 'nosh', 32 | banner 33 | }) 34 | .then(({ code }) => { 35 | fs.writeFile(path.resolve(__dirname, '../dist/nosh.js'), code) 36 | fs.writeFile( 37 | path.resolve(__dirname, '../dist/nosh.min.js'), 38 | uglifyJS.minify(code, { output: { comments: /^!/ } }).code 39 | ) 40 | }) 41 | 42 | // 输出 es 格式 43 | bundle.write({ 44 | file: path.resolve(__dirname, '../dist/nosh.esm.js'), 45 | format: 'es', 46 | banner 47 | }) 48 | 49 | // 输出 cjs 格式 50 | bundle.write({ 51 | file: path.resolve(__dirname, '../dist/nosh.common.js'), 52 | format: 'cjs', 53 | banner 54 | }) 55 | }) 56 | -------------------------------------------------------------------------------- /jasmine.json: -------------------------------------------------------------------------------- 1 | { 2 | "spec_dir": "test", 3 | "spec_files": [ 4 | "**/*-spec.js" 5 | ], 6 | "stopSpecOnExpectationFailure": false, 7 | "random": true 8 | } 9 | -------------------------------------------------------------------------------- /libs/extend.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @file copy 和 extend 方法相互引用,所以放在一个文件里。 3 | */ 4 | 5 | const hasOwn = Object.prototype.hasOwnProperty 6 | 7 | /** 8 | * 深复制 JSON 对象的函数——除了对象和数组,其它类型的值都只会简单的赋值。 9 | * @param dest 10 | * @param objects 11 | * @return {*} 12 | */ 13 | export function extend (dest, ...objects) { 14 | if (dest == null) return dest 15 | 16 | objects.forEach(obj => { 17 | if (obj == null) return 18 | mixin(dest, obj) 19 | }) 20 | 21 | return dest 22 | } 23 | 24 | /** 25 | * 复制一个值的方法。除了对象和和数组会使用新的以外,其它类型的值都是直接返回。 26 | * @param val 27 | * @return {*} 28 | */ 29 | export function copy (val) { 30 | if (Array.isArray(val)) { 31 | const newArray = [] 32 | val.forEach((item, index) => { 33 | newArray[index] = copy(item) 34 | }) 35 | return newArray 36 | } else if (typeof val === 'object' && val) { 37 | return mixin({}, val) 38 | } else { 39 | return val 40 | } 41 | } 42 | 43 | function mixin (to, from) { 44 | for (let key in from) { 45 | if (!hasOwn.call(from, key)) continue 46 | to[key] = copy(from[key]) 47 | } 48 | return to 49 | } 50 | -------------------------------------------------------------------------------- /libs/get.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 获取对象上一个属性的值 3 | * @param {*} obj 4 | * @param {Array} pathArray 5 | * @param {*} [defaultValue] 6 | * @return {*} 7 | */ 8 | export default function (obj, pathArray, defaultValue) { 9 | if (obj == null) return defaultValue 10 | 11 | let value = obj 12 | 13 | pathArray = [].concat(pathArray) 14 | 15 | for (let i = 0; i < pathArray.length; i += 1) { 16 | const key = pathArray[i] 17 | value = value[key] 18 | if (value == null) { 19 | return defaultValue 20 | } 21 | } 22 | 23 | return value 24 | } 25 | -------------------------------------------------------------------------------- /libs/index.js: -------------------------------------------------------------------------------- 1 | import get from './get' 2 | import isNumber from './isNumber' 3 | import kmbt from './kmbt' 4 | import thousands from './thousands' 5 | import obj2qs from './obj2qs' 6 | import remove from './remove' 7 | import { extend, copy } from './extend' 8 | import percentage from './percentage' 9 | 10 | export { 11 | extend, 12 | copy, 13 | get, 14 | isNumber, 15 | kmbt, 16 | thousands, 17 | obj2qs, 18 | remove, 19 | percentage 20 | } 21 | -------------------------------------------------------------------------------- /libs/internal/parseNumber.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 解析一个数字的各个部分 3 | * @param {*} number 4 | * @return {{minus: boolean, integer: string, decimal: string}|null} 5 | */ 6 | export default function (number) { 7 | number = parseFloat(number) 8 | if (isNaN(number)) return null 9 | let minus = false 10 | let stringValue = String(number) 11 | if (stringValue[0] === '-') { 12 | minus = true 13 | stringValue = stringValue.slice(1) 14 | } 15 | const decimalIndex = stringValue.indexOf('.') 16 | const integer = decimalIndex > 0 ? stringValue.slice(0, decimalIndex) : stringValue // 截取整数部分 17 | const decimal = decimalIndex > 0 ? stringValue.slice(decimalIndex) : '' // 截取小数部分 18 | return { 19 | minus, 20 | integer, 21 | decimal 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /libs/isNumber.js: -------------------------------------------------------------------------------- 1 | export default function (test) { 2 | return typeof test === 'number' && !isNaN(test) 3 | } 4 | -------------------------------------------------------------------------------- /libs/kmbt.js: -------------------------------------------------------------------------------- 1 | import parseNumber from './internal/parseNumber' 2 | 3 | const KMB_MAP = ['', 'K', 'M', 'B', 'T', 'P', 'E'] 4 | const KMB_CEILING = KMB_MAP.length 5 | const SPLIT_COUNT = 3 6 | const SPLIT_NUMBER = Math.pow(10, SPLIT_COUNT) 7 | 8 | /** 9 | * 将数字转换为 kmb 形式 10 | * @param {number} value 11 | * @param {number} [fixed=2] - 保留几位小数 12 | * @return {string|null} 13 | * @example kmbt(2211) -> 2.21K 14 | */ 15 | export default function (value, fixed = 2) { 16 | const num = parseNumber(value) 17 | if (!num) return null 18 | // 整数部分有多少个 3 位 19 | const count = Math.min(Math.ceil(num.integer.length / SPLIT_COUNT), KMB_CEILING) - 1 20 | return Number((value / Math.pow(SPLIT_NUMBER, count)).toFixed(fixed)) + KMB_MAP[count] 21 | } 22 | -------------------------------------------------------------------------------- /libs/obj2qs.js: -------------------------------------------------------------------------------- 1 | const { hasOwnProperty } = Object.prototype 2 | 3 | /** 4 | * 将一个对象转换成查询字符串 5 | * @param {object} obj 6 | * @param {string} [prefix] 7 | * @return {string} 8 | */ 9 | export default function (obj, prefix = '') { 10 | const qs = [] 11 | for (let key in obj) { 12 | if (hasOwnProperty.call(obj, key)) { 13 | qs.push(key + '=' + encodeURIComponent(obj[key])) 14 | } 15 | } 16 | return prefix + qs.join('&') 17 | } 18 | -------------------------------------------------------------------------------- /libs/percentage.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 将一个小数转换为百分比 3 | * @param {*} value 4 | * @param {number} [fixed=2] 5 | * @return {string|null} 6 | */ 7 | export default function (value, fixed = 2) { 8 | const number = parseFloat(value) 9 | if (isNaN(number)) return null 10 | let numberString = (number * 100).toFixed(fixed) 11 | return parseFloat(numberString) + '%' 12 | } 13 | -------------------------------------------------------------------------------- /libs/remove.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 从数组中删除一个项 3 | * @param {Array} arr 4 | * @param item 5 | */ 6 | export default function (arr, item) { 7 | const index = arr.indexOf(item) 8 | if (index >= 0) { 9 | arr.splice(index, 1) 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /libs/thousands.js: -------------------------------------------------------------------------------- 1 | import parseNumber from './internal/parseNumber' 2 | 3 | const SYMBOL = ',' 4 | const COUNT = 3 5 | 6 | /** 7 | * 将一个数字转换为加了千分位的字符串 8 | * @param {*} value 9 | * @return {string|null} 10 | * @example thousands(12345.67) => '12,345.67' 11 | */ 12 | export default function (value) { 13 | const num = parseNumber(value) 14 | if (!num) return null 15 | const { 16 | minus, 17 | integer, 18 | decimal 19 | } = num 20 | const { length } = integer 21 | const x = Math.ceil(length / COUNT) 22 | const array = [] 23 | 24 | for (let i = 0; i < x; i++) { 25 | array.unshift(integer.slice(-COUNT * (i + 1), length - (COUNT * i))) 26 | } 27 | 28 | return (minus ? '-' : '') + array.join(SYMBOL) + decimal 29 | } 30 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "noshjs", 3 | "version": "0.4.0", 4 | "main": "dist/nosh.common.js", 5 | "module": "dist/nosh.esm.js", 6 | "unpkg": "dist/nosh.js", 7 | "files": [ 8 | "libs", 9 | "dist" 10 | ], 11 | "scripts": { 12 | "lint": "eslint --ignore-pattern '/dist/' --ignore-pattern '/coverage/' '**/*.js'", 13 | "build": "node build/build.js", 14 | "pretest": "yarn run lint && yarn run build", 15 | "test": "istanbul cover node_modules/jasmine/bin/jasmine.js -- JASMINE_CONFIG_PATH=jasmine.json", 16 | "prepublishOnly": "yarn test", 17 | "upload-coverage": "cat coverage/lcov.info | node_modules/coveralls/bin/coveralls.js" 18 | }, 19 | "devDependencies": { 20 | "coveralls": "^3.0.0", 21 | "eslint": "^4.9.0", 22 | "eslint-config-standard": "^10.2.1", 23 | "eslint-plugin-import": "^2.8.0", 24 | "eslint-plugin-node": "^5.2.1", 25 | "eslint-plugin-promise": "^3.6.0", 26 | "eslint-plugin-standard": "^3.0.1", 27 | "fs-extra": "^4.0.2", 28 | "istanbul": "^0.4.5", 29 | "jasmine": "^2.8.0", 30 | "rollup": "^0.50.0", 31 | "rollup-plugin-buble": "^0.16.0", 32 | "uglify-js": "^3.1.5" 33 | }, 34 | "author": "Mingkai Li (https://github.com/lmk123)", 35 | "license": "MIT" 36 | } 37 | -------------------------------------------------------------------------------- /test/extend-spec.js: -------------------------------------------------------------------------------- 1 | const { extend } = require('../dist/nosh.common') 2 | 3 | describe('extend 函数', function () { 4 | it('能正确执行', function () { 5 | expect(extend(null, { a: '' })).toBeNull() 6 | expect(extend(undefined, { a: '' })).toBeUndefined() 7 | 8 | expect(extend({}, null, { a: '' })).toEqual({ a: '' }) 9 | 10 | const x = Object.create({ inherit: 'x' }) 11 | 12 | expect(extend({}, x)).toEqual({}) 13 | 14 | expect(extend([], [1, 2, 3, 4])).toEqual([1, 2, 3, 4]) 15 | expect(extend({}, [1, 2, 3, 4])).toEqual({ 0: 1, 1: 2, 2: 3, 3: 4 }) 16 | 17 | expect(extend( 18 | { 19 | a: [ 20 | { 21 | b: 1 22 | } 23 | ] 24 | }, 25 | { 26 | a: [ 27 | { 28 | c: 2 29 | } 30 | ] 31 | } 32 | )).toEqual({ 33 | a: [ 34 | { 35 | c: 2 36 | } 37 | ] 38 | }) 39 | 40 | expect(extend( 41 | { 42 | a: { 43 | b: 1 44 | } 45 | }, 46 | { 47 | a: { 48 | b: 2, 49 | c: 3 50 | }, 51 | b: [ 52 | { a: 1 } 53 | ] 54 | }, 55 | { 56 | b: [ 57 | { b: 2 }, 58 | { c: 3 } 59 | ] 60 | } 61 | )).toEqual( 62 | { 63 | a: { 64 | b: 2, 65 | c: 3 66 | }, 67 | b: [ 68 | { b: 2 }, 69 | { c: 3 } 70 | ] 71 | } 72 | ) 73 | }) 74 | }) 75 | -------------------------------------------------------------------------------- /test/get-spec.js: -------------------------------------------------------------------------------- 1 | const { get } = require('../dist/nosh.common') 2 | 3 | describe('get 函数', () => { 4 | it('', () => { 5 | expect(get(null, ['a'])).toBeUndefined() 6 | expect(get(null, 'a')).toBeUndefined() 7 | expect(get([], ['a', 'b', 'c'])).toBeUndefined() 8 | expect(get({ a: { b: 1 } }, ['a', 'b'])).toBe(1) 9 | expect(get({ a: null }, ['a'], 'x')).toBe('x') 10 | expect(get({ a: null }, 'a', 'x')).toBe('x') 11 | }) 12 | }) 13 | -------------------------------------------------------------------------------- /test/kmbt-spec.js: -------------------------------------------------------------------------------- 1 | const { kmbt } = require('../dist/nosh.common') 2 | 3 | describe('kmbt 函数', function () { 4 | it('能正常运行', function () { 5 | expect(kmbt('not a number')).toBeNull() 6 | expect(kmbt(-988)).toBe('-988') 7 | expect(kmbt(988)).toBe('988') 8 | expect(kmbt(988.01)).toBe('988.01') 9 | expect(kmbt(9888)).toBe('9.89K') 10 | expect(kmbt(9888777)).toBe('9.89M') 11 | expect(kmbt(98887776666)).toBe('98.89B') 12 | expect(kmbt(9888777666555)).toBe('9.89T') 13 | expect(kmbt(9888777666555444)).toBe('9.89P') 14 | expect(kmbt(9888777666555444333)).toBe('9.89E') 15 | }) 16 | }) 17 | -------------------------------------------------------------------------------- /test/obj2qs-spec.js: -------------------------------------------------------------------------------- 1 | const { obj2qs } = require('../dist/nosh.common') 2 | 3 | describe('obj2qs 函数', function () { 4 | it('参数拼接', function () { 5 | expect(obj2qs({ a: 'a', b: 'b' })).toBe('a=a&b=b') 6 | }) 7 | it('参数拼接加 ? 前缀', function () { 8 | expect(obj2qs({ apple: 'jack', rainbow: 'dash' }, '?')).toBe('?apple=jack&rainbow=dash') 9 | }) 10 | it('参数拼接加 & 前缀', function () { 11 | expect(obj2qs({ twilight: 'sparkle', pinkie: 'pie' }, '&')).toBe('&twilight=sparkle&pinkie=pie') 12 | }) 13 | }) 14 | -------------------------------------------------------------------------------- /test/percentage-spec.js: -------------------------------------------------------------------------------- 1 | const { percentage } = require('../dist/nosh.common') 2 | 3 | describe('percentage 函数', function () { 4 | it('能正常运行', function () { 5 | expect(percentage('not a number')).toBeNull() 6 | expect(percentage('1')).toBe('100%') 7 | expect(percentage(-0.1)).toBe('-10%') 8 | expect(percentage(0.01, 4)).toBe('1%') 9 | expect(percentage(0.01, 4, true)).toBe('1%') 10 | expect(percentage('0.13324', 7, true)).toBe('13.324%') 11 | }) 12 | }) 13 | -------------------------------------------------------------------------------- /test/remove-spec.js: -------------------------------------------------------------------------------- 1 | const { remove } = require('../dist/nosh.common') 2 | 3 | describe('remove 函数', function () { 4 | it('能正常运行', function () { 5 | const arr = [1, 2, 3] 6 | remove(arr, 2) 7 | expect(arr).toEqual([1, 3]) 8 | 9 | remove(arr, 100) 10 | expect(arr).toEqual([1, 3]) 11 | }) 12 | }) 13 | -------------------------------------------------------------------------------- /test/thousands-spec.js: -------------------------------------------------------------------------------- 1 | const { thousands } = require('../dist/nosh.common') 2 | 3 | describe('thousands 函数', function () { 4 | it('能正常运行', function () { 5 | expect(thousands('not a number')).toBeNull() 6 | expect(thousands(1000)).toBe('1,000') 7 | expect(thousands(-1000)).toBe('-1,000') 8 | }) 9 | }) 10 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1, abbrev@1.0.x: 6 | version "1.0.9" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 8 | 9 | acorn-jsx@^3.0.0, acorn-jsx@^3.0.1: 10 | version "3.0.1" 11 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 12 | dependencies: 13 | acorn "^3.0.4" 14 | 15 | acorn-object-spread@^1.0.0: 16 | version "1.0.0" 17 | resolved "https://registry.yarnpkg.com/acorn-object-spread/-/acorn-object-spread-1.0.0.tgz#48ead0f4a8eb16995a17a0db9ffc6acaada4ba68" 18 | dependencies: 19 | acorn "^3.1.0" 20 | 21 | acorn@^3.0.4, acorn@^3.1.0, acorn@^3.3.0: 22 | version "3.3.0" 23 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 24 | 25 | acorn@^5.1.1: 26 | version "5.1.2" 27 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.2.tgz#911cb53e036807cf0fa778dc5d370fbd864246d7" 28 | 29 | ajv-keywords@^1.0.0: 30 | version "1.5.1" 31 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 32 | 33 | ajv@^4.7.0: 34 | version "4.11.8" 35 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 36 | dependencies: 37 | co "^4.6.0" 38 | json-stable-stringify "^1.0.1" 39 | 40 | ajv@^5.1.0, ajv@^5.2.0: 41 | version "5.3.0" 42 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.3.0.tgz#4414ff74a50879c208ee5fdc826e32c303549eda" 43 | dependencies: 44 | co "^4.6.0" 45 | fast-deep-equal "^1.0.0" 46 | fast-json-stable-stringify "^2.0.0" 47 | json-schema-traverse "^0.3.0" 48 | 49 | align-text@^0.1.1, align-text@^0.1.3: 50 | version "0.1.4" 51 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 52 | dependencies: 53 | kind-of "^3.0.2" 54 | longest "^1.0.1" 55 | repeat-string "^1.5.2" 56 | 57 | amdefine@>=0.0.4: 58 | version "1.0.1" 59 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 60 | 61 | ansi-escapes@^2.0.0: 62 | version "2.0.0" 63 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-2.0.0.tgz#5bae52be424878dd9783e8910e3fc2922e83c81b" 64 | 65 | ansi-regex@^2.0.0: 66 | version "2.1.1" 67 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 68 | 69 | ansi-regex@^3.0.0: 70 | version "3.0.0" 71 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 72 | 73 | ansi-styles@^2.2.1: 74 | version "2.2.1" 75 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 76 | 77 | ansi-styles@^3.1.0: 78 | version "3.2.0" 79 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 80 | dependencies: 81 | color-convert "^1.9.0" 82 | 83 | argparse@^1.0.7: 84 | version "1.0.9" 85 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 86 | dependencies: 87 | sprintf-js "~1.0.2" 88 | 89 | arr-diff@^2.0.0: 90 | version "2.0.0" 91 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 92 | dependencies: 93 | arr-flatten "^1.0.1" 94 | 95 | arr-flatten@^1.0.1: 96 | version "1.1.0" 97 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 98 | 99 | array-union@^1.0.1: 100 | version "1.0.2" 101 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 102 | dependencies: 103 | array-uniq "^1.0.1" 104 | 105 | array-uniq@^1.0.1: 106 | version "1.0.3" 107 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 108 | 109 | array-unique@^0.2.1: 110 | version "0.2.1" 111 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 112 | 113 | arrify@^1.0.0: 114 | version "1.0.1" 115 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 116 | 117 | asn1@~0.2.3: 118 | version "0.2.3" 119 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 120 | 121 | assert-plus@1.0.0, assert-plus@^1.0.0: 122 | version "1.0.0" 123 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 124 | 125 | async@1.x, async@^1.4.0: 126 | version "1.5.2" 127 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 128 | 129 | asynckit@^0.4.0: 130 | version "0.4.0" 131 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 132 | 133 | aws-sign2@~0.7.0: 134 | version "0.7.0" 135 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 136 | 137 | aws4@^1.6.0: 138 | version "1.6.0" 139 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 140 | 141 | babel-code-frame@^6.22.0: 142 | version "6.22.0" 143 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 144 | dependencies: 145 | chalk "^1.1.0" 146 | esutils "^2.0.2" 147 | js-tokens "^3.0.0" 148 | 149 | balanced-match@^1.0.0: 150 | version "1.0.0" 151 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 152 | 153 | bcrypt-pbkdf@^1.0.0: 154 | version "1.0.1" 155 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 156 | dependencies: 157 | tweetnacl "^0.14.3" 158 | 159 | boom@4.x.x: 160 | version "4.3.1" 161 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" 162 | dependencies: 163 | hoek "4.x.x" 164 | 165 | boom@5.x.x: 166 | version "5.2.0" 167 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" 168 | dependencies: 169 | hoek "4.x.x" 170 | 171 | brace-expansion@^1.1.7: 172 | version "1.1.8" 173 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 174 | dependencies: 175 | balanced-match "^1.0.0" 176 | concat-map "0.0.1" 177 | 178 | braces@^1.8.2: 179 | version "1.8.5" 180 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 181 | dependencies: 182 | expand-range "^1.8.1" 183 | preserve "^0.2.0" 184 | repeat-element "^1.1.2" 185 | 186 | buble@^0.16.0: 187 | version "0.16.0" 188 | resolved "https://registry.yarnpkg.com/buble/-/buble-0.16.0.tgz#1773e7b5a383f5c722af6b1b16b2ba49cb866a98" 189 | dependencies: 190 | acorn "^3.3.0" 191 | acorn-jsx "^3.0.1" 192 | acorn-object-spread "^1.0.0" 193 | chalk "^1.1.3" 194 | magic-string "^0.14.0" 195 | minimist "^1.2.0" 196 | os-homedir "^1.0.1" 197 | vlq "^0.2.2" 198 | 199 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 200 | version "1.1.1" 201 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 202 | 203 | caller-path@^0.1.0: 204 | version "0.1.0" 205 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 206 | dependencies: 207 | callsites "^0.2.0" 208 | 209 | callsites@^0.2.0: 210 | version "0.2.0" 211 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 212 | 213 | camelcase@^1.0.2: 214 | version "1.2.1" 215 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 216 | 217 | caseless@~0.12.0: 218 | version "0.12.0" 219 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 220 | 221 | center-align@^0.1.1: 222 | version "0.1.3" 223 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 224 | dependencies: 225 | align-text "^0.1.3" 226 | lazy-cache "^1.0.3" 227 | 228 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 229 | version "1.1.3" 230 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 231 | dependencies: 232 | ansi-styles "^2.2.1" 233 | escape-string-regexp "^1.0.2" 234 | has-ansi "^2.0.0" 235 | strip-ansi "^3.0.0" 236 | supports-color "^2.0.0" 237 | 238 | chalk@^2.1.0: 239 | version "2.3.0" 240 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" 241 | dependencies: 242 | ansi-styles "^3.1.0" 243 | escape-string-regexp "^1.0.5" 244 | supports-color "^4.0.0" 245 | 246 | circular-json@^0.3.1: 247 | version "0.3.1" 248 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 249 | 250 | cli-cursor@^2.1.0: 251 | version "2.1.0" 252 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 253 | dependencies: 254 | restore-cursor "^2.0.0" 255 | 256 | cli-width@^2.0.0: 257 | version "2.1.0" 258 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 259 | 260 | cliui@^2.1.0: 261 | version "2.1.0" 262 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 263 | dependencies: 264 | center-align "^0.1.1" 265 | right-align "^0.1.1" 266 | wordwrap "0.0.2" 267 | 268 | co@^4.6.0: 269 | version "4.6.0" 270 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 271 | 272 | color-convert@^1.9.0: 273 | version "1.9.0" 274 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 275 | dependencies: 276 | color-name "^1.1.1" 277 | 278 | color-name@^1.1.1: 279 | version "1.1.3" 280 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 281 | 282 | combined-stream@^1.0.5, combined-stream@~1.0.5: 283 | version "1.0.5" 284 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 285 | dependencies: 286 | delayed-stream "~1.0.0" 287 | 288 | commander@~2.11.0: 289 | version "2.11.0" 290 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" 291 | 292 | concat-map@0.0.1: 293 | version "0.0.1" 294 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 295 | 296 | concat-stream@^1.6.0: 297 | version "1.6.0" 298 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 299 | dependencies: 300 | inherits "^2.0.3" 301 | readable-stream "^2.2.2" 302 | typedarray "^0.0.6" 303 | 304 | contains-path@^0.1.0: 305 | version "0.1.0" 306 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 307 | 308 | core-util-is@~1.0.0: 309 | version "1.0.2" 310 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 311 | 312 | coveralls@^3.0.0: 313 | version "3.0.0" 314 | resolved "https://registry.yarnpkg.com/coveralls/-/coveralls-3.0.0.tgz#22ef730330538080d29b8c151dc9146afde88a99" 315 | dependencies: 316 | js-yaml "^3.6.1" 317 | lcov-parse "^0.0.10" 318 | log-driver "^1.2.5" 319 | minimist "^1.2.0" 320 | request "^2.79.0" 321 | 322 | cross-spawn@^5.1.0: 323 | version "5.1.0" 324 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 325 | dependencies: 326 | lru-cache "^4.0.1" 327 | shebang-command "^1.2.0" 328 | which "^1.2.9" 329 | 330 | cryptiles@3.x.x: 331 | version "3.1.2" 332 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" 333 | dependencies: 334 | boom "5.x.x" 335 | 336 | dashdash@^1.12.0: 337 | version "1.14.1" 338 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 339 | dependencies: 340 | assert-plus "^1.0.0" 341 | 342 | debug@^2.6.8: 343 | version "2.6.8" 344 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 345 | dependencies: 346 | ms "2.0.0" 347 | 348 | debug@^3.0.1: 349 | version "3.1.0" 350 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 351 | dependencies: 352 | ms "2.0.0" 353 | 354 | decamelize@^1.0.0: 355 | version "1.2.0" 356 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 357 | 358 | deep-is@~0.1.3: 359 | version "0.1.3" 360 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 361 | 362 | del@^2.0.2: 363 | version "2.2.2" 364 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 365 | dependencies: 366 | globby "^5.0.0" 367 | is-path-cwd "^1.0.0" 368 | is-path-in-cwd "^1.0.0" 369 | object-assign "^4.0.1" 370 | pify "^2.0.0" 371 | pinkie-promise "^2.0.0" 372 | rimraf "^2.2.8" 373 | 374 | delayed-stream@~1.0.0: 375 | version "1.0.0" 376 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 377 | 378 | doctrine@1.5.0: 379 | version "1.5.0" 380 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 381 | dependencies: 382 | esutils "^2.0.2" 383 | isarray "^1.0.0" 384 | 385 | doctrine@^2.0.0: 386 | version "2.0.0" 387 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 388 | dependencies: 389 | esutils "^2.0.2" 390 | isarray "^1.0.0" 391 | 392 | ecc-jsbn@~0.1.1: 393 | version "0.1.1" 394 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 395 | dependencies: 396 | jsbn "~0.1.0" 397 | 398 | error-ex@^1.2.0: 399 | version "1.3.1" 400 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 401 | dependencies: 402 | is-arrayish "^0.2.1" 403 | 404 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 405 | version "1.0.5" 406 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 407 | 408 | escodegen@1.8.x: 409 | version "1.8.1" 410 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 411 | dependencies: 412 | esprima "^2.7.1" 413 | estraverse "^1.9.1" 414 | esutils "^2.0.2" 415 | optionator "^0.8.1" 416 | optionalDependencies: 417 | source-map "~0.2.0" 418 | 419 | eslint-config-standard@^10.2.1: 420 | version "10.2.1" 421 | resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-10.2.1.tgz#c061e4d066f379dc17cd562c64e819b4dd454591" 422 | 423 | eslint-import-resolver-node@^0.3.1: 424 | version "0.3.1" 425 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.1.tgz#4422574cde66a9a7b099938ee4d508a199e0e3cc" 426 | dependencies: 427 | debug "^2.6.8" 428 | resolve "^1.2.0" 429 | 430 | eslint-module-utils@^2.1.1: 431 | version "2.1.1" 432 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.1.1.tgz#abaec824177613b8a95b299639e1b6facf473449" 433 | dependencies: 434 | debug "^2.6.8" 435 | pkg-dir "^1.0.0" 436 | 437 | eslint-plugin-import@^2.8.0: 438 | version "2.8.0" 439 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.8.0.tgz#fa1b6ef31fcb3c501c09859c1b86f1fc5b986894" 440 | dependencies: 441 | builtin-modules "^1.1.1" 442 | contains-path "^0.1.0" 443 | debug "^2.6.8" 444 | doctrine "1.5.0" 445 | eslint-import-resolver-node "^0.3.1" 446 | eslint-module-utils "^2.1.1" 447 | has "^1.0.1" 448 | lodash.cond "^4.3.0" 449 | minimatch "^3.0.3" 450 | read-pkg-up "^2.0.0" 451 | 452 | eslint-plugin-node@^5.2.1: 453 | version "5.2.1" 454 | resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-5.2.1.tgz#80df3253c4d7901045ec87fa660a284e32bdca29" 455 | dependencies: 456 | ignore "^3.3.6" 457 | minimatch "^3.0.4" 458 | resolve "^1.3.3" 459 | semver "5.3.0" 460 | 461 | eslint-plugin-promise@^3.6.0: 462 | version "3.6.0" 463 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.6.0.tgz#54b7658c8f454813dc2a870aff8152ec4969ba75" 464 | 465 | eslint-plugin-standard@^3.0.1: 466 | version "3.0.1" 467 | resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-3.0.1.tgz#34d0c915b45edc6f010393c7eef3823b08565cf2" 468 | 469 | eslint-scope@^3.7.1: 470 | version "3.7.1" 471 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 472 | dependencies: 473 | esrecurse "^4.1.0" 474 | estraverse "^4.1.1" 475 | 476 | eslint@^4.9.0: 477 | version "4.9.0" 478 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.9.0.tgz#76879d274068261b191fe0f2f56c74c2f4208e8b" 479 | dependencies: 480 | ajv "^5.2.0" 481 | babel-code-frame "^6.22.0" 482 | chalk "^2.1.0" 483 | concat-stream "^1.6.0" 484 | cross-spawn "^5.1.0" 485 | debug "^3.0.1" 486 | doctrine "^2.0.0" 487 | eslint-scope "^3.7.1" 488 | espree "^3.5.1" 489 | esquery "^1.0.0" 490 | estraverse "^4.2.0" 491 | esutils "^2.0.2" 492 | file-entry-cache "^2.0.0" 493 | functional-red-black-tree "^1.0.1" 494 | glob "^7.1.2" 495 | globals "^9.17.0" 496 | ignore "^3.3.3" 497 | imurmurhash "^0.1.4" 498 | inquirer "^3.0.6" 499 | is-resolvable "^1.0.0" 500 | js-yaml "^3.9.1" 501 | json-stable-stringify "^1.0.1" 502 | levn "^0.3.0" 503 | lodash "^4.17.4" 504 | minimatch "^3.0.2" 505 | mkdirp "^0.5.1" 506 | natural-compare "^1.4.0" 507 | optionator "^0.8.2" 508 | path-is-inside "^1.0.2" 509 | pluralize "^7.0.0" 510 | progress "^2.0.0" 511 | require-uncached "^1.0.3" 512 | semver "^5.3.0" 513 | strip-ansi "^4.0.0" 514 | strip-json-comments "~2.0.1" 515 | table "^4.0.1" 516 | text-table "~0.2.0" 517 | 518 | espree@^3.5.1: 519 | version "3.5.1" 520 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.1.tgz#0c988b8ab46db53100a1954ae4ba995ddd27d87e" 521 | dependencies: 522 | acorn "^5.1.1" 523 | acorn-jsx "^3.0.0" 524 | 525 | esprima@2.7.x, esprima@^2.6.0, esprima@^2.7.1: 526 | version "2.7.3" 527 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 528 | 529 | esprima@^4.0.0: 530 | version "4.0.0" 531 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 532 | 533 | esquery@^1.0.0: 534 | version "1.0.0" 535 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 536 | dependencies: 537 | estraverse "^4.0.0" 538 | 539 | esrecurse@^4.1.0: 540 | version "4.2.0" 541 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 542 | dependencies: 543 | estraverse "^4.1.0" 544 | object-assign "^4.0.1" 545 | 546 | estraverse@^1.9.1: 547 | version "1.9.3" 548 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 549 | 550 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: 551 | version "4.2.0" 552 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 553 | 554 | estree-walker@^0.3.0: 555 | version "0.3.1" 556 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.3.1.tgz#e6b1a51cf7292524e7237c312e5fe6660c1ce1aa" 557 | 558 | esutils@^2.0.2: 559 | version "2.0.2" 560 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 561 | 562 | exit@^0.1.2: 563 | version "0.1.2" 564 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 565 | 566 | expand-brackets@^0.1.4: 567 | version "0.1.5" 568 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 569 | dependencies: 570 | is-posix-bracket "^0.1.0" 571 | 572 | expand-range@^1.8.1: 573 | version "1.8.2" 574 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 575 | dependencies: 576 | fill-range "^2.1.0" 577 | 578 | extend@~3.0.1: 579 | version "3.0.1" 580 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 581 | 582 | external-editor@^2.0.4: 583 | version "2.0.4" 584 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.4.tgz#1ed9199da9cbfe2ef2f7a31b2fde8b0d12368972" 585 | dependencies: 586 | iconv-lite "^0.4.17" 587 | jschardet "^1.4.2" 588 | tmp "^0.0.31" 589 | 590 | extglob@^0.3.1: 591 | version "0.3.2" 592 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 593 | dependencies: 594 | is-extglob "^1.0.0" 595 | 596 | extsprintf@1.0.2: 597 | version "1.0.2" 598 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 599 | 600 | fast-deep-equal@^1.0.0: 601 | version "1.0.0" 602 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 603 | 604 | fast-json-stable-stringify@^2.0.0: 605 | version "2.0.0" 606 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 607 | 608 | fast-levenshtein@~2.0.4: 609 | version "2.0.6" 610 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 611 | 612 | figures@^2.0.0: 613 | version "2.0.0" 614 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 615 | dependencies: 616 | escape-string-regexp "^1.0.5" 617 | 618 | file-entry-cache@^2.0.0: 619 | version "2.0.0" 620 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 621 | dependencies: 622 | flat-cache "^1.2.1" 623 | object-assign "^4.0.1" 624 | 625 | filename-regex@^2.0.0: 626 | version "2.0.1" 627 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 628 | 629 | fill-range@^2.1.0: 630 | version "2.2.3" 631 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 632 | dependencies: 633 | is-number "^2.1.0" 634 | isobject "^2.0.0" 635 | randomatic "^1.1.3" 636 | repeat-element "^1.1.2" 637 | repeat-string "^1.5.2" 638 | 639 | find-up@^1.0.0: 640 | version "1.1.2" 641 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 642 | dependencies: 643 | path-exists "^2.0.0" 644 | pinkie-promise "^2.0.0" 645 | 646 | find-up@^2.0.0: 647 | version "2.1.0" 648 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 649 | dependencies: 650 | locate-path "^2.0.0" 651 | 652 | flat-cache@^1.2.1: 653 | version "1.2.2" 654 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 655 | dependencies: 656 | circular-json "^0.3.1" 657 | del "^2.0.2" 658 | graceful-fs "^4.1.2" 659 | write "^0.2.1" 660 | 661 | for-in@^1.0.1: 662 | version "1.0.2" 663 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 664 | 665 | for-own@^0.1.4: 666 | version "0.1.5" 667 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 668 | dependencies: 669 | for-in "^1.0.1" 670 | 671 | forever-agent@~0.6.1: 672 | version "0.6.1" 673 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 674 | 675 | form-data@~2.3.1: 676 | version "2.3.1" 677 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.1.tgz#6fb94fbd71885306d73d15cc497fe4cc4ecd44bf" 678 | dependencies: 679 | asynckit "^0.4.0" 680 | combined-stream "^1.0.5" 681 | mime-types "^2.1.12" 682 | 683 | fs-extra@^4.0.2: 684 | version "4.0.2" 685 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-4.0.2.tgz#f91704c53d1b461f893452b0c307d9997647ab6b" 686 | dependencies: 687 | graceful-fs "^4.1.2" 688 | jsonfile "^4.0.0" 689 | universalify "^0.1.0" 690 | 691 | fs.realpath@^1.0.0: 692 | version "1.0.0" 693 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 694 | 695 | function-bind@^1.0.2: 696 | version "1.1.0" 697 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 698 | 699 | functional-red-black-tree@^1.0.1: 700 | version "1.0.1" 701 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 702 | 703 | getpass@^0.1.1: 704 | version "0.1.7" 705 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 706 | dependencies: 707 | assert-plus "^1.0.0" 708 | 709 | glob-base@^0.3.0: 710 | version "0.3.0" 711 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 712 | dependencies: 713 | glob-parent "^2.0.0" 714 | is-glob "^2.0.0" 715 | 716 | glob-parent@^2.0.0: 717 | version "2.0.0" 718 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 719 | dependencies: 720 | is-glob "^2.0.0" 721 | 722 | glob@^5.0.15: 723 | version "5.0.15" 724 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 725 | dependencies: 726 | inflight "^1.0.4" 727 | inherits "2" 728 | minimatch "2 || 3" 729 | once "^1.3.0" 730 | path-is-absolute "^1.0.0" 731 | 732 | glob@^7.0.3, glob@^7.0.5, glob@^7.0.6, glob@^7.1.2: 733 | version "7.1.2" 734 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 735 | dependencies: 736 | fs.realpath "^1.0.0" 737 | inflight "^1.0.4" 738 | inherits "2" 739 | minimatch "^3.0.4" 740 | once "^1.3.0" 741 | path-is-absolute "^1.0.0" 742 | 743 | globals@^9.17.0: 744 | version "9.18.0" 745 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 746 | 747 | globby@^5.0.0: 748 | version "5.0.0" 749 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 750 | dependencies: 751 | array-union "^1.0.1" 752 | arrify "^1.0.0" 753 | glob "^7.0.3" 754 | object-assign "^4.0.1" 755 | pify "^2.0.0" 756 | pinkie-promise "^2.0.0" 757 | 758 | graceful-fs@^4.1.2, graceful-fs@^4.1.6: 759 | version "4.1.11" 760 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 761 | 762 | handlebars@^4.0.1: 763 | version "4.0.10" 764 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" 765 | dependencies: 766 | async "^1.4.0" 767 | optimist "^0.6.1" 768 | source-map "^0.4.4" 769 | optionalDependencies: 770 | uglify-js "^2.6" 771 | 772 | har-schema@^2.0.0: 773 | version "2.0.0" 774 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 775 | 776 | har-validator@~5.0.3: 777 | version "5.0.3" 778 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 779 | dependencies: 780 | ajv "^5.1.0" 781 | har-schema "^2.0.0" 782 | 783 | has-ansi@^2.0.0: 784 | version "2.0.0" 785 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 786 | dependencies: 787 | ansi-regex "^2.0.0" 788 | 789 | has-flag@^1.0.0: 790 | version "1.0.0" 791 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 792 | 793 | has-flag@^2.0.0: 794 | version "2.0.0" 795 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 796 | 797 | has@^1.0.1: 798 | version "1.0.1" 799 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 800 | dependencies: 801 | function-bind "^1.0.2" 802 | 803 | hawk@~6.0.2: 804 | version "6.0.2" 805 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" 806 | dependencies: 807 | boom "4.x.x" 808 | cryptiles "3.x.x" 809 | hoek "4.x.x" 810 | sntp "2.x.x" 811 | 812 | hoek@4.x.x: 813 | version "4.2.0" 814 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.0.tgz#72d9d0754f7fe25ca2d01ad8f8f9a9449a89526d" 815 | 816 | hosted-git-info@^2.1.4: 817 | version "2.4.2" 818 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67" 819 | 820 | http-signature@~1.2.0: 821 | version "1.2.0" 822 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 823 | dependencies: 824 | assert-plus "^1.0.0" 825 | jsprim "^1.2.2" 826 | sshpk "^1.7.0" 827 | 828 | iconv-lite@^0.4.17: 829 | version "0.4.18" 830 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.18.tgz#23d8656b16aae6742ac29732ea8f0336a4789cf2" 831 | 832 | ignore@^3.3.3: 833 | version "3.3.3" 834 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.3.tgz#432352e57accd87ab3110e82d3fea0e47812156d" 835 | 836 | ignore@^3.3.6: 837 | version "3.3.7" 838 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.7.tgz#612289bfb3c220e186a58118618d5be8c1bab021" 839 | 840 | imurmurhash@^0.1.4: 841 | version "0.1.4" 842 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 843 | 844 | inflight@^1.0.4: 845 | version "1.0.6" 846 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 847 | dependencies: 848 | once "^1.3.0" 849 | wrappy "1" 850 | 851 | inherits@2, inherits@^2.0.3, inherits@~2.0.3: 852 | version "2.0.3" 853 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 854 | 855 | inquirer@^3.0.6: 856 | version "3.1.1" 857 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.1.1.tgz#87621c4fba4072f48a8dd71c9f9df6f100b2d534" 858 | dependencies: 859 | ansi-escapes "^2.0.0" 860 | chalk "^1.0.0" 861 | cli-cursor "^2.1.0" 862 | cli-width "^2.0.0" 863 | external-editor "^2.0.4" 864 | figures "^2.0.0" 865 | lodash "^4.3.0" 866 | mute-stream "0.0.7" 867 | run-async "^2.2.0" 868 | rx-lite "^4.0.8" 869 | rx-lite-aggregates "^4.0.8" 870 | string-width "^2.0.0" 871 | strip-ansi "^3.0.0" 872 | through "^2.3.6" 873 | 874 | is-arrayish@^0.2.1: 875 | version "0.2.1" 876 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 877 | 878 | is-buffer@^1.1.5: 879 | version "1.1.5" 880 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 881 | 882 | is-builtin-module@^1.0.0: 883 | version "1.0.0" 884 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 885 | dependencies: 886 | builtin-modules "^1.0.0" 887 | 888 | is-dotfile@^1.0.0: 889 | version "1.0.3" 890 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 891 | 892 | is-equal-shallow@^0.1.3: 893 | version "0.1.3" 894 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 895 | dependencies: 896 | is-primitive "^2.0.0" 897 | 898 | is-extendable@^0.1.1: 899 | version "0.1.1" 900 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 901 | 902 | is-extglob@^1.0.0: 903 | version "1.0.0" 904 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 905 | 906 | is-fullwidth-code-point@^2.0.0: 907 | version "2.0.0" 908 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 909 | 910 | is-glob@^2.0.0, is-glob@^2.0.1: 911 | version "2.0.1" 912 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 913 | dependencies: 914 | is-extglob "^1.0.0" 915 | 916 | is-number@^2.1.0: 917 | version "2.1.0" 918 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 919 | dependencies: 920 | kind-of "^3.0.2" 921 | 922 | is-number@^3.0.0: 923 | version "3.0.0" 924 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 925 | dependencies: 926 | kind-of "^3.0.2" 927 | 928 | is-path-cwd@^1.0.0: 929 | version "1.0.0" 930 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 931 | 932 | is-path-in-cwd@^1.0.0: 933 | version "1.0.0" 934 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 935 | dependencies: 936 | is-path-inside "^1.0.0" 937 | 938 | is-path-inside@^1.0.0: 939 | version "1.0.0" 940 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 941 | dependencies: 942 | path-is-inside "^1.0.1" 943 | 944 | is-posix-bracket@^0.1.0: 945 | version "0.1.1" 946 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 947 | 948 | is-primitive@^2.0.0: 949 | version "2.0.0" 950 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 951 | 952 | is-promise@^2.1.0: 953 | version "2.1.0" 954 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 955 | 956 | is-resolvable@^1.0.0: 957 | version "1.0.0" 958 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 959 | dependencies: 960 | tryit "^1.0.1" 961 | 962 | is-typedarray@~1.0.0: 963 | version "1.0.0" 964 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 965 | 966 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 967 | version "1.0.0" 968 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 969 | 970 | isexe@^2.0.0: 971 | version "2.0.0" 972 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 973 | 974 | isobject@^2.0.0: 975 | version "2.1.0" 976 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 977 | dependencies: 978 | isarray "1.0.0" 979 | 980 | isstream@~0.1.2: 981 | version "0.1.2" 982 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 983 | 984 | istanbul@^0.4.5: 985 | version "0.4.5" 986 | resolved "https://registry.yarnpkg.com/istanbul/-/istanbul-0.4.5.tgz#65c7d73d4c4da84d4f3ac310b918fb0b8033733b" 987 | dependencies: 988 | abbrev "1.0.x" 989 | async "1.x" 990 | escodegen "1.8.x" 991 | esprima "2.7.x" 992 | glob "^5.0.15" 993 | handlebars "^4.0.1" 994 | js-yaml "3.x" 995 | mkdirp "0.5.x" 996 | nopt "3.x" 997 | once "1.x" 998 | resolve "1.1.x" 999 | supports-color "^3.1.0" 1000 | which "^1.1.1" 1001 | wordwrap "^1.0.0" 1002 | 1003 | jasmine-core@~2.8.0: 1004 | version "2.8.0" 1005 | resolved "https://registry.yarnpkg.com/jasmine-core/-/jasmine-core-2.8.0.tgz#bcc979ae1f9fd05701e45e52e65d3a5d63f1a24e" 1006 | 1007 | jasmine@^2.8.0: 1008 | version "2.8.0" 1009 | resolved "https://registry.yarnpkg.com/jasmine/-/jasmine-2.8.0.tgz#6b089c0a11576b1f16df11b80146d91d4e8b8a3e" 1010 | dependencies: 1011 | exit "^0.1.2" 1012 | glob "^7.0.6" 1013 | jasmine-core "~2.8.0" 1014 | 1015 | js-tokens@^3.0.0: 1016 | version "3.0.1" 1017 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 1018 | 1019 | js-yaml@3.x: 1020 | version "3.6.1" 1021 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.6.1.tgz#6e5fe67d8b205ce4d22fad05b7781e8dadcc4b30" 1022 | dependencies: 1023 | argparse "^1.0.7" 1024 | esprima "^2.6.0" 1025 | 1026 | js-yaml@^3.6.1, js-yaml@^3.9.1: 1027 | version "3.10.0" 1028 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 1029 | dependencies: 1030 | argparse "^1.0.7" 1031 | esprima "^4.0.0" 1032 | 1033 | jsbn@~0.1.0: 1034 | version "0.1.1" 1035 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1036 | 1037 | jschardet@^1.4.2: 1038 | version "1.4.2" 1039 | resolved "https://registry.yarnpkg.com/jschardet/-/jschardet-1.4.2.tgz#2aa107f142af4121d145659d44f50830961e699a" 1040 | 1041 | json-schema-traverse@^0.3.0: 1042 | version "0.3.1" 1043 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 1044 | 1045 | json-schema@0.2.3: 1046 | version "0.2.3" 1047 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1048 | 1049 | json-stable-stringify@^1.0.1: 1050 | version "1.0.1" 1051 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1052 | dependencies: 1053 | jsonify "~0.0.0" 1054 | 1055 | json-stringify-safe@~5.0.1: 1056 | version "5.0.1" 1057 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1058 | 1059 | jsonfile@^4.0.0: 1060 | version "4.0.0" 1061 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" 1062 | optionalDependencies: 1063 | graceful-fs "^4.1.6" 1064 | 1065 | jsonify@~0.0.0: 1066 | version "0.0.0" 1067 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1068 | 1069 | jsprim@^1.2.2: 1070 | version "1.4.0" 1071 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 1072 | dependencies: 1073 | assert-plus "1.0.0" 1074 | extsprintf "1.0.2" 1075 | json-schema "0.2.3" 1076 | verror "1.3.6" 1077 | 1078 | kind-of@^3.0.2: 1079 | version "3.2.2" 1080 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1081 | dependencies: 1082 | is-buffer "^1.1.5" 1083 | 1084 | kind-of@^4.0.0: 1085 | version "4.0.0" 1086 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1087 | dependencies: 1088 | is-buffer "^1.1.5" 1089 | 1090 | lazy-cache@^1.0.3: 1091 | version "1.0.4" 1092 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1093 | 1094 | lcov-parse@^0.0.10: 1095 | version "0.0.10" 1096 | resolved "https://registry.yarnpkg.com/lcov-parse/-/lcov-parse-0.0.10.tgz#1b0b8ff9ac9c7889250582b70b71315d9da6d9a3" 1097 | 1098 | levn@^0.3.0, levn@~0.3.0: 1099 | version "0.3.0" 1100 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1101 | dependencies: 1102 | prelude-ls "~1.1.2" 1103 | type-check "~0.3.2" 1104 | 1105 | load-json-file@^2.0.0: 1106 | version "2.0.0" 1107 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1108 | dependencies: 1109 | graceful-fs "^4.1.2" 1110 | parse-json "^2.2.0" 1111 | pify "^2.0.0" 1112 | strip-bom "^3.0.0" 1113 | 1114 | locate-path@^2.0.0: 1115 | version "2.0.0" 1116 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1117 | dependencies: 1118 | p-locate "^2.0.0" 1119 | path-exists "^3.0.0" 1120 | 1121 | lodash.cond@^4.3.0: 1122 | version "4.5.2" 1123 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 1124 | 1125 | lodash@^4.0.0, lodash@^4.17.4, lodash@^4.3.0: 1126 | version "4.17.4" 1127 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1128 | 1129 | log-driver@^1.2.5: 1130 | version "1.2.5" 1131 | resolved "https://registry.yarnpkg.com/log-driver/-/log-driver-1.2.5.tgz#7ae4ec257302fd790d557cb10c97100d857b0056" 1132 | 1133 | longest@^1.0.1: 1134 | version "1.0.1" 1135 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1136 | 1137 | lru-cache@^4.0.1: 1138 | version "4.1.1" 1139 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 1140 | dependencies: 1141 | pseudomap "^1.0.2" 1142 | yallist "^2.1.2" 1143 | 1144 | magic-string@^0.14.0: 1145 | version "0.14.0" 1146 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.14.0.tgz#57224aef1701caeed273b17a39a956e72b172462" 1147 | dependencies: 1148 | vlq "^0.2.1" 1149 | 1150 | micromatch@^2.3.11: 1151 | version "2.3.11" 1152 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1153 | dependencies: 1154 | arr-diff "^2.0.0" 1155 | array-unique "^0.2.1" 1156 | braces "^1.8.2" 1157 | expand-brackets "^0.1.4" 1158 | extglob "^0.3.1" 1159 | filename-regex "^2.0.0" 1160 | is-extglob "^1.0.0" 1161 | is-glob "^2.0.1" 1162 | kind-of "^3.0.2" 1163 | normalize-path "^2.0.1" 1164 | object.omit "^2.0.0" 1165 | parse-glob "^3.0.4" 1166 | regex-cache "^0.4.2" 1167 | 1168 | mime-db@~1.27.0: 1169 | version "1.27.0" 1170 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 1171 | 1172 | mime-db@~1.30.0: 1173 | version "1.30.0" 1174 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 1175 | 1176 | mime-types@^2.1.12: 1177 | version "2.1.15" 1178 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 1179 | dependencies: 1180 | mime-db "~1.27.0" 1181 | 1182 | mime-types@~2.1.17: 1183 | version "2.1.17" 1184 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 1185 | dependencies: 1186 | mime-db "~1.30.0" 1187 | 1188 | mimic-fn@^1.0.0: 1189 | version "1.1.0" 1190 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 1191 | 1192 | "minimatch@2 || 3", minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 1193 | version "3.0.4" 1194 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1195 | dependencies: 1196 | brace-expansion "^1.1.7" 1197 | 1198 | minimist@0.0.8, minimist@~0.0.1: 1199 | version "0.0.8" 1200 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1201 | 1202 | minimist@^1.2.0: 1203 | version "1.2.0" 1204 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1205 | 1206 | mkdirp@0.5.x, mkdirp@^0.5.1: 1207 | version "0.5.1" 1208 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1209 | dependencies: 1210 | minimist "0.0.8" 1211 | 1212 | ms@2.0.0: 1213 | version "2.0.0" 1214 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1215 | 1216 | mute-stream@0.0.7: 1217 | version "0.0.7" 1218 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 1219 | 1220 | natural-compare@^1.4.0: 1221 | version "1.4.0" 1222 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1223 | 1224 | nopt@3.x: 1225 | version "3.0.6" 1226 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 1227 | dependencies: 1228 | abbrev "1" 1229 | 1230 | normalize-package-data@^2.3.2: 1231 | version "2.3.8" 1232 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" 1233 | dependencies: 1234 | hosted-git-info "^2.1.4" 1235 | is-builtin-module "^1.0.0" 1236 | semver "2 || 3 || 4 || 5" 1237 | validate-npm-package-license "^3.0.1" 1238 | 1239 | normalize-path@^2.0.1: 1240 | version "2.1.1" 1241 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1242 | dependencies: 1243 | remove-trailing-separator "^1.0.1" 1244 | 1245 | oauth-sign@~0.8.2: 1246 | version "0.8.2" 1247 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1248 | 1249 | object-assign@^4.0.1: 1250 | version "4.1.1" 1251 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1252 | 1253 | object.omit@^2.0.0: 1254 | version "2.0.1" 1255 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1256 | dependencies: 1257 | for-own "^0.1.4" 1258 | is-extendable "^0.1.1" 1259 | 1260 | once@1.x, once@^1.3.0: 1261 | version "1.4.0" 1262 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1263 | dependencies: 1264 | wrappy "1" 1265 | 1266 | onetime@^2.0.0: 1267 | version "2.0.1" 1268 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 1269 | dependencies: 1270 | mimic-fn "^1.0.0" 1271 | 1272 | optimist@^0.6.1: 1273 | version "0.6.1" 1274 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 1275 | dependencies: 1276 | minimist "~0.0.1" 1277 | wordwrap "~0.0.2" 1278 | 1279 | optionator@^0.8.1, optionator@^0.8.2: 1280 | version "0.8.2" 1281 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1282 | dependencies: 1283 | deep-is "~0.1.3" 1284 | fast-levenshtein "~2.0.4" 1285 | levn "~0.3.0" 1286 | prelude-ls "~1.1.2" 1287 | type-check "~0.3.2" 1288 | wordwrap "~1.0.0" 1289 | 1290 | os-homedir@^1.0.1: 1291 | version "1.0.2" 1292 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1293 | 1294 | os-tmpdir@~1.0.1: 1295 | version "1.0.2" 1296 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1297 | 1298 | p-limit@^1.1.0: 1299 | version "1.1.0" 1300 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 1301 | 1302 | p-locate@^2.0.0: 1303 | version "2.0.0" 1304 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1305 | dependencies: 1306 | p-limit "^1.1.0" 1307 | 1308 | parse-glob@^3.0.4: 1309 | version "3.0.4" 1310 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1311 | dependencies: 1312 | glob-base "^0.3.0" 1313 | is-dotfile "^1.0.0" 1314 | is-extglob "^1.0.0" 1315 | is-glob "^2.0.0" 1316 | 1317 | parse-json@^2.2.0: 1318 | version "2.2.0" 1319 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1320 | dependencies: 1321 | error-ex "^1.2.0" 1322 | 1323 | path-exists@^2.0.0: 1324 | version "2.1.0" 1325 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1326 | dependencies: 1327 | pinkie-promise "^2.0.0" 1328 | 1329 | path-exists@^3.0.0: 1330 | version "3.0.0" 1331 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1332 | 1333 | path-is-absolute@^1.0.0: 1334 | version "1.0.1" 1335 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1336 | 1337 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 1338 | version "1.0.2" 1339 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 1340 | 1341 | path-parse@^1.0.5: 1342 | version "1.0.5" 1343 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 1344 | 1345 | path-type@^2.0.0: 1346 | version "2.0.0" 1347 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 1348 | dependencies: 1349 | pify "^2.0.0" 1350 | 1351 | performance-now@^2.1.0: 1352 | version "2.1.0" 1353 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 1354 | 1355 | pify@^2.0.0: 1356 | version "2.3.0" 1357 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1358 | 1359 | pinkie-promise@^2.0.0: 1360 | version "2.0.1" 1361 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1362 | dependencies: 1363 | pinkie "^2.0.0" 1364 | 1365 | pinkie@^2.0.0: 1366 | version "2.0.4" 1367 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1368 | 1369 | pkg-dir@^1.0.0: 1370 | version "1.0.0" 1371 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 1372 | dependencies: 1373 | find-up "^1.0.0" 1374 | 1375 | pluralize@^7.0.0: 1376 | version "7.0.0" 1377 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" 1378 | 1379 | prelude-ls@~1.1.2: 1380 | version "1.1.2" 1381 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 1382 | 1383 | preserve@^0.2.0: 1384 | version "0.2.0" 1385 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1386 | 1387 | process-nextick-args@~1.0.6: 1388 | version "1.0.7" 1389 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1390 | 1391 | progress@^2.0.0: 1392 | version "2.0.0" 1393 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 1394 | 1395 | pseudomap@^1.0.2: 1396 | version "1.0.2" 1397 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 1398 | 1399 | punycode@^1.4.1: 1400 | version "1.4.1" 1401 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1402 | 1403 | qs@~6.5.1: 1404 | version "6.5.1" 1405 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" 1406 | 1407 | randomatic@^1.1.3: 1408 | version "1.1.7" 1409 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 1410 | dependencies: 1411 | is-number "^3.0.0" 1412 | kind-of "^4.0.0" 1413 | 1414 | read-pkg-up@^2.0.0: 1415 | version "2.0.0" 1416 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 1417 | dependencies: 1418 | find-up "^2.0.0" 1419 | read-pkg "^2.0.0" 1420 | 1421 | read-pkg@^2.0.0: 1422 | version "2.0.0" 1423 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 1424 | dependencies: 1425 | load-json-file "^2.0.0" 1426 | normalize-package-data "^2.3.2" 1427 | path-type "^2.0.0" 1428 | 1429 | readable-stream@^2.2.2: 1430 | version "2.3.2" 1431 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.2.tgz#5a04df05e4f57fe3f0dc68fdd11dc5c97c7e6f4d" 1432 | dependencies: 1433 | core-util-is "~1.0.0" 1434 | inherits "~2.0.3" 1435 | isarray "~1.0.0" 1436 | process-nextick-args "~1.0.6" 1437 | safe-buffer "~5.1.0" 1438 | string_decoder "~1.0.0" 1439 | util-deprecate "~1.0.1" 1440 | 1441 | regex-cache@^0.4.2: 1442 | version "0.4.4" 1443 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 1444 | dependencies: 1445 | is-equal-shallow "^0.1.3" 1446 | 1447 | remove-trailing-separator@^1.0.1: 1448 | version "1.1.0" 1449 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 1450 | 1451 | repeat-element@^1.1.2: 1452 | version "1.1.2" 1453 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1454 | 1455 | repeat-string@^1.5.2: 1456 | version "1.6.1" 1457 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1458 | 1459 | request@^2.79.0: 1460 | version "2.83.0" 1461 | resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356" 1462 | dependencies: 1463 | aws-sign2 "~0.7.0" 1464 | aws4 "^1.6.0" 1465 | caseless "~0.12.0" 1466 | combined-stream "~1.0.5" 1467 | extend "~3.0.1" 1468 | forever-agent "~0.6.1" 1469 | form-data "~2.3.1" 1470 | har-validator "~5.0.3" 1471 | hawk "~6.0.2" 1472 | http-signature "~1.2.0" 1473 | is-typedarray "~1.0.0" 1474 | isstream "~0.1.2" 1475 | json-stringify-safe "~5.0.1" 1476 | mime-types "~2.1.17" 1477 | oauth-sign "~0.8.2" 1478 | performance-now "^2.1.0" 1479 | qs "~6.5.1" 1480 | safe-buffer "^5.1.1" 1481 | stringstream "~0.0.5" 1482 | tough-cookie "~2.3.3" 1483 | tunnel-agent "^0.6.0" 1484 | uuid "^3.1.0" 1485 | 1486 | require-uncached@^1.0.3: 1487 | version "1.0.3" 1488 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 1489 | dependencies: 1490 | caller-path "^0.1.0" 1491 | resolve-from "^1.0.0" 1492 | 1493 | resolve-from@^1.0.0: 1494 | version "1.0.1" 1495 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 1496 | 1497 | resolve@1.1.x: 1498 | version "1.1.7" 1499 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 1500 | 1501 | resolve@^1.2.0: 1502 | version "1.5.0" 1503 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36" 1504 | dependencies: 1505 | path-parse "^1.0.5" 1506 | 1507 | resolve@^1.3.3: 1508 | version "1.3.3" 1509 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" 1510 | dependencies: 1511 | path-parse "^1.0.5" 1512 | 1513 | restore-cursor@^2.0.0: 1514 | version "2.0.0" 1515 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 1516 | dependencies: 1517 | onetime "^2.0.0" 1518 | signal-exit "^3.0.2" 1519 | 1520 | right-align@^0.1.1: 1521 | version "0.1.3" 1522 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 1523 | dependencies: 1524 | align-text "^0.1.1" 1525 | 1526 | rimraf@^2.2.8: 1527 | version "2.6.1" 1528 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 1529 | dependencies: 1530 | glob "^7.0.5" 1531 | 1532 | rollup-plugin-buble@^0.16.0: 1533 | version "0.16.0" 1534 | resolved "https://registry.yarnpkg.com/rollup-plugin-buble/-/rollup-plugin-buble-0.16.0.tgz#3c66e2f4703527f5d27a4054f97d5eef463c5bb8" 1535 | dependencies: 1536 | buble "^0.16.0" 1537 | rollup-pluginutils "^2.0.1" 1538 | 1539 | rollup-pluginutils@^2.0.1: 1540 | version "2.0.1" 1541 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.0.1.tgz#7ec95b3573f6543a46a6461bd9a7c544525d0fc0" 1542 | dependencies: 1543 | estree-walker "^0.3.0" 1544 | micromatch "^2.3.11" 1545 | 1546 | rollup@^0.50.0: 1547 | version "0.50.0" 1548 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.50.0.tgz#4c158f4e780e6cb33ff0dbfc184a52cc58cd5f3b" 1549 | 1550 | run-async@^2.2.0: 1551 | version "2.3.0" 1552 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 1553 | dependencies: 1554 | is-promise "^2.1.0" 1555 | 1556 | rx-lite-aggregates@^4.0.8: 1557 | version "4.0.8" 1558 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 1559 | dependencies: 1560 | rx-lite "*" 1561 | 1562 | rx-lite@*, rx-lite@^4.0.8: 1563 | version "4.0.8" 1564 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 1565 | 1566 | safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0: 1567 | version "5.1.1" 1568 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 1569 | 1570 | "semver@2 || 3 || 4 || 5", semver@5.3.0: 1571 | version "5.3.0" 1572 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 1573 | 1574 | semver@^5.3.0: 1575 | version "5.4.1" 1576 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 1577 | 1578 | shebang-command@^1.2.0: 1579 | version "1.2.0" 1580 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 1581 | dependencies: 1582 | shebang-regex "^1.0.0" 1583 | 1584 | shebang-regex@^1.0.0: 1585 | version "1.0.0" 1586 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 1587 | 1588 | signal-exit@^3.0.2: 1589 | version "3.0.2" 1590 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1591 | 1592 | slice-ansi@0.0.4: 1593 | version "0.0.4" 1594 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 1595 | 1596 | sntp@2.x.x: 1597 | version "2.1.0" 1598 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8" 1599 | dependencies: 1600 | hoek "4.x.x" 1601 | 1602 | source-map@^0.4.4: 1603 | version "0.4.4" 1604 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 1605 | dependencies: 1606 | amdefine ">=0.0.4" 1607 | 1608 | source-map@~0.2.0: 1609 | version "0.2.0" 1610 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 1611 | dependencies: 1612 | amdefine ">=0.0.4" 1613 | 1614 | source-map@~0.5.1: 1615 | version "0.5.6" 1616 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 1617 | 1618 | source-map@~0.6.1: 1619 | version "0.6.1" 1620 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 1621 | 1622 | spdx-correct@~1.0.0: 1623 | version "1.0.2" 1624 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 1625 | dependencies: 1626 | spdx-license-ids "^1.0.2" 1627 | 1628 | spdx-expression-parse@~1.0.0: 1629 | version "1.0.4" 1630 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 1631 | 1632 | spdx-license-ids@^1.0.2: 1633 | version "1.2.2" 1634 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 1635 | 1636 | sprintf-js@~1.0.2: 1637 | version "1.0.3" 1638 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 1639 | 1640 | sshpk@^1.7.0: 1641 | version "1.13.1" 1642 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 1643 | dependencies: 1644 | asn1 "~0.2.3" 1645 | assert-plus "^1.0.0" 1646 | dashdash "^1.12.0" 1647 | getpass "^0.1.1" 1648 | optionalDependencies: 1649 | bcrypt-pbkdf "^1.0.0" 1650 | ecc-jsbn "~0.1.1" 1651 | jsbn "~0.1.0" 1652 | tweetnacl "~0.14.0" 1653 | 1654 | string-width@^2.0.0: 1655 | version "2.0.0" 1656 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 1657 | dependencies: 1658 | is-fullwidth-code-point "^2.0.0" 1659 | strip-ansi "^3.0.0" 1660 | 1661 | string_decoder@~1.0.0: 1662 | version "1.0.3" 1663 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 1664 | dependencies: 1665 | safe-buffer "~5.1.0" 1666 | 1667 | stringstream@~0.0.5: 1668 | version "0.0.5" 1669 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 1670 | 1671 | strip-ansi@^3.0.0: 1672 | version "3.0.1" 1673 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1674 | dependencies: 1675 | ansi-regex "^2.0.0" 1676 | 1677 | strip-ansi@^4.0.0: 1678 | version "4.0.0" 1679 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 1680 | dependencies: 1681 | ansi-regex "^3.0.0" 1682 | 1683 | strip-bom@^3.0.0: 1684 | version "3.0.0" 1685 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 1686 | 1687 | strip-json-comments@~2.0.1: 1688 | version "2.0.1" 1689 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1690 | 1691 | supports-color@^2.0.0: 1692 | version "2.0.0" 1693 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1694 | 1695 | supports-color@^3.1.0: 1696 | version "3.2.3" 1697 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 1698 | dependencies: 1699 | has-flag "^1.0.0" 1700 | 1701 | supports-color@^4.0.0: 1702 | version "4.5.0" 1703 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 1704 | dependencies: 1705 | has-flag "^2.0.0" 1706 | 1707 | table@^4.0.1: 1708 | version "4.0.1" 1709 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.1.tgz#a8116c133fac2c61f4a420ab6cdf5c4d61f0e435" 1710 | dependencies: 1711 | ajv "^4.7.0" 1712 | ajv-keywords "^1.0.0" 1713 | chalk "^1.1.1" 1714 | lodash "^4.0.0" 1715 | slice-ansi "0.0.4" 1716 | string-width "^2.0.0" 1717 | 1718 | text-table@~0.2.0: 1719 | version "0.2.0" 1720 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 1721 | 1722 | through@^2.3.6: 1723 | version "2.3.8" 1724 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 1725 | 1726 | tmp@^0.0.31: 1727 | version "0.0.31" 1728 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.31.tgz#8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7" 1729 | dependencies: 1730 | os-tmpdir "~1.0.1" 1731 | 1732 | tough-cookie@~2.3.3: 1733 | version "2.3.3" 1734 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 1735 | dependencies: 1736 | punycode "^1.4.1" 1737 | 1738 | tryit@^1.0.1: 1739 | version "1.0.3" 1740 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 1741 | 1742 | tunnel-agent@^0.6.0: 1743 | version "0.6.0" 1744 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 1745 | dependencies: 1746 | safe-buffer "^5.0.1" 1747 | 1748 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1749 | version "0.14.5" 1750 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1751 | 1752 | type-check@~0.3.2: 1753 | version "0.3.2" 1754 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 1755 | dependencies: 1756 | prelude-ls "~1.1.2" 1757 | 1758 | typedarray@^0.0.6: 1759 | version "0.0.6" 1760 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 1761 | 1762 | uglify-js@^2.6: 1763 | version "2.8.29" 1764 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 1765 | dependencies: 1766 | source-map "~0.5.1" 1767 | yargs "~3.10.0" 1768 | optionalDependencies: 1769 | uglify-to-browserify "~1.0.0" 1770 | 1771 | uglify-js@^3.1.5: 1772 | version "3.1.5" 1773 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.1.5.tgz#4c1a6d53b2fe77e4710dd94631853effd3ff5143" 1774 | dependencies: 1775 | commander "~2.11.0" 1776 | source-map "~0.6.1" 1777 | 1778 | uglify-to-browserify@~1.0.0: 1779 | version "1.0.2" 1780 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 1781 | 1782 | universalify@^0.1.0: 1783 | version "0.1.0" 1784 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.0.tgz#9eb1c4651debcc670cc94f1a75762332bb967778" 1785 | 1786 | util-deprecate@~1.0.1: 1787 | version "1.0.2" 1788 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1789 | 1790 | uuid@^3.1.0: 1791 | version "3.1.0" 1792 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 1793 | 1794 | validate-npm-package-license@^3.0.1: 1795 | version "3.0.1" 1796 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 1797 | dependencies: 1798 | spdx-correct "~1.0.0" 1799 | spdx-expression-parse "~1.0.0" 1800 | 1801 | verror@1.3.6: 1802 | version "1.3.6" 1803 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 1804 | dependencies: 1805 | extsprintf "1.0.2" 1806 | 1807 | vlq@^0.2.1: 1808 | version "0.2.2" 1809 | resolved "https://registry.yarnpkg.com/vlq/-/vlq-0.2.2.tgz#e316d5257b40b86bb43cb8d5fea5d7f54d6b0ca1" 1810 | 1811 | vlq@^0.2.2: 1812 | version "0.2.3" 1813 | resolved "https://registry.yarnpkg.com/vlq/-/vlq-0.2.3.tgz#8f3e4328cf63b1540c0d67e1b2778386f8975b26" 1814 | 1815 | which@^1.1.1: 1816 | version "1.2.14" 1817 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 1818 | dependencies: 1819 | isexe "^2.0.0" 1820 | 1821 | which@^1.2.9: 1822 | version "1.3.0" 1823 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 1824 | dependencies: 1825 | isexe "^2.0.0" 1826 | 1827 | window-size@0.1.0: 1828 | version "0.1.0" 1829 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 1830 | 1831 | wordwrap@0.0.2: 1832 | version "0.0.2" 1833 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 1834 | 1835 | wordwrap@^1.0.0, wordwrap@~1.0.0: 1836 | version "1.0.0" 1837 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 1838 | 1839 | wordwrap@~0.0.2: 1840 | version "0.0.3" 1841 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 1842 | 1843 | wrappy@1: 1844 | version "1.0.2" 1845 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1846 | 1847 | write@^0.2.1: 1848 | version "0.2.1" 1849 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 1850 | dependencies: 1851 | mkdirp "^0.5.1" 1852 | 1853 | yallist@^2.1.2: 1854 | version "2.1.2" 1855 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 1856 | 1857 | yargs@~3.10.0: 1858 | version "3.10.0" 1859 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 1860 | dependencies: 1861 | camelcase "^1.0.2" 1862 | cliui "^2.1.0" 1863 | decamelize "^1.0.0" 1864 | window-size "0.1.0" 1865 | --------------------------------------------------------------------------------