├── .gitignore ├── .travis.yml ├── README.md ├── index.d.ts ├── index.js ├── package-lock.json ├── package.json ├── tests ├── json-patch-tests.json ├── standard-tests.js └── test.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (http://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # Typescript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | 45 | # Optional eslint cache 46 | .eslintcache 47 | 48 | # Optional REPL history 49 | .node_repl_history 50 | 51 | # Output of 'npm pack' 52 | *.tgz 53 | 54 | # Yarn Integrity file 55 | .yarn-integrity 56 | 57 | # dotenv environment variables file 58 | .env 59 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: required 3 | dist: trusty 4 | before_script: 5 | - npm install 6 | - 'export PATH=$PWD/node_modules/.bin:$PATH' 7 | node_js: 8 8 | script: 9 | - npm run test -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 🎃 json-squash 2 | 3 | > Squash JSON-Patch operations patch into a mathematically equivalent smaller patch. Shines the most for array splice and shift patches. Removing a single element from an array, whererver it is in the array, will produce a single operation 🙌 4 | 5 | [![Build Status](https://travis-ci.org/alshakero/json-squash.svg?branch=master)](https://travis-ci.org/alshakero/json-squash) 6 | 7 | ## Installation 8 | 9 | Using npm: 10 | ```sh 11 | npm install json-squash --save 12 | ``` 13 | 14 | Using yarn: 15 | ```sh 16 | yarn add json-squash 17 | ``` 18 | 19 | 20 | ## Usage: 21 | 22 | ```js 23 | const squash = require('json-squash'); 24 | // or 25 | import squash from 'json-squash'; 26 | 27 | const patch = [ 28 | { "op": "add", "path": "/a/b/c", "value": 1}, 29 | { "op": "replace", "path": "/a/b/c", "value": 12 }, 30 | { "op": "replace", "path": "/a/b/c", "value": 123 }, 31 | { "op": "replace", "path": "/a/b/c", "value": 1234 }, 32 | { "op": "move", "from": "/a/b/c", "path": "/a/b/d" }, 33 | { "op": "replace", "path": "/a/b/d", "value": 12345 }, 34 | ]; 35 | 36 | const squashed = squash(patch); 37 | // ==> [{ "op": "add", "path": "/a/b/d", "value": 12345 }] 38 | 39 | 40 | // array shift 41 | const obj = {arr: [1, 2, 3, 4, 5, 6]}; 42 | obj.arr.shift(); 43 | 44 | // fast-json-patch diff result 45 | const patch = [ 46 | {op: "replace", path: "/arr/0", value: 2}, 47 | {op: "replace", path: "/arr/1", value: 3}, 48 | {op: "replace", path: "/arr/2", value: 4}, 49 | {op: "replace", path: "/arr/3", value: 5}, 50 | {op: "replace", path: "/arr/4", value: 6}, 51 | {op: "remove", path: "/arr/5"} 52 | ]; 53 | 54 | const squashed = squash(patch); 55 | // ==> [{ "op": "remove", "path": "arr/0" }] 56 | ``` 57 | 58 | ## Testing 59 | 60 | json-squash uses [ava](https://github.com/avajs/ava) test runner. To test, 61 | ```sh 62 | git clone https://github.com/alshakero/json-squash.git 63 | cd json-squash 64 | npm install 65 | npm test 66 | ``` 67 | 68 | ## Contributing 69 | 70 | - Fork this repo. 71 | - Run `npm install`. 72 | - Run tests before any modifications to make sure they run. 73 | - Modify. 74 | - Test again. Please add suites if your modifications add new functionality. 75 | - Send a PR request. 76 | - Receive big thanks! 77 | 78 | ## Author 79 | 80 | Omar Alshaker 81 | 82 | ## License 83 | MIT 2017 84 | -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- 1 | export type Operation = AddOperation | RemoveOperation | ReplaceOperation | MoveOperation | CopyOperation | TestOperation; 2 | 3 | interface BaseOperation { 4 | path: string; 5 | } 6 | interface AddOperation extends BaseOperation { 7 | op: 'add'; 8 | value: T; 9 | } 10 | interface RemoveOperation extends BaseOperation { 11 | op: 'remove'; 12 | } 13 | interface ReplaceOperation extends BaseOperation { 14 | op: 'replace'; 15 | value: T; 16 | } 17 | interface MoveOperation extends BaseOperation { 18 | op: 'move'; 19 | from: string; 20 | } 21 | interface CopyOperation extends BaseOperation { 22 | op: 'copy'; 23 | from: string; 24 | } 25 | interface TestOperation extends BaseOperation { 26 | op: 'test'; 27 | value: T; 28 | } 29 | /** 30 | * Squashes a json-patch patch into a smaller one if possible. 31 | * @param {Array} patch Your input patch 32 | * @returns {Array} The squash patch 33 | */ 34 | export function squash(patch: Operation[]): Operation[]; 35 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * json-squash 3 | * @module json-squash 4 | * @license MIT 5 | * @author Omar Alshaker 6 | */ 7 | const clone = require('clone'); 8 | 9 | function isArraySplice(patch) { 10 | // check of indices are numerical and sequential 11 | for (let i = 0; i < patch.length - 1; i++) { 12 | const op = patch[i]; 13 | const nextOp = patch[i + 1]; 14 | 15 | let hereIndex = op.path.match(/\d+$/); 16 | if (!hereIndex) return false; 17 | 18 | let nextIndex = nextOp.path.match(/\d+$/); 19 | if (!nextIndex) return false; 20 | 21 | hereIndex = Number(hereIndex); 22 | nextIndex = Number(nextIndex); 23 | 24 | if (Math.abs(hereIndex - nextIndex) !== 1) { 25 | return false; 26 | } 27 | 28 | // all the operations from start to end INCONCLUSIVE should be replace 29 | if (i > 0 && i < patch.length - 2 && op.op !== 'replace') { 30 | return false; 31 | } 32 | } 33 | 34 | // determine where the remove is (some diffs put it in the end, some in the start) 35 | if (patch[0].op === 'remove') { 36 | return patch[patch.length - 1].path; 37 | } 38 | 39 | if (patch[patch.length - 1].op === 'remove') { 40 | return patch[0].path; 41 | } 42 | } 43 | 44 | function isReplaceOrAdd(operation) { 45 | return operation.op == 'add' || operation.op == 'replace'; 46 | } 47 | /** 48 | * Squashes a json-patch patch into a smaller one if possible 49 | * @param {Array} patch Your input patch 50 | * @returns {Array} The squash patch 51 | */ 52 | function squash(patch) { 53 | if (patch.length < 2) { 54 | return patch; 55 | } 56 | 57 | let isSingleElementSplice = isArraySplice(patch); 58 | if (isSingleElementSplice) { 59 | return [{ op: 'remove', path: isSingleElementSplice }]; 60 | } 61 | 62 | const patchDictionary = {}; 63 | const resultPatch = []; 64 | let index = Date.now() + 1; 65 | patch.forEach(function(operation) { 66 | switch (operation.op) { 67 | case 'add': 68 | // those `add`s with `-` index can have duplicates 69 | if (operation.path.endsWith('-')) { 70 | // make them non-overwritable 71 | index++; 72 | patchDictionary[operation.path + index] = operation; 73 | } else { 74 | patchDictionary[operation.path] = operation; 75 | } 76 | break; 77 | case 'replace': 78 | // if this replace came after an add, change it to an add and merge them 79 | if ( 80 | patchDictionary[operation.path] && 81 | patchDictionary[operation.path].op == 'add' 82 | ) { 83 | operation.op = 'add'; 84 | } 85 | patchDictionary[operation.path] = operation; 86 | break; 87 | case 'move': 88 | // do we have a value added recently? 89 | if ( 90 | patchDictionary[operation.from] && 91 | isReplaceOrAdd(patchDictionary[operation.from]) 92 | ) { 93 | // discard the move operation, and change the add's operation path to the move's operation path 94 | patchDictionary[operation.from].path = operation.path; 95 | patchDictionary[operation.path] = patchDictionary[operation.from]; 96 | delete patchDictionary[operation.from]; 97 | break; 98 | } else { 99 | // just keep move op as is 100 | patchDictionary[operation.path] = operation; 101 | } 102 | break; 103 | case 'copy': 104 | if ( 105 | // do we have the source value in history ? 106 | patchDictionary[operation.from] && 107 | isReplaceOrAdd(patchDictionary[operation.from]) 108 | ) { 109 | // do we have the destination value in history ? 110 | if ( 111 | patchDictionary[operation.path] && 112 | isReplaceOrAdd(patchDictionary[operation.path]) 113 | ) { 114 | // change the original operation to have the copied value and discard copy operation 115 | patchDictionary[operation.path].value = clone( 116 | patchDictionary[operation.from].value 117 | ); 118 | } else { 119 | // we have source value, but not destination, convert it to an add, it's faster 120 | patchDictionary[operation.path] = { 121 | op: 'add', 122 | path: operation.path, 123 | value: clone(patchDictionary[operation.from].value) 124 | }; 125 | } 126 | } else { 127 | // we neither have source or destination values, just add operation as is 128 | patchDictionary[operation.path] = operation; 129 | } 130 | break; 131 | case 'test': 132 | /* when a test operation comes, we need to preserve all operations to this point, 133 | e.g: add + replace = one add with the new value 134 | but add + test + replace = add + test + replace, we shouldn't merge add + replace in this case 135 | and that's why we give the path a unique key to preserve it */ 136 | if (patchDictionary[operation.path]) { 137 | ++index; 138 | patchDictionary[operation.path + index] = 139 | patchDictionary[operation.path]; 140 | delete patchDictionary[operation.path]; 141 | } 142 | // we don't want to overwrite (or be overwritten by) other operations with test operation, so we give a pseudo key 143 | ++index; 144 | patchDictionary[operation.path + index] = operation; // push as is 145 | break; 146 | case 'remove': 147 | // do we have it in history 148 | if (patchDictionary[operation.path]) { 149 | // if have an add, copy or move in history, they (op + remove) equalize to nothing 150 | if ( 151 | ['replace', 'add', 'copy', 'replace'].indexOf( 152 | patchDictionary[operation.path].op 153 | ) > -1 154 | ) { 155 | patchDictionary[operation.path] = operation; // push as is 156 | } 157 | } else { 158 | // we don't have it in history 159 | patchDictionary[operation.path] = operation; // push as is 160 | break; 161 | } 162 | default: 163 | patchDictionary[operation.path] = operation; // push as is 164 | break; 165 | } 166 | }); 167 | const newPatches = []; 168 | for (let path in patchDictionary) { 169 | newPatches.push(patchDictionary[path]); 170 | } 171 | return newPatches; 172 | } 173 | if (typeof module !== 'undefined') { 174 | Object.defineProperty(exports, '__esModule', { value: true }); 175 | module.exports = squash; 176 | module.exports.default = squash; 177 | } 178 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "json-squash", 3 | "version": "0.0.3", 4 | "description": "Squash JSON-Patch operations patch into a mathematically equivalent smaller patch", 5 | "main": "index.js", 6 | "typings": "index.d.ts", 7 | "scripts": { 8 | "test": "ava -v" 9 | }, 10 | "repository": { 11 | "type": "git", 12 | "url": "https://github.com/alshakero/json-squash.git" 13 | }, 14 | "keywords": [ 15 | "json-patch" 16 | ], 17 | "ava": { 18 | "files": [ 19 | "tests/test.js", 20 | "tests/standard-tests.js" 21 | ] 22 | }, 23 | "author": "Omar Alshaker", 24 | "license": "MIT", 25 | "devDependencies": { 26 | "ava": "^0.19.1", 27 | "fast-json-patch": "^1.1.10", 28 | "jsonpatcherproxy": "0.0.9" 29 | }, 30 | "dependencies": { 31 | "clone": "^2.1.1" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /tests/json-patch-tests.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "comment": "4.1. add with missing object", 4 | "doc": { 5 | "q": { 6 | "bar": 2 7 | } 8 | }, 9 | "patch": [ 10 | { 11 | "op": "add", 12 | "path": "/a/b", 13 | "value": 1 14 | } 15 | ], 16 | "error": "path /a does not exist -- missing objects are not created recursively" 17 | }, 18 | { 19 | "comment": "A.1. Adding an Object Member", 20 | "doc": { 21 | "foo": "bar" 22 | }, 23 | "patch": [ 24 | { 25 | "op": "add", 26 | "path": "/baz", 27 | "value": "qux" 28 | } 29 | ], 30 | "expected": { 31 | "baz": "qux", 32 | "foo": "bar" 33 | } 34 | }, 35 | { 36 | "comment": "A.2. Adding an Array Element", 37 | "doc": { 38 | "foo": [ 39 | "bar", 40 | "baz" 41 | ] 42 | }, 43 | "patch": [ 44 | { 45 | "op": "add", 46 | "path": "/foo/1", 47 | "value": "qux" 48 | } 49 | ], 50 | "expected": { 51 | "foo": [ 52 | "bar", 53 | "qux", 54 | "baz" 55 | ] 56 | } 57 | }, 58 | { 59 | "comment": "A.3. Removing an Object Member", 60 | "doc": { 61 | "baz": "qux", 62 | "foo": "bar" 63 | }, 64 | "patch": [ 65 | { 66 | "op": "remove", 67 | "path": "/baz" 68 | } 69 | ], 70 | "expected": { 71 | "foo": "bar" 72 | } 73 | }, 74 | { 75 | "comment": "A.4. Removing an Array Element", 76 | "doc": { 77 | "foo": [ 78 | "bar", 79 | "qux", 80 | "baz" 81 | ] 82 | }, 83 | "patch": [ 84 | { 85 | "op": "remove", 86 | "path": "/foo/1" 87 | } 88 | ], 89 | "expected": { 90 | "foo": [ 91 | "bar", 92 | "baz" 93 | ] 94 | } 95 | }, 96 | { 97 | "comment": "A.5. Replacing a Value", 98 | "doc": { 99 | "baz": "qux", 100 | "foo": "bar" 101 | }, 102 | "patch": [ 103 | { 104 | "op": "replace", 105 | "path": "/baz", 106 | "value": "boo" 107 | } 108 | ], 109 | "expected": { 110 | "baz": "boo", 111 | "foo": "bar" 112 | } 113 | }, 114 | { 115 | "comment": "A.6. Moving a Value", 116 | "doc": { 117 | "foo": { 118 | "bar": "baz", 119 | "waldo": "fred" 120 | }, 121 | "qux": { 122 | "corge": "grault" 123 | } 124 | }, 125 | "patch": [ 126 | { 127 | "op": "move", 128 | "from": "/foo/waldo", 129 | "path": "/qux/thud" 130 | } 131 | ], 132 | "expected": { 133 | "foo": { 134 | "bar": "baz" 135 | }, 136 | "qux": { 137 | "corge": "grault", 138 | "thud": "fred" 139 | } 140 | } 141 | }, 142 | { 143 | "comment": "A.7. Moving an Array Element", 144 | "doc": { 145 | "foo": [ 146 | "all", 147 | "grass", 148 | "cows", 149 | "eat" 150 | ] 151 | }, 152 | "patch": [ 153 | { 154 | "op": "move", 155 | "from": "/foo/1", 156 | "path": "/foo/3" 157 | } 158 | ], 159 | "expected": { 160 | "foo": [ 161 | "all", 162 | "cows", 163 | "eat", 164 | "grass" 165 | ] 166 | } 167 | }, 168 | { 169 | "comment": "A.8. Testing a Value: Success", 170 | "doc": { 171 | "baz": "qux", 172 | "foo": [ 173 | "a", 174 | 2, 175 | "c" 176 | ] 177 | }, 178 | "patch": [ 179 | { 180 | "op": "test", 181 | "path": "/baz", 182 | "value": "qux" 183 | }, 184 | { 185 | "op": "test", 186 | "path": "/foo/1", 187 | "value": 2 188 | } 189 | ], 190 | "expected": { 191 | "baz": "qux", 192 | "foo": [ 193 | "a", 194 | 2, 195 | "c" 196 | ] 197 | } 198 | }, 199 | { 200 | "comment": "A.9. Testing a Value: Error", 201 | "doc": { 202 | "baz": "qux" 203 | }, 204 | "patch": [ 205 | { 206 | "op": "test", 207 | "path": "/baz", 208 | "value": "bar" 209 | } 210 | ], 211 | "error": "string not equivalent" 212 | }, 213 | { 214 | "comment": "A.10. Adding a nested Member Object", 215 | "doc": { 216 | "foo": "bar" 217 | }, 218 | "patch": [ 219 | { 220 | "op": "add", 221 | "path": "/child", 222 | "value": { 223 | "grandchild": {} 224 | } 225 | } 226 | ], 227 | "expected": { 228 | "foo": "bar", 229 | "child": { 230 | "grandchild": {} 231 | } 232 | } 233 | }, 234 | { 235 | "comment": "A.11. Ignoring Unrecognized Elements", 236 | "doc": { 237 | "foo": "bar" 238 | }, 239 | "patch": [ 240 | { 241 | "op": "add", 242 | "path": "/baz", 243 | "value": "qux", 244 | "xyz": 123 245 | } 246 | ], 247 | "expected": { 248 | "foo": "bar", 249 | "baz": "qux" 250 | } 251 | }, 252 | { 253 | "comment": "A.12. Adding to a Non-existent Target", 254 | "doc": { 255 | "foo": "bar" 256 | }, 257 | "patch": [ 258 | { 259 | "op": "add", 260 | "path": "/baz/bat", 261 | "value": "qux" 262 | } 263 | ], 264 | "error": "add to a non-existent target" 265 | }, 266 | { 267 | "comment": "A.13 Invalid JSON Patch Document", 268 | "doc": { 269 | "foo": "bar" 270 | }, 271 | "patch": [ 272 | { 273 | "op": "add", 274 | "path": "/baz", 275 | "value": "qux", 276 | "op": "remove" 277 | } 278 | ], 279 | "error": "operation has two 'op' members", 280 | "disabled": true 281 | }, 282 | { 283 | "comment": "A.14. ~ Escape Ordering", 284 | "doc": { 285 | "/": 9, 286 | "~1": 10 287 | }, 288 | "patch": [ 289 | { 290 | "op": "test", 291 | "path": "/~01", 292 | "value": 10 293 | } 294 | ], 295 | "expected": { 296 | "/": 9, 297 | "~1": 10 298 | } 299 | }, 300 | { 301 | "comment": "A.15. Comparing Strings and Numbers", 302 | "doc": { 303 | "/": 9, 304 | "~1": 10 305 | }, 306 | "patch": [ 307 | { 308 | "op": "test", 309 | "path": "/~01", 310 | "value": "10" 311 | } 312 | ], 313 | "error": "number is not equal to string" 314 | }, 315 | { 316 | "comment": "A.16. Adding an Array Value", 317 | "doc": { 318 | "foo": [ 319 | "bar" 320 | ] 321 | }, 322 | "patch": [ 323 | { 324 | "op": "add", 325 | "path": "/foo/-", 326 | "value": [ 327 | "abc", 328 | "def" 329 | ] 330 | } 331 | ], 332 | "expected": { 333 | "foo": [ 334 | "bar", 335 | [ 336 | "abc", 337 | "def" 338 | ] 339 | ] 340 | } 341 | } 342 | ] -------------------------------------------------------------------------------- /tests/standard-tests.js: -------------------------------------------------------------------------------- 1 | import test from 'ava'; 2 | import squash from '..'; 3 | import jsonpatch from 'fast-json-patch'; 4 | import clone from 'clone'; 5 | // TEST using the specs, with and without squashing, this might be useless because of patches are single operation, but it certainly doesn't harm 6 | const rawTests = require('./json-patch-tests').filter( 7 | test => !test.disabled && test.expected 8 | ); 9 | 10 | // test without squashing 11 | const tests = clone(rawTests); 12 | tests.forEach(suite => { 13 | var suiteName = suite.comment || suite.error || JSON.stringify(suite.patch); 14 | test(suiteName, t => { 15 | jsonpatch.applyPatch(suite.doc, suite.patch); 16 | t.deepEqual(suite.doc, suite.expected); 17 | }); 18 | }); 19 | 20 | // TEST using the specs, with squashing now 21 | const testsAgain = clone(rawTests); 22 | testsAgain.forEach(suite => { 23 | var suiteName = suite.comment || suite.error || JSON.stringify(suite.patch); 24 | test(suiteName, t => { 25 | const squashed = squash(suite.patch); 26 | jsonpatch.applyPatch(suite.doc, squashed); 27 | t.deepEqual(suite.doc, suite.expected); 28 | }); 29 | }); 30 | -------------------------------------------------------------------------------- /tests/test.js: -------------------------------------------------------------------------------- 1 | /** 2 | * json-squash 3 | * @module json-squash 4 | * @license MIT 5 | * @author Omar Alshaker 6 | */ 7 | 8 | import test from 'ava'; 9 | import squash from '..'; 10 | import jsonpatch from 'fast-json-patch'; 11 | import clone from 'clone'; 12 | import JSONPatcherProxy from 'jsonpatcherproxy'; 13 | 14 | test('Empty patch should be returned', t => { 15 | const patch = []; 16 | const squashed = squash(patch); 17 | t.deepEqual(squashed, []); 18 | }); 19 | test("single operations shouldn't be squashed", t => { 20 | ['add', 'replace', 'remove', 'test', 'copy', 'move'].forEach((op, i) => { 21 | if (op == 'copy' || op == 'move') { 22 | var patch = [{ op, path: '/path/' + i, from: '/fromPath/' + i }]; 23 | } else { 24 | var patch = [{ op, path: '/path/' + i, value: i }]; 25 | } 26 | const squashed = squash(patch); 27 | t.deepEqual(squashed, patch); 28 | }); 29 | }); 30 | test('Multiple adds should be collapsed to the last add', t => { 31 | const patch = []; 32 | for (let i = 0; i <= 50; i++) { 33 | patch.push({ op: 'add', path: '/path/1', value: i }); 34 | } 35 | const squashed = squash(patch); 36 | t.deepEqual(squashed, [{ op: 'add', path: '/path/1', value: 50 }]); 37 | }); 38 | test("`add` with `-` path shouldn't be squashed", t => { 39 | const patch = []; 40 | for (let i = 0; i <= 50; i++) { 41 | patch.push({ op: 'add', path: '/path/-', value: i }); 42 | } 43 | const squashed = squash(patch); 44 | t.deepEqual(squashed, patch); 45 | }); 46 | test('Multiple replaces should be collapsed to the last replace', t => { 47 | const patch = []; 48 | for (let i = 0; i <= 50; i++) { 49 | patch.push({ op: 'replace', path: '/path/1', value: i }); 50 | } 51 | const squashed = squash(patch); 52 | t.deepEqual(squashed, [{ op: 'replace', path: '/path/1', value: 50 }]); 53 | }); 54 | test('`add` then `replace` should be squashed to only `add` with the new value', t => { 55 | const patch = []; 56 | patch.push({ op: 'add', path: '/path/2', value: 'addValue' }); 57 | patch.push({ op: 'replace', path: '/path/2', value: 'replaceValue' }); 58 | 59 | const squashed = squash(patch); 60 | t.deepEqual(squashed, [ 61 | { op: 'add', path: '/path/2', value: 'replaceValue' } 62 | ]); 63 | }); 64 | test('`add` operation should discard all precedent (`replace`, `copy`, `remove`) operations', t => { 65 | const patch = []; 66 | patch.push({ op: 'replace', path: '/path/2', value: 'addValue' }); 67 | patch.push({ op: 'replace', path: '/path/2', value: 'replaceValue' }); 68 | patch.push({ op: 'remove', path: '/path/2' }); 69 | patch.push({ op: 'copy', path: '/path/2', from: '/path/3' }); 70 | patch.push({ op: 'add', path: '/path/2', value: 'finalValue' }); 71 | 72 | const squashed = squash(patch); 73 | t.deepEqual(squashed, [{ op: 'add', path: '/path/2', value: 'finalValue' }]); 74 | }); 75 | test('`remove` operation should remove precedent `add` operation', t => { 76 | const patch = []; 77 | patch.push({ op: 'add', path: '/path/2', value: 'someValue' }); 78 | patch.push({ op: 'remove', path: '/path/2' }); 79 | const squashed = squash(patch); 80 | t.deepEqual(squashed, [{ op: 'remove', path: '/path/2' }]); 81 | }); 82 | test('`remove` operation should delete precedent `replace` operation', t => { 83 | const patch = []; 84 | patch.push({ op: 'replace', path: '/path/2', value: 'addValue' }); 85 | patch.push({ op: 'remove', path: '/path/2' }); 86 | const squashed = squash(patch); 87 | t.deepEqual(squashed, [{ op: 'remove', path: '/path/2' }]); 88 | }); 89 | test('`remove` operation should remove precedent `copy` operation', t => { 90 | const patch = []; 91 | patch.push({ op: 'copy', path: '/path/2', from: '/somePath' }); 92 | patch.push({ op: 'remove', path: '/path/2' }); 93 | const squashed = squash(patch); 94 | t.deepEqual(squashed, [{ op: 'remove', path: '/path/2' }]); 95 | }); 96 | test('`remove` operation should remove precedent `remove` operation', t => { 97 | const patch = []; 98 | patch.push({ op: 'remove', path: '/path/2' }); 99 | patch.push({ op: 'remove', path: '/path/2' }); 100 | const squashed = squash(patch); 101 | t.deepEqual(squashed, [{ op: 'remove', path: '/path/2' }]); 102 | }); 103 | test('`add` then `move` should discard the `move` operation and update `add` operation value', t => { 104 | const patch = []; 105 | patch.push({ op: 'add', path: '/path/2', value: 'addValue' }); 106 | patch.push({ op: 'move', path: '/path/3', from: '/path/2' }); 107 | const squashed = squash(patch); 108 | t.deepEqual(squashed, [{ op: 'add', path: '/path/3', value: 'addValue' }]); 109 | }); 110 | test('`add` then `test` then `move` should preserve the order', t => { 111 | const patch = []; 112 | patch.push({ op: 'add', path: '/path/2', value: 'addValue' }); 113 | patch.push({ op: 'test', path: '/path/2', value: 'addValue' }); 114 | patch.push({ op: 'move', path: '/path/3', from: '/path/2' }); 115 | const squashed = squash(patch); 116 | t.deepEqual(squashed, patch); 117 | }); 118 | test('`add` then `replace` then `test` then `move` should merge add + replace ONLY', t => { 119 | const patch = []; 120 | 121 | patch.push({ op: 'add', path: '/path/2', value: 'addValue' }); 122 | patch.push({ op: 'replace', path: '/path/2', value: 'replaceValue' }); 123 | patch.push({ op: 'test', path: '/path/2', value: 'replaceValue' }); 124 | patch.push({ op: 'move', path: '/path/3', from: '/path/2' }); 125 | 126 | const expected = []; 127 | expected.push({ op: 'add', path: '/path/2', value: 'replaceValue' }); 128 | expected.push({ op: 'test', path: '/path/2', value: 'replaceValue' }); 129 | expected.push({ op: 'move', path: '/path/3', from: '/path/2' }); 130 | 131 | const squashed = squash(patch); 132 | t.deepEqual(squashed, expected); 133 | }); 134 | 135 | test("`test` operations path shouldn't be squashed", t => { 136 | const patch = []; 137 | for (let i = 0; i <= 50; i++) { 138 | patch.push({ op: 'test', path: '/path/' + i, value: i }); 139 | } 140 | const squashed = squash(patch); 141 | t.deepEqual(squashed, patch); 142 | }); 143 | 144 | test('`add` then `copy` (for existing item) should convert to two adds (add is faster)', t => { 145 | const patch = []; 146 | patch.push({ op: 'add', path: '/path/2', value: 'addValue' }); 147 | patch.push({ op: 'copy', path: '/path/3', from: '/path/2' }); 148 | 149 | const expected = []; 150 | expected.push({ op: 'add', path: '/path/2', value: 'addValue' }); 151 | expected.push({ op: 'add', path: '/path/3', value: 'addValue' }); 152 | 153 | const squashed = squash(patch); 154 | t.deepEqual(squashed, expected); 155 | }); 156 | test('`add` then `copy` (for non-existing item) should stay the same', t => { 157 | const patch = []; 158 | patch.push({ op: 'add', path: '/path/2', value: 'addValue' }); 159 | patch.push({ op: 'copy', path: '/path/3', from: '/path/4' }); 160 | 161 | const squashed = squash(patch); 162 | t.deepEqual(squashed, patch); 163 | }); 164 | /* we always keep remove, in case copy was overwriting an existing element, remove should stay to remove it */ 165 | test('`add` then `copy` then `remove` should result only remove', t => { 166 | const patch = []; 167 | patch.push({ op: 'add', path: '/path/2', value: 'addValue' }); 168 | patch.push({ op: 'copy', path: '/path/3', from: '/path/2' }); 169 | patch.push({ op: 'remove', path: '/path/3' }); 170 | 171 | const expected = [ 172 | { op: 'add', path: '/path/2', value: 'addValue' }, 173 | { op: 'remove', path: '/path/3' } 174 | ]; 175 | 176 | const squashed = squash(patch); 177 | t.deepEqual(squashed, expected); 178 | }); 179 | test('`copy` should deep clone not reference', t => { 180 | const object = { name: 'omar' }; 181 | const patch = []; 182 | patch.push({ op: 'add', path: '/path/2', value: object }); 183 | patch.push({ op: 'copy', path: '/path/3', from: '/path/2' }); 184 | 185 | const squashed = squash(patch); 186 | 187 | // they will be converted to two add operations with the second having a deep cloned object 188 | t.deepEqual(squashed[1].value, object); 189 | 190 | // however, they should be different references 191 | t.true(squashed[1].value != object); 192 | }); 193 | test('`move` should NOT deep clone', t => { 194 | const object = { name: 'Omar' }; 195 | const patch = []; 196 | 197 | patch.push({ op: 'add', path: '/path/2', value: object }); 198 | patch.push({ op: 'move', path: '/path/3', from: '/path/2' }); 199 | 200 | const squashed = squash(patch); 201 | 202 | t.deepEqual(squashed, [{ op: 'add', path: '/path/3', value: object }]); 203 | 204 | // and, it should have the same references 205 | t.true(squashed[0].value == object); 206 | }); 207 | 208 | test('fast-json-patch: SHALLOW array shifts should generate a single remove', t => { 209 | const arr = [1, 2, 3, 4, 5, 6]; 210 | const observer = jsonpatch.observe(arr); 211 | 212 | arr.shift(); 213 | 214 | const patch = jsonpatch.generate(observer); 215 | const squashed = squash(patch); 216 | 217 | // before 218 | t.true(patch.length === 6); 219 | 220 | // after 221 | t.deepEqual(squashed, [{ op: 'remove', path: '/0' }]); 222 | }); 223 | 224 | test('fast-json-patch: DEEP array shifts should generate a single remove', t => { 225 | const obj = {arr: [1, 2, 3, 4, 5, 6]}; 226 | const observer = jsonpatch.observe(obj); 227 | 228 | obj.arr.shift(); 229 | 230 | const patch = jsonpatch.generate(observer); 231 | const squashed = squash(patch); 232 | 233 | // before 234 | t.true(patch.length === 6); 235 | 236 | // after 237 | t.deepEqual(squashed, [{ op: 'remove', path: '/arr/0' }]); 238 | }); 239 | 240 | test('fast-json-patch: DEEP array splices should generate a single remove', t => { 241 | const obj = {arr: [1, 2, 3, 4, 5, 6]}; 242 | const observer = jsonpatch.observe(obj); 243 | 244 | obj.arr.splice(3,1); 245 | 246 | const patch = jsonpatch.generate(observer); 247 | const squashed = squash(patch); 248 | 249 | // before 250 | t.true(patch.length === 3); 251 | 252 | // after 253 | t.deepEqual(squashed, [{ op: 'remove', path: '/arr/3' }]); 254 | }); 255 | 256 | test('fast-json-patch: DEEP array splices for last element should generate a single remove', t => { 257 | const obj = {arr: [1, 2, 3, 4, 5, 6]}; 258 | const observer = jsonpatch.observe(obj); 259 | 260 | obj.arr.splice(5,1); 261 | 262 | const patch = jsonpatch.generate(observer); 263 | const squashed = squash(patch); 264 | 265 | // before 266 | t.true(patch.length === 1); 267 | 268 | // after 269 | t.deepEqual(squashed, [{ op: 'remove', path: '/arr/5' }]); 270 | }); 271 | 272 | test('JSONPatcherProxy: DEEP array shifts should generate a single remove', t => { 273 | const obj = {arr: [1, 2, 3, 4, 5, 6]}; 274 | const jsonPatcherProxy = new JSONPatcherProxy(obj); 275 | const proxified = jsonPatcherProxy.observe(true); 276 | 277 | proxified.arr.shift(); 278 | 279 | const patch = jsonPatcherProxy.generate(); 280 | const squashed = squash(patch); 281 | 282 | // before 283 | t.true(patch.length === 6); 284 | 285 | // after 286 | t.deepEqual(squashed, [{ op: 'remove', path: '/arr/0' }]); 287 | }); 288 | 289 | test('JSONPatcherProxy: DEEP array splices should generate a single remove', t => { 290 | const obj = {arr: [1, 2, 3, 4, 5, 6]}; 291 | const jsonPatcherProxy = new JSONPatcherProxy(obj); 292 | const proxified = jsonPatcherProxy.observe(true); 293 | 294 | proxified.arr.splice(3,1); 295 | 296 | const patch = jsonPatcherProxy.generate(); 297 | const squashed = squash(patch); 298 | 299 | // before 300 | t.true(patch.length === 3); 301 | 302 | // after 303 | t.deepEqual(squashed, [{ op: 'remove', path: '/arr/3' }]); 304 | }); 305 | 306 | test('JSONPatcherProxy: DEEP array splices for last element should generate a single remove', t => { 307 | const obj = {arr: [1, 2, 3, 4, 5, 6]}; 308 | const jsonPatcherProxy = new JSONPatcherProxy(obj); 309 | const proxified = jsonPatcherProxy.observe(true); 310 | 311 | proxified.arr.splice(5,1); 312 | 313 | const patch = jsonPatcherProxy.generate(); 314 | const squashed = squash(patch); 315 | 316 | // before 317 | t.true(patch.length === 1); 318 | 319 | // after 320 | t.deepEqual(squashed, [{ op: 'remove', path: '/arr/5' }]); 321 | }); -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@ava/babel-plugin-throws-helper@^2.0.0": 6 | version "2.0.0" 7 | resolved "https://registry.yarnpkg.com/@ava/babel-plugin-throws-helper/-/babel-plugin-throws-helper-2.0.0.tgz#2fc1fe3c211a71071a4eca7b8f7af5842cd1ae7c" 8 | 9 | "@ava/babel-preset-stage-4@^1.0.0": 10 | version "1.0.0" 11 | resolved "https://registry.yarnpkg.com/@ava/babel-preset-stage-4/-/babel-preset-stage-4-1.0.0.tgz#a613b5e152f529305422546b072d47facfb26291" 12 | dependencies: 13 | babel-plugin-check-es2015-constants "^6.8.0" 14 | babel-plugin-syntax-trailing-function-commas "^6.20.0" 15 | babel-plugin-transform-async-to-generator "^6.16.0" 16 | babel-plugin-transform-es2015-destructuring "^6.19.0" 17 | babel-plugin-transform-es2015-function-name "^6.9.0" 18 | babel-plugin-transform-es2015-modules-commonjs "^6.18.0" 19 | babel-plugin-transform-es2015-parameters "^6.21.0" 20 | babel-plugin-transform-es2015-spread "^6.8.0" 21 | babel-plugin-transform-es2015-sticky-regex "^6.8.0" 22 | babel-plugin-transform-es2015-unicode-regex "^6.11.0" 23 | babel-plugin-transform-exponentiation-operator "^6.8.0" 24 | package-hash "^1.2.0" 25 | 26 | "@ava/babel-preset-transform-test-files@^3.0.0": 27 | version "3.0.0" 28 | resolved "https://registry.yarnpkg.com/@ava/babel-preset-transform-test-files/-/babel-preset-transform-test-files-3.0.0.tgz#cded1196a8d8d9381a509240ab92e91a5ec069f7" 29 | dependencies: 30 | "@ava/babel-plugin-throws-helper" "^2.0.0" 31 | babel-plugin-espower "^2.3.2" 32 | 33 | "@ava/pretty-format@^1.1.0": 34 | version "1.1.0" 35 | resolved "https://registry.yarnpkg.com/@ava/pretty-format/-/pretty-format-1.1.0.tgz#d0a57d25eb9aeab9643bdd1a030642b91c123e28" 36 | dependencies: 37 | ansi-styles "^2.2.1" 38 | esutils "^2.0.2" 39 | 40 | abbrev@1: 41 | version "1.1.0" 42 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 43 | 44 | ajv@^4.9.1: 45 | version "4.11.8" 46 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 47 | dependencies: 48 | co "^4.6.0" 49 | json-stable-stringify "^1.0.1" 50 | 51 | ansi-align@^2.0.0: 52 | version "2.0.0" 53 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" 54 | dependencies: 55 | string-width "^2.0.0" 56 | 57 | ansi-regex@^2.0.0: 58 | version "2.1.1" 59 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 60 | 61 | ansi-styles@^2.2.1: 62 | version "2.2.1" 63 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 64 | 65 | ansi-styles@^3.0.0: 66 | version "3.0.0" 67 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.0.0.tgz#5404e93a544c4fec7f048262977bebfe3155e0c1" 68 | dependencies: 69 | color-convert "^1.0.0" 70 | 71 | ansi-styles@~1.0.0: 72 | version "1.0.0" 73 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-1.0.0.tgz#cb102df1c56f5123eab8b67cd7b98027a0279178" 74 | 75 | anymatch@^1.3.0: 76 | version "1.3.0" 77 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 78 | dependencies: 79 | arrify "^1.0.0" 80 | micromatch "^2.1.5" 81 | 82 | aproba@^1.0.3: 83 | version "1.1.1" 84 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" 85 | 86 | are-we-there-yet@~1.1.2: 87 | version "1.1.4" 88 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 89 | dependencies: 90 | delegates "^1.0.0" 91 | readable-stream "^2.0.6" 92 | 93 | argparse@^1.0.7: 94 | version "1.0.9" 95 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 96 | dependencies: 97 | sprintf-js "~1.0.2" 98 | 99 | arr-diff@^2.0.0: 100 | version "2.0.0" 101 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 102 | dependencies: 103 | arr-flatten "^1.0.1" 104 | 105 | arr-exclude@^1.0.0: 106 | version "1.0.0" 107 | resolved "https://registry.yarnpkg.com/arr-exclude/-/arr-exclude-1.0.0.tgz#dfc7c2e552a270723ccda04cf3128c8cbfe5c631" 108 | 109 | arr-flatten@^1.0.1: 110 | version "1.0.3" 111 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 112 | 113 | array-differ@^1.0.0: 114 | version "1.0.0" 115 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 116 | 117 | array-find-index@^1.0.1: 118 | version "1.0.2" 119 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 120 | 121 | array-union@^1.0.1: 122 | version "1.0.2" 123 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 124 | dependencies: 125 | array-uniq "^1.0.1" 126 | 127 | array-uniq@^1.0.1, array-uniq@^1.0.2: 128 | version "1.0.3" 129 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 130 | 131 | array-unique@^0.2.1: 132 | version "0.2.1" 133 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 134 | 135 | arrify@^1.0.0: 136 | version "1.0.1" 137 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 138 | 139 | asn1@~0.2.3: 140 | version "0.2.3" 141 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 142 | 143 | assert-plus@1.0.0, assert-plus@^1.0.0: 144 | version "1.0.0" 145 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 146 | 147 | assert-plus@^0.2.0: 148 | version "0.2.0" 149 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 150 | 151 | async-each@^1.0.0: 152 | version "1.0.1" 153 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 154 | 155 | asynckit@^0.4.0: 156 | version "0.4.0" 157 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 158 | 159 | auto-bind@^1.1.0: 160 | version "1.1.0" 161 | resolved "https://registry.yarnpkg.com/auto-bind/-/auto-bind-1.1.0.tgz#93b864dc7ee01a326281775d5c75ca0a751e5961" 162 | 163 | ava-init@^0.2.0: 164 | version "0.2.0" 165 | resolved "https://registry.yarnpkg.com/ava-init/-/ava-init-0.2.0.tgz#9304c8b4c357d66e3dfdae1fbff47b1199d5c55d" 166 | dependencies: 167 | arr-exclude "^1.0.0" 168 | execa "^0.5.0" 169 | has-yarn "^1.0.0" 170 | read-pkg-up "^2.0.0" 171 | write-pkg "^2.0.0" 172 | 173 | ava@^0.19.1: 174 | version "0.19.1" 175 | resolved "https://registry.yarnpkg.com/ava/-/ava-0.19.1.tgz#43dd82435ad19b3980ffca2488f05daab940b273" 176 | dependencies: 177 | "@ava/babel-preset-stage-4" "^1.0.0" 178 | "@ava/babel-preset-transform-test-files" "^3.0.0" 179 | "@ava/pretty-format" "^1.1.0" 180 | arr-flatten "^1.0.1" 181 | array-union "^1.0.1" 182 | array-uniq "^1.0.2" 183 | arrify "^1.0.0" 184 | auto-bind "^1.1.0" 185 | ava-init "^0.2.0" 186 | babel-code-frame "^6.16.0" 187 | babel-core "^6.17.0" 188 | bluebird "^3.0.0" 189 | caching-transform "^1.0.0" 190 | chalk "^1.0.0" 191 | chokidar "^1.4.2" 192 | clean-stack "^1.1.1" 193 | clean-yaml-object "^0.1.0" 194 | cli-cursor "^2.1.0" 195 | cli-spinners "^1.0.0" 196 | cli-truncate "^1.0.0" 197 | co-with-promise "^4.6.0" 198 | code-excerpt "^2.1.0" 199 | common-path-prefix "^1.0.0" 200 | convert-source-map "^1.2.0" 201 | core-assert "^0.2.0" 202 | currently-unhandled "^0.4.1" 203 | debug "^2.2.0" 204 | diff "^3.0.1" 205 | diff-match-patch "^1.0.0" 206 | dot-prop "^4.1.0" 207 | empower-core "^0.6.1" 208 | equal-length "^1.0.0" 209 | figures "^2.0.0" 210 | find-cache-dir "^0.1.1" 211 | fn-name "^2.0.0" 212 | get-port "^3.0.0" 213 | globby "^6.0.0" 214 | has-flag "^2.0.0" 215 | hullabaloo-config-manager "^1.0.0" 216 | ignore-by-default "^1.0.0" 217 | indent-string "^3.0.0" 218 | is-ci "^1.0.7" 219 | is-generator-fn "^1.0.0" 220 | is-obj "^1.0.0" 221 | is-observable "^0.2.0" 222 | is-promise "^2.1.0" 223 | jest-diff "19.0.0" 224 | jest-snapshot "19.0.2" 225 | js-yaml "^3.8.2" 226 | last-line-stream "^1.0.0" 227 | lodash.debounce "^4.0.3" 228 | lodash.difference "^4.3.0" 229 | lodash.flatten "^4.2.0" 230 | lodash.isequal "^4.5.0" 231 | loud-rejection "^1.2.0" 232 | matcher "^0.1.1" 233 | md5-hex "^2.0.0" 234 | meow "^3.7.0" 235 | mkdirp "^0.5.1" 236 | ms "^0.7.1" 237 | multimatch "^2.1.0" 238 | observable-to-promise "^0.5.0" 239 | option-chain "^0.1.0" 240 | package-hash "^2.0.0" 241 | pkg-conf "^2.0.0" 242 | plur "^2.0.0" 243 | pretty-ms "^2.0.0" 244 | require-precompiled "^0.1.0" 245 | resolve-cwd "^1.0.0" 246 | slash "^1.0.0" 247 | source-map-support "^0.4.0" 248 | stack-utils "^1.0.0" 249 | strip-ansi "^3.0.1" 250 | strip-bom-buf "^1.0.0" 251 | supports-color "^3.2.3" 252 | time-require "^0.1.2" 253 | unique-temp-dir "^1.0.0" 254 | update-notifier "^2.1.0" 255 | 256 | aws-sign2@~0.6.0: 257 | version "0.6.0" 258 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 259 | 260 | aws4@^1.2.1: 261 | version "1.6.0" 262 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 263 | 264 | babel-code-frame@^6.16.0, babel-code-frame@^6.22.0: 265 | version "6.22.0" 266 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 267 | dependencies: 268 | chalk "^1.1.0" 269 | esutils "^2.0.2" 270 | js-tokens "^3.0.0" 271 | 272 | babel-core@^6.17.0, babel-core@^6.24.1: 273 | version "6.24.1" 274 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" 275 | dependencies: 276 | babel-code-frame "^6.22.0" 277 | babel-generator "^6.24.1" 278 | babel-helpers "^6.24.1" 279 | babel-messages "^6.23.0" 280 | babel-register "^6.24.1" 281 | babel-runtime "^6.22.0" 282 | babel-template "^6.24.1" 283 | babel-traverse "^6.24.1" 284 | babel-types "^6.24.1" 285 | babylon "^6.11.0" 286 | convert-source-map "^1.1.0" 287 | debug "^2.1.1" 288 | json5 "^0.5.0" 289 | lodash "^4.2.0" 290 | minimatch "^3.0.2" 291 | path-is-absolute "^1.0.0" 292 | private "^0.1.6" 293 | slash "^1.0.0" 294 | source-map "^0.5.0" 295 | 296 | babel-generator@^6.1.0, babel-generator@^6.24.1: 297 | version "6.24.1" 298 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" 299 | dependencies: 300 | babel-messages "^6.23.0" 301 | babel-runtime "^6.22.0" 302 | babel-types "^6.24.1" 303 | detect-indent "^4.0.0" 304 | jsesc "^1.3.0" 305 | lodash "^4.2.0" 306 | source-map "^0.5.0" 307 | trim-right "^1.0.1" 308 | 309 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 310 | version "6.24.1" 311 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 312 | dependencies: 313 | babel-helper-explode-assignable-expression "^6.24.1" 314 | babel-runtime "^6.22.0" 315 | babel-types "^6.24.1" 316 | 317 | babel-helper-call-delegate@^6.24.1: 318 | version "6.24.1" 319 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 320 | dependencies: 321 | babel-helper-hoist-variables "^6.24.1" 322 | babel-runtime "^6.22.0" 323 | babel-traverse "^6.24.1" 324 | babel-types "^6.24.1" 325 | 326 | babel-helper-explode-assignable-expression@^6.24.1: 327 | version "6.24.1" 328 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 329 | dependencies: 330 | babel-runtime "^6.22.0" 331 | babel-traverse "^6.24.1" 332 | babel-types "^6.24.1" 333 | 334 | babel-helper-function-name@^6.24.1: 335 | version "6.24.1" 336 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 337 | dependencies: 338 | babel-helper-get-function-arity "^6.24.1" 339 | babel-runtime "^6.22.0" 340 | babel-template "^6.24.1" 341 | babel-traverse "^6.24.1" 342 | babel-types "^6.24.1" 343 | 344 | babel-helper-get-function-arity@^6.24.1: 345 | version "6.24.1" 346 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 347 | dependencies: 348 | babel-runtime "^6.22.0" 349 | babel-types "^6.24.1" 350 | 351 | babel-helper-hoist-variables@^6.24.1: 352 | version "6.24.1" 353 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 354 | dependencies: 355 | babel-runtime "^6.22.0" 356 | babel-types "^6.24.1" 357 | 358 | babel-helper-regex@^6.24.1: 359 | version "6.24.1" 360 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" 361 | dependencies: 362 | babel-runtime "^6.22.0" 363 | babel-types "^6.24.1" 364 | lodash "^4.2.0" 365 | 366 | babel-helper-remap-async-to-generator@^6.24.1: 367 | version "6.24.1" 368 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 369 | dependencies: 370 | babel-helper-function-name "^6.24.1" 371 | babel-runtime "^6.22.0" 372 | babel-template "^6.24.1" 373 | babel-traverse "^6.24.1" 374 | babel-types "^6.24.1" 375 | 376 | babel-helpers@^6.24.1: 377 | version "6.24.1" 378 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 379 | dependencies: 380 | babel-runtime "^6.22.0" 381 | babel-template "^6.24.1" 382 | 383 | babel-messages@^6.23.0: 384 | version "6.23.0" 385 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 386 | dependencies: 387 | babel-runtime "^6.22.0" 388 | 389 | babel-plugin-check-es2015-constants@^6.8.0: 390 | version "6.22.0" 391 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 392 | dependencies: 393 | babel-runtime "^6.22.0" 394 | 395 | babel-plugin-espower@^2.3.2: 396 | version "2.3.2" 397 | resolved "https://registry.yarnpkg.com/babel-plugin-espower/-/babel-plugin-espower-2.3.2.tgz#5516b8fcdb26c9f0e1d8160749f6e4c65e71271e" 398 | dependencies: 399 | babel-generator "^6.1.0" 400 | babylon "^6.1.0" 401 | call-matcher "^1.0.0" 402 | core-js "^2.0.0" 403 | espower-location-detector "^1.0.0" 404 | espurify "^1.6.0" 405 | estraverse "^4.1.1" 406 | 407 | babel-plugin-syntax-async-functions@^6.8.0: 408 | version "6.13.0" 409 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 410 | 411 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 412 | version "6.13.0" 413 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 414 | 415 | babel-plugin-syntax-trailing-function-commas@^6.20.0: 416 | version "6.22.0" 417 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 418 | 419 | babel-plugin-transform-async-to-generator@^6.16.0: 420 | version "6.24.1" 421 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 422 | dependencies: 423 | babel-helper-remap-async-to-generator "^6.24.1" 424 | babel-plugin-syntax-async-functions "^6.8.0" 425 | babel-runtime "^6.22.0" 426 | 427 | babel-plugin-transform-es2015-destructuring@^6.19.0: 428 | version "6.23.0" 429 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 430 | dependencies: 431 | babel-runtime "^6.22.0" 432 | 433 | babel-plugin-transform-es2015-function-name@^6.9.0: 434 | version "6.24.1" 435 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 436 | dependencies: 437 | babel-helper-function-name "^6.24.1" 438 | babel-runtime "^6.22.0" 439 | babel-types "^6.24.1" 440 | 441 | babel-plugin-transform-es2015-modules-commonjs@^6.18.0: 442 | version "6.24.1" 443 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 444 | dependencies: 445 | babel-plugin-transform-strict-mode "^6.24.1" 446 | babel-runtime "^6.22.0" 447 | babel-template "^6.24.1" 448 | babel-types "^6.24.1" 449 | 450 | babel-plugin-transform-es2015-parameters@^6.21.0: 451 | version "6.24.1" 452 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 453 | dependencies: 454 | babel-helper-call-delegate "^6.24.1" 455 | babel-helper-get-function-arity "^6.24.1" 456 | babel-runtime "^6.22.0" 457 | babel-template "^6.24.1" 458 | babel-traverse "^6.24.1" 459 | babel-types "^6.24.1" 460 | 461 | babel-plugin-transform-es2015-spread@^6.8.0: 462 | version "6.22.0" 463 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 464 | dependencies: 465 | babel-runtime "^6.22.0" 466 | 467 | babel-plugin-transform-es2015-sticky-regex@^6.8.0: 468 | version "6.24.1" 469 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 470 | dependencies: 471 | babel-helper-regex "^6.24.1" 472 | babel-runtime "^6.22.0" 473 | babel-types "^6.24.1" 474 | 475 | babel-plugin-transform-es2015-unicode-regex@^6.11.0: 476 | version "6.24.1" 477 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 478 | dependencies: 479 | babel-helper-regex "^6.24.1" 480 | babel-runtime "^6.22.0" 481 | regexpu-core "^2.0.0" 482 | 483 | babel-plugin-transform-exponentiation-operator@^6.8.0: 484 | version "6.24.1" 485 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 486 | dependencies: 487 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 488 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 489 | babel-runtime "^6.22.0" 490 | 491 | babel-plugin-transform-strict-mode@^6.24.1: 492 | version "6.24.1" 493 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 494 | dependencies: 495 | babel-runtime "^6.22.0" 496 | babel-types "^6.24.1" 497 | 498 | babel-register@^6.24.1: 499 | version "6.24.1" 500 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 501 | dependencies: 502 | babel-core "^6.24.1" 503 | babel-runtime "^6.22.0" 504 | core-js "^2.4.0" 505 | home-or-tmp "^2.0.0" 506 | lodash "^4.2.0" 507 | mkdirp "^0.5.1" 508 | source-map-support "^0.4.2" 509 | 510 | babel-runtime@^6.22.0: 511 | version "6.23.0" 512 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 513 | dependencies: 514 | core-js "^2.4.0" 515 | regenerator-runtime "^0.10.0" 516 | 517 | babel-template@^6.24.1: 518 | version "6.24.1" 519 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" 520 | dependencies: 521 | babel-runtime "^6.22.0" 522 | babel-traverse "^6.24.1" 523 | babel-types "^6.24.1" 524 | babylon "^6.11.0" 525 | lodash "^4.2.0" 526 | 527 | babel-traverse@^6.24.1: 528 | version "6.24.1" 529 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" 530 | dependencies: 531 | babel-code-frame "^6.22.0" 532 | babel-messages "^6.23.0" 533 | babel-runtime "^6.22.0" 534 | babel-types "^6.24.1" 535 | babylon "^6.15.0" 536 | debug "^2.2.0" 537 | globals "^9.0.0" 538 | invariant "^2.2.0" 539 | lodash "^4.2.0" 540 | 541 | babel-types@^6.24.1: 542 | version "6.24.1" 543 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" 544 | dependencies: 545 | babel-runtime "^6.22.0" 546 | esutils "^2.0.2" 547 | lodash "^4.2.0" 548 | to-fast-properties "^1.0.1" 549 | 550 | babylon@^6.1.0, babylon@^6.11.0, babylon@^6.15.0: 551 | version "6.17.1" 552 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.1.tgz#17f14fddf361b695981fe679385e4f1c01ebd86f" 553 | 554 | balanced-match@^0.4.1: 555 | version "0.4.2" 556 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 557 | 558 | bcrypt-pbkdf@^1.0.0: 559 | version "1.0.1" 560 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 561 | dependencies: 562 | tweetnacl "^0.14.3" 563 | 564 | binary-extensions@^1.0.0: 565 | version "1.8.0" 566 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 567 | 568 | block-stream@*: 569 | version "0.0.9" 570 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 571 | dependencies: 572 | inherits "~2.0.0" 573 | 574 | bluebird@^3.0.0: 575 | version "3.5.0" 576 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.0.tgz#791420d7f551eea2897453a8a77653f96606d67c" 577 | 578 | boom@2.x.x: 579 | version "2.10.1" 580 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 581 | dependencies: 582 | hoek "2.x.x" 583 | 584 | boxen@^1.0.0: 585 | version "1.1.0" 586 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.1.0.tgz#b1b69dd522305e807a99deee777dbd6e5167b102" 587 | dependencies: 588 | ansi-align "^2.0.0" 589 | camelcase "^4.0.0" 590 | chalk "^1.1.1" 591 | cli-boxes "^1.0.0" 592 | string-width "^2.0.0" 593 | term-size "^0.1.0" 594 | widest-line "^1.0.0" 595 | 596 | brace-expansion@^1.1.7: 597 | version "1.1.7" 598 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59" 599 | dependencies: 600 | balanced-match "^0.4.1" 601 | concat-map "0.0.1" 602 | 603 | braces@^1.8.2: 604 | version "1.8.5" 605 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 606 | dependencies: 607 | expand-range "^1.8.1" 608 | preserve "^0.2.0" 609 | repeat-element "^1.1.2" 610 | 611 | buf-compare@^1.0.0: 612 | version "1.0.1" 613 | resolved "https://registry.yarnpkg.com/buf-compare/-/buf-compare-1.0.1.tgz#fef28da8b8113a0a0db4430b0b6467b69730b34a" 614 | 615 | buffer-shims@~1.0.0: 616 | version "1.0.0" 617 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 618 | 619 | builtin-modules@^1.0.0: 620 | version "1.1.1" 621 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 622 | 623 | caching-transform@^1.0.0: 624 | version "1.0.1" 625 | resolved "https://registry.yarnpkg.com/caching-transform/-/caching-transform-1.0.1.tgz#6dbdb2f20f8d8fbce79f3e94e9d1742dcdf5c0a1" 626 | dependencies: 627 | md5-hex "^1.2.0" 628 | mkdirp "^0.5.1" 629 | write-file-atomic "^1.1.4" 630 | 631 | call-matcher@^1.0.0: 632 | version "1.0.1" 633 | resolved "https://registry.yarnpkg.com/call-matcher/-/call-matcher-1.0.1.tgz#5134d077984f712a54dad3cbf62de28dce416ca8" 634 | dependencies: 635 | core-js "^2.0.0" 636 | deep-equal "^1.0.0" 637 | espurify "^1.6.0" 638 | estraverse "^4.0.0" 639 | 640 | call-signature@0.0.2: 641 | version "0.0.2" 642 | resolved "https://registry.yarnpkg.com/call-signature/-/call-signature-0.0.2.tgz#a84abc825a55ef4cb2b028bd74e205a65b9a4996" 643 | 644 | camelcase-keys@^2.0.0: 645 | version "2.1.0" 646 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 647 | dependencies: 648 | camelcase "^2.0.0" 649 | map-obj "^1.0.0" 650 | 651 | camelcase@^2.0.0: 652 | version "2.1.1" 653 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 654 | 655 | camelcase@^4.0.0: 656 | version "4.1.0" 657 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 658 | 659 | capture-stack-trace@^1.0.0: 660 | version "1.0.0" 661 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 662 | 663 | caseless@~0.12.0: 664 | version "0.12.0" 665 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 666 | 667 | chalk@^0.4.0: 668 | version "0.4.0" 669 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.4.0.tgz#5199a3ddcd0c1efe23bc08c1b027b06176e0c64f" 670 | dependencies: 671 | ansi-styles "~1.0.0" 672 | has-color "~0.1.0" 673 | strip-ansi "~0.1.0" 674 | 675 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 676 | version "1.1.3" 677 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 678 | dependencies: 679 | ansi-styles "^2.2.1" 680 | escape-string-regexp "^1.0.2" 681 | has-ansi "^2.0.0" 682 | strip-ansi "^3.0.0" 683 | supports-color "^2.0.0" 684 | 685 | chokidar@^1.4.2: 686 | version "1.7.0" 687 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 688 | dependencies: 689 | anymatch "^1.3.0" 690 | async-each "^1.0.0" 691 | glob-parent "^2.0.0" 692 | inherits "^2.0.1" 693 | is-binary-path "^1.0.0" 694 | is-glob "^2.0.0" 695 | path-is-absolute "^1.0.0" 696 | readdirp "^2.0.0" 697 | optionalDependencies: 698 | fsevents "^1.0.0" 699 | 700 | ci-info@^1.0.0: 701 | version "1.0.0" 702 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 703 | 704 | clean-stack@^1.1.1: 705 | version "1.3.0" 706 | resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-1.3.0.tgz#9e821501ae979986c46b1d66d2d432db2fd4ae31" 707 | 708 | clean-yaml-object@^0.1.0: 709 | version "0.1.0" 710 | resolved "https://registry.yarnpkg.com/clean-yaml-object/-/clean-yaml-object-0.1.0.tgz#63fb110dc2ce1a84dc21f6d9334876d010ae8b68" 711 | 712 | cli-boxes@^1.0.0: 713 | version "1.0.0" 714 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 715 | 716 | cli-cursor@^2.1.0: 717 | version "2.1.0" 718 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 719 | dependencies: 720 | restore-cursor "^2.0.0" 721 | 722 | cli-spinners@^1.0.0: 723 | version "1.0.0" 724 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-1.0.0.tgz#ef987ed3d48391ac3dab9180b406a742180d6e6a" 725 | 726 | cli-truncate@^1.0.0: 727 | version "1.0.0" 728 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-1.0.0.tgz#21eb91f47b3f6560f004db77a769b4668d9c5518" 729 | dependencies: 730 | slice-ansi "0.0.4" 731 | string-width "^2.0.0" 732 | 733 | clone@^2.1.1: 734 | version "2.1.1" 735 | resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.1.tgz#d217d1e961118e3ac9a4b8bba3285553bf647cdb" 736 | 737 | co-with-promise@^4.6.0: 738 | version "4.6.0" 739 | resolved "https://registry.yarnpkg.com/co-with-promise/-/co-with-promise-4.6.0.tgz#413e7db6f5893a60b942cf492c4bec93db415ab7" 740 | dependencies: 741 | pinkie-promise "^1.0.0" 742 | 743 | co@^4.6.0: 744 | version "4.6.0" 745 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 746 | 747 | code-excerpt@^2.1.0: 748 | version "2.1.0" 749 | resolved "https://registry.yarnpkg.com/code-excerpt/-/code-excerpt-2.1.0.tgz#5dcc081e88f4a7e3b554e9e35d7ef232d47f8147" 750 | dependencies: 751 | convert-to-spaces "^1.0.1" 752 | 753 | code-point-at@^1.0.0: 754 | version "1.1.0" 755 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 756 | 757 | color-convert@^1.0.0: 758 | version "1.9.0" 759 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 760 | dependencies: 761 | color-name "^1.1.1" 762 | 763 | color-name@^1.1.1: 764 | version "1.1.2" 765 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d" 766 | 767 | combined-stream@^1.0.5, combined-stream@~1.0.5: 768 | version "1.0.5" 769 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 770 | dependencies: 771 | delayed-stream "~1.0.0" 772 | 773 | common-path-prefix@^1.0.0: 774 | version "1.0.0" 775 | resolved "https://registry.yarnpkg.com/common-path-prefix/-/common-path-prefix-1.0.0.tgz#cd52f6f0712e0baab97d6f9732874f22f47752c0" 776 | 777 | commondir@^1.0.1: 778 | version "1.0.1" 779 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 780 | 781 | concat-map@0.0.1: 782 | version "0.0.1" 783 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 784 | 785 | configstore@^3.0.0: 786 | version "3.1.0" 787 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.0.tgz#45df907073e26dfa1cf4b2d52f5b60545eaa11d1" 788 | dependencies: 789 | dot-prop "^4.1.0" 790 | graceful-fs "^4.1.2" 791 | make-dir "^1.0.0" 792 | unique-string "^1.0.0" 793 | write-file-atomic "^2.0.0" 794 | xdg-basedir "^3.0.0" 795 | 796 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 797 | version "1.1.0" 798 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 799 | 800 | convert-source-map@^1.1.0, convert-source-map@^1.2.0: 801 | version "1.5.0" 802 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 803 | 804 | convert-to-spaces@^1.0.1: 805 | version "1.0.2" 806 | resolved "https://registry.yarnpkg.com/convert-to-spaces/-/convert-to-spaces-1.0.2.tgz#7e3e48bbe6d997b1417ddca2868204b4d3d85715" 807 | 808 | core-assert@^0.2.0: 809 | version "0.2.1" 810 | resolved "https://registry.yarnpkg.com/core-assert/-/core-assert-0.2.1.tgz#f85e2cf9bfed28f773cc8b3fa5c5b69bdc02fe3f" 811 | dependencies: 812 | buf-compare "^1.0.0" 813 | is-error "^2.2.0" 814 | 815 | core-js@^2.0.0, core-js@^2.4.0: 816 | version "2.4.1" 817 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 818 | 819 | core-util-is@~1.0.0: 820 | version "1.0.2" 821 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 822 | 823 | create-error-class@^3.0.0: 824 | version "3.0.2" 825 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 826 | dependencies: 827 | capture-stack-trace "^1.0.0" 828 | 829 | cross-spawn-async@^2.1.1: 830 | version "2.2.5" 831 | resolved "https://registry.yarnpkg.com/cross-spawn-async/-/cross-spawn-async-2.2.5.tgz#845ff0c0834a3ded9d160daca6d390906bb288cc" 832 | dependencies: 833 | lru-cache "^4.0.0" 834 | which "^1.2.8" 835 | 836 | cross-spawn@^4.0.0: 837 | version "4.0.2" 838 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" 839 | dependencies: 840 | lru-cache "^4.0.1" 841 | which "^1.2.9" 842 | 843 | cryptiles@2.x.x: 844 | version "2.0.5" 845 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 846 | dependencies: 847 | boom "2.x.x" 848 | 849 | crypto-random-string@^1.0.0: 850 | version "1.0.0" 851 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" 852 | 853 | currently-unhandled@^0.4.1: 854 | version "0.4.1" 855 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 856 | dependencies: 857 | array-find-index "^1.0.1" 858 | 859 | dashdash@^1.12.0: 860 | version "1.14.1" 861 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 862 | dependencies: 863 | assert-plus "^1.0.0" 864 | 865 | date-time@^0.1.1: 866 | version "0.1.1" 867 | resolved "https://registry.yarnpkg.com/date-time/-/date-time-0.1.1.tgz#ed2f6d93d9790ce2fd66d5b5ff3edd5bbcbf3b07" 868 | 869 | debug@^2.1.1, debug@^2.2.0: 870 | version "2.6.8" 871 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 872 | dependencies: 873 | ms "2.0.0" 874 | 875 | decamelize@^1.1.2: 876 | version "1.2.0" 877 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 878 | 879 | deep-equal@^1.0.0: 880 | version "1.0.1" 881 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" 882 | 883 | deep-extend@~0.4.0: 884 | version "0.4.2" 885 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 886 | 887 | delayed-stream@~1.0.0: 888 | version "1.0.0" 889 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 890 | 891 | delegates@^1.0.0: 892 | version "1.0.0" 893 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 894 | 895 | detect-indent@^4.0.0: 896 | version "4.0.0" 897 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 898 | dependencies: 899 | repeating "^2.0.0" 900 | 901 | detect-indent@^5.0.0: 902 | version "5.0.0" 903 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d" 904 | 905 | diff-match-patch@^1.0.0: 906 | version "1.0.0" 907 | resolved "https://registry.yarnpkg.com/diff-match-patch/-/diff-match-patch-1.0.0.tgz#1cc3c83a490d67f95d91e39f6ad1f2e086b63048" 908 | 909 | diff@^3.0.0, diff@^3.0.1: 910 | version "3.2.0" 911 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 912 | 913 | dot-prop@^4.1.0: 914 | version "4.1.1" 915 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.1.1.tgz#a8493f0b7b5eeec82525b5c7587fa7de7ca859c1" 916 | dependencies: 917 | is-obj "^1.0.0" 918 | 919 | duplexer3@^0.1.4: 920 | version "0.1.4" 921 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 922 | 923 | ecc-jsbn@~0.1.1: 924 | version "0.1.1" 925 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 926 | dependencies: 927 | jsbn "~0.1.0" 928 | 929 | empower-core@^0.6.1: 930 | version "0.6.1" 931 | resolved "https://registry.yarnpkg.com/empower-core/-/empower-core-0.6.1.tgz#6c187f502fcef7554d57933396aac655483772b1" 932 | dependencies: 933 | call-signature "0.0.2" 934 | core-js "^2.0.0" 935 | 936 | equal-length@^1.0.0: 937 | version "1.0.1" 938 | resolved "https://registry.yarnpkg.com/equal-length/-/equal-length-1.0.1.tgz#21ca112d48ab24b4e1e7ffc0e5339d31fdfc274c" 939 | 940 | error-ex@^1.2.0: 941 | version "1.3.1" 942 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 943 | dependencies: 944 | is-arrayish "^0.2.1" 945 | 946 | es6-error@^4.0.1, es6-error@^4.0.2: 947 | version "4.0.2" 948 | resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-4.0.2.tgz#eec5c726eacef51b7f6b73c20db6e1b13b069c98" 949 | 950 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.4, escape-string-regexp@^1.0.5: 951 | version "1.0.5" 952 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 953 | 954 | espower-location-detector@^1.0.0: 955 | version "1.0.0" 956 | resolved "https://registry.yarnpkg.com/espower-location-detector/-/espower-location-detector-1.0.0.tgz#a17b7ecc59d30e179e2bef73fb4137704cb331b5" 957 | dependencies: 958 | is-url "^1.2.1" 959 | path-is-absolute "^1.0.0" 960 | source-map "^0.5.0" 961 | xtend "^4.0.0" 962 | 963 | esprima@^3.1.1: 964 | version "3.1.3" 965 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 966 | 967 | espurify@^1.6.0: 968 | version "1.7.0" 969 | resolved "https://registry.yarnpkg.com/espurify/-/espurify-1.7.0.tgz#1c5cf6cbccc32e6f639380bd4f991fab9ba9d226" 970 | dependencies: 971 | core-js "^2.0.0" 972 | 973 | estraverse@^4.0.0, estraverse@^4.1.1: 974 | version "4.2.0" 975 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 976 | 977 | esutils@^2.0.2: 978 | version "2.0.2" 979 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 980 | 981 | execa@^0.4.0: 982 | version "0.4.0" 983 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.4.0.tgz#4eb6467a36a095fabb2970ff9d5e3fb7bce6ebc3" 984 | dependencies: 985 | cross-spawn-async "^2.1.1" 986 | is-stream "^1.1.0" 987 | npm-run-path "^1.0.0" 988 | object-assign "^4.0.1" 989 | path-key "^1.0.0" 990 | strip-eof "^1.0.0" 991 | 992 | execa@^0.5.0: 993 | version "0.5.1" 994 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.5.1.tgz#de3fb85cb8d6e91c85bcbceb164581785cb57b36" 995 | dependencies: 996 | cross-spawn "^4.0.0" 997 | get-stream "^2.2.0" 998 | is-stream "^1.1.0" 999 | npm-run-path "^2.0.0" 1000 | p-finally "^1.0.0" 1001 | signal-exit "^3.0.0" 1002 | strip-eof "^1.0.0" 1003 | 1004 | expand-brackets@^0.1.4: 1005 | version "0.1.5" 1006 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1007 | dependencies: 1008 | is-posix-bracket "^0.1.0" 1009 | 1010 | expand-range@^1.8.1: 1011 | version "1.8.2" 1012 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1013 | dependencies: 1014 | fill-range "^2.1.0" 1015 | 1016 | extend@~3.0.0: 1017 | version "3.0.1" 1018 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1019 | 1020 | extglob@^0.3.1: 1021 | version "0.3.2" 1022 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1023 | dependencies: 1024 | is-extglob "^1.0.0" 1025 | 1026 | extsprintf@1.0.2: 1027 | version "1.0.2" 1028 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1029 | 1030 | fast-json-patch@^1.1.10: 1031 | version "1.1.10" 1032 | resolved "https://registry.yarnpkg.com/fast-json-patch/-/fast-json-patch-1.1.10.tgz#d4e6739202ab948af82dd5f24496cab737b5c50a" 1033 | 1034 | figures@^2.0.0: 1035 | version "2.0.0" 1036 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1037 | dependencies: 1038 | escape-string-regexp "^1.0.5" 1039 | 1040 | filename-regex@^2.0.0: 1041 | version "2.0.1" 1042 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1043 | 1044 | fill-range@^2.1.0: 1045 | version "2.2.3" 1046 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1047 | dependencies: 1048 | is-number "^2.1.0" 1049 | isobject "^2.0.0" 1050 | randomatic "^1.1.3" 1051 | repeat-element "^1.1.2" 1052 | repeat-string "^1.5.2" 1053 | 1054 | find-cache-dir@^0.1.1: 1055 | version "0.1.1" 1056 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" 1057 | dependencies: 1058 | commondir "^1.0.1" 1059 | mkdirp "^0.5.1" 1060 | pkg-dir "^1.0.0" 1061 | 1062 | find-up@^1.0.0: 1063 | version "1.1.2" 1064 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1065 | dependencies: 1066 | path-exists "^2.0.0" 1067 | pinkie-promise "^2.0.0" 1068 | 1069 | find-up@^2.0.0: 1070 | version "2.1.0" 1071 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1072 | dependencies: 1073 | locate-path "^2.0.0" 1074 | 1075 | fn-name@^2.0.0: 1076 | version "2.0.1" 1077 | resolved "https://registry.yarnpkg.com/fn-name/-/fn-name-2.0.1.tgz#5214d7537a4d06a4a301c0cc262feb84188002e7" 1078 | 1079 | for-in@^1.0.1: 1080 | version "1.0.2" 1081 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1082 | 1083 | for-own@^0.1.4: 1084 | version "0.1.5" 1085 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1086 | dependencies: 1087 | for-in "^1.0.1" 1088 | 1089 | forever-agent@~0.6.1: 1090 | version "0.6.1" 1091 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1092 | 1093 | form-data@~2.1.1: 1094 | version "2.1.4" 1095 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1096 | dependencies: 1097 | asynckit "^0.4.0" 1098 | combined-stream "^1.0.5" 1099 | mime-types "^2.1.12" 1100 | 1101 | fs.realpath@^1.0.0: 1102 | version "1.0.0" 1103 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1104 | 1105 | fsevents@^1.0.0: 1106 | version "1.1.1" 1107 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" 1108 | dependencies: 1109 | nan "^2.3.0" 1110 | node-pre-gyp "^0.6.29" 1111 | 1112 | fstream-ignore@^1.0.5: 1113 | version "1.0.5" 1114 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1115 | dependencies: 1116 | fstream "^1.0.0" 1117 | inherits "2" 1118 | minimatch "^3.0.0" 1119 | 1120 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1121 | version "1.0.11" 1122 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1123 | dependencies: 1124 | graceful-fs "^4.1.2" 1125 | inherits "~2.0.0" 1126 | mkdirp ">=0.5 0" 1127 | rimraf "2" 1128 | 1129 | gauge@~2.7.3: 1130 | version "2.7.4" 1131 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1132 | dependencies: 1133 | aproba "^1.0.3" 1134 | console-control-strings "^1.0.0" 1135 | has-unicode "^2.0.0" 1136 | object-assign "^4.1.0" 1137 | signal-exit "^3.0.0" 1138 | string-width "^1.0.1" 1139 | strip-ansi "^3.0.1" 1140 | wide-align "^1.1.0" 1141 | 1142 | get-port@^3.0.0: 1143 | version "3.1.0" 1144 | resolved "https://registry.yarnpkg.com/get-port/-/get-port-3.1.0.tgz#ef01b18a84ca6486970ff99e54446141a73ffd3e" 1145 | 1146 | get-stdin@^4.0.1: 1147 | version "4.0.1" 1148 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1149 | 1150 | get-stream@^2.2.0: 1151 | version "2.3.1" 1152 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-2.3.1.tgz#5f38f93f346009666ee0150a054167f91bdd95de" 1153 | dependencies: 1154 | object-assign "^4.0.1" 1155 | pinkie-promise "^2.0.0" 1156 | 1157 | get-stream@^3.0.0: 1158 | version "3.0.0" 1159 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1160 | 1161 | getpass@^0.1.1: 1162 | version "0.1.7" 1163 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1164 | dependencies: 1165 | assert-plus "^1.0.0" 1166 | 1167 | glob-base@^0.3.0: 1168 | version "0.3.0" 1169 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1170 | dependencies: 1171 | glob-parent "^2.0.0" 1172 | is-glob "^2.0.0" 1173 | 1174 | glob-parent@^2.0.0: 1175 | version "2.0.0" 1176 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1177 | dependencies: 1178 | is-glob "^2.0.0" 1179 | 1180 | glob@^7.0.3, glob@^7.0.5: 1181 | version "7.1.2" 1182 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1183 | dependencies: 1184 | fs.realpath "^1.0.0" 1185 | inflight "^1.0.4" 1186 | inherits "2" 1187 | minimatch "^3.0.4" 1188 | once "^1.3.0" 1189 | path-is-absolute "^1.0.0" 1190 | 1191 | globals@^9.0.0: 1192 | version "9.17.0" 1193 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 1194 | 1195 | globby@^6.0.0: 1196 | version "6.1.0" 1197 | resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" 1198 | dependencies: 1199 | array-union "^1.0.1" 1200 | glob "^7.0.3" 1201 | object-assign "^4.0.1" 1202 | pify "^2.0.0" 1203 | pinkie-promise "^2.0.0" 1204 | 1205 | got@^6.7.1: 1206 | version "6.7.1" 1207 | resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" 1208 | dependencies: 1209 | create-error-class "^3.0.0" 1210 | duplexer3 "^0.1.4" 1211 | get-stream "^3.0.0" 1212 | is-redirect "^1.0.0" 1213 | is-retry-allowed "^1.0.0" 1214 | is-stream "^1.0.0" 1215 | lowercase-keys "^1.0.0" 1216 | safe-buffer "^5.0.1" 1217 | timed-out "^4.0.0" 1218 | unzip-response "^2.0.1" 1219 | url-parse-lax "^1.0.0" 1220 | 1221 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6: 1222 | version "4.1.11" 1223 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1224 | 1225 | har-schema@^1.0.5: 1226 | version "1.0.5" 1227 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1228 | 1229 | har-validator@~4.2.1: 1230 | version "4.2.1" 1231 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1232 | dependencies: 1233 | ajv "^4.9.1" 1234 | har-schema "^1.0.5" 1235 | 1236 | has-ansi@^2.0.0: 1237 | version "2.0.0" 1238 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1239 | dependencies: 1240 | ansi-regex "^2.0.0" 1241 | 1242 | has-color@~0.1.0: 1243 | version "0.1.7" 1244 | resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f" 1245 | 1246 | has-flag@^1.0.0: 1247 | version "1.0.0" 1248 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1249 | 1250 | has-flag@^2.0.0: 1251 | version "2.0.0" 1252 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1253 | 1254 | has-unicode@^2.0.0: 1255 | version "2.0.1" 1256 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1257 | 1258 | has-yarn@^1.0.0: 1259 | version "1.0.0" 1260 | resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-1.0.0.tgz#89e25db604b725c8f5976fff0addc921b828a5a7" 1261 | 1262 | hawk@~3.1.3: 1263 | version "3.1.3" 1264 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1265 | dependencies: 1266 | boom "2.x.x" 1267 | cryptiles "2.x.x" 1268 | hoek "2.x.x" 1269 | sntp "1.x.x" 1270 | 1271 | hoek@2.x.x: 1272 | version "2.16.3" 1273 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1274 | 1275 | home-or-tmp@^2.0.0: 1276 | version "2.0.0" 1277 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1278 | dependencies: 1279 | os-homedir "^1.0.0" 1280 | os-tmpdir "^1.0.1" 1281 | 1282 | hosted-git-info@^2.1.4: 1283 | version "2.4.2" 1284 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67" 1285 | 1286 | http-signature@~1.1.0: 1287 | version "1.1.1" 1288 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1289 | dependencies: 1290 | assert-plus "^0.2.0" 1291 | jsprim "^1.2.2" 1292 | sshpk "^1.7.0" 1293 | 1294 | hullabaloo-config-manager@^1.0.0: 1295 | version "1.0.1" 1296 | resolved "https://registry.yarnpkg.com/hullabaloo-config-manager/-/hullabaloo-config-manager-1.0.1.tgz#c72be7ba249a67c99b6ba3eb1f55837fa01acd8f" 1297 | dependencies: 1298 | dot-prop "^4.1.0" 1299 | es6-error "^4.0.2" 1300 | graceful-fs "^4.1.11" 1301 | indent-string "^3.1.0" 1302 | json5 "^0.5.1" 1303 | lodash.clonedeep "^4.5.0" 1304 | lodash.clonedeepwith "^4.5.0" 1305 | lodash.isequal "^4.5.0" 1306 | lodash.merge "^4.6.0" 1307 | md5-hex "^2.0.0" 1308 | package-hash "^2.0.0" 1309 | pkg-dir "^1.0.0" 1310 | resolve-from "^2.0.0" 1311 | 1312 | ignore-by-default@^1.0.0: 1313 | version "1.0.1" 1314 | resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" 1315 | 1316 | imurmurhash@^0.1.4: 1317 | version "0.1.4" 1318 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1319 | 1320 | indent-string@^2.1.0: 1321 | version "2.1.0" 1322 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1323 | dependencies: 1324 | repeating "^2.0.0" 1325 | 1326 | indent-string@^3.0.0, indent-string@^3.1.0: 1327 | version "3.1.0" 1328 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.1.0.tgz#08ff4334603388399b329e6b9538dc7a3cf5de7d" 1329 | 1330 | inflight@^1.0.4: 1331 | version "1.0.6" 1332 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1333 | dependencies: 1334 | once "^1.3.0" 1335 | wrappy "1" 1336 | 1337 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1: 1338 | version "2.0.3" 1339 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1340 | 1341 | ini@~1.3.0: 1342 | version "1.3.4" 1343 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1344 | 1345 | invariant@^2.2.0: 1346 | version "2.2.2" 1347 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1348 | dependencies: 1349 | loose-envify "^1.0.0" 1350 | 1351 | irregular-plurals@^1.0.0: 1352 | version "1.2.0" 1353 | resolved "https://registry.yarnpkg.com/irregular-plurals/-/irregular-plurals-1.2.0.tgz#38f299834ba8c00c30be9c554e137269752ff3ac" 1354 | 1355 | is-arrayish@^0.2.1: 1356 | version "0.2.1" 1357 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1358 | 1359 | is-binary-path@^1.0.0: 1360 | version "1.0.1" 1361 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1362 | dependencies: 1363 | binary-extensions "^1.0.0" 1364 | 1365 | is-buffer@^1.1.5: 1366 | version "1.1.5" 1367 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1368 | 1369 | is-builtin-module@^1.0.0: 1370 | version "1.0.0" 1371 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1372 | dependencies: 1373 | builtin-modules "^1.0.0" 1374 | 1375 | is-ci@^1.0.7: 1376 | version "1.0.10" 1377 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1378 | dependencies: 1379 | ci-info "^1.0.0" 1380 | 1381 | is-dotfile@^1.0.0: 1382 | version "1.0.2" 1383 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1384 | 1385 | is-equal-shallow@^0.1.3: 1386 | version "0.1.3" 1387 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1388 | dependencies: 1389 | is-primitive "^2.0.0" 1390 | 1391 | is-error@^2.2.0: 1392 | version "2.2.1" 1393 | resolved "https://registry.yarnpkg.com/is-error/-/is-error-2.2.1.tgz#684a96d84076577c98f4cdb40c6d26a5123bf19c" 1394 | 1395 | is-extendable@^0.1.1: 1396 | version "0.1.1" 1397 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1398 | 1399 | is-extglob@^1.0.0: 1400 | version "1.0.0" 1401 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1402 | 1403 | is-finite@^1.0.0, is-finite@^1.0.1: 1404 | version "1.0.2" 1405 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1406 | dependencies: 1407 | number-is-nan "^1.0.0" 1408 | 1409 | is-fullwidth-code-point@^1.0.0: 1410 | version "1.0.0" 1411 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1412 | dependencies: 1413 | number-is-nan "^1.0.0" 1414 | 1415 | is-fullwidth-code-point@^2.0.0: 1416 | version "2.0.0" 1417 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1418 | 1419 | is-generator-fn@^1.0.0: 1420 | version "1.0.0" 1421 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a" 1422 | 1423 | is-glob@^2.0.0, is-glob@^2.0.1: 1424 | version "2.0.1" 1425 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1426 | dependencies: 1427 | is-extglob "^1.0.0" 1428 | 1429 | is-npm@^1.0.0: 1430 | version "1.0.0" 1431 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 1432 | 1433 | is-number@^2.0.2, is-number@^2.1.0: 1434 | version "2.1.0" 1435 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1436 | dependencies: 1437 | kind-of "^3.0.2" 1438 | 1439 | is-obj@^1.0.0: 1440 | version "1.0.1" 1441 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1442 | 1443 | is-observable@^0.2.0: 1444 | version "0.2.0" 1445 | resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-0.2.0.tgz#b361311d83c6e5d726cabf5e250b0237106f5ae2" 1446 | dependencies: 1447 | symbol-observable "^0.2.2" 1448 | 1449 | is-plain-obj@^1.0.0: 1450 | version "1.1.0" 1451 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 1452 | 1453 | is-posix-bracket@^0.1.0: 1454 | version "0.1.1" 1455 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1456 | 1457 | is-primitive@^2.0.0: 1458 | version "2.0.0" 1459 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1460 | 1461 | is-promise@^2.1.0: 1462 | version "2.1.0" 1463 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1464 | 1465 | is-redirect@^1.0.0: 1466 | version "1.0.0" 1467 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 1468 | 1469 | is-retry-allowed@^1.0.0: 1470 | version "1.1.0" 1471 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 1472 | 1473 | is-stream@^1.0.0, is-stream@^1.1.0: 1474 | version "1.1.0" 1475 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1476 | 1477 | is-typedarray@~1.0.0: 1478 | version "1.0.0" 1479 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1480 | 1481 | is-url@^1.2.1: 1482 | version "1.2.2" 1483 | resolved "https://registry.yarnpkg.com/is-url/-/is-url-1.2.2.tgz#498905a593bf47cc2d9e7f738372bbf7696c7f26" 1484 | 1485 | is-utf8@^0.2.0, is-utf8@^0.2.1: 1486 | version "0.2.1" 1487 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1488 | 1489 | isarray@1.0.0, isarray@~1.0.0: 1490 | version "1.0.0" 1491 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1492 | 1493 | isexe@^2.0.0: 1494 | version "2.0.0" 1495 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1496 | 1497 | isobject@^2.0.0: 1498 | version "2.1.0" 1499 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1500 | dependencies: 1501 | isarray "1.0.0" 1502 | 1503 | isstream@~0.1.2: 1504 | version "0.1.2" 1505 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1506 | 1507 | jest-diff@19.0.0, jest-diff@^19.0.0: 1508 | version "19.0.0" 1509 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-19.0.0.tgz#d1563cfc56c8b60232988fbc05d4d16ed90f063c" 1510 | dependencies: 1511 | chalk "^1.1.3" 1512 | diff "^3.0.0" 1513 | jest-matcher-utils "^19.0.0" 1514 | pretty-format "^19.0.0" 1515 | 1516 | jest-file-exists@^19.0.0: 1517 | version "19.0.0" 1518 | resolved "https://registry.yarnpkg.com/jest-file-exists/-/jest-file-exists-19.0.0.tgz#cca2e587a11ec92e24cfeab3f8a94d657f3fceb8" 1519 | 1520 | jest-matcher-utils@^19.0.0: 1521 | version "19.0.0" 1522 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-19.0.0.tgz#5ecd9b63565d2b001f61fbf7ec4c7f537964564d" 1523 | dependencies: 1524 | chalk "^1.1.3" 1525 | pretty-format "^19.0.0" 1526 | 1527 | jest-message-util@^19.0.0: 1528 | version "19.0.0" 1529 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-19.0.0.tgz#721796b89c0e4d761606f9ba8cb828a3b6246416" 1530 | dependencies: 1531 | chalk "^1.1.1" 1532 | micromatch "^2.3.11" 1533 | 1534 | jest-mock@^19.0.0: 1535 | version "19.0.0" 1536 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-19.0.0.tgz#67038641e9607ab2ce08ec4a8cb83aabbc899d01" 1537 | 1538 | jest-snapshot@19.0.2: 1539 | version "19.0.2" 1540 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-19.0.2.tgz#9c1b216214f7187c38bfd5c70b1efab16b0ff50b" 1541 | dependencies: 1542 | chalk "^1.1.3" 1543 | jest-diff "^19.0.0" 1544 | jest-file-exists "^19.0.0" 1545 | jest-matcher-utils "^19.0.0" 1546 | jest-util "^19.0.2" 1547 | natural-compare "^1.4.0" 1548 | pretty-format "^19.0.0" 1549 | 1550 | jest-util@^19.0.2: 1551 | version "19.0.2" 1552 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-19.0.2.tgz#e0a0232a2ab9e6b2b53668bdb3534c2b5977ed41" 1553 | dependencies: 1554 | chalk "^1.1.1" 1555 | graceful-fs "^4.1.6" 1556 | jest-file-exists "^19.0.0" 1557 | jest-message-util "^19.0.0" 1558 | jest-mock "^19.0.0" 1559 | jest-validate "^19.0.2" 1560 | leven "^2.0.0" 1561 | mkdirp "^0.5.1" 1562 | 1563 | jest-validate@^19.0.2: 1564 | version "19.0.2" 1565 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-19.0.2.tgz#dc534df5f1278d5b63df32b14241d4dbf7244c0c" 1566 | dependencies: 1567 | chalk "^1.1.1" 1568 | jest-matcher-utils "^19.0.0" 1569 | leven "^2.0.0" 1570 | pretty-format "^19.0.0" 1571 | 1572 | jodid25519@^1.0.0: 1573 | version "1.0.2" 1574 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 1575 | dependencies: 1576 | jsbn "~0.1.0" 1577 | 1578 | js-tokens@^3.0.0: 1579 | version "3.0.1" 1580 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 1581 | 1582 | js-yaml@^3.8.2: 1583 | version "3.8.4" 1584 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.4.tgz#520b4564f86573ba96662af85a8cafa7b4b5a6f6" 1585 | dependencies: 1586 | argparse "^1.0.7" 1587 | esprima "^3.1.1" 1588 | 1589 | jsbn@~0.1.0: 1590 | version "0.1.1" 1591 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1592 | 1593 | jsesc@^1.3.0: 1594 | version "1.3.0" 1595 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1596 | 1597 | jsesc@~0.5.0: 1598 | version "0.5.0" 1599 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1600 | 1601 | json-schema@0.2.3: 1602 | version "0.2.3" 1603 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1604 | 1605 | json-stable-stringify@^1.0.1: 1606 | version "1.0.1" 1607 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1608 | dependencies: 1609 | jsonify "~0.0.0" 1610 | 1611 | json-stringify-safe@~5.0.1: 1612 | version "5.0.1" 1613 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1614 | 1615 | json5@^0.5.0, json5@^0.5.1: 1616 | version "0.5.1" 1617 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1618 | 1619 | jsonify@~0.0.0: 1620 | version "0.0.0" 1621 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1622 | 1623 | jsprim@^1.2.2: 1624 | version "1.4.0" 1625 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 1626 | dependencies: 1627 | assert-plus "1.0.0" 1628 | extsprintf "1.0.2" 1629 | json-schema "0.2.3" 1630 | verror "1.3.6" 1631 | 1632 | kind-of@^3.0.2: 1633 | version "3.2.2" 1634 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1635 | dependencies: 1636 | is-buffer "^1.1.5" 1637 | 1638 | last-line-stream@^1.0.0: 1639 | version "1.0.0" 1640 | resolved "https://registry.yarnpkg.com/last-line-stream/-/last-line-stream-1.0.0.tgz#d1b64d69f86ff24af2d04883a2ceee14520a5600" 1641 | dependencies: 1642 | through2 "^2.0.0" 1643 | 1644 | latest-version@^3.0.0: 1645 | version "3.1.0" 1646 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" 1647 | dependencies: 1648 | package-json "^4.0.0" 1649 | 1650 | lazy-req@^2.0.0: 1651 | version "2.0.0" 1652 | resolved "https://registry.yarnpkg.com/lazy-req/-/lazy-req-2.0.0.tgz#c9450a363ecdda2e6f0c70132ad4f37f8f06f2b4" 1653 | 1654 | leven@^2.0.0: 1655 | version "2.1.0" 1656 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 1657 | 1658 | load-json-file@^1.0.0: 1659 | version "1.1.0" 1660 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1661 | dependencies: 1662 | graceful-fs "^4.1.2" 1663 | parse-json "^2.2.0" 1664 | pify "^2.0.0" 1665 | pinkie-promise "^2.0.0" 1666 | strip-bom "^2.0.0" 1667 | 1668 | load-json-file@^2.0.0: 1669 | version "2.0.0" 1670 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1671 | dependencies: 1672 | graceful-fs "^4.1.2" 1673 | parse-json "^2.2.0" 1674 | pify "^2.0.0" 1675 | strip-bom "^3.0.0" 1676 | 1677 | locate-path@^2.0.0: 1678 | version "2.0.0" 1679 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1680 | dependencies: 1681 | p-locate "^2.0.0" 1682 | path-exists "^3.0.0" 1683 | 1684 | lodash.clonedeep@^4.5.0: 1685 | version "4.5.0" 1686 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" 1687 | 1688 | lodash.clonedeepwith@^4.5.0: 1689 | version "4.5.0" 1690 | resolved "https://registry.yarnpkg.com/lodash.clonedeepwith/-/lodash.clonedeepwith-4.5.0.tgz#6ee30573a03a1a60d670a62ef33c10cf1afdbdd4" 1691 | 1692 | lodash.debounce@^4.0.3: 1693 | version "4.0.8" 1694 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" 1695 | 1696 | lodash.difference@^4.3.0: 1697 | version "4.5.0" 1698 | resolved "https://registry.yarnpkg.com/lodash.difference/-/lodash.difference-4.5.0.tgz#9ccb4e505d486b91651345772885a2df27fd017c" 1699 | 1700 | lodash.flatten@^4.2.0: 1701 | version "4.4.0" 1702 | resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" 1703 | 1704 | lodash.flattendeep@^4.4.0: 1705 | version "4.4.0" 1706 | resolved "https://registry.yarnpkg.com/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz#fb030917f86a3134e5bc9bec0d69e0013ddfedb2" 1707 | 1708 | lodash.isequal@^4.5.0: 1709 | version "4.5.0" 1710 | resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" 1711 | 1712 | lodash.merge@^4.6.0: 1713 | version "4.6.0" 1714 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.0.tgz#69884ba144ac33fe699737a6086deffadd0f89c5" 1715 | 1716 | lodash@^4.2.0: 1717 | version "4.17.4" 1718 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1719 | 1720 | loose-envify@^1.0.0: 1721 | version "1.3.1" 1722 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1723 | dependencies: 1724 | js-tokens "^3.0.0" 1725 | 1726 | loud-rejection@^1.0.0, loud-rejection@^1.2.0: 1727 | version "1.6.0" 1728 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 1729 | dependencies: 1730 | currently-unhandled "^0.4.1" 1731 | signal-exit "^3.0.0" 1732 | 1733 | lowercase-keys@^1.0.0: 1734 | version "1.0.0" 1735 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 1736 | 1737 | lru-cache@^4.0.0, lru-cache@^4.0.1: 1738 | version "4.0.2" 1739 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e" 1740 | dependencies: 1741 | pseudomap "^1.0.1" 1742 | yallist "^2.0.0" 1743 | 1744 | make-dir@^1.0.0: 1745 | version "1.0.0" 1746 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.0.0.tgz#97a011751e91dd87cfadef58832ebb04936de978" 1747 | dependencies: 1748 | pify "^2.3.0" 1749 | 1750 | map-obj@^1.0.0, map-obj@^1.0.1: 1751 | version "1.0.1" 1752 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 1753 | 1754 | matcher@^0.1.1: 1755 | version "0.1.2" 1756 | resolved "https://registry.yarnpkg.com/matcher/-/matcher-0.1.2.tgz#ef20cbde64c24c50cc61af5b83ee0b1b8ff00101" 1757 | dependencies: 1758 | escape-string-regexp "^1.0.4" 1759 | 1760 | md5-hex@^1.2.0, md5-hex@^1.3.0: 1761 | version "1.3.0" 1762 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-1.3.0.tgz#d2c4afe983c4370662179b8cad145219135046c4" 1763 | dependencies: 1764 | md5-o-matic "^0.1.1" 1765 | 1766 | md5-hex@^2.0.0: 1767 | version "2.0.0" 1768 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-2.0.0.tgz#d0588e9f1c74954492ecd24ac0ac6ce997d92e33" 1769 | dependencies: 1770 | md5-o-matic "^0.1.1" 1771 | 1772 | md5-o-matic@^0.1.1: 1773 | version "0.1.1" 1774 | resolved "https://registry.yarnpkg.com/md5-o-matic/-/md5-o-matic-0.1.1.tgz#822bccd65e117c514fab176b25945d54100a03c3" 1775 | 1776 | meow@^3.7.0: 1777 | version "3.7.0" 1778 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 1779 | dependencies: 1780 | camelcase-keys "^2.0.0" 1781 | decamelize "^1.1.2" 1782 | loud-rejection "^1.0.0" 1783 | map-obj "^1.0.1" 1784 | minimist "^1.1.3" 1785 | normalize-package-data "^2.3.4" 1786 | object-assign "^4.0.1" 1787 | read-pkg-up "^1.0.1" 1788 | redent "^1.0.0" 1789 | trim-newlines "^1.0.0" 1790 | 1791 | micromatch@^2.1.5, micromatch@^2.3.11: 1792 | version "2.3.11" 1793 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1794 | dependencies: 1795 | arr-diff "^2.0.0" 1796 | array-unique "^0.2.1" 1797 | braces "^1.8.2" 1798 | expand-brackets "^0.1.4" 1799 | extglob "^0.3.1" 1800 | filename-regex "^2.0.0" 1801 | is-extglob "^1.0.0" 1802 | is-glob "^2.0.1" 1803 | kind-of "^3.0.2" 1804 | normalize-path "^2.0.1" 1805 | object.omit "^2.0.0" 1806 | parse-glob "^3.0.4" 1807 | regex-cache "^0.4.2" 1808 | 1809 | mime-db@~1.27.0: 1810 | version "1.27.0" 1811 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 1812 | 1813 | mime-types@^2.1.12, mime-types@~2.1.7: 1814 | version "2.1.15" 1815 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 1816 | dependencies: 1817 | mime-db "~1.27.0" 1818 | 1819 | mimic-fn@^1.0.0: 1820 | version "1.1.0" 1821 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 1822 | 1823 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 1824 | version "3.0.4" 1825 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1826 | dependencies: 1827 | brace-expansion "^1.1.7" 1828 | 1829 | minimist@0.0.8: 1830 | version "0.0.8" 1831 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1832 | 1833 | minimist@^1.1.3, minimist@^1.2.0: 1834 | version "1.2.0" 1835 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1836 | 1837 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 1838 | version "0.5.1" 1839 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1840 | dependencies: 1841 | minimist "0.0.8" 1842 | 1843 | ms@2.0.0: 1844 | version "2.0.0" 1845 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1846 | 1847 | ms@^0.7.1: 1848 | version "0.7.3" 1849 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.3.tgz#708155a5e44e33f5fd0fc53e81d0d40a91be1fff" 1850 | 1851 | multimatch@^2.1.0: 1852 | version "2.1.0" 1853 | resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" 1854 | dependencies: 1855 | array-differ "^1.0.0" 1856 | array-union "^1.0.1" 1857 | arrify "^1.0.0" 1858 | minimatch "^3.0.0" 1859 | 1860 | nan@^2.3.0: 1861 | version "2.6.2" 1862 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" 1863 | 1864 | natural-compare@^1.4.0: 1865 | version "1.4.0" 1866 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1867 | 1868 | node-pre-gyp@^0.6.29: 1869 | version "0.6.34" 1870 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.34.tgz#94ad1c798a11d7fc67381b50d47f8cc18d9799f7" 1871 | dependencies: 1872 | mkdirp "^0.5.1" 1873 | nopt "^4.0.1" 1874 | npmlog "^4.0.2" 1875 | rc "^1.1.7" 1876 | request "^2.81.0" 1877 | rimraf "^2.6.1" 1878 | semver "^5.3.0" 1879 | tar "^2.2.1" 1880 | tar-pack "^3.4.0" 1881 | 1882 | nopt@^4.0.1: 1883 | version "4.0.1" 1884 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1885 | dependencies: 1886 | abbrev "1" 1887 | osenv "^0.1.4" 1888 | 1889 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 1890 | version "2.3.8" 1891 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" 1892 | dependencies: 1893 | hosted-git-info "^2.1.4" 1894 | is-builtin-module "^1.0.0" 1895 | semver "2 || 3 || 4 || 5" 1896 | validate-npm-package-license "^3.0.1" 1897 | 1898 | normalize-path@^2.0.1: 1899 | version "2.1.1" 1900 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1901 | dependencies: 1902 | remove-trailing-separator "^1.0.1" 1903 | 1904 | npm-run-path@^1.0.0: 1905 | version "1.0.0" 1906 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-1.0.0.tgz#f5c32bf595fe81ae927daec52e82f8b000ac3c8f" 1907 | dependencies: 1908 | path-key "^1.0.0" 1909 | 1910 | npm-run-path@^2.0.0: 1911 | version "2.0.2" 1912 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 1913 | dependencies: 1914 | path-key "^2.0.0" 1915 | 1916 | npmlog@^4.0.2: 1917 | version "4.1.0" 1918 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.0.tgz#dc59bee85f64f00ed424efb2af0783df25d1c0b5" 1919 | dependencies: 1920 | are-we-there-yet "~1.1.2" 1921 | console-control-strings "~1.1.0" 1922 | gauge "~2.7.3" 1923 | set-blocking "~2.0.0" 1924 | 1925 | number-is-nan@^1.0.0: 1926 | version "1.0.1" 1927 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1928 | 1929 | oauth-sign@~0.8.1: 1930 | version "0.8.2" 1931 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1932 | 1933 | object-assign@^4.0.1, object-assign@^4.1.0: 1934 | version "4.1.1" 1935 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1936 | 1937 | object.omit@^2.0.0: 1938 | version "2.0.1" 1939 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1940 | dependencies: 1941 | for-own "^0.1.4" 1942 | is-extendable "^0.1.1" 1943 | 1944 | observable-to-promise@^0.5.0: 1945 | version "0.5.0" 1946 | resolved "https://registry.yarnpkg.com/observable-to-promise/-/observable-to-promise-0.5.0.tgz#c828f0f0dc47e9f86af8a4977c5d55076ce7a91f" 1947 | dependencies: 1948 | is-observable "^0.2.0" 1949 | symbol-observable "^1.0.4" 1950 | 1951 | once@^1.3.0, once@^1.3.3: 1952 | version "1.4.0" 1953 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1954 | dependencies: 1955 | wrappy "1" 1956 | 1957 | onetime@^2.0.0: 1958 | version "2.0.1" 1959 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 1960 | dependencies: 1961 | mimic-fn "^1.0.0" 1962 | 1963 | option-chain@^0.1.0: 1964 | version "0.1.1" 1965 | resolved "https://registry.yarnpkg.com/option-chain/-/option-chain-0.1.1.tgz#e9b811e006f1c0f54802f28295bfc8970f8dcfbd" 1966 | dependencies: 1967 | object-assign "^4.0.1" 1968 | 1969 | os-homedir@^1.0.0: 1970 | version "1.0.2" 1971 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1972 | 1973 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 1974 | version "1.0.2" 1975 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1976 | 1977 | osenv@^0.1.4: 1978 | version "0.1.4" 1979 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 1980 | dependencies: 1981 | os-homedir "^1.0.0" 1982 | os-tmpdir "^1.0.0" 1983 | 1984 | p-finally@^1.0.0: 1985 | version "1.0.0" 1986 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 1987 | 1988 | p-limit@^1.1.0: 1989 | version "1.1.0" 1990 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 1991 | 1992 | p-locate@^2.0.0: 1993 | version "2.0.0" 1994 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1995 | dependencies: 1996 | p-limit "^1.1.0" 1997 | 1998 | package-hash@^1.2.0: 1999 | version "1.2.0" 2000 | resolved "https://registry.yarnpkg.com/package-hash/-/package-hash-1.2.0.tgz#003e56cd57b736a6ed6114cc2b81542672770e44" 2001 | dependencies: 2002 | md5-hex "^1.3.0" 2003 | 2004 | package-hash@^2.0.0: 2005 | version "2.0.0" 2006 | resolved "https://registry.yarnpkg.com/package-hash/-/package-hash-2.0.0.tgz#78ae326c89e05a4d813b68601977af05c00d2a0d" 2007 | dependencies: 2008 | graceful-fs "^4.1.11" 2009 | lodash.flattendeep "^4.4.0" 2010 | md5-hex "^2.0.0" 2011 | release-zalgo "^1.0.0" 2012 | 2013 | package-json@^4.0.0: 2014 | version "4.0.1" 2015 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" 2016 | dependencies: 2017 | got "^6.7.1" 2018 | registry-auth-token "^3.0.1" 2019 | registry-url "^3.0.3" 2020 | semver "^5.1.0" 2021 | 2022 | parse-glob@^3.0.4: 2023 | version "3.0.4" 2024 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2025 | dependencies: 2026 | glob-base "^0.3.0" 2027 | is-dotfile "^1.0.0" 2028 | is-extglob "^1.0.0" 2029 | is-glob "^2.0.0" 2030 | 2031 | parse-json@^2.2.0: 2032 | version "2.2.0" 2033 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2034 | dependencies: 2035 | error-ex "^1.2.0" 2036 | 2037 | parse-ms@^0.1.0: 2038 | version "0.1.2" 2039 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-0.1.2.tgz#dd3fa25ed6c2efc7bdde12ad9b46c163aa29224e" 2040 | 2041 | parse-ms@^1.0.0: 2042 | version "1.0.1" 2043 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-1.0.1.tgz#56346d4749d78f23430ca0c713850aef91aa361d" 2044 | 2045 | path-exists@^2.0.0: 2046 | version "2.1.0" 2047 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2048 | dependencies: 2049 | pinkie-promise "^2.0.0" 2050 | 2051 | path-exists@^3.0.0: 2052 | version "3.0.0" 2053 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2054 | 2055 | path-is-absolute@^1.0.0: 2056 | version "1.0.1" 2057 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2058 | 2059 | path-key@^1.0.0: 2060 | version "1.0.0" 2061 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-1.0.0.tgz#5d53d578019646c0d68800db4e146e6bdc2ac7af" 2062 | 2063 | path-key@^2.0.0: 2064 | version "2.0.1" 2065 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2066 | 2067 | path-type@^1.0.0: 2068 | version "1.1.0" 2069 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2070 | dependencies: 2071 | graceful-fs "^4.1.2" 2072 | pify "^2.0.0" 2073 | pinkie-promise "^2.0.0" 2074 | 2075 | path-type@^2.0.0: 2076 | version "2.0.0" 2077 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2078 | dependencies: 2079 | pify "^2.0.0" 2080 | 2081 | performance-now@^0.2.0: 2082 | version "0.2.0" 2083 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2084 | 2085 | pify@^2.0.0, pify@^2.3.0: 2086 | version "2.3.0" 2087 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2088 | 2089 | pinkie-promise@^1.0.0: 2090 | version "1.0.0" 2091 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-1.0.0.tgz#d1da67f5482563bb7cf57f286ae2822ecfbf3670" 2092 | dependencies: 2093 | pinkie "^1.0.0" 2094 | 2095 | pinkie-promise@^2.0.0: 2096 | version "2.0.1" 2097 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2098 | dependencies: 2099 | pinkie "^2.0.0" 2100 | 2101 | pinkie@^1.0.0: 2102 | version "1.0.0" 2103 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-1.0.0.tgz#5a47f28ba1015d0201bda7bf0f358e47bec8c7e4" 2104 | 2105 | pinkie@^2.0.0: 2106 | version "2.0.4" 2107 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2108 | 2109 | pkg-conf@^2.0.0: 2110 | version "2.0.0" 2111 | resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-2.0.0.tgz#071c87650403bccfb9c627f58751bfe47c067279" 2112 | dependencies: 2113 | find-up "^2.0.0" 2114 | load-json-file "^2.0.0" 2115 | 2116 | pkg-dir@^1.0.0: 2117 | version "1.0.0" 2118 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 2119 | dependencies: 2120 | find-up "^1.0.0" 2121 | 2122 | plur@^1.0.0: 2123 | version "1.0.0" 2124 | resolved "https://registry.yarnpkg.com/plur/-/plur-1.0.0.tgz#db85c6814f5e5e5a3b49efc28d604fec62975156" 2125 | 2126 | plur@^2.0.0: 2127 | version "2.1.2" 2128 | resolved "https://registry.yarnpkg.com/plur/-/plur-2.1.2.tgz#7482452c1a0f508e3e344eaec312c91c29dc655a" 2129 | dependencies: 2130 | irregular-plurals "^1.0.0" 2131 | 2132 | prepend-http@^1.0.1: 2133 | version "1.0.4" 2134 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 2135 | 2136 | preserve@^0.2.0: 2137 | version "0.2.0" 2138 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2139 | 2140 | pretty-format@^19.0.0: 2141 | version "19.0.0" 2142 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-19.0.0.tgz#56530d32acb98a3fa4851c4e2b9d37b420684c84" 2143 | dependencies: 2144 | ansi-styles "^3.0.0" 2145 | 2146 | pretty-ms@^0.2.1: 2147 | version "0.2.2" 2148 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-0.2.2.tgz#da879a682ff33a37011046f13d627f67c73b84f6" 2149 | dependencies: 2150 | parse-ms "^0.1.0" 2151 | 2152 | pretty-ms@^2.0.0: 2153 | version "2.1.0" 2154 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-2.1.0.tgz#4257c256df3fb0b451d6affaab021884126981dc" 2155 | dependencies: 2156 | is-finite "^1.0.1" 2157 | parse-ms "^1.0.0" 2158 | plur "^1.0.0" 2159 | 2160 | private@^0.1.6: 2161 | version "0.1.7" 2162 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2163 | 2164 | process-nextick-args@~1.0.6: 2165 | version "1.0.7" 2166 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2167 | 2168 | pseudomap@^1.0.1: 2169 | version "1.0.2" 2170 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2171 | 2172 | punycode@^1.4.1: 2173 | version "1.4.1" 2174 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2175 | 2176 | qs@~6.4.0: 2177 | version "6.4.0" 2178 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2179 | 2180 | randomatic@^1.1.3: 2181 | version "1.1.6" 2182 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 2183 | dependencies: 2184 | is-number "^2.0.2" 2185 | kind-of "^3.0.2" 2186 | 2187 | rc@^1.0.1, rc@^1.1.6, rc@^1.1.7: 2188 | version "1.2.1" 2189 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 2190 | dependencies: 2191 | deep-extend "~0.4.0" 2192 | ini "~1.3.0" 2193 | minimist "^1.2.0" 2194 | strip-json-comments "~2.0.1" 2195 | 2196 | read-pkg-up@^1.0.1: 2197 | version "1.0.1" 2198 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2199 | dependencies: 2200 | find-up "^1.0.0" 2201 | read-pkg "^1.0.0" 2202 | 2203 | read-pkg-up@^2.0.0: 2204 | version "2.0.0" 2205 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 2206 | dependencies: 2207 | find-up "^2.0.0" 2208 | read-pkg "^2.0.0" 2209 | 2210 | read-pkg@^1.0.0: 2211 | version "1.1.0" 2212 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2213 | dependencies: 2214 | load-json-file "^1.0.0" 2215 | normalize-package-data "^2.3.2" 2216 | path-type "^1.0.0" 2217 | 2218 | read-pkg@^2.0.0: 2219 | version "2.0.0" 2220 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 2221 | dependencies: 2222 | load-json-file "^2.0.0" 2223 | normalize-package-data "^2.3.2" 2224 | path-type "^2.0.0" 2225 | 2226 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5: 2227 | version "2.2.9" 2228 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.9.tgz#cf78ec6f4a6d1eb43d26488cac97f042e74b7fc8" 2229 | dependencies: 2230 | buffer-shims "~1.0.0" 2231 | core-util-is "~1.0.0" 2232 | inherits "~2.0.1" 2233 | isarray "~1.0.0" 2234 | process-nextick-args "~1.0.6" 2235 | string_decoder "~1.0.0" 2236 | util-deprecate "~1.0.1" 2237 | 2238 | readdirp@^2.0.0: 2239 | version "2.1.0" 2240 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2241 | dependencies: 2242 | graceful-fs "^4.1.2" 2243 | minimatch "^3.0.2" 2244 | readable-stream "^2.0.2" 2245 | set-immediate-shim "^1.0.1" 2246 | 2247 | redent@^1.0.0: 2248 | version "1.0.0" 2249 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 2250 | dependencies: 2251 | indent-string "^2.1.0" 2252 | strip-indent "^1.0.1" 2253 | 2254 | regenerate@^1.2.1: 2255 | version "1.3.2" 2256 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 2257 | 2258 | regenerator-runtime@^0.10.0: 2259 | version "0.10.5" 2260 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2261 | 2262 | regex-cache@^0.4.2: 2263 | version "0.4.3" 2264 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2265 | dependencies: 2266 | is-equal-shallow "^0.1.3" 2267 | is-primitive "^2.0.0" 2268 | 2269 | regexpu-core@^2.0.0: 2270 | version "2.0.0" 2271 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2272 | dependencies: 2273 | regenerate "^1.2.1" 2274 | regjsgen "^0.2.0" 2275 | regjsparser "^0.1.4" 2276 | 2277 | registry-auth-token@^3.0.1: 2278 | version "3.3.1" 2279 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.1.tgz#fb0d3289ee0d9ada2cbb52af5dfe66cb070d3006" 2280 | dependencies: 2281 | rc "^1.1.6" 2282 | safe-buffer "^5.0.1" 2283 | 2284 | registry-url@^3.0.3: 2285 | version "3.1.0" 2286 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 2287 | dependencies: 2288 | rc "^1.0.1" 2289 | 2290 | regjsgen@^0.2.0: 2291 | version "0.2.0" 2292 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2293 | 2294 | regjsparser@^0.1.4: 2295 | version "0.1.5" 2296 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2297 | dependencies: 2298 | jsesc "~0.5.0" 2299 | 2300 | release-zalgo@^1.0.0: 2301 | version "1.0.0" 2302 | resolved "https://registry.yarnpkg.com/release-zalgo/-/release-zalgo-1.0.0.tgz#09700b7e5074329739330e535c5a90fb67851730" 2303 | dependencies: 2304 | es6-error "^4.0.1" 2305 | 2306 | remove-trailing-separator@^1.0.1: 2307 | version "1.0.1" 2308 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 2309 | 2310 | repeat-element@^1.1.2: 2311 | version "1.1.2" 2312 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2313 | 2314 | repeat-string@^1.5.2: 2315 | version "1.6.1" 2316 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2317 | 2318 | repeating@^2.0.0: 2319 | version "2.0.1" 2320 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2321 | dependencies: 2322 | is-finite "^1.0.0" 2323 | 2324 | request@^2.81.0: 2325 | version "2.81.0" 2326 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2327 | dependencies: 2328 | aws-sign2 "~0.6.0" 2329 | aws4 "^1.2.1" 2330 | caseless "~0.12.0" 2331 | combined-stream "~1.0.5" 2332 | extend "~3.0.0" 2333 | forever-agent "~0.6.1" 2334 | form-data "~2.1.1" 2335 | har-validator "~4.2.1" 2336 | hawk "~3.1.3" 2337 | http-signature "~1.1.0" 2338 | is-typedarray "~1.0.0" 2339 | isstream "~0.1.2" 2340 | json-stringify-safe "~5.0.1" 2341 | mime-types "~2.1.7" 2342 | oauth-sign "~0.8.1" 2343 | performance-now "^0.2.0" 2344 | qs "~6.4.0" 2345 | safe-buffer "^5.0.1" 2346 | stringstream "~0.0.4" 2347 | tough-cookie "~2.3.0" 2348 | tunnel-agent "^0.6.0" 2349 | uuid "^3.0.0" 2350 | 2351 | require-precompiled@^0.1.0: 2352 | version "0.1.0" 2353 | resolved "https://registry.yarnpkg.com/require-precompiled/-/require-precompiled-0.1.0.tgz#5a1b52eb70ebed43eb982e974c85ab59571e56fa" 2354 | 2355 | resolve-cwd@^1.0.0: 2356 | version "1.0.0" 2357 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-1.0.0.tgz#4eaeea41ed040d1702457df64a42b2b07d246f9f" 2358 | dependencies: 2359 | resolve-from "^2.0.0" 2360 | 2361 | resolve-from@^2.0.0: 2362 | version "2.0.0" 2363 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" 2364 | 2365 | restore-cursor@^2.0.0: 2366 | version "2.0.0" 2367 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2368 | dependencies: 2369 | onetime "^2.0.0" 2370 | signal-exit "^3.0.2" 2371 | 2372 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: 2373 | version "2.6.1" 2374 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 2375 | dependencies: 2376 | glob "^7.0.5" 2377 | 2378 | safe-buffer@^5.0.1: 2379 | version "5.0.1" 2380 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 2381 | 2382 | semver-diff@^2.0.0: 2383 | version "2.1.0" 2384 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 2385 | dependencies: 2386 | semver "^5.0.3" 2387 | 2388 | "semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0: 2389 | version "5.3.0" 2390 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2391 | 2392 | set-blocking@~2.0.0: 2393 | version "2.0.0" 2394 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2395 | 2396 | set-immediate-shim@^1.0.1: 2397 | version "1.0.1" 2398 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2399 | 2400 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2401 | version "3.0.2" 2402 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2403 | 2404 | slash@^1.0.0: 2405 | version "1.0.0" 2406 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2407 | 2408 | slice-ansi@0.0.4: 2409 | version "0.0.4" 2410 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 2411 | 2412 | slide@^1.1.5: 2413 | version "1.1.6" 2414 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 2415 | 2416 | sntp@1.x.x: 2417 | version "1.0.9" 2418 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2419 | dependencies: 2420 | hoek "2.x.x" 2421 | 2422 | sort-keys@^1.1.1, sort-keys@^1.1.2: 2423 | version "1.1.2" 2424 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" 2425 | dependencies: 2426 | is-plain-obj "^1.0.0" 2427 | 2428 | source-map-support@^0.4.0, source-map-support@^0.4.2: 2429 | version "0.4.15" 2430 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" 2431 | dependencies: 2432 | source-map "^0.5.6" 2433 | 2434 | source-map@^0.5.0, source-map@^0.5.6: 2435 | version "0.5.6" 2436 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 2437 | 2438 | spdx-correct@~1.0.0: 2439 | version "1.0.2" 2440 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2441 | dependencies: 2442 | spdx-license-ids "^1.0.2" 2443 | 2444 | spdx-expression-parse@~1.0.0: 2445 | version "1.0.4" 2446 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2447 | 2448 | spdx-license-ids@^1.0.2: 2449 | version "1.2.2" 2450 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2451 | 2452 | sprintf-js@~1.0.2: 2453 | version "1.0.3" 2454 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2455 | 2456 | sshpk@^1.7.0: 2457 | version "1.13.0" 2458 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.0.tgz#ff2a3e4fd04497555fed97b39a0fd82fafb3a33c" 2459 | dependencies: 2460 | asn1 "~0.2.3" 2461 | assert-plus "^1.0.0" 2462 | dashdash "^1.12.0" 2463 | getpass "^0.1.1" 2464 | optionalDependencies: 2465 | bcrypt-pbkdf "^1.0.0" 2466 | ecc-jsbn "~0.1.1" 2467 | jodid25519 "^1.0.0" 2468 | jsbn "~0.1.0" 2469 | tweetnacl "~0.14.0" 2470 | 2471 | stack-utils@^1.0.0: 2472 | version "1.0.1" 2473 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620" 2474 | 2475 | string-width@^1.0.1, string-width@^1.0.2: 2476 | version "1.0.2" 2477 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2478 | dependencies: 2479 | code-point-at "^1.0.0" 2480 | is-fullwidth-code-point "^1.0.0" 2481 | strip-ansi "^3.0.0" 2482 | 2483 | string-width@^2.0.0: 2484 | version "2.0.0" 2485 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 2486 | dependencies: 2487 | is-fullwidth-code-point "^2.0.0" 2488 | strip-ansi "^3.0.0" 2489 | 2490 | string_decoder@~1.0.0: 2491 | version "1.0.1" 2492 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.1.tgz#62e200f039955a6810d8df0a33ffc0f013662d98" 2493 | dependencies: 2494 | safe-buffer "^5.0.1" 2495 | 2496 | stringstream@~0.0.4: 2497 | version "0.0.5" 2498 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2499 | 2500 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2501 | version "3.0.1" 2502 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2503 | dependencies: 2504 | ansi-regex "^2.0.0" 2505 | 2506 | strip-ansi@~0.1.0: 2507 | version "0.1.1" 2508 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-0.1.1.tgz#39e8a98d044d150660abe4a6808acf70bb7bc991" 2509 | 2510 | strip-bom-buf@^1.0.0: 2511 | version "1.0.0" 2512 | resolved "https://registry.yarnpkg.com/strip-bom-buf/-/strip-bom-buf-1.0.0.tgz#1cb45aaf57530f4caf86c7f75179d2c9a51dd572" 2513 | dependencies: 2514 | is-utf8 "^0.2.1" 2515 | 2516 | strip-bom@^2.0.0: 2517 | version "2.0.0" 2518 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2519 | dependencies: 2520 | is-utf8 "^0.2.0" 2521 | 2522 | strip-bom@^3.0.0: 2523 | version "3.0.0" 2524 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2525 | 2526 | strip-eof@^1.0.0: 2527 | version "1.0.0" 2528 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 2529 | 2530 | strip-indent@^1.0.1: 2531 | version "1.0.1" 2532 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 2533 | dependencies: 2534 | get-stdin "^4.0.1" 2535 | 2536 | strip-json-comments@~2.0.1: 2537 | version "2.0.1" 2538 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2539 | 2540 | supports-color@^2.0.0: 2541 | version "2.0.0" 2542 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2543 | 2544 | supports-color@^3.2.3: 2545 | version "3.2.3" 2546 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 2547 | dependencies: 2548 | has-flag "^1.0.0" 2549 | 2550 | symbol-observable@^0.2.2: 2551 | version "0.2.4" 2552 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-0.2.4.tgz#95a83db26186d6af7e7a18dbd9760a2f86d08f40" 2553 | 2554 | symbol-observable@^1.0.4: 2555 | version "1.0.4" 2556 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" 2557 | 2558 | tar-pack@^3.4.0: 2559 | version "3.4.0" 2560 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 2561 | dependencies: 2562 | debug "^2.2.0" 2563 | fstream "^1.0.10" 2564 | fstream-ignore "^1.0.5" 2565 | once "^1.3.3" 2566 | readable-stream "^2.1.4" 2567 | rimraf "^2.5.1" 2568 | tar "^2.2.1" 2569 | uid-number "^0.0.6" 2570 | 2571 | tar@^2.2.1: 2572 | version "2.2.1" 2573 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2574 | dependencies: 2575 | block-stream "*" 2576 | fstream "^1.0.2" 2577 | inherits "2" 2578 | 2579 | term-size@^0.1.0: 2580 | version "0.1.1" 2581 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-0.1.1.tgz#87360b96396cab5760963714cda0d0cbeecad9ca" 2582 | dependencies: 2583 | execa "^0.4.0" 2584 | 2585 | text-table@^0.2.0: 2586 | version "0.2.0" 2587 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2588 | 2589 | through2@^2.0.0: 2590 | version "2.0.3" 2591 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 2592 | dependencies: 2593 | readable-stream "^2.1.5" 2594 | xtend "~4.0.1" 2595 | 2596 | time-require@^0.1.2: 2597 | version "0.1.2" 2598 | resolved "https://registry.yarnpkg.com/time-require/-/time-require-0.1.2.tgz#f9e12cb370fc2605e11404582ba54ef5ca2b2d98" 2599 | dependencies: 2600 | chalk "^0.4.0" 2601 | date-time "^0.1.1" 2602 | pretty-ms "^0.2.1" 2603 | text-table "^0.2.0" 2604 | 2605 | timed-out@^4.0.0: 2606 | version "4.0.1" 2607 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" 2608 | 2609 | to-fast-properties@^1.0.1: 2610 | version "1.0.3" 2611 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2612 | 2613 | tough-cookie@~2.3.0: 2614 | version "2.3.2" 2615 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 2616 | dependencies: 2617 | punycode "^1.4.1" 2618 | 2619 | trim-newlines@^1.0.0: 2620 | version "1.0.0" 2621 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 2622 | 2623 | trim-right@^1.0.1: 2624 | version "1.0.1" 2625 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2626 | 2627 | tunnel-agent@^0.6.0: 2628 | version "0.6.0" 2629 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2630 | dependencies: 2631 | safe-buffer "^5.0.1" 2632 | 2633 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2634 | version "0.14.5" 2635 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2636 | 2637 | uid-number@^0.0.6: 2638 | version "0.0.6" 2639 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2640 | 2641 | uid2@0.0.3: 2642 | version "0.0.3" 2643 | resolved "https://registry.yarnpkg.com/uid2/-/uid2-0.0.3.tgz#483126e11774df2f71b8b639dcd799c376162b82" 2644 | 2645 | unique-string@^1.0.0: 2646 | version "1.0.0" 2647 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" 2648 | dependencies: 2649 | crypto-random-string "^1.0.0" 2650 | 2651 | unique-temp-dir@^1.0.0: 2652 | version "1.0.0" 2653 | resolved "https://registry.yarnpkg.com/unique-temp-dir/-/unique-temp-dir-1.0.0.tgz#6dce95b2681ca003eebfb304a415f9cbabcc5385" 2654 | dependencies: 2655 | mkdirp "^0.5.1" 2656 | os-tmpdir "^1.0.1" 2657 | uid2 "0.0.3" 2658 | 2659 | unzip-response@^2.0.1: 2660 | version "2.0.1" 2661 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" 2662 | 2663 | update-notifier@^2.1.0: 2664 | version "2.1.0" 2665 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.1.0.tgz#ec0c1e53536b76647a24b77cb83966d9315123d9" 2666 | dependencies: 2667 | boxen "^1.0.0" 2668 | chalk "^1.0.0" 2669 | configstore "^3.0.0" 2670 | is-npm "^1.0.0" 2671 | latest-version "^3.0.0" 2672 | lazy-req "^2.0.0" 2673 | semver-diff "^2.0.0" 2674 | xdg-basedir "^3.0.0" 2675 | 2676 | url-parse-lax@^1.0.0: 2677 | version "1.0.0" 2678 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 2679 | dependencies: 2680 | prepend-http "^1.0.1" 2681 | 2682 | util-deprecate@~1.0.1: 2683 | version "1.0.2" 2684 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2685 | 2686 | uuid@^3.0.0: 2687 | version "3.0.1" 2688 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 2689 | 2690 | validate-npm-package-license@^3.0.1: 2691 | version "3.0.1" 2692 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2693 | dependencies: 2694 | spdx-correct "~1.0.0" 2695 | spdx-expression-parse "~1.0.0" 2696 | 2697 | verror@1.3.6: 2698 | version "1.3.6" 2699 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 2700 | dependencies: 2701 | extsprintf "1.0.2" 2702 | 2703 | which@^1.2.8, which@^1.2.9: 2704 | version "1.2.14" 2705 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 2706 | dependencies: 2707 | isexe "^2.0.0" 2708 | 2709 | wide-align@^1.1.0: 2710 | version "1.1.2" 2711 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 2712 | dependencies: 2713 | string-width "^1.0.2" 2714 | 2715 | widest-line@^1.0.0: 2716 | version "1.0.0" 2717 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-1.0.0.tgz#0c09c85c2a94683d0d7eaf8ee097d564bf0e105c" 2718 | dependencies: 2719 | string-width "^1.0.1" 2720 | 2721 | wrappy@1: 2722 | version "1.0.2" 2723 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2724 | 2725 | write-file-atomic@^1.1.4: 2726 | version "1.3.4" 2727 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f" 2728 | dependencies: 2729 | graceful-fs "^4.1.11" 2730 | imurmurhash "^0.1.4" 2731 | slide "^1.1.5" 2732 | 2733 | write-file-atomic@^2.0.0: 2734 | version "2.1.0" 2735 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.1.0.tgz#1769f4b551eedce419f0505deae2e26763542d37" 2736 | dependencies: 2737 | graceful-fs "^4.1.11" 2738 | imurmurhash "^0.1.4" 2739 | slide "^1.1.5" 2740 | 2741 | write-json-file@^2.0.0: 2742 | version "2.2.0" 2743 | resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-2.2.0.tgz#51862506bbb3b619eefab7859f1fd6c6d0530876" 2744 | dependencies: 2745 | detect-indent "^5.0.0" 2746 | graceful-fs "^4.1.2" 2747 | make-dir "^1.0.0" 2748 | pify "^2.0.0" 2749 | sort-keys "^1.1.1" 2750 | write-file-atomic "^2.0.0" 2751 | 2752 | write-pkg@^2.0.0: 2753 | version "2.1.0" 2754 | resolved "https://registry.yarnpkg.com/write-pkg/-/write-pkg-2.1.0.tgz#353aa44c39c48c21440f5c08ce6abd46141c9c08" 2755 | dependencies: 2756 | sort-keys "^1.1.2" 2757 | write-json-file "^2.0.0" 2758 | 2759 | xdg-basedir@^3.0.0: 2760 | version "3.0.0" 2761 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" 2762 | 2763 | xtend@^4.0.0, xtend@~4.0.1: 2764 | version "4.0.1" 2765 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2766 | 2767 | yallist@^2.0.0: 2768 | version "2.1.2" 2769 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 2770 | --------------------------------------------------------------------------------