├── .babelrc ├── .eslintrc ├── .gitignore ├── .npmignore ├── API-EXAMPLES.md ├── BUG-EXAMPLES.md ├── LICENSE ├── README.md ├── package.json ├── src ├── FlushThunks.js ├── Reducer.js ├── Selector.js ├── Thunk.js ├── index.js └── utils.js ├── test ├── FlushThunks.spec.js ├── Reducer.spec.js ├── Selector.spec.js ├── Thunk.spec.js ├── bug-examples.spec.js └── index.spec.js ├── wallaby.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["stage-0", "latest", "react"] 3 | } 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "parser": "babel-eslint", 3 | "env": { 4 | "es6": true, 5 | "node": true 6 | }, 7 | "parserOptions": { 8 | "ecmaVersion": 7, 9 | "sourceType": "module", 10 | "ecmaFeatures": { 11 | "impliedStrict": true, 12 | "jsx": true, 13 | "experimentalObjectRestSpread": true 14 | } 15 | }, 16 | "plugins": [ 17 | "react", 18 | "react-native", 19 | "babel" 20 | ], 21 | "rules": { 22 | /* 23 | * possible errors 24 | */ 25 | "comma-dangle": "error", 26 | "no-cond-assign": [ 27 | "error", 28 | "except-parens" 29 | ], 30 | "no-console": "warn", 31 | "no-constant-condition": "error", 32 | "no-control-regex": "error", 33 | "no-debugger": "warn", 34 | "no-dupe-args": "error", 35 | "no-dupe-keys": "error", 36 | "no-duplicate-case": "error", 37 | "no-empty": "error", 38 | "no-empty-character-class": "error", 39 | "no-ex-assign": "error", 40 | "no-extra-boolean-cast": "error", 41 | "no-extra-parens": 0, 42 | "no-extra-semi": "error", 43 | "no-func-assign": "error", 44 | "no-inner-declarations": "error", 45 | "no-invalid-regexp": "error", 46 | "no-irregular-whitespace": "error", 47 | "no-negated-in-lhs": "error", 48 | "no-obj-calls": "error", 49 | "no-regex-spaces": "error", 50 | "no-sparse-arrays": "error", 51 | "no-unexpected-multiline": "error", 52 | "no-unreachable": "error", 53 | "use-isnan": "error", 54 | "valid-jsdoc": 0, 55 | "valid-typeof": "error", 56 | /* 57 | * best practices 58 | */ 59 | "accessor-pairs": "warn", 60 | "array-callback-return": 0, 61 | "block-scoped-var": "error", 62 | "complexity": 0, 63 | "consistent-return": "error", 64 | "curly": [ 65 | "error", 66 | "all" 67 | ], 68 | "default-case": "error", 69 | "dot-location": [ 70 | "error", 71 | "property" 72 | ], 73 | "dot-notation": "error", 74 | "eqeqeq": "error", 75 | "guard-for-in": "error", 76 | "no-alert": "error", 77 | "no-caller": "error", 78 | "no-case-declarations": "error", 79 | "no-div-regex": 0, 80 | "no-else-return": 0, 81 | "no-empty-function": "error", 82 | "no-empty-pattern": "error", 83 | "no-eq-null": "error", 84 | "no-eval": "error", 85 | "no-extend-native": "error", 86 | "no-extra-bind": "error", 87 | "no-extra-label": "error", 88 | "no-fallthrough": "error", 89 | "no-floating-decimal": "error", 90 | "no-implicit-coercion": "error", 91 | "no-implicit-globals": 0, 92 | "no-implied-eval": "error", 93 | "no-invalid-this": 0, 94 | "no-iterator": "error", 95 | "no-labels": "error", 96 | "no-lone-blocks": "error", 97 | "no-loop-func": "error", 98 | "no-magic-numbers": 0, 99 | "no-multi-spaces": "error", 100 | "no-multi-str": 0, 101 | "no-native-reassign": "error", 102 | "no-new": "error", 103 | "no-new-func": "error", 104 | "no-new-wrappers": "error", 105 | "no-octal": "error", 106 | "no-octal-escape": "error", 107 | "no-param-reassign": "error", 108 | "no-proto": "error", 109 | "no-redeclare": 0, 110 | "no-return-assign": "error", 111 | "no-script-url": "error", 112 | "no-self-assign": "error", 113 | "no-self-compare": "error", 114 | "no-sequences": "error", 115 | "no-throw-literal": "error", 116 | "no-unmodified-loop-condition": 0, 117 | "no-unused-expressions": "error", 118 | "no-unused-labels": 0, 119 | "no-useless-call": "error", 120 | "no-useless-concat": "error", 121 | "no-void": "error", 122 | "no-warning-comments": 0, 123 | "no-with": "error", 124 | "radix": 0, 125 | "vars-on-top": 0, 126 | "wrap-iife": "error", 127 | "yoda": 0, 128 | "strict": [ 129 | "error", 130 | "never" 131 | ], 132 | /* 133 | * variables 134 | */ 135 | "init-declarations": 0, 136 | "no-catch-shadow": "error", 137 | "no-delete-var": "error", 138 | "no-label-var": "error", 139 | "no-restricted-globals": "error", 140 | "no-shadow": "error", 141 | "no-shadow-restricted-names": "error", 142 | "no-undef": 0, 143 | "no-undef-init": "error", 144 | "no-undefined": 0, 145 | "no-unused-vars": 0, 146 | "no-use-before-define": 0, 147 | /* 148 | * Node.js 149 | */ 150 | "callback-return": 0, 151 | "global-require": 0, 152 | "handle-callback-err": 0, 153 | "no-mixed-requires": "error", 154 | "no-new-require": "error", 155 | "no-path-concat": "error", 156 | "no-process-env": 0, 157 | "no-process-exit": "error", 158 | "no-restricted-modules": 0, 159 | "no-sync": 0, 160 | /* 161 | * style 162 | */ 163 | "array-bracket-spacing": [ 164 | "error", 165 | "never" 166 | ], 167 | "block-spacing": "error", 168 | "brace-style": [ 169 | "error", 170 | "1tbs" 171 | ], 172 | "camelcase": [ 173 | "error", 174 | { 175 | "properties": "never" 176 | } 177 | ], 178 | "comma-spacing": [ 179 | "error", 180 | { 181 | "before": false, 182 | "after": true 183 | } 184 | ], 185 | "comma-style": [ 186 | "error", 187 | "last" 188 | ], 189 | "computed-property-spacing": [ 190 | "error", 191 | "never" 192 | ], 193 | "consistent-this": [ 194 | "error", 195 | "self" 196 | ], 197 | "eol-last": [ 198 | "error", 199 | "unix" 200 | ], 201 | "func-names": 0, 202 | "func-style": 0, 203 | "id-blacklist": 0, 204 | "id-length": 0, 205 | "id-match": 0, 206 | "indent": [ 207 | "error", 208 | 2, 209 | { 210 | "SwitchCase": 1 211 | } 212 | ], 213 | "jsx-quotes": "error", 214 | "key-spacing": [ 215 | "error", 216 | { 217 | "singleLine": { 218 | "beforeColon": false, 219 | "afterColon": true, 220 | "mode": "strict" 221 | }, 222 | "multiLine": { 223 | "beforeColon": false, 224 | "afterColon": true, 225 | "mode": "strict" 226 | } 227 | } 228 | ], 229 | "keyword-spacing": [ 230 | "error", 231 | { 232 | "before": true, 233 | "after": true 234 | } 235 | ], 236 | "linebreak-style": [ 237 | "error", 238 | "unix" 239 | ], 240 | "lines-around-comment": 0, 241 | "max-depth": [ 242 | "error", 243 | 4 244 | ], 245 | "max-len": [ 246 | "warn", 247 | 150 248 | ], 249 | "max-nested-callbacks": [ 250 | "error", 251 | 4 252 | ], 253 | "max-params": [ 254 | "error", 255 | 6 256 | ], 257 | "max-statements": [ 258 | "error", 259 | 15, 260 | { 261 | "ignoreTopLevelFunctions": true 262 | } 263 | ], 264 | "new-cap": [ 265 | "error", 266 | { 267 | "capIsNewExceptions": [ 268 | "Immutable" 269 | ] 270 | } 271 | ], 272 | "new-parens": "error", 273 | "newline-after-var": 0, 274 | "newline-before-return": 0, 275 | "newline-per-chained-call": 0, 276 | "no-array-constructor": "error", 277 | "no-bitwise": 0, 278 | "no-continue": 0, 279 | "no-inline-comments": 0, 280 | "no-lonely-if": "error", 281 | "no-mixed-spaces-and-tabs": 0, 282 | "no-multiple-empty-lines": [ 283 | "error", 284 | { 285 | "max": 1 286 | } 287 | ], 288 | "no-negated-condition": 0, 289 | "no-nested-ternary": "error", 290 | "no-new-object": "error", 291 | "no-plusplus": 0, 292 | "no-restricted-syntax": 0, 293 | "no-spaced-func": "error", 294 | "no-ternary": 0, 295 | "no-trailing-spaces": [ 296 | "error", 297 | { 298 | "skipBlankLines": true 299 | } 300 | ], 301 | "no-underscore-dangle": 0, 302 | "no-unneeded-ternary": "error", 303 | "no-whitespace-before-property": "error", 304 | "object-curly-spacing": [ 305 | "error", 306 | "never" 307 | ], 308 | "one-var": 0, 309 | "one-var-declaration-per-line": 0, 310 | "operator-assignment": 0, 311 | "operator-linebreak": [ 312 | "error", 313 | "before" 314 | ], 315 | "padded-blocks": [ 316 | "error", 317 | "never" 318 | ], 319 | "quote-props": [ 320 | "error", 321 | "consistent-as-needed" 322 | ], 323 | "quotes": 0, 324 | "require-jsdoc": 0, 325 | "semi": [ 326 | "error", 327 | "always" 328 | ], 329 | "semi-spacing": [ 330 | "error", 331 | { 332 | "before": false, 333 | "after": true 334 | } 335 | ], 336 | "sort-imports": 0, 337 | "sort-vars": 0, 338 | "space-before-blocks": [ 339 | "error", 340 | "always" 341 | ], 342 | "space-before-function-paren": [ 343 | "error", 344 | "never" 345 | ], 346 | "space-in-parens": [ 347 | "error", 348 | "never" 349 | ], 350 | "space-infix-ops": "error", 351 | "space-unary-ops": "error", 352 | "spaced-comment": 0, 353 | "wrap-regex": "error", 354 | /* 355 | * ECMAScript 6 356 | */ 357 | "arrow-body-style": 0, 358 | "arrow-parens": 0, 359 | "arrow-spacing": [ 360 | "error", 361 | { 362 | "before": true, 363 | "after": true 364 | } 365 | ], 366 | "constructor-super": "error", 367 | "generator-star-spacing": 0, 368 | "no-class-assign": "error", 369 | "no-confusing-arrow": "error", 370 | "no-const-assign": "error", 371 | "no-dupe-class-members": "error", 372 | "no-new-symbol": "error", 373 | "no-restricted-imports": 0, 374 | "no-this-before-super": "error", 375 | "no-useless-constructor": 0, 376 | "no-var": "error", 377 | "object-shorthand": 0, 378 | "prefer-arrow-callback": 0, 379 | "prefer-const": "error", 380 | "prefer-reflect": 0, 381 | "prefer-rest-params": "error", 382 | "prefer-spread": "error", 383 | "prefer-template": 0, 384 | "require-yield": 0, 385 | "template-curly-spacing": [ 386 | "error", 387 | "never" 388 | ], 389 | "yield-star-spacing": [ 390 | "error", 391 | "after" 392 | ], 393 | /* 394 | * react plugin 395 | */ 396 | "react/display-name": 0, 397 | "react/forbid-prop-types": [ 398 | "error", 399 | { 400 | "forbid": [ 401 | "any" 402 | ] 403 | } 404 | ], 405 | "react/no-danger": "error", 406 | "react/no-deprecated": "error", 407 | "react/no-did-mount-set-state": [ 408 | "error", 409 | "allow-in-func" 410 | ], 411 | "react/no-did-update-set-state": [ 412 | "error", 413 | "allow-in-func" 414 | ], 415 | "react/no-direct-mutation-state": "error", 416 | "react/no-is-mounted": "error", 417 | "react/no-multi-comp": "error", 418 | "react/no-set-state": 0, 419 | "react/no-string-refs": 0, 420 | "react/no-unknown-property": 0, 421 | "react/prefer-es6-class": [ 422 | "error", 423 | "always" 424 | ], 425 | "react/prefer-stateless-function": 0, 426 | "react/prop-types": "error", 427 | "react/react-in-jsx-scope": "error", 428 | "react/require-extension": 0, 429 | "react/self-closing-comp": "error", 430 | "react/sort-comp": [ 431 | "error", 432 | { 433 | "order": [ 434 | "static-methods", 435 | "lifecycle", 436 | "/^on.+$/", 437 | "/^(get|set)(?!(InitialState$|DefaultProps$|ChildContext$)).+$/", 438 | "everything-else", 439 | "/^render.+$/", 440 | "render" 441 | ] 442 | } 443 | ], 444 | "react/sort-prop-types": 0, 445 | "react/wrap-multilines": "error", 446 | "react/jsx-boolean-value": [ 447 | "error", 448 | "always" 449 | ], 450 | "react/jsx-closing-bracket-location": "error", 451 | "react/jsx-curly-spacing": [ 452 | "error", 453 | "never" 454 | ], 455 | "react/jsx-equals-spacing": [ 456 | "error", 457 | "never" 458 | ], 459 | "react/jsx-handler-names": [ 460 | "error", 461 | { 462 | "eventHandlerPropPrefix": "handle" 463 | } 464 | ], 465 | "react/jsx-indent-props": [ 466 | 0, 467 | 2 468 | ], 469 | "react/jsx-indent": [ 470 | "error", 471 | 2 472 | ], 473 | "react/jsx-key": "error", 474 | "react/jsx-max-props-per-line": [ 475 | "error", 476 | { 477 | "maximum": 2 478 | } 479 | ], 480 | "react/jsx-no-bind": 0, 481 | "react/jsx-no-duplicate-props": [ 482 | "error", 483 | { 484 | "ignoreCase": true 485 | } 486 | ], 487 | "react/jsx-no-literals": "error", 488 | "react/jsx-no-undef": "error", 489 | "react/jsx-pascal-case": "error", 490 | "react/jsx-sort-props": 0, 491 | "react/jsx-space-before-closing": 0, 492 | "react/jsx-uses-react": "error", 493 | "react/jsx-uses-vars": "error", 494 | /* 495 | * react-native plugin 496 | */ 497 | "react-native/no-unused-styles": "error", 498 | "react-native/split-platform-components": "error", 499 | /* 500 | * babel plugin 501 | */ 502 | "babel/generator-star-spacing": [ 503 | "error", 504 | "after" 505 | ], 506 | "babel/new-cap": [ 507 | "error", 508 | { 509 | "capIsNewExceptions": [ 510 | "Immutable" 511 | ] 512 | } 513 | ], 514 | "babel/array-bracket-spacing": [ 515 | "error", 516 | "never" 517 | ], 518 | "babel/object-curly-spacing": [ 519 | "error", 520 | "never" 521 | ], 522 | "babel/object-shorthand": 0, 523 | "babel/arrow-parens": [ 524 | "error", 525 | "always" 526 | ], 527 | "babel/no-await-in-loop": 0 528 | } 529 | } 530 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | 3 | ############ 4 | # Node 5 | ############ 6 | # Logs 7 | logs 8 | *.log 9 | npm-debug.log* 10 | 11 | # Runtime data 12 | pids 13 | *.pid 14 | *.seed 15 | 16 | # Directory for instrumented libs generated by jscoverage/JSCover 17 | lib-cov 18 | 19 | # Coverage directory used by tools like istanbul 20 | coverage 21 | 22 | # nyc test coverage 23 | .nyc_output 24 | 25 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 26 | .grunt 27 | 28 | # node-waf configuration 29 | .lock-wscript 30 | 31 | # Compiled binary addons (http://nodejs.org/api/addons.html) 32 | build/Release 33 | 34 | # Dependency directories 35 | node_modules 36 | jspm_packages 37 | 38 | # Optional npm cache directory 39 | .npm 40 | 41 | # Optional REPL history 42 | .node_repl_history 43 | 44 | ################ 45 | # JetBrains 46 | ################ 47 | .idea 48 | 49 | ## File-based project format: 50 | *.iws 51 | 52 | ## Plugin-specific files: 53 | 54 | # IntelliJ 55 | /out/ 56 | 57 | # mpeltonen/sbt-idea plugin 58 | .idea_modules/ 59 | 60 | # JIRA plugin 61 | atlassian-ide-plugin.xml 62 | 63 | # Crashlytics plugin (for Android Studio and IntelliJ) 64 | com_crashlytics_export_strings.xml 65 | crashlytics.properties 66 | crashlytics-build.properties 67 | fabric.properties 68 | 69 | 70 | ############ 71 | # iOS 72 | ############ 73 | # Xcode 74 | # 75 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 76 | 77 | ## Build generated 78 | ios/build/ 79 | ios/DerivedData/ 80 | 81 | ## Various settings 82 | *.pbxuser 83 | !default.pbxuser 84 | *.mode1v3 85 | !default.mode1v3 86 | *.mode2v3 87 | !default.mode2v3 88 | *.perspectivev3 89 | !default.perspectivev3 90 | ios/xcuserdata/ 91 | 92 | ## Other 93 | *.moved-aside 94 | *.xcuserstate 95 | 96 | ## Obj-C/Swift specific 97 | *.hmap 98 | *.ipa 99 | *.dSYM.zip 100 | *.dSYM 101 | 102 | # CocoaPods 103 | # 104 | # We recommend against adding the Pods directory to your .gitignore. However 105 | # you should judge for yourself, the pros and cons are mentioned at: 106 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control 107 | # 108 | ios/Pods/ 109 | 110 | # Carthage 111 | # 112 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 113 | # Carthage/Checkouts 114 | 115 | Carthage/Build 116 | 117 | # fastlane 118 | # 119 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 120 | # screenshots whenever they are needed. 121 | # For more information about the recommended setup visit: 122 | # https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md 123 | 124 | fastlane/report.xml 125 | fastlane/screenshots 126 | 127 | 128 | ############ 129 | # Android 130 | ############ 131 | # Built application files 132 | *.apk 133 | *.ap_ 134 | 135 | # Files for the Dalvik VM 136 | *.dex 137 | 138 | # Java class files 139 | *.class 140 | 141 | # Generated files 142 | android/bin/ 143 | android/gen/ 144 | android/out/ 145 | 146 | # Gradle files 147 | android/.gradle/ 148 | android/build/ 149 | 150 | # Local configuration file (sdk path, etc) 151 | local.properties 152 | 153 | # Proguard folder generated by Eclipse 154 | android/proguard/ 155 | 156 | # Log Files 157 | *.log 158 | 159 | # Android Studio Navigation editor temp files 160 | android/.navigation/ 161 | 162 | # Android Studio captures folder 163 | android/captures/ 164 | 165 | # Intellij 166 | *.iml 167 | 168 | # Keystore files 169 | *.jks 170 | 171 | ################## 172 | # React-Native 173 | ################## 174 | # OSX 175 | # 176 | .DS_Store 177 | 178 | # Xcode 179 | # 180 | build/ 181 | *.pbxuser 182 | !default.pbxuser 183 | *.mode1v3 184 | !default.mode1v3 185 | *.mode2v3 186 | !default.mode2v3 187 | *.perspectivev3 188 | !default.perspectivev3 189 | xcuserdata 190 | *.xccheckout 191 | *.moved-aside 192 | DerivedData 193 | *.hmap 194 | *.ipa 195 | *.xcuserstate 196 | project.xcworkspace 197 | 198 | # Android/IJ 199 | # 200 | .idea 201 | .gradle 202 | local.properties 203 | 204 | # node.js 205 | # 206 | node_modules/ 207 | npm-debug.log 208 | 209 | # BUCK 210 | buck-out/ 211 | \.buckd/ 212 | android/app/libs 213 | android/keystores/debug.keystore 214 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | test/ 3 | .npmignore 4 | 5 | 6 | 7 | ################# 8 | # from .gitignore: 9 | ################ 10 | 11 | 12 | ############ 13 | # Node 14 | ############ 15 | # Logs 16 | logs 17 | *.log 18 | npm-debug.log* 19 | 20 | # Runtime data 21 | pids 22 | *.pid 23 | *.seed 24 | 25 | # Directory for instrumented libs generated by jscoverage/JSCover 26 | lib-cov 27 | 28 | # Coverage directory used by tools like istanbul 29 | coverage 30 | 31 | # nyc test coverage 32 | .nyc_output 33 | 34 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 35 | .grunt 36 | 37 | # node-waf configuration 38 | .lock-wscript 39 | 40 | # Compiled binary addons (http://nodejs.org/api/addons.html) 41 | build/Release 42 | 43 | # Dependency directories 44 | node_modules 45 | jspm_packages 46 | 47 | # Optional npm cache directory 48 | .npm 49 | 50 | # Optional REPL history 51 | .node_repl_history 52 | 53 | ################ 54 | # JetBrains 55 | ################ 56 | .idea 57 | 58 | ## File-based project format: 59 | *.iws 60 | 61 | ## Plugin-specific files: 62 | 63 | # IntelliJ 64 | /out/ 65 | 66 | # mpeltonen/sbt-idea plugin 67 | .idea_modules/ 68 | 69 | # JIRA plugin 70 | atlassian-ide-plugin.xml 71 | 72 | # Crashlytics plugin (for Android Studio and IntelliJ) 73 | com_crashlytics_export_strings.xml 74 | crashlytics.properties 75 | crashlytics-build.properties 76 | fabric.properties 77 | 78 | 79 | ############ 80 | # iOS 81 | ############ 82 | # Xcode 83 | # 84 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 85 | 86 | ## Build generated 87 | ios/build/ 88 | ios/DerivedData/ 89 | 90 | ## Various settings 91 | *.pbxuser 92 | !default.pbxuser 93 | *.mode1v3 94 | !default.mode1v3 95 | *.mode2v3 96 | !default.mode2v3 97 | *.perspectivev3 98 | !default.perspectivev3 99 | ios/xcuserdata/ 100 | 101 | ## Other 102 | *.moved-aside 103 | *.xcuserstate 104 | 105 | ## Obj-C/Swift specific 106 | *.hmap 107 | *.ipa 108 | *.dSYM.zip 109 | *.dSYM 110 | 111 | # CocoaPods 112 | # 113 | # We recommend against adding the Pods directory to your .gitignore. However 114 | # you should judge for yourself, the pros and cons are mentioned at: 115 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control 116 | # 117 | ios/Pods/ 118 | 119 | # Carthage 120 | # 121 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 122 | # Carthage/Checkouts 123 | 124 | Carthage/Build 125 | 126 | # fastlane 127 | # 128 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 129 | # screenshots whenever they are needed. 130 | # For more information about the recommended setup visit: 131 | # https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md 132 | 133 | fastlane/report.xml 134 | fastlane/screenshots 135 | 136 | 137 | ############ 138 | # Android 139 | ############ 140 | # Built application files 141 | *.apk 142 | *.ap_ 143 | 144 | # Files for the Dalvik VM 145 | *.dex 146 | 147 | # Java class files 148 | *.class 149 | 150 | # Generated files 151 | android/bin/ 152 | android/gen/ 153 | android/out/ 154 | 155 | # Gradle files 156 | .gradle/ 157 | android/.gradle/ 158 | android/build/ 159 | android/*/build/ 160 | 161 | # Local configuration file (sdk path, etc) 162 | local.properties 163 | 164 | # Proguard folder generated by Eclipse 165 | android/proguard/ 166 | 167 | # Log Files 168 | *.log 169 | 170 | # Android Studio Navigation editor temp files 171 | android/.navigation/ 172 | 173 | # Android Studio captures folder 174 | android/captures/ 175 | 176 | # Intellij 177 | *.iml 178 | 179 | # Keystore files 180 | *.jks 181 | 182 | ################## 183 | # React-Native 184 | ################## 185 | # OSX 186 | # 187 | .DS_Store 188 | 189 | # Xcode 190 | # 191 | build/ 192 | *.pbxuser 193 | !default.pbxuser 194 | *.mode1v3 195 | !default.mode1v3 196 | *.mode2v3 197 | !default.mode2v3 198 | *.perspectivev3 199 | !default.perspectivev3 200 | xcuserdata 201 | *.xccheckout 202 | *.moved-aside 203 | DerivedData 204 | *.hmap 205 | *.ipa 206 | *.xcuserstate 207 | project.xcworkspace 208 | 209 | # Android/IJ 210 | # 211 | .idea 212 | android/.idea 213 | android/.gradle 214 | android/local.properties 215 | 216 | # node.js 217 | # 218 | node_modules/ 219 | npm-debug.log 220 | 221 | # BUCK 222 | buck-out/ 223 | \.buckd/ 224 | android/app/libs 225 | android/keystores/debug.keystore 226 | -------------------------------------------------------------------------------- /API-EXAMPLES.md: -------------------------------------------------------------------------------- 1 | # API Examples 2 | 3 | ## Reducer 4 | 5 | ### `Reducer(reducer).withState(state).expect(action).toReturnState(result)` 6 | 7 | ```js 8 | import { Reducer } from 'redux-testkit'; 9 | import uut from '../reducer'; 10 | 11 | describe('counter reducer', () => { 12 | 13 | it('should handle INCREMENT action on initial state', () => { 14 | const action = { type: 'INCREMENT' }; 15 | const result = { counter: 1 }; 16 | Reducer(uut).expect(action).toReturnState(result); 17 | }); 18 | 19 | it('should handle INCREMENT action on existing state', () => { 20 | const action = { type: 'INCREMENT' }; 21 | const state = { counter: 1 }; 22 | const result = { counter: 2 }; 23 | Reducer(uut).withState(state).expect(action).toReturnState(result); 24 | }); 25 | 26 | it('should handle COMPLEX action on complex state', () => { 27 | const initialState = uut(); 28 | const action = { type: 'COMPLEX' }; 29 | const state = { ...initialState, value: 'before' }; 30 | const result = { ...initialState, value: 'after' }; 31 | Reducer(uut).withState(state).expect(action).toReturnState(result); 32 | }); 33 | 34 | }); 35 | ``` 36 | 37 |
38 | 39 | ### `Reducer(reducer).withState(state).expect(action).toChangeInState(changes)` 40 | 41 | ```js 42 | import { Reducer } from 'redux-testkit'; 43 | import uut from '../reducer'; 44 | 45 | describe('person reducer', () => { 46 | 47 | it('should handle UPDATE_NAME action and only check that name changed', () => { 48 | const action = { type: 'UPDATE_NAME', newName: 'John' }; 49 | const state = { person: { name: 'Bill', age: 35, height: 1.85 } }; 50 | const changes = { person: { name: 'John' } }; 51 | Reducer(uut).withState(state).expect(action).toChangeInState(changes); 52 | }); 53 | 54 | }); 55 | ``` 56 | 57 |
58 | 59 | ### `Reducer(reducer).withState(state).execute(action)` 60 | 61 | ```js 62 | import { Reducer } from 'redux-testkit'; 63 | import uut from '../reducer'; 64 | 65 | describe('movies reducer', () => { 66 | 67 | it('should handle ADD_MOVIE action on existing state with custom expectations', () => { 68 | const action = { type: 'ADD_MOVIE', name: 'Frozen' }; 69 | const state = { movies: [] }; 70 | const result = Reducer(uut).withState(state).execute(action); 71 | expect(result.movies.length).toEqual(1); 72 | expect(result.movies).toContain('Frozen'); 73 | }); 74 | 75 | }); 76 | ``` 77 | 78 |
79 | 80 | ## Selector 81 | 82 | ### `Selector(selector).expect(state, ...args).toReturn(result)` 83 | 84 | ```js 85 | import { Selector } from 'redux-testkit'; 86 | import * as uut from '../reducer'; 87 | 88 | describe('numbers selectors', () => { 89 | 90 | it('should select integers from numbers state', () => { 91 | const state = { numbers: [1, 2.2, 3.14, 4, 5.75, 6] }; 92 | const result = [1, 4, 6]; 93 | Selector(uut.getIntegers).expect(state).toReturn(result); 94 | }); 95 | 96 | }); 97 | ``` 98 | 99 |
100 | 101 | ### `Selector(selector).execute(state, ...args)` 102 | 103 | ```js 104 | import { Selector } from 'redux-testkit'; 105 | import * as uut from '../reducer'; 106 | 107 | describe('numbers selectors', () => { 108 | 109 | it('should select integers from numbers state', () => { 110 | const state = { numbers: [1, 2.2, 3.14, 4, 5.75, 6] }; 111 | const result = Selector(uut.getIntegers).execute(state); 112 | expect(result.length).toEqual(3); 113 | expect(result).toContain(4); 114 | }); 115 | 116 | }); 117 | ``` 118 | 119 |
120 | 121 | ## Thunk 122 | 123 | ### `Thunk(thunk).withState(state).execute(...args)` 124 | 125 | ```js 126 | import { Thunk } from 'redux-testkit'; 127 | import * as uut from '../actions'; 128 | import redditService from '../../../services/reddit'; 129 | jest.mock('../../../services/reddit'); 130 | 131 | describe('posts actions', () => { 132 | 133 | beforeEach(() => { 134 | jest.resetAllMocks(); 135 | }); 136 | 137 | it('should clear all posts', () => { 138 | const dispatches = Thunk(uut.clearPosts).execute(); 139 | expect(dispatches.length).toBe(1); 140 | expect(dispatches[0].getType()).toEqual('POSTS_UPDATED'); 141 | expect(dispatches[0].getAction()).toEqual({ type: 'POSTS_UPDATED', posts: [] }); 142 | }); 143 | 144 | it('should fetch posts from server', async () => { 145 | redditService.getPostsBySubreddit.mockReturnValueOnce(['post1', 'post2']); 146 | const dispatches = await Thunk(uut.fetchPosts).execute(); 147 | expect(dispatches.length).toBe(3); 148 | expect(dispatches[0].getAction()).toEqual({ type: 'POSTS_LOADING', loading: true }); 149 | expect(dispatches[1].getAction()).toEqual({ type: 'POSTS_UPDATED', posts: ['post1', 'post2'] }); 150 | expect(dispatches[2].getAction()).toEqual({ type: 'POSTS_LOADING', loading: false }); 151 | }); 152 | 153 | it('should filter posts', () => { 154 | const state = { loading: false, posts: ['funny1', 'scary2', 'funny3'] }; 155 | const dispatches = Thunk(uut.filterPosts).withState(state).execute('funny'); 156 | expect(dispatches.length).toBe(1); 157 | expect(dispatches[0].getAction()).toEqual({ type: 'POSTS_UPDATED', posts: ['funny1', 'funny3'] }); 158 | }); 159 | 160 | it('should test a thunk that dispatches another thunk', async () => { 161 | const dispatches = await Thunk(uut.login).execute(); 162 | expect(dispatches.length).toBe(1); 163 | expect(dispatches[0].isFunction()).toBe(true); 164 | expect(dispatches[0].getName()).toEqual('refreshSession'); 165 | }); 166 | 167 | }); 168 | ``` 169 | 170 |
171 | -------------------------------------------------------------------------------- /BUG-EXAMPLES.md: -------------------------------------------------------------------------------- 1 | # Bug Examples 2 | 3 | An assortment of easy to miss bugs that this library would find for you. 4 | 5 |
6 | 7 | ## Reducer 8 | 9 | Can you spot the bug here: 10 | 11 | ```js 12 | const initialState = { 13 | names: [] 14 | }; 15 | 16 | export default function reduce(state = initialState, action = {}) { 17 | switch (action.type) { 18 | case 'ADD_PERSON': 19 | state.names.push(action.addedName); 20 | return state; 21 | default: 22 | return state; 23 | } 24 | } 25 | ``` 26 | 27 | Writing the following test will find it: 28 | 29 | ```js 30 | import { Reducer } from 'redux-testkit'; 31 | import uut from '../reducer'; 32 | 33 | describe('person reducer', () => { 34 | 35 | it('should handle ADD_PERSON action', () => { 36 | const action = { type: 'ADD_PERSON', addedName: 'John' }; 37 | const result = { names: ['John'] }; 38 | Reducer(uut).expect(action).toReturnState(result); 39 | }); 40 | 41 | }); 42 | ``` 43 | 44 | Answer: The reducer mutates the state. 45 | 46 |
47 | 48 | ## Selector 49 | 50 | Can you spot the bug here: 51 | 52 | ```js 53 | const initialState = { 54 | names: ['John', 'Rob'] 55 | }; 56 | 57 | export function getReverseNames(state) { 58 | return state.names.reverse(); 59 | } 60 | ``` 61 | 62 | Writing the following test will find it: 63 | 64 | ```js 65 | import { Selector } from 'redux-testkit'; 66 | import * as uut from '../reducer'; 67 | 68 | describe('person selectors', () => { 69 | 70 | it('should return a reverse list of names', () => { 71 | const state = { names: ['John', 'Rob'] } 72 | const result = ['Rob', 'John']; 73 | Selector(uut.getReverseNames).expect(state).toReturn(result); 74 | }); 75 | 76 | }); 77 | ``` 78 | 79 | Answer: The selector mutates the state. 80 | 81 |
82 | 83 | ## Thunk 84 | 85 | Can you spot the bug here: 86 | 87 | ```js 88 | function reversePosts() { 89 | return async function(dispatch, getState) { 90 | const state = getState(); 91 | const reversePosts = _.reverse(state.posts); 92 | dispatch({ type: 'UPDATE_POSTS', posts: reversePosts }); 93 | }; 94 | } 95 | ``` 96 | 97 | Writing the following test will find it: 98 | 99 | ```js 100 | import { Thunk } from 'redux-testkit'; 101 | import * as uut from '../actions'; 102 | 103 | describe('posts actions', () => { 104 | 105 | it('should reverse the list of posts in state', () => { 106 | const state = { posts: ['post1', 'post2'] }; 107 | const dispatches = await Thunk(reversePosts).withState(state).execute(); 108 | expect(dispatches.length).toBe(1); 109 | expect(dispatches[0].getType()).toEqual('UPDATE_POSTS'); 110 | }); 111 | 112 | }); 113 | ``` 114 | 115 | Answer: The thunk mutates the state. 116 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2016 Wix.com 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Redux Testkit 2 | > Complete and opinionated testkit for testing Redux projects (reducers, selectors, actions, thunks) 3 | 4 | * [Installation](#installation) 5 | * [Recipe - Unit testing reducers](#recipe---unit-testing-reducers) 6 | * [Recipe - Unit testing selectors](#recipe---unit-testing-selectors) 7 | * [Recipe - Unit testing thunks](#recipe---unit-testing-thunks) 8 | * [Recipe - Integration tests for the entire store](#recipe---integration-tests-for-the-entire-store) 9 | * [Building and testing this library](#building-and-testing-this-library) 10 | 11 |
12 | 13 | ## What tests are we going to write? 14 | 15 | * *Unit tests* for [reducers](http://redux.js.org/docs/basics/Reducers.html) - test recipe [here](#recipe---unit-testing-reducers) 16 | * *Unit tests* for [selectors](http://redux.js.org/docs/recipes/ComputingDerivedData.html) - test recipe [here](#recipe---unit-testing-selectors) 17 | * *Unit tests* for [action handlers (thunks)](https://github.com/gaearon/redux-thunk) - test recipe [here](#recipe---unit-testing-thunks) 18 | * *Integration tests* for the entire [store](http://redux.js.org/docs/basics/Store.html) - test recipe [here](#recipe---integration-tests-for-the-entire-store) 19 | 20 | This library mostly provides syntactic sugar and makes testing Redux fun with less boilerplate. You can naturally test all Redux constructs without this library, but you will miss out on features like automatic immutability checks. 21 | 22 |
23 | 24 | ## Installation 25 | 26 | * Install the package from npm 27 | 28 | ``` 29 | npm install redux-testkit --save-dev 30 | ``` 31 | 32 | * Make sure you have a test runner installed, we recommend [jest](https://facebook.github.io/jest/docs/getting-started.html) 33 | 34 | ``` 35 | npm install jest --save-dev 36 | ``` 37 | 38 |
39 | 40 | ## Recipe - Unit testing reducers 41 | 42 | ```js 43 | import { Reducer } from 'redux-testkit'; 44 | import uut from '../reducer'; 45 | 46 | describe('counter reducer', () => { 47 | 48 | it('should have initial state', () => { 49 | expect(uut()).toEqual({ counter: 0 }); 50 | }); 51 | 52 | it('should handle INCREMENT action on initial state', () => { 53 | const action = { type: 'INCREMENT' }; 54 | const result = { counter: 1 }; 55 | Reducer(uut).expect(action).toReturnState(result); 56 | }); 57 | 58 | it('should handle INCREMENT action on existing state', () => { 59 | const action = { type: 'INCREMENT' }; 60 | const state = { counter: 1 }; 61 | const result = { counter: 2 }; 62 | Reducer(uut).withState(state).expect(action).toReturnState(result); 63 | }); 64 | 65 | it('should return the same state after accpeting a non existing action', () => { 66 | const action = { type: 'NON_EXISTING' }; 67 | const state = { counter: 1 }; 68 | Reducer(uut).withState(state).expect(action).toStayTheSame(); 69 | }); 70 | 71 | }); 72 | ``` 73 | 74 | A redux reducer is a pure function that takes an action object, with a `type` field, and changes the state. In almost every case the state object itself must remain immutable. 75 | 76 | #### `Reducer(reducer).withState(state).expect(action).toReturnState(result)` 77 | 78 | * Runs the `reducer` on current `state` providing an `action`. Calling `withState()` is optional, if not provided, initial state is used. Makes sure the returned state is `result`. 79 | 80 | * Also verifies immutability - that `state` did not mutate. [Why is this important? see example bug](BUG-EXAMPLES.md#reducer) 81 | 82 | > [See some examples of this API](API-EXAMPLES.md#reducerreducerwithstatestateexpectactiontoreturnstateresult) 83 | 84 | #### `Reducer(reducer).withState(state).expect(action).toStayTheSame()` 85 | 86 | * Runs the `reducer` on current `state` providing an `action`. Calling `withState()` is optional, if not provided, initial state is used. Makes sure the returned state is the same as the provided state. 87 | 88 | #### `Reducer(reducer).withState(state).expect(action).toChangeInState(changes)` 89 | 90 | * Runs the `reducer` on current `state` providing an `action`. Calling `withState()` is optional, if not provided, initial state is used. Makes sure the part that changed in the returned state matches `changes` and the rest of the state hasn't changed. The format of `changes` is partial state, even a deep internal object - it is compared to returned state after [merging](https://lodash.com/docs/#merge) the changes with the original state (objects are deep merged, arrays are replaced). 91 | 92 | * Also verifies immutability of the `state`. 93 | 94 | > *The added value of this API compared to `toReturnState` is when your state object is very large and you prefer to reduce the boilerplate of preparing the entire `result` by yourself.* 95 | 96 | > [See some examples of this API](API-EXAMPLES.md#reducerreducerwithstatestateexpectactiontochangeinstatechanges) 97 | 98 | #### `Reducer(reducer).withState(state).execute(action)` 99 | 100 | * Runs the `reducer` on current `state` providing an `action`. Calling `withState()` is optional, if not provided, initial state is used. 101 | 102 | * Returns the returned state so you can run expectations manually. It's not recommended to use this API directly because you usually won't verify that parts in the returned state that were not supposed to change, indeed did not change. 103 | 104 | * Also verifies immutability of the `state`. 105 | 106 | > *The added value of this API compared to the others is that it allows you to run your own custom expectations (which isn't recommended).* 107 | 108 | > [See some examples of this API](API-EXAMPLES.md#reducerreducerwithstatestateexecuteaction) 109 | 110 |
111 | 112 | ## Recipe - Unit testing selectors 113 | 114 | ```js 115 | import { Selector } from 'redux-testkit'; 116 | import * as uut from '../reducer'; 117 | 118 | describe('numbers selectors', () => { 119 | 120 | it('should select integers from numbers state', () => { 121 | const state = { numbers: [1, 2.2, 3.14, 4, 5.75, 6] }; 122 | const result = [1, 4, 6]; 123 | Selector(uut.getIntegers).expect(state).toReturn(result); 124 | }); 125 | 126 | }); 127 | ``` 128 | 129 | A redux selector is a pure function that takes the state and computes some derivation from it. This operation is read-only and the state object itself must not change. 130 | 131 | #### `Selector(selector).expect(state, ...args).toReturn(result)` 132 | 133 | * Runs the `selector` function on a given `state`. If the selector takes more arguments, provide them at `...args` (the state is always assumed to be the first argument of a selector). Makes sure the returned result is `result`. 134 | 135 | * Also verifies that `state` did not mutate. [Why is this important? see example bug](BUG-EXAMPLES.md#selector) 136 | 137 | > [See some examples of this API](API-EXAMPLES.md#selectorselectorexpectstate-argstoreturnresult) 138 | 139 | #### `Selector(selector).execute(state, ...args)` 140 | 141 | * Runs the `selector` function on a given `state`. If the selector takes more arguments, provide them at `...args` (the state is always assumed to be the first argument of a selector). 142 | 143 | * Returns the returned state so you can run expectations manually. 144 | 145 | * Also verifies that `state` did not mutate. 146 | 147 | > *The added value of this API compared to the others is that it allows you to run your own custom expectations.* 148 | 149 | > [See some examples of this API](API-EXAMPLES.md#selectorselectorexecutestate-args) 150 | 151 |
152 | 153 | ## Recipe - Unit testing thunks 154 | 155 | ```js 156 | import { Thunk } from 'redux-testkit'; 157 | import * as uut from '../actions'; 158 | import redditService from '../../../services/reddit'; 159 | jest.mock('../../../services/reddit'); 160 | 161 | describe('posts actions', () => { 162 | 163 | beforeEach(() => { 164 | jest.resetAllMocks(); 165 | }); 166 | 167 | it('should clear all posts', () => { 168 | const dispatches = Thunk(uut.clearPosts).execute(); 169 | expect(dispatches.length).toBe(1); 170 | expect(dispatches[0].getAction()).toEqual({ type: 'POSTS_UPDATED', posts: [] }); 171 | }); 172 | 173 | it('should fetch posts from server', async () => { 174 | redditService.getPostsBySubreddit.mockReturnValueOnce(['post1', 'post2']); 175 | const dispatches = await Thunk(uut.fetchPosts).execute(); 176 | expect(dispatches.length).toBe(3); 177 | expect(dispatches[0].getAction()).toEqual({ type: 'POSTS_LOADING', loading: true }); 178 | expect(dispatches[1].getAction()).toEqual({ type: 'POSTS_UPDATED', posts: ['post1', 'post2'] }); 179 | expect(dispatches[2].getAction()).toEqual({ type: 'POSTS_LOADING', loading: false }); 180 | }); 181 | 182 | it('should filter posts', () => { 183 | const state = { loading: false, posts: ['funny1', 'scary2', 'funny3'] }; 184 | const dispatches = Thunk(uut.filterPosts).withState(state).execute('funny'); 185 | expect(dispatches.length).toBe(1); 186 | expect(dispatches[0].getAction()).toEqual({ type: 'POSTS_UPDATED', posts: ['funny1', 'funny3'] }); 187 | }); 188 | 189 | }); 190 | ``` 191 | 192 | A redux thunk wraps a synchronous or asynchronous function that performs an action. It can dispatch other actions (either plain objects or other thunks). It can also perform side effects like accessing servers. 193 | 194 | #### `Thunk(thunk).withState(state).execute(...args)` 195 | 196 | * Runs the thunk `thunk` on current `state` given optional arguments `...args`. Calling `withState()` is optional, no need to provide it if the internal thunk implementation doesn't call `getState()`. 197 | 198 | * Returns an array of dispatches performed by the thunk (shallow, these dispatches are not executed). You can run expectations over them manually. If the tested thunk is asynchronous, `await` on the result to get the actual dispatches array. If it's synchronous, you can use the return value directly without `await`. 199 | 200 | * Also verifies that `state` did not mutate. [Why is this important? see example bug](BUG-EXAMPLES.md#thunk) 201 | 202 | > [See some examples of this API](API-EXAMPLES.md#thunkthunkwithstatestateexecuteargs) 203 | 204 | ##### Available expectations over a dispatch 205 | 206 | ```js 207 | // when a plain object action was dispatched 208 | expect(dispatches[0].isPlainObject()).toBe(true); 209 | expect(dispatches[0].getType()).toEqual('LOADING_CHANGED'); 210 | expect(dispatches[0].getAction()).toEqual({ type: 'LOADING_CHANGED', loading: true }); 211 | 212 | // when another thunk was dispatched 213 | expect(dispatches[0].isFunction()).toBe(true); 214 | expect(dispatches[0].getName()).toEqual('refreshSession'); // the function name, see note below 215 | ``` 216 | 217 | ##### Being able to expect dispatched thunk function names 218 | 219 | This is relevant when the tested thunk dispatches another thunk. In order to be able to test the name of the thunk that was dispatched, you will have to provide an explicit name to the internal anonymous function in the thunk implementation. For example: 220 | 221 | ```js 222 | export function refreshSession() { 223 | return async function refreshSession(dispatch, getState) { 224 | // ... 225 | }; 226 | } 227 | ``` 228 | 229 | ##### Limitations when testing thunks that dispatch other thunks 230 | 231 | * If the tested thunk dispatches another thunk, the other thunk is not executed. Different thunks should be considered as different units. Executing another unit should be part of an [integration test](#recipe---integration-tests-for-the-entire-store), not a unit test. 232 | 233 | * If the tested thunk dispatches another thunk, you cannot set expectations on the arguments given to the other thunk. Different thunks should be considered as different units. Testing the interfaces between them should be part of an [integration test](#recipe---integration-tests-for-the-entire-store), not a unit test. 234 | 235 | * If the tested thunk dispatches another thunk, you cannot mock the return value of the other thunk. Relying in your implementation on the return value of another thunk is considered bad practice. If you must test that, you should probably be changing your implementation. 236 | 237 | > These limitations may seem annoying, but they stem from best practices. If they disrupt your test, it's usually a sign of a code smell in your implementation. Fix the implementation, don't fight to test a bad practice. 238 | 239 |
240 | 241 | ## Recipe - Integration tests for the entire store 242 | 243 | ```js 244 | import { createStore, applyMiddleware, combineReducers } from 'redux'; 245 | import thunk from 'redux-thunk'; 246 | import { FlushThunks } from 'redux-testkit'; 247 | 248 | import * as reducers from '../reducers'; 249 | import * as uut from '../posts/actions'; 250 | import * as postsSelectors from '../posts/reducer'; 251 | import redditService from '../../services/reddit'; 252 | jest.mock('../../services/reddit'); 253 | 254 | describe('posts store integration', () => { 255 | 256 | let flushThunks, store; 257 | 258 | beforeEach(() => { 259 | jest.resetAllMocks(); 260 | // create a redux store with flushThunks added as the first middleware 261 | flushThunks = FlushThunks.createMiddleware(); 262 | store = createStore(combineReducers(reducers), applyMiddleware(flushThunks, thunk)); 263 | }); 264 | 265 | it('should select posts', () => { 266 | expect(postsSelectors.getSelectedPost(store.getState())).toEqual([]); 267 | store.dispatch(uut.selectPost('post1')); 268 | expect(postsSelectors.getSelectedPost(store.getState())).toEqual(['post1']); 269 | store.dispatch(uut.selectPost('post2')); 270 | expect(postsSelectors.getSelectedPost(store.getState())).toEqual(['post1', 'post2']); 271 | }); 272 | 273 | it('should fetch posts from server', async () => { 274 | redditService.getPostsBySubreddit.mockReturnValueOnce(['post1', 'post2']); 275 | expect(postsSelectors.getPostsLoading(store.getState())).toBe(false); 276 | expect(postsSelectors.getPosts(store.getState())).toEqual([]); 277 | await store.dispatch(uut.fetchPosts()); 278 | expect(postsSelectors.getPostsLoading(store.getState())).toBe(false); 279 | expect(postsSelectors.getPosts(store.getState())).toEqual(['post1', 'post2']); 280 | }); 281 | 282 | it('should test a thunk that dispatches another thunk', async () => { 283 | expect(postsSelectors.isForeground(store.getState())).toBe(false); 284 | await store.dispatch(uut.initApp()); // this dispathces thunk appOnForeground 285 | await flushThunks.flush(); // wait until all async thunks resolve 286 | expect(postsSelectors.isForeground(store.getState())).toBe(true); 287 | }); 288 | 289 | }); 290 | ``` 291 | 292 | Integration test for the entire store creates a real redux store with an extra flushThunks middleware. Test starts by dispatching an action / thunk. Expectations are set over the final state using selectors. 293 | 294 | #### `flushThunks = FlushThunks.createMiddleware()` 295 | 296 | * Creates `flushThunks` middleware which should be applied to the store on creation. This middleware is useful for the case where one thunk dispatches another thunk. It allows to wait until all of the thunk promises have been resolved. 297 | 298 | * Returns a `flushThunks` instance which has the following methods: 299 | 300 | ##### `flushThunks.flush()` 301 | 302 | * Flushes all asynchronous thunks. Run `await` on this method to wait until all dispatched thunk promises are resolved. 303 | 304 | ##### `flushThunks.reset()` 305 | 306 | * Call this method to reset the list of thunk promises observed by `flushThunks`. 307 | 308 |
309 | 310 | ## Building and testing this library 311 | 312 | This section is relevant only if you want to contribute to this library or build it locally. 313 | 314 | * Install and build 315 | 316 | ``` 317 | npm install 318 | npm run build 319 | ``` 320 | 321 | * Run lint and tests 322 | 323 | ``` 324 | npm run test 325 | ``` 326 | 327 |
328 | 329 | ## License 330 | 331 | MIT 332 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "redux-testkit", 3 | "version": "1.0.6", 4 | "publishConfig": { 5 | "registry": "https://registry.npmjs.org/" 6 | }, 7 | "description": "Complete and opinionated testkit for testing Redux projects (reducers, selectors, actions, thunks)", 8 | "author": "Yedidya Kennard ", 9 | "license": "MIT", 10 | "repository": { 11 | "type": "git", 12 | "url": "https://github.com/wix/redux-testkit.git" 13 | }, 14 | "main": "dist/index.js", 15 | "scripts": { 16 | "build": "rm -rf dist && babel src --presets=stage-0,latest,react -d dist", 17 | "lint": "eslint src test", 18 | "pretest": "npm run lint", 19 | "test": "jest", 20 | "prepublish": "npm run build" 21 | }, 22 | "dependencies": { 23 | "lodash": "^4.17.11", 24 | "babel-polyfill": "^6.8.0" 25 | }, 26 | "devDependencies": { 27 | "app-root-path": "^1.0.0", 28 | "babel-cli": "^6.8.0", 29 | "babel-core": "^6.8.0", 30 | "babel-eslint": "^6.0.4", 31 | "babel-jest": "^19.0.0", 32 | "babel-preset-es2015": "^6.24.0", 33 | "babel-preset-latest": "^6.24.0", 34 | "babel-preset-react": "^6.23.0", 35 | "babel-preset-react-native": "^1.9.0", 36 | "babel-preset-stage-0": "^6.22.0", 37 | "babel-register": "^6.8.0", 38 | "eslint": "^2.5.1", 39 | "eslint-plugin-babel": "^3.0.0", 40 | "eslint-plugin-react": "^4.2.3", 41 | "eslint-plugin-react-native": "^1.0.0", 42 | "jasmine": "2.4.1", 43 | "jasmine-expect": "^2.0.2", 44 | "jasmine-reporters": "^2.1.1", 45 | "jasmine-spec-reporter": "^2.4.0", 46 | "jest": "^19.0.2", 47 | "proxyquire": "1.7.4", 48 | "redux": "^3.6.0", 49 | "redux-thunk": "^2.2.0", 50 | "regenerator-runtime": "^0.10.3", 51 | "seamless-immutable": "^7.1.1" 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /src/FlushThunks.js: -------------------------------------------------------------------------------- 1 | export function createMiddleware() { 2 | let pendingPromises = []; 3 | 4 | const middleware = () => { 5 | return (next) => (action) => { 6 | let returnValue; 7 | if (typeof action === 'function') { 8 | const actionWrapper = (...args) => { 9 | const result = action(...args); 10 | 11 | if (result && result.then && typeof result.then === 'function') { 12 | pendingPromises.push(result); 13 | } 14 | return result; 15 | }; 16 | returnValue = next(actionWrapper); 17 | } else { 18 | returnValue = next(action); 19 | } 20 | 21 | return returnValue; 22 | }; 23 | }; 24 | 25 | middleware.flush = async () => { 26 | const promisesCount = pendingPromises.length; 27 | if (promisesCount > 0) { 28 | await Promise.all(pendingPromises); 29 | // remove resolved promises 30 | pendingPromises = pendingPromises.slice(promisesCount); 31 | await middleware.flush(); 32 | } 33 | }; 34 | 35 | middleware.reset = () => { 36 | pendingPromises = []; 37 | }; 38 | 39 | return middleware; 40 | } 41 | -------------------------------------------------------------------------------- /src/Reducer.js: -------------------------------------------------------------------------------- 1 | import _ from 'lodash'; 2 | import {deepEqual} from './utils'; 3 | 4 | function toChangeInStateCustomizer(objValue, srcValue) { 5 | if (_.isArray(objValue)) { 6 | return srcValue; 7 | } 8 | return undefined; 9 | } 10 | 11 | export default function(reducer) { 12 | const defaultInitialState = reducer(undefined, {}); 13 | 14 | function internalReducerCommands(initialState) { 15 | return { 16 | expect: (action) => { 17 | const originalState = _.cloneDeep(initialState); 18 | const newState = reducer(initialState, action); 19 | const mutated = !deepEqual(initialState, originalState); 20 | 21 | return { 22 | toReturnState: (expected) => { 23 | expect(newState).toEqual(expected); 24 | // expect(mutated).toEqual(false); 25 | if (mutated) { 26 | throw new Error('state mutated after running reducer'); 27 | } 28 | }, 29 | toStayTheSame: () => { 30 | expect(newState).toBe(initialState); 31 | // expect(mutated).toEqual(false); 32 | if (mutated) { 33 | throw new Error('state mutated after running reducer'); 34 | } 35 | }, 36 | toChangeInState: (expectedChanges) => { 37 | const expected = _.mergeWith(originalState, expectedChanges, toChangeInStateCustomizer); 38 | expect(newState).toEqual(expected); 39 | // expect(mutated).toEqual(false); 40 | if (mutated) { 41 | throw new Error('state mutated after running reducer'); 42 | } 43 | } 44 | }; 45 | }, 46 | execute: (action) => { 47 | const originalState = _.cloneDeep(initialState); 48 | const newState = reducer(initialState, action); 49 | const mutated = !deepEqual(initialState, originalState); 50 | if (mutated) { 51 | throw new Error('state mutated after running reducer'); 52 | } 53 | return newState; 54 | } 55 | }; 56 | } 57 | 58 | return { 59 | withState: (state) => { 60 | const initialState = state || defaultInitialState; 61 | return internalReducerCommands(initialState); 62 | }, 63 | ...internalReducerCommands(defaultInitialState) 64 | }; 65 | } 66 | -------------------------------------------------------------------------------- /src/Selector.js: -------------------------------------------------------------------------------- 1 | import _ from 'lodash'; 2 | import {deepEqual} from './utils'; 3 | 4 | export default function(selector) { 5 | return { 6 | expect: (state, ...args) => { 7 | const originalState = _.cloneDeep(state); 8 | const result = selector(state, ...args); 9 | const mutated = !deepEqual(state, originalState); 10 | 11 | return { 12 | toReturn: (expected) => { 13 | expect(result).toEqual(expected); 14 | // expect(mutated).toEqual(false); 15 | if (mutated) { 16 | throw new Error('state mutated after running selector'); 17 | } 18 | } 19 | }; 20 | }, 21 | execute: (state, ...args) => { 22 | const originalState = _.cloneDeep(state); 23 | const result = selector(state, ...args); 24 | const mutated = !deepEqual(state, originalState); 25 | if (mutated) { 26 | throw new Error('state mutated after running selector'); 27 | } 28 | return result; 29 | } 30 | }; 31 | } 32 | -------------------------------------------------------------------------------- /src/Thunk.js: -------------------------------------------------------------------------------- 1 | import _ from 'lodash'; 2 | import * as utils from './utils'; 3 | 4 | function createDispatchedObject(action) { 5 | return { 6 | isFunction: () => _.isFunction(action), 7 | isPlainObject: () => _.isPlainObject(action), 8 | getType: () => _.get(action, 'type'), 9 | getAction: () => action, 10 | getName: () => _.get(action, 'name') 11 | }; 12 | } 13 | 14 | export default function(thunkFunction, extraArgument) { 15 | const dispatches = []; 16 | let state; 17 | let originalState; 18 | let error; 19 | 20 | function getState() { 21 | return state; 22 | } 23 | 24 | async function dispatch(action) { 25 | if (!_.isFunction(action) && !_.isPlainObject(action)) { 26 | error = new Error(`unsupported ${action} action type sent to dispatch`); 27 | } 28 | dispatches.push(createDispatchedObject(action)); 29 | } 30 | 31 | function executeDispatch(action) { 32 | if (_.isFunction(action)) { 33 | return action(dispatch, getState, extraArgument); 34 | } 35 | error = new Error('provided action is not a thunk function'); 36 | return null; 37 | } 38 | 39 | function checkForStateMutation() { 40 | const mutated = !utils.deepEqual(state, originalState); 41 | if (mutated) { 42 | error = new Error('state mutated after running the thunk'); 43 | } 44 | } 45 | 46 | function internalThunkCommands() { 47 | return { 48 | execute: (...args) => { 49 | if (_.isFunction(thunkFunction)) { 50 | const dispatchResult = executeDispatch(thunkFunction(...args)); 51 | if (!utils.isPromise(dispatchResult)) { 52 | checkForStateMutation(); 53 | if (error) { 54 | throw error; 55 | } 56 | return dispatches; 57 | } else { 58 | return dispatchResult.then(() => { 59 | checkForStateMutation(); 60 | if (error) { 61 | throw error; 62 | } 63 | return dispatches; 64 | }); 65 | } 66 | } 67 | throw new Error('you must pass a thunk function to Thunk()'); 68 | } 69 | }; 70 | } 71 | 72 | return { 73 | withState(storeState) { 74 | state = storeState; 75 | originalState = _.cloneDeep(storeState); 76 | return internalThunkCommands(); 77 | }, 78 | ...internalThunkCommands() 79 | }; 80 | } 81 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import "babel-polyfill"; 2 | 3 | import Reducer from './Reducer'; 4 | import Selector from './Selector'; 5 | import Thunk from './Thunk'; 6 | import * as FlushThunks from './FlushThunks'; 7 | 8 | module.exports = {Reducer, Selector, Thunk, FlushThunks}; 9 | -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- 1 | export function deepEqual(x, y) { 2 | if ((typeof x === "object" && x !== null) && (typeof y === "object" && y !== null)) { 3 | if (Object.keys(x).length !== Object.keys(y).length) { 4 | return false; 5 | } 6 | 7 | for (const prop in x) { 8 | if (y.hasOwnProperty(prop)) { 9 | if (!deepEqual(x[prop], y[prop])) { 10 | return false; 11 | } 12 | } else { 13 | return false; 14 | } 15 | } 16 | 17 | return true; 18 | } else if (x !== y) { 19 | return false; 20 | } else { 21 | return true; 22 | } 23 | } 24 | 25 | export function isPromise(obj) { 26 | return Promise.resolve(obj) === obj; 27 | } 28 | -------------------------------------------------------------------------------- /test/FlushThunks.spec.js: -------------------------------------------------------------------------------- 1 | import {FlushThunks} from '../src'; 2 | import {createStore, applyMiddleware} from 'redux'; 3 | import thunk from 'redux-thunk'; 4 | 5 | let test; 6 | 7 | function reducer(state = {count: 0}, action = {}) { 8 | if (action.type === 'count') { 9 | state.count++; 10 | } 11 | 12 | return state; 13 | } 14 | 15 | describe('FlushThunks spec', () => { 16 | let store; 17 | let flushThunks; 18 | 19 | beforeEach(() => { 20 | flushThunks = FlushThunks.createMiddleware(); 21 | store = createStore(reducer, applyMiddleware(flushThunks, thunk)); 22 | }); 23 | 24 | it('should wait for all dispatched promises - simple flow', async () => { 25 | expect(store.getState().count).toBe(0); 26 | store.dispatch(asyncAction1()); 27 | expect(store.getState().count).toBe(0); 28 | await flushThunks.flush(); 29 | expect(store.getState().count).toBe(1); 30 | }); 31 | 32 | it('should wait for all dispatched promises - complex flow', async () => { 33 | store.dispatch(asyncAction3()); 34 | await flushThunks.flush(); 35 | expect(store.getState().count).toBe(1); 36 | }); 37 | 38 | it('should wait for all dispatched promises - complex flow 2', async () => { 39 | store.dispatch(asyncAction4()); 40 | await flushThunks.flush(); 41 | expect(store.getState().count).toBe(2); 42 | }); 43 | 44 | it('should wait for all dispatched promises - crazy flow', async () => { 45 | store.dispatch(asyncAction5()); 46 | await flushThunks.flush(); 47 | expect(store.getState().count).toBe(5); 48 | }); 49 | }); 50 | 51 | const asyncAction1 = () => { 52 | return async (dispatch, getState) => { 53 | await asyncFunc(); 54 | dispatch({type: 'count'}); 55 | }; 56 | }; 57 | 58 | const asyncAction2 = () => { 59 | return async (dispatch, getState) => { 60 | await asyncFunc(); 61 | dispatch(asyncAction1()); 62 | }; 63 | }; 64 | 65 | const asyncAction3 = () => { 66 | return async (dispatch, getState) => { 67 | dispatch(asyncAction2()); 68 | }; 69 | }; 70 | 71 | const asyncAction4 = () => { 72 | return async (dispatch, getState) => { 73 | dispatch(asyncAction2()); 74 | await asyncFunc(); 75 | dispatch(asyncAction1()); 76 | }; 77 | }; 78 | 79 | const asyncAction5 = () => { 80 | return async (dispatch, getState) => { 81 | dispatch(asyncAction2()); 82 | await asyncFunc(); 83 | dispatch(asyncAction1()); 84 | await asyncFunc(); 85 | dispatch(asyncAction4()); 86 | await asyncFunc(); 87 | dispatch(asyncAction3()); 88 | }; 89 | }; 90 | 91 | const asyncFunc = () => { 92 | return new Promise((res) => { 93 | setImmediate(() => { 94 | test++; 95 | res(); 96 | }); 97 | }); 98 | }; 99 | -------------------------------------------------------------------------------- /test/Reducer.spec.js: -------------------------------------------------------------------------------- 1 | import _ from 'lodash'; 2 | import Immutable from 'seamless-immutable'; 3 | import uut from '../src/Reducer'; 4 | 5 | const initialCounterState = { 6 | value: 12 7 | }; 8 | 9 | const ADD_ACTION = {type: 'ADD', value: 3}; 10 | const SUBTRACT_ACTION = {type: 'SUBTRACT', value: 5}; 11 | const NON_EXISTING_ACTION = {type: 'NON_EXISTING'}; 12 | 13 | const counterReducer = (state = _.cloneDeep(initialCounterState), action = {}) => { 14 | const value = state.value; 15 | switch (action.type) { 16 | case 'ADD': 17 | return {value: value + action.value}; 18 | case 'SUBTRACT': 19 | return {value: value - action.value}; 20 | default: 21 | return {value}; 22 | } 23 | }; 24 | 25 | const mutatingCounterReducer = (state = _.cloneDeep(initialCounterState), action = {}) => { 26 | switch (action.type) { 27 | case 'ADD': 28 | state.value += action.value; 29 | return state; 30 | case 'SUBTRACT': 31 | state.value -= action.value; 32 | return state; 33 | default: 34 | break; 35 | } 36 | return state; 37 | }; 38 | 39 | describe('Reducer testkit tool', () => { 40 | describe('toReturnState: without allowing mutation of state', () => { 41 | it('should test reducer state change after accpeting an action', () => { 42 | uut(counterReducer).expect(ADD_ACTION).toReturnState({value: initialCounterState.value + ADD_ACTION.value}); 43 | uut(counterReducer).expect(SUBTRACT_ACTION).toReturnState({value: initialCounterState.value - SUBTRACT_ACTION.value}); 44 | uut(counterReducer).expect(NON_EXISTING_ACTION).toReturnState(initialCounterState); 45 | }); 46 | it('should fail test on reducer that mutate state', () => { 47 | // uut(mutatingCounterReducer).expect(ADD_ACTION).toReturnState({value: initialCounterState.value + ADD_ACTION.value}); 48 | // uut(mutatingCounterReducer).expect(SUBTRACT_ACTION).toReturnState({value: initialCounterState.value - SUBTRACT_ACTION.value}); 49 | }); 50 | }); 51 | 52 | describe('toReturnState: given initial state', () => { 53 | it('should reducer work with given initial state', () => { 54 | uut(counterReducer).withState({value: 2}).expect(ADD_ACTION).toReturnState({value: 2 + ADD_ACTION.value}); 55 | }); 56 | // this test suppose to fail 57 | it('should fail test with given initial state on mutating reducer', () => { 58 | // uut(mutatingCounterReducer).setState({value: 6}).expect(SUBTRACT_ACTION).toReturnState({value: 6 - SUBTRACT_ACTION.value}); 59 | }); 60 | }); 61 | 62 | describe('toChangeInState: without allowing mutation of state', () => { 63 | const SET_ACTION = { 64 | type: 'SET_INTERNAL' 65 | }; 66 | const SET_ARRAY_ACTION = { 67 | type: 'SET_INTERNAL_ARRAY' 68 | }; 69 | 70 | const reducerWithExtra = (state = {}, action = {}) => { 71 | const stateCopy = _.cloneDeep(state); 72 | switch (action.type) { 73 | case SET_ACTION.type: 74 | return _.set(stateCopy, 'a.b.c', 'hello'); 75 | case SET_ARRAY_ACTION.type: 76 | return _.set(stateCopy, 'a.b', [1, 2]); 77 | default: 78 | return state; 79 | } 80 | }; 81 | 82 | it('should test reducer state change after accpeting an action', () => { 83 | uut(counterReducer).expect(ADD_ACTION).toChangeInState({value: initialCounterState.value + ADD_ACTION.value}); 84 | uut(counterReducer).expect(NON_EXISTING_ACTION).toChangeInState(initialCounterState); 85 | }); 86 | 87 | it('should test state collection-content mutation with given initial state with inexplicit fields', () => { 88 | uut(reducerWithExtra).expect(SET_ACTION).toChangeInState({a: {b: {c: 'hello'}}}); 89 | uut(reducerWithExtra).withState({name: 'john'}).expect(SET_ACTION).toChangeInState({a: {b: {c: 'hello'}}}); 90 | uut(reducerWithExtra).withState({name: 'john'}).expect(SET_ACTION).toReturnState({name: 'john', a: {b: {c: 'hello'}}}); 91 | uut(reducerWithExtra).withState({a: {b: {d: 'world'}}}).expect(SET_ACTION).toChangeInState({a: {b: {c: 'hello'}}}); 92 | uut(reducerWithExtra).withState({a: {b: {d: 'world'}}}).expect(SET_ACTION).toReturnState({a: {b: {c: 'hello', d: 'world'}}}); 93 | }); 94 | 95 | it('should test state arrays mutation with given initial state with inexplicit fields', () => { 96 | uut(reducerWithExtra).expect(SET_ARRAY_ACTION).toChangeInState({a: {b: [1, 2]}}); 97 | uut(reducerWithExtra).withState({a: {b: [-1, -2]}}).expect(SET_ARRAY_ACTION).toChangeInState({a: {b: [1, 2]}}); 98 | uut(reducerWithExtra).withState({a: {b: [-1, -2]}}).expect(SET_ARRAY_ACTION).toReturnState({a: {b: [1, 2]}}); 99 | }); 100 | 101 | // This tests a sensitive spot of *change-based* verification when arrays are involved, as lodash.merge() acts 102 | // different with arrays than it does with collections. With collection, a deep copy is performed, while with arrays - 103 | // as by default, an actual element-by-element *merge* is done, which isn't what we expect from toChangeInState(). 104 | it('should verify arrays mutation is done in an assignment-like and not merge-like strategy', () => { 105 | uut(reducerWithExtra).withState({a: {b: [-1, -2, -3]}}).expect(SET_ARRAY_ACTION).toChangeInState({a: {b: [1, 2]}}); 106 | uut(reducerWithExtra).withState({a: {b: [-1, -2, -3]}}).expect(SET_ARRAY_ACTION).toReturnState({a: {b: [1, 2]}}); 107 | }); 108 | 109 | it('should fail test if content change overlooked', () => { 110 | const originalExpect = global.expect; 111 | global.expect = (input) => ({ 112 | toEqual: (i) => originalExpect(input).not.toEqual(i) 113 | }); 114 | uut(reducerWithExtra).withState({name: 'john'}).expect(SET_ACTION).toChangeInState({}); 115 | global.expect = originalExpect; 116 | }); 117 | 118 | it('should fail test with given initial state on mutating reducer', () => { 119 | // uut(mutatingCounterReducer).withState({value: 6}).expect(SUBTRACT_ACTION).toChangeInState({value: 6 - SUBTRACT_ACTION.value}); 120 | }); 121 | }); 122 | 123 | describe('toReturnState: support 3rd party libs like seamless-immutable', () => { 124 | const immutableInitialCounterState = Immutable(initialCounterState); 125 | const immutableCounterReducer = (state = immutableInitialCounterState, action = {}) => { 126 | switch (action.type) { 127 | case 'ADD': 128 | return state.merge({value: state.value + action.value}); 129 | case 'SUBTRACT': 130 | return state.merge({value: state.value - action.value}); 131 | default: 132 | break; 133 | } 134 | return state; 135 | }; 136 | it('should reducer handle action correctly', () => { 137 | uut(immutableCounterReducer).expect(ADD_ACTION).toReturnState({value: initialCounterState.value + ADD_ACTION.value}); 138 | }); 139 | // this test suppose to fail 140 | it('should fail test with given initial state on mutating reducer', () => { 141 | // uut(mutatingCounterReducer).withState({value: 6}).expect(SUBTRACT_ACTION).toReturnState({value: 6 - SUBTRACT_ACTION.value}); 142 | }); 143 | it('should return the same state after accpeting a non existing action', () => { 144 | uut(immutableCounterReducer).expect(NON_EXISTING_ACTION).toStayTheSame(); 145 | }); 146 | }); 147 | 148 | describe('execute: without allowing mutation of state', () => { 149 | it('should test reducer state change after accpeting an action', () => { 150 | const result = uut(counterReducer).execute(ADD_ACTION); 151 | expect(result.value).toEqual(initialCounterState.value + ADD_ACTION.value); 152 | }); 153 | it('should fail test on reducer that mutate state', () => { 154 | // const result = uut(mutatingCounterReducer).execute(ADD_ACTION); 155 | // expect(result.value).toEqual(initialCounterState.value + ADD_ACTION.value); 156 | }); 157 | }); 158 | }); 159 | -------------------------------------------------------------------------------- /test/Selector.spec.js: -------------------------------------------------------------------------------- 1 | import _ from 'lodash'; 2 | import Immutable from 'seamless-immutable'; 3 | import uut from '../src/Selector'; 4 | 5 | const exampleState = Immutable({ 6 | example: { 7 | numbers: [1, 2.2, 3.14, 4, 5.75, 6] 8 | } 9 | }); 10 | 11 | const mutatbleState = { 12 | example: { 13 | numbers: [1, 2, 3] 14 | } 15 | }; 16 | 17 | function getIntegersSelector(state) { 18 | return _.filter(state.example.numbers, (v) => Number.isInteger(v)); 19 | } 20 | 21 | function getLargerThanSelector(state, than) { 22 | return _.filter(state.example.numbers, (v) => v > than); 23 | } 24 | 25 | function mutatingReverseSelector(state) { 26 | return state.example.numbers.reverse(); 27 | } 28 | 29 | describe('Selector testkit tool', () => { 30 | describe('toReturn: without allowing mutation of state', () => { 31 | it('should test selector is running without extra arguments', () => { 32 | uut(getIntegersSelector).expect(exampleState).toReturn([1, 4, 6]); 33 | }); 34 | it('should test selector is running with extra arguments', () => { 35 | uut(getLargerThanSelector).expect(exampleState, 3.5).toReturn([4, 5.75, 6]); 36 | }); 37 | it('should fail test on selector that mutate state', () => { 38 | // uut(mutatingReverseSelector).expect(mutatbleState).toReturn([3, 2, 1]); 39 | }); 40 | }); 41 | 42 | describe('execute: without allowing mutation of state', () => { 43 | it('should test selector is running without extra arguments', () => { 44 | const result = uut(getIntegersSelector).execute(exampleState); 45 | expect(result).toEqual([1, 4, 6]); 46 | }); 47 | it('should test selector is running with extra arguments', () => { 48 | const result = uut(getLargerThanSelector).execute(exampleState, 3.5); 49 | expect(result).toEqual([4, 5.75, 6]); 50 | }); 51 | it('should fail test on selector that mutate state', () => { 52 | // const result = uut(mutatingReverseSelector).execute(mutatbleState); 53 | // expect(result).toEqual([3, 2, 1]); 54 | }); 55 | }); 56 | }); 57 | -------------------------------------------------------------------------------- /test/Thunk.spec.js: -------------------------------------------------------------------------------- 1 | import uut from '../src/Thunk'; 2 | 3 | const asyncFunction = () => new Promise((res) => setTimeout(res, 100)); 4 | const action1 = {type: 'EVENT_1', data: 'DATA1!'}; 5 | const action2 = {type: 'EVENT_2', data: 'DATA2!'}; 6 | 7 | const thunk1 = () => { 8 | return function action3(dispatch, getState) { 9 | dispatch(action1); 10 | dispatch(action2); 11 | }; 12 | }; 13 | 14 | const thunk1WithArg = (param1, param2) => { 15 | return function action3(dispatch, getState) { 16 | dispatch({...action1, param1, param2}); 17 | }; 18 | }; 19 | 20 | const thunk2 = () => { 21 | return function action4(dispatch, getState) { 22 | dispatch(action1); 23 | dispatch(thunk1()); 24 | }; 25 | }; 26 | 27 | const thunk3 = () => { 28 | return async function action5(dispatch, getState) { 29 | dispatch(thunk1()); 30 | await asyncFunction(); 31 | dispatch(thunk2()); 32 | }; 33 | }; 34 | 35 | const thunk4 = () => { 36 | return async function action6(dispatch, getState) { 37 | await dispatch(thunk3()); 38 | dispatch(action1); 39 | }; 40 | }; 41 | 42 | const actionThatUsesState = () => { 43 | return function action7(dispatch, getState) { 44 | const {extraData} = getState(); 45 | dispatch({...action1, extraData}); 46 | }; 47 | }; 48 | 49 | const actionThatMutateState = () => { 50 | return function action8(dispatch, getState) { 51 | const state = getState(); 52 | state.extraData = 'mutating state'; 53 | dispatch({...action1}); 54 | }; 55 | }; 56 | 57 | describe('Thunk teskit tool', () => { 58 | it('should contain dispatch actions of plain objects', () => { 59 | const dispatches = uut(thunk1).execute(); 60 | expect(dispatches.length).toBe(2); 61 | 62 | expect(dispatches[0].isPlainObject()).toBe(true); 63 | expect(dispatches[0].getType()).toBe(action1.type); 64 | expect(dispatches[0].getAction()).toEqual(action1); 65 | 66 | expect(dispatches[1].isPlainObject()).toBe(true); 67 | expect(dispatches[1].getType()).toBe(action2.type); 68 | expect(dispatches[1].getAction()).toBe(action2); 69 | }); 70 | 71 | it('should handle arguments', () => { 72 | const dispatches = uut(thunk1WithArg).execute('hello', 'world'); 73 | expect(dispatches.length).toBe(1); 74 | 75 | expect(dispatches[0].isPlainObject()).toBe(true); 76 | expect(dispatches[0].getType()).toBe(action1.type); 77 | expect(dispatches[0].getAction()).toEqual({...action1, param1: 'hello', param2: 'world'}); 78 | }); 79 | 80 | it('should handle dispatched actions of functions and plain objects', () => { 81 | const dispatches = uut(thunk2).execute(); 82 | expect(dispatches.length).toBe(2); 83 | 84 | expect(dispatches[0].isPlainObject()).toBe(true); 85 | expect(dispatches[0].getType()).toBe(action1.type); 86 | expect(dispatches[0].getAction()).toEqual(action1); 87 | 88 | expect(dispatches[1].isFunction()).toBe(true); 89 | expect(dispatches[1].getName()).toBe('action3'); 90 | }); 91 | 92 | it('should support async thunk actions creators', async () => { 93 | const dispatches = await uut(thunk3).execute(); 94 | expect(dispatches.length).toBe(2); 95 | 96 | expect(dispatches[0].isFunction()).toBe(true); 97 | expect(dispatches[0].getName()).toBe('action3'); 98 | 99 | expect(dispatches[1].isFunction()).toBe(true); 100 | expect(dispatches[1].getName()).toBe('action4'); 101 | }); 102 | 103 | it('should support awaiting async thunk actions creators', async () => { 104 | const dispatches = await uut(thunk4).execute(); 105 | expect(dispatches.length).toBe(2); 106 | 107 | expect(dispatches[0].isFunction()).toBe(true); 108 | expect(dispatches[0].getName()).toBe('action5'); 109 | 110 | expect(dispatches[1].isPlainObject()).toBe(true); 111 | expect(dispatches[1].getAction()).toBe(action1); 112 | }); 113 | 114 | it('should acknowledge passed state inside dispatched actions', async () => { 115 | const state = {extraData: 'EXTRA_DATA!'}; 116 | const dispatches = await uut(actionThatUsesState).withState(state).execute(); 117 | 118 | expect(dispatches.length).toBe(1); 119 | expect(dispatches[0].getAction().extraData).toBe(state.extraData); 120 | }); 121 | 122 | it('should throw an error if state mutation occurred', async () => { 123 | const state = {extraData: 'EXTRA_DATA!'}; 124 | try { 125 | await uut(actionThatMutateState).withState(state).execute(); 126 | expect(true).toBe(false); 127 | } catch (error) { 128 | expect(error).toEqual(new Error('state mutated after running the thunk')); 129 | } 130 | }); 131 | }); 132 | -------------------------------------------------------------------------------- /test/bug-examples.spec.js: -------------------------------------------------------------------------------- 1 | import _ from 'lodash'; 2 | import reducer from '../src/Reducer'; 3 | import selector from '../src/Selector'; 4 | import thunk from '../src/Thunk'; 5 | 6 | const initialState = { 7 | names: [] 8 | }; 9 | 10 | function reduce(state = initialState, action = {}) { 11 | switch (action.type) { 12 | case 'ADD_PERSON': 13 | //the BUG is remarked now 14 | //state.names.push(action.addedName); 15 | //return state; 16 | return {...state, names: state.names.concat([action.addedName])}; 17 | default: 18 | return state; 19 | } 20 | } 21 | 22 | describe('reducer bug', () => { 23 | it('should not mutate state', () => { 24 | const action = {type: 'ADD_PERSON', addedName: 'John'}; 25 | const result = {names: ['John']}; 26 | reducer(reduce).expect(action).toReturnState(result); 27 | }); 28 | }); 29 | 30 | function getReverseNames(state) { 31 | //the BUG is remarked now 32 | //return state.names.reverse(); 33 | return _.reverse(_.cloneDeep(state.names)); 34 | } 35 | 36 | describe('selector bug', () => { 37 | it('should not mutate state', () => { 38 | const state = {names: ['John', 'Rob']}; 39 | const result = ['Rob', 'John']; 40 | selector(getReverseNames).expect(state).toReturn(result); 41 | }); 42 | }); 43 | 44 | function reversePostsThunk() { 45 | return async function(dispatch, getState) { 46 | const state = getState(); 47 | //the BUG is remarked now 48 | //const reversePosts = _.reverse(state.posts); 49 | const reversePosts = _.reverse(_.cloneDeep(state.posts)); 50 | dispatch({type: 'UPDATE_POSTS', posts: reversePosts}); 51 | }; 52 | } 53 | 54 | describe('thunk bug', () => { 55 | it('should not mutate state', async () => { 56 | const state = {posts: ['post1', 'post2']}; 57 | const dispatches = await thunk(reversePostsThunk).withState(state).execute(); 58 | expect(dispatches.length).toBe(1); 59 | expect(dispatches[0].getType()).toEqual('UPDATE_POSTS'); 60 | }); 61 | }); 62 | -------------------------------------------------------------------------------- /test/index.spec.js: -------------------------------------------------------------------------------- 1 | import {Reducer, Selector, Thunk, FlushThunks} from './../dist/index'; 2 | 3 | describe('index', () => { 4 | it('exposes Reducer', () => { 5 | expect(Reducer).toBeDefined(); 6 | }); 7 | 8 | it('exposes Selector', () => { 9 | expect(Selector).toBeDefined(); 10 | }); 11 | 12 | it('exposes Thunk', () => { 13 | expect(Thunk).toBeDefined(); 14 | }); 15 | 16 | it('exposes Thunk', () => { 17 | expect(Thunk).toBeDefined(); 18 | }); 19 | 20 | it('exposes FlushThunks', () => { 21 | expect(FlushThunks).toBeDefined(); 22 | }); 23 | }); 24 | -------------------------------------------------------------------------------- /wallaby.js: -------------------------------------------------------------------------------- 1 | /*eslint-disable*/ 2 | 'use strict'; 3 | 4 | const babelOptions = {presets: ['react-native']}; 5 | 6 | process.env.wallabyScriptDir = __dirname; 7 | 8 | module.exports = function(wallaby) { 9 | return { 10 | env: { 11 | type: 'node' 12 | }, 13 | 14 | testFramework: 'jasmine', 15 | 16 | files: [ 17 | {pattern: `node_modules/jasmine-expect/**/*.*`, instrument: false, load: false}, 18 | 'dist/**/*.js', 19 | 'src/**/*.js', 20 | 'test/**/*.js', 21 | '!test/**/*.[Ss]pec.js' 22 | ], 23 | 24 | tests: [ 25 | 'test/**/*.[Ss]pec.js' 26 | ], 27 | 28 | compilers: { 29 | '**/*.js': wallaby.compilers.babel(babelOptions) 30 | }, 31 | 32 | setup: function(w) { 33 | require('babel-polyfill'); 34 | require('app-root-path').setPath(w.projectCacheDir); 35 | } 36 | }; 37 | }; 38 | 39 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abab@^1.0.3: 6 | version "1.0.3" 7 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d" 8 | 9 | abbrev@1: 10 | version "1.1.0" 11 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 12 | 13 | acorn-globals@^3.1.0: 14 | version "3.1.0" 15 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 16 | dependencies: 17 | acorn "^4.0.4" 18 | 19 | acorn-jsx@^3.0.0: 20 | version "3.0.1" 21 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 22 | dependencies: 23 | acorn "^3.0.4" 24 | 25 | acorn@^3.0.4: 26 | version "3.3.0" 27 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 28 | 29 | acorn@^4.0.4: 30 | version "4.0.13" 31 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 32 | 33 | acorn@^5.1.1: 34 | version "5.1.2" 35 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.2.tgz#911cb53e036807cf0fa778dc5d370fbd864246d7" 36 | 37 | ajv-keywords@^1.0.0: 38 | version "1.5.1" 39 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 40 | 41 | ajv@^4.7.0, ajv@^4.9.1: 42 | version "4.11.8" 43 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 44 | dependencies: 45 | co "^4.6.0" 46 | json-stable-stringify "^1.0.1" 47 | 48 | align-text@^0.1.1, align-text@^0.1.3: 49 | version "0.1.4" 50 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 51 | dependencies: 52 | kind-of "^3.0.2" 53 | longest "^1.0.1" 54 | repeat-string "^1.5.2" 55 | 56 | amdefine@>=0.0.4: 57 | version "1.0.1" 58 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 59 | 60 | ansi-escapes@^1.1.0, ansi-escapes@^1.4.0: 61 | version "1.4.0" 62 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 63 | 64 | ansi-regex@^2.0.0: 65 | version "2.1.1" 66 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 67 | 68 | ansi-regex@^3.0.0: 69 | version "3.0.0" 70 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 71 | 72 | ansi-styles@^2.2.1: 73 | version "2.2.1" 74 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 75 | 76 | ansi-styles@^3.0.0: 77 | version "3.2.0" 78 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 79 | dependencies: 80 | color-convert "^1.9.0" 81 | 82 | anymatch@^1.3.0: 83 | version "1.3.2" 84 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 85 | dependencies: 86 | micromatch "^2.1.5" 87 | normalize-path "^2.0.0" 88 | 89 | app-root-path@^1.0.0: 90 | version "1.4.0" 91 | resolved "https://registry.yarnpkg.com/app-root-path/-/app-root-path-1.4.0.tgz#6335d865c9640d0fad99004e5a79232238e92dfa" 92 | 93 | append-transform@^0.4.0: 94 | version "0.4.0" 95 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 96 | dependencies: 97 | default-require-extensions "^1.0.0" 98 | 99 | aproba@^1.0.3: 100 | version "1.1.2" 101 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1" 102 | 103 | are-we-there-yet@~1.1.2: 104 | version "1.1.4" 105 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 106 | dependencies: 107 | delegates "^1.0.0" 108 | readable-stream "^2.0.6" 109 | 110 | argparse@^1.0.7: 111 | version "1.0.9" 112 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 113 | dependencies: 114 | sprintf-js "~1.0.2" 115 | 116 | arr-diff@^2.0.0: 117 | version "2.0.0" 118 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 119 | dependencies: 120 | arr-flatten "^1.0.1" 121 | 122 | arr-flatten@^1.0.1: 123 | version "1.1.0" 124 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 125 | 126 | array-equal@^1.0.0: 127 | version "1.0.0" 128 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 129 | 130 | array-union@^1.0.1: 131 | version "1.0.2" 132 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 133 | dependencies: 134 | array-uniq "^1.0.1" 135 | 136 | array-uniq@^1.0.1: 137 | version "1.0.3" 138 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 139 | 140 | array-unique@^0.2.1: 141 | version "0.2.1" 142 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 143 | 144 | arrify@^1.0.0, arrify@^1.0.1: 145 | version "1.0.1" 146 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 147 | 148 | asn1@~0.2.3: 149 | version "0.2.3" 150 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 151 | 152 | assert-plus@1.0.0, assert-plus@^1.0.0: 153 | version "1.0.0" 154 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 155 | 156 | assert-plus@^0.2.0: 157 | version "0.2.0" 158 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 159 | 160 | async-each@^1.0.0: 161 | version "1.0.1" 162 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 163 | 164 | async@^1.4.0: 165 | version "1.5.2" 166 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 167 | 168 | async@^2.1.4: 169 | version "2.5.0" 170 | resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d" 171 | dependencies: 172 | lodash "^4.14.0" 173 | 174 | asynckit@^0.4.0: 175 | version "0.4.0" 176 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 177 | 178 | aws-sign2@~0.6.0: 179 | version "0.6.0" 180 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 181 | 182 | aws4@^1.2.1: 183 | version "1.6.0" 184 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 185 | 186 | babel-cli@^6.8.0: 187 | version "6.26.0" 188 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" 189 | dependencies: 190 | babel-core "^6.26.0" 191 | babel-polyfill "^6.26.0" 192 | babel-register "^6.26.0" 193 | babel-runtime "^6.26.0" 194 | commander "^2.11.0" 195 | convert-source-map "^1.5.0" 196 | fs-readdir-recursive "^1.0.0" 197 | glob "^7.1.2" 198 | lodash "^4.17.4" 199 | output-file-sync "^1.1.2" 200 | path-is-absolute "^1.0.1" 201 | slash "^1.0.0" 202 | source-map "^0.5.6" 203 | v8flags "^2.1.1" 204 | optionalDependencies: 205 | chokidar "^1.6.1" 206 | 207 | babel-code-frame@^6.26.0: 208 | version "6.26.0" 209 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 210 | dependencies: 211 | chalk "^1.1.3" 212 | esutils "^2.0.2" 213 | js-tokens "^3.0.2" 214 | 215 | babel-core@^6.0.0, babel-core@^6.26.0, babel-core@^6.8.0: 216 | version "6.26.0" 217 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 218 | dependencies: 219 | babel-code-frame "^6.26.0" 220 | babel-generator "^6.26.0" 221 | babel-helpers "^6.24.1" 222 | babel-messages "^6.23.0" 223 | babel-register "^6.26.0" 224 | babel-runtime "^6.26.0" 225 | babel-template "^6.26.0" 226 | babel-traverse "^6.26.0" 227 | babel-types "^6.26.0" 228 | babylon "^6.18.0" 229 | convert-source-map "^1.5.0" 230 | debug "^2.6.8" 231 | json5 "^0.5.1" 232 | lodash "^4.17.4" 233 | minimatch "^3.0.4" 234 | path-is-absolute "^1.0.1" 235 | private "^0.1.7" 236 | slash "^1.0.0" 237 | source-map "^0.5.6" 238 | 239 | babel-eslint@^6.0.4: 240 | version "6.1.2" 241 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-6.1.2.tgz#5293419fe3672d66598d327da9694567ba6a5f2f" 242 | dependencies: 243 | babel-traverse "^6.0.20" 244 | babel-types "^6.0.19" 245 | babylon "^6.0.18" 246 | lodash.assign "^4.0.0" 247 | lodash.pickby "^4.0.0" 248 | 249 | babel-generator@^6.18.0, babel-generator@^6.26.0: 250 | version "6.26.0" 251 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 252 | dependencies: 253 | babel-messages "^6.23.0" 254 | babel-runtime "^6.26.0" 255 | babel-types "^6.26.0" 256 | detect-indent "^4.0.0" 257 | jsesc "^1.3.0" 258 | lodash "^4.17.4" 259 | source-map "^0.5.6" 260 | trim-right "^1.0.1" 261 | 262 | babel-helper-bindify-decorators@^6.24.1: 263 | version "6.24.1" 264 | resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.24.1.tgz#14c19e5f142d7b47f19a52431e52b1ccbc40a330" 265 | dependencies: 266 | babel-runtime "^6.22.0" 267 | babel-traverse "^6.24.1" 268 | babel-types "^6.24.1" 269 | 270 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 271 | version "6.24.1" 272 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 273 | dependencies: 274 | babel-helper-explode-assignable-expression "^6.24.1" 275 | babel-runtime "^6.22.0" 276 | babel-types "^6.24.1" 277 | 278 | babel-helper-builder-react-jsx@^6.24.1: 279 | version "6.26.0" 280 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz#39ff8313b75c8b65dceff1f31d383e0ff2a408a0" 281 | dependencies: 282 | babel-runtime "^6.26.0" 283 | babel-types "^6.26.0" 284 | esutils "^2.0.2" 285 | 286 | babel-helper-call-delegate@^6.24.1: 287 | version "6.24.1" 288 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 289 | dependencies: 290 | babel-helper-hoist-variables "^6.24.1" 291 | babel-runtime "^6.22.0" 292 | babel-traverse "^6.24.1" 293 | babel-types "^6.24.1" 294 | 295 | babel-helper-define-map@^6.24.1: 296 | version "6.26.0" 297 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 298 | dependencies: 299 | babel-helper-function-name "^6.24.1" 300 | babel-runtime "^6.26.0" 301 | babel-types "^6.26.0" 302 | lodash "^4.17.4" 303 | 304 | babel-helper-explode-assignable-expression@^6.24.1: 305 | version "6.24.1" 306 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 307 | dependencies: 308 | babel-runtime "^6.22.0" 309 | babel-traverse "^6.24.1" 310 | babel-types "^6.24.1" 311 | 312 | babel-helper-explode-class@^6.24.1: 313 | version "6.24.1" 314 | resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.24.1.tgz#7dc2a3910dee007056e1e31d640ced3d54eaa9eb" 315 | dependencies: 316 | babel-helper-bindify-decorators "^6.24.1" 317 | babel-runtime "^6.22.0" 318 | babel-traverse "^6.24.1" 319 | babel-types "^6.24.1" 320 | 321 | babel-helper-function-name@^6.24.1: 322 | version "6.24.1" 323 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 324 | dependencies: 325 | babel-helper-get-function-arity "^6.24.1" 326 | babel-runtime "^6.22.0" 327 | babel-template "^6.24.1" 328 | babel-traverse "^6.24.1" 329 | babel-types "^6.24.1" 330 | 331 | babel-helper-get-function-arity@^6.24.1: 332 | version "6.24.1" 333 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 334 | dependencies: 335 | babel-runtime "^6.22.0" 336 | babel-types "^6.24.1" 337 | 338 | babel-helper-hoist-variables@^6.24.1: 339 | version "6.24.1" 340 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 341 | dependencies: 342 | babel-runtime "^6.22.0" 343 | babel-types "^6.24.1" 344 | 345 | babel-helper-optimise-call-expression@^6.24.1: 346 | version "6.24.1" 347 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 348 | dependencies: 349 | babel-runtime "^6.22.0" 350 | babel-types "^6.24.1" 351 | 352 | babel-helper-regex@^6.24.1: 353 | version "6.26.0" 354 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 355 | dependencies: 356 | babel-runtime "^6.26.0" 357 | babel-types "^6.26.0" 358 | lodash "^4.17.4" 359 | 360 | babel-helper-remap-async-to-generator@^6.24.1: 361 | version "6.24.1" 362 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 363 | dependencies: 364 | babel-helper-function-name "^6.24.1" 365 | babel-runtime "^6.22.0" 366 | babel-template "^6.24.1" 367 | babel-traverse "^6.24.1" 368 | babel-types "^6.24.1" 369 | 370 | babel-helper-replace-supers@^6.24.1: 371 | version "6.24.1" 372 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 373 | dependencies: 374 | babel-helper-optimise-call-expression "^6.24.1" 375 | babel-messages "^6.23.0" 376 | babel-runtime "^6.22.0" 377 | babel-template "^6.24.1" 378 | babel-traverse "^6.24.1" 379 | babel-types "^6.24.1" 380 | 381 | babel-helpers@^6.24.1: 382 | version "6.24.1" 383 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 384 | dependencies: 385 | babel-runtime "^6.22.0" 386 | babel-template "^6.24.1" 387 | 388 | babel-jest@^19.0.0: 389 | version "19.0.0" 390 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-19.0.0.tgz#59323ced99a3a84d359da219ca881074ffc6ce3f" 391 | dependencies: 392 | babel-core "^6.0.0" 393 | babel-plugin-istanbul "^4.0.0" 394 | babel-preset-jest "^19.0.0" 395 | 396 | babel-messages@^6.23.0: 397 | version "6.23.0" 398 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 399 | dependencies: 400 | babel-runtime "^6.22.0" 401 | 402 | babel-plugin-check-es2015-constants@^6.22.0, babel-plugin-check-es2015-constants@^6.5.0: 403 | version "6.22.0" 404 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 405 | dependencies: 406 | babel-runtime "^6.22.0" 407 | 408 | babel-plugin-istanbul@^4.0.0: 409 | version "4.1.4" 410 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.4.tgz#18dde84bf3ce329fddf3f4103fae921456d8e587" 411 | dependencies: 412 | find-up "^2.1.0" 413 | istanbul-lib-instrument "^1.7.2" 414 | test-exclude "^4.1.1" 415 | 416 | babel-plugin-jest-hoist@^19.0.0: 417 | version "19.0.0" 418 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-19.0.0.tgz#4ae2a04ea612a6e73651f3fde52c178991304bea" 419 | 420 | babel-plugin-react-transform@2.0.2: 421 | version "2.0.2" 422 | resolved "https://registry.yarnpkg.com/babel-plugin-react-transform/-/babel-plugin-react-transform-2.0.2.tgz#515bbfa996893981142d90b1f9b1635de2995109" 423 | dependencies: 424 | lodash "^4.6.1" 425 | 426 | babel-plugin-syntax-async-functions@^6.5.0, babel-plugin-syntax-async-functions@^6.8.0: 427 | version "6.13.0" 428 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 429 | 430 | babel-plugin-syntax-async-generators@^6.5.0: 431 | version "6.13.0" 432 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" 433 | 434 | babel-plugin-syntax-class-constructor-call@^6.18.0: 435 | version "6.18.0" 436 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-constructor-call/-/babel-plugin-syntax-class-constructor-call-6.18.0.tgz#9cb9d39fe43c8600bec8146456ddcbd4e1a76416" 437 | 438 | babel-plugin-syntax-class-properties@^6.5.0, babel-plugin-syntax-class-properties@^6.8.0: 439 | version "6.13.0" 440 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 441 | 442 | babel-plugin-syntax-decorators@^6.13.0: 443 | version "6.13.0" 444 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b" 445 | 446 | babel-plugin-syntax-do-expressions@^6.8.0: 447 | version "6.13.0" 448 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-do-expressions/-/babel-plugin-syntax-do-expressions-6.13.0.tgz#5747756139aa26d390d09410b03744ba07e4796d" 449 | 450 | babel-plugin-syntax-dynamic-import@^6.18.0: 451 | version "6.18.0" 452 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" 453 | 454 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 455 | version "6.13.0" 456 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 457 | 458 | babel-plugin-syntax-export-extensions@^6.8.0: 459 | version "6.13.0" 460 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-6.13.0.tgz#70a1484f0f9089a4e84ad44bac353c95b9b12721" 461 | 462 | babel-plugin-syntax-flow@^6.18.0, babel-plugin-syntax-flow@^6.5.0: 463 | version "6.18.0" 464 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 465 | 466 | babel-plugin-syntax-function-bind@^6.8.0: 467 | version "6.13.0" 468 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-function-bind/-/babel-plugin-syntax-function-bind-6.13.0.tgz#48c495f177bdf31a981e732f55adc0bdd2601f46" 469 | 470 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.5.0, babel-plugin-syntax-jsx@^6.8.0: 471 | version "6.18.0" 472 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 473 | 474 | babel-plugin-syntax-object-rest-spread@^6.8.0: 475 | version "6.13.0" 476 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 477 | 478 | babel-plugin-syntax-trailing-function-commas@^6.22.0, babel-plugin-syntax-trailing-function-commas@^6.5.0: 479 | version "6.22.0" 480 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 481 | 482 | babel-plugin-transform-async-generator-functions@^6.24.1: 483 | version "6.24.1" 484 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz#f058900145fd3e9907a6ddf28da59f215258a5db" 485 | dependencies: 486 | babel-helper-remap-async-to-generator "^6.24.1" 487 | babel-plugin-syntax-async-generators "^6.5.0" 488 | babel-runtime "^6.22.0" 489 | 490 | babel-plugin-transform-async-to-generator@^6.24.1: 491 | version "6.24.1" 492 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 493 | dependencies: 494 | babel-helper-remap-async-to-generator "^6.24.1" 495 | babel-plugin-syntax-async-functions "^6.8.0" 496 | babel-runtime "^6.22.0" 497 | 498 | babel-plugin-transform-class-constructor-call@^6.24.1: 499 | version "6.24.1" 500 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-constructor-call/-/babel-plugin-transform-class-constructor-call-6.24.1.tgz#80dc285505ac067dcb8d6c65e2f6f11ab7765ef9" 501 | dependencies: 502 | babel-plugin-syntax-class-constructor-call "^6.18.0" 503 | babel-runtime "^6.22.0" 504 | babel-template "^6.24.1" 505 | 506 | babel-plugin-transform-class-properties@^6.24.1, babel-plugin-transform-class-properties@^6.5.0: 507 | version "6.24.1" 508 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" 509 | dependencies: 510 | babel-helper-function-name "^6.24.1" 511 | babel-plugin-syntax-class-properties "^6.8.0" 512 | babel-runtime "^6.22.0" 513 | babel-template "^6.24.1" 514 | 515 | babel-plugin-transform-decorators@^6.24.1: 516 | version "6.24.1" 517 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.24.1.tgz#788013d8f8c6b5222bdf7b344390dfd77569e24d" 518 | dependencies: 519 | babel-helper-explode-class "^6.24.1" 520 | babel-plugin-syntax-decorators "^6.13.0" 521 | babel-runtime "^6.22.0" 522 | babel-template "^6.24.1" 523 | babel-types "^6.24.1" 524 | 525 | babel-plugin-transform-do-expressions@^6.22.0: 526 | version "6.22.0" 527 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-do-expressions/-/babel-plugin-transform-do-expressions-6.22.0.tgz#28ccaf92812d949c2cd1281f690c8fdc468ae9bb" 528 | dependencies: 529 | babel-plugin-syntax-do-expressions "^6.8.0" 530 | babel-runtime "^6.22.0" 531 | 532 | babel-plugin-transform-es2015-arrow-functions@^6.22.0, babel-plugin-transform-es2015-arrow-functions@^6.5.0: 533 | version "6.22.0" 534 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 535 | dependencies: 536 | babel-runtime "^6.22.0" 537 | 538 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 539 | version "6.22.0" 540 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 541 | dependencies: 542 | babel-runtime "^6.22.0" 543 | 544 | babel-plugin-transform-es2015-block-scoping@^6.24.1, babel-plugin-transform-es2015-block-scoping@^6.5.0: 545 | version "6.26.0" 546 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 547 | dependencies: 548 | babel-runtime "^6.26.0" 549 | babel-template "^6.26.0" 550 | babel-traverse "^6.26.0" 551 | babel-types "^6.26.0" 552 | lodash "^4.17.4" 553 | 554 | babel-plugin-transform-es2015-classes@^6.24.1, babel-plugin-transform-es2015-classes@^6.5.0: 555 | version "6.24.1" 556 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 557 | dependencies: 558 | babel-helper-define-map "^6.24.1" 559 | babel-helper-function-name "^6.24.1" 560 | babel-helper-optimise-call-expression "^6.24.1" 561 | babel-helper-replace-supers "^6.24.1" 562 | babel-messages "^6.23.0" 563 | babel-runtime "^6.22.0" 564 | babel-template "^6.24.1" 565 | babel-traverse "^6.24.1" 566 | babel-types "^6.24.1" 567 | 568 | babel-plugin-transform-es2015-computed-properties@^6.24.1, babel-plugin-transform-es2015-computed-properties@^6.5.0: 569 | version "6.24.1" 570 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 571 | dependencies: 572 | babel-runtime "^6.22.0" 573 | babel-template "^6.24.1" 574 | 575 | babel-plugin-transform-es2015-destructuring@^6.22.0, babel-plugin-transform-es2015-destructuring@^6.5.0: 576 | version "6.23.0" 577 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 578 | dependencies: 579 | babel-runtime "^6.22.0" 580 | 581 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1: 582 | version "6.24.1" 583 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 584 | dependencies: 585 | babel-runtime "^6.22.0" 586 | babel-types "^6.24.1" 587 | 588 | babel-plugin-transform-es2015-for-of@^6.22.0, babel-plugin-transform-es2015-for-of@^6.5.0: 589 | version "6.23.0" 590 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 591 | dependencies: 592 | babel-runtime "^6.22.0" 593 | 594 | babel-plugin-transform-es2015-function-name@^6.24.1, babel-plugin-transform-es2015-function-name@^6.5.0: 595 | version "6.24.1" 596 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 597 | dependencies: 598 | babel-helper-function-name "^6.24.1" 599 | babel-runtime "^6.22.0" 600 | babel-types "^6.24.1" 601 | 602 | babel-plugin-transform-es2015-literals@^6.22.0, babel-plugin-transform-es2015-literals@^6.5.0: 603 | version "6.22.0" 604 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 605 | dependencies: 606 | babel-runtime "^6.22.0" 607 | 608 | babel-plugin-transform-es2015-modules-amd@^6.24.1: 609 | version "6.24.1" 610 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 611 | dependencies: 612 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 613 | babel-runtime "^6.22.0" 614 | babel-template "^6.24.1" 615 | 616 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1, babel-plugin-transform-es2015-modules-commonjs@^6.5.0: 617 | version "6.26.0" 618 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 619 | dependencies: 620 | babel-plugin-transform-strict-mode "^6.24.1" 621 | babel-runtime "^6.26.0" 622 | babel-template "^6.26.0" 623 | babel-types "^6.26.0" 624 | 625 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1: 626 | version "6.24.1" 627 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 628 | dependencies: 629 | babel-helper-hoist-variables "^6.24.1" 630 | babel-runtime "^6.22.0" 631 | babel-template "^6.24.1" 632 | 633 | babel-plugin-transform-es2015-modules-umd@^6.24.1: 634 | version "6.24.1" 635 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 636 | dependencies: 637 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 638 | babel-runtime "^6.22.0" 639 | babel-template "^6.24.1" 640 | 641 | babel-plugin-transform-es2015-object-super@^6.24.1: 642 | version "6.24.1" 643 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 644 | dependencies: 645 | babel-helper-replace-supers "^6.24.1" 646 | babel-runtime "^6.22.0" 647 | 648 | babel-plugin-transform-es2015-parameters@^6.24.1, babel-plugin-transform-es2015-parameters@^6.5.0: 649 | version "6.24.1" 650 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 651 | dependencies: 652 | babel-helper-call-delegate "^6.24.1" 653 | babel-helper-get-function-arity "^6.24.1" 654 | babel-runtime "^6.22.0" 655 | babel-template "^6.24.1" 656 | babel-traverse "^6.24.1" 657 | babel-types "^6.24.1" 658 | 659 | babel-plugin-transform-es2015-shorthand-properties@^6.24.1, babel-plugin-transform-es2015-shorthand-properties@^6.5.0: 660 | version "6.24.1" 661 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 662 | dependencies: 663 | babel-runtime "^6.22.0" 664 | babel-types "^6.24.1" 665 | 666 | babel-plugin-transform-es2015-spread@^6.22.0, babel-plugin-transform-es2015-spread@^6.5.0: 667 | version "6.22.0" 668 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 669 | dependencies: 670 | babel-runtime "^6.22.0" 671 | 672 | babel-plugin-transform-es2015-sticky-regex@^6.24.1: 673 | version "6.24.1" 674 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 675 | dependencies: 676 | babel-helper-regex "^6.24.1" 677 | babel-runtime "^6.22.0" 678 | babel-types "^6.24.1" 679 | 680 | babel-plugin-transform-es2015-template-literals@^6.22.0, babel-plugin-transform-es2015-template-literals@^6.5.0: 681 | version "6.22.0" 682 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 683 | dependencies: 684 | babel-runtime "^6.22.0" 685 | 686 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 687 | version "6.23.0" 688 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 689 | dependencies: 690 | babel-runtime "^6.22.0" 691 | 692 | babel-plugin-transform-es2015-unicode-regex@^6.24.1: 693 | version "6.24.1" 694 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 695 | dependencies: 696 | babel-helper-regex "^6.24.1" 697 | babel-runtime "^6.22.0" 698 | regexpu-core "^2.0.0" 699 | 700 | babel-plugin-transform-exponentiation-operator@^6.24.1: 701 | version "6.24.1" 702 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 703 | dependencies: 704 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 705 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 706 | babel-runtime "^6.22.0" 707 | 708 | babel-plugin-transform-export-extensions@^6.22.0: 709 | version "6.22.0" 710 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.22.0.tgz#53738b47e75e8218589eea946cbbd39109bbe653" 711 | dependencies: 712 | babel-plugin-syntax-export-extensions "^6.8.0" 713 | babel-runtime "^6.22.0" 714 | 715 | babel-plugin-transform-flow-strip-types@^6.22.0, babel-plugin-transform-flow-strip-types@^6.5.0: 716 | version "6.22.0" 717 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 718 | dependencies: 719 | babel-plugin-syntax-flow "^6.18.0" 720 | babel-runtime "^6.22.0" 721 | 722 | babel-plugin-transform-function-bind@^6.22.0: 723 | version "6.22.0" 724 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-function-bind/-/babel-plugin-transform-function-bind-6.22.0.tgz#c6fb8e96ac296a310b8cf8ea401462407ddf6a97" 725 | dependencies: 726 | babel-plugin-syntax-function-bind "^6.8.0" 727 | babel-runtime "^6.22.0" 728 | 729 | babel-plugin-transform-object-assign@^6.5.0: 730 | version "6.22.0" 731 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-assign/-/babel-plugin-transform-object-assign-6.22.0.tgz#f99d2f66f1a0b0d498e346c5359684740caa20ba" 732 | dependencies: 733 | babel-runtime "^6.22.0" 734 | 735 | babel-plugin-transform-object-rest-spread@^6.22.0, babel-plugin-transform-object-rest-spread@^6.5.0: 736 | version "6.26.0" 737 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06" 738 | dependencies: 739 | babel-plugin-syntax-object-rest-spread "^6.8.0" 740 | babel-runtime "^6.26.0" 741 | 742 | babel-plugin-transform-react-display-name@^6.23.0, babel-plugin-transform-react-display-name@^6.5.0: 743 | version "6.25.0" 744 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz#67e2bf1f1e9c93ab08db96792e05392bf2cc28d1" 745 | dependencies: 746 | babel-runtime "^6.22.0" 747 | 748 | babel-plugin-transform-react-jsx-self@^6.22.0: 749 | version "6.22.0" 750 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" 751 | dependencies: 752 | babel-plugin-syntax-jsx "^6.8.0" 753 | babel-runtime "^6.22.0" 754 | 755 | babel-plugin-transform-react-jsx-source@^6.22.0, babel-plugin-transform-react-jsx-source@^6.5.0: 756 | version "6.22.0" 757 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" 758 | dependencies: 759 | babel-plugin-syntax-jsx "^6.8.0" 760 | babel-runtime "^6.22.0" 761 | 762 | babel-plugin-transform-react-jsx@^6.24.1, babel-plugin-transform-react-jsx@^6.5.0: 763 | version "6.24.1" 764 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" 765 | dependencies: 766 | babel-helper-builder-react-jsx "^6.24.1" 767 | babel-plugin-syntax-jsx "^6.8.0" 768 | babel-runtime "^6.22.0" 769 | 770 | babel-plugin-transform-regenerator@^6.24.1, babel-plugin-transform-regenerator@^6.5.0: 771 | version "6.26.0" 772 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 773 | dependencies: 774 | regenerator-transform "^0.10.0" 775 | 776 | babel-plugin-transform-strict-mode@^6.24.1: 777 | version "6.24.1" 778 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 779 | dependencies: 780 | babel-runtime "^6.22.0" 781 | babel-types "^6.24.1" 782 | 783 | babel-polyfill@^6.26.0, babel-polyfill@^6.8.0: 784 | version "6.26.0" 785 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 786 | dependencies: 787 | babel-runtime "^6.26.0" 788 | core-js "^2.5.0" 789 | regenerator-runtime "^0.10.5" 790 | 791 | babel-preset-es2015@^6.24.0, babel-preset-es2015@^6.24.1: 792 | version "6.24.1" 793 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" 794 | dependencies: 795 | babel-plugin-check-es2015-constants "^6.22.0" 796 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 797 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 798 | babel-plugin-transform-es2015-block-scoping "^6.24.1" 799 | babel-plugin-transform-es2015-classes "^6.24.1" 800 | babel-plugin-transform-es2015-computed-properties "^6.24.1" 801 | babel-plugin-transform-es2015-destructuring "^6.22.0" 802 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1" 803 | babel-plugin-transform-es2015-for-of "^6.22.0" 804 | babel-plugin-transform-es2015-function-name "^6.24.1" 805 | babel-plugin-transform-es2015-literals "^6.22.0" 806 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 807 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 808 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1" 809 | babel-plugin-transform-es2015-modules-umd "^6.24.1" 810 | babel-plugin-transform-es2015-object-super "^6.24.1" 811 | babel-plugin-transform-es2015-parameters "^6.24.1" 812 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1" 813 | babel-plugin-transform-es2015-spread "^6.22.0" 814 | babel-plugin-transform-es2015-sticky-regex "^6.24.1" 815 | babel-plugin-transform-es2015-template-literals "^6.22.0" 816 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 817 | babel-plugin-transform-es2015-unicode-regex "^6.24.1" 818 | babel-plugin-transform-regenerator "^6.24.1" 819 | 820 | babel-preset-es2016@^6.24.1: 821 | version "6.24.1" 822 | resolved "https://registry.yarnpkg.com/babel-preset-es2016/-/babel-preset-es2016-6.24.1.tgz#f900bf93e2ebc0d276df9b8ab59724ebfd959f8b" 823 | dependencies: 824 | babel-plugin-transform-exponentiation-operator "^6.24.1" 825 | 826 | babel-preset-es2017@^6.24.1: 827 | version "6.24.1" 828 | resolved "https://registry.yarnpkg.com/babel-preset-es2017/-/babel-preset-es2017-6.24.1.tgz#597beadfb9f7f208bcfd8a12e9b2b29b8b2f14d1" 829 | dependencies: 830 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 831 | babel-plugin-transform-async-to-generator "^6.24.1" 832 | 833 | babel-preset-flow@^6.23.0: 834 | version "6.23.0" 835 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" 836 | dependencies: 837 | babel-plugin-transform-flow-strip-types "^6.22.0" 838 | 839 | babel-preset-jest@^19.0.0: 840 | version "19.0.0" 841 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-19.0.0.tgz#22d67201d02324a195811288eb38294bb3cac396" 842 | dependencies: 843 | babel-plugin-jest-hoist "^19.0.0" 844 | 845 | babel-preset-latest@^6.24.0: 846 | version "6.24.1" 847 | resolved "https://registry.yarnpkg.com/babel-preset-latest/-/babel-preset-latest-6.24.1.tgz#677de069154a7485c2d25c577c02f624b85b85e8" 848 | dependencies: 849 | babel-preset-es2015 "^6.24.1" 850 | babel-preset-es2016 "^6.24.1" 851 | babel-preset-es2017 "^6.24.1" 852 | 853 | babel-preset-react-native@^1.9.0: 854 | version "1.9.2" 855 | resolved "https://registry.yarnpkg.com/babel-preset-react-native/-/babel-preset-react-native-1.9.2.tgz#b22addd2e355ff3b39671b79be807e52dfa145f2" 856 | dependencies: 857 | babel-plugin-check-es2015-constants "^6.5.0" 858 | babel-plugin-react-transform "2.0.2" 859 | babel-plugin-syntax-async-functions "^6.5.0" 860 | babel-plugin-syntax-class-properties "^6.5.0" 861 | babel-plugin-syntax-flow "^6.5.0" 862 | babel-plugin-syntax-jsx "^6.5.0" 863 | babel-plugin-syntax-trailing-function-commas "^6.5.0" 864 | babel-plugin-transform-class-properties "^6.5.0" 865 | babel-plugin-transform-es2015-arrow-functions "^6.5.0" 866 | babel-plugin-transform-es2015-block-scoping "^6.5.0" 867 | babel-plugin-transform-es2015-classes "^6.5.0" 868 | babel-plugin-transform-es2015-computed-properties "^6.5.0" 869 | babel-plugin-transform-es2015-destructuring "^6.5.0" 870 | babel-plugin-transform-es2015-for-of "^6.5.0" 871 | babel-plugin-transform-es2015-function-name "^6.5.0" 872 | babel-plugin-transform-es2015-literals "^6.5.0" 873 | babel-plugin-transform-es2015-modules-commonjs "^6.5.0" 874 | babel-plugin-transform-es2015-parameters "^6.5.0" 875 | babel-plugin-transform-es2015-shorthand-properties "^6.5.0" 876 | babel-plugin-transform-es2015-spread "^6.5.0" 877 | babel-plugin-transform-es2015-template-literals "^6.5.0" 878 | babel-plugin-transform-flow-strip-types "^6.5.0" 879 | babel-plugin-transform-object-assign "^6.5.0" 880 | babel-plugin-transform-object-rest-spread "^6.5.0" 881 | babel-plugin-transform-react-display-name "^6.5.0" 882 | babel-plugin-transform-react-jsx "^6.5.0" 883 | babel-plugin-transform-react-jsx-source "^6.5.0" 884 | babel-plugin-transform-regenerator "^6.5.0" 885 | react-transform-hmr "^1.0.4" 886 | 887 | babel-preset-react@^6.23.0: 888 | version "6.24.1" 889 | resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380" 890 | dependencies: 891 | babel-plugin-syntax-jsx "^6.3.13" 892 | babel-plugin-transform-react-display-name "^6.23.0" 893 | babel-plugin-transform-react-jsx "^6.24.1" 894 | babel-plugin-transform-react-jsx-self "^6.22.0" 895 | babel-plugin-transform-react-jsx-source "^6.22.0" 896 | babel-preset-flow "^6.23.0" 897 | 898 | babel-preset-stage-0@^6.22.0: 899 | version "6.24.1" 900 | resolved "https://registry.yarnpkg.com/babel-preset-stage-0/-/babel-preset-stage-0-6.24.1.tgz#5642d15042f91384d7e5af8bc88b1db95b039e6a" 901 | dependencies: 902 | babel-plugin-transform-do-expressions "^6.22.0" 903 | babel-plugin-transform-function-bind "^6.22.0" 904 | babel-preset-stage-1 "^6.24.1" 905 | 906 | babel-preset-stage-1@^6.24.1: 907 | version "6.24.1" 908 | resolved "https://registry.yarnpkg.com/babel-preset-stage-1/-/babel-preset-stage-1-6.24.1.tgz#7692cd7dcd6849907e6ae4a0a85589cfb9e2bfb0" 909 | dependencies: 910 | babel-plugin-transform-class-constructor-call "^6.24.1" 911 | babel-plugin-transform-export-extensions "^6.22.0" 912 | babel-preset-stage-2 "^6.24.1" 913 | 914 | babel-preset-stage-2@^6.24.1: 915 | version "6.24.1" 916 | resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz#d9e2960fb3d71187f0e64eec62bc07767219bdc1" 917 | dependencies: 918 | babel-plugin-syntax-dynamic-import "^6.18.0" 919 | babel-plugin-transform-class-properties "^6.24.1" 920 | babel-plugin-transform-decorators "^6.24.1" 921 | babel-preset-stage-3 "^6.24.1" 922 | 923 | babel-preset-stage-3@^6.24.1: 924 | version "6.24.1" 925 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz#836ada0a9e7a7fa37cb138fb9326f87934a48395" 926 | dependencies: 927 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 928 | babel-plugin-transform-async-generator-functions "^6.24.1" 929 | babel-plugin-transform-async-to-generator "^6.24.1" 930 | babel-plugin-transform-exponentiation-operator "^6.24.1" 931 | babel-plugin-transform-object-rest-spread "^6.22.0" 932 | 933 | babel-register@^6.26.0, babel-register@^6.8.0: 934 | version "6.26.0" 935 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 936 | dependencies: 937 | babel-core "^6.26.0" 938 | babel-runtime "^6.26.0" 939 | core-js "^2.5.0" 940 | home-or-tmp "^2.0.0" 941 | lodash "^4.17.4" 942 | mkdirp "^0.5.1" 943 | source-map-support "^0.4.15" 944 | 945 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 946 | version "6.26.0" 947 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 948 | dependencies: 949 | core-js "^2.4.0" 950 | regenerator-runtime "^0.11.0" 951 | 952 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0: 953 | version "6.26.0" 954 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 955 | dependencies: 956 | babel-runtime "^6.26.0" 957 | babel-traverse "^6.26.0" 958 | babel-types "^6.26.0" 959 | babylon "^6.18.0" 960 | lodash "^4.17.4" 961 | 962 | babel-traverse@^6.0.20, babel-traverse@^6.18.0, babel-traverse@^6.24.1, babel-traverse@^6.26.0: 963 | version "6.26.0" 964 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 965 | dependencies: 966 | babel-code-frame "^6.26.0" 967 | babel-messages "^6.23.0" 968 | babel-runtime "^6.26.0" 969 | babel-types "^6.26.0" 970 | babylon "^6.18.0" 971 | debug "^2.6.8" 972 | globals "^9.18.0" 973 | invariant "^2.2.2" 974 | lodash "^4.17.4" 975 | 976 | babel-types@^6.0.19, babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 977 | version "6.26.0" 978 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 979 | dependencies: 980 | babel-runtime "^6.26.0" 981 | esutils "^2.0.2" 982 | lodash "^4.17.4" 983 | to-fast-properties "^1.0.3" 984 | 985 | babylon@^6.0.18, babylon@^6.18.0: 986 | version "6.18.0" 987 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 988 | 989 | balanced-match@^1.0.0: 990 | version "1.0.0" 991 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 992 | 993 | bcrypt-pbkdf@^1.0.0: 994 | version "1.0.1" 995 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 996 | dependencies: 997 | tweetnacl "^0.14.3" 998 | 999 | binary-extensions@^1.0.0: 1000 | version "1.10.0" 1001 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.10.0.tgz#9aeb9a6c5e88638aad171e167f5900abe24835d0" 1002 | 1003 | block-stream@*: 1004 | version "0.0.9" 1005 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 1006 | dependencies: 1007 | inherits "~2.0.0" 1008 | 1009 | boom@2.x.x: 1010 | version "2.10.1" 1011 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 1012 | dependencies: 1013 | hoek "2.x.x" 1014 | 1015 | brace-expansion@^1.1.7: 1016 | version "1.1.8" 1017 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 1018 | dependencies: 1019 | balanced-match "^1.0.0" 1020 | concat-map "0.0.1" 1021 | 1022 | braces@^1.8.2: 1023 | version "1.8.5" 1024 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 1025 | dependencies: 1026 | expand-range "^1.8.1" 1027 | preserve "^0.2.0" 1028 | repeat-element "^1.1.2" 1029 | 1030 | browser-resolve@^1.11.2: 1031 | version "1.11.2" 1032 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 1033 | dependencies: 1034 | resolve "1.1.7" 1035 | 1036 | bser@1.0.2: 1037 | version "1.0.2" 1038 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 1039 | dependencies: 1040 | node-int64 "^0.4.0" 1041 | 1042 | bser@^2.0.0: 1043 | version "2.0.0" 1044 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 1045 | dependencies: 1046 | node-int64 "^0.4.0" 1047 | 1048 | builtin-modules@^1.0.0: 1049 | version "1.1.1" 1050 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 1051 | 1052 | caller-path@^0.1.0: 1053 | version "0.1.0" 1054 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 1055 | dependencies: 1056 | callsites "^0.2.0" 1057 | 1058 | callsites@^0.2.0: 1059 | version "0.2.0" 1060 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 1061 | 1062 | callsites@^2.0.0: 1063 | version "2.0.0" 1064 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 1065 | 1066 | camelcase@^1.0.2: 1067 | version "1.2.1" 1068 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 1069 | 1070 | camelcase@^3.0.0: 1071 | version "3.0.0" 1072 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 1073 | 1074 | caseless@~0.12.0: 1075 | version "0.12.0" 1076 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 1077 | 1078 | center-align@^0.1.1: 1079 | version "0.1.3" 1080 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 1081 | dependencies: 1082 | align-text "^0.1.3" 1083 | lazy-cache "^1.0.3" 1084 | 1085 | chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3: 1086 | version "1.1.3" 1087 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 1088 | dependencies: 1089 | ansi-styles "^2.2.1" 1090 | escape-string-regexp "^1.0.2" 1091 | has-ansi "^2.0.0" 1092 | strip-ansi "^3.0.0" 1093 | supports-color "^2.0.0" 1094 | 1095 | chokidar@^1.6.1: 1096 | version "1.7.0" 1097 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 1098 | dependencies: 1099 | anymatch "^1.3.0" 1100 | async-each "^1.0.0" 1101 | glob-parent "^2.0.0" 1102 | inherits "^2.0.1" 1103 | is-binary-path "^1.0.0" 1104 | is-glob "^2.0.0" 1105 | path-is-absolute "^1.0.0" 1106 | readdirp "^2.0.0" 1107 | optionalDependencies: 1108 | fsevents "^1.0.0" 1109 | 1110 | ci-info@^1.0.0: 1111 | version "1.1.1" 1112 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.1.tgz#47b44df118c48d2597b56d342e7e25791060171a" 1113 | 1114 | circular-json@^0.3.1: 1115 | version "0.3.3" 1116 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 1117 | 1118 | cli-cursor@^1.0.1: 1119 | version "1.0.2" 1120 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 1121 | dependencies: 1122 | restore-cursor "^1.0.1" 1123 | 1124 | cli-width@^2.0.0: 1125 | version "2.2.0" 1126 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 1127 | 1128 | cliui@^2.1.0: 1129 | version "2.1.0" 1130 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 1131 | dependencies: 1132 | center-align "^0.1.1" 1133 | right-align "^0.1.1" 1134 | wordwrap "0.0.2" 1135 | 1136 | cliui@^3.2.0: 1137 | version "3.2.0" 1138 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 1139 | dependencies: 1140 | string-width "^1.0.1" 1141 | strip-ansi "^3.0.1" 1142 | wrap-ansi "^2.0.0" 1143 | 1144 | co@^4.6.0: 1145 | version "4.6.0" 1146 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1147 | 1148 | code-point-at@^1.0.0: 1149 | version "1.1.0" 1150 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1151 | 1152 | color-convert@^1.9.0: 1153 | version "1.9.0" 1154 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 1155 | dependencies: 1156 | color-name "^1.1.1" 1157 | 1158 | color-name@^1.1.1: 1159 | version "1.1.3" 1160 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 1161 | 1162 | colors@1.1.2: 1163 | version "1.1.2" 1164 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" 1165 | 1166 | combined-stream@^1.0.5, combined-stream@~1.0.5: 1167 | version "1.0.5" 1168 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 1169 | dependencies: 1170 | delayed-stream "~1.0.0" 1171 | 1172 | commander@^2.11.0: 1173 | version "2.11.0" 1174 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" 1175 | 1176 | concat-map@0.0.1: 1177 | version "0.0.1" 1178 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1179 | 1180 | concat-stream@^1.4.6: 1181 | version "1.6.0" 1182 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 1183 | dependencies: 1184 | inherits "^2.0.3" 1185 | readable-stream "^2.2.2" 1186 | typedarray "^0.0.6" 1187 | 1188 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1189 | version "1.1.0" 1190 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1191 | 1192 | content-type-parser@^1.0.1: 1193 | version "1.0.1" 1194 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 1195 | 1196 | convert-source-map@^1.5.0: 1197 | version "1.5.0" 1198 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 1199 | 1200 | core-js@^2.4.0, core-js@^2.5.0: 1201 | version "2.5.1" 1202 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b" 1203 | 1204 | core-util-is@1.0.2, core-util-is@~1.0.0: 1205 | version "1.0.2" 1206 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1207 | 1208 | cryptiles@2.x.x: 1209 | version "2.0.5" 1210 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1211 | dependencies: 1212 | boom "2.x.x" 1213 | 1214 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 1215 | version "0.3.2" 1216 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 1217 | 1218 | "cssstyle@>= 0.2.37 < 0.3.0": 1219 | version "0.2.37" 1220 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 1221 | dependencies: 1222 | cssom "0.3.x" 1223 | 1224 | d@1: 1225 | version "1.0.0" 1226 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 1227 | dependencies: 1228 | es5-ext "^0.10.9" 1229 | 1230 | dashdash@^1.12.0: 1231 | version "1.14.1" 1232 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1233 | dependencies: 1234 | assert-plus "^1.0.0" 1235 | 1236 | debug@^2.1.1, debug@^2.2.0, debug@^2.6.3, debug@^2.6.8: 1237 | version "2.6.8" 1238 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 1239 | dependencies: 1240 | ms "2.0.0" 1241 | 1242 | decamelize@^1.0.0, decamelize@^1.1.1: 1243 | version "1.2.0" 1244 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1245 | 1246 | deep-extend@~0.4.0: 1247 | version "0.4.2" 1248 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1249 | 1250 | deep-is@~0.1.3: 1251 | version "0.1.3" 1252 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1253 | 1254 | default-require-extensions@^1.0.0: 1255 | version "1.0.0" 1256 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 1257 | dependencies: 1258 | strip-bom "^2.0.0" 1259 | 1260 | del@^2.0.2: 1261 | version "2.2.2" 1262 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1263 | dependencies: 1264 | globby "^5.0.0" 1265 | is-path-cwd "^1.0.0" 1266 | is-path-in-cwd "^1.0.0" 1267 | object-assign "^4.0.1" 1268 | pify "^2.0.0" 1269 | pinkie-promise "^2.0.0" 1270 | rimraf "^2.2.8" 1271 | 1272 | delayed-stream@~1.0.0: 1273 | version "1.0.0" 1274 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1275 | 1276 | delegates@^1.0.0: 1277 | version "1.0.0" 1278 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1279 | 1280 | detect-indent@^4.0.0: 1281 | version "4.0.0" 1282 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1283 | dependencies: 1284 | repeating "^2.0.0" 1285 | 1286 | diff@^3.0.0: 1287 | version "3.3.1" 1288 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.3.1.tgz#aa8567a6eed03c531fc89d3f711cd0e5259dec75" 1289 | 1290 | doctrine@^1.2.2: 1291 | version "1.5.0" 1292 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1293 | dependencies: 1294 | esutils "^2.0.2" 1295 | isarray "^1.0.0" 1296 | 1297 | dom-walk@^0.1.0: 1298 | version "0.1.1" 1299 | resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.1.tgz#672226dc74c8f799ad35307df936aba11acd6018" 1300 | 1301 | ecc-jsbn@~0.1.1: 1302 | version "0.1.1" 1303 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1304 | dependencies: 1305 | jsbn "~0.1.0" 1306 | 1307 | errno@^0.1.4: 1308 | version "0.1.4" 1309 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 1310 | dependencies: 1311 | prr "~0.0.0" 1312 | 1313 | error-ex@^1.2.0: 1314 | version "1.3.1" 1315 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1316 | dependencies: 1317 | is-arrayish "^0.2.1" 1318 | 1319 | es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14: 1320 | version "0.10.30" 1321 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.30.tgz#7141a16836697dbabfaaaeee41495ce29f52c939" 1322 | dependencies: 1323 | es6-iterator "2" 1324 | es6-symbol "~3.1" 1325 | 1326 | es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1: 1327 | version "2.0.1" 1328 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512" 1329 | dependencies: 1330 | d "1" 1331 | es5-ext "^0.10.14" 1332 | es6-symbol "^3.1" 1333 | 1334 | es6-map@^0.1.3: 1335 | version "0.1.5" 1336 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 1337 | dependencies: 1338 | d "1" 1339 | es5-ext "~0.10.14" 1340 | es6-iterator "~2.0.1" 1341 | es6-set "~0.1.5" 1342 | es6-symbol "~3.1.1" 1343 | event-emitter "~0.3.5" 1344 | 1345 | es6-set@~0.1.5: 1346 | version "0.1.5" 1347 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 1348 | dependencies: 1349 | d "1" 1350 | es5-ext "~0.10.14" 1351 | es6-iterator "~2.0.1" 1352 | es6-symbol "3.1.1" 1353 | event-emitter "~0.3.5" 1354 | 1355 | es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1: 1356 | version "3.1.1" 1357 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 1358 | dependencies: 1359 | d "1" 1360 | es5-ext "~0.10.14" 1361 | 1362 | es6-weak-map@^2.0.1: 1363 | version "2.0.2" 1364 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 1365 | dependencies: 1366 | d "1" 1367 | es5-ext "^0.10.14" 1368 | es6-iterator "^2.0.1" 1369 | es6-symbol "^3.1.1" 1370 | 1371 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1372 | version "1.0.5" 1373 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1374 | 1375 | escodegen@^1.6.1: 1376 | version "1.8.1" 1377 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 1378 | dependencies: 1379 | esprima "^2.7.1" 1380 | estraverse "^1.9.1" 1381 | esutils "^2.0.2" 1382 | optionator "^0.8.1" 1383 | optionalDependencies: 1384 | source-map "~0.2.0" 1385 | 1386 | escope@^3.6.0: 1387 | version "3.6.0" 1388 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1389 | dependencies: 1390 | es6-map "^0.1.3" 1391 | es6-weak-map "^2.0.1" 1392 | esrecurse "^4.1.0" 1393 | estraverse "^4.1.1" 1394 | 1395 | eslint-plugin-babel@^3.0.0: 1396 | version "3.3.0" 1397 | resolved "https://registry.yarnpkg.com/eslint-plugin-babel/-/eslint-plugin-babel-3.3.0.tgz#2f494aedcf6f4aa4e75b9155980837bc1fbde193" 1398 | 1399 | eslint-plugin-react-native@^1.0.0: 1400 | version "1.2.1" 1401 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-native/-/eslint-plugin-react-native-1.2.1.tgz#49c5edc82944b993b0a3d229ce09e8217e851377" 1402 | 1403 | eslint-plugin-react@^4.2.3: 1404 | version "4.3.0" 1405 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-4.3.0.tgz#c79aac8069d62de27887c13b8298d592088de378" 1406 | 1407 | eslint@^2.5.1: 1408 | version "2.13.1" 1409 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-2.13.1.tgz#e4cc8fa0f009fb829aaae23855a29360be1f6c11" 1410 | dependencies: 1411 | chalk "^1.1.3" 1412 | concat-stream "^1.4.6" 1413 | debug "^2.1.1" 1414 | doctrine "^1.2.2" 1415 | es6-map "^0.1.3" 1416 | escope "^3.6.0" 1417 | espree "^3.1.6" 1418 | estraverse "^4.2.0" 1419 | esutils "^2.0.2" 1420 | file-entry-cache "^1.1.1" 1421 | glob "^7.0.3" 1422 | globals "^9.2.0" 1423 | ignore "^3.1.2" 1424 | imurmurhash "^0.1.4" 1425 | inquirer "^0.12.0" 1426 | is-my-json-valid "^2.10.0" 1427 | is-resolvable "^1.0.0" 1428 | js-yaml "^3.5.1" 1429 | json-stable-stringify "^1.0.0" 1430 | levn "^0.3.0" 1431 | lodash "^4.0.0" 1432 | mkdirp "^0.5.0" 1433 | optionator "^0.8.1" 1434 | path-is-absolute "^1.0.0" 1435 | path-is-inside "^1.0.1" 1436 | pluralize "^1.2.1" 1437 | progress "^1.1.8" 1438 | require-uncached "^1.0.2" 1439 | shelljs "^0.6.0" 1440 | strip-json-comments "~1.0.1" 1441 | table "^3.7.8" 1442 | text-table "~0.2.0" 1443 | user-home "^2.0.0" 1444 | 1445 | espree@^3.1.6: 1446 | version "3.5.0" 1447 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.0.tgz#98358625bdd055861ea27e2867ea729faf463d8d" 1448 | dependencies: 1449 | acorn "^5.1.1" 1450 | acorn-jsx "^3.0.0" 1451 | 1452 | esprima@^2.7.1: 1453 | version "2.7.3" 1454 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1455 | 1456 | esprima@^4.0.0: 1457 | version "4.0.0" 1458 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1459 | 1460 | esrecurse@^4.1.0: 1461 | version "4.2.0" 1462 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 1463 | dependencies: 1464 | estraverse "^4.1.0" 1465 | object-assign "^4.0.1" 1466 | 1467 | estraverse@^1.9.1: 1468 | version "1.9.3" 1469 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 1470 | 1471 | estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: 1472 | version "4.2.0" 1473 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1474 | 1475 | esutils@^2.0.2: 1476 | version "2.0.2" 1477 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1478 | 1479 | event-emitter@~0.3.5: 1480 | version "0.3.5" 1481 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 1482 | dependencies: 1483 | d "1" 1484 | es5-ext "~0.10.14" 1485 | 1486 | exec-sh@^0.2.0: 1487 | version "0.2.0" 1488 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 1489 | dependencies: 1490 | merge "^1.1.3" 1491 | 1492 | exit-hook@^1.0.0: 1493 | version "1.1.1" 1494 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1495 | 1496 | exit@^0.1.2: 1497 | version "0.1.2" 1498 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 1499 | 1500 | expand-brackets@^0.1.4: 1501 | version "0.1.5" 1502 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1503 | dependencies: 1504 | is-posix-bracket "^0.1.0" 1505 | 1506 | expand-range@^1.8.1: 1507 | version "1.8.2" 1508 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1509 | dependencies: 1510 | fill-range "^2.1.0" 1511 | 1512 | extend@~3.0.0: 1513 | version "3.0.1" 1514 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1515 | 1516 | extglob@^0.3.1: 1517 | version "0.3.2" 1518 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1519 | dependencies: 1520 | is-extglob "^1.0.0" 1521 | 1522 | extsprintf@1.3.0, extsprintf@^1.2.0: 1523 | version "1.3.0" 1524 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1525 | 1526 | fast-levenshtein@~2.0.4: 1527 | version "2.0.6" 1528 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1529 | 1530 | fb-watchman@^1.8.0: 1531 | version "1.9.2" 1532 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 1533 | dependencies: 1534 | bser "1.0.2" 1535 | 1536 | fb-watchman@^2.0.0: 1537 | version "2.0.0" 1538 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1539 | dependencies: 1540 | bser "^2.0.0" 1541 | 1542 | figures@^1.3.5: 1543 | version "1.7.0" 1544 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1545 | dependencies: 1546 | escape-string-regexp "^1.0.5" 1547 | object-assign "^4.1.0" 1548 | 1549 | file-entry-cache@^1.1.1: 1550 | version "1.3.1" 1551 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-1.3.1.tgz#44c61ea607ae4be9c1402f41f44270cbfe334ff8" 1552 | dependencies: 1553 | flat-cache "^1.2.1" 1554 | object-assign "^4.0.1" 1555 | 1556 | filename-regex@^2.0.0: 1557 | version "2.0.1" 1558 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1559 | 1560 | fileset@^2.0.2: 1561 | version "2.0.3" 1562 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1563 | dependencies: 1564 | glob "^7.0.3" 1565 | minimatch "^3.0.3" 1566 | 1567 | fill-keys@^1.0.2: 1568 | version "1.0.2" 1569 | resolved "https://registry.yarnpkg.com/fill-keys/-/fill-keys-1.0.2.tgz#9a8fa36f4e8ad634e3bf6b4f3c8882551452eb20" 1570 | dependencies: 1571 | is-object "~1.0.1" 1572 | merge-descriptors "~1.0.0" 1573 | 1574 | fill-range@^2.1.0: 1575 | version "2.2.3" 1576 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1577 | dependencies: 1578 | is-number "^2.1.0" 1579 | isobject "^2.0.0" 1580 | randomatic "^1.1.3" 1581 | repeat-element "^1.1.2" 1582 | repeat-string "^1.5.2" 1583 | 1584 | find-up@^1.0.0: 1585 | version "1.1.2" 1586 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1587 | dependencies: 1588 | path-exists "^2.0.0" 1589 | pinkie-promise "^2.0.0" 1590 | 1591 | find-up@^2.1.0: 1592 | version "2.1.0" 1593 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1594 | dependencies: 1595 | locate-path "^2.0.0" 1596 | 1597 | flat-cache@^1.2.1: 1598 | version "1.2.2" 1599 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 1600 | dependencies: 1601 | circular-json "^0.3.1" 1602 | del "^2.0.2" 1603 | graceful-fs "^4.1.2" 1604 | write "^0.2.1" 1605 | 1606 | for-in@^1.0.1: 1607 | version "1.0.2" 1608 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1609 | 1610 | for-own@^0.1.4: 1611 | version "0.1.5" 1612 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1613 | dependencies: 1614 | for-in "^1.0.1" 1615 | 1616 | forever-agent@~0.6.1: 1617 | version "0.6.1" 1618 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1619 | 1620 | form-data@~2.1.1: 1621 | version "2.1.4" 1622 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1623 | dependencies: 1624 | asynckit "^0.4.0" 1625 | combined-stream "^1.0.5" 1626 | mime-types "^2.1.12" 1627 | 1628 | fs-readdir-recursive@^1.0.0: 1629 | version "1.0.0" 1630 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1631 | 1632 | fs.realpath@^1.0.0: 1633 | version "1.0.0" 1634 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1635 | 1636 | fsevents@^1.0.0: 1637 | version "1.1.2" 1638 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" 1639 | dependencies: 1640 | nan "^2.3.0" 1641 | node-pre-gyp "^0.6.36" 1642 | 1643 | fstream-ignore@^1.0.5: 1644 | version "1.0.5" 1645 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1646 | dependencies: 1647 | fstream "^1.0.0" 1648 | inherits "2" 1649 | minimatch "^3.0.0" 1650 | 1651 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1652 | version "1.0.11" 1653 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1654 | dependencies: 1655 | graceful-fs "^4.1.2" 1656 | inherits "~2.0.0" 1657 | mkdirp ">=0.5 0" 1658 | rimraf "2" 1659 | 1660 | gauge@~2.7.3: 1661 | version "2.7.4" 1662 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1663 | dependencies: 1664 | aproba "^1.0.3" 1665 | console-control-strings "^1.0.0" 1666 | has-unicode "^2.0.0" 1667 | object-assign "^4.1.0" 1668 | signal-exit "^3.0.0" 1669 | string-width "^1.0.1" 1670 | strip-ansi "^3.0.1" 1671 | wide-align "^1.1.0" 1672 | 1673 | generate-function@^2.0.0: 1674 | version "2.0.0" 1675 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1676 | 1677 | generate-object-property@^1.1.0: 1678 | version "1.2.0" 1679 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1680 | dependencies: 1681 | is-property "^1.0.0" 1682 | 1683 | get-caller-file@^1.0.1: 1684 | version "1.0.2" 1685 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1686 | 1687 | getpass@^0.1.1: 1688 | version "0.1.7" 1689 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1690 | dependencies: 1691 | assert-plus "^1.0.0" 1692 | 1693 | glob-base@^0.3.0: 1694 | version "0.3.0" 1695 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1696 | dependencies: 1697 | glob-parent "^2.0.0" 1698 | is-glob "^2.0.0" 1699 | 1700 | glob-parent@^2.0.0: 1701 | version "2.0.0" 1702 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1703 | dependencies: 1704 | is-glob "^2.0.0" 1705 | 1706 | glob@^3.2.11: 1707 | version "3.2.11" 1708 | resolved "https://registry.yarnpkg.com/glob/-/glob-3.2.11.tgz#4a973f635b9190f715d10987d5c00fd2815ebe3d" 1709 | dependencies: 1710 | inherits "2" 1711 | minimatch "0.3" 1712 | 1713 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.2: 1714 | version "7.1.2" 1715 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1716 | dependencies: 1717 | fs.realpath "^1.0.0" 1718 | inflight "^1.0.4" 1719 | inherits "2" 1720 | minimatch "^3.0.4" 1721 | once "^1.3.0" 1722 | path-is-absolute "^1.0.0" 1723 | 1724 | global@^4.3.0: 1725 | version "4.3.2" 1726 | resolved "https://registry.yarnpkg.com/global/-/global-4.3.2.tgz#e76989268a6c74c38908b1305b10fc0e394e9d0f" 1727 | dependencies: 1728 | min-document "^2.19.0" 1729 | process "~0.5.1" 1730 | 1731 | globals@^9.18.0, globals@^9.2.0: 1732 | version "9.18.0" 1733 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1734 | 1735 | globby@^5.0.0: 1736 | version "5.0.0" 1737 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1738 | dependencies: 1739 | array-union "^1.0.1" 1740 | arrify "^1.0.0" 1741 | glob "^7.0.3" 1742 | object-assign "^4.0.1" 1743 | pify "^2.0.0" 1744 | pinkie-promise "^2.0.0" 1745 | 1746 | graceful-fs@^4.1.2, graceful-fs@^4.1.4, graceful-fs@^4.1.6: 1747 | version "4.1.11" 1748 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1749 | 1750 | growly@^1.3.0: 1751 | version "1.3.0" 1752 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1753 | 1754 | handlebars@^4.0.3: 1755 | version "4.0.10" 1756 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" 1757 | dependencies: 1758 | async "^1.4.0" 1759 | optimist "^0.6.1" 1760 | source-map "^0.4.4" 1761 | optionalDependencies: 1762 | uglify-js "^2.6" 1763 | 1764 | har-schema@^1.0.5: 1765 | version "1.0.5" 1766 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1767 | 1768 | har-validator@~4.2.1: 1769 | version "4.2.1" 1770 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1771 | dependencies: 1772 | ajv "^4.9.1" 1773 | har-schema "^1.0.5" 1774 | 1775 | has-ansi@^2.0.0: 1776 | version "2.0.0" 1777 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1778 | dependencies: 1779 | ansi-regex "^2.0.0" 1780 | 1781 | has-flag@^1.0.0: 1782 | version "1.0.0" 1783 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1784 | 1785 | has-unicode@^2.0.0: 1786 | version "2.0.1" 1787 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1788 | 1789 | hawk@~3.1.3: 1790 | version "3.1.3" 1791 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1792 | dependencies: 1793 | boom "2.x.x" 1794 | cryptiles "2.x.x" 1795 | hoek "2.x.x" 1796 | sntp "1.x.x" 1797 | 1798 | hoek@2.x.x: 1799 | version "2.16.3" 1800 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1801 | 1802 | home-or-tmp@^2.0.0: 1803 | version "2.0.0" 1804 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1805 | dependencies: 1806 | os-homedir "^1.0.0" 1807 | os-tmpdir "^1.0.1" 1808 | 1809 | hosted-git-info@^2.1.4: 1810 | version "2.5.0" 1811 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1812 | 1813 | html-encoding-sniffer@^1.0.1: 1814 | version "1.0.1" 1815 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 1816 | dependencies: 1817 | whatwg-encoding "^1.0.1" 1818 | 1819 | http-signature@~1.1.0: 1820 | version "1.1.1" 1821 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1822 | dependencies: 1823 | assert-plus "^0.2.0" 1824 | jsprim "^1.2.2" 1825 | sshpk "^1.7.0" 1826 | 1827 | iconv-lite@0.4.13: 1828 | version "0.4.13" 1829 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1830 | 1831 | ignore@^3.1.2: 1832 | version "3.3.5" 1833 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.5.tgz#c4e715455f6073a8d7e5dae72d2fc9d71663dba6" 1834 | 1835 | imurmurhash@^0.1.4: 1836 | version "0.1.4" 1837 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1838 | 1839 | inflight@^1.0.4: 1840 | version "1.0.6" 1841 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1842 | dependencies: 1843 | once "^1.3.0" 1844 | wrappy "1" 1845 | 1846 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.3: 1847 | version "2.0.3" 1848 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1849 | 1850 | ini@~1.3.0: 1851 | version "1.3.4" 1852 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1853 | 1854 | inquirer@^0.12.0: 1855 | version "0.12.0" 1856 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 1857 | dependencies: 1858 | ansi-escapes "^1.1.0" 1859 | ansi-regex "^2.0.0" 1860 | chalk "^1.0.0" 1861 | cli-cursor "^1.0.1" 1862 | cli-width "^2.0.0" 1863 | figures "^1.3.5" 1864 | lodash "^4.3.0" 1865 | readline2 "^1.0.1" 1866 | run-async "^0.1.0" 1867 | rx-lite "^3.1.2" 1868 | string-width "^1.0.1" 1869 | strip-ansi "^3.0.0" 1870 | through "^2.3.6" 1871 | 1872 | invariant@^2.2.2: 1873 | version "2.2.2" 1874 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1875 | dependencies: 1876 | loose-envify "^1.0.0" 1877 | 1878 | invert-kv@^1.0.0: 1879 | version "1.0.0" 1880 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1881 | 1882 | is-arrayish@^0.2.1: 1883 | version "0.2.1" 1884 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1885 | 1886 | is-binary-path@^1.0.0: 1887 | version "1.0.1" 1888 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1889 | dependencies: 1890 | binary-extensions "^1.0.0" 1891 | 1892 | is-buffer@^1.1.5: 1893 | version "1.1.5" 1894 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1895 | 1896 | is-builtin-module@^1.0.0: 1897 | version "1.0.0" 1898 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1899 | dependencies: 1900 | builtin-modules "^1.0.0" 1901 | 1902 | is-ci@^1.0.9: 1903 | version "1.0.10" 1904 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1905 | dependencies: 1906 | ci-info "^1.0.0" 1907 | 1908 | is-dotfile@^1.0.0: 1909 | version "1.0.3" 1910 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1911 | 1912 | is-equal-shallow@^0.1.3: 1913 | version "0.1.3" 1914 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1915 | dependencies: 1916 | is-primitive "^2.0.0" 1917 | 1918 | is-extendable@^0.1.1: 1919 | version "0.1.1" 1920 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1921 | 1922 | is-extglob@^1.0.0: 1923 | version "1.0.0" 1924 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1925 | 1926 | is-finite@^1.0.0: 1927 | version "1.0.2" 1928 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1929 | dependencies: 1930 | number-is-nan "^1.0.0" 1931 | 1932 | is-fullwidth-code-point@^1.0.0: 1933 | version "1.0.0" 1934 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1935 | dependencies: 1936 | number-is-nan "^1.0.0" 1937 | 1938 | is-fullwidth-code-point@^2.0.0: 1939 | version "2.0.0" 1940 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1941 | 1942 | is-glob@^2.0.0, is-glob@^2.0.1: 1943 | version "2.0.1" 1944 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1945 | dependencies: 1946 | is-extglob "^1.0.0" 1947 | 1948 | is-my-json-valid@^2.10.0: 1949 | version "2.16.1" 1950 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.1.tgz#5a846777e2c2620d1e69104e5d3a03b1f6088f11" 1951 | dependencies: 1952 | generate-function "^2.0.0" 1953 | generate-object-property "^1.1.0" 1954 | jsonpointer "^4.0.0" 1955 | xtend "^4.0.0" 1956 | 1957 | is-number@^2.1.0: 1958 | version "2.1.0" 1959 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1960 | dependencies: 1961 | kind-of "^3.0.2" 1962 | 1963 | is-number@^3.0.0: 1964 | version "3.0.0" 1965 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1966 | dependencies: 1967 | kind-of "^3.0.2" 1968 | 1969 | is-object@~1.0.1: 1970 | version "1.0.1" 1971 | resolved "https://registry.yarnpkg.com/is-object/-/is-object-1.0.1.tgz#8952688c5ec2ffd6b03ecc85e769e02903083470" 1972 | 1973 | is-path-cwd@^1.0.0: 1974 | version "1.0.0" 1975 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1976 | 1977 | is-path-in-cwd@^1.0.0: 1978 | version "1.0.0" 1979 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1980 | dependencies: 1981 | is-path-inside "^1.0.0" 1982 | 1983 | is-path-inside@^1.0.0: 1984 | version "1.0.0" 1985 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1986 | dependencies: 1987 | path-is-inside "^1.0.1" 1988 | 1989 | is-posix-bracket@^0.1.0: 1990 | version "0.1.1" 1991 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1992 | 1993 | is-primitive@^2.0.0: 1994 | version "2.0.0" 1995 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1996 | 1997 | is-property@^1.0.0: 1998 | version "1.0.2" 1999 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 2000 | 2001 | is-resolvable@^1.0.0: 2002 | version "1.0.0" 2003 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 2004 | dependencies: 2005 | tryit "^1.0.1" 2006 | 2007 | is-typedarray@~1.0.0: 2008 | version "1.0.0" 2009 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2010 | 2011 | is-utf8@^0.2.0: 2012 | version "0.2.1" 2013 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2014 | 2015 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2016 | version "1.0.0" 2017 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2018 | 2019 | isexe@^2.0.0: 2020 | version "2.0.0" 2021 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2022 | 2023 | isobject@^2.0.0: 2024 | version "2.1.0" 2025 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2026 | dependencies: 2027 | isarray "1.0.0" 2028 | 2029 | isstream@~0.1.2: 2030 | version "0.1.2" 2031 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2032 | 2033 | istanbul-api@^1.1.0-alpha.1: 2034 | version "1.1.14" 2035 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.14.tgz#25bc5701f7c680c0ffff913de46e3619a3a6e680" 2036 | dependencies: 2037 | async "^2.1.4" 2038 | fileset "^2.0.2" 2039 | istanbul-lib-coverage "^1.1.1" 2040 | istanbul-lib-hook "^1.0.7" 2041 | istanbul-lib-instrument "^1.8.0" 2042 | istanbul-lib-report "^1.1.1" 2043 | istanbul-lib-source-maps "^1.2.1" 2044 | istanbul-reports "^1.1.2" 2045 | js-yaml "^3.7.0" 2046 | mkdirp "^0.5.1" 2047 | once "^1.4.0" 2048 | 2049 | istanbul-lib-coverage@^1.0.0, istanbul-lib-coverage@^1.1.1: 2050 | version "1.1.1" 2051 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 2052 | 2053 | istanbul-lib-hook@^1.0.7: 2054 | version "1.0.7" 2055 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.7.tgz#dd6607f03076578fe7d6f2a630cf143b49bacddc" 2056 | dependencies: 2057 | append-transform "^0.4.0" 2058 | 2059 | istanbul-lib-instrument@^1.1.1, istanbul-lib-instrument@^1.7.2, istanbul-lib-instrument@^1.8.0: 2060 | version "1.8.0" 2061 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.8.0.tgz#66f6c9421cc9ec4704f76f2db084ba9078a2b532" 2062 | dependencies: 2063 | babel-generator "^6.18.0" 2064 | babel-template "^6.16.0" 2065 | babel-traverse "^6.18.0" 2066 | babel-types "^6.18.0" 2067 | babylon "^6.18.0" 2068 | istanbul-lib-coverage "^1.1.1" 2069 | semver "^5.3.0" 2070 | 2071 | istanbul-lib-report@^1.1.1: 2072 | version "1.1.1" 2073 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#f0e55f56655ffa34222080b7a0cd4760e1405fc9" 2074 | dependencies: 2075 | istanbul-lib-coverage "^1.1.1" 2076 | mkdirp "^0.5.1" 2077 | path-parse "^1.0.5" 2078 | supports-color "^3.1.2" 2079 | 2080 | istanbul-lib-source-maps@^1.2.1: 2081 | version "1.2.1" 2082 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.1.tgz#a6fe1acba8ce08eebc638e572e294d267008aa0c" 2083 | dependencies: 2084 | debug "^2.6.3" 2085 | istanbul-lib-coverage "^1.1.1" 2086 | mkdirp "^0.5.1" 2087 | rimraf "^2.6.1" 2088 | source-map "^0.5.3" 2089 | 2090 | istanbul-reports@^1.1.2: 2091 | version "1.1.2" 2092 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.2.tgz#0fb2e3f6aa9922bd3ce45d05d8ab4d5e8e07bd4f" 2093 | dependencies: 2094 | handlebars "^4.0.3" 2095 | 2096 | jasmine-core@~2.4.0: 2097 | version "2.4.1" 2098 | resolved "https://registry.yarnpkg.com/jasmine-core/-/jasmine-core-2.4.1.tgz#6f83ab3a0f16951722ce07d206c773d57cc838be" 2099 | 2100 | jasmine-expect@^2.0.2: 2101 | version "2.0.2" 2102 | resolved "https://registry.yarnpkg.com/jasmine-expect/-/jasmine-expect-2.0.2.tgz#196b0076958138d7deae8b5b801fdbbf5129fcef" 2103 | dependencies: 2104 | jasmine-matchers-loader "0.1.0" 2105 | 2106 | jasmine-matchers-loader@0.1.0: 2107 | version "0.1.0" 2108 | resolved "https://registry.yarnpkg.com/jasmine-matchers-loader/-/jasmine-matchers-loader-0.1.0.tgz#dda23db8a3ff99ec3b635be085d875d52f0f0050" 2109 | 2110 | jasmine-reporters@^2.1.1: 2111 | version "2.2.1" 2112 | resolved "https://registry.yarnpkg.com/jasmine-reporters/-/jasmine-reporters-2.2.1.tgz#de9a9201367846269e7ca8adff5b44221671fcbd" 2113 | dependencies: 2114 | mkdirp "^0.5.1" 2115 | xmldom "^0.1.22" 2116 | 2117 | jasmine-spec-reporter@^2.4.0: 2118 | version "2.7.0" 2119 | resolved "https://registry.yarnpkg.com/jasmine-spec-reporter/-/jasmine-spec-reporter-2.7.0.tgz#42907ff889952a129c0afc2929e195f4e74c98ff" 2120 | dependencies: 2121 | colors "1.1.2" 2122 | 2123 | jasmine@2.4.1: 2124 | version "2.4.1" 2125 | resolved "https://registry.yarnpkg.com/jasmine/-/jasmine-2.4.1.tgz#9016dda453213d27ac6d43dc4ea97315a189085e" 2126 | dependencies: 2127 | exit "^0.1.2" 2128 | glob "^3.2.11" 2129 | jasmine-core "~2.4.0" 2130 | 2131 | jest-changed-files@^19.0.2: 2132 | version "19.0.2" 2133 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-19.0.2.tgz#16c54c84c3270be408e06d2e8af3f3e37a885824" 2134 | 2135 | jest-cli@^19.0.2: 2136 | version "19.0.2" 2137 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-19.0.2.tgz#cc3620b62acac5f2d93a548cb6ef697d4ec85443" 2138 | dependencies: 2139 | ansi-escapes "^1.4.0" 2140 | callsites "^2.0.0" 2141 | chalk "^1.1.1" 2142 | graceful-fs "^4.1.6" 2143 | is-ci "^1.0.9" 2144 | istanbul-api "^1.1.0-alpha.1" 2145 | istanbul-lib-coverage "^1.0.0" 2146 | istanbul-lib-instrument "^1.1.1" 2147 | jest-changed-files "^19.0.2" 2148 | jest-config "^19.0.2" 2149 | jest-environment-jsdom "^19.0.2" 2150 | jest-haste-map "^19.0.0" 2151 | jest-jasmine2 "^19.0.2" 2152 | jest-message-util "^19.0.0" 2153 | jest-regex-util "^19.0.0" 2154 | jest-resolve-dependencies "^19.0.0" 2155 | jest-runtime "^19.0.2" 2156 | jest-snapshot "^19.0.2" 2157 | jest-util "^19.0.2" 2158 | micromatch "^2.3.11" 2159 | node-notifier "^5.0.1" 2160 | slash "^1.0.0" 2161 | string-length "^1.0.1" 2162 | throat "^3.0.0" 2163 | which "^1.1.1" 2164 | worker-farm "^1.3.1" 2165 | yargs "^6.3.0" 2166 | 2167 | jest-config@^19.0.2: 2168 | version "19.0.4" 2169 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-19.0.4.tgz#42980211d46417e91ca7abffd086c270234f73fd" 2170 | dependencies: 2171 | chalk "^1.1.1" 2172 | jest-environment-jsdom "^19.0.2" 2173 | jest-environment-node "^19.0.2" 2174 | jest-jasmine2 "^19.0.2" 2175 | jest-regex-util "^19.0.0" 2176 | jest-resolve "^19.0.2" 2177 | jest-validate "^19.0.2" 2178 | pretty-format "^19.0.0" 2179 | 2180 | jest-diff@^19.0.0: 2181 | version "19.0.0" 2182 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-19.0.0.tgz#d1563cfc56c8b60232988fbc05d4d16ed90f063c" 2183 | dependencies: 2184 | chalk "^1.1.3" 2185 | diff "^3.0.0" 2186 | jest-matcher-utils "^19.0.0" 2187 | pretty-format "^19.0.0" 2188 | 2189 | jest-environment-jsdom@^19.0.2: 2190 | version "19.0.2" 2191 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-19.0.2.tgz#ceda859c4a4b94ab35e4de7dab54b926f293e4a3" 2192 | dependencies: 2193 | jest-mock "^19.0.0" 2194 | jest-util "^19.0.2" 2195 | jsdom "^9.11.0" 2196 | 2197 | jest-environment-node@^19.0.2: 2198 | version "19.0.2" 2199 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-19.0.2.tgz#6e84079db87ed21d0c05e1f9669f207b116fe99b" 2200 | dependencies: 2201 | jest-mock "^19.0.0" 2202 | jest-util "^19.0.2" 2203 | 2204 | jest-file-exists@^19.0.0: 2205 | version "19.0.0" 2206 | resolved "https://registry.yarnpkg.com/jest-file-exists/-/jest-file-exists-19.0.0.tgz#cca2e587a11ec92e24cfeab3f8a94d657f3fceb8" 2207 | 2208 | jest-haste-map@^19.0.0: 2209 | version "19.0.2" 2210 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-19.0.2.tgz#286484c3a16e86da7872b0877c35dce30c3d6f07" 2211 | dependencies: 2212 | fb-watchman "^2.0.0" 2213 | graceful-fs "^4.1.6" 2214 | micromatch "^2.3.11" 2215 | sane "~1.5.0" 2216 | worker-farm "^1.3.1" 2217 | 2218 | jest-jasmine2@^19.0.2: 2219 | version "19.0.2" 2220 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-19.0.2.tgz#167991ac825981fb1a800af126e83afcca832c73" 2221 | dependencies: 2222 | graceful-fs "^4.1.6" 2223 | jest-matcher-utils "^19.0.0" 2224 | jest-matchers "^19.0.0" 2225 | jest-message-util "^19.0.0" 2226 | jest-snapshot "^19.0.2" 2227 | 2228 | jest-matcher-utils@^19.0.0: 2229 | version "19.0.0" 2230 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-19.0.0.tgz#5ecd9b63565d2b001f61fbf7ec4c7f537964564d" 2231 | dependencies: 2232 | chalk "^1.1.3" 2233 | pretty-format "^19.0.0" 2234 | 2235 | jest-matchers@^19.0.0: 2236 | version "19.0.0" 2237 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-19.0.0.tgz#c74ecc6ebfec06f384767ba4d6fa4a42d6755754" 2238 | dependencies: 2239 | jest-diff "^19.0.0" 2240 | jest-matcher-utils "^19.0.0" 2241 | jest-message-util "^19.0.0" 2242 | jest-regex-util "^19.0.0" 2243 | 2244 | jest-message-util@^19.0.0: 2245 | version "19.0.0" 2246 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-19.0.0.tgz#721796b89c0e4d761606f9ba8cb828a3b6246416" 2247 | dependencies: 2248 | chalk "^1.1.1" 2249 | micromatch "^2.3.11" 2250 | 2251 | jest-mock@^19.0.0: 2252 | version "19.0.0" 2253 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-19.0.0.tgz#67038641e9607ab2ce08ec4a8cb83aabbc899d01" 2254 | 2255 | jest-regex-util@^19.0.0: 2256 | version "19.0.0" 2257 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-19.0.0.tgz#b7754587112aede1456510bb1f6afe74ef598691" 2258 | 2259 | jest-resolve-dependencies@^19.0.0: 2260 | version "19.0.0" 2261 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-19.0.0.tgz#a741ad1fa094140e64ecf2642a504f834ece22ee" 2262 | dependencies: 2263 | jest-file-exists "^19.0.0" 2264 | 2265 | jest-resolve@^19.0.2: 2266 | version "19.0.2" 2267 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-19.0.2.tgz#5793575de4f07aec32f7d7ff0c6c181963eefb3c" 2268 | dependencies: 2269 | browser-resolve "^1.11.2" 2270 | jest-haste-map "^19.0.0" 2271 | resolve "^1.2.0" 2272 | 2273 | jest-runtime@^19.0.2: 2274 | version "19.0.4" 2275 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-19.0.4.tgz#f167d9f1347752f2027361067926485349fcc245" 2276 | dependencies: 2277 | babel-core "^6.0.0" 2278 | babel-jest "^19.0.0" 2279 | babel-plugin-istanbul "^4.0.0" 2280 | chalk "^1.1.3" 2281 | graceful-fs "^4.1.6" 2282 | jest-config "^19.0.2" 2283 | jest-file-exists "^19.0.0" 2284 | jest-haste-map "^19.0.0" 2285 | jest-regex-util "^19.0.0" 2286 | jest-resolve "^19.0.2" 2287 | jest-util "^19.0.2" 2288 | json-stable-stringify "^1.0.1" 2289 | micromatch "^2.3.11" 2290 | strip-bom "3.0.0" 2291 | yargs "^6.3.0" 2292 | 2293 | jest-snapshot@^19.0.2: 2294 | version "19.0.2" 2295 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-19.0.2.tgz#9c1b216214f7187c38bfd5c70b1efab16b0ff50b" 2296 | dependencies: 2297 | chalk "^1.1.3" 2298 | jest-diff "^19.0.0" 2299 | jest-file-exists "^19.0.0" 2300 | jest-matcher-utils "^19.0.0" 2301 | jest-util "^19.0.2" 2302 | natural-compare "^1.4.0" 2303 | pretty-format "^19.0.0" 2304 | 2305 | jest-util@^19.0.2: 2306 | version "19.0.2" 2307 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-19.0.2.tgz#e0a0232a2ab9e6b2b53668bdb3534c2b5977ed41" 2308 | dependencies: 2309 | chalk "^1.1.1" 2310 | graceful-fs "^4.1.6" 2311 | jest-file-exists "^19.0.0" 2312 | jest-message-util "^19.0.0" 2313 | jest-mock "^19.0.0" 2314 | jest-validate "^19.0.2" 2315 | leven "^2.0.0" 2316 | mkdirp "^0.5.1" 2317 | 2318 | jest-validate@^19.0.2: 2319 | version "19.0.2" 2320 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-19.0.2.tgz#dc534df5f1278d5b63df32b14241d4dbf7244c0c" 2321 | dependencies: 2322 | chalk "^1.1.1" 2323 | jest-matcher-utils "^19.0.0" 2324 | leven "^2.0.0" 2325 | pretty-format "^19.0.0" 2326 | 2327 | jest@^19.0.2: 2328 | version "19.0.2" 2329 | resolved "https://registry.yarnpkg.com/jest/-/jest-19.0.2.tgz#b794faaf8ff461e7388f28beef559a54f20b2c10" 2330 | dependencies: 2331 | jest-cli "^19.0.2" 2332 | 2333 | js-tokens@^3.0.0, js-tokens@^3.0.2: 2334 | version "3.0.2" 2335 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2336 | 2337 | js-yaml@^3.5.1, js-yaml@^3.7.0: 2338 | version "3.9.1" 2339 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.9.1.tgz#08775cebdfdd359209f0d2acd383c8f86a6904a0" 2340 | dependencies: 2341 | argparse "^1.0.7" 2342 | esprima "^4.0.0" 2343 | 2344 | jsbn@~0.1.0: 2345 | version "0.1.1" 2346 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2347 | 2348 | jsdom@^9.11.0: 2349 | version "9.12.0" 2350 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 2351 | dependencies: 2352 | abab "^1.0.3" 2353 | acorn "^4.0.4" 2354 | acorn-globals "^3.1.0" 2355 | array-equal "^1.0.0" 2356 | content-type-parser "^1.0.1" 2357 | cssom ">= 0.3.2 < 0.4.0" 2358 | cssstyle ">= 0.2.37 < 0.3.0" 2359 | escodegen "^1.6.1" 2360 | html-encoding-sniffer "^1.0.1" 2361 | nwmatcher ">= 1.3.9 < 2.0.0" 2362 | parse5 "^1.5.1" 2363 | request "^2.79.0" 2364 | sax "^1.2.1" 2365 | symbol-tree "^3.2.1" 2366 | tough-cookie "^2.3.2" 2367 | webidl-conversions "^4.0.0" 2368 | whatwg-encoding "^1.0.1" 2369 | whatwg-url "^4.3.0" 2370 | xml-name-validator "^2.0.1" 2371 | 2372 | jsesc@^1.3.0: 2373 | version "1.3.0" 2374 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2375 | 2376 | jsesc@~0.5.0: 2377 | version "0.5.0" 2378 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2379 | 2380 | json-schema@0.2.3: 2381 | version "0.2.3" 2382 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2383 | 2384 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 2385 | version "1.0.1" 2386 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2387 | dependencies: 2388 | jsonify "~0.0.0" 2389 | 2390 | json-stringify-safe@~5.0.1: 2391 | version "5.0.1" 2392 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2393 | 2394 | json5@^0.5.1: 2395 | version "0.5.1" 2396 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2397 | 2398 | jsonify@~0.0.0: 2399 | version "0.0.0" 2400 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2401 | 2402 | jsonpointer@^4.0.0: 2403 | version "4.0.1" 2404 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 2405 | 2406 | jsprim@^1.2.2: 2407 | version "1.4.1" 2408 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 2409 | dependencies: 2410 | assert-plus "1.0.0" 2411 | extsprintf "1.3.0" 2412 | json-schema "0.2.3" 2413 | verror "1.10.0" 2414 | 2415 | kind-of@^3.0.2: 2416 | version "3.2.2" 2417 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2418 | dependencies: 2419 | is-buffer "^1.1.5" 2420 | 2421 | kind-of@^4.0.0: 2422 | version "4.0.0" 2423 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2424 | dependencies: 2425 | is-buffer "^1.1.5" 2426 | 2427 | lazy-cache@^1.0.3: 2428 | version "1.0.4" 2429 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2430 | 2431 | lcid@^1.0.0: 2432 | version "1.0.0" 2433 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2434 | dependencies: 2435 | invert-kv "^1.0.0" 2436 | 2437 | leven@^2.0.0: 2438 | version "2.1.0" 2439 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2440 | 2441 | levn@^0.3.0, levn@~0.3.0: 2442 | version "0.3.0" 2443 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2444 | dependencies: 2445 | prelude-ls "~1.1.2" 2446 | type-check "~0.3.2" 2447 | 2448 | load-json-file@^1.0.0: 2449 | version "1.1.0" 2450 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2451 | dependencies: 2452 | graceful-fs "^4.1.2" 2453 | parse-json "^2.2.0" 2454 | pify "^2.0.0" 2455 | pinkie-promise "^2.0.0" 2456 | strip-bom "^2.0.0" 2457 | 2458 | locate-path@^2.0.0: 2459 | version "2.0.0" 2460 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2461 | dependencies: 2462 | p-locate "^2.0.0" 2463 | path-exists "^3.0.0" 2464 | 2465 | lodash-es@^4.2.1: 2466 | version "4.17.4" 2467 | resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.4.tgz#dcc1d7552e150a0640073ba9cb31d70f032950e7" 2468 | 2469 | lodash.assign@^4.0.0: 2470 | version "4.2.0" 2471 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" 2472 | 2473 | lodash.pickby@^4.0.0: 2474 | version "4.6.0" 2475 | resolved "https://registry.yarnpkg.com/lodash.pickby/-/lodash.pickby-4.6.0.tgz#7dea21d8c18d7703a27c704c15d3b84a67e33aff" 2476 | 2477 | lodash@^4.0.0, lodash@^4.14.0, lodash@^4.17.4, lodash@^4.2.1, lodash@^4.3.0, lodash@^4.6.1: 2478 | version "4.17.4" 2479 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2480 | 2481 | longest@^1.0.1: 2482 | version "1.0.1" 2483 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2484 | 2485 | loose-envify@^1.0.0, loose-envify@^1.1.0: 2486 | version "1.3.1" 2487 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2488 | dependencies: 2489 | js-tokens "^3.0.0" 2490 | 2491 | lru-cache@2: 2492 | version "2.7.3" 2493 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.7.3.tgz#6d4524e8b955f95d4f5b58851ce21dd72fb4e952" 2494 | 2495 | makeerror@1.0.x: 2496 | version "1.0.11" 2497 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2498 | dependencies: 2499 | tmpl "1.0.x" 2500 | 2501 | merge-descriptors@~1.0.0: 2502 | version "1.0.1" 2503 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 2504 | 2505 | merge@^1.1.3: 2506 | version "1.2.0" 2507 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2508 | 2509 | micromatch@^2.1.5, micromatch@^2.3.11: 2510 | version "2.3.11" 2511 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2512 | dependencies: 2513 | arr-diff "^2.0.0" 2514 | array-unique "^0.2.1" 2515 | braces "^1.8.2" 2516 | expand-brackets "^0.1.4" 2517 | extglob "^0.3.1" 2518 | filename-regex "^2.0.0" 2519 | is-extglob "^1.0.0" 2520 | is-glob "^2.0.1" 2521 | kind-of "^3.0.2" 2522 | normalize-path "^2.0.1" 2523 | object.omit "^2.0.0" 2524 | parse-glob "^3.0.4" 2525 | regex-cache "^0.4.2" 2526 | 2527 | mime-db@~1.30.0: 2528 | version "1.30.0" 2529 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 2530 | 2531 | mime-types@^2.1.12, mime-types@~2.1.7: 2532 | version "2.1.17" 2533 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 2534 | dependencies: 2535 | mime-db "~1.30.0" 2536 | 2537 | min-document@^2.19.0: 2538 | version "2.19.0" 2539 | resolved "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685" 2540 | dependencies: 2541 | dom-walk "^0.1.0" 2542 | 2543 | minimatch@0.3: 2544 | version "0.3.0" 2545 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-0.3.0.tgz#275d8edaac4f1bb3326472089e7949c8394699dd" 2546 | dependencies: 2547 | lru-cache "2" 2548 | sigmund "~1.0.0" 2549 | 2550 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 2551 | version "3.0.4" 2552 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2553 | dependencies: 2554 | brace-expansion "^1.1.7" 2555 | 2556 | minimist@0.0.8: 2557 | version "0.0.8" 2558 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2559 | 2560 | minimist@^1.1.1, minimist@^1.2.0: 2561 | version "1.2.0" 2562 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2563 | 2564 | minimist@~0.0.1: 2565 | version "0.0.10" 2566 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 2567 | 2568 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1: 2569 | version "0.5.1" 2570 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2571 | dependencies: 2572 | minimist "0.0.8" 2573 | 2574 | module-not-found-error@^1.0.0: 2575 | version "1.0.1" 2576 | resolved "https://registry.yarnpkg.com/module-not-found-error/-/module-not-found-error-1.0.1.tgz#cf8b4ff4f29640674d6cdd02b0e3bc523c2bbdc0" 2577 | 2578 | ms@2.0.0: 2579 | version "2.0.0" 2580 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2581 | 2582 | mute-stream@0.0.5: 2583 | version "0.0.5" 2584 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 2585 | 2586 | nan@^2.3.0: 2587 | version "2.7.0" 2588 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46" 2589 | 2590 | natural-compare@^1.4.0: 2591 | version "1.4.0" 2592 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2593 | 2594 | node-int64@^0.4.0: 2595 | version "0.4.0" 2596 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2597 | 2598 | node-notifier@^5.0.1: 2599 | version "5.1.2" 2600 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 2601 | dependencies: 2602 | growly "^1.3.0" 2603 | semver "^5.3.0" 2604 | shellwords "^0.1.0" 2605 | which "^1.2.12" 2606 | 2607 | node-pre-gyp@^0.6.36: 2608 | version "0.6.36" 2609 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz#db604112cb74e0d477554e9b505b17abddfab786" 2610 | dependencies: 2611 | mkdirp "^0.5.1" 2612 | nopt "^4.0.1" 2613 | npmlog "^4.0.2" 2614 | rc "^1.1.7" 2615 | request "^2.81.0" 2616 | rimraf "^2.6.1" 2617 | semver "^5.3.0" 2618 | tar "^2.2.1" 2619 | tar-pack "^3.4.0" 2620 | 2621 | nopt@^4.0.1: 2622 | version "4.0.1" 2623 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2624 | dependencies: 2625 | abbrev "1" 2626 | osenv "^0.1.4" 2627 | 2628 | normalize-package-data@^2.3.2: 2629 | version "2.4.0" 2630 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2631 | dependencies: 2632 | hosted-git-info "^2.1.4" 2633 | is-builtin-module "^1.0.0" 2634 | semver "2 || 3 || 4 || 5" 2635 | validate-npm-package-license "^3.0.1" 2636 | 2637 | normalize-path@^2.0.0, normalize-path@^2.0.1: 2638 | version "2.1.1" 2639 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2640 | dependencies: 2641 | remove-trailing-separator "^1.0.1" 2642 | 2643 | npmlog@^4.0.2: 2644 | version "4.1.2" 2645 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2646 | dependencies: 2647 | are-we-there-yet "~1.1.2" 2648 | console-control-strings "~1.1.0" 2649 | gauge "~2.7.3" 2650 | set-blocking "~2.0.0" 2651 | 2652 | number-is-nan@^1.0.0: 2653 | version "1.0.1" 2654 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2655 | 2656 | "nwmatcher@>= 1.3.9 < 2.0.0": 2657 | version "1.4.1" 2658 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.1.tgz#7ae9b07b0ea804db7e25f05cb5fe4097d4e4949f" 2659 | 2660 | oauth-sign@~0.8.1: 2661 | version "0.8.2" 2662 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2663 | 2664 | object-assign@^4.0.1, object-assign@^4.1.0: 2665 | version "4.1.1" 2666 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2667 | 2668 | object.omit@^2.0.0: 2669 | version "2.0.1" 2670 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2671 | dependencies: 2672 | for-own "^0.1.4" 2673 | is-extendable "^0.1.1" 2674 | 2675 | once@^1.3.0, once@^1.3.3, once@^1.4.0: 2676 | version "1.4.0" 2677 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2678 | dependencies: 2679 | wrappy "1" 2680 | 2681 | onetime@^1.0.0: 2682 | version "1.1.0" 2683 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2684 | 2685 | optimist@^0.6.1: 2686 | version "0.6.1" 2687 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2688 | dependencies: 2689 | minimist "~0.0.1" 2690 | wordwrap "~0.0.2" 2691 | 2692 | optionator@^0.8.1: 2693 | version "0.8.2" 2694 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2695 | dependencies: 2696 | deep-is "~0.1.3" 2697 | fast-levenshtein "~2.0.4" 2698 | levn "~0.3.0" 2699 | prelude-ls "~1.1.2" 2700 | type-check "~0.3.2" 2701 | wordwrap "~1.0.0" 2702 | 2703 | os-homedir@^1.0.0: 2704 | version "1.0.2" 2705 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2706 | 2707 | os-locale@^1.4.0: 2708 | version "1.4.0" 2709 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2710 | dependencies: 2711 | lcid "^1.0.0" 2712 | 2713 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2714 | version "1.0.2" 2715 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2716 | 2717 | osenv@^0.1.4: 2718 | version "0.1.4" 2719 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2720 | dependencies: 2721 | os-homedir "^1.0.0" 2722 | os-tmpdir "^1.0.0" 2723 | 2724 | output-file-sync@^1.1.2: 2725 | version "1.1.2" 2726 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2727 | dependencies: 2728 | graceful-fs "^4.1.4" 2729 | mkdirp "^0.5.1" 2730 | object-assign "^4.1.0" 2731 | 2732 | p-limit@^1.1.0: 2733 | version "1.1.0" 2734 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2735 | 2736 | p-locate@^2.0.0: 2737 | version "2.0.0" 2738 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2739 | dependencies: 2740 | p-limit "^1.1.0" 2741 | 2742 | parse-glob@^3.0.4: 2743 | version "3.0.4" 2744 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2745 | dependencies: 2746 | glob-base "^0.3.0" 2747 | is-dotfile "^1.0.0" 2748 | is-extglob "^1.0.0" 2749 | is-glob "^2.0.0" 2750 | 2751 | parse-json@^2.2.0: 2752 | version "2.2.0" 2753 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2754 | dependencies: 2755 | error-ex "^1.2.0" 2756 | 2757 | parse5@^1.5.1: 2758 | version "1.5.1" 2759 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 2760 | 2761 | path-exists@^2.0.0: 2762 | version "2.1.0" 2763 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2764 | dependencies: 2765 | pinkie-promise "^2.0.0" 2766 | 2767 | path-exists@^3.0.0: 2768 | version "3.0.0" 2769 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2770 | 2771 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2772 | version "1.0.1" 2773 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2774 | 2775 | path-is-inside@^1.0.1: 2776 | version "1.0.2" 2777 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2778 | 2779 | path-parse@^1.0.5: 2780 | version "1.0.5" 2781 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2782 | 2783 | path-type@^1.0.0: 2784 | version "1.1.0" 2785 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2786 | dependencies: 2787 | graceful-fs "^4.1.2" 2788 | pify "^2.0.0" 2789 | pinkie-promise "^2.0.0" 2790 | 2791 | performance-now@^0.2.0: 2792 | version "0.2.0" 2793 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2794 | 2795 | pify@^2.0.0: 2796 | version "2.3.0" 2797 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2798 | 2799 | pinkie-promise@^2.0.0: 2800 | version "2.0.1" 2801 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2802 | dependencies: 2803 | pinkie "^2.0.0" 2804 | 2805 | pinkie@^2.0.0: 2806 | version "2.0.4" 2807 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2808 | 2809 | pluralize@^1.2.1: 2810 | version "1.2.1" 2811 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 2812 | 2813 | prelude-ls@~1.1.2: 2814 | version "1.1.2" 2815 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2816 | 2817 | preserve@^0.2.0: 2818 | version "0.2.0" 2819 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2820 | 2821 | pretty-format@^19.0.0: 2822 | version "19.0.0" 2823 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-19.0.0.tgz#56530d32acb98a3fa4851c4e2b9d37b420684c84" 2824 | dependencies: 2825 | ansi-styles "^3.0.0" 2826 | 2827 | private@^0.1.6, private@^0.1.7: 2828 | version "0.1.7" 2829 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2830 | 2831 | process-nextick-args@~1.0.6: 2832 | version "1.0.7" 2833 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2834 | 2835 | process@~0.5.1: 2836 | version "0.5.2" 2837 | resolved "https://registry.yarnpkg.com/process/-/process-0.5.2.tgz#1638d8a8e34c2f440a91db95ab9aeb677fc185cf" 2838 | 2839 | progress@^1.1.8: 2840 | version "1.1.8" 2841 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 2842 | 2843 | proxyquire@1.7.4: 2844 | version "1.7.4" 2845 | resolved "https://registry.yarnpkg.com/proxyquire/-/proxyquire-1.7.4.tgz#654719b21531c3f1fc9a6e4e272da319a05b2e98" 2846 | dependencies: 2847 | fill-keys "^1.0.2" 2848 | module-not-found-error "^1.0.0" 2849 | 2850 | prr@~0.0.0: 2851 | version "0.0.0" 2852 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 2853 | 2854 | punycode@^1.4.1: 2855 | version "1.4.1" 2856 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2857 | 2858 | qs@~6.4.0: 2859 | version "6.4.0" 2860 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2861 | 2862 | randomatic@^1.1.3: 2863 | version "1.1.7" 2864 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2865 | dependencies: 2866 | is-number "^3.0.0" 2867 | kind-of "^4.0.0" 2868 | 2869 | rc@^1.1.7: 2870 | version "1.2.1" 2871 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 2872 | dependencies: 2873 | deep-extend "~0.4.0" 2874 | ini "~1.3.0" 2875 | minimist "^1.2.0" 2876 | strip-json-comments "~2.0.1" 2877 | 2878 | react-deep-force-update@^1.0.0: 2879 | version "1.1.1" 2880 | resolved "https://registry.yarnpkg.com/react-deep-force-update/-/react-deep-force-update-1.1.1.tgz#bcd31478027b64b3339f108921ab520b4313dc2c" 2881 | 2882 | react-proxy@^1.1.7: 2883 | version "1.1.8" 2884 | resolved "https://registry.yarnpkg.com/react-proxy/-/react-proxy-1.1.8.tgz#9dbfd9d927528c3aa9f444e4558c37830ab8c26a" 2885 | dependencies: 2886 | lodash "^4.6.1" 2887 | react-deep-force-update "^1.0.0" 2888 | 2889 | react-transform-hmr@^1.0.4: 2890 | version "1.0.4" 2891 | resolved "https://registry.yarnpkg.com/react-transform-hmr/-/react-transform-hmr-1.0.4.tgz#e1a40bd0aaefc72e8dfd7a7cda09af85066397bb" 2892 | dependencies: 2893 | global "^4.3.0" 2894 | react-proxy "^1.1.7" 2895 | 2896 | read-pkg-up@^1.0.1: 2897 | version "1.0.1" 2898 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2899 | dependencies: 2900 | find-up "^1.0.0" 2901 | read-pkg "^1.0.0" 2902 | 2903 | read-pkg@^1.0.0: 2904 | version "1.1.0" 2905 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2906 | dependencies: 2907 | load-json-file "^1.0.0" 2908 | normalize-package-data "^2.3.2" 2909 | path-type "^1.0.0" 2910 | 2911 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2: 2912 | version "2.3.3" 2913 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 2914 | dependencies: 2915 | core-util-is "~1.0.0" 2916 | inherits "~2.0.3" 2917 | isarray "~1.0.0" 2918 | process-nextick-args "~1.0.6" 2919 | safe-buffer "~5.1.1" 2920 | string_decoder "~1.0.3" 2921 | util-deprecate "~1.0.1" 2922 | 2923 | readdirp@^2.0.0: 2924 | version "2.1.0" 2925 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2926 | dependencies: 2927 | graceful-fs "^4.1.2" 2928 | minimatch "^3.0.2" 2929 | readable-stream "^2.0.2" 2930 | set-immediate-shim "^1.0.1" 2931 | 2932 | readline2@^1.0.1: 2933 | version "1.0.1" 2934 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 2935 | dependencies: 2936 | code-point-at "^1.0.0" 2937 | is-fullwidth-code-point "^1.0.0" 2938 | mute-stream "0.0.5" 2939 | 2940 | redux-thunk@^2.2.0: 2941 | version "2.2.0" 2942 | resolved "https://registry.yarnpkg.com/redux-thunk/-/redux-thunk-2.2.0.tgz#e615a16e16b47a19a515766133d1e3e99b7852e5" 2943 | 2944 | redux@^3.6.0: 2945 | version "3.7.2" 2946 | resolved "https://registry.yarnpkg.com/redux/-/redux-3.7.2.tgz#06b73123215901d25d065be342eb026bc1c8537b" 2947 | dependencies: 2948 | lodash "^4.2.1" 2949 | lodash-es "^4.2.1" 2950 | loose-envify "^1.1.0" 2951 | symbol-observable "^1.0.3" 2952 | 2953 | regenerate@^1.2.1: 2954 | version "1.3.2" 2955 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 2956 | 2957 | regenerator-runtime@^0.10.3, regenerator-runtime@^0.10.5: 2958 | version "0.10.5" 2959 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2960 | 2961 | regenerator-runtime@^0.11.0: 2962 | version "0.11.0" 2963 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1" 2964 | 2965 | regenerator-transform@^0.10.0: 2966 | version "0.10.1" 2967 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 2968 | dependencies: 2969 | babel-runtime "^6.18.0" 2970 | babel-types "^6.19.0" 2971 | private "^0.1.6" 2972 | 2973 | regex-cache@^0.4.2: 2974 | version "0.4.4" 2975 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2976 | dependencies: 2977 | is-equal-shallow "^0.1.3" 2978 | 2979 | regexpu-core@^2.0.0: 2980 | version "2.0.0" 2981 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2982 | dependencies: 2983 | regenerate "^1.2.1" 2984 | regjsgen "^0.2.0" 2985 | regjsparser "^0.1.4" 2986 | 2987 | regjsgen@^0.2.0: 2988 | version "0.2.0" 2989 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2990 | 2991 | regjsparser@^0.1.4: 2992 | version "0.1.5" 2993 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2994 | dependencies: 2995 | jsesc "~0.5.0" 2996 | 2997 | remove-trailing-separator@^1.0.1: 2998 | version "1.1.0" 2999 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 3000 | 3001 | repeat-element@^1.1.2: 3002 | version "1.1.2" 3003 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3004 | 3005 | repeat-string@^1.5.2: 3006 | version "1.6.1" 3007 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3008 | 3009 | repeating@^2.0.0: 3010 | version "2.0.1" 3011 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3012 | dependencies: 3013 | is-finite "^1.0.0" 3014 | 3015 | request@^2.79.0, request@^2.81.0: 3016 | version "2.81.0" 3017 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 3018 | dependencies: 3019 | aws-sign2 "~0.6.0" 3020 | aws4 "^1.2.1" 3021 | caseless "~0.12.0" 3022 | combined-stream "~1.0.5" 3023 | extend "~3.0.0" 3024 | forever-agent "~0.6.1" 3025 | form-data "~2.1.1" 3026 | har-validator "~4.2.1" 3027 | hawk "~3.1.3" 3028 | http-signature "~1.1.0" 3029 | is-typedarray "~1.0.0" 3030 | isstream "~0.1.2" 3031 | json-stringify-safe "~5.0.1" 3032 | mime-types "~2.1.7" 3033 | oauth-sign "~0.8.1" 3034 | performance-now "^0.2.0" 3035 | qs "~6.4.0" 3036 | safe-buffer "^5.0.1" 3037 | stringstream "~0.0.4" 3038 | tough-cookie "~2.3.0" 3039 | tunnel-agent "^0.6.0" 3040 | uuid "^3.0.0" 3041 | 3042 | require-directory@^2.1.1: 3043 | version "2.1.1" 3044 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3045 | 3046 | require-main-filename@^1.0.1: 3047 | version "1.0.1" 3048 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3049 | 3050 | require-uncached@^1.0.2: 3051 | version "1.0.3" 3052 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 3053 | dependencies: 3054 | caller-path "^0.1.0" 3055 | resolve-from "^1.0.0" 3056 | 3057 | resolve-from@^1.0.0: 3058 | version "1.0.1" 3059 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 3060 | 3061 | resolve@1.1.7: 3062 | version "1.1.7" 3063 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 3064 | 3065 | resolve@^1.2.0: 3066 | version "1.4.0" 3067 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86" 3068 | dependencies: 3069 | path-parse "^1.0.5" 3070 | 3071 | restore-cursor@^1.0.1: 3072 | version "1.0.1" 3073 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 3074 | dependencies: 3075 | exit-hook "^1.0.0" 3076 | onetime "^1.0.0" 3077 | 3078 | right-align@^0.1.1: 3079 | version "0.1.3" 3080 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3081 | dependencies: 3082 | align-text "^0.1.1" 3083 | 3084 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: 3085 | version "2.6.1" 3086 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 3087 | dependencies: 3088 | glob "^7.0.5" 3089 | 3090 | run-async@^0.1.0: 3091 | version "0.1.0" 3092 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 3093 | dependencies: 3094 | once "^1.3.0" 3095 | 3096 | rx-lite@^3.1.2: 3097 | version "3.1.2" 3098 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 3099 | 3100 | safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 3101 | version "5.1.1" 3102 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 3103 | 3104 | sane@~1.5.0: 3105 | version "1.5.0" 3106 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.5.0.tgz#a4adeae764d048621ecb27d5f9ecf513101939f3" 3107 | dependencies: 3108 | anymatch "^1.3.0" 3109 | exec-sh "^0.2.0" 3110 | fb-watchman "^1.8.0" 3111 | minimatch "^3.0.2" 3112 | minimist "^1.1.1" 3113 | walker "~1.0.5" 3114 | watch "~0.10.0" 3115 | 3116 | sax@^1.2.1: 3117 | version "1.2.4" 3118 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 3119 | 3120 | seamless-immutable@^7.1.1: 3121 | version "7.1.2" 3122 | resolved "https://registry.yarnpkg.com/seamless-immutable/-/seamless-immutable-7.1.2.tgz#c87a1eba6767a32455311d76600ac5eddeafbb69" 3123 | 3124 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 3125 | version "5.4.1" 3126 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 3127 | 3128 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3129 | version "2.0.0" 3130 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3131 | 3132 | set-immediate-shim@^1.0.1: 3133 | version "1.0.1" 3134 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3135 | 3136 | shelljs@^0.6.0: 3137 | version "0.6.1" 3138 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.6.1.tgz#ec6211bed1920442088fe0f70b2837232ed2c8a8" 3139 | 3140 | shellwords@^0.1.0: 3141 | version "0.1.1" 3142 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 3143 | 3144 | sigmund@~1.0.0: 3145 | version "1.0.1" 3146 | resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590" 3147 | 3148 | signal-exit@^3.0.0: 3149 | version "3.0.2" 3150 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3151 | 3152 | slash@^1.0.0: 3153 | version "1.0.0" 3154 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3155 | 3156 | slice-ansi@0.0.4: 3157 | version "0.0.4" 3158 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 3159 | 3160 | sntp@1.x.x: 3161 | version "1.0.9" 3162 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3163 | dependencies: 3164 | hoek "2.x.x" 3165 | 3166 | source-map-support@^0.4.15: 3167 | version "0.4.17" 3168 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.17.tgz#6f2150553e6375375d0ccb3180502b78c18ba430" 3169 | dependencies: 3170 | source-map "^0.5.6" 3171 | 3172 | source-map@^0.4.4: 3173 | version "0.4.4" 3174 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3175 | dependencies: 3176 | amdefine ">=0.0.4" 3177 | 3178 | source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 3179 | version "0.5.7" 3180 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3181 | 3182 | source-map@~0.2.0: 3183 | version "0.2.0" 3184 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 3185 | dependencies: 3186 | amdefine ">=0.0.4" 3187 | 3188 | spdx-correct@~1.0.0: 3189 | version "1.0.2" 3190 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3191 | dependencies: 3192 | spdx-license-ids "^1.0.2" 3193 | 3194 | spdx-expression-parse@~1.0.0: 3195 | version "1.0.4" 3196 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3197 | 3198 | spdx-license-ids@^1.0.2: 3199 | version "1.2.2" 3200 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3201 | 3202 | sprintf-js@~1.0.2: 3203 | version "1.0.3" 3204 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3205 | 3206 | sshpk@^1.7.0: 3207 | version "1.13.1" 3208 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 3209 | dependencies: 3210 | asn1 "~0.2.3" 3211 | assert-plus "^1.0.0" 3212 | dashdash "^1.12.0" 3213 | getpass "^0.1.1" 3214 | optionalDependencies: 3215 | bcrypt-pbkdf "^1.0.0" 3216 | ecc-jsbn "~0.1.1" 3217 | jsbn "~0.1.0" 3218 | tweetnacl "~0.14.0" 3219 | 3220 | string-length@^1.0.1: 3221 | version "1.0.1" 3222 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 3223 | dependencies: 3224 | strip-ansi "^3.0.0" 3225 | 3226 | string-width@^1.0.1, string-width@^1.0.2: 3227 | version "1.0.2" 3228 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3229 | dependencies: 3230 | code-point-at "^1.0.0" 3231 | is-fullwidth-code-point "^1.0.0" 3232 | strip-ansi "^3.0.0" 3233 | 3234 | string-width@^2.0.0: 3235 | version "2.1.1" 3236 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3237 | dependencies: 3238 | is-fullwidth-code-point "^2.0.0" 3239 | strip-ansi "^4.0.0" 3240 | 3241 | string_decoder@~1.0.3: 3242 | version "1.0.3" 3243 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 3244 | dependencies: 3245 | safe-buffer "~5.1.0" 3246 | 3247 | stringstream@~0.0.4: 3248 | version "0.0.5" 3249 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3250 | 3251 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3252 | version "3.0.1" 3253 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3254 | dependencies: 3255 | ansi-regex "^2.0.0" 3256 | 3257 | strip-ansi@^4.0.0: 3258 | version "4.0.0" 3259 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3260 | dependencies: 3261 | ansi-regex "^3.0.0" 3262 | 3263 | strip-bom@3.0.0: 3264 | version "3.0.0" 3265 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3266 | 3267 | strip-bom@^2.0.0: 3268 | version "2.0.0" 3269 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3270 | dependencies: 3271 | is-utf8 "^0.2.0" 3272 | 3273 | strip-json-comments@~1.0.1: 3274 | version "1.0.4" 3275 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 3276 | 3277 | strip-json-comments@~2.0.1: 3278 | version "2.0.1" 3279 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3280 | 3281 | supports-color@^2.0.0: 3282 | version "2.0.0" 3283 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3284 | 3285 | supports-color@^3.1.2: 3286 | version "3.2.3" 3287 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3288 | dependencies: 3289 | has-flag "^1.0.0" 3290 | 3291 | symbol-observable@^1.0.3: 3292 | version "1.0.4" 3293 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" 3294 | 3295 | symbol-tree@^3.2.1: 3296 | version "3.2.2" 3297 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 3298 | 3299 | table@^3.7.8: 3300 | version "3.8.3" 3301 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 3302 | dependencies: 3303 | ajv "^4.7.0" 3304 | ajv-keywords "^1.0.0" 3305 | chalk "^1.1.1" 3306 | lodash "^4.0.0" 3307 | slice-ansi "0.0.4" 3308 | string-width "^2.0.0" 3309 | 3310 | tar-pack@^3.4.0: 3311 | version "3.4.0" 3312 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 3313 | dependencies: 3314 | debug "^2.2.0" 3315 | fstream "^1.0.10" 3316 | fstream-ignore "^1.0.5" 3317 | once "^1.3.3" 3318 | readable-stream "^2.1.4" 3319 | rimraf "^2.5.1" 3320 | tar "^2.2.1" 3321 | uid-number "^0.0.6" 3322 | 3323 | tar@^2.2.1: 3324 | version "2.2.1" 3325 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3326 | dependencies: 3327 | block-stream "*" 3328 | fstream "^1.0.2" 3329 | inherits "2" 3330 | 3331 | test-exclude@^4.1.1: 3332 | version "4.1.1" 3333 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" 3334 | dependencies: 3335 | arrify "^1.0.1" 3336 | micromatch "^2.3.11" 3337 | object-assign "^4.1.0" 3338 | read-pkg-up "^1.0.1" 3339 | require-main-filename "^1.0.1" 3340 | 3341 | text-table@~0.2.0: 3342 | version "0.2.0" 3343 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3344 | 3345 | throat@^3.0.0: 3346 | version "3.2.0" 3347 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.2.0.tgz#50cb0670edbc40237b9e347d7e1f88e4620af836" 3348 | 3349 | through@^2.3.6: 3350 | version "2.3.8" 3351 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3352 | 3353 | tmpl@1.0.x: 3354 | version "1.0.4" 3355 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 3356 | 3357 | to-fast-properties@^1.0.3: 3358 | version "1.0.3" 3359 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3360 | 3361 | tough-cookie@^2.3.2, tough-cookie@~2.3.0: 3362 | version "2.3.2" 3363 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3364 | dependencies: 3365 | punycode "^1.4.1" 3366 | 3367 | tr46@~0.0.3: 3368 | version "0.0.3" 3369 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 3370 | 3371 | trim-right@^1.0.1: 3372 | version "1.0.1" 3373 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3374 | 3375 | tryit@^1.0.1: 3376 | version "1.0.3" 3377 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3378 | 3379 | tunnel-agent@^0.6.0: 3380 | version "0.6.0" 3381 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3382 | dependencies: 3383 | safe-buffer "^5.0.1" 3384 | 3385 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3386 | version "0.14.5" 3387 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3388 | 3389 | type-check@~0.3.2: 3390 | version "0.3.2" 3391 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3392 | dependencies: 3393 | prelude-ls "~1.1.2" 3394 | 3395 | typedarray@^0.0.6: 3396 | version "0.0.6" 3397 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3398 | 3399 | uglify-js@^2.6: 3400 | version "2.8.29" 3401 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 3402 | dependencies: 3403 | source-map "~0.5.1" 3404 | yargs "~3.10.0" 3405 | optionalDependencies: 3406 | uglify-to-browserify "~1.0.0" 3407 | 3408 | uglify-to-browserify@~1.0.0: 3409 | version "1.0.2" 3410 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3411 | 3412 | uid-number@^0.0.6: 3413 | version "0.0.6" 3414 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3415 | 3416 | user-home@^1.1.1: 3417 | version "1.1.1" 3418 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3419 | 3420 | user-home@^2.0.0: 3421 | version "2.0.0" 3422 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 3423 | dependencies: 3424 | os-homedir "^1.0.0" 3425 | 3426 | util-deprecate@~1.0.1: 3427 | version "1.0.2" 3428 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3429 | 3430 | uuid@^3.0.0: 3431 | version "3.1.0" 3432 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 3433 | 3434 | v8flags@^2.1.1: 3435 | version "2.1.1" 3436 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 3437 | dependencies: 3438 | user-home "^1.1.1" 3439 | 3440 | validate-npm-package-license@^3.0.1: 3441 | version "3.0.1" 3442 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3443 | dependencies: 3444 | spdx-correct "~1.0.0" 3445 | spdx-expression-parse "~1.0.0" 3446 | 3447 | verror@1.10.0: 3448 | version "1.10.0" 3449 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 3450 | dependencies: 3451 | assert-plus "^1.0.0" 3452 | core-util-is "1.0.2" 3453 | extsprintf "^1.2.0" 3454 | 3455 | walker@~1.0.5: 3456 | version "1.0.7" 3457 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 3458 | dependencies: 3459 | makeerror "1.0.x" 3460 | 3461 | watch@~0.10.0: 3462 | version "0.10.0" 3463 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 3464 | 3465 | webidl-conversions@^3.0.0: 3466 | version "3.0.1" 3467 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 3468 | 3469 | webidl-conversions@^4.0.0: 3470 | version "4.0.2" 3471 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 3472 | 3473 | whatwg-encoding@^1.0.1: 3474 | version "1.0.1" 3475 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 3476 | dependencies: 3477 | iconv-lite "0.4.13" 3478 | 3479 | whatwg-url@^4.3.0: 3480 | version "4.8.0" 3481 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" 3482 | dependencies: 3483 | tr46 "~0.0.3" 3484 | webidl-conversions "^3.0.0" 3485 | 3486 | which-module@^1.0.0: 3487 | version "1.0.0" 3488 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3489 | 3490 | which@^1.1.1, which@^1.2.12: 3491 | version "1.3.0" 3492 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 3493 | dependencies: 3494 | isexe "^2.0.0" 3495 | 3496 | wide-align@^1.1.0: 3497 | version "1.1.2" 3498 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3499 | dependencies: 3500 | string-width "^1.0.2" 3501 | 3502 | window-size@0.1.0: 3503 | version "0.1.0" 3504 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3505 | 3506 | wordwrap@0.0.2: 3507 | version "0.0.2" 3508 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3509 | 3510 | wordwrap@~0.0.2: 3511 | version "0.0.3" 3512 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3513 | 3514 | wordwrap@~1.0.0: 3515 | version "1.0.0" 3516 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3517 | 3518 | worker-farm@^1.3.1: 3519 | version "1.5.0" 3520 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.5.0.tgz#adfdf0cd40581465ed0a1f648f9735722afd5c8d" 3521 | dependencies: 3522 | errno "^0.1.4" 3523 | xtend "^4.0.1" 3524 | 3525 | wrap-ansi@^2.0.0: 3526 | version "2.1.0" 3527 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3528 | dependencies: 3529 | string-width "^1.0.1" 3530 | strip-ansi "^3.0.1" 3531 | 3532 | wrappy@1: 3533 | version "1.0.2" 3534 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3535 | 3536 | write@^0.2.1: 3537 | version "0.2.1" 3538 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3539 | dependencies: 3540 | mkdirp "^0.5.1" 3541 | 3542 | xml-name-validator@^2.0.1: 3543 | version "2.0.1" 3544 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 3545 | 3546 | xmldom@^0.1.22: 3547 | version "0.1.27" 3548 | resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.27.tgz#d501f97b3bdb403af8ef9ecc20573187aadac0e9" 3549 | 3550 | xtend@^4.0.0, xtend@^4.0.1: 3551 | version "4.0.1" 3552 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3553 | 3554 | y18n@^3.2.1: 3555 | version "3.2.1" 3556 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3557 | 3558 | yargs-parser@^4.2.0: 3559 | version "4.2.1" 3560 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" 3561 | dependencies: 3562 | camelcase "^3.0.0" 3563 | 3564 | yargs@^6.3.0: 3565 | version "6.6.0" 3566 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" 3567 | dependencies: 3568 | camelcase "^3.0.0" 3569 | cliui "^3.2.0" 3570 | decamelize "^1.1.1" 3571 | get-caller-file "^1.0.1" 3572 | os-locale "^1.4.0" 3573 | read-pkg-up "^1.0.1" 3574 | require-directory "^2.1.1" 3575 | require-main-filename "^1.0.1" 3576 | set-blocking "^2.0.0" 3577 | string-width "^1.0.2" 3578 | which-module "^1.0.0" 3579 | y18n "^3.2.1" 3580 | yargs-parser "^4.2.0" 3581 | 3582 | yargs@~3.10.0: 3583 | version "3.10.0" 3584 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3585 | dependencies: 3586 | camelcase "^1.0.2" 3587 | cliui "^2.1.0" 3588 | decamelize "^1.0.0" 3589 | window-size "0.1.0" 3590 | --------------------------------------------------------------------------------