├── .babelrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── examples └── example.js ├── package.json ├── src ├── deserialize.js ├── helpers │ └── native-type-helpers.js ├── index.js └── serialize.js ├── test ├── create-serialization-stream │ ├── _helpers.js │ ├── iterable.js │ ├── plain.js │ └── record.js ├── deserialize │ ├── _helpers.js │ ├── iterable.js │ ├── native-objects.js │ ├── plain.js │ └── record.js └── serialize │ ├── _helpers.js │ ├── iterable.js │ ├── native-objects.js │ ├── plain.js │ └── record.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ "es2015" ] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | lib/ 2 | node_modules/ 3 | 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | examples/ 2 | node_modules/ 3 | src/ 4 | test/ 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "8" 4 | - "10" 5 | - "12" 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Jan Kuča 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # JsonImmutable 2 | 3 | [![Build Status](https://travis-ci.org/avocode/json-immutable.svg)](https://travis-ci.org/avocode/json-immutable) 4 | 5 | Immutable.JS structure-aware JSON serializer/deserializer built around the native `JSON` API. 6 | 7 | ## Motivation 8 | 9 | By using the native `JSON` API, Immutable.JS structures are serialized as plain objects and arrays with no type information. The goal was to preserve both Immutable.JS `Iterable` types (maps, lists, etc.) and `Record` types. `immutable.Map` supports and preserves key types while plain JavaScript object keys are coerced to strings. These types should also preserved. 10 | 11 | ## Usage 12 | 13 | ### Plain Objects and Primitive Types 14 | 15 | ```javascript 16 | const data = { 'a': 'b', 'c': 123, 'd': true } 17 | 18 | // Serialize 19 | const json = serialize(data) 20 | // json == '{"a":"b","c":123,"d":true}' 21 | 22 | // Deserialize 23 | const result = deserialize(json) 24 | ``` 25 | 26 | ### Native Object Types 27 | 28 | ```javascript 29 | const data = { 'created_at': new Date('2016-09-08'), 'pattern': /iamnative/g } 30 | 31 | // Serialize 32 | const json = serialize(data) 33 | // json == '{"created_at":{"__date":"2016-09-08T00:00:00Z"},"pattern":{"__regexp":"/iamnative/g"}}' 34 | 35 | // Deserialize 36 | const result = deserialize(json) 37 | ``` 38 | 39 | ### Immutable Records 40 | 41 | ```javascript 42 | const SampleRecord = immutable.Record( 43 | { 'a': 3, 'b': 4 }, 44 | 'SampleRecord' 45 | ) 46 | 47 | const data = { 48 | 'x': SampleRecord({ 'a': 5 }), 49 | } 50 | 51 | // Serialize 52 | const json = serialize(data) 53 | // json == '{"x":{"__record":"SampleRecord","data":{"a":5}}}' 54 | 55 | // Deserialize 56 | const result = deserialize(json, { 57 | recordTypes: { 58 | 'SampleRecord': SampleRecord 59 | } 60 | }) 61 | ``` 62 | 63 | Record types can be named. This is utilized by the serializer/deserializer to revive `immutable.Record` objects. See the `SampleRecord` name passed into `immutable.Record()` as the second argument. 64 | 65 | NOTE: When an unknown record type is encountered during deserialization, an error is thrown. 66 | 67 | ### General Immutable Structures 68 | 69 | ```javascript 70 | const data = { 71 | 'x': immutable.Map({ 72 | 'y': immutable.List.of(1, 2, 3) 73 | }), 74 | } 75 | 76 | // Serialization 77 | const json = serialize(data) 78 | // json == '{"x":{"__iterable":"Map","data":[["y",{"__iterable":"List","data":[1,2,3]"}]]}}' 79 | 80 | // Deserialize 81 | const result = deserialize(json) 82 | ``` 83 | 84 | - Immutable structures, plain objects and primitive data can be safely composed together. 85 | 86 | - `immutable.Map` key type information is preserved as opposed to the bare `JSON` API. 87 | 88 | NOTE: When an unknown Immutable iterable type is encountered during deserialization, an error is thrown. The supported types are `List`, `Map`, `OrderedMap`, `Set`, `OrderedSet` and `Stack`. 89 | 90 | ## API 91 | 92 | - **`serialize()`** 93 | 94 | Arguments: 95 | 96 | - `data`: The data to serialize. 97 | - `options={}`: Serialization options. 98 | - `pretty=false`: Whether to pretty-print the result (2 spaces). 99 | 100 | Return value: 101 | 102 | - `string`: The JSON representation of the input (`data`). 103 | 104 | - **`deserialize()`** 105 | 106 | Arguments: 107 | 108 | - `json`: A JSON representation of data. 109 | - `options={}`: Deserialization options. 110 | - `recordTypes={}`: `immutable.Record` factories. 111 | 112 | Return value: 113 | 114 | - `any`: Deserialized data. 115 | 116 | ### Streaming API 117 | 118 | - **`createSerializationStream()`** 119 | 120 | Arguments: 121 | 122 | - `data`: The data to serialize. 123 | - `options={}`: Serialization options. 124 | - `pretty=false`: Whether to pretty-print the result (2 spaces). 125 | - `bigChunks=false`: Whether the serialized data should only be split into chunks based on the reader speed. By default, each data structure level is processed in its own event loop microtask which. 126 | - NOTE: When `bigChunks=true`, a (possibly substantial) portion of the data is serialized synchronously. 127 | 128 | Return value: 129 | 130 | - `stream.PassThrough`: A readable stream emitting the JSON representation of the input (`data`). 131 | 132 | ## Running Tests 133 | 134 | 1. Clone the repository. 135 | 2. `npm install` 136 | 3. `npm test` 137 | -------------------------------------------------------------------------------- /examples/example.js: -------------------------------------------------------------------------------- 1 | const immutable = require('immutable') 2 | 3 | const { deserialize, serialize } = require('../') 4 | 5 | 6 | const RecordA = immutable.Record({ 7 | 'a1': 3, 8 | 'a2': 4, 9 | 'b': null, 10 | }, 'RecordA') 11 | 12 | const RecordB = immutable.Record({ 13 | 'b1': 5, 14 | 'b2': 6, 15 | 'c': null 16 | }, 'RecordB') 17 | 18 | 19 | let data = immutable.Map() 20 | data = data.set(1, new RecordA({ 21 | 'b': immutable.List.of( 22 | new RecordB({ 23 | 'c': immutable.List() 24 | }) 25 | ) 26 | })) 27 | 28 | 29 | const json = serialize(data) 30 | console.log('data =', data) 31 | console.log('json =', json) 32 | console.log('---') 33 | 34 | 35 | const result = deserialize(json, { 36 | recordTypes: { 37 | 'RecordA': RecordA, 38 | 'RecordB': RecordB, 39 | }, 40 | }) 41 | console.log('result =', result) 42 | console.log('data =', data) 43 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "json-immutable", 3 | "version": "0.5.0", 4 | "main": "lib/index", 5 | "scripts": { 6 | "prepublish": "babel src/ -d lib/", 7 | "test": "npm run prepublish && ava" 8 | }, 9 | "peerDependencies": { 10 | "immutable": "3.x.x" 11 | }, 12 | "dependencies": { 13 | "json-stream-stringify": "1.5.x" 14 | }, 15 | "devDependencies": { 16 | "ava": "0.16.x", 17 | "babel-cli": "6.14.x", 18 | "babel-preset-es2015": "6.14.x", 19 | "immutable": "3.8.x" 20 | }, 21 | "repository": { 22 | "type": "git", 23 | "url": "https://github.com/avocode/json-immutable" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/deserialize.js: -------------------------------------------------------------------------------- 1 | const immutable = require('immutable') 2 | 3 | 4 | function deserialize(json, options = {}) { 5 | return JSON.parse(json, (key, value) => { 6 | return revive(key, value, options) 7 | }) 8 | } 9 | 10 | 11 | function revive(key, value, options) { 12 | if (typeof value === 'object' && value) { 13 | if (value['__record']) { 14 | return reviveRecord(key, value, options) 15 | } else if (value['__iterable']) { 16 | return reviveIterable(key, value, options) 17 | } else if (value['__date']) { 18 | return new Date(value['__date']) 19 | } else if (value['__regexp']) { 20 | const regExpParts = value['__regexp'].split('/') 21 | return new RegExp(regExpParts[1], regExpParts[2]) 22 | } 23 | } 24 | return value 25 | } 26 | 27 | 28 | function reviveRecord(key, recInfo, options) { 29 | const RecordType = options.recordTypes[recInfo['__record']] 30 | if (!RecordType) { 31 | throw new Error(`Unknown record type: ${recInfo['__record']}`) 32 | } 33 | 34 | let revivedData = revive(key, recInfo['data'], options) 35 | if (typeof RecordType.migrate === 'function') { 36 | revivedData = RecordType.migrate(revivedData) 37 | } 38 | 39 | return new RecordType(revivedData) 40 | } 41 | 42 | 43 | function reviveIterable(key, iterInfo, options) { 44 | switch (iterInfo['__iterable']) { 45 | case 'List': 46 | return immutable.List(revive(key, iterInfo['data'], options)) 47 | 48 | case 'Set': 49 | return immutable.Set(revive(key, iterInfo['data'], options)) 50 | 51 | case 'OrderedSet': 52 | return immutable.OrderedSet(revive(key, iterInfo['data'], options)) 53 | 54 | case 'Stack': 55 | return immutable.Stack(revive(key, iterInfo['data'], options)) 56 | 57 | case 'Map': 58 | return immutable.Map(revive(key, iterInfo['data'], options)) 59 | 60 | case 'OrderedMap': 61 | return immutable.OrderedMap(revive(key, iterInfo['data'], options)) 62 | 63 | default: 64 | throw new Error(`Unknown iterable type: ${iterInfo['__iterable']}`) 65 | } 66 | } 67 | 68 | 69 | module.exports = { 70 | deserialize, 71 | } 72 | -------------------------------------------------------------------------------- /src/helpers/native-type-helpers.js: -------------------------------------------------------------------------------- 1 | 2 | function getObjectType(value) { 3 | if (!value) { 4 | return null 5 | } 6 | 7 | return value.constructor.name 8 | } 9 | 10 | 11 | function isSupportedNativeType(value) { 12 | return ( 13 | isDate(value) || 14 | isRegExp(value) 15 | ) 16 | } 17 | 18 | 19 | function isDate(value) { 20 | return (getObjectType(value) === 'Date') 21 | } 22 | 23 | 24 | function isRegExp(value) { 25 | return (getObjectType(value) === 'RegExp') 26 | } 27 | 28 | 29 | function patchNativeTypeMethods(patchedObj, nativeObj) { 30 | patchedObj.toString = nativeObj.toString.bind(nativeObj) 31 | if (isDate(nativeObj)) { 32 | patchedObj.toISOString = nativeObj.toISOString.bind(nativeObj) 33 | } 34 | } 35 | 36 | 37 | module.exports = { 38 | getObjectType, 39 | isSupportedNativeType, 40 | isDate, 41 | isRegExp, 42 | patchNativeTypeMethods, 43 | } 44 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | module.exports = Object.assign({}, 2 | require('./deserialize'), 3 | require('./serialize') 4 | ) 5 | -------------------------------------------------------------------------------- /src/serialize.js: -------------------------------------------------------------------------------- 1 | const immutable = require('immutable') 2 | 3 | const JSONStreamStringify = require('json-stream-stringify') 4 | 5 | const nativeTypeHelpers = require('./helpers/native-type-helpers') 6 | 7 | 8 | function serialize(data, options = {}) { 9 | if (immutable.Iterable.isIterable(data) || 10 | data instanceof immutable.Record || 11 | nativeTypeHelpers.isSupportedNativeType(data) 12 | ) { 13 | const patchedData = Object.create(data) 14 | 15 | if (nativeTypeHelpers.isSupportedNativeType(data)) { 16 | // NOTE: When native type (such as Date or RegExp) methods are called 17 | // on an `Object.create()`'d objects, invalid usage errors are thrown 18 | // in many cases. We need to patch the used methods to work 19 | // on originals. 20 | nativeTypeHelpers.patchNativeTypeMethods(patchedData, data) 21 | } 22 | 23 | // NOTE: JSON.stringify() calls the #toJSON() method of the root object. 24 | // Immutable.JS provides its own #toJSON() implementation which does not 25 | // preserve map key types. 26 | patchedData.toJSON = function () { 27 | return this 28 | } 29 | 30 | data = patchedData 31 | } 32 | 33 | const indentation = options.pretty ? 2 : 0 34 | 35 | return JSON.stringify(data, (key, value) => { 36 | return replace(key, value, options) 37 | }, indentation) 38 | } 39 | 40 | 41 | function createSerializationStream(data, options = {}) { 42 | const indentation = options.pretty ? 2 : 0 43 | const replacer = options.bigChunks ? replace : replaceAsync 44 | 45 | const stream = JSONStreamStringify(data, replacer, indentation) 46 | return stream 47 | } 48 | 49 | 50 | function replace(key, value, options = {}) { 51 | let result = value 52 | 53 | if (value instanceof immutable.Record) { 54 | result = replaceRecord(value, replace, options) 55 | } 56 | else if (immutable.Iterable.isIterable(value)) { 57 | result = replaceIterable(value, replace, options) 58 | } 59 | else if (Array.isArray(value)) { 60 | result = replaceArray(value, replace, options) 61 | } 62 | else if (nativeTypeHelpers.isDate(value)) { 63 | result = { '__date': value.toISOString() } 64 | } 65 | else if (nativeTypeHelpers.isRegExp(value)) { 66 | result = { '__regexp': value.toString() } 67 | } 68 | else if (typeof value === 'object' && value !== null) { 69 | result = replacePlainObject(value, replace, options) 70 | } 71 | 72 | return result 73 | } 74 | 75 | function replaceAsync(key, value, options = {}) { 76 | let result = value 77 | 78 | if (!(value instanceof Promise)) { 79 | if (value instanceof immutable.Record) { 80 | result = new Promise((resolve) => { 81 | setImmediate(() => { 82 | resolve(replaceRecord(value, replaceAsync, options)) 83 | }) 84 | }) 85 | } 86 | else if (immutable.Iterable.isIterable(value)) { 87 | result = new Promise((resolve) => { 88 | setImmediate(() => { 89 | resolve(replaceIterable(value, replaceAsync, options)) 90 | }) 91 | }) 92 | } 93 | else if (Array.isArray(value)) { 94 | result = new Promise((resolve) => { 95 | setImmediate(() => { 96 | resolve(replaceArray(value, replaceAsync, options)) 97 | }) 98 | }) 99 | } 100 | else if (typeof value === 'object' && value !== null) { 101 | result = new Promise((resolve) => { 102 | setImmediate(() => { 103 | resolve(replacePlainObject(value, replaceAsync, options)) 104 | }) 105 | }) 106 | } 107 | } 108 | 109 | return result 110 | } 111 | 112 | 113 | function replaceRecord(rec, replaceChild, options = {}) { 114 | const emptyRec = new rec.constructor() 115 | 116 | const recordDataMap = rec.toMap() 117 | const recordData = {} 118 | 119 | recordDataMap.forEach(function (value, key) { 120 | if (!options.omitDefaultRecordValues || value !== emptyRec.get(key)) { 121 | recordData[key] = replaceChild(key, value, options) 122 | } 123 | }) 124 | 125 | if (!rec._name) { 126 | return recordData 127 | } 128 | return { "__record": rec._name, "data": recordData } 129 | } 130 | 131 | function getIterableType(iterable) { 132 | if (immutable.List.isList(iterable)) { 133 | return 'List' 134 | } 135 | 136 | if (immutable.Stack.isStack(iterable)) { 137 | return 'Stack' 138 | } 139 | 140 | if (immutable.Set.isSet(iterable)) { 141 | if (immutable.OrderedSet.isOrderedSet(iterable)) { 142 | return 'OrderedSet' 143 | } 144 | 145 | return 'Set' 146 | } 147 | 148 | if (immutable.Map.isMap(iterable)) { 149 | if (immutable.OrderedMap.isOrderedMap(iterable)) { 150 | return 'OrderedMap' 151 | } 152 | 153 | return 'Map' 154 | } 155 | 156 | return undefined; 157 | } 158 | 159 | 160 | function replaceIterable(iter, replaceChild, options = {}) { 161 | const iterableType = getIterableType(iter) 162 | if (!iterableType) { 163 | throw new Error(`Cannot find type of iterable: ${iter}`) 164 | } 165 | 166 | switch (iterableType) { 167 | case 'List': 168 | case 'Set': 169 | case 'OrderedSet': 170 | case 'Stack': 171 | const listData = [] 172 | iter.forEach((value, key) => { 173 | listData.push(replaceChild(key, value, options)) 174 | }) 175 | return { "__iterable": iterableType, "data": listData } 176 | 177 | case 'Map': 178 | case 'OrderedMap': 179 | const mapData = [] 180 | iter.forEach((value, key) => { 181 | mapData.push([ key, replaceChild(key, value, options) ]) 182 | }) 183 | return { "__iterable": iterableType, "data": mapData } 184 | } 185 | } 186 | 187 | 188 | function replaceArray(arr, replaceChild, options = {}) { 189 | return arr.map((value, index) => { 190 | return replaceChild(index, value, options) 191 | }) 192 | } 193 | 194 | 195 | function replacePlainObject(obj, replaceChild, options = {}) { 196 | const objData = {} 197 | Object.keys(obj).forEach((key) => { 198 | objData[key] = replaceChild(key, obj[key], options) 199 | }) 200 | 201 | return objData 202 | } 203 | 204 | 205 | module.exports = { 206 | createSerializationStream, 207 | serialize, 208 | } 209 | -------------------------------------------------------------------------------- /test/create-serialization-stream/_helpers.js: -------------------------------------------------------------------------------- 1 | const assert = require('assert') 2 | 3 | const JsonImmutable = require('../../lib/') 4 | 5 | 6 | exports.testSerializationStream = function (test, data, expectedResult) { 7 | const littleChunkedData = getSerializationStreamDataWithOptions(data, {}) 8 | const bigChunkedData = getSerializationStreamDataWithOptions(data, { 9 | bigChunks: true, 10 | }) 11 | 12 | return littleChunkedData.then((littleChunkedData) => { 13 | return bigChunkedData.then((bigChunkedData) => { 14 | assert.equal( 15 | littleChunkedData, 16 | bigChunkedData, 17 | 'Little-chunked and big-chunked serialization results do not match.' 18 | ) 19 | test.deepEqual(JSON.parse(littleChunkedData), expectedResult) 20 | }) 21 | }) 22 | } 23 | 24 | exports.getSerializationStreamResult = function (data, options) { 25 | const littleChunkedData = getSerializationStreamDataWithOptions(data, {}) 26 | const bigChunkedData = getSerializationStreamDataWithOptions(data, { 27 | bigChunks: true, 28 | }) 29 | 30 | return littleChunkedData.then((littleChunkedData) => { 31 | return bigChunkedData.then((bigChunkedData) => { 32 | assert.equal( 33 | littleChunkedData, 34 | bigChunkedData, 35 | 'Little-chunked and big-chunked serialization results do not match.' 36 | ) 37 | return JSON.parse(littleChunkedData) 38 | }) 39 | }) 40 | } 41 | 42 | function getSerializationStreamDataWithOptions(data, options) { 43 | return new Promise((resolve) => { 44 | const jsonStream = JsonImmutable.createSerializationStream(data, options) 45 | const jsonChunks = [] 46 | jsonStream.on('data', (chunk) => { 47 | jsonChunks.push(chunk) 48 | }) 49 | jsonStream.on('end', () => { 50 | const json = jsonChunks.join('') 51 | resolve(json) 52 | }) 53 | }) 54 | } 55 | -------------------------------------------------------------------------------- /test/create-serialization-stream/iterable.js: -------------------------------------------------------------------------------- 1 | import immutable from 'immutable' 2 | import it from 'ava' 3 | 4 | import helpers from './_helpers' 5 | 6 | 7 | it('should mark an immutable.Map as __iterable=Map', (test) => { 8 | const data = immutable.Map({ 9 | 'a': 5, 10 | 'b': 6, 11 | }) 12 | 13 | const result = helpers.getSerializationStreamResult(data) 14 | return result.then((result) => { 15 | test.is(result['__iterable'], 'Map') 16 | test.truthy(result['data']) 17 | test.pass() 18 | }) 19 | }) 20 | 21 | 22 | it('should serialize an immutable.Map as an array of entries', (test) => { 23 | const data = immutable.Map({ 24 | 'a': 5, 25 | 'b': 6, 26 | }) 27 | 28 | const result = helpers.getSerializationStreamResult(data) 29 | return result.then((result) => { 30 | test.deepEqual(result['data'], [ 31 | [ 'a', 5 ], 32 | [ 'b', 6 ], 33 | ]) 34 | test.pass() 35 | }) 36 | }) 37 | 38 | 39 | it('should serialize a nested immutable.Map as a nested array of entries', 40 | (test) => { 41 | const data = immutable.Map({ 42 | 'a': 5, 43 | 'b': immutable.Map({ 44 | 'c': 6, 45 | }), 46 | }) 47 | 48 | const result = helpers.getSerializationStreamResult(data) 49 | return result.then((result) => { 50 | test.deepEqual(result['data'], [ 51 | [ 'a', 5 ], 52 | [ 'b', { 53 | '__iterable': 'Map', 54 | 'data': [ 55 | [ 'c', 6 ], 56 | ], 57 | } ], 58 | ]) 59 | test.pass() 60 | }) 61 | }) 62 | 63 | 64 | it('should serialize an immutable.Map nested in a plain object', (test) => { 65 | const data = { 66 | 'x': immutable.Map({ 67 | 'a': 5, 68 | 'b': 6, 69 | }), 70 | } 71 | 72 | const result = helpers.getSerializationStreamResult(data) 73 | return result.then((result) => { 74 | test.deepEqual(result['x']['data'], [ 75 | [ 'a', 5 ], 76 | [ 'b', 6 ], 77 | ]) 78 | test.pass() 79 | }) 80 | }) 81 | 82 | 83 | it('should preserve immutable.Map key types', (test) => { 84 | let data = immutable.Map() 85 | data = data.set(5, 'a') 86 | data = data.set(6, 'b') 87 | 88 | const result = helpers.getSerializationStreamResult(data) 89 | return result.then((result) => { 90 | test.deepEqual(result['data'], [ 91 | [ 5, 'a' ], 92 | [ 6, 'b' ], 93 | ]) 94 | test.pass() 95 | }) 96 | }) 97 | 98 | 99 | it('should mark an immutable.OrderedMap as __iterable=OrderedMap', (test) => { 100 | const data = immutable.OrderedMap({ 101 | 'a': 5, 102 | 'b': 6, 103 | }) 104 | 105 | const result = helpers.getSerializationStreamResult(data) 106 | return result.then((result) => { 107 | test.is(result['__iterable'], 'OrderedMap') 108 | test.truthy(result['data']) 109 | test.pass() 110 | }) 111 | }) 112 | 113 | 114 | it('should serialize an immutable.OrderedMap as an array of entries', (test) => { 115 | const data = immutable.OrderedMap({ 116 | 'a': 5, 117 | 'b': 6, 118 | }) 119 | 120 | const result = helpers.getSerializationStreamResult(data) 121 | return result.then((result) => { 122 | test.deepEqual(result['data'], [ 123 | [ 'a', 5 ], 124 | [ 'b', 6 ], 125 | ]) 126 | test.pass() 127 | }) 128 | }) 129 | 130 | 131 | it('should serialize an immutable.Map as an array of entries', (test) => { 132 | const data = immutable.Map({ 133 | 'a': 5, 134 | 'b': 6, 135 | }) 136 | 137 | const result = helpers.getSerializationStreamResult(data) 138 | return result.then((result) => { 139 | test.deepEqual(result['data'], [ 140 | [ 'a', 5 ], 141 | [ 'b', 6 ], 142 | ]) 143 | test.pass() 144 | }) 145 | }) 146 | 147 | 148 | it('should mark an immutable.List as __iterable=List', (test) => { 149 | const data = immutable.List.of(5, 6) 150 | 151 | const result = helpers.getSerializationStreamResult(data) 152 | return result.then((result) => { 153 | test.is(result['__iterable'], 'List') 154 | test.truthy(result['data']) 155 | test.pass() 156 | }) 157 | }) 158 | 159 | 160 | it('should serialize an immutable.List as an array of values', (test) => { 161 | const data = immutable.List.of(5, 6) 162 | 163 | const result = helpers.getSerializationStreamResult(data) 164 | return result.then((result) => { 165 | test.deepEqual(result['data'], [ 5, 6 ]) 166 | test.pass() 167 | }) 168 | }) 169 | 170 | 171 | it('should mark an immutable.Set as __iterable=Set', (test) => { 172 | const data = immutable.Set.of(5, 6) 173 | 174 | const result = helpers.getSerializationStreamResult(data) 175 | return result.then((result) => { 176 | test.is(result['__iterable'], 'Set') 177 | test.truthy(result['data']) 178 | test.pass() 179 | }) 180 | }) 181 | 182 | 183 | it('should serialize an immutable.Set as an array of values', (test) => { 184 | const data = immutable.Set.of(5, 6) 185 | 186 | const result = helpers.getSerializationStreamResult(data) 187 | return result.then((result) => { 188 | test.deepEqual(result['data'], [ 5, 6 ]) 189 | test.pass() 190 | }) 191 | }) 192 | 193 | 194 | it('should mark an immutable.OrderedSet as __iterable=OrderedSet', (test) => { 195 | const data = immutable.OrderedSet.of(5, 6) 196 | 197 | const result = helpers.getSerializationStreamResult(data) 198 | return result.then((result) => { 199 | test.is(result['__iterable'], 'OrderedSet') 200 | test.truthy(result['data']) 201 | test.pass() 202 | }) 203 | }) 204 | 205 | 206 | it('should serialize an immutable.OrderedSet as an array of values', (test) => { 207 | const data = immutable.OrderedSet.of(5, 6) 208 | 209 | const result = helpers.getSerializationStreamResult(data) 210 | return result.then((result) => { 211 | test.deepEqual(result['data'], [ 5, 6 ]) 212 | test.pass() 213 | }) 214 | }) 215 | 216 | 217 | it('should mark an immutable.Stack as __iterable=Stack', (test) => { 218 | const data = immutable.Stack.of(5, 6) 219 | 220 | const result = helpers.getSerializationStreamResult(data) 221 | return result.then((result) => { 222 | test.is(result['__iterable'], 'Stack') 223 | test.truthy(result['data']) 224 | test.pass() 225 | }) 226 | }) 227 | 228 | 229 | it('should serialize an immutable.Stack as an array of values', (test) => { 230 | const data = immutable.Stack.of(5, 6) 231 | 232 | const result = helpers.getSerializationStreamResult(data) 233 | return result.then((result) => { 234 | test.deepEqual(result['data'], [ 5, 6 ]) 235 | test.pass() 236 | }) 237 | }) 238 | 239 | -------------------------------------------------------------------------------- /test/create-serialization-stream/plain.js: -------------------------------------------------------------------------------- 1 | import it from 'ava' 2 | 3 | import helpers from './_helpers' 4 | 5 | 6 | function testPlainSerializationStream(test, data) { 7 | return helpers.testSerializationStream(test, data, data) 8 | } 9 | 10 | 11 | 12 | it('should serialize a null value', (test) => { 13 | return testPlainSerializationStream(test, null) 14 | }) 15 | 16 | 17 | it('should serialize a string value', (test) => { 18 | return testPlainSerializationStream(test, 'string value') 19 | }) 20 | 21 | 22 | it('should serialize a numeric value', (test) => { 23 | return testPlainSerializationStream(test, 123) 24 | }) 25 | 26 | 27 | it('should serialize a single-level plain object', (test) => { 28 | return testPlainSerializationStream(test, { 29 | 'a': 5, 30 | 'b': 6, 31 | }) 32 | }) 33 | 34 | 35 | it('should serialize a nested plain object', (test) => { 36 | return testPlainSerializationStream(test, { 37 | 'a': { 38 | 'b': { 39 | 'c': 123, 40 | }, 41 | }, 42 | }) 43 | }) 44 | 45 | 46 | it('should serialize an array nested in a plain object', (test) => { 47 | return testPlainSerializationStream(test, { 48 | 'a': [ 'b', 123 ], 49 | }) 50 | }) 51 | -------------------------------------------------------------------------------- /test/create-serialization-stream/record.js: -------------------------------------------------------------------------------- 1 | import immutable from 'immutable' 2 | import it from 'ava' 3 | 4 | import helpers from './_helpers' 5 | 6 | 7 | 8 | it('should not mark an unnamed immutable.Record as __record', (test) => { 9 | const SampleRecord = immutable.Record({ 10 | 'a': 5, 11 | 'b': 6, 12 | }) 13 | 14 | const data = SampleRecord() 15 | const result = helpers.getSerializationStreamResult(data) 16 | return result.then((result) => { 17 | test.falsy(result['__record']) 18 | }) 19 | }) 20 | 21 | 22 | it('should mark a named immutable.Record as __record=', (test) => { 23 | const SampleRecord = immutable.Record({ 24 | 'a': 5, 25 | 'b': 6, 26 | }, 'SampleRecord') 27 | 28 | const data = SampleRecord() 29 | const result = helpers.getSerializationStreamResult(data) 30 | return result.then((result) => { 31 | test.is(result['__record'], 'SampleRecord') 32 | test.truthy(result['data']) 33 | }) 34 | }) 35 | 36 | 37 | it('should serialize an unnamed immutable.Record as a plain object', 38 | (test) => { 39 | const SampleRecord = immutable.Record({ 40 | 'a': 5, 41 | 'b': 6, 42 | }) 43 | 44 | const data = SampleRecord() 45 | 46 | return helpers.testSerializationStream(test, data, { 47 | 'a': 5, 48 | 'b': 6, 49 | }) 50 | }) 51 | 52 | 53 | it('should serialize a named immutable.Record data as a plain object', 54 | (test) => { 55 | const SampleRecord = immutable.Record({ 56 | 'a': 5, 57 | 'b': 6, 58 | }, 'SampleRecord') 59 | 60 | const data = SampleRecord() 61 | const result = helpers.getSerializationStreamResult(data) 62 | return result.then((result) => { 63 | test.deepEqual(result['data'], { 64 | 'a': 5, 65 | 'b': 6, 66 | }) 67 | }) 68 | }) 69 | 70 | 71 | it('should serialize nested plain objects in immutable.Record data', 72 | (test) => { 73 | const SampleRecord = immutable.Record({ 74 | 'a': { 'x': 5 }, 75 | 'b': { 'y': 6, 'z': 7 }, 76 | }) 77 | 78 | const data = SampleRecord() 79 | const result = helpers.getSerializationStreamResult(data) 80 | return result.then((result) => { 81 | test.deepEqual(result, { 82 | 'a': { 'x': 5 }, 83 | 'b': { 'y': 6, 'z': 7 }, 84 | }) 85 | }) 86 | }) 87 | 88 | 89 | it('should serialize an immutable.Map in immutable.Record data', (test) => { 90 | const SampleRecord = immutable.Record({ 91 | 'a': immutable.Map({ 'x': 5 }), 92 | 'b': immutable.Map({ 'y': 6, 'z': 7 },) 93 | }) 94 | 95 | const data = SampleRecord() 96 | const result = helpers.getSerializationStreamResult(data) 97 | return result.then((result) => { 98 | test.deepEqual(result, { 99 | 'a': { 100 | '__iterable': 'Map', 101 | 'data': [ 102 | [ 'x', 5 ], 103 | ], 104 | }, 105 | 'b': { 106 | '__iterable': 'Map', 107 | 'data': [ 108 | [ 'y', 6 ], 109 | [ 'z', 7 ], 110 | ], 111 | }, 112 | }) 113 | }) 114 | }) 115 | 116 | 117 | it('should preserve key types of an immutable.Map in immutable.Record data', 118 | (test) => { 119 | let typedKeyedMap = immutable.Map() 120 | typedKeyedMap = typedKeyedMap.set(123, 'a') 121 | typedKeyedMap = typedKeyedMap.set(true, 'b') 122 | 123 | const SampleRecord = immutable.Record({ 124 | 'a': typedKeyedMap 125 | }) 126 | 127 | const data = SampleRecord() 128 | const result = helpers.getSerializationStreamResult(data) 129 | return result.then((result) => { 130 | test.deepEqual(result['a']['data'], [ 131 | [ 123, 'a' ], 132 | [ true, 'b' ], 133 | ]) 134 | }) 135 | }) 136 | -------------------------------------------------------------------------------- /test/deserialize/_helpers.js: -------------------------------------------------------------------------------- 1 | const JsonImmutable = require('../../lib/') 2 | 3 | 4 | exports.testDeserialization = function (test, data, expectedResult, options) { 5 | const result = exports.getDeserializationResult(data, options) 6 | test.deepEqual(result, expectedResult) 7 | } 8 | 9 | exports.getDeserializationResult = function (data, options) { 10 | return JsonImmutable.deserialize(JSON.stringify(data), options) 11 | } 12 | -------------------------------------------------------------------------------- /test/deserialize/iterable.js: -------------------------------------------------------------------------------- 1 | import immutable from 'immutable' 2 | import it from 'ava' 3 | 4 | import helpers from './_helpers' 5 | 6 | 7 | it('should deserialize an immutable.Map serialized as an array of entries', 8 | (test) => { 9 | const data = { 10 | '__iterable': 'Map', 11 | 'data': [ 12 | [ 'a', 5 ], 13 | [ 'b', 6 ], 14 | ], 15 | } 16 | 17 | helpers.testDeserialization(test, data, immutable.Map(data['data'])) 18 | }) 19 | 20 | 21 | it('should deserialize an immutable.Map serialized as a plain object', 22 | (test) => { 23 | const data = { 24 | '__iterable': 'Map', 25 | 'data': { 26 | 'a': 5, 27 | 'b': 6, 28 | }, 29 | } 30 | 31 | helpers.testDeserialization(test, data, immutable.Map(data['data'])) 32 | }) 33 | 34 | 35 | it('should preserve key types of an immutable.Map', (test) => { 36 | const data = { 37 | '__iterable': 'Map', 38 | 'data': [ 39 | [ 5, 'a' ], 40 | [ 6, 'b' ], 41 | ], 42 | } 43 | 44 | helpers.testDeserialization(test, data, immutable.Map(data['data'])) 45 | }) 46 | 47 | 48 | it('should deserialize an immutable.OrderedMap serialized as an array of entries', 49 | (test) => { 50 | const data = { 51 | '__iterable': 'OrderedMap', 52 | 'data': [ 53 | [ 'a', 5 ], 54 | [ 'b', 6 ], 55 | ], 56 | } 57 | 58 | helpers.testDeserialization(test, data, immutable.OrderedMap(data['data'])) 59 | }) 60 | 61 | 62 | it('should deserialize an immutable.OrderedMap serialized as a plain object', 63 | (test) => { 64 | const data = { 65 | '__iterable': 'OrderedMap', 66 | 'data': { 67 | 'a': 5, 68 | 'b': 6, 69 | }, 70 | } 71 | 72 | helpers.testDeserialization(test, data, immutable.OrderedMap(data['data'])) 73 | }) 74 | 75 | 76 | it('should deserialize a record of a known type nested in an immutable.Map', 77 | (test) => { 78 | const SampleRecord = immutable.Record({ 79 | 'b': 1, 80 | 'c': 2, 81 | }, 'SampleRecord') 82 | 83 | 84 | const data = { 85 | '__iterable': 'Map', 86 | 'data': [ 87 | [ 'a', { 88 | '__record': 'SampleRecord', 89 | 'data': { 90 | 'b': 5, 91 | 'c': 6, 92 | } 93 | } ], 94 | ], 95 | } 96 | 97 | const expectedResult = immutable.Map({ 98 | 'a': SampleRecord(data['data'][0][1]['data']), 99 | }) 100 | 101 | helpers.testDeserialization(test, data, expectedResult, { 102 | recordTypes: { 103 | 'SampleRecord': SampleRecord, 104 | }, 105 | }) 106 | }) 107 | 108 | 109 | it('should deserialize an immutable.List', (test) => { 110 | const data = { 111 | '__iterable': 'List', 112 | 'data': [ 5, 6 ], 113 | } 114 | 115 | helpers.testDeserialization(test, data, immutable.List(data['data'])) 116 | }) 117 | 118 | 119 | it('should deserialize an immutable.Set', (test) => { 120 | const data = { 121 | '__iterable': 'Set', 122 | 'data': [ 5, 6 ], 123 | } 124 | 125 | helpers.testDeserialization(test, data, immutable.Set(data['data'])) 126 | }) 127 | 128 | 129 | it('should deserialize an immutable.OrderedSet', (test) => { 130 | const data = { 131 | '__iterable': 'OrderedSet', 132 | 'data': [ 5, 6 ], 133 | } 134 | 135 | helpers.testDeserialization(test, data, immutable.OrderedSet(data['data'])) 136 | }) 137 | 138 | 139 | it('should deserialize an immutable.Stack', (test) => { 140 | const data = { 141 | '__iterable': 'Stack', 142 | 'data': [ 5, 6 ], 143 | } 144 | 145 | helpers.testDeserialization(test, data, immutable.Stack(data['data'])) 146 | }) 147 | 148 | 149 | it('should not deserialize an iterable of an unknown type', (test) => { 150 | const data = { 151 | '__iterable': 'UnknownType', 152 | 'data': [ 5, 6 ], 153 | } 154 | 155 | test.throws(() => { 156 | test.getDeserializationResult(data) 157 | }) 158 | }) 159 | -------------------------------------------------------------------------------- /test/deserialize/native-objects.js: -------------------------------------------------------------------------------- 1 | import it from 'ava' 2 | 3 | import helpers from './_helpers' 4 | 5 | 6 | 7 | it('should deserialize a Date object', (test) => { 8 | const data = { '__date': '2016-09-08T00:01:02Z' } 9 | 10 | helpers.testDeserialization(test, data, new Date(data['__date'])) 11 | }) 12 | 13 | 14 | it('should deserialize a RegExp object', (test) => { 15 | const data = { '__regexp': '/(what)?\\w+$/' } 16 | 17 | helpers.testDeserialization(test, data, new RegExp('(what)?\\w+$')) 18 | }) 19 | 20 | 21 | it('should deserialize a RegExp object with flags', (test) => { 22 | const data = { '__regexp': '/(what)?\\w+$/ig' } 23 | 24 | helpers.testDeserialization(test, data, new RegExp('(what)?\\w+$', 'ig')) 25 | }) 26 | -------------------------------------------------------------------------------- /test/deserialize/plain.js: -------------------------------------------------------------------------------- 1 | import it from 'ava' 2 | 3 | import helpers from './_helpers' 4 | 5 | 6 | function testPlainDeserialization(test, data) { 7 | return helpers.testDeserialization(test, data, data) 8 | } 9 | 10 | 11 | it('should deserialize a null value', (test) => { 12 | testPlainDeserialization(test, null) 13 | }) 14 | 15 | 16 | it('should deserialize a string value', (test) => { 17 | testPlainDeserialization(test, 'string value') 18 | }) 19 | 20 | 21 | it('should deserialize a numeric value', (test) => { 22 | testPlainDeserialization(test, 123) 23 | }) 24 | 25 | 26 | it('should deserialize a single-level plain object', (test) => { 27 | testPlainDeserialization(test, { 28 | 'a': 5, 29 | 'b': 6, 30 | }) 31 | }) 32 | 33 | 34 | it('should deserialize a nested plain object', (test) => { 35 | testPlainDeserialization(test, { 36 | 'a': 5, 37 | 'b': { 38 | 'c': 6, 39 | }, 40 | }) 41 | }) 42 | 43 | 44 | it('should deserialize an array nested in a plain object', (test) => { 45 | testPlainDeserialization(test, { 46 | 'a': [ 'b', 123 ], 47 | }) 48 | }) 49 | 50 | -------------------------------------------------------------------------------- /test/deserialize/record.js: -------------------------------------------------------------------------------- 1 | import immutable from 'immutable' 2 | import it from 'ava' 3 | 4 | import helpers from './_helpers' 5 | 6 | 7 | it('should deserialize a record of a known type', (test) => { 8 | const SampleRecord = immutable.Record({ 9 | 'a': 1, 10 | 'b': 2, 11 | }, 'SampleRecord') 12 | 13 | const data = { 14 | '__record': 'SampleRecord', 15 | 'data': { 16 | 'a': 5, 17 | 'b': 6, 18 | }, 19 | } 20 | 21 | helpers.testDeserialization(test, data, SampleRecord(data['data']), { 22 | recordTypes: { 23 | 'SampleRecord': SampleRecord, 24 | }, 25 | }) 26 | }) 27 | 28 | 29 | it('should deserialize a record of a known class type', (test) => { 30 | class SampleRecord extends immutable.Record({ 31 | 'a': 1, 32 | 'b': 2, 33 | }, 'SampleRecord') { 34 | } 35 | 36 | const data = { 37 | '__record': 'SampleRecord', 38 | 'data': { 39 | 'a': 5, 40 | 'b': 6, 41 | }, 42 | } 43 | 44 | helpers.testDeserialization(test, data, new SampleRecord(data['data']), { 45 | recordTypes: { 46 | 'SampleRecord': SampleRecord, 47 | }, 48 | }) 49 | }) 50 | 51 | 52 | it('should not deserialize a record of an unknown type', (test) => { 53 | const data = { 54 | '__record': 'SampleRecord', 55 | 'data': { 56 | 'a': 5, 57 | 'b': 6, 58 | }, 59 | } 60 | 61 | test.throws(() => { 62 | helpers.getDeserializationResult(data, { 63 | recordTypes: {}, 64 | }) 65 | }) 66 | }) 67 | 68 | 69 | it('should deserialize nested records of known types', (test) => { 70 | const RecordA = immutable.Record({ 71 | 'a': 1, 72 | 'b': 2, 73 | }, 'RecordA') 74 | const RecordB = immutable.Record({ 75 | 'c': 3, 76 | }, 'RecordB') 77 | 78 | const data = { 79 | '__record': 'RecordA', 80 | 'data': { 81 | 'a': 5, 82 | 'b': { 83 | '__record': 'RecordB', 84 | 'data': { 85 | 'c': 6, 86 | }, 87 | }, 88 | }, 89 | } 90 | 91 | const expectedResult = RecordA({ 92 | 'a': data['data']['a'], 93 | 'b': RecordB(data['data']['b']['data']), 94 | }) 95 | 96 | helpers.testDeserialization(test, data, expectedResult, { 97 | recordTypes: { 98 | 'RecordA': RecordA, 99 | 'RecordB': RecordB, 100 | }, 101 | }) 102 | }) 103 | 104 | 105 | it('should call migrate record method when defined', (test) => { 106 | test.plan(1) 107 | class CustomRecord extends immutable.Record({ 'test_key': 'test-value' }) { 108 | static migrate(values) { 109 | test.pass() 110 | return values 111 | } 112 | } 113 | 114 | const data = { 115 | '__record': 'CustomRecord', 116 | 'data': {}, 117 | } 118 | 119 | helpers.getDeserializationResult(data, { 120 | recordTypes: { 121 | 'CustomRecord': CustomRecord, 122 | }, 123 | }) 124 | }) 125 | 126 | 127 | it('should pass deserialized List to migrate method', (test) => { 128 | class CustomRecord extends immutable.Record({ 'test_key': 'test-value' }) { 129 | static migrate(values) { 130 | test.true(immutable.List.isList(values['test_key'])) 131 | return values 132 | } 133 | } 134 | 135 | const data = { 136 | '__record': 'CustomRecord', 137 | 'data': { 138 | "test_key": { 139 | "__iterable": "List", 140 | "data": ['a', 'b', 'c'] 141 | }, 142 | }, 143 | } 144 | 145 | helpers.getDeserializationResult(data, { 146 | recordTypes: { 147 | 'CustomRecord': CustomRecord, 148 | }, 149 | }) 150 | }) 151 | 152 | 153 | it('should use the result of the migrate method', (test) => { 154 | class CustomRecord extends immutable.Record({ 'test_key': 'test-value' }) { 155 | static migrate(values) { 156 | if (immutable.List.isList(values['test_key'])) { 157 | return { 158 | test_key: values['test_key'].join('-'), 159 | } 160 | } 161 | 162 | return values 163 | } 164 | } 165 | 166 | const data = { 167 | '__record': 'CustomRecord', 168 | 'data': { 169 | "test_key": { 170 | "__iterable": "List", 171 | "data": ['a', 'b', 'c'] 172 | }, 173 | }, 174 | } 175 | 176 | const expectedResult = new CustomRecord({ 177 | 'test_key': 'a-b-c', 178 | }) 179 | 180 | helpers.testDeserialization(test, data, expectedResult, { 181 | recordTypes: { 182 | 'CustomRecord': CustomRecord, 183 | }, 184 | }) 185 | }) 186 | -------------------------------------------------------------------------------- /test/serialize/_helpers.js: -------------------------------------------------------------------------------- 1 | const JsonImmutable = require('../../lib/') 2 | 3 | 4 | exports.testSerialization = function (test, data, expectedResult, options = {}) { 5 | const result = exports.getSerializationResult(data, options) 6 | test.deepEqual(result, expectedResult) 7 | } 8 | 9 | exports.getSerializationResult = function (data, options = {}) { 10 | const json = JsonImmutable.serialize(data, options) 11 | return JSON.parse(json) 12 | } 13 | -------------------------------------------------------------------------------- /test/serialize/iterable.js: -------------------------------------------------------------------------------- 1 | import immutable from 'immutable' 2 | import it from 'ava' 3 | 4 | import helpers from './_helpers' 5 | 6 | 7 | 8 | it('should mark an immutable.Map as __iterable=Map', (test) => { 9 | const data = immutable.Map({ 10 | 'a': 5, 11 | 'b': 6, 12 | }) 13 | 14 | const result = helpers.getSerializationResult(data) 15 | test.is(result['__iterable'], 'Map') 16 | test.truthy(result['data']) 17 | }) 18 | 19 | 20 | it('should serialize an immutable.Map as an array of entries', (test) => { 21 | const data = immutable.Map({ 22 | 'a': 5, 23 | 'b': 6, 24 | }) 25 | 26 | const result = helpers.getSerializationResult(data) 27 | test.deepEqual(result['data'], [ 28 | [ 'a', 5 ], 29 | [ 'b', 6 ], 30 | ]) 31 | }) 32 | 33 | 34 | it('should serialize a nested immutable.Map as a nested array of entries', 35 | (test) => { 36 | const data = immutable.Map({ 37 | 'a': 5, 38 | 'b': immutable.Map({ 39 | 'c': 6, 40 | }), 41 | }) 42 | 43 | const result = helpers.getSerializationResult(data) 44 | test.deepEqual(result['data'], [ 45 | [ 'a', 5 ], 46 | [ 'b', { 47 | '__iterable': 'Map', 48 | 'data': [ 49 | [ 'c', 6 ], 50 | ], 51 | } ], 52 | ]) 53 | }) 54 | 55 | 56 | it('should serialize an immutable.Map nested in a plain object', (test) => { 57 | const data = { 58 | 'x': immutable.Map({ 59 | 'a': 5, 60 | 'b': 6, 61 | }), 62 | } 63 | 64 | const result = helpers.getSerializationResult(data) 65 | test.deepEqual(result['x']['data'], [ 66 | [ 'a', 5 ], 67 | [ 'b', 6 ], 68 | ]) 69 | }) 70 | 71 | 72 | it('should preserve immutable.Map key types', (test) => { 73 | let data = immutable.Map() 74 | data = data.set(5, 'a') 75 | data = data.set(6, 'b') 76 | 77 | const result = helpers.getSerializationResult(data) 78 | test.deepEqual(result['data'], [ 79 | [ 5, 'a' ], 80 | [ 6, 'b' ], 81 | ]) 82 | }) 83 | 84 | 85 | it('should mark an immutable.OrderedMap as __iterable=OrderedMap', (test) => { 86 | const data = immutable.OrderedMap({ 87 | 'a': 5, 88 | 'b': 6, 89 | }) 90 | 91 | const result = helpers.getSerializationResult(data) 92 | test.is(result['__iterable'], 'OrderedMap') 93 | test.truthy(result['data']) 94 | }) 95 | 96 | 97 | it('should serialize an immutable.OrderedMap as an array of entries', (test) => { 98 | const data = immutable.OrderedMap({ 99 | 'a': 5, 100 | 'b': 6, 101 | }) 102 | 103 | const result = helpers.getSerializationResult(data) 104 | test.deepEqual(result['data'], [ 105 | [ 'a', 5 ], 106 | [ 'b', 6 ], 107 | ]) 108 | }) 109 | 110 | 111 | it('should serialize an immutable.Map as an array of entries', (test) => { 112 | const data = immutable.Map({ 113 | 'a': 5, 114 | 'b': 6, 115 | }) 116 | 117 | const result = helpers.getSerializationResult(data) 118 | test.deepEqual(result['data'], [ 119 | [ 'a', 5 ], 120 | [ 'b', 6 ], 121 | ]) 122 | }) 123 | 124 | 125 | it('should mark an immutable.List as __iterable=List', (test) => { 126 | const data = immutable.List.of(5, 6) 127 | 128 | const result = helpers.getSerializationResult(data) 129 | test.is(result['__iterable'], 'List') 130 | test.truthy(result['data']) 131 | }) 132 | 133 | 134 | it('should serialize an immutable.List as an array of values', (test) => { 135 | const data = immutable.List.of(5, 6) 136 | 137 | const result = helpers.getSerializationResult(data) 138 | test.deepEqual(result['data'], [ 5, 6 ]) 139 | }) 140 | 141 | 142 | it('should mark an immutable.Set as __iterable=Set', (test) => { 143 | const data = immutable.Set.of(5, 6) 144 | 145 | const result = helpers.getSerializationResult(data) 146 | test.is(result['__iterable'], 'Set') 147 | test.truthy(result['data']) 148 | }) 149 | 150 | 151 | it('should serialize an immutable.Set as an array of values', (test) => { 152 | const data = immutable.Set.of(5, 6) 153 | 154 | const result = helpers.getSerializationResult(data) 155 | test.deepEqual(result['data'], [ 5, 6 ]) 156 | }) 157 | 158 | 159 | it('should mark an immutable.OrderedSet as __iterable=OrderedSet', (test) => { 160 | const data = immutable.OrderedSet.of(5, 6) 161 | 162 | const result = helpers.getSerializationResult(data) 163 | test.is(result['__iterable'], 'OrderedSet') 164 | test.truthy(result['data']) 165 | }) 166 | 167 | 168 | it('should serialize an immutable.OrderedSet as an array of values', (test) => { 169 | const data = immutable.OrderedSet.of(5, 6) 170 | 171 | const result = helpers.getSerializationResult(data) 172 | test.deepEqual(result['data'], [ 5, 6 ]) 173 | }) 174 | 175 | 176 | it('should mark an immutable.Stack as __iterable=Stack', (test) => { 177 | const data = immutable.Stack.of(5, 6) 178 | 179 | const result = helpers.getSerializationResult(data) 180 | test.is(result['__iterable'], 'Stack') 181 | test.truthy(result['data']) 182 | }) 183 | 184 | 185 | it('should serialize an immutable.Stack as an array of values', (test) => { 186 | const data = immutable.Stack.of(5, 6) 187 | 188 | const result = helpers.getSerializationResult(data) 189 | test.deepEqual(result['data'], [ 5, 6 ]) 190 | }) 191 | 192 | -------------------------------------------------------------------------------- /test/serialize/native-objects.js: -------------------------------------------------------------------------------- 1 | import it from 'ava' 2 | 3 | import helpers from './_helpers' 4 | 5 | 6 | 7 | it('should serialize a Date object', (test) => { 8 | const date = new Date('2016-09-08') 9 | const result = helpers.getSerializationResult(date) 10 | 11 | test.is(result['__date'], date.toISOString()) 12 | }) 13 | 14 | 15 | it('should serialize a RegExp object', (test) => { 16 | const regexp = new RegExp('(what)?\\w+$') 17 | const result = helpers.getSerializationResult(regexp) 18 | 19 | test.is(result['__regexp'], regexp.toString()) 20 | }) 21 | 22 | 23 | it('should serialize a RegExp object with flags', (test) => { 24 | const regexp = new RegExp('(what)?\\w+$', 'ig') 25 | const result = helpers.getSerializationResult(regexp) 26 | 27 | test.is(result['__regexp'], regexp.toString()) 28 | }) 29 | -------------------------------------------------------------------------------- /test/serialize/plain.js: -------------------------------------------------------------------------------- 1 | import it from 'ava' 2 | 3 | import helpers from './_helpers' 4 | 5 | 6 | function testPlainSerialization(test, data) { 7 | return helpers.testSerialization(test, data, data) 8 | } 9 | 10 | 11 | 12 | it('should serialize a null value', (test) => { 13 | testPlainSerialization(test, null) 14 | }) 15 | 16 | 17 | it('should serialize a string value', (test) => { 18 | testPlainSerialization(test, 'string value') 19 | }) 20 | 21 | 22 | it('should serialize a numeric value', (test) => { 23 | testPlainSerialization(test, 123) 24 | }) 25 | 26 | 27 | it('should serialize a single-level plain object', (test) => { 28 | testPlainSerialization(test, { 29 | 'a': 5, 30 | 'b': 6, 31 | }) 32 | }) 33 | 34 | 35 | it('should serialize a nested plain object', (test) => { 36 | testPlainSerialization(test, { 37 | 'a': { 38 | 'b': { 39 | 'c': 123, 40 | }, 41 | }, 42 | }) 43 | }) 44 | 45 | 46 | it('should serialize an array nested in a plain object', (test) => { 47 | testPlainSerialization(test, { 48 | 'a': [ 'b', 123 ], 49 | }) 50 | }) 51 | -------------------------------------------------------------------------------- /test/serialize/record.js: -------------------------------------------------------------------------------- 1 | import immutable from 'immutable' 2 | import it from 'ava' 3 | 4 | import helpers from './_helpers' 5 | 6 | 7 | 8 | it('should not mark an unnamed immutable.Record as __record', (test) => { 9 | const SampleRecord = immutable.Record({ 10 | 'a': 5, 11 | 'b': 6, 12 | }) 13 | 14 | const data = SampleRecord() 15 | const result = helpers.getSerializationResult(data) 16 | 17 | test.falsy(result['__record']) 18 | }) 19 | 20 | 21 | it('should mark a named immutable.Record as __record=', (test) => { 22 | const SampleRecord = immutable.Record({ 23 | 'a': 5, 24 | 'b': 6, 25 | }, 'SampleRecord') 26 | 27 | const data = SampleRecord() 28 | const result = helpers.getSerializationResult(data) 29 | 30 | test.is(result['__record'], 'SampleRecord') 31 | test.truthy(result['data']) 32 | }) 33 | 34 | 35 | it('should serialize an unnamed immutable.Record as a plain object', 36 | (test) => { 37 | const SampleRecord = immutable.Record({ 38 | 'a': 5, 39 | 'b': 6, 40 | }) 41 | 42 | const data = SampleRecord() 43 | 44 | helpers.testSerialization(test, data, { 45 | 'a': 5, 46 | 'b': 6, 47 | }) 48 | }) 49 | 50 | 51 | it('should serialize a named immutable.Record data as a plain object', 52 | (test) => { 53 | const SampleRecord = immutable.Record({ 54 | 'a': 5, 55 | 'b': 6, 56 | }, 'SampleRecord') 57 | 58 | const data = SampleRecord() 59 | const result = helpers.getSerializationResult(data) 60 | 61 | test.deepEqual(result['data'], { 62 | 'a': 5, 63 | 'b': 6, 64 | }) 65 | }) 66 | 67 | 68 | it('should serialize nested plain objects in immutable.Record data', 69 | (test) => { 70 | const SampleRecord = immutable.Record({ 71 | 'a': { 'x': 5 }, 72 | 'b': { 'y': 6, 'z': 7 }, 73 | }) 74 | 75 | const data = SampleRecord() 76 | const result = helpers.getSerializationResult(data) 77 | 78 | test.deepEqual(result, { 79 | 'a': { 'x': 5 }, 80 | 'b': { 'y': 6, 'z': 7 }, 81 | }) 82 | }) 83 | 84 | 85 | it('should serialize an immutable.Map in immutable.Record data', (test) => { 86 | const SampleRecord = immutable.Record({ 87 | 'a': immutable.Map({ 'x': 5 }), 88 | 'b': immutable.Map({ 'y': 6, 'z': 7 },) 89 | }) 90 | 91 | const data = SampleRecord() 92 | const result = helpers.getSerializationResult(data) 93 | 94 | test.deepEqual(result, { 95 | 'a': { 96 | '__iterable': 'Map', 97 | 'data': [ 98 | [ 'x', 5 ], 99 | ], 100 | }, 101 | 'b': { 102 | '__iterable': 'Map', 103 | 'data': [ 104 | [ 'y', 6 ], 105 | [ 'z', 7 ], 106 | ], 107 | }, 108 | }) 109 | }) 110 | 111 | 112 | it('should preserve key types of an immutable.Map in immutable.Record data', 113 | (test) => { 114 | let typedKeyedMap = immutable.Map() 115 | typedKeyedMap = typedKeyedMap.set(123, 'a') 116 | typedKeyedMap = typedKeyedMap.set(true, 'b') 117 | 118 | const SampleRecord = immutable.Record({ 119 | 'a': typedKeyedMap 120 | }) 121 | 122 | const data = SampleRecord() 123 | const result = helpers.getSerializationResult(data) 124 | 125 | test.deepEqual(result['a']['data'], [ 126 | [ 123, 'a' ], 127 | [ true, 'b' ], 128 | ]) 129 | }) 130 | 131 | 132 | it('should include default unnamed record key values by default', 133 | (test) => { 134 | const SampleRecord = immutable.Record({ 135 | 'a': 1, 136 | 'b': 2, 137 | }) 138 | 139 | const data = SampleRecord({ 'a': 3 }) 140 | const result = helpers.getSerializationResult(data) 141 | 142 | test.deepEqual(result, { 143 | 'a': 3, 144 | 'b': 2, 145 | }) 146 | }) 147 | 148 | 149 | it('should not include default unnamed record key values when they should be omitted', 150 | (test) => { 151 | const SampleRecord = immutable.Record({ 152 | 'a': 1, 153 | 'b': 2, 154 | }) 155 | 156 | const data = SampleRecord({ 'a': 3 }) 157 | const result = helpers.getSerializationResult(data, { 158 | omitDefaultRecordValues: true, 159 | }) 160 | 161 | test.deepEqual(result, { 162 | 'a': 3, 163 | }) 164 | }) 165 | 166 | 167 | it('should include default named record key values by default', 168 | (test) => { 169 | const SampleRecord = immutable.Record({ 170 | 'a': 1, 171 | 'b': 2, 172 | }, 'X') 173 | 174 | const data = SampleRecord({ 'a': 3 }) 175 | const result = helpers.getSerializationResult(data) 176 | 177 | test.deepEqual(result['data'], { 178 | 'a': 3, 179 | 'b': 2, 180 | }) 181 | }) 182 | 183 | 184 | it('should not include default named record key values when they should be omitted', 185 | (test) => { 186 | const SampleRecord = immutable.Record({ 187 | 'a': 1, 188 | 'b': 2, 189 | }, 'X') 190 | 191 | const data = SampleRecord({ 'a': 3 }) 192 | const result = helpers.getSerializationResult(data, { 193 | omitDefaultRecordValues: true, 194 | }) 195 | 196 | test.deepEqual(result['data'], { 197 | 'a': 3, 198 | }) 199 | }) 200 | 201 | 202 | it('should not include default record key values of records ' + 203 | 'nested within plain objects when they should be omitted', 204 | (test) => { 205 | const SampleRecord = immutable.Record({ 206 | 'a': 1, 207 | 'b': 2, 208 | }, 'X') 209 | 210 | const data = { 211 | 'x': SampleRecord({ 'a': 3 }), 212 | } 213 | const result = helpers.getSerializationResult(data, { 214 | omitDefaultRecordValues: true, 215 | }) 216 | 217 | test.deepEqual(result['x']['data'], { 218 | 'a': 3, 219 | }) 220 | }) 221 | 222 | 223 | it('should not include default record key values of records ' + 224 | 'nested within arrays when they should be omitted', 225 | (test) => { 226 | const SampleRecord = immutable.Record({ 227 | 'a': 1, 228 | 'b': 2, 229 | }, 'X') 230 | 231 | const data = [ 232 | SampleRecord({ 'a': 3 }), 233 | ] 234 | const result = helpers.getSerializationResult(data, { 235 | omitDefaultRecordValues: true, 236 | }) 237 | 238 | test.deepEqual(result[0]['data'], { 239 | 'a': 3, 240 | }) 241 | }) 242 | 243 | 244 | it('should not include default record key values of records ' + 245 | 'nested within immutable lists when they should be omitted', 246 | (test) => { 247 | const SampleRecord = immutable.Record({ 248 | 'a': 1, 249 | 'b': 2, 250 | }, 'X') 251 | 252 | const data = immutable.List([ 253 | SampleRecord({ 'a': 3 }), 254 | ]) 255 | const result = helpers.getSerializationResult(data, { 256 | omitDefaultRecordValues: true, 257 | }) 258 | 259 | test.deepEqual(result['data'][0]['data'], { 260 | 'a': 3, 261 | }) 262 | }) 263 | 264 | 265 | it('should not include default record key values of records ' + 266 | 'nested within immutable lists when they should be omitted', 267 | (test) => { 268 | const SampleRecord = immutable.Record({ 269 | 'a': 1, 270 | 'b': 2, 271 | 'child': null, 272 | }, 'X') 273 | 274 | const data = SampleRecord({ 275 | 'a': 3, 276 | 'child': SampleRecord({ 'a': 4 }), 277 | }) 278 | const result = helpers.getSerializationResult(data, { 279 | omitDefaultRecordValues: true, 280 | }) 281 | 282 | test.deepEqual(result['data']['child']['data'], { 283 | 'a': 4, 284 | }) 285 | }) 286 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.1.0" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 8 | 9 | ajv@^4.9.1: 10 | version "4.11.8" 11 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 12 | dependencies: 13 | co "^4.6.0" 14 | json-stable-stringify "^1.0.1" 15 | 16 | ansi-align@^1.1.0: 17 | version "1.1.0" 18 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-1.1.0.tgz#2f0c1658829739add5ebb15e6b0c6e3423f016ba" 19 | dependencies: 20 | string-width "^1.0.1" 21 | 22 | ansi-regex@^2.0.0: 23 | version "2.1.1" 24 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 25 | 26 | ansi-styles@^2.1.0: 27 | version "2.2.1" 28 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 29 | 30 | ansi-styles@~1.0.0: 31 | version "1.0.0" 32 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-1.0.0.tgz#cb102df1c56f5123eab8b67cd7b98027a0279178" 33 | 34 | anymatch@^1.3.0: 35 | version "1.3.0" 36 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 37 | dependencies: 38 | arrify "^1.0.0" 39 | micromatch "^2.1.5" 40 | 41 | aproba@^1.0.3: 42 | version "1.1.2" 43 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1" 44 | 45 | are-we-there-yet@~1.1.2: 46 | version "1.1.4" 47 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 48 | dependencies: 49 | delegates "^1.0.0" 50 | readable-stream "^2.0.6" 51 | 52 | arr-diff@^2.0.0: 53 | version "2.0.0" 54 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 55 | dependencies: 56 | arr-flatten "^1.0.1" 57 | 58 | arr-exclude@^1.0.0: 59 | version "1.0.0" 60 | resolved "https://registry.yarnpkg.com/arr-exclude/-/arr-exclude-1.0.0.tgz#dfc7c2e552a270723ccda04cf3128c8cbfe5c631" 61 | 62 | arr-flatten@^1.0.1: 63 | version "1.0.3" 64 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 65 | 66 | array-differ@^1.0.0: 67 | version "1.0.0" 68 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 69 | 70 | array-find-index@^1.0.1: 71 | version "1.0.2" 72 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 73 | 74 | array-union@^1.0.1: 75 | version "1.0.2" 76 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 77 | dependencies: 78 | array-uniq "^1.0.1" 79 | 80 | array-uniq@^1.0.0, array-uniq@^1.0.1, array-uniq@^1.0.2: 81 | version "1.0.3" 82 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 83 | 84 | array-unique@^0.2.1: 85 | version "0.2.1" 86 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 87 | 88 | arrify@^1.0.0: 89 | version "1.0.1" 90 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 91 | 92 | asn1@~0.2.3: 93 | version "0.2.3" 94 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 95 | 96 | assert-plus@1.0.0, assert-plus@^1.0.0: 97 | version "1.0.0" 98 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 99 | 100 | assert-plus@^0.2.0: 101 | version "0.2.0" 102 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 103 | 104 | async-each@^1.0.0: 105 | version "1.0.1" 106 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 107 | 108 | asynckit@^0.4.0: 109 | version "0.4.0" 110 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 111 | 112 | ava-files@^0.1.1: 113 | version "0.1.1" 114 | resolved "https://registry.yarnpkg.com/ava-files/-/ava-files-0.1.1.tgz#18abb6f4b87029c32fc35f2053fecd3a55f1d2b0" 115 | dependencies: 116 | arr-flatten "^1.0.1" 117 | bluebird "^3.4.1" 118 | globby "^5.0.0" 119 | ignore-by-default "^1.0.1" 120 | multimatch "^2.1.0" 121 | slash "^1.0.0" 122 | 123 | ava-init@^0.1.0: 124 | version "0.1.6" 125 | resolved "https://registry.yarnpkg.com/ava-init/-/ava-init-0.1.6.tgz#ef19ed0b24b6bf359dad6fbadf1a05d836395c91" 126 | dependencies: 127 | arr-exclude "^1.0.0" 128 | cross-spawn "^4.0.0" 129 | pinkie-promise "^2.0.0" 130 | read-pkg-up "^1.0.1" 131 | the-argv "^1.0.0" 132 | write-pkg "^1.0.0" 133 | 134 | ava@0.16.x: 135 | version "0.16.0" 136 | resolved "https://registry.yarnpkg.com/ava/-/ava-0.16.0.tgz#07d7e06c627820115a84d7ee346f0bb165730454" 137 | dependencies: 138 | arr-flatten "^1.0.1" 139 | array-union "^1.0.1" 140 | array-uniq "^1.0.2" 141 | arrify "^1.0.0" 142 | ava-files "^0.1.1" 143 | ava-init "^0.1.0" 144 | babel-code-frame "^6.7.5" 145 | babel-core "^6.3.21" 146 | babel-plugin-ava-throws-helper "^0.1.0" 147 | babel-plugin-detective "^2.0.0" 148 | babel-plugin-espower "^2.2.0" 149 | babel-plugin-transform-runtime "^6.3.13" 150 | babel-preset-es2015 "^6.3.13" 151 | babel-preset-stage-2 "^6.3.13" 152 | babel-runtime "^6.3.19" 153 | bluebird "^3.0.0" 154 | caching-transform "^1.0.0" 155 | chalk "^1.0.0" 156 | chokidar "^1.4.2" 157 | clean-yaml-object "^0.1.0" 158 | cli-cursor "^1.0.2" 159 | cli-spinners "^0.1.2" 160 | cli-truncate "^0.2.0" 161 | co-with-promise "^4.6.0" 162 | common-path-prefix "^1.0.0" 163 | convert-source-map "^1.2.0" 164 | core-assert "^0.2.0" 165 | currently-unhandled "^0.4.1" 166 | debug "^2.2.0" 167 | empower-core "^0.6.1" 168 | figures "^1.4.0" 169 | find-cache-dir "^0.1.1" 170 | fn-name "^2.0.0" 171 | has-flag "^2.0.0" 172 | ignore-by-default "^1.0.0" 173 | is-ci "^1.0.7" 174 | is-generator-fn "^1.0.0" 175 | is-obj "^1.0.0" 176 | is-observable "^0.2.0" 177 | is-promise "^2.1.0" 178 | last-line-stream "^1.0.0" 179 | lodash.debounce "^4.0.3" 180 | lodash.difference "^4.3.0" 181 | loud-rejection "^1.2.0" 182 | matcher "^0.1.1" 183 | max-timeout "^1.0.0" 184 | md5-hex "^1.2.0" 185 | meow "^3.7.0" 186 | ms "^0.7.1" 187 | not-so-shallow "^0.1.3" 188 | object-assign "^4.0.1" 189 | observable-to-promise "^0.4.0" 190 | option-chain "^0.1.0" 191 | package-hash "^1.1.0" 192 | pkg-conf "^1.0.1" 193 | plur "^2.0.0" 194 | power-assert-context-formatter "^1.0.4" 195 | power-assert-renderer-assertion "^1.0.1" 196 | power-assert-renderer-succinct "^1.0.1" 197 | pretty-ms "^2.0.0" 198 | repeating "^2.0.0" 199 | require-precompiled "^0.1.0" 200 | resolve-cwd "^1.0.0" 201 | set-immediate-shim "^1.0.1" 202 | source-map-support "^0.4.0" 203 | stack-utils "^0.4.0" 204 | strip-ansi "^3.0.1" 205 | strip-bom "^2.0.0" 206 | time-require "^0.1.2" 207 | unique-temp-dir "^1.0.0" 208 | update-notifier "^1.0.0" 209 | 210 | aws-sign2@~0.6.0: 211 | version "0.6.0" 212 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 213 | 214 | aws4@^1.2.1: 215 | version "1.6.0" 216 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 217 | 218 | babel-cli@6.14.x: 219 | version "6.14.0" 220 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.14.0.tgz#cbc778ad1ff4e58c87b87d7e08993993c2d3b75f" 221 | dependencies: 222 | babel-core "^6.14.0" 223 | babel-polyfill "^6.9.0" 224 | babel-register "^6.14.0" 225 | babel-runtime "^6.9.0" 226 | bin-version-check "^2.1.0" 227 | chalk "1.1.1" 228 | commander "^2.8.1" 229 | convert-source-map "^1.1.0" 230 | fs-readdir-recursive "^0.1.0" 231 | glob "^5.0.5" 232 | lodash "^4.2.0" 233 | log-symbols "^1.0.2" 234 | output-file-sync "^1.1.0" 235 | path-exists "^1.0.0" 236 | path-is-absolute "^1.0.0" 237 | request "^2.65.0" 238 | slash "^1.0.0" 239 | source-map "^0.5.0" 240 | v8flags "^2.0.10" 241 | optionalDependencies: 242 | chokidar "^1.0.0" 243 | 244 | babel-code-frame@^6.22.0, babel-code-frame@^6.7.5: 245 | version "6.22.0" 246 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 247 | dependencies: 248 | chalk "^1.1.0" 249 | esutils "^2.0.2" 250 | js-tokens "^3.0.0" 251 | 252 | babel-core@^6.14.0, babel-core@^6.24.1, babel-core@^6.3.21: 253 | version "6.24.1" 254 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" 255 | dependencies: 256 | babel-code-frame "^6.22.0" 257 | babel-generator "^6.24.1" 258 | babel-helpers "^6.24.1" 259 | babel-messages "^6.23.0" 260 | babel-register "^6.24.1" 261 | babel-runtime "^6.22.0" 262 | babel-template "^6.24.1" 263 | babel-traverse "^6.24.1" 264 | babel-types "^6.24.1" 265 | babylon "^6.11.0" 266 | convert-source-map "^1.1.0" 267 | debug "^2.1.1" 268 | json5 "^0.5.0" 269 | lodash "^4.2.0" 270 | minimatch "^3.0.2" 271 | path-is-absolute "^1.0.0" 272 | private "^0.1.6" 273 | slash "^1.0.0" 274 | source-map "^0.5.0" 275 | 276 | babel-generator@^6.1.0, babel-generator@^6.24.1: 277 | version "6.24.1" 278 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" 279 | dependencies: 280 | babel-messages "^6.23.0" 281 | babel-runtime "^6.22.0" 282 | babel-types "^6.24.1" 283 | detect-indent "^4.0.0" 284 | jsesc "^1.3.0" 285 | lodash "^4.2.0" 286 | source-map "^0.5.0" 287 | trim-right "^1.0.1" 288 | 289 | babel-helper-bindify-decorators@^6.24.1: 290 | version "6.24.1" 291 | resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.24.1.tgz#14c19e5f142d7b47f19a52431e52b1ccbc40a330" 292 | dependencies: 293 | babel-runtime "^6.22.0" 294 | babel-traverse "^6.24.1" 295 | babel-types "^6.24.1" 296 | 297 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 298 | version "6.24.1" 299 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 300 | dependencies: 301 | babel-helper-explode-assignable-expression "^6.24.1" 302 | babel-runtime "^6.22.0" 303 | babel-types "^6.24.1" 304 | 305 | babel-helper-call-delegate@^6.24.1: 306 | version "6.24.1" 307 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 308 | dependencies: 309 | babel-helper-hoist-variables "^6.24.1" 310 | babel-runtime "^6.22.0" 311 | babel-traverse "^6.24.1" 312 | babel-types "^6.24.1" 313 | 314 | babel-helper-define-map@^6.24.1: 315 | version "6.24.1" 316 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz#7a9747f258d8947d32d515f6aa1c7bd02204a080" 317 | dependencies: 318 | babel-helper-function-name "^6.24.1" 319 | babel-runtime "^6.22.0" 320 | babel-types "^6.24.1" 321 | lodash "^4.2.0" 322 | 323 | babel-helper-explode-assignable-expression@^6.24.1: 324 | version "6.24.1" 325 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 326 | dependencies: 327 | babel-runtime "^6.22.0" 328 | babel-traverse "^6.24.1" 329 | babel-types "^6.24.1" 330 | 331 | babel-helper-explode-class@^6.24.1: 332 | version "6.24.1" 333 | resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.24.1.tgz#7dc2a3910dee007056e1e31d640ced3d54eaa9eb" 334 | dependencies: 335 | babel-helper-bindify-decorators "^6.24.1" 336 | babel-runtime "^6.22.0" 337 | babel-traverse "^6.24.1" 338 | babel-types "^6.24.1" 339 | 340 | babel-helper-function-name@^6.24.1: 341 | version "6.24.1" 342 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 343 | dependencies: 344 | babel-helper-get-function-arity "^6.24.1" 345 | babel-runtime "^6.22.0" 346 | babel-template "^6.24.1" 347 | babel-traverse "^6.24.1" 348 | babel-types "^6.24.1" 349 | 350 | babel-helper-get-function-arity@^6.24.1: 351 | version "6.24.1" 352 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 353 | dependencies: 354 | babel-runtime "^6.22.0" 355 | babel-types "^6.24.1" 356 | 357 | babel-helper-hoist-variables@^6.24.1: 358 | version "6.24.1" 359 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 360 | dependencies: 361 | babel-runtime "^6.22.0" 362 | babel-types "^6.24.1" 363 | 364 | babel-helper-optimise-call-expression@^6.24.1: 365 | version "6.24.1" 366 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 367 | dependencies: 368 | babel-runtime "^6.22.0" 369 | babel-types "^6.24.1" 370 | 371 | babel-helper-regex@^6.24.1: 372 | version "6.24.1" 373 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" 374 | dependencies: 375 | babel-runtime "^6.22.0" 376 | babel-types "^6.24.1" 377 | lodash "^4.2.0" 378 | 379 | babel-helper-remap-async-to-generator@^6.24.1: 380 | version "6.24.1" 381 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 382 | dependencies: 383 | babel-helper-function-name "^6.24.1" 384 | babel-runtime "^6.22.0" 385 | babel-template "^6.24.1" 386 | babel-traverse "^6.24.1" 387 | babel-types "^6.24.1" 388 | 389 | babel-helper-replace-supers@^6.24.1: 390 | version "6.24.1" 391 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 392 | dependencies: 393 | babel-helper-optimise-call-expression "^6.24.1" 394 | babel-messages "^6.23.0" 395 | babel-runtime "^6.22.0" 396 | babel-template "^6.24.1" 397 | babel-traverse "^6.24.1" 398 | babel-types "^6.24.1" 399 | 400 | babel-helpers@^6.24.1: 401 | version "6.24.1" 402 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 403 | dependencies: 404 | babel-runtime "^6.22.0" 405 | babel-template "^6.24.1" 406 | 407 | babel-messages@^6.23.0: 408 | version "6.23.0" 409 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 410 | dependencies: 411 | babel-runtime "^6.22.0" 412 | 413 | babel-plugin-ava-throws-helper@^0.1.0: 414 | version "0.1.0" 415 | resolved "https://registry.yarnpkg.com/babel-plugin-ava-throws-helper/-/babel-plugin-ava-throws-helper-0.1.0.tgz#951107708a12208026bf8ca4cef18a87bc9b0cfe" 416 | dependencies: 417 | babel-template "^6.7.0" 418 | babel-types "^6.7.2" 419 | 420 | babel-plugin-check-es2015-constants@^6.3.13: 421 | version "6.22.0" 422 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 423 | dependencies: 424 | babel-runtime "^6.22.0" 425 | 426 | babel-plugin-detective@^2.0.0: 427 | version "2.0.0" 428 | resolved "https://registry.yarnpkg.com/babel-plugin-detective/-/babel-plugin-detective-2.0.0.tgz#6e642e83c22a335279754ebe2d754d2635f49f13" 429 | 430 | babel-plugin-espower@^2.2.0: 431 | version "2.3.2" 432 | resolved "https://registry.yarnpkg.com/babel-plugin-espower/-/babel-plugin-espower-2.3.2.tgz#5516b8fcdb26c9f0e1d8160749f6e4c65e71271e" 433 | dependencies: 434 | babel-generator "^6.1.0" 435 | babylon "^6.1.0" 436 | call-matcher "^1.0.0" 437 | core-js "^2.0.0" 438 | espower-location-detector "^1.0.0" 439 | espurify "^1.6.0" 440 | estraverse "^4.1.1" 441 | 442 | babel-plugin-syntax-async-functions@^6.8.0: 443 | version "6.13.0" 444 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 445 | 446 | babel-plugin-syntax-async-generators@^6.5.0: 447 | version "6.13.0" 448 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" 449 | 450 | babel-plugin-syntax-class-properties@^6.8.0: 451 | version "6.13.0" 452 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 453 | 454 | babel-plugin-syntax-decorators@^6.13.0: 455 | version "6.13.0" 456 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b" 457 | 458 | babel-plugin-syntax-dynamic-import@^6.18.0: 459 | version "6.18.0" 460 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" 461 | 462 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 463 | version "6.13.0" 464 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 465 | 466 | babel-plugin-syntax-object-rest-spread@^6.8.0: 467 | version "6.13.0" 468 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 469 | 470 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 471 | version "6.22.0" 472 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 473 | 474 | babel-plugin-transform-async-generator-functions@^6.24.1: 475 | version "6.24.1" 476 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz#f058900145fd3e9907a6ddf28da59f215258a5db" 477 | dependencies: 478 | babel-helper-remap-async-to-generator "^6.24.1" 479 | babel-plugin-syntax-async-generators "^6.5.0" 480 | babel-runtime "^6.22.0" 481 | 482 | babel-plugin-transform-async-to-generator@^6.24.1: 483 | version "6.24.1" 484 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 485 | dependencies: 486 | babel-helper-remap-async-to-generator "^6.24.1" 487 | babel-plugin-syntax-async-functions "^6.8.0" 488 | babel-runtime "^6.22.0" 489 | 490 | babel-plugin-transform-class-properties@^6.24.1: 491 | version "6.24.1" 492 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" 493 | dependencies: 494 | babel-helper-function-name "^6.24.1" 495 | babel-plugin-syntax-class-properties "^6.8.0" 496 | babel-runtime "^6.22.0" 497 | babel-template "^6.24.1" 498 | 499 | babel-plugin-transform-decorators@^6.24.1: 500 | version "6.24.1" 501 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.24.1.tgz#788013d8f8c6b5222bdf7b344390dfd77569e24d" 502 | dependencies: 503 | babel-helper-explode-class "^6.24.1" 504 | babel-plugin-syntax-decorators "^6.13.0" 505 | babel-runtime "^6.22.0" 506 | babel-template "^6.24.1" 507 | babel-types "^6.24.1" 508 | 509 | babel-plugin-transform-es2015-arrow-functions@^6.3.13: 510 | version "6.22.0" 511 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 512 | dependencies: 513 | babel-runtime "^6.22.0" 514 | 515 | babel-plugin-transform-es2015-block-scoped-functions@^6.3.13: 516 | version "6.22.0" 517 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 518 | dependencies: 519 | babel-runtime "^6.22.0" 520 | 521 | babel-plugin-transform-es2015-block-scoping@^6.14.0: 522 | version "6.24.1" 523 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz#76c295dc3a4741b1665adfd3167215dcff32a576" 524 | dependencies: 525 | babel-runtime "^6.22.0" 526 | babel-template "^6.24.1" 527 | babel-traverse "^6.24.1" 528 | babel-types "^6.24.1" 529 | lodash "^4.2.0" 530 | 531 | babel-plugin-transform-es2015-classes@^6.14.0: 532 | version "6.24.1" 533 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 534 | dependencies: 535 | babel-helper-define-map "^6.24.1" 536 | babel-helper-function-name "^6.24.1" 537 | babel-helper-optimise-call-expression "^6.24.1" 538 | babel-helper-replace-supers "^6.24.1" 539 | babel-messages "^6.23.0" 540 | babel-runtime "^6.22.0" 541 | babel-template "^6.24.1" 542 | babel-traverse "^6.24.1" 543 | babel-types "^6.24.1" 544 | 545 | babel-plugin-transform-es2015-computed-properties@^6.3.13: 546 | version "6.24.1" 547 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 548 | dependencies: 549 | babel-runtime "^6.22.0" 550 | babel-template "^6.24.1" 551 | 552 | babel-plugin-transform-es2015-destructuring@^6.9.0: 553 | version "6.23.0" 554 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 555 | dependencies: 556 | babel-runtime "^6.22.0" 557 | 558 | babel-plugin-transform-es2015-duplicate-keys@^6.6.0: 559 | version "6.24.1" 560 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 561 | dependencies: 562 | babel-runtime "^6.22.0" 563 | babel-types "^6.24.1" 564 | 565 | babel-plugin-transform-es2015-for-of@^6.6.0: 566 | version "6.23.0" 567 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 568 | dependencies: 569 | babel-runtime "^6.22.0" 570 | 571 | babel-plugin-transform-es2015-function-name@^6.9.0: 572 | version "6.24.1" 573 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 574 | dependencies: 575 | babel-helper-function-name "^6.24.1" 576 | babel-runtime "^6.22.0" 577 | babel-types "^6.24.1" 578 | 579 | babel-plugin-transform-es2015-literals@^6.3.13: 580 | version "6.22.0" 581 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 582 | dependencies: 583 | babel-runtime "^6.22.0" 584 | 585 | babel-plugin-transform-es2015-modules-amd@^6.24.1, babel-plugin-transform-es2015-modules-amd@^6.8.0: 586 | version "6.24.1" 587 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 588 | dependencies: 589 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 590 | babel-runtime "^6.22.0" 591 | babel-template "^6.24.1" 592 | 593 | babel-plugin-transform-es2015-modules-commonjs@^6.14.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 594 | version "6.24.1" 595 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 596 | dependencies: 597 | babel-plugin-transform-strict-mode "^6.24.1" 598 | babel-runtime "^6.22.0" 599 | babel-template "^6.24.1" 600 | babel-types "^6.24.1" 601 | 602 | babel-plugin-transform-es2015-modules-systemjs@^6.14.0: 603 | version "6.24.1" 604 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 605 | dependencies: 606 | babel-helper-hoist-variables "^6.24.1" 607 | babel-runtime "^6.22.0" 608 | babel-template "^6.24.1" 609 | 610 | babel-plugin-transform-es2015-modules-umd@^6.12.0: 611 | version "6.24.1" 612 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 613 | dependencies: 614 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 615 | babel-runtime "^6.22.0" 616 | babel-template "^6.24.1" 617 | 618 | babel-plugin-transform-es2015-object-super@^6.3.13: 619 | version "6.24.1" 620 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 621 | dependencies: 622 | babel-helper-replace-supers "^6.24.1" 623 | babel-runtime "^6.22.0" 624 | 625 | babel-plugin-transform-es2015-parameters@^6.9.0: 626 | version "6.24.1" 627 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 628 | dependencies: 629 | babel-helper-call-delegate "^6.24.1" 630 | babel-helper-get-function-arity "^6.24.1" 631 | babel-runtime "^6.22.0" 632 | babel-template "^6.24.1" 633 | babel-traverse "^6.24.1" 634 | babel-types "^6.24.1" 635 | 636 | babel-plugin-transform-es2015-shorthand-properties@^6.3.13: 637 | version "6.24.1" 638 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 639 | dependencies: 640 | babel-runtime "^6.22.0" 641 | babel-types "^6.24.1" 642 | 643 | babel-plugin-transform-es2015-spread@^6.3.13: 644 | version "6.22.0" 645 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 646 | dependencies: 647 | babel-runtime "^6.22.0" 648 | 649 | babel-plugin-transform-es2015-sticky-regex@^6.3.13: 650 | version "6.24.1" 651 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 652 | dependencies: 653 | babel-helper-regex "^6.24.1" 654 | babel-runtime "^6.22.0" 655 | babel-types "^6.24.1" 656 | 657 | babel-plugin-transform-es2015-template-literals@^6.6.0: 658 | version "6.22.0" 659 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 660 | dependencies: 661 | babel-runtime "^6.22.0" 662 | 663 | babel-plugin-transform-es2015-typeof-symbol@^6.6.0: 664 | version "6.23.0" 665 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 666 | dependencies: 667 | babel-runtime "^6.22.0" 668 | 669 | babel-plugin-transform-es2015-unicode-regex@^6.3.13: 670 | version "6.24.1" 671 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 672 | dependencies: 673 | babel-helper-regex "^6.24.1" 674 | babel-runtime "^6.22.0" 675 | regexpu-core "^2.0.0" 676 | 677 | babel-plugin-transform-exponentiation-operator@^6.24.1: 678 | version "6.24.1" 679 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 680 | dependencies: 681 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 682 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 683 | babel-runtime "^6.22.0" 684 | 685 | babel-plugin-transform-object-rest-spread@^6.22.0: 686 | version "6.23.0" 687 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz#875d6bc9be761c58a2ae3feee5dc4895d8c7f921" 688 | dependencies: 689 | babel-plugin-syntax-object-rest-spread "^6.8.0" 690 | babel-runtime "^6.22.0" 691 | 692 | babel-plugin-transform-regenerator@^6.14.0: 693 | version "6.24.1" 694 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418" 695 | dependencies: 696 | regenerator-transform "0.9.11" 697 | 698 | babel-plugin-transform-runtime@^6.3.13: 699 | version "6.23.0" 700 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz#88490d446502ea9b8e7efb0fe09ec4d99479b1ee" 701 | dependencies: 702 | babel-runtime "^6.22.0" 703 | 704 | babel-plugin-transform-strict-mode@^6.24.1: 705 | version "6.24.1" 706 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 707 | dependencies: 708 | babel-runtime "^6.22.0" 709 | babel-types "^6.24.1" 710 | 711 | babel-polyfill@^6.9.0: 712 | version "6.23.0" 713 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" 714 | dependencies: 715 | babel-runtime "^6.22.0" 716 | core-js "^2.4.0" 717 | regenerator-runtime "^0.10.0" 718 | 719 | babel-preset-es2015@6.14.x, babel-preset-es2015@^6.3.13: 720 | version "6.14.0" 721 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.14.0.tgz#cd2437a96f02a4d19bb87e87980bf0b0288d13eb" 722 | dependencies: 723 | babel-plugin-check-es2015-constants "^6.3.13" 724 | babel-plugin-transform-es2015-arrow-functions "^6.3.13" 725 | babel-plugin-transform-es2015-block-scoped-functions "^6.3.13" 726 | babel-plugin-transform-es2015-block-scoping "^6.14.0" 727 | babel-plugin-transform-es2015-classes "^6.14.0" 728 | babel-plugin-transform-es2015-computed-properties "^6.3.13" 729 | babel-plugin-transform-es2015-destructuring "^6.9.0" 730 | babel-plugin-transform-es2015-duplicate-keys "^6.6.0" 731 | babel-plugin-transform-es2015-for-of "^6.6.0" 732 | babel-plugin-transform-es2015-function-name "^6.9.0" 733 | babel-plugin-transform-es2015-literals "^6.3.13" 734 | babel-plugin-transform-es2015-modules-amd "^6.8.0" 735 | babel-plugin-transform-es2015-modules-commonjs "^6.14.0" 736 | babel-plugin-transform-es2015-modules-systemjs "^6.14.0" 737 | babel-plugin-transform-es2015-modules-umd "^6.12.0" 738 | babel-plugin-transform-es2015-object-super "^6.3.13" 739 | babel-plugin-transform-es2015-parameters "^6.9.0" 740 | babel-plugin-transform-es2015-shorthand-properties "^6.3.13" 741 | babel-plugin-transform-es2015-spread "^6.3.13" 742 | babel-plugin-transform-es2015-sticky-regex "^6.3.13" 743 | babel-plugin-transform-es2015-template-literals "^6.6.0" 744 | babel-plugin-transform-es2015-typeof-symbol "^6.6.0" 745 | babel-plugin-transform-es2015-unicode-regex "^6.3.13" 746 | babel-plugin-transform-regenerator "^6.14.0" 747 | 748 | babel-preset-stage-2@^6.3.13: 749 | version "6.24.1" 750 | resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz#d9e2960fb3d71187f0e64eec62bc07767219bdc1" 751 | dependencies: 752 | babel-plugin-syntax-dynamic-import "^6.18.0" 753 | babel-plugin-transform-class-properties "^6.24.1" 754 | babel-plugin-transform-decorators "^6.24.1" 755 | babel-preset-stage-3 "^6.24.1" 756 | 757 | babel-preset-stage-3@^6.24.1: 758 | version "6.24.1" 759 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz#836ada0a9e7a7fa37cb138fb9326f87934a48395" 760 | dependencies: 761 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 762 | babel-plugin-transform-async-generator-functions "^6.24.1" 763 | babel-plugin-transform-async-to-generator "^6.24.1" 764 | babel-plugin-transform-exponentiation-operator "^6.24.1" 765 | babel-plugin-transform-object-rest-spread "^6.22.0" 766 | 767 | babel-register@^6.14.0, babel-register@^6.24.1: 768 | version "6.24.1" 769 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 770 | dependencies: 771 | babel-core "^6.24.1" 772 | babel-runtime "^6.22.0" 773 | core-js "^2.4.0" 774 | home-or-tmp "^2.0.0" 775 | lodash "^4.2.0" 776 | mkdirp "^0.5.1" 777 | source-map-support "^0.4.2" 778 | 779 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.3.19, babel-runtime@^6.9.0: 780 | version "6.23.0" 781 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 782 | dependencies: 783 | core-js "^2.4.0" 784 | regenerator-runtime "^0.10.0" 785 | 786 | babel-template@^6.24.1, babel-template@^6.7.0: 787 | version "6.24.1" 788 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" 789 | dependencies: 790 | babel-runtime "^6.22.0" 791 | babel-traverse "^6.24.1" 792 | babel-types "^6.24.1" 793 | babylon "^6.11.0" 794 | lodash "^4.2.0" 795 | 796 | babel-traverse@^6.24.1: 797 | version "6.24.1" 798 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" 799 | dependencies: 800 | babel-code-frame "^6.22.0" 801 | babel-messages "^6.23.0" 802 | babel-runtime "^6.22.0" 803 | babel-types "^6.24.1" 804 | babylon "^6.15.0" 805 | debug "^2.2.0" 806 | globals "^9.0.0" 807 | invariant "^2.2.0" 808 | lodash "^4.2.0" 809 | 810 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.7.2: 811 | version "6.24.1" 812 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" 813 | dependencies: 814 | babel-runtime "^6.22.0" 815 | esutils "^2.0.2" 816 | lodash "^4.2.0" 817 | to-fast-properties "^1.0.1" 818 | 819 | babylon@^6.1.0, babylon@^6.11.0, babylon@^6.15.0: 820 | version "6.17.2" 821 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.2.tgz#201d25ef5f892c41bae49488b08db0dd476e9f5c" 822 | 823 | balanced-match@^0.4.1: 824 | version "0.4.2" 825 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 826 | 827 | bcrypt-pbkdf@^1.0.0: 828 | version "1.0.1" 829 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 830 | dependencies: 831 | tweetnacl "^0.14.3" 832 | 833 | bin-version-check@^2.1.0: 834 | version "2.1.0" 835 | resolved "https://registry.yarnpkg.com/bin-version-check/-/bin-version-check-2.1.0.tgz#e4e5df290b9069f7d111324031efc13fdd11a5b0" 836 | dependencies: 837 | bin-version "^1.0.0" 838 | minimist "^1.1.0" 839 | semver "^4.0.3" 840 | semver-truncate "^1.0.0" 841 | 842 | bin-version@^1.0.0: 843 | version "1.0.4" 844 | resolved "https://registry.yarnpkg.com/bin-version/-/bin-version-1.0.4.tgz#9eb498ee6fd76f7ab9a7c160436f89579435d78e" 845 | dependencies: 846 | find-versions "^1.0.0" 847 | 848 | binary-extensions@^1.0.0: 849 | version "1.8.0" 850 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 851 | 852 | block-stream@*: 853 | version "0.0.9" 854 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 855 | dependencies: 856 | inherits "~2.0.0" 857 | 858 | bluebird@^3.0.0, bluebird@^3.4.1: 859 | version "3.5.0" 860 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.0.tgz#791420d7f551eea2897453a8a77653f96606d67c" 861 | 862 | boom@2.x.x: 863 | version "2.10.1" 864 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 865 | dependencies: 866 | hoek "2.x.x" 867 | 868 | boxen@^0.6.0: 869 | version "0.6.0" 870 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-0.6.0.tgz#8364d4248ac34ff0ef1b2f2bf49a6c60ce0d81b6" 871 | dependencies: 872 | ansi-align "^1.1.0" 873 | camelcase "^2.1.0" 874 | chalk "^1.1.1" 875 | cli-boxes "^1.0.0" 876 | filled-array "^1.0.0" 877 | object-assign "^4.0.1" 878 | repeating "^2.0.0" 879 | string-width "^1.0.1" 880 | widest-line "^1.0.0" 881 | 882 | brace-expansion@^1.1.7: 883 | version "1.1.7" 884 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59" 885 | dependencies: 886 | balanced-match "^0.4.1" 887 | concat-map "0.0.1" 888 | 889 | braces@^1.8.2: 890 | version "1.8.5" 891 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 892 | dependencies: 893 | expand-range "^1.8.1" 894 | preserve "^0.2.0" 895 | repeat-element "^1.1.2" 896 | 897 | buf-compare@^1.0.0: 898 | version "1.0.1" 899 | resolved "https://registry.yarnpkg.com/buf-compare/-/buf-compare-1.0.1.tgz#fef28da8b8113a0a0db4430b0b6467b69730b34a" 900 | 901 | buffer-equals@^1.0.3: 902 | version "1.0.4" 903 | resolved "https://registry.yarnpkg.com/buffer-equals/-/buffer-equals-1.0.4.tgz#0353b54fd07fd9564170671ae6f66b9cf10d27f5" 904 | 905 | builtin-modules@^1.0.0: 906 | version "1.1.1" 907 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 908 | 909 | caching-transform@^1.0.0: 910 | version "1.0.1" 911 | resolved "https://registry.yarnpkg.com/caching-transform/-/caching-transform-1.0.1.tgz#6dbdb2f20f8d8fbce79f3e94e9d1742dcdf5c0a1" 912 | dependencies: 913 | md5-hex "^1.2.0" 914 | mkdirp "^0.5.1" 915 | write-file-atomic "^1.1.4" 916 | 917 | call-matcher@^1.0.0: 918 | version "1.0.1" 919 | resolved "https://registry.yarnpkg.com/call-matcher/-/call-matcher-1.0.1.tgz#5134d077984f712a54dad3cbf62de28dce416ca8" 920 | dependencies: 921 | core-js "^2.0.0" 922 | deep-equal "^1.0.0" 923 | espurify "^1.6.0" 924 | estraverse "^4.0.0" 925 | 926 | call-signature@0.0.2: 927 | version "0.0.2" 928 | resolved "https://registry.yarnpkg.com/call-signature/-/call-signature-0.0.2.tgz#a84abc825a55ef4cb2b028bd74e205a65b9a4996" 929 | 930 | camelcase-keys@^2.0.0: 931 | version "2.1.0" 932 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 933 | dependencies: 934 | camelcase "^2.0.0" 935 | map-obj "^1.0.0" 936 | 937 | camelcase@^2.0.0, camelcase@^2.1.0: 938 | version "2.1.1" 939 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 940 | 941 | capture-stack-trace@^1.0.0: 942 | version "1.0.0" 943 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 944 | 945 | caseless@~0.12.0: 946 | version "0.12.0" 947 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 948 | 949 | chalk@1.1.1, chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1: 950 | version "1.1.1" 951 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.1.tgz#509afb67066e7499f7eb3535c77445772ae2d019" 952 | dependencies: 953 | ansi-styles "^2.1.0" 954 | escape-string-regexp "^1.0.2" 955 | has-ansi "^2.0.0" 956 | strip-ansi "^3.0.0" 957 | supports-color "^2.0.0" 958 | 959 | chalk@^0.4.0: 960 | version "0.4.0" 961 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.4.0.tgz#5199a3ddcd0c1efe23bc08c1b027b06176e0c64f" 962 | dependencies: 963 | ansi-styles "~1.0.0" 964 | has-color "~0.1.0" 965 | strip-ansi "~0.1.0" 966 | 967 | chokidar@^1.0.0, chokidar@^1.4.2: 968 | version "1.7.0" 969 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 970 | dependencies: 971 | anymatch "^1.3.0" 972 | async-each "^1.0.0" 973 | glob-parent "^2.0.0" 974 | inherits "^2.0.1" 975 | is-binary-path "^1.0.0" 976 | is-glob "^2.0.0" 977 | path-is-absolute "^1.0.0" 978 | readdirp "^2.0.0" 979 | optionalDependencies: 980 | fsevents "^1.0.0" 981 | 982 | ci-info@^1.0.0: 983 | version "1.0.0" 984 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 985 | 986 | clean-yaml-object@^0.1.0: 987 | version "0.1.0" 988 | resolved "https://registry.yarnpkg.com/clean-yaml-object/-/clean-yaml-object-0.1.0.tgz#63fb110dc2ce1a84dc21f6d9334876d010ae8b68" 989 | 990 | cli-boxes@^1.0.0: 991 | version "1.0.0" 992 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 993 | 994 | cli-cursor@^1.0.2: 995 | version "1.0.2" 996 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 997 | dependencies: 998 | restore-cursor "^1.0.1" 999 | 1000 | cli-spinners@^0.1.2: 1001 | version "0.1.2" 1002 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-0.1.2.tgz#bb764d88e185fb9e1e6a2a1f19772318f605e31c" 1003 | 1004 | cli-truncate@^0.2.0: 1005 | version "0.2.1" 1006 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574" 1007 | dependencies: 1008 | slice-ansi "0.0.4" 1009 | string-width "^1.0.1" 1010 | 1011 | co-with-promise@^4.6.0: 1012 | version "4.6.0" 1013 | resolved "https://registry.yarnpkg.com/co-with-promise/-/co-with-promise-4.6.0.tgz#413e7db6f5893a60b942cf492c4bec93db415ab7" 1014 | dependencies: 1015 | pinkie-promise "^1.0.0" 1016 | 1017 | co@^4.6.0: 1018 | version "4.6.0" 1019 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1020 | 1021 | code-point-at@^1.0.0: 1022 | version "1.1.0" 1023 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1024 | 1025 | combined-stream@^1.0.5, combined-stream@~1.0.5: 1026 | version "1.0.5" 1027 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 1028 | dependencies: 1029 | delayed-stream "~1.0.0" 1030 | 1031 | commander@^2.8.1: 1032 | version "2.9.0" 1033 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 1034 | dependencies: 1035 | graceful-readlink ">= 1.0.0" 1036 | 1037 | common-path-prefix@^1.0.0: 1038 | version "1.0.0" 1039 | resolved "https://registry.yarnpkg.com/common-path-prefix/-/common-path-prefix-1.0.0.tgz#cd52f6f0712e0baab97d6f9732874f22f47752c0" 1040 | 1041 | commondir@^1.0.1: 1042 | version "1.0.1" 1043 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 1044 | 1045 | concat-map@0.0.1: 1046 | version "0.0.1" 1047 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1048 | 1049 | configstore@^2.0.0: 1050 | version "2.1.0" 1051 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-2.1.0.tgz#737a3a7036e9886102aa6099e47bb33ab1aba1a1" 1052 | dependencies: 1053 | dot-prop "^3.0.0" 1054 | graceful-fs "^4.1.2" 1055 | mkdirp "^0.5.0" 1056 | object-assign "^4.0.1" 1057 | os-tmpdir "^1.0.0" 1058 | osenv "^0.1.0" 1059 | uuid "^2.0.1" 1060 | write-file-atomic "^1.1.2" 1061 | xdg-basedir "^2.0.0" 1062 | 1063 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1064 | version "1.1.0" 1065 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1066 | 1067 | convert-source-map@^1.1.0, convert-source-map@^1.2.0: 1068 | version "1.5.0" 1069 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 1070 | 1071 | core-assert@^0.2.0: 1072 | version "0.2.1" 1073 | resolved "https://registry.yarnpkg.com/core-assert/-/core-assert-0.2.1.tgz#f85e2cf9bfed28f773cc8b3fa5c5b69bdc02fe3f" 1074 | dependencies: 1075 | buf-compare "^1.0.0" 1076 | is-error "^2.2.0" 1077 | 1078 | core-js@^2.0.0, core-js@^2.4.0: 1079 | version "2.4.1" 1080 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 1081 | 1082 | core-util-is@~1.0.0: 1083 | version "1.0.2" 1084 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1085 | 1086 | create-error-class@^3.0.1: 1087 | version "3.0.2" 1088 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 1089 | dependencies: 1090 | capture-stack-trace "^1.0.0" 1091 | 1092 | cross-spawn@^4.0.0: 1093 | version "4.0.2" 1094 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" 1095 | dependencies: 1096 | lru-cache "^4.0.1" 1097 | which "^1.2.9" 1098 | 1099 | cryptiles@2.x.x: 1100 | version "2.0.5" 1101 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1102 | dependencies: 1103 | boom "2.x.x" 1104 | 1105 | currently-unhandled@^0.4.1: 1106 | version "0.4.1" 1107 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 1108 | dependencies: 1109 | array-find-index "^1.0.1" 1110 | 1111 | dashdash@^1.12.0: 1112 | version "1.14.1" 1113 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1114 | dependencies: 1115 | assert-plus "^1.0.0" 1116 | 1117 | date-time@^0.1.1: 1118 | version "0.1.1" 1119 | resolved "https://registry.yarnpkg.com/date-time/-/date-time-0.1.1.tgz#ed2f6d93d9790ce2fd66d5b5ff3edd5bbcbf3b07" 1120 | 1121 | debug@2.2.x, debug@^2.1.1, debug@^2.2.0: 1122 | version "2.2.0" 1123 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 1124 | dependencies: 1125 | ms "0.7.1" 1126 | 1127 | decamelize@^1.1.2: 1128 | version "1.2.0" 1129 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1130 | 1131 | deep-equal@^1.0.0: 1132 | version "1.0.1" 1133 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" 1134 | 1135 | deep-extend@~0.4.0: 1136 | version "0.4.2" 1137 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1138 | 1139 | delayed-stream@~1.0.0: 1140 | version "1.0.0" 1141 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1142 | 1143 | delegates@^1.0.0: 1144 | version "1.0.0" 1145 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1146 | 1147 | detect-indent@^4.0.0: 1148 | version "4.0.0" 1149 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1150 | dependencies: 1151 | repeating "^2.0.0" 1152 | 1153 | dot-prop@^3.0.0: 1154 | version "3.0.0" 1155 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177" 1156 | dependencies: 1157 | is-obj "^1.0.0" 1158 | 1159 | duplexer2@^0.1.4: 1160 | version "0.1.4" 1161 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" 1162 | dependencies: 1163 | readable-stream "^2.0.2" 1164 | 1165 | eastasianwidth@^0.1.1: 1166 | version "0.1.1" 1167 | resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.1.1.tgz#44d656de9da415694467335365fb3147b8572b7c" 1168 | 1169 | ecc-jsbn@~0.1.1: 1170 | version "0.1.1" 1171 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1172 | dependencies: 1173 | jsbn "~0.1.0" 1174 | 1175 | empower-core@^0.6.1: 1176 | version "0.6.2" 1177 | resolved "https://registry.yarnpkg.com/empower-core/-/empower-core-0.6.2.tgz#5adef566088e31fba80ba0a36df47d7094169144" 1178 | dependencies: 1179 | call-signature "0.0.2" 1180 | core-js "^2.0.0" 1181 | 1182 | error-ex@^1.2.0: 1183 | version "1.3.1" 1184 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1185 | dependencies: 1186 | is-arrayish "^0.2.1" 1187 | 1188 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.4, escape-string-regexp@^1.0.5: 1189 | version "1.0.5" 1190 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1191 | 1192 | espower-location-detector@^1.0.0: 1193 | version "1.0.0" 1194 | resolved "https://registry.yarnpkg.com/espower-location-detector/-/espower-location-detector-1.0.0.tgz#a17b7ecc59d30e179e2bef73fb4137704cb331b5" 1195 | dependencies: 1196 | is-url "^1.2.1" 1197 | path-is-absolute "^1.0.0" 1198 | source-map "^0.5.0" 1199 | xtend "^4.0.0" 1200 | 1201 | espurify@^1.6.0: 1202 | version "1.7.0" 1203 | resolved "https://registry.yarnpkg.com/espurify/-/espurify-1.7.0.tgz#1c5cf6cbccc32e6f639380bd4f991fab9ba9d226" 1204 | dependencies: 1205 | core-js "^2.0.0" 1206 | 1207 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1: 1208 | version "4.2.0" 1209 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1210 | 1211 | esutils@^2.0.2: 1212 | version "2.0.2" 1213 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1214 | 1215 | exit-hook@^1.0.0: 1216 | version "1.1.1" 1217 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1218 | 1219 | expand-brackets@^0.1.4: 1220 | version "0.1.5" 1221 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1222 | dependencies: 1223 | is-posix-bracket "^0.1.0" 1224 | 1225 | expand-range@^1.8.1: 1226 | version "1.8.2" 1227 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1228 | dependencies: 1229 | fill-range "^2.1.0" 1230 | 1231 | extend@~3.0.0: 1232 | version "3.0.1" 1233 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1234 | 1235 | extglob@^0.3.1: 1236 | version "0.3.2" 1237 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1238 | dependencies: 1239 | is-extglob "^1.0.0" 1240 | 1241 | extsprintf@1.0.2: 1242 | version "1.0.2" 1243 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1244 | 1245 | figures@^1.4.0: 1246 | version "1.7.0" 1247 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1248 | dependencies: 1249 | escape-string-regexp "^1.0.5" 1250 | object-assign "^4.1.0" 1251 | 1252 | filename-regex@^2.0.0: 1253 | version "2.0.1" 1254 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1255 | 1256 | fill-range@^2.1.0: 1257 | version "2.2.3" 1258 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1259 | dependencies: 1260 | is-number "^2.1.0" 1261 | isobject "^2.0.0" 1262 | randomatic "^1.1.3" 1263 | repeat-element "^1.1.2" 1264 | repeat-string "^1.5.2" 1265 | 1266 | filled-array@^1.0.0: 1267 | version "1.1.0" 1268 | resolved "https://registry.yarnpkg.com/filled-array/-/filled-array-1.1.0.tgz#c3c4f6c663b923459a9aa29912d2d031f1507f84" 1269 | 1270 | find-cache-dir@^0.1.1: 1271 | version "0.1.1" 1272 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" 1273 | dependencies: 1274 | commondir "^1.0.1" 1275 | mkdirp "^0.5.1" 1276 | pkg-dir "^1.0.0" 1277 | 1278 | find-up@^1.0.0: 1279 | version "1.1.2" 1280 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1281 | dependencies: 1282 | path-exists "^2.0.0" 1283 | pinkie-promise "^2.0.0" 1284 | 1285 | find-versions@^1.0.0: 1286 | version "1.2.1" 1287 | resolved "https://registry.yarnpkg.com/find-versions/-/find-versions-1.2.1.tgz#cbde9f12e38575a0af1be1b9a2c5d5fd8f186b62" 1288 | dependencies: 1289 | array-uniq "^1.0.0" 1290 | get-stdin "^4.0.1" 1291 | meow "^3.5.0" 1292 | semver-regex "^1.0.0" 1293 | 1294 | fn-name@^2.0.0: 1295 | version "2.0.1" 1296 | resolved "https://registry.yarnpkg.com/fn-name/-/fn-name-2.0.1.tgz#5214d7537a4d06a4a301c0cc262feb84188002e7" 1297 | 1298 | for-in@^1.0.1: 1299 | version "1.0.2" 1300 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1301 | 1302 | for-own@^0.1.4: 1303 | version "0.1.5" 1304 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1305 | dependencies: 1306 | for-in "^1.0.1" 1307 | 1308 | forever-agent@~0.6.1: 1309 | version "0.6.1" 1310 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1311 | 1312 | form-data@~2.1.1: 1313 | version "2.1.4" 1314 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1315 | dependencies: 1316 | asynckit "^0.4.0" 1317 | combined-stream "^1.0.5" 1318 | mime-types "^2.1.12" 1319 | 1320 | fs-readdir-recursive@^0.1.0: 1321 | version "0.1.2" 1322 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-0.1.2.tgz#315b4fb8c1ca5b8c47defef319d073dad3568059" 1323 | 1324 | fs.realpath@^1.0.0: 1325 | version "1.0.0" 1326 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1327 | 1328 | fsevents@^1.0.0: 1329 | version "1.1.1" 1330 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" 1331 | dependencies: 1332 | nan "^2.3.0" 1333 | node-pre-gyp "^0.6.29" 1334 | 1335 | fstream-ignore@^1.0.5: 1336 | version "1.0.5" 1337 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1338 | dependencies: 1339 | fstream "^1.0.0" 1340 | inherits "2" 1341 | minimatch "^3.0.0" 1342 | 1343 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1344 | version "1.0.11" 1345 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1346 | dependencies: 1347 | graceful-fs "^4.1.2" 1348 | inherits "~2.0.0" 1349 | mkdirp ">=0.5 0" 1350 | rimraf "2" 1351 | 1352 | gauge@~2.7.3: 1353 | version "2.7.4" 1354 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1355 | dependencies: 1356 | aproba "^1.0.3" 1357 | console-control-strings "^1.0.0" 1358 | has-unicode "^2.0.0" 1359 | object-assign "^4.1.0" 1360 | signal-exit "^3.0.0" 1361 | string-width "^1.0.1" 1362 | strip-ansi "^3.0.1" 1363 | wide-align "^1.1.0" 1364 | 1365 | get-stdin@^4.0.1: 1366 | version "4.0.1" 1367 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1368 | 1369 | getpass@^0.1.1: 1370 | version "0.1.7" 1371 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1372 | dependencies: 1373 | assert-plus "^1.0.0" 1374 | 1375 | glob-base@^0.3.0: 1376 | version "0.3.0" 1377 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1378 | dependencies: 1379 | glob-parent "^2.0.0" 1380 | is-glob "^2.0.0" 1381 | 1382 | glob-parent@^2.0.0: 1383 | version "2.0.0" 1384 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1385 | dependencies: 1386 | is-glob "^2.0.0" 1387 | 1388 | glob@^5.0.5: 1389 | version "5.0.15" 1390 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 1391 | dependencies: 1392 | inflight "^1.0.4" 1393 | inherits "2" 1394 | minimatch "2 || 3" 1395 | once "^1.3.0" 1396 | path-is-absolute "^1.0.0" 1397 | 1398 | glob@^7.0.3, glob@^7.0.5: 1399 | version "7.1.2" 1400 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1401 | dependencies: 1402 | fs.realpath "^1.0.0" 1403 | inflight "^1.0.4" 1404 | inherits "2" 1405 | minimatch "^3.0.4" 1406 | once "^1.3.0" 1407 | path-is-absolute "^1.0.0" 1408 | 1409 | globals@^9.0.0: 1410 | version "9.17.0" 1411 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 1412 | 1413 | globby@^5.0.0: 1414 | version "5.0.0" 1415 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1416 | dependencies: 1417 | array-union "^1.0.1" 1418 | arrify "^1.0.0" 1419 | glob "^7.0.3" 1420 | object-assign "^4.0.1" 1421 | pify "^2.0.0" 1422 | pinkie-promise "^2.0.0" 1423 | 1424 | got@^5.0.0: 1425 | version "5.7.1" 1426 | resolved "https://registry.yarnpkg.com/got/-/got-5.7.1.tgz#5f81635a61e4a6589f180569ea4e381680a51f35" 1427 | dependencies: 1428 | create-error-class "^3.0.1" 1429 | duplexer2 "^0.1.4" 1430 | is-redirect "^1.0.0" 1431 | is-retry-allowed "^1.0.0" 1432 | is-stream "^1.0.0" 1433 | lowercase-keys "^1.0.0" 1434 | node-status-codes "^1.0.0" 1435 | object-assign "^4.0.1" 1436 | parse-json "^2.1.0" 1437 | pinkie-promise "^2.0.0" 1438 | read-all-stream "^3.0.0" 1439 | readable-stream "^2.0.5" 1440 | timed-out "^3.0.0" 1441 | unzip-response "^1.0.2" 1442 | url-parse-lax "^1.0.0" 1443 | 1444 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1445 | version "4.1.11" 1446 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1447 | 1448 | "graceful-readlink@>= 1.0.0": 1449 | version "1.0.1" 1450 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1451 | 1452 | har-schema@^1.0.5: 1453 | version "1.0.5" 1454 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1455 | 1456 | har-validator@~4.2.1: 1457 | version "4.2.1" 1458 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1459 | dependencies: 1460 | ajv "^4.9.1" 1461 | har-schema "^1.0.5" 1462 | 1463 | has-ansi@^2.0.0: 1464 | version "2.0.0" 1465 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1466 | dependencies: 1467 | ansi-regex "^2.0.0" 1468 | 1469 | has-color@~0.1.0: 1470 | version "0.1.7" 1471 | resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f" 1472 | 1473 | has-flag@^2.0.0: 1474 | version "2.0.0" 1475 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1476 | 1477 | has-unicode@^2.0.0: 1478 | version "2.0.1" 1479 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1480 | 1481 | hawk@~3.1.3: 1482 | version "3.1.3" 1483 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1484 | dependencies: 1485 | boom "2.x.x" 1486 | cryptiles "2.x.x" 1487 | hoek "2.x.x" 1488 | sntp "1.x.x" 1489 | 1490 | hoek@2.x.x: 1491 | version "2.16.3" 1492 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1493 | 1494 | home-or-tmp@^2.0.0: 1495 | version "2.0.0" 1496 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1497 | dependencies: 1498 | os-homedir "^1.0.0" 1499 | os-tmpdir "^1.0.1" 1500 | 1501 | hosted-git-info@^2.1.4: 1502 | version "2.4.2" 1503 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67" 1504 | 1505 | http-signature@~1.1.0: 1506 | version "1.1.1" 1507 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1508 | dependencies: 1509 | assert-plus "^0.2.0" 1510 | jsprim "^1.2.2" 1511 | sshpk "^1.7.0" 1512 | 1513 | ignore-by-default@^1.0.0, ignore-by-default@^1.0.1: 1514 | version "1.0.1" 1515 | resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" 1516 | 1517 | immutable@3.8.x: 1518 | version "3.8.1" 1519 | resolved "https://registry.yarnpkg.com/immutable/-/immutable-3.8.1.tgz#200807f11ab0f72710ea485542de088075f68cd2" 1520 | 1521 | imurmurhash@^0.1.4: 1522 | version "0.1.4" 1523 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1524 | 1525 | indent-string@^2.1.0: 1526 | version "2.1.0" 1527 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1528 | dependencies: 1529 | repeating "^2.0.0" 1530 | 1531 | inflight@^1.0.4: 1532 | version "1.0.6" 1533 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1534 | dependencies: 1535 | once "^1.3.0" 1536 | wrappy "1" 1537 | 1538 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1: 1539 | version "2.0.3" 1540 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1541 | 1542 | ini@~1.3.0: 1543 | version "1.3.4" 1544 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1545 | 1546 | invariant@^2.2.0: 1547 | version "2.2.2" 1548 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1549 | dependencies: 1550 | loose-envify "^1.0.0" 1551 | 1552 | irregular-plurals@^1.0.0: 1553 | version "1.2.0" 1554 | resolved "https://registry.yarnpkg.com/irregular-plurals/-/irregular-plurals-1.2.0.tgz#38f299834ba8c00c30be9c554e137269752ff3ac" 1555 | 1556 | is-arrayish@^0.2.1: 1557 | version "0.2.1" 1558 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1559 | 1560 | is-binary-path@^1.0.0: 1561 | version "1.0.1" 1562 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1563 | dependencies: 1564 | binary-extensions "^1.0.0" 1565 | 1566 | is-buffer@^1.1.5: 1567 | version "1.1.5" 1568 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1569 | 1570 | is-builtin-module@^1.0.0: 1571 | version "1.0.0" 1572 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1573 | dependencies: 1574 | builtin-modules "^1.0.0" 1575 | 1576 | is-ci@^1.0.7: 1577 | version "1.0.10" 1578 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1579 | dependencies: 1580 | ci-info "^1.0.0" 1581 | 1582 | is-dotfile@^1.0.0: 1583 | version "1.0.3" 1584 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1585 | 1586 | is-equal-shallow@^0.1.3: 1587 | version "0.1.3" 1588 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1589 | dependencies: 1590 | is-primitive "^2.0.0" 1591 | 1592 | is-error@^2.2.0: 1593 | version "2.2.1" 1594 | resolved "https://registry.yarnpkg.com/is-error/-/is-error-2.2.1.tgz#684a96d84076577c98f4cdb40c6d26a5123bf19c" 1595 | 1596 | is-extendable@^0.1.1: 1597 | version "0.1.1" 1598 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1599 | 1600 | is-extglob@^1.0.0: 1601 | version "1.0.0" 1602 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1603 | 1604 | is-finite@^1.0.0, is-finite@^1.0.1: 1605 | version "1.0.2" 1606 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1607 | dependencies: 1608 | number-is-nan "^1.0.0" 1609 | 1610 | is-fullwidth-code-point@^1.0.0: 1611 | version "1.0.0" 1612 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1613 | dependencies: 1614 | number-is-nan "^1.0.0" 1615 | 1616 | is-generator-fn@^1.0.0: 1617 | version "1.0.0" 1618 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a" 1619 | 1620 | is-glob@^2.0.0, is-glob@^2.0.1: 1621 | version "2.0.1" 1622 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1623 | dependencies: 1624 | is-extglob "^1.0.0" 1625 | 1626 | is-npm@^1.0.0: 1627 | version "1.0.0" 1628 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 1629 | 1630 | is-number@^2.0.2, is-number@^2.1.0: 1631 | version "2.1.0" 1632 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1633 | dependencies: 1634 | kind-of "^3.0.2" 1635 | 1636 | is-obj@^1.0.0: 1637 | version "1.0.1" 1638 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1639 | 1640 | is-observable@^0.2.0: 1641 | version "0.2.0" 1642 | resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-0.2.0.tgz#b361311d83c6e5d726cabf5e250b0237106f5ae2" 1643 | dependencies: 1644 | symbol-observable "^0.2.2" 1645 | 1646 | is-plain-obj@^1.0.0: 1647 | version "1.1.0" 1648 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 1649 | 1650 | is-posix-bracket@^0.1.0: 1651 | version "0.1.1" 1652 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1653 | 1654 | is-primitive@^2.0.0: 1655 | version "2.0.0" 1656 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1657 | 1658 | is-promise@^2.1.0: 1659 | version "2.1.0" 1660 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1661 | 1662 | is-redirect@^1.0.0: 1663 | version "1.0.0" 1664 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 1665 | 1666 | is-retry-allowed@^1.0.0: 1667 | version "1.1.0" 1668 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 1669 | 1670 | is-stream@^1.0.0: 1671 | version "1.1.0" 1672 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1673 | 1674 | is-typedarray@~1.0.0: 1675 | version "1.0.0" 1676 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1677 | 1678 | is-url@^1.2.1: 1679 | version "1.2.2" 1680 | resolved "https://registry.yarnpkg.com/is-url/-/is-url-1.2.2.tgz#498905a593bf47cc2d9e7f738372bbf7696c7f26" 1681 | 1682 | is-utf8@^0.2.0: 1683 | version "0.2.1" 1684 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1685 | 1686 | isarray@1.0.0, isarray@~1.0.0: 1687 | version "1.0.0" 1688 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1689 | 1690 | isexe@^2.0.0: 1691 | version "2.0.0" 1692 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1693 | 1694 | isobject@^2.0.0: 1695 | version "2.1.0" 1696 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1697 | dependencies: 1698 | isarray "1.0.0" 1699 | 1700 | isstream@~0.1.2: 1701 | version "0.1.2" 1702 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1703 | 1704 | jodid25519@^1.0.0: 1705 | version "1.0.2" 1706 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 1707 | dependencies: 1708 | jsbn "~0.1.0" 1709 | 1710 | js-tokens@^3.0.0: 1711 | version "3.0.1" 1712 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 1713 | 1714 | jsbn@~0.1.0: 1715 | version "0.1.1" 1716 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1717 | 1718 | jsesc@^1.3.0: 1719 | version "1.3.0" 1720 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1721 | 1722 | jsesc@~0.5.0: 1723 | version "0.5.0" 1724 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1725 | 1726 | json-schema@0.2.3: 1727 | version "0.2.3" 1728 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1729 | 1730 | json-stable-stringify@^1.0.1: 1731 | version "1.0.1" 1732 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1733 | dependencies: 1734 | jsonify "~0.0.0" 1735 | 1736 | json-stream-stringify@1.5.x: 1737 | version "1.5.0" 1738 | resolved "https://registry.yarnpkg.com/json-stream-stringify/-/json-stream-stringify-1.5.0.tgz#10068275eabd5ea2768cf67f185a1202acd73331" 1739 | 1740 | json-stringify-safe@~5.0.1: 1741 | version "5.0.1" 1742 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1743 | 1744 | json5@^0.5.0: 1745 | version "0.5.1" 1746 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1747 | 1748 | jsonify@~0.0.0: 1749 | version "0.0.0" 1750 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1751 | 1752 | jsprim@^1.2.2: 1753 | version "1.4.0" 1754 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 1755 | dependencies: 1756 | assert-plus "1.0.0" 1757 | extsprintf "1.0.2" 1758 | json-schema "0.2.3" 1759 | verror "1.3.6" 1760 | 1761 | kind-of@^3.0.2: 1762 | version "3.2.2" 1763 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1764 | dependencies: 1765 | is-buffer "^1.1.5" 1766 | 1767 | last-line-stream@^1.0.0: 1768 | version "1.0.0" 1769 | resolved "https://registry.yarnpkg.com/last-line-stream/-/last-line-stream-1.0.0.tgz#d1b64d69f86ff24af2d04883a2ceee14520a5600" 1770 | dependencies: 1771 | through2 "^2.0.0" 1772 | 1773 | latest-version@^2.0.0: 1774 | version "2.0.0" 1775 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-2.0.0.tgz#56f8d6139620847b8017f8f1f4d78e211324168b" 1776 | dependencies: 1777 | package-json "^2.0.0" 1778 | 1779 | lazy-req@^1.1.0: 1780 | version "1.1.0" 1781 | resolved "https://registry.yarnpkg.com/lazy-req/-/lazy-req-1.1.0.tgz#bdaebead30f8d824039ce0ce149d4daa07ba1fac" 1782 | 1783 | load-json-file@^1.0.0, load-json-file@^1.1.0: 1784 | version "1.1.0" 1785 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1786 | dependencies: 1787 | graceful-fs "^4.1.2" 1788 | parse-json "^2.2.0" 1789 | pify "^2.0.0" 1790 | pinkie-promise "^2.0.0" 1791 | strip-bom "^2.0.0" 1792 | 1793 | lodash.debounce@^4.0.3: 1794 | version "4.0.8" 1795 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" 1796 | 1797 | lodash.difference@^4.3.0: 1798 | version "4.5.0" 1799 | resolved "https://registry.yarnpkg.com/lodash.difference/-/lodash.difference-4.5.0.tgz#9ccb4e505d486b91651345772885a2df27fd017c" 1800 | 1801 | lodash@^4.2.0: 1802 | version "4.17.4" 1803 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1804 | 1805 | log-symbols@^1.0.2: 1806 | version "1.0.2" 1807 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" 1808 | dependencies: 1809 | chalk "^1.0.0" 1810 | 1811 | loose-envify@^1.0.0: 1812 | version "1.3.1" 1813 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1814 | dependencies: 1815 | js-tokens "^3.0.0" 1816 | 1817 | loud-rejection@^1.0.0, loud-rejection@^1.2.0: 1818 | version "1.6.0" 1819 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 1820 | dependencies: 1821 | currently-unhandled "^0.4.1" 1822 | signal-exit "^3.0.0" 1823 | 1824 | lowercase-keys@^1.0.0: 1825 | version "1.0.0" 1826 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 1827 | 1828 | lru-cache@^4.0.1: 1829 | version "4.0.2" 1830 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e" 1831 | dependencies: 1832 | pseudomap "^1.0.1" 1833 | yallist "^2.0.0" 1834 | 1835 | map-obj@^1.0.0, map-obj@^1.0.1: 1836 | version "1.0.1" 1837 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 1838 | 1839 | matcher@^0.1.1: 1840 | version "0.1.2" 1841 | resolved "https://registry.yarnpkg.com/matcher/-/matcher-0.1.2.tgz#ef20cbde64c24c50cc61af5b83ee0b1b8ff00101" 1842 | dependencies: 1843 | escape-string-regexp "^1.0.4" 1844 | 1845 | max-timeout@^1.0.0: 1846 | version "1.0.0" 1847 | resolved "https://registry.yarnpkg.com/max-timeout/-/max-timeout-1.0.0.tgz#b68f69a2f99e0b476fd4cb23e2059ca750715e1f" 1848 | 1849 | md5-hex@^1.2.0, md5-hex@^1.3.0: 1850 | version "1.3.0" 1851 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-1.3.0.tgz#d2c4afe983c4370662179b8cad145219135046c4" 1852 | dependencies: 1853 | md5-o-matic "^0.1.1" 1854 | 1855 | md5-o-matic@^0.1.1: 1856 | version "0.1.1" 1857 | resolved "https://registry.yarnpkg.com/md5-o-matic/-/md5-o-matic-0.1.1.tgz#822bccd65e117c514fab176b25945d54100a03c3" 1858 | 1859 | meow@^3.5.0, meow@^3.7.0: 1860 | version "3.7.0" 1861 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 1862 | dependencies: 1863 | camelcase-keys "^2.0.0" 1864 | decamelize "^1.1.2" 1865 | loud-rejection "^1.0.0" 1866 | map-obj "^1.0.1" 1867 | minimist "^1.1.3" 1868 | normalize-package-data "^2.3.4" 1869 | object-assign "^4.0.1" 1870 | read-pkg-up "^1.0.1" 1871 | redent "^1.0.0" 1872 | trim-newlines "^1.0.0" 1873 | 1874 | micromatch@^2.1.5: 1875 | version "2.3.11" 1876 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1877 | dependencies: 1878 | arr-diff "^2.0.0" 1879 | array-unique "^0.2.1" 1880 | braces "^1.8.2" 1881 | expand-brackets "^0.1.4" 1882 | extglob "^0.3.1" 1883 | filename-regex "^2.0.0" 1884 | is-extglob "^1.0.0" 1885 | is-glob "^2.0.1" 1886 | kind-of "^3.0.2" 1887 | normalize-path "^2.0.1" 1888 | object.omit "^2.0.0" 1889 | parse-glob "^3.0.4" 1890 | regex-cache "^0.4.2" 1891 | 1892 | mime-db@~1.27.0: 1893 | version "1.27.0" 1894 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 1895 | 1896 | mime-types@^2.1.12, mime-types@~2.1.7: 1897 | version "2.1.15" 1898 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 1899 | dependencies: 1900 | mime-db "~1.27.0" 1901 | 1902 | "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 1903 | version "3.0.4" 1904 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1905 | dependencies: 1906 | brace-expansion "^1.1.7" 1907 | 1908 | minimist@0.0.8: 1909 | version "0.0.8" 1910 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1911 | 1912 | minimist@^1.1.0, minimist@^1.1.3, minimist@^1.2.0: 1913 | version "1.2.0" 1914 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1915 | 1916 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1: 1917 | version "0.5.1" 1918 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1919 | dependencies: 1920 | minimist "0.0.8" 1921 | 1922 | ms@0.7.1: 1923 | version "0.7.1" 1924 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 1925 | 1926 | ms@^0.7.1: 1927 | version "0.7.3" 1928 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.3.tgz#708155a5e44e33f5fd0fc53e81d0d40a91be1fff" 1929 | 1930 | multimatch@^2.1.0: 1931 | version "2.1.0" 1932 | resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" 1933 | dependencies: 1934 | array-differ "^1.0.0" 1935 | array-union "^1.0.1" 1936 | arrify "^1.0.0" 1937 | minimatch "^3.0.0" 1938 | 1939 | nan@^2.3.0: 1940 | version "2.6.2" 1941 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" 1942 | 1943 | node-pre-gyp@^0.6.29: 1944 | version "0.6.36" 1945 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz#db604112cb74e0d477554e9b505b17abddfab786" 1946 | dependencies: 1947 | mkdirp "^0.5.1" 1948 | nopt "^4.0.1" 1949 | npmlog "^4.0.2" 1950 | rc "^1.1.7" 1951 | request "^2.81.0" 1952 | rimraf "^2.6.1" 1953 | semver "^5.3.0" 1954 | tar "^2.2.1" 1955 | tar-pack "^3.4.0" 1956 | 1957 | node-status-codes@^1.0.0: 1958 | version "1.0.0" 1959 | resolved "https://registry.yarnpkg.com/node-status-codes/-/node-status-codes-1.0.0.tgz#5ae5541d024645d32a58fcddc9ceecea7ae3ac2f" 1960 | 1961 | nopt@^4.0.1: 1962 | version "4.0.1" 1963 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1964 | dependencies: 1965 | abbrev "1" 1966 | osenv "^0.1.4" 1967 | 1968 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 1969 | version "2.3.8" 1970 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" 1971 | dependencies: 1972 | hosted-git-info "^2.1.4" 1973 | is-builtin-module "^1.0.0" 1974 | semver "2 || 3 || 4 || 5" 1975 | validate-npm-package-license "^3.0.1" 1976 | 1977 | normalize-path@^2.0.1: 1978 | version "2.1.1" 1979 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1980 | dependencies: 1981 | remove-trailing-separator "^1.0.1" 1982 | 1983 | not-so-shallow@^0.1.3: 1984 | version "0.1.4" 1985 | resolved "https://registry.yarnpkg.com/not-so-shallow/-/not-so-shallow-0.1.4.tgz#e8c7f7b9c9b9f069594344368330cbcea387c3c7" 1986 | dependencies: 1987 | buffer-equals "^1.0.3" 1988 | 1989 | npmlog@^4.0.2: 1990 | version "4.1.0" 1991 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.0.tgz#dc59bee85f64f00ed424efb2af0783df25d1c0b5" 1992 | dependencies: 1993 | are-we-there-yet "~1.1.2" 1994 | console-control-strings "~1.1.0" 1995 | gauge "~2.7.3" 1996 | set-blocking "~2.0.0" 1997 | 1998 | number-is-nan@^1.0.0: 1999 | version "1.0.1" 2000 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2001 | 2002 | oauth-sign@~0.8.1: 2003 | version "0.8.2" 2004 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2005 | 2006 | object-assign@^4.0.1, object-assign@^4.1.0: 2007 | version "4.1.1" 2008 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2009 | 2010 | object.omit@^2.0.0: 2011 | version "2.0.1" 2012 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2013 | dependencies: 2014 | for-own "^0.1.4" 2015 | is-extendable "^0.1.1" 2016 | 2017 | observable-to-promise@^0.4.0: 2018 | version "0.4.0" 2019 | resolved "https://registry.yarnpkg.com/observable-to-promise/-/observable-to-promise-0.4.0.tgz#28afe71645308f2d41d71f47ad3fece1a377e52b" 2020 | dependencies: 2021 | is-observable "^0.2.0" 2022 | symbol-observable "^0.2.2" 2023 | 2024 | once@^1.3.0, once@^1.3.3: 2025 | version "1.4.0" 2026 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2027 | dependencies: 2028 | wrappy "1" 2029 | 2030 | onetime@^1.0.0: 2031 | version "1.1.0" 2032 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2033 | 2034 | option-chain@^0.1.0: 2035 | version "0.1.1" 2036 | resolved "https://registry.yarnpkg.com/option-chain/-/option-chain-0.1.1.tgz#e9b811e006f1c0f54802f28295bfc8970f8dcfbd" 2037 | dependencies: 2038 | object-assign "^4.0.1" 2039 | 2040 | os-homedir@^1.0.0: 2041 | version "1.0.2" 2042 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2043 | 2044 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2045 | version "1.0.2" 2046 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2047 | 2048 | osenv@^0.1.0, osenv@^0.1.4: 2049 | version "0.1.4" 2050 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2051 | dependencies: 2052 | os-homedir "^1.0.0" 2053 | os-tmpdir "^1.0.0" 2054 | 2055 | output-file-sync@^1.1.0: 2056 | version "1.1.2" 2057 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2058 | dependencies: 2059 | graceful-fs "^4.1.4" 2060 | mkdirp "^0.5.1" 2061 | object-assign "^4.1.0" 2062 | 2063 | package-hash@^1.1.0: 2064 | version "1.2.0" 2065 | resolved "https://registry.yarnpkg.com/package-hash/-/package-hash-1.2.0.tgz#003e56cd57b736a6ed6114cc2b81542672770e44" 2066 | dependencies: 2067 | md5-hex "^1.3.0" 2068 | 2069 | package-json@^2.0.0: 2070 | version "2.4.0" 2071 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-2.4.0.tgz#0d15bd67d1cbbddbb2ca222ff2edb86bcb31a8bb" 2072 | dependencies: 2073 | got "^5.0.0" 2074 | registry-auth-token "^3.0.1" 2075 | registry-url "^3.0.3" 2076 | semver "^5.1.0" 2077 | 2078 | parse-glob@^3.0.4: 2079 | version "3.0.4" 2080 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2081 | dependencies: 2082 | glob-base "^0.3.0" 2083 | is-dotfile "^1.0.0" 2084 | is-extglob "^1.0.0" 2085 | is-glob "^2.0.0" 2086 | 2087 | parse-json@^2.1.0, parse-json@^2.2.0: 2088 | version "2.2.0" 2089 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2090 | dependencies: 2091 | error-ex "^1.2.0" 2092 | 2093 | parse-ms@^0.1.0: 2094 | version "0.1.2" 2095 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-0.1.2.tgz#dd3fa25ed6c2efc7bdde12ad9b46c163aa29224e" 2096 | 2097 | parse-ms@^1.0.0: 2098 | version "1.0.1" 2099 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-1.0.1.tgz#56346d4749d78f23430ca0c713850aef91aa361d" 2100 | 2101 | path-exists@^1.0.0: 2102 | version "1.0.0" 2103 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-1.0.0.tgz#d5a8998eb71ef37a74c34eb0d9eba6e878eea081" 2104 | 2105 | path-exists@^2.0.0: 2106 | version "2.1.0" 2107 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2108 | dependencies: 2109 | pinkie-promise "^2.0.0" 2110 | 2111 | path-is-absolute@^1.0.0: 2112 | version "1.0.1" 2113 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2114 | 2115 | path-type@^1.0.0: 2116 | version "1.1.0" 2117 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2118 | dependencies: 2119 | graceful-fs "^4.1.2" 2120 | pify "^2.0.0" 2121 | pinkie-promise "^2.0.0" 2122 | 2123 | performance-now@^0.2.0: 2124 | version "0.2.0" 2125 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2126 | 2127 | pify@^2.0.0: 2128 | version "2.3.0" 2129 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2130 | 2131 | pinkie-promise@^1.0.0: 2132 | version "1.0.0" 2133 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-1.0.0.tgz#d1da67f5482563bb7cf57f286ae2822ecfbf3670" 2134 | dependencies: 2135 | pinkie "^1.0.0" 2136 | 2137 | pinkie-promise@^2.0.0: 2138 | version "2.0.1" 2139 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2140 | dependencies: 2141 | pinkie "^2.0.0" 2142 | 2143 | pinkie@^1.0.0: 2144 | version "1.0.0" 2145 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-1.0.0.tgz#5a47f28ba1015d0201bda7bf0f358e47bec8c7e4" 2146 | 2147 | pinkie@^2.0.0: 2148 | version "2.0.4" 2149 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2150 | 2151 | pkg-conf@^1.0.1: 2152 | version "1.1.3" 2153 | resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-1.1.3.tgz#378e56d6fd13e88bfb6f4a25df7a83faabddba5b" 2154 | dependencies: 2155 | find-up "^1.0.0" 2156 | load-json-file "^1.1.0" 2157 | object-assign "^4.0.1" 2158 | symbol "^0.2.1" 2159 | 2160 | pkg-dir@^1.0.0: 2161 | version "1.0.0" 2162 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 2163 | dependencies: 2164 | find-up "^1.0.0" 2165 | 2166 | plur@^1.0.0: 2167 | version "1.0.0" 2168 | resolved "https://registry.yarnpkg.com/plur/-/plur-1.0.0.tgz#db85c6814f5e5e5a3b49efc28d604fec62975156" 2169 | 2170 | plur@^2.0.0: 2171 | version "2.1.2" 2172 | resolved "https://registry.yarnpkg.com/plur/-/plur-2.1.2.tgz#7482452c1a0f508e3e344eaec312c91c29dc655a" 2173 | dependencies: 2174 | irregular-plurals "^1.0.0" 2175 | 2176 | power-assert-context-formatter@^1.0.4: 2177 | version "1.1.1" 2178 | resolved "https://registry.yarnpkg.com/power-assert-context-formatter/-/power-assert-context-formatter-1.1.1.tgz#edba352d3ed8a603114d667265acce60d689ccdf" 2179 | dependencies: 2180 | core-js "^2.0.0" 2181 | power-assert-context-traversal "^1.1.1" 2182 | 2183 | power-assert-context-traversal@^1.1.1: 2184 | version "1.1.1" 2185 | resolved "https://registry.yarnpkg.com/power-assert-context-traversal/-/power-assert-context-traversal-1.1.1.tgz#88cabca0d13b6359f07d3d3e8afa699264577ed9" 2186 | dependencies: 2187 | core-js "^2.0.0" 2188 | estraverse "^4.1.0" 2189 | 2190 | power-assert-renderer-assertion@^1.0.1: 2191 | version "1.1.1" 2192 | resolved "https://registry.yarnpkg.com/power-assert-renderer-assertion/-/power-assert-renderer-assertion-1.1.1.tgz#cbfc0e77e0086a8f96af3f1d8e67b9ee7e28ce98" 2193 | dependencies: 2194 | power-assert-renderer-base "^1.1.1" 2195 | power-assert-util-string-width "^1.1.1" 2196 | 2197 | power-assert-renderer-base@^1.1.1: 2198 | version "1.1.1" 2199 | resolved "https://registry.yarnpkg.com/power-assert-renderer-base/-/power-assert-renderer-base-1.1.1.tgz#96a650c6fd05ee1bc1f66b54ad61442c8b3f63eb" 2200 | 2201 | power-assert-renderer-diagram@^1.1.1: 2202 | version "1.1.2" 2203 | resolved "https://registry.yarnpkg.com/power-assert-renderer-diagram/-/power-assert-renderer-diagram-1.1.2.tgz#655f8f711935a9b6d541b86327654717c637a986" 2204 | dependencies: 2205 | core-js "^2.0.0" 2206 | power-assert-renderer-base "^1.1.1" 2207 | power-assert-util-string-width "^1.1.1" 2208 | stringifier "^1.3.0" 2209 | 2210 | power-assert-renderer-succinct@^1.0.1: 2211 | version "1.1.1" 2212 | resolved "https://registry.yarnpkg.com/power-assert-renderer-succinct/-/power-assert-renderer-succinct-1.1.1.tgz#c2a468b23822abd6f80e2aba5322347b09df476e" 2213 | dependencies: 2214 | core-js "^2.0.0" 2215 | power-assert-renderer-diagram "^1.1.1" 2216 | 2217 | power-assert-util-string-width@^1.1.1: 2218 | version "1.1.1" 2219 | resolved "https://registry.yarnpkg.com/power-assert-util-string-width/-/power-assert-util-string-width-1.1.1.tgz#be659eb7937fdd2e6c9a77268daaf64bd5b7c592" 2220 | dependencies: 2221 | eastasianwidth "^0.1.1" 2222 | 2223 | prepend-http@^1.0.1: 2224 | version "1.0.4" 2225 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 2226 | 2227 | preserve@^0.2.0: 2228 | version "0.2.0" 2229 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2230 | 2231 | pretty-ms@^0.2.1: 2232 | version "0.2.2" 2233 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-0.2.2.tgz#da879a682ff33a37011046f13d627f67c73b84f6" 2234 | dependencies: 2235 | parse-ms "^0.1.0" 2236 | 2237 | pretty-ms@^2.0.0: 2238 | version "2.1.0" 2239 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-2.1.0.tgz#4257c256df3fb0b451d6affaab021884126981dc" 2240 | dependencies: 2241 | is-finite "^1.0.1" 2242 | parse-ms "^1.0.0" 2243 | plur "^1.0.0" 2244 | 2245 | private@^0.1.6: 2246 | version "0.1.7" 2247 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2248 | 2249 | process-nextick-args@~1.0.6: 2250 | version "1.0.7" 2251 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2252 | 2253 | pseudomap@^1.0.1: 2254 | version "1.0.2" 2255 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2256 | 2257 | punycode@^1.4.1: 2258 | version "1.4.1" 2259 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2260 | 2261 | qs@~6.4.0: 2262 | version "6.4.0" 2263 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2264 | 2265 | randomatic@^1.1.3: 2266 | version "1.1.6" 2267 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 2268 | dependencies: 2269 | is-number "^2.0.2" 2270 | kind-of "^3.0.2" 2271 | 2272 | rc@^1.0.1, rc@^1.1.6, rc@^1.1.7: 2273 | version "1.2.1" 2274 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 2275 | dependencies: 2276 | deep-extend "~0.4.0" 2277 | ini "~1.3.0" 2278 | minimist "^1.2.0" 2279 | strip-json-comments "~2.0.1" 2280 | 2281 | read-all-stream@^3.0.0: 2282 | version "3.1.0" 2283 | resolved "https://registry.yarnpkg.com/read-all-stream/-/read-all-stream-3.1.0.tgz#35c3e177f2078ef789ee4bfafa4373074eaef4fa" 2284 | dependencies: 2285 | pinkie-promise "^2.0.0" 2286 | readable-stream "^2.0.0" 2287 | 2288 | read-pkg-up@^1.0.1: 2289 | version "1.0.1" 2290 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2291 | dependencies: 2292 | find-up "^1.0.0" 2293 | read-pkg "^1.0.0" 2294 | 2295 | read-pkg@^1.0.0: 2296 | version "1.1.0" 2297 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2298 | dependencies: 2299 | load-json-file "^1.0.0" 2300 | normalize-package-data "^2.3.2" 2301 | path-type "^1.0.0" 2302 | 2303 | readable-stream@^2.0.0, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5: 2304 | version "2.2.10" 2305 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.10.tgz#effe72bb7c884c0dd335e2379d526196d9d011ee" 2306 | dependencies: 2307 | core-util-is "~1.0.0" 2308 | inherits "~2.0.1" 2309 | isarray "~1.0.0" 2310 | process-nextick-args "~1.0.6" 2311 | safe-buffer "^5.0.1" 2312 | string_decoder "~1.0.0" 2313 | util-deprecate "~1.0.1" 2314 | 2315 | readdirp@^2.0.0: 2316 | version "2.1.0" 2317 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2318 | dependencies: 2319 | graceful-fs "^4.1.2" 2320 | minimatch "^3.0.2" 2321 | readable-stream "^2.0.2" 2322 | set-immediate-shim "^1.0.1" 2323 | 2324 | redent@^1.0.0: 2325 | version "1.0.0" 2326 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 2327 | dependencies: 2328 | indent-string "^2.1.0" 2329 | strip-indent "^1.0.1" 2330 | 2331 | regenerate@^1.2.1: 2332 | version "1.3.2" 2333 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 2334 | 2335 | regenerator-runtime@^0.10.0: 2336 | version "0.10.5" 2337 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2338 | 2339 | regenerator-transform@0.9.11: 2340 | version "0.9.11" 2341 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283" 2342 | dependencies: 2343 | babel-runtime "^6.18.0" 2344 | babel-types "^6.19.0" 2345 | private "^0.1.6" 2346 | 2347 | regex-cache@^0.4.2: 2348 | version "0.4.3" 2349 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2350 | dependencies: 2351 | is-equal-shallow "^0.1.3" 2352 | is-primitive "^2.0.0" 2353 | 2354 | regexpu-core@^2.0.0: 2355 | version "2.0.0" 2356 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2357 | dependencies: 2358 | regenerate "^1.2.1" 2359 | regjsgen "^0.2.0" 2360 | regjsparser "^0.1.4" 2361 | 2362 | registry-auth-token@^3.0.1: 2363 | version "3.3.1" 2364 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.1.tgz#fb0d3289ee0d9ada2cbb52af5dfe66cb070d3006" 2365 | dependencies: 2366 | rc "^1.1.6" 2367 | safe-buffer "^5.0.1" 2368 | 2369 | registry-url@^3.0.3: 2370 | version "3.1.0" 2371 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 2372 | dependencies: 2373 | rc "^1.0.1" 2374 | 2375 | regjsgen@^0.2.0: 2376 | version "0.2.0" 2377 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2378 | 2379 | regjsparser@^0.1.4: 2380 | version "0.1.5" 2381 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2382 | dependencies: 2383 | jsesc "~0.5.0" 2384 | 2385 | remove-trailing-separator@^1.0.1: 2386 | version "1.0.1" 2387 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 2388 | 2389 | repeat-element@^1.1.2: 2390 | version "1.1.2" 2391 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2392 | 2393 | repeat-string@^1.5.2: 2394 | version "1.6.1" 2395 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2396 | 2397 | repeating@^2.0.0: 2398 | version "2.0.1" 2399 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2400 | dependencies: 2401 | is-finite "^1.0.0" 2402 | 2403 | request@^2.65.0, request@^2.81.0: 2404 | version "2.81.0" 2405 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2406 | dependencies: 2407 | aws-sign2 "~0.6.0" 2408 | aws4 "^1.2.1" 2409 | caseless "~0.12.0" 2410 | combined-stream "~1.0.5" 2411 | extend "~3.0.0" 2412 | forever-agent "~0.6.1" 2413 | form-data "~2.1.1" 2414 | har-validator "~4.2.1" 2415 | hawk "~3.1.3" 2416 | http-signature "~1.1.0" 2417 | is-typedarray "~1.0.0" 2418 | isstream "~0.1.2" 2419 | json-stringify-safe "~5.0.1" 2420 | mime-types "~2.1.7" 2421 | oauth-sign "~0.8.1" 2422 | performance-now "^0.2.0" 2423 | qs "~6.4.0" 2424 | safe-buffer "^5.0.1" 2425 | stringstream "~0.0.4" 2426 | tough-cookie "~2.3.0" 2427 | tunnel-agent "^0.6.0" 2428 | uuid "^3.0.0" 2429 | 2430 | require-precompiled@^0.1.0: 2431 | version "0.1.0" 2432 | resolved "https://registry.yarnpkg.com/require-precompiled/-/require-precompiled-0.1.0.tgz#5a1b52eb70ebed43eb982e974c85ab59571e56fa" 2433 | 2434 | resolve-cwd@^1.0.0: 2435 | version "1.0.0" 2436 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-1.0.0.tgz#4eaeea41ed040d1702457df64a42b2b07d246f9f" 2437 | dependencies: 2438 | resolve-from "^2.0.0" 2439 | 2440 | resolve-from@^2.0.0: 2441 | version "2.0.0" 2442 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" 2443 | 2444 | restore-cursor@^1.0.1: 2445 | version "1.0.1" 2446 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 2447 | dependencies: 2448 | exit-hook "^1.0.0" 2449 | onetime "^1.0.0" 2450 | 2451 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: 2452 | version "2.6.1" 2453 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 2454 | dependencies: 2455 | glob "^7.0.5" 2456 | 2457 | safe-buffer@^5.0.1: 2458 | version "5.1.0" 2459 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.0.tgz#fe4c8460397f9eaaaa58e73be46273408a45e223" 2460 | 2461 | semver-diff@^2.0.0: 2462 | version "2.1.0" 2463 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 2464 | dependencies: 2465 | semver "^5.0.3" 2466 | 2467 | semver-regex@^1.0.0: 2468 | version "1.0.0" 2469 | resolved "https://registry.yarnpkg.com/semver-regex/-/semver-regex-1.0.0.tgz#92a4969065f9c70c694753d55248fc68f8f652c9" 2470 | 2471 | semver-truncate@^1.0.0: 2472 | version "1.1.2" 2473 | resolved "https://registry.yarnpkg.com/semver-truncate/-/semver-truncate-1.1.2.tgz#57f41de69707a62709a7e0104ba2117109ea47e8" 2474 | dependencies: 2475 | semver "^5.3.0" 2476 | 2477 | "semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0: 2478 | version "5.3.0" 2479 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2480 | 2481 | semver@^4.0.3: 2482 | version "4.3.6" 2483 | resolved "https://registry.yarnpkg.com/semver/-/semver-4.3.6.tgz#300bc6e0e86374f7ba61068b5b1ecd57fc6532da" 2484 | 2485 | set-blocking@~2.0.0: 2486 | version "2.0.0" 2487 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2488 | 2489 | set-immediate-shim@^1.0.1: 2490 | version "1.0.1" 2491 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2492 | 2493 | signal-exit@^3.0.0: 2494 | version "3.0.2" 2495 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2496 | 2497 | slash@^1.0.0: 2498 | version "1.0.0" 2499 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2500 | 2501 | slice-ansi@0.0.4: 2502 | version "0.0.4" 2503 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 2504 | 2505 | slide@^1.1.5: 2506 | version "1.1.6" 2507 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 2508 | 2509 | sntp@1.x.x: 2510 | version "1.0.9" 2511 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2512 | dependencies: 2513 | hoek "2.x.x" 2514 | 2515 | sort-keys@^1.1.1: 2516 | version "1.1.2" 2517 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" 2518 | dependencies: 2519 | is-plain-obj "^1.0.0" 2520 | 2521 | source-map-support@^0.4.0, source-map-support@^0.4.2: 2522 | version "0.4.15" 2523 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" 2524 | dependencies: 2525 | source-map "^0.5.6" 2526 | 2527 | source-map@^0.5.0, source-map@^0.5.6: 2528 | version "0.5.6" 2529 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 2530 | 2531 | spdx-correct@~1.0.0: 2532 | version "1.0.2" 2533 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2534 | dependencies: 2535 | spdx-license-ids "^1.0.2" 2536 | 2537 | spdx-expression-parse@~1.0.0: 2538 | version "1.0.4" 2539 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2540 | 2541 | spdx-license-ids@^1.0.2: 2542 | version "1.2.2" 2543 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2544 | 2545 | sshpk@^1.7.0: 2546 | version "1.13.0" 2547 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.0.tgz#ff2a3e4fd04497555fed97b39a0fd82fafb3a33c" 2548 | dependencies: 2549 | asn1 "~0.2.3" 2550 | assert-plus "^1.0.0" 2551 | dashdash "^1.12.0" 2552 | getpass "^0.1.1" 2553 | optionalDependencies: 2554 | bcrypt-pbkdf "^1.0.0" 2555 | ecc-jsbn "~0.1.1" 2556 | jodid25519 "^1.0.0" 2557 | jsbn "~0.1.0" 2558 | tweetnacl "~0.14.0" 2559 | 2560 | stack-utils@^0.4.0: 2561 | version "0.4.0" 2562 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-0.4.0.tgz#940cb82fccfa84e8ff2f3fdf293fe78016beccd1" 2563 | 2564 | string-width@^1.0.1, string-width@^1.0.2: 2565 | version "1.0.2" 2566 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2567 | dependencies: 2568 | code-point-at "^1.0.0" 2569 | is-fullwidth-code-point "^1.0.0" 2570 | strip-ansi "^3.0.0" 2571 | 2572 | string_decoder@~1.0.0: 2573 | version "1.0.1" 2574 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.1.tgz#62e200f039955a6810d8df0a33ffc0f013662d98" 2575 | dependencies: 2576 | safe-buffer "^5.0.1" 2577 | 2578 | stringifier@^1.3.0: 2579 | version "1.3.0" 2580 | resolved "https://registry.yarnpkg.com/stringifier/-/stringifier-1.3.0.tgz#def18342f6933db0f2dbfc9aa02175b448c17959" 2581 | dependencies: 2582 | core-js "^2.0.0" 2583 | traverse "^0.6.6" 2584 | type-name "^2.0.1" 2585 | 2586 | stringstream@~0.0.4: 2587 | version "0.0.5" 2588 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2589 | 2590 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2591 | version "3.0.1" 2592 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2593 | dependencies: 2594 | ansi-regex "^2.0.0" 2595 | 2596 | strip-ansi@~0.1.0: 2597 | version "0.1.1" 2598 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-0.1.1.tgz#39e8a98d044d150660abe4a6808acf70bb7bc991" 2599 | 2600 | strip-bom@^2.0.0: 2601 | version "2.0.0" 2602 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2603 | dependencies: 2604 | is-utf8 "^0.2.0" 2605 | 2606 | strip-indent@^1.0.1: 2607 | version "1.0.1" 2608 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 2609 | dependencies: 2610 | get-stdin "^4.0.1" 2611 | 2612 | strip-json-comments@~2.0.1: 2613 | version "2.0.1" 2614 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2615 | 2616 | supports-color@^2.0.0: 2617 | version "2.0.0" 2618 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2619 | 2620 | symbol-observable@^0.2.2: 2621 | version "0.2.4" 2622 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-0.2.4.tgz#95a83db26186d6af7e7a18dbd9760a2f86d08f40" 2623 | 2624 | symbol@^0.2.1: 2625 | version "0.2.3" 2626 | resolved "https://registry.yarnpkg.com/symbol/-/symbol-0.2.3.tgz#3b9873b8a901e47c6efe21526a3ac372ef28bbc7" 2627 | 2628 | tar-pack@^3.4.0: 2629 | version "3.4.0" 2630 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 2631 | dependencies: 2632 | debug "^2.2.0" 2633 | fstream "^1.0.10" 2634 | fstream-ignore "^1.0.5" 2635 | once "^1.3.3" 2636 | readable-stream "^2.1.4" 2637 | rimraf "^2.5.1" 2638 | tar "^2.2.1" 2639 | uid-number "^0.0.6" 2640 | 2641 | tar@^2.2.1: 2642 | version "2.2.1" 2643 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2644 | dependencies: 2645 | block-stream "*" 2646 | fstream "^1.0.2" 2647 | inherits "2" 2648 | 2649 | text-table@^0.2.0: 2650 | version "0.2.0" 2651 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2652 | 2653 | the-argv@^1.0.0: 2654 | version "1.0.0" 2655 | resolved "https://registry.yarnpkg.com/the-argv/-/the-argv-1.0.0.tgz#0084705005730dd84db755253c931ae398db9522" 2656 | 2657 | through2@^2.0.0: 2658 | version "2.0.3" 2659 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 2660 | dependencies: 2661 | readable-stream "^2.1.5" 2662 | xtend "~4.0.1" 2663 | 2664 | time-require@^0.1.2: 2665 | version "0.1.2" 2666 | resolved "https://registry.yarnpkg.com/time-require/-/time-require-0.1.2.tgz#f9e12cb370fc2605e11404582ba54ef5ca2b2d98" 2667 | dependencies: 2668 | chalk "^0.4.0" 2669 | date-time "^0.1.1" 2670 | pretty-ms "^0.2.1" 2671 | text-table "^0.2.0" 2672 | 2673 | timed-out@^3.0.0: 2674 | version "3.1.3" 2675 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-3.1.3.tgz#95860bfcc5c76c277f8f8326fd0f5b2e20eba217" 2676 | 2677 | to-fast-properties@^1.0.1: 2678 | version "1.0.3" 2679 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2680 | 2681 | tough-cookie@~2.3.0: 2682 | version "2.3.2" 2683 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 2684 | dependencies: 2685 | punycode "^1.4.1" 2686 | 2687 | traverse@^0.6.6: 2688 | version "0.6.6" 2689 | resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.6.tgz#cbdf560fd7b9af632502fed40f918c157ea97137" 2690 | 2691 | trim-newlines@^1.0.0: 2692 | version "1.0.0" 2693 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 2694 | 2695 | trim-right@^1.0.1: 2696 | version "1.0.1" 2697 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2698 | 2699 | tunnel-agent@^0.6.0: 2700 | version "0.6.0" 2701 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2702 | dependencies: 2703 | safe-buffer "^5.0.1" 2704 | 2705 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2706 | version "0.14.5" 2707 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2708 | 2709 | type-name@^2.0.1: 2710 | version "2.0.2" 2711 | resolved "https://registry.yarnpkg.com/type-name/-/type-name-2.0.2.tgz#efe7d4123d8ac52afff7f40c7e4dec5266008fb4" 2712 | 2713 | uid-number@^0.0.6: 2714 | version "0.0.6" 2715 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2716 | 2717 | uid2@0.0.3: 2718 | version "0.0.3" 2719 | resolved "https://registry.yarnpkg.com/uid2/-/uid2-0.0.3.tgz#483126e11774df2f71b8b639dcd799c376162b82" 2720 | 2721 | unique-temp-dir@^1.0.0: 2722 | version "1.0.0" 2723 | resolved "https://registry.yarnpkg.com/unique-temp-dir/-/unique-temp-dir-1.0.0.tgz#6dce95b2681ca003eebfb304a415f9cbabcc5385" 2724 | dependencies: 2725 | mkdirp "^0.5.1" 2726 | os-tmpdir "^1.0.1" 2727 | uid2 "0.0.3" 2728 | 2729 | unzip-response@^1.0.2: 2730 | version "1.0.2" 2731 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-1.0.2.tgz#b984f0877fc0a89c2c773cc1ef7b5b232b5b06fe" 2732 | 2733 | update-notifier@^1.0.0: 2734 | version "1.0.3" 2735 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-1.0.3.tgz#8f92c515482bd6831b7c93013e70f87552c7cf5a" 2736 | dependencies: 2737 | boxen "^0.6.0" 2738 | chalk "^1.0.0" 2739 | configstore "^2.0.0" 2740 | is-npm "^1.0.0" 2741 | latest-version "^2.0.0" 2742 | lazy-req "^1.1.0" 2743 | semver-diff "^2.0.0" 2744 | xdg-basedir "^2.0.0" 2745 | 2746 | url-parse-lax@^1.0.0: 2747 | version "1.0.0" 2748 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 2749 | dependencies: 2750 | prepend-http "^1.0.1" 2751 | 2752 | user-home@^1.1.1: 2753 | version "1.1.1" 2754 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 2755 | 2756 | util-deprecate@~1.0.1: 2757 | version "1.0.2" 2758 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2759 | 2760 | uuid@^2.0.1: 2761 | version "2.0.3" 2762 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 2763 | 2764 | uuid@^3.0.0: 2765 | version "3.0.1" 2766 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 2767 | 2768 | v8flags@^2.0.10: 2769 | version "2.1.1" 2770 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 2771 | dependencies: 2772 | user-home "^1.1.1" 2773 | 2774 | validate-npm-package-license@^3.0.1: 2775 | version "3.0.1" 2776 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2777 | dependencies: 2778 | spdx-correct "~1.0.0" 2779 | spdx-expression-parse "~1.0.0" 2780 | 2781 | verror@1.3.6: 2782 | version "1.3.6" 2783 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 2784 | dependencies: 2785 | extsprintf "1.0.2" 2786 | 2787 | which@^1.2.9: 2788 | version "1.2.14" 2789 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 2790 | dependencies: 2791 | isexe "^2.0.0" 2792 | 2793 | wide-align@^1.1.0: 2794 | version "1.1.2" 2795 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 2796 | dependencies: 2797 | string-width "^1.0.2" 2798 | 2799 | widest-line@^1.0.0: 2800 | version "1.0.0" 2801 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-1.0.0.tgz#0c09c85c2a94683d0d7eaf8ee097d564bf0e105c" 2802 | dependencies: 2803 | string-width "^1.0.1" 2804 | 2805 | wrappy@1: 2806 | version "1.0.2" 2807 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2808 | 2809 | write-file-atomic@^1.1.2, write-file-atomic@^1.1.4: 2810 | version "1.3.4" 2811 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f" 2812 | dependencies: 2813 | graceful-fs "^4.1.11" 2814 | imurmurhash "^0.1.4" 2815 | slide "^1.1.5" 2816 | 2817 | write-json-file@^1.1.0: 2818 | version "1.2.0" 2819 | resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-1.2.0.tgz#2d5dfe96abc3c889057c93971aa4005efb548134" 2820 | dependencies: 2821 | graceful-fs "^4.1.2" 2822 | mkdirp "^0.5.1" 2823 | object-assign "^4.0.1" 2824 | pify "^2.0.0" 2825 | pinkie-promise "^2.0.0" 2826 | sort-keys "^1.1.1" 2827 | write-file-atomic "^1.1.2" 2828 | 2829 | write-pkg@^1.0.0: 2830 | version "1.0.0" 2831 | resolved "https://registry.yarnpkg.com/write-pkg/-/write-pkg-1.0.0.tgz#aeb8aa9d4d788e1d893dfb0854968b543a919f57" 2832 | dependencies: 2833 | write-json-file "^1.1.0" 2834 | 2835 | xdg-basedir@^2.0.0: 2836 | version "2.0.0" 2837 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-2.0.0.tgz#edbc903cc385fc04523d966a335504b5504d1bd2" 2838 | dependencies: 2839 | os-homedir "^1.0.0" 2840 | 2841 | xtend@^4.0.0, xtend@~4.0.1: 2842 | version "4.0.1" 2843 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2844 | 2845 | yallist@^2.0.0: 2846 | version "2.1.2" 2847 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 2848 | --------------------------------------------------------------------------------