├── .gitignore ├── .jscsrc ├── .editorconfig ├── .jshintrc ├── bower.json ├── package.json ├── LICENSE ├── CHANGELOG.md ├── angular-imgcache.js ├── README.md └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | node_modules 3 | -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- 1 | { 2 | "preset": "google", 3 | "validateIndentation": 4, 4 | "maximumLineLength": 100, 5 | "requireCamelCaseOrUpperCaseIdentifiers": null 6 | } 7 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # http://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | charset = utf-8 6 | indent_style = space 7 | indent_size = 4 8 | end_of_line = lf 9 | insert_final_newline = true 10 | trim_trailing_whitespace = true 11 | 12 | [*.md] 13 | insert_final_newline = false 14 | trim_trailing_whitespace = false 15 | 16 | [*.html] 17 | indent_size = 2 18 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "undef": true, 3 | "unused": true, 4 | "bitwise": true, 5 | "curly": true, 6 | "eqeqeq": true, 7 | "funcscope": false, 8 | "latedef": true, 9 | "maxcomplexity": 8, 10 | "maxdepth": 8, 11 | "nonbsp": true, 12 | "nonew": true, 13 | "notypeof": false, 14 | "browser": true, 15 | "devel": true, 16 | "globals": { 17 | "angular": false 18 | } 19 | } 20 | 21 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-imgcache", 3 | "main": "angular-imgcache.js", 4 | "version": "1.2.0", 5 | "homepage": "https://github.com/maistho/angular-imgcache", 6 | "authors": [ 7 | "gartorware ", 8 | "maistho ", 9 | "Benes " 10 | ], 11 | "description": "Simple imgcache.js wrapper for AngularJS", 12 | "keywords": [ 13 | "AngularJS", 14 | "imgcache.js", 15 | "JavaScript" 16 | ], 17 | "license": "MIT", 18 | "ignore": [ 19 | "**/.*", 20 | "node_modules", 21 | "bower_components", 22 | "test", 23 | "tests" 24 | ], 25 | "dependencies": { 26 | "angular": ">=1.2.*", 27 | "imgcache.js": "*" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-imgcache.js", 3 | "version": "1.2.0", 4 | "description": "Simple imgcache.js wrapper for AngularJS", 5 | "main": "angular-imgcache.js", 6 | "scripts": { 7 | "release": "standard-version" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/maistho/angular-imgcache.git" 12 | }, 13 | "keywords": [ 14 | "AngularJS", 15 | "imgcache.js", 16 | "JavaScript" 17 | ], 18 | "author": "Maistho ", 19 | "license": "MIT", 20 | "bugs": { 21 | "url": "https://github.com/maistho/angular-imgcache/issues" 22 | }, 23 | "homepage": "https://github.com/maistho/angular-imgcache#readme", 24 | "peerDependencies": { 25 | "imgcache.js": "^1.0.0" 26 | }, 27 | "devDependencies": { 28 | "conventional-changelog-cli": "^1.3.2", 29 | "cz-conventional-changelog": "^2.0.0", 30 | "standard-version": "^4.2.0" 31 | }, 32 | "config": { 33 | "commitizen": { 34 | "path": "./node_modules/cz-conventional-changelog" 35 | } 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 Jiří Beneš 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 | 23 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. 4 | 5 | 6 | # [1.2.0](https://github.com/maistho/angular-imgcache/compare/v1.1.1...v1.2.0) (2017-07-21) 7 | 8 | 9 | ### Features 10 | 11 | * emit event when image has been loaded ([6c8eef8](https://github.com/maistho/angular-imgcache/commit/6c8eef8)) 12 | 13 | 14 | 15 | 16 | 17 | ## 1.1.1 (2017-05-19) 18 | ## 1.0.2 (2017-05-19) 19 | 20 | 1.0.2 Was a mistaken release, the proper version should've been 1.1.1 21 | 22 | * chore: add imgcache.js as dependency ([9b6bc70](https://github.com/maistho/angular-imgcache/commit/9b6bc70)) 23 | * chore: release v1.0.2 ([8059136](https://github.com/maistho/angular-imgcache/commit/8059136)) 24 | 25 | 26 | 27 | 28 | # 1.1.0 (2016-07-15) 29 | 30 | * added a way to disable cache ([3625680](https://github.com/maistho/angular-imgcache/commit/3625680)) 31 | * Added style checking ([a00f883](https://github.com/maistho/angular-imgcache/commit/a00f883)) 32 | * Allow for later angular versions ([41dbe32](https://github.com/maistho/angular-imgcache/commit/41dbe32)) 33 | * Version 1.1.0 ([546fffb](https://github.com/maistho/angular-imgcache/commit/546fffb)) 34 | 35 | 36 | 37 | 38 | ## 1.0.1 (2016-05-06) 39 | 40 | * bump v1.0.1 ([ea1628b](https://github.com/maistho/angular-imgcache/commit/ea1628b)) 41 | * Removed isolated scope. ([2d6a278](https://github.com/maistho/angular-imgcache/commit/2d6a278)) 42 | * Update installation instructions ([25dc529](https://github.com/maistho/angular-imgcache/commit/25dc529)) 43 | * update readme install instructions ([f4a9369](https://github.com/maistho/angular-imgcache/commit/f4a9369)) 44 | * Update README.md ([c4df67e](https://github.com/maistho/angular-imgcache/commit/c4df67e)) 45 | 46 | 47 | 48 | 49 | # 1.0.0 (2016-03-27) 50 | 51 | * adds package.json for npm ([b5d573e](https://github.com/maistho/angular-imgcache/commit/b5d573e)) 52 | * Bower initialized ([083df9a](https://github.com/maistho/angular-imgcache/commit/083df9a)) 53 | * Directive added ([e7b75f2](https://github.com/maistho/angular-imgcache/commit/e7b75f2)) 54 | * Docs - config section updated ([cfad8f1](https://github.com/maistho/angular-imgcache/commit/cfad8f1)) 55 | * Docs - typo ([4e469f9](https://github.com/maistho/angular-imgcache/commit/4e469f9)) 56 | * Docs added ([84d11f6](https://github.com/maistho/angular-imgcache/commit/84d11f6)) 57 | * Initial commit ([9a0cad9](https://github.com/maistho/angular-imgcache/commit/9a0cad9)) 58 | * Ionic support ([28561bb](https://github.com/maistho/angular-imgcache/commit/28561bb)) 59 | * only load images if there are images ([d1cc70b](https://github.com/maistho/angular-imgcache/commit/d1cc70b)) 60 | * Original source fallback handling ([7513856](https://github.com/maistho/angular-imgcache/commit/7513856)) 61 | * Package renamed, typo ([586a547](https://github.com/maistho/angular-imgcache/commit/586a547)) 62 | * Provider added ([d5f4b5f](https://github.com/maistho/angular-imgcache/commit/d5f4b5f)) 63 | * update bower.json and package.json ([a1e5ea9](https://github.com/maistho/angular-imgcache/commit/a1e5ea9)) 64 | * v1.0.0 ([8a73391](https://github.com/maistho/angular-imgcache/commit/8a73391)) 65 | * version changed ([fe0ae12](https://github.com/maistho/angular-imgcache/commit/fe0ae12)) 66 | -------------------------------------------------------------------------------- /angular-imgcache.js: -------------------------------------------------------------------------------- 1 | /* globals ImgCache */ 2 | angular.module('ImgCache', []) 3 | 4 | .provider('ImgCache', function() { 5 | ImgCache.$init = function() { 6 | ImgCache.init(function() { 7 | if (!ImgCache.options.cacheDisabled) { 8 | ImgCache.$deferred.resolve(); 9 | } else { 10 | ImgCache.$deferred.reject(); 11 | } 12 | }, function() { 13 | ImgCache.$deferred.reject(); 14 | }); 15 | }; 16 | 17 | this.manualInit = false; 18 | 19 | this.setOptions = function(options) { 20 | angular.extend(ImgCache.options, options); 21 | }; 22 | 23 | this.setOption = function(name, value) { 24 | ImgCache.options[name] = value; 25 | }; 26 | 27 | this.disableCache = function(value) { 28 | ImgCache.options.cacheDisabled = value; 29 | }; 30 | 31 | this.$get = ['$q', function($q) { 32 | ImgCache.$deferred = $q.defer(); 33 | ImgCache.$promise = ImgCache.$deferred.promise; 34 | 35 | if (!this.manualInit) { 36 | ImgCache.$init(); 37 | } 38 | 39 | return ImgCache; 40 | }]; 41 | }) 42 | 43 | .directive('imgCache', ['ImgCache', function() { 44 | return { 45 | restrict: 'A', 46 | link: function(scope, el, attrs) { 47 | var setImg = function(type, el, src) { 48 | ImgCache.getCachedFileURL(src, function(src, dest) { 49 | if (type === 'bg') { 50 | el.css({'background-image': 'url(' + dest + ')'}); 51 | } else { 52 | el.attr('src', dest); 53 | } 54 | scope.$emit('ImgCache.loaded'); 55 | }); 56 | }; 57 | 58 | var fallbackImg = function(type, el, src) { 59 | // fallback to original source if e.g. src is a relative 60 | // file and therefore loaded from local file system 61 | if (src) { 62 | if (type === 'bg') { 63 | el.css({'background-image': 'url(' + src + ')'}); 64 | } else { 65 | el.attr('src', src); 66 | } 67 | scope.$emit('ImgCache.loaded'); 68 | } 69 | }; 70 | 71 | var loadImg = function(type, el, src) { 72 | ImgCache.$promise.then(function() { 73 | ImgCache.isCached(src, function(path, success) { 74 | if (success) { 75 | setImg(type, el, src); 76 | } else { 77 | ImgCache.cacheFile(src, function() { 78 | setImg(type, el, src); 79 | }, function() { 80 | fallbackImg(type, el, src); 81 | }); 82 | } 83 | }); 84 | }, function() { 85 | fallbackImg(type, el, src); 86 | }); 87 | }; 88 | 89 | attrs.$observe('icSrc', function(src) { 90 | if (src) { 91 | loadImg('src', el, src); 92 | } 93 | }); 94 | 95 | attrs.$observe('icBg', function(src) { 96 | if (src) { 97 | loadImg('bg', el, src); 98 | } 99 | }); 100 | 101 | } 102 | }; 103 | }]); 104 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # angular-imgcache.js 2 | 3 | Simple [imgcache.js](https://github.com/chrisben/imgcache.js) wrapper for AngularJS, can be used with Ionic/Cordova/Phonegap. 4 | 5 | ## Installation 6 | 7 | Install via npm 8 | ```sh 9 | npm install --save imgcache.js angular-imgcache.js 10 | ``` 11 | 12 | Install via Yarn 13 | ```sh 14 | yarn add imgcache.js angular-imgcache.js 15 | ``` 16 | 17 | Install via bower (deprecated, use npm or yarn instead) 18 | ```sh 19 | bower install --save angular-imgcache.js 20 | ``` 21 | 22 | 23 | There is only a single file that you need to include: `angular-imgcache.js` 24 | 25 | Example html 26 | ```html 27 | 28 | 29 | 30 | 31 | 32 | ``` 33 | 34 | ### Load module 35 | 36 | ```javascript 37 | angular.module('MyApp', [ 38 | 'ImgCache' 39 | ]) 40 | ``` 41 | 42 | ## Usage 43 | 44 | ### Configuration 45 | 46 | You can override imgcache.js default options in Angulars config section. 47 | 48 | ```javascript 49 | .config(function(..., ImgCacheProvider) { 50 | 51 | // set single options 52 | ImgCacheProvider.setOption('debug', true); 53 | ImgCacheProvider.setOption('usePersistentCache', true); 54 | 55 | // or more options at once 56 | ImgCacheProvider.setOptions({ 57 | debug: true, 58 | usePersistentCache: true 59 | }); 60 | 61 | // ImgCache library is initialized automatically, 62 | // but set this option if you are using platform like Ionic - 63 | // in this case we need init imgcache.js manually after device is ready 64 | ImgCacheProvider.manualInit = true; 65 | 66 | // If you want to, you can disable the cache. 67 | // This might be useful to disable it to get rid of CORS issues when 68 | // developing cordova Applications using a browser. 69 | ImgCacheProvider.disableCache(true); 70 | 71 | ... 72 | 73 | }); 74 | ``` 75 | 76 | If you are using platform like Ionic, you have to init ImgCache manually. Note: you must set `ImgCacheProvider.manualInit = true;` as in example above. 77 | 78 | ```javascript 79 | .run(function($ionicPlatform, ImgCache) { 80 | 81 | $ionicPlatform.ready(function() { 82 | ImgCache.$init(); 83 | }); 84 | 85 | }); 86 | ``` 87 | 88 | You can init library manually in other patforms via "deviceready" callback like this: 89 | 90 | ```html 91 | 92 | ``` 93 | 94 | ```javascript 95 | function onLoad() { 96 | document.addEventListener("deviceready", onDeviceReady, false); 97 | } 98 | 99 | function onDeviceReady() { 100 | ImgCache.$init(); 101 | } 102 | ``` 103 | 104 | (Thx @emps for this note in #1) 105 | 106 | ### Service 107 | 108 | Access imgcache.js and its original methods in your components via promise to make sure that imgcache.js library is already initialized 109 | 110 | ```javascript 111 | .controller('MyCtrl', function($scope, ImgCache) { 112 | 113 | ImgCache.$promise.then(function() { 114 | ImgCache.cacheFile('...'); 115 | }); 116 | 117 | }); 118 | ``` 119 | 120 | ### Directive 121 | 122 | Angular-imgcache.js comes with directive, which first looks into cache for an image. If not present, it downloads the image, then stores in cache and uses it. 123 | 124 | We can set src of an image with `ic-src` attribute. 125 | 126 | ```html 127 | 128 | ``` 129 | 130 | Or set elements `background-image` with `ic-bg` attribute. 131 | 132 | ```html 133 |
134 | ``` 135 | 136 | ## Contributing 137 | 138 | If you have any issues, please feel free to open an issue. 139 | 140 | If you want to contribute code, feel free to do that as well! I will be extra happy if you also check you code using [jscs](http://jscs.info/) and [jshint](http://jshint.com/) 141 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | JSONStream@^1.0.4: 6 | version "1.3.1" 7 | resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.1.tgz#707f761e01dae9e16f1bcf93703b78c70966579a" 8 | dependencies: 9 | jsonparse "^1.2.0" 10 | through ">=2.2.7 <3" 11 | 12 | add-stream@^1.0.0: 13 | version "1.0.0" 14 | resolved "https://registry.yarnpkg.com/add-stream/-/add-stream-1.0.0.tgz#6a7990437ca736d5e1288db92bd3266d5f5cb2aa" 15 | 16 | align-text@^0.1.1, align-text@^0.1.3: 17 | version "0.1.4" 18 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 19 | dependencies: 20 | kind-of "^3.0.2" 21 | longest "^1.0.1" 22 | repeat-string "^1.5.2" 23 | 24 | amdefine@>=0.0.4: 25 | version "1.0.1" 26 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 27 | 28 | ansi-regex@^2.0.0: 29 | version "2.1.1" 30 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 31 | 32 | ansi-regex@^3.0.0: 33 | version "3.0.0" 34 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 35 | 36 | ansi-styles@^2.2.1: 37 | version "2.2.1" 38 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 39 | 40 | array-find-index@^1.0.1: 41 | version "1.0.2" 42 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 43 | 44 | array-ify@^1.0.0: 45 | version "1.0.0" 46 | resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece" 47 | 48 | async@^1.4.0: 49 | version "1.5.2" 50 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 51 | 52 | builtin-modules@^1.0.0: 53 | version "1.1.1" 54 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 55 | 56 | camelcase-keys@^2.0.0: 57 | version "2.1.0" 58 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 59 | dependencies: 60 | camelcase "^2.0.0" 61 | map-obj "^1.0.0" 62 | 63 | camelcase@^1.0.2: 64 | version "1.2.1" 65 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 66 | 67 | camelcase@^2.0.0: 68 | version "2.1.1" 69 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 70 | 71 | camelcase@^4.1.0: 72 | version "4.1.0" 73 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 74 | 75 | center-align@^0.1.1: 76 | version "0.1.3" 77 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 78 | dependencies: 79 | align-text "^0.1.3" 80 | lazy-cache "^1.0.3" 81 | 82 | chalk@^1.1.3: 83 | version "1.1.3" 84 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 85 | dependencies: 86 | ansi-styles "^2.2.1" 87 | escape-string-regexp "^1.0.2" 88 | has-ansi "^2.0.0" 89 | strip-ansi "^3.0.0" 90 | supports-color "^2.0.0" 91 | 92 | cliui@^2.1.0: 93 | version "2.1.0" 94 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 95 | dependencies: 96 | center-align "^0.1.1" 97 | right-align "^0.1.1" 98 | wordwrap "0.0.2" 99 | 100 | cliui@^3.2.0: 101 | version "3.2.0" 102 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 103 | dependencies: 104 | string-width "^1.0.1" 105 | strip-ansi "^3.0.1" 106 | wrap-ansi "^2.0.0" 107 | 108 | code-point-at@^1.0.0: 109 | version "1.1.0" 110 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 111 | 112 | compare-func@^1.3.1: 113 | version "1.3.2" 114 | resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-1.3.2.tgz#99dd0ba457e1f9bc722b12c08ec33eeab31fa648" 115 | dependencies: 116 | array-ify "^1.0.0" 117 | dot-prop "^3.0.0" 118 | 119 | concat-stream@^1.4.10: 120 | version "1.6.0" 121 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 122 | dependencies: 123 | inherits "^2.0.3" 124 | readable-stream "^2.2.2" 125 | typedarray "^0.0.6" 126 | 127 | conventional-changelog-angular@^1.3.4: 128 | version "1.4.0" 129 | resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-1.4.0.tgz#118b9f7d41a3d99500bfb6bea1f3525e055e8b9b" 130 | dependencies: 131 | compare-func "^1.3.1" 132 | github-url-from-git "^1.4.0" 133 | q "^1.4.1" 134 | read-pkg-up "^2.0.0" 135 | 136 | conventional-changelog-atom@^0.1.0: 137 | version "0.1.1" 138 | resolved "https://registry.yarnpkg.com/conventional-changelog-atom/-/conventional-changelog-atom-0.1.1.tgz#d40a9b297961b53c745e5d1718fd1a3379f6a92f" 139 | dependencies: 140 | q "^1.4.1" 141 | 142 | conventional-changelog-cli@^1.3.2: 143 | version "1.3.2" 144 | resolved "https://registry.yarnpkg.com/conventional-changelog-cli/-/conventional-changelog-cli-1.3.2.tgz#33abf2b5720a9b094df38e81741ccb502e1a4125" 145 | dependencies: 146 | add-stream "^1.0.0" 147 | conventional-changelog "^1.1.4" 148 | lodash "^4.1.0" 149 | meow "^3.7.0" 150 | tempfile "^1.1.1" 151 | 152 | conventional-changelog-codemirror@^0.1.0: 153 | version "0.1.0" 154 | resolved "https://registry.yarnpkg.com/conventional-changelog-codemirror/-/conventional-changelog-codemirror-0.1.0.tgz#7577a591dbf9b538e7a150a7ee62f65a2872b334" 155 | dependencies: 156 | q "^1.4.1" 157 | 158 | conventional-changelog-core@^1.9.0: 159 | version "1.9.0" 160 | resolved "https://registry.yarnpkg.com/conventional-changelog-core/-/conventional-changelog-core-1.9.0.tgz#de5dfbc091847656508d4a389e35c9a1bc49e7f4" 161 | dependencies: 162 | conventional-changelog-writer "^1.1.0" 163 | conventional-commits-parser "^1.0.0" 164 | dateformat "^1.0.12" 165 | get-pkg-repo "^1.0.0" 166 | git-raw-commits "^1.2.0" 167 | git-remote-origin-url "^2.0.0" 168 | git-semver-tags "^1.2.0" 169 | lodash "^4.0.0" 170 | normalize-package-data "^2.3.5" 171 | q "^1.4.1" 172 | read-pkg "^1.1.0" 173 | read-pkg-up "^1.0.1" 174 | through2 "^2.0.0" 175 | 176 | conventional-changelog-ember@^0.2.6: 177 | version "0.2.6" 178 | resolved "https://registry.yarnpkg.com/conventional-changelog-ember/-/conventional-changelog-ember-0.2.6.tgz#8b7355419f5127493c4c562473ab2fc792f1c2b6" 179 | dependencies: 180 | q "^1.4.1" 181 | 182 | conventional-changelog-eslint@^0.1.0: 183 | version "0.1.0" 184 | resolved "https://registry.yarnpkg.com/conventional-changelog-eslint/-/conventional-changelog-eslint-0.1.0.tgz#a52411e999e0501ce500b856b0a643d0330907e2" 185 | dependencies: 186 | q "^1.4.1" 187 | 188 | conventional-changelog-express@^0.1.0: 189 | version "0.1.0" 190 | resolved "https://registry.yarnpkg.com/conventional-changelog-express/-/conventional-changelog-express-0.1.0.tgz#55c6c841c811962036c037bdbd964a54ae310fce" 191 | dependencies: 192 | q "^1.4.1" 193 | 194 | conventional-changelog-jquery@^0.1.0: 195 | version "0.1.0" 196 | resolved "https://registry.yarnpkg.com/conventional-changelog-jquery/-/conventional-changelog-jquery-0.1.0.tgz#0208397162e3846986e71273b6c79c5b5f80f510" 197 | dependencies: 198 | q "^1.4.1" 199 | 200 | conventional-changelog-jscs@^0.1.0: 201 | version "0.1.0" 202 | resolved "https://registry.yarnpkg.com/conventional-changelog-jscs/-/conventional-changelog-jscs-0.1.0.tgz#0479eb443cc7d72c58bf0bcf0ef1d444a92f0e5c" 203 | dependencies: 204 | q "^1.4.1" 205 | 206 | conventional-changelog-jshint@^0.1.0: 207 | version "0.1.0" 208 | resolved "https://registry.yarnpkg.com/conventional-changelog-jshint/-/conventional-changelog-jshint-0.1.0.tgz#00cab8e9a3317487abd94c4d84671342918d2a07" 209 | dependencies: 210 | compare-func "^1.3.1" 211 | q "^1.4.1" 212 | 213 | conventional-changelog-writer@^1.1.0: 214 | version "1.4.1" 215 | resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-1.4.1.tgz#3f4cb4d003ebb56989d30d345893b52a43639c8e" 216 | dependencies: 217 | compare-func "^1.3.1" 218 | conventional-commits-filter "^1.0.0" 219 | dateformat "^1.0.11" 220 | handlebars "^4.0.2" 221 | json-stringify-safe "^5.0.1" 222 | lodash "^4.0.0" 223 | meow "^3.3.0" 224 | semver "^5.0.1" 225 | split "^1.0.0" 226 | through2 "^2.0.0" 227 | 228 | conventional-changelog@^1.1.0, conventional-changelog@^1.1.4: 229 | version "1.1.4" 230 | resolved "https://registry.yarnpkg.com/conventional-changelog/-/conventional-changelog-1.1.4.tgz#108bc750c2a317e200e2f9b413caaa1f8c7efa3b" 231 | dependencies: 232 | conventional-changelog-angular "^1.3.4" 233 | conventional-changelog-atom "^0.1.0" 234 | conventional-changelog-codemirror "^0.1.0" 235 | conventional-changelog-core "^1.9.0" 236 | conventional-changelog-ember "^0.2.6" 237 | conventional-changelog-eslint "^0.1.0" 238 | conventional-changelog-express "^0.1.0" 239 | conventional-changelog-jquery "^0.1.0" 240 | conventional-changelog-jscs "^0.1.0" 241 | conventional-changelog-jshint "^0.1.0" 242 | 243 | conventional-commit-types@^2.0.0: 244 | version "2.2.0" 245 | resolved "https://registry.yarnpkg.com/conventional-commit-types/-/conventional-commit-types-2.2.0.tgz#5db95739d6c212acbe7b6f656a11b940baa68946" 246 | 247 | conventional-commits-filter@^1.0.0: 248 | version "1.0.0" 249 | resolved "https://registry.yarnpkg.com/conventional-commits-filter/-/conventional-commits-filter-1.0.0.tgz#6fc2a659372bc3f2339cf9ffff7e1b0344b93039" 250 | dependencies: 251 | is-subset "^0.1.1" 252 | modify-values "^1.0.0" 253 | 254 | conventional-commits-parser@^1.0.0: 255 | version "1.3.0" 256 | resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-1.3.0.tgz#e327b53194e1a7ad5dc63479ee9099a52b024865" 257 | dependencies: 258 | JSONStream "^1.0.4" 259 | is-text-path "^1.0.0" 260 | lodash "^4.2.1" 261 | meow "^3.3.0" 262 | split2 "^2.0.0" 263 | through2 "^2.0.0" 264 | trim-off-newlines "^1.0.0" 265 | 266 | conventional-commits-parser@^2.0.0: 267 | version "2.0.0" 268 | resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-2.0.0.tgz#71d01910cb0a99aeb20c144e50f81f4df3178447" 269 | dependencies: 270 | JSONStream "^1.0.4" 271 | is-text-path "^1.0.0" 272 | lodash "^4.2.1" 273 | meow "^3.3.0" 274 | split2 "^2.0.0" 275 | through2 "^2.0.0" 276 | trim-off-newlines "^1.0.0" 277 | 278 | conventional-recommended-bump@^1.0.0: 279 | version "1.0.1" 280 | resolved "https://registry.yarnpkg.com/conventional-recommended-bump/-/conventional-recommended-bump-1.0.1.tgz#56b8ae553a8a1152fa069e767599e1f6948bd36c" 281 | dependencies: 282 | concat-stream "^1.4.10" 283 | conventional-commits-filter "^1.0.0" 284 | conventional-commits-parser "^2.0.0" 285 | git-raw-commits "^1.2.0" 286 | git-semver-tags "^1.2.1" 287 | meow "^3.3.0" 288 | object-assign "^4.0.1" 289 | 290 | core-util-is@~1.0.0: 291 | version "1.0.2" 292 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 293 | 294 | cross-spawn@^4.0.0: 295 | version "4.0.2" 296 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" 297 | dependencies: 298 | lru-cache "^4.0.1" 299 | which "^1.2.9" 300 | 301 | currently-unhandled@^0.4.1: 302 | version "0.4.1" 303 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 304 | dependencies: 305 | array-find-index "^1.0.1" 306 | 307 | cz-conventional-changelog@^2.0.0: 308 | version "2.0.0" 309 | resolved "https://registry.yarnpkg.com/cz-conventional-changelog/-/cz-conventional-changelog-2.0.0.tgz#55a979afdfe95e7024879d2a0f5924630170b533" 310 | dependencies: 311 | conventional-commit-types "^2.0.0" 312 | lodash.map "^4.5.1" 313 | longest "^1.0.1" 314 | pad-right "^0.2.2" 315 | right-pad "^1.0.1" 316 | word-wrap "^1.0.3" 317 | 318 | dargs@^4.0.1: 319 | version "4.1.0" 320 | resolved "https://registry.yarnpkg.com/dargs/-/dargs-4.1.0.tgz#03a9dbb4b5c2f139bf14ae53f0b8a2a6a86f4e17" 321 | dependencies: 322 | number-is-nan "^1.0.0" 323 | 324 | dateformat@^1.0.11, dateformat@^1.0.12: 325 | version "1.0.12" 326 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-1.0.12.tgz#9f124b67594c937ff706932e4a642cca8dbbfee9" 327 | dependencies: 328 | get-stdin "^4.0.1" 329 | meow "^3.3.0" 330 | 331 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: 332 | version "1.2.0" 333 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 334 | 335 | dot-prop@^3.0.0: 336 | version "3.0.0" 337 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177" 338 | dependencies: 339 | is-obj "^1.0.0" 340 | 341 | error-ex@^1.2.0: 342 | version "1.3.1" 343 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 344 | dependencies: 345 | is-arrayish "^0.2.1" 346 | 347 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 348 | version "1.0.5" 349 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 350 | 351 | execa@^0.5.0: 352 | version "0.5.1" 353 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.5.1.tgz#de3fb85cb8d6e91c85bcbceb164581785cb57b36" 354 | dependencies: 355 | cross-spawn "^4.0.0" 356 | get-stream "^2.2.0" 357 | is-stream "^1.1.0" 358 | npm-run-path "^2.0.0" 359 | p-finally "^1.0.0" 360 | signal-exit "^3.0.0" 361 | strip-eof "^1.0.0" 362 | 363 | figures@^1.5.0: 364 | version "1.7.0" 365 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 366 | dependencies: 367 | escape-string-regexp "^1.0.5" 368 | object-assign "^4.1.0" 369 | 370 | find-up@^1.0.0: 371 | version "1.1.2" 372 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 373 | dependencies: 374 | path-exists "^2.0.0" 375 | pinkie-promise "^2.0.0" 376 | 377 | find-up@^2.0.0: 378 | version "2.1.0" 379 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 380 | dependencies: 381 | locate-path "^2.0.0" 382 | 383 | fs-access@^1.0.0: 384 | version "1.0.1" 385 | resolved "https://registry.yarnpkg.com/fs-access/-/fs-access-1.0.1.tgz#d6a87f262271cefebec30c553407fb995da8777a" 386 | dependencies: 387 | null-check "^1.0.0" 388 | 389 | get-caller-file@^1.0.1: 390 | version "1.0.2" 391 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 392 | 393 | get-pkg-repo@^1.0.0: 394 | version "1.4.0" 395 | resolved "https://registry.yarnpkg.com/get-pkg-repo/-/get-pkg-repo-1.4.0.tgz#c73b489c06d80cc5536c2c853f9e05232056972d" 396 | dependencies: 397 | hosted-git-info "^2.1.4" 398 | meow "^3.3.0" 399 | normalize-package-data "^2.3.0" 400 | parse-github-repo-url "^1.3.0" 401 | through2 "^2.0.0" 402 | 403 | get-stdin@^4.0.1: 404 | version "4.0.1" 405 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 406 | 407 | get-stream@^2.2.0: 408 | version "2.3.1" 409 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-2.3.1.tgz#5f38f93f346009666ee0150a054167f91bdd95de" 410 | dependencies: 411 | object-assign "^4.0.1" 412 | pinkie-promise "^2.0.0" 413 | 414 | git-raw-commits@^1.2.0: 415 | version "1.2.0" 416 | resolved "https://registry.yarnpkg.com/git-raw-commits/-/git-raw-commits-1.2.0.tgz#0f3a8bfd99ae0f2d8b9224d58892975e9a52d03c" 417 | dependencies: 418 | dargs "^4.0.1" 419 | lodash.template "^4.0.2" 420 | meow "^3.3.0" 421 | split2 "^2.0.0" 422 | through2 "^2.0.0" 423 | 424 | git-remote-origin-url@^2.0.0: 425 | version "2.0.0" 426 | resolved "https://registry.yarnpkg.com/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz#5282659dae2107145a11126112ad3216ec5fa65f" 427 | dependencies: 428 | gitconfiglocal "^1.0.0" 429 | pify "^2.3.0" 430 | 431 | git-semver-tags@^1.2.0, git-semver-tags@^1.2.1: 432 | version "1.2.1" 433 | resolved "https://registry.yarnpkg.com/git-semver-tags/-/git-semver-tags-1.2.1.tgz#6ccd2a52e735b736748dc762444fcd9588e27490" 434 | dependencies: 435 | meow "^3.3.0" 436 | semver "^5.0.1" 437 | 438 | gitconfiglocal@^1.0.0: 439 | version "1.0.0" 440 | resolved "https://registry.yarnpkg.com/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz#41d045f3851a5ea88f03f24ca1c6178114464b9b" 441 | dependencies: 442 | ini "^1.3.2" 443 | 444 | github-url-from-git@^1.4.0: 445 | version "1.5.0" 446 | resolved "https://registry.yarnpkg.com/github-url-from-git/-/github-url-from-git-1.5.0.tgz#f985fedcc0a9aa579dc88d7aff068d55cc6251a0" 447 | 448 | graceful-fs@^4.1.2: 449 | version "4.1.11" 450 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 451 | 452 | handlebars@^4.0.2: 453 | version "4.0.10" 454 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" 455 | dependencies: 456 | async "^1.4.0" 457 | optimist "^0.6.1" 458 | source-map "^0.4.4" 459 | optionalDependencies: 460 | uglify-js "^2.6" 461 | 462 | has-ansi@^2.0.0: 463 | version "2.0.0" 464 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 465 | dependencies: 466 | ansi-regex "^2.0.0" 467 | 468 | hosted-git-info@^2.1.4: 469 | version "2.5.0" 470 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 471 | 472 | indent-string@^2.1.0: 473 | version "2.1.0" 474 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 475 | dependencies: 476 | repeating "^2.0.0" 477 | 478 | inherits@^2.0.3, inherits@~2.0.3: 479 | version "2.0.3" 480 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 481 | 482 | ini@^1.3.2: 483 | version "1.3.4" 484 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 485 | 486 | invert-kv@^1.0.0: 487 | version "1.0.0" 488 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 489 | 490 | is-arrayish@^0.2.1: 491 | version "0.2.1" 492 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 493 | 494 | is-buffer@^1.1.5: 495 | version "1.1.5" 496 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 497 | 498 | is-builtin-module@^1.0.0: 499 | version "1.0.0" 500 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 501 | dependencies: 502 | builtin-modules "^1.0.0" 503 | 504 | is-finite@^1.0.0: 505 | version "1.0.2" 506 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 507 | dependencies: 508 | number-is-nan "^1.0.0" 509 | 510 | is-fullwidth-code-point@^1.0.0: 511 | version "1.0.0" 512 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 513 | dependencies: 514 | number-is-nan "^1.0.0" 515 | 516 | is-fullwidth-code-point@^2.0.0: 517 | version "2.0.0" 518 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 519 | 520 | is-obj@^1.0.0: 521 | version "1.0.1" 522 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 523 | 524 | is-stream@^1.1.0: 525 | version "1.1.0" 526 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 527 | 528 | is-subset@^0.1.1: 529 | version "0.1.1" 530 | resolved "https://registry.yarnpkg.com/is-subset/-/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6" 531 | 532 | is-text-path@^1.0.0: 533 | version "1.0.1" 534 | resolved "https://registry.yarnpkg.com/is-text-path/-/is-text-path-1.0.1.tgz#4e1aa0fb51bfbcb3e92688001397202c1775b66e" 535 | dependencies: 536 | text-extensions "^1.0.0" 537 | 538 | is-utf8@^0.2.0: 539 | version "0.2.1" 540 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 541 | 542 | isarray@~1.0.0: 543 | version "1.0.0" 544 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 545 | 546 | isexe@^2.0.0: 547 | version "2.0.0" 548 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 549 | 550 | json-stringify-safe@^5.0.1: 551 | version "5.0.1" 552 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 553 | 554 | jsonparse@^1.2.0: 555 | version "1.3.1" 556 | resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" 557 | 558 | kind-of@^3.0.2: 559 | version "3.2.2" 560 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 561 | dependencies: 562 | is-buffer "^1.1.5" 563 | 564 | lazy-cache@^1.0.3: 565 | version "1.0.4" 566 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 567 | 568 | lcid@^1.0.0: 569 | version "1.0.0" 570 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 571 | dependencies: 572 | invert-kv "^1.0.0" 573 | 574 | load-json-file@^1.0.0: 575 | version "1.1.0" 576 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 577 | dependencies: 578 | graceful-fs "^4.1.2" 579 | parse-json "^2.2.0" 580 | pify "^2.0.0" 581 | pinkie-promise "^2.0.0" 582 | strip-bom "^2.0.0" 583 | 584 | load-json-file@^2.0.0: 585 | version "2.0.0" 586 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 587 | dependencies: 588 | graceful-fs "^4.1.2" 589 | parse-json "^2.2.0" 590 | pify "^2.0.0" 591 | strip-bom "^3.0.0" 592 | 593 | locate-path@^2.0.0: 594 | version "2.0.0" 595 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 596 | dependencies: 597 | p-locate "^2.0.0" 598 | path-exists "^3.0.0" 599 | 600 | lodash._reinterpolate@~3.0.0: 601 | version "3.0.0" 602 | resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" 603 | 604 | lodash.map@^4.5.1: 605 | version "4.6.0" 606 | resolved "https://registry.yarnpkg.com/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3" 607 | 608 | lodash.template@^4.0.2: 609 | version "4.4.0" 610 | resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.4.0.tgz#e73a0385c8355591746e020b99679c690e68fba0" 611 | dependencies: 612 | lodash._reinterpolate "~3.0.0" 613 | lodash.templatesettings "^4.0.0" 614 | 615 | lodash.templatesettings@^4.0.0: 616 | version "4.1.0" 617 | resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.1.0.tgz#2b4d4e95ba440d915ff08bc899e4553666713316" 618 | dependencies: 619 | lodash._reinterpolate "~3.0.0" 620 | 621 | lodash@^4.0.0, lodash@^4.1.0, lodash@^4.2.1: 622 | version "4.17.4" 623 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 624 | 625 | longest@^1.0.1: 626 | version "1.0.1" 627 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 628 | 629 | loud-rejection@^1.0.0: 630 | version "1.6.0" 631 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 632 | dependencies: 633 | currently-unhandled "^0.4.1" 634 | signal-exit "^3.0.0" 635 | 636 | lru-cache@^4.0.1: 637 | version "4.1.1" 638 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 639 | dependencies: 640 | pseudomap "^1.0.2" 641 | yallist "^2.1.2" 642 | 643 | map-obj@^1.0.0, map-obj@^1.0.1: 644 | version "1.0.1" 645 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 646 | 647 | mem@^1.1.0: 648 | version "1.1.0" 649 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 650 | dependencies: 651 | mimic-fn "^1.0.0" 652 | 653 | meow@^3.3.0, meow@^3.7.0: 654 | version "3.7.0" 655 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 656 | dependencies: 657 | camelcase-keys "^2.0.0" 658 | decamelize "^1.1.2" 659 | loud-rejection "^1.0.0" 660 | map-obj "^1.0.1" 661 | minimist "^1.1.3" 662 | normalize-package-data "^2.3.4" 663 | object-assign "^4.0.1" 664 | read-pkg-up "^1.0.1" 665 | redent "^1.0.0" 666 | trim-newlines "^1.0.0" 667 | 668 | mimic-fn@^1.0.0: 669 | version "1.1.0" 670 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 671 | 672 | minimist@^1.1.3: 673 | version "1.2.0" 674 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 675 | 676 | minimist@~0.0.1: 677 | version "0.0.10" 678 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 679 | 680 | modify-values@^1.0.0: 681 | version "1.0.0" 682 | resolved "https://registry.yarnpkg.com/modify-values/-/modify-values-1.0.0.tgz#e2b6cdeb9ce19f99317a53722f3dbf5df5eaaab2" 683 | 684 | normalize-package-data@^2.3.0, normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.3.5: 685 | version "2.4.0" 686 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 687 | dependencies: 688 | hosted-git-info "^2.1.4" 689 | is-builtin-module "^1.0.0" 690 | semver "2 || 3 || 4 || 5" 691 | validate-npm-package-license "^3.0.1" 692 | 693 | npm-run-path@^2.0.0: 694 | version "2.0.2" 695 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 696 | dependencies: 697 | path-key "^2.0.0" 698 | 699 | null-check@^1.0.0: 700 | version "1.0.0" 701 | resolved "https://registry.yarnpkg.com/null-check/-/null-check-1.0.0.tgz#977dffd7176012b9ec30d2a39db5cf72a0439edd" 702 | 703 | number-is-nan@^1.0.0: 704 | version "1.0.1" 705 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 706 | 707 | object-assign@^4.0.1, object-assign@^4.1.0: 708 | version "4.1.1" 709 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 710 | 711 | optimist@^0.6.1: 712 | version "0.6.1" 713 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 714 | dependencies: 715 | minimist "~0.0.1" 716 | wordwrap "~0.0.2" 717 | 718 | os-locale@^2.0.0: 719 | version "2.0.0" 720 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.0.0.tgz#15918ded510522b81ee7ae5a309d54f639fc39a4" 721 | dependencies: 722 | execa "^0.5.0" 723 | lcid "^1.0.0" 724 | mem "^1.1.0" 725 | 726 | os-tmpdir@^1.0.0: 727 | version "1.0.2" 728 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 729 | 730 | p-finally@^1.0.0: 731 | version "1.0.0" 732 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 733 | 734 | p-limit@^1.1.0: 735 | version "1.1.0" 736 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 737 | 738 | p-locate@^2.0.0: 739 | version "2.0.0" 740 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 741 | dependencies: 742 | p-limit "^1.1.0" 743 | 744 | pad-right@^0.2.2: 745 | version "0.2.2" 746 | resolved "https://registry.yarnpkg.com/pad-right/-/pad-right-0.2.2.tgz#6fbc924045d244f2a2a244503060d3bfc6009774" 747 | dependencies: 748 | repeat-string "^1.5.2" 749 | 750 | parse-github-repo-url@^1.3.0: 751 | version "1.4.0" 752 | resolved "https://registry.yarnpkg.com/parse-github-repo-url/-/parse-github-repo-url-1.4.0.tgz#286c53e2c9962e0641649ee3ac9508fca4dd959c" 753 | 754 | parse-json@^2.2.0: 755 | version "2.2.0" 756 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 757 | dependencies: 758 | error-ex "^1.2.0" 759 | 760 | path-exists@^2.0.0: 761 | version "2.1.0" 762 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 763 | dependencies: 764 | pinkie-promise "^2.0.0" 765 | 766 | path-exists@^3.0.0: 767 | version "3.0.0" 768 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 769 | 770 | path-key@^2.0.0: 771 | version "2.0.1" 772 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 773 | 774 | path-type@^1.0.0: 775 | version "1.1.0" 776 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 777 | dependencies: 778 | graceful-fs "^4.1.2" 779 | pify "^2.0.0" 780 | pinkie-promise "^2.0.0" 781 | 782 | path-type@^2.0.0: 783 | version "2.0.0" 784 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 785 | dependencies: 786 | pify "^2.0.0" 787 | 788 | pify@^2.0.0, pify@^2.3.0: 789 | version "2.3.0" 790 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 791 | 792 | pinkie-promise@^2.0.0: 793 | version "2.0.1" 794 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 795 | dependencies: 796 | pinkie "^2.0.0" 797 | 798 | pinkie@^2.0.0: 799 | version "2.0.4" 800 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 801 | 802 | process-nextick-args@~1.0.6: 803 | version "1.0.7" 804 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 805 | 806 | pseudomap@^1.0.2: 807 | version "1.0.2" 808 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 809 | 810 | q@^1.4.1: 811 | version "1.5.0" 812 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.0.tgz#dd01bac9d06d30e6f219aecb8253ee9ebdc308f1" 813 | 814 | read-pkg-up@^1.0.1: 815 | version "1.0.1" 816 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 817 | dependencies: 818 | find-up "^1.0.0" 819 | read-pkg "^1.0.0" 820 | 821 | read-pkg-up@^2.0.0: 822 | version "2.0.0" 823 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 824 | dependencies: 825 | find-up "^2.0.0" 826 | read-pkg "^2.0.0" 827 | 828 | read-pkg@^1.0.0, read-pkg@^1.1.0: 829 | version "1.1.0" 830 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 831 | dependencies: 832 | load-json-file "^1.0.0" 833 | normalize-package-data "^2.3.2" 834 | path-type "^1.0.0" 835 | 836 | read-pkg@^2.0.0: 837 | version "2.0.0" 838 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 839 | dependencies: 840 | load-json-file "^2.0.0" 841 | normalize-package-data "^2.3.2" 842 | path-type "^2.0.0" 843 | 844 | readable-stream@^2.1.5, readable-stream@^2.2.2: 845 | version "2.3.3" 846 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 847 | dependencies: 848 | core-util-is "~1.0.0" 849 | inherits "~2.0.3" 850 | isarray "~1.0.0" 851 | process-nextick-args "~1.0.6" 852 | safe-buffer "~5.1.1" 853 | string_decoder "~1.0.3" 854 | util-deprecate "~1.0.1" 855 | 856 | redent@^1.0.0: 857 | version "1.0.0" 858 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 859 | dependencies: 860 | indent-string "^2.1.0" 861 | strip-indent "^1.0.1" 862 | 863 | repeat-string@^1.5.2: 864 | version "1.6.1" 865 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 866 | 867 | repeating@^2.0.0: 868 | version "2.0.1" 869 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 870 | dependencies: 871 | is-finite "^1.0.0" 872 | 873 | require-directory@^2.1.1: 874 | version "2.1.1" 875 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 876 | 877 | require-main-filename@^1.0.1: 878 | version "1.0.1" 879 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 880 | 881 | right-align@^0.1.1: 882 | version "0.1.3" 883 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 884 | dependencies: 885 | align-text "^0.1.1" 886 | 887 | right-pad@^1.0.1: 888 | version "1.0.1" 889 | resolved "https://registry.yarnpkg.com/right-pad/-/right-pad-1.0.1.tgz#8ca08c2cbb5b55e74dafa96bf7fd1a27d568c8d0" 890 | 891 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 892 | version "5.1.1" 893 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 894 | 895 | "semver@2 || 3 || 4 || 5", semver@^5.0.1, semver@^5.1.0: 896 | version "5.3.0" 897 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 898 | 899 | set-blocking@^2.0.0: 900 | version "2.0.0" 901 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 902 | 903 | signal-exit@^3.0.0: 904 | version "3.0.2" 905 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 906 | 907 | source-map@^0.4.4: 908 | version "0.4.4" 909 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 910 | dependencies: 911 | amdefine ">=0.0.4" 912 | 913 | source-map@~0.5.1: 914 | version "0.5.6" 915 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 916 | 917 | spdx-correct@~1.0.0: 918 | version "1.0.2" 919 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 920 | dependencies: 921 | spdx-license-ids "^1.0.2" 922 | 923 | spdx-expression-parse@~1.0.0: 924 | version "1.0.4" 925 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 926 | 927 | spdx-license-ids@^1.0.2: 928 | version "1.2.2" 929 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 930 | 931 | split2@^2.0.0: 932 | version "2.1.1" 933 | resolved "https://registry.yarnpkg.com/split2/-/split2-2.1.1.tgz#7a1f551e176a90ecd3345f7246a0cfe175ef4fd0" 934 | dependencies: 935 | through2 "^2.0.2" 936 | 937 | split@^1.0.0: 938 | version "1.0.0" 939 | resolved "https://registry.yarnpkg.com/split/-/split-1.0.0.tgz#c4395ce683abcd254bc28fe1dabb6e5c27dcffae" 940 | dependencies: 941 | through "2" 942 | 943 | standard-version@^4.2.0: 944 | version "4.2.0" 945 | resolved "https://registry.yarnpkg.com/standard-version/-/standard-version-4.2.0.tgz#3017e8c5ced2a92db7501790255c3ba85157375d" 946 | dependencies: 947 | chalk "^1.1.3" 948 | conventional-changelog "^1.1.0" 949 | conventional-recommended-bump "^1.0.0" 950 | figures "^1.5.0" 951 | fs-access "^1.0.0" 952 | semver "^5.1.0" 953 | yargs "^8.0.1" 954 | 955 | string-width@^1.0.1: 956 | version "1.0.2" 957 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 958 | dependencies: 959 | code-point-at "^1.0.0" 960 | is-fullwidth-code-point "^1.0.0" 961 | strip-ansi "^3.0.0" 962 | 963 | string-width@^2.0.0: 964 | version "2.1.1" 965 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 966 | dependencies: 967 | is-fullwidth-code-point "^2.0.0" 968 | strip-ansi "^4.0.0" 969 | 970 | string_decoder@~1.0.3: 971 | version "1.0.3" 972 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 973 | dependencies: 974 | safe-buffer "~5.1.0" 975 | 976 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 977 | version "3.0.1" 978 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 979 | dependencies: 980 | ansi-regex "^2.0.0" 981 | 982 | strip-ansi@^4.0.0: 983 | version "4.0.0" 984 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 985 | dependencies: 986 | ansi-regex "^3.0.0" 987 | 988 | strip-bom@^2.0.0: 989 | version "2.0.0" 990 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 991 | dependencies: 992 | is-utf8 "^0.2.0" 993 | 994 | strip-bom@^3.0.0: 995 | version "3.0.0" 996 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 997 | 998 | strip-eof@^1.0.0: 999 | version "1.0.0" 1000 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 1001 | 1002 | strip-indent@^1.0.1: 1003 | version "1.0.1" 1004 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 1005 | dependencies: 1006 | get-stdin "^4.0.1" 1007 | 1008 | supports-color@^2.0.0: 1009 | version "2.0.0" 1010 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1011 | 1012 | tempfile@^1.1.1: 1013 | version "1.1.1" 1014 | resolved "https://registry.yarnpkg.com/tempfile/-/tempfile-1.1.1.tgz#5bcc4eaecc4ab2c707d8bc11d99ccc9a2cb287f2" 1015 | dependencies: 1016 | os-tmpdir "^1.0.0" 1017 | uuid "^2.0.1" 1018 | 1019 | text-extensions@^1.0.0: 1020 | version "1.5.0" 1021 | resolved "https://registry.yarnpkg.com/text-extensions/-/text-extensions-1.5.0.tgz#d1cb2d14b5d0bc45bfdca8a08a473f68c7eb0cbc" 1022 | 1023 | through2@^2.0.0, through2@^2.0.2: 1024 | version "2.0.3" 1025 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 1026 | dependencies: 1027 | readable-stream "^2.1.5" 1028 | xtend "~4.0.1" 1029 | 1030 | through@2, "through@>=2.2.7 <3": 1031 | version "2.3.8" 1032 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 1033 | 1034 | trim-newlines@^1.0.0: 1035 | version "1.0.0" 1036 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 1037 | 1038 | trim-off-newlines@^1.0.0: 1039 | version "1.0.1" 1040 | resolved "https://registry.yarnpkg.com/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz#9f9ba9d9efa8764c387698bcbfeb2c848f11adb3" 1041 | 1042 | typedarray@^0.0.6: 1043 | version "0.0.6" 1044 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 1045 | 1046 | uglify-js@^2.6: 1047 | version "2.8.29" 1048 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 1049 | dependencies: 1050 | source-map "~0.5.1" 1051 | yargs "~3.10.0" 1052 | optionalDependencies: 1053 | uglify-to-browserify "~1.0.0" 1054 | 1055 | uglify-to-browserify@~1.0.0: 1056 | version "1.0.2" 1057 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 1058 | 1059 | util-deprecate@~1.0.1: 1060 | version "1.0.2" 1061 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1062 | 1063 | uuid@^2.0.1: 1064 | version "2.0.3" 1065 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 1066 | 1067 | validate-npm-package-license@^3.0.1: 1068 | version "3.0.1" 1069 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 1070 | dependencies: 1071 | spdx-correct "~1.0.0" 1072 | spdx-expression-parse "~1.0.0" 1073 | 1074 | which-module@^2.0.0: 1075 | version "2.0.0" 1076 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 1077 | 1078 | which@^1.2.9: 1079 | version "1.2.14" 1080 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 1081 | dependencies: 1082 | isexe "^2.0.0" 1083 | 1084 | window-size@0.1.0: 1085 | version "0.1.0" 1086 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 1087 | 1088 | word-wrap@^1.0.3: 1089 | version "1.2.3" 1090 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 1091 | 1092 | wordwrap@0.0.2: 1093 | version "0.0.2" 1094 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 1095 | 1096 | wordwrap@~0.0.2: 1097 | version "0.0.3" 1098 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 1099 | 1100 | wrap-ansi@^2.0.0: 1101 | version "2.1.0" 1102 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 1103 | dependencies: 1104 | string-width "^1.0.1" 1105 | strip-ansi "^3.0.1" 1106 | 1107 | xtend@~4.0.1: 1108 | version "4.0.1" 1109 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 1110 | 1111 | y18n@^3.2.1: 1112 | version "3.2.1" 1113 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 1114 | 1115 | yallist@^2.1.2: 1116 | version "2.1.2" 1117 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 1118 | 1119 | yargs-parser@^7.0.0: 1120 | version "7.0.0" 1121 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" 1122 | dependencies: 1123 | camelcase "^4.1.0" 1124 | 1125 | yargs@^8.0.1: 1126 | version "8.0.2" 1127 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360" 1128 | dependencies: 1129 | camelcase "^4.1.0" 1130 | cliui "^3.2.0" 1131 | decamelize "^1.1.1" 1132 | get-caller-file "^1.0.1" 1133 | os-locale "^2.0.0" 1134 | read-pkg-up "^2.0.0" 1135 | require-directory "^2.1.1" 1136 | require-main-filename "^1.0.1" 1137 | set-blocking "^2.0.0" 1138 | string-width "^2.0.0" 1139 | which-module "^2.0.0" 1140 | y18n "^3.2.1" 1141 | yargs-parser "^7.0.0" 1142 | 1143 | yargs@~3.10.0: 1144 | version "3.10.0" 1145 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 1146 | dependencies: 1147 | camelcase "^1.0.2" 1148 | cliui "^2.1.0" 1149 | decamelize "^1.0.0" 1150 | window-size "0.1.0" 1151 | --------------------------------------------------------------------------------