├── .gitignore ├── LICENSE.md ├── README.md ├── app ├── index.html ├── main.js └── touchbar.js ├── code-of-conduct.md ├── package.json ├── screenshots ├── touchbar.png └── window.png └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | old 2 | node_modules 3 | yarn-error.log 4 | npm-error.log -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | Copyright 2017 Federico Vitale © 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | 5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Electron _Touch Bar_ API 2 | > Electron example [Touch Bar API](https://electron.atom.io/docs/api/touch-bar/) 3 | 4 | ![screenshot](screenshots/window.png) 5 | 6 | # Installation 7 | 1. Clone this repo and extract it 8 | 2. Install dependencies (`npm install`) 9 | 3. Run it via `npm start` 10 | 11 | # Usage 12 | Once the app is running, play with the `Touch Bar`! It you should be something like this one below: 13 |
14 |
15 | ![Touch Bar](screenshots/touchbar.png) 16 |
17 | 18 | There are all `TouchBar` elements: 19 | - `Button` - Restore Defaults (restore defaults parameters) 20 | - `Color Picker` - (change text color) 21 | - `Slider` - Inside options (change the font size of the `H1`) 22 | - `Group` - `Button`, `PopOver`, `Color Picker` 23 | - `Scrubbler` - Inside options (change the `H1` text) 24 | - `Pop Over` - Options 25 | - `Segmented Controller` - The On\Off switch (toggle if color can change true/false) 26 | - `Spacer` 27 | - `Label` - App name 28 | --- 29 | 30 |
31 |
32 | 33 | # Code of conduct 34 | In the interest of fostering an open and welcoming environment, we as 35 | contributors and maintainers pledge to making participation in our project and 36 | our community a harassment-free experience for everyone, regardless of age, body 37 | size, disability, ethnicity, gender identity and[...] 38 | 39 | - [Code Of Conduct](code-of-conduct.md) 40 | 41 | # LICENSE 42 | Copyright 2017 Federico Vitale © 43 | 44 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 45 | 46 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 47 | 48 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 49 | 50 | --- 51 | 52 | > If you enjoyed drop a star, it's free!
53 | > — Rawnly 54 | -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Touch Bar Sample 9 | 10 | 51 | 52 | 53 |
54 | 59 |

Electron

60 |
61 | 62 | 110 | 111 | -------------------------------------------------------------------------------- /app/main.js: -------------------------------------------------------------------------------- 1 | // Require electron 2 | const electron = require('electron'); 3 | const { 4 | BrowserWindow, 5 | app 6 | } = electron; 7 | 8 | // Require the touchbar from the `touchbar.js` file 9 | const touchbar = require('./touchbar'); 10 | 11 | // Let's define a new empty window 12 | let mainWindow; 13 | 14 | // Ready function 15 | function ready() { 16 | 17 | // "Fill" the window 18 | mainWindow = new BrowserWindow({ 19 | width: 800, 20 | height: 800, 21 | resizable: false, 22 | fullscreenable: false 23 | }) 24 | 25 | // Set the touchbar 26 | mainWindow.setTouchBar(touchbar); 27 | 28 | // Load the render process 29 | mainWindow.loadURL('file://' + __dirname + '/index.html'); 30 | 31 | // On close destroy the window 32 | mainWindow.on('close', () => { 33 | mainWindow = null; 34 | }) 35 | }; 36 | 37 | // Once app is ready 38 | app.on('ready', ready) 39 | 40 | // If all windows are all closed 41 | app.on('window-all-closed', () => { 42 | // Kill the process if the platform is not "macOS / OSX" 43 | if (process.platform !== 'darwin') { 44 | app.quit(); 45 | } 46 | }) 47 | 48 | app.on('activate', () => { 49 | const windows = BrowserWindow.getAllWindows().length; 50 | if (windows === 0) ready() 51 | }) 52 | -------------------------------------------------------------------------------- /app/touchbar.js: -------------------------------------------------------------------------------- 1 | // Require the 'TouchBar' module from electron 2 | const { app, TouchBar, BrowserWindow } = require('electron'); 3 | 4 | // Require all the types of touchbar inputs (group, picker, slide, button, label etc..) 5 | const { TouchBarButton, TouchBarGroup, TouchBarColorPicker, TouchBarSpacer, TouchBarLabel, TouchBarPopover, TouchBarSegmentedControl, TouchBarScrubber, TouchBarSlider } = TouchBar; 6 | 7 | // Shorthand for spacer 8 | let spacer = (size = 'flexible') => { 9 | return new TouchBarSpacer({size}); 10 | } 11 | 12 | // Generate a new touchbar object 13 | const touchbar = new TouchBar([ 14 | new TouchBarLabel({ 15 | label: app.getName(), 16 | textColor: '#FFF' 17 | }), 18 | spacer(), 19 | new TouchBarGroup({ 20 | items: [new TouchBarButton({ 21 | label: "Restore defaults.", 22 | // You can also define an action with click() method 23 | click() { 24 | let mainWindow = BrowserWindow.getFocusedWindow(); 25 | mainWindow.webContents.send('restore'); 26 | } 27 | }), 28 | new TouchBarPopover({ 29 | label: "Options", 30 | items: new TouchBar([ 31 | spacer(), 32 | new TouchBarSlider({ 33 | label: 'Slider', 34 | value: 36, 35 | maxValue: 50, 36 | minValue: 18, 37 | // on change value 38 | change: (newValue) => { 39 | let mainWindow = BrowserWindow.getFocusedWindow(); 40 | mainWindow.webContents.send('slider', newValue); 41 | } 42 | }), 43 | new TouchBarScrubber({ 44 | // A scrubber object is like the default emoji scrubber on macOS 45 | select: (selectedIndex) => { 46 | // Called when the user taps any item 47 | // `selectedIndex` - The index of the item the user touched 48 | let items = [ 49 | 'first', 50 | 'second', 51 | 'third', 52 | 'fourth' 53 | ]; 54 | 55 | let mainWindow = BrowserWindow.getFocusedWindow(); 56 | mainWindow.webContents.send('pressed', 'You have selected ' + items[selectedIndex] + ' scrubber item'); 57 | }, 58 | overlayStyle: 'outline', 59 | items: [{ 60 | label: '0' 61 | }, { 62 | label: '1' 63 | }, { 64 | label: '2' 65 | }, { 66 | label: '3' 67 | }] 68 | }) 69 | ]) 70 | }), 71 | new TouchBarColorPicker({ 72 | change: (color) => { 73 | let mainWindow = BrowserWindow.getFocusedWindow(); 74 | mainWindow.webContents.send('color', color) 75 | } 76 | })] 77 | }), 78 | spacer(), 79 | new TouchBarSegmentedControl({ 80 | mode: 'single', 81 | segments: [{ 82 | label: 'ON' 83 | }, { 84 | label: 'OFF' 85 | }], 86 | change(index, isSelected) { 87 | let mainWindow = BrowserWindow.getFocusedWindow(); 88 | mainWindow.webContents.send('segment', {index, isSelected}); 89 | } 90 | }), 91 | spacer() 92 | ]); 93 | 94 | module.exports = touchbar; -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to making participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, gender identity and expression, level of experience, 9 | nationality, personal appearance, race, religion, or sexual identity and 10 | orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | * Using welcoming and inclusive language 18 | * Being respectful of differing viewpoints and experiences 19 | * Gracefully accepting constructive criticism 20 | * Focusing on what is best for the community 21 | * Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | * The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | * Trolling, insulting/derogatory comments, and personal or political attacks 28 | * Public or private harassment 29 | * Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | * Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies both within project spaces and in public spaces 49 | when an individual is representing the project or its community. Examples of 50 | representing a project or community include using an official project e-mail 51 | address, posting via an official social media account, or acting as an appointed 52 | representative at an online or offline event. Representation of a project may be 53 | further defined and clarified by project maintainers. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting the project team at fedevitale99@gmail.com. All 59 | complaints will be reviewed and investigated and will result in a response that 60 | is deemed necessary and appropriate to the circumstances. The project team is 61 | obligated to maintain confidentiality with regard to the reporter of an incident. 62 | Further details of specific enforcement policies may be posted separately. 63 | 64 | Project maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ## Attribution 69 | 70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 71 | available at [http://contributor-covenant.org/version/1/4][version] 72 | 73 | [homepage]: http://contributor-covenant.org 74 | [version]: http://contributor-covenant.org/version/1/4/ 75 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "electron", 3 | "version": "1.0.0", 4 | "main": "app/main.js", 5 | "license": "MIT", 6 | "devDependencies": { 7 | "electron": "^1.7.9" 8 | }, 9 | "repository": "https://github.com/Rawnly/electron-touchbar-boilerplate.git", 10 | "author": "Federico Vitale ", 11 | "scripts": { 12 | "start": "electron ." 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /screenshots/touchbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawnly/electron-touchbar-api-sample/33654edc97ab62a20b1155bba2f055ec01c93ec5/screenshots/touchbar.png -------------------------------------------------------------------------------- /screenshots/window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawnly/electron-touchbar-api-sample/33654edc97ab62a20b1155bba2f055ec01c93ec5/screenshots/window.png -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@types/node@^8.0.24": 6 | version "8.10.55" 7 | resolved "https://registry.yarnpkg.com/@types/node/-/node-8.10.55.tgz#3951a64ebce1927b050fd1e420dc6f332be8a1e0" 8 | 9 | ajv@^6.5.5: 10 | version "6.10.2" 11 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.2.tgz#d3cea04d6b017b2894ad69040fec8b623eb4bd52" 12 | dependencies: 13 | fast-deep-equal "^2.0.1" 14 | fast-json-stable-stringify "^2.0.0" 15 | json-schema-traverse "^0.4.1" 16 | uri-js "^4.2.2" 17 | 18 | ansi-regex@^2.0.0: 19 | version "2.1.1" 20 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 21 | 22 | array-find-index@^1.0.1: 23 | version "1.0.2" 24 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 25 | 26 | asn1@~0.2.3: 27 | version "0.2.4" 28 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" 29 | dependencies: 30 | safer-buffer "~2.1.0" 31 | 32 | assert-plus@1.0.0, assert-plus@^1.0.0: 33 | version "1.0.0" 34 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 35 | 36 | asynckit@^0.4.0: 37 | version "0.4.0" 38 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 39 | 40 | aws-sign2@~0.7.0: 41 | version "0.7.0" 42 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 43 | 44 | aws4@^1.8.0: 45 | version "1.8.0" 46 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f" 47 | 48 | balanced-match@^1.0.0: 49 | version "1.0.0" 50 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 51 | 52 | bcrypt-pbkdf@^1.0.0: 53 | version "1.0.2" 54 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" 55 | dependencies: 56 | tweetnacl "^0.14.3" 57 | 58 | brace-expansion@^1.1.7: 59 | version "1.1.11" 60 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 61 | dependencies: 62 | balanced-match "^1.0.0" 63 | concat-map "0.0.1" 64 | 65 | buffer-from@^1.0.0: 66 | version "1.1.1" 67 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 68 | 69 | camelcase-keys@^2.0.0: 70 | version "2.1.0" 71 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 72 | dependencies: 73 | camelcase "^2.0.0" 74 | map-obj "^1.0.0" 75 | 76 | camelcase@^2.0.0: 77 | version "2.1.1" 78 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 79 | 80 | caseless@~0.12.0: 81 | version "0.12.0" 82 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 83 | 84 | code-point-at@^1.0.0: 85 | version "1.1.0" 86 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 87 | 88 | combined-stream@^1.0.6, combined-stream@~1.0.6: 89 | version "1.0.8" 90 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" 91 | dependencies: 92 | delayed-stream "~1.0.0" 93 | 94 | concat-map@0.0.1: 95 | version "0.0.1" 96 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 97 | 98 | concat-stream@1.6.2: 99 | version "1.6.2" 100 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" 101 | dependencies: 102 | buffer-from "^1.0.0" 103 | inherits "^2.0.3" 104 | readable-stream "^2.2.2" 105 | typedarray "^0.0.6" 106 | 107 | core-util-is@1.0.2, core-util-is@~1.0.0: 108 | version "1.0.2" 109 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 110 | 111 | currently-unhandled@^0.4.1: 112 | version "0.4.1" 113 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 114 | dependencies: 115 | array-find-index "^1.0.1" 116 | 117 | dashdash@^1.12.0: 118 | version "1.14.1" 119 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 120 | dependencies: 121 | assert-plus "^1.0.0" 122 | 123 | debug@2.6.9, debug@^2.1.3, debug@^2.2.0: 124 | version "2.6.9" 125 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 126 | dependencies: 127 | ms "2.0.0" 128 | 129 | decamelize@^1.1.2: 130 | version "1.2.0" 131 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 132 | 133 | deep-extend@^0.6.0: 134 | version "0.6.0" 135 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 136 | 137 | delayed-stream@~1.0.0: 138 | version "1.0.0" 139 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 140 | 141 | ecc-jsbn@~0.1.1: 142 | version "0.1.2" 143 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" 144 | dependencies: 145 | jsbn "~0.1.0" 146 | safer-buffer "^2.1.0" 147 | 148 | electron-download@^3.0.1: 149 | version "3.3.0" 150 | resolved "https://registry.yarnpkg.com/electron-download/-/electron-download-3.3.0.tgz#2cfd54d6966c019c4d49ad65fbe65cc9cdef68c8" 151 | dependencies: 152 | debug "^2.2.0" 153 | fs-extra "^0.30.0" 154 | home-path "^1.0.1" 155 | minimist "^1.2.0" 156 | nugget "^2.0.0" 157 | path-exists "^2.1.0" 158 | rc "^1.1.2" 159 | semver "^5.3.0" 160 | sumchecker "^1.2.0" 161 | 162 | electron@^1.7.9: 163 | version "1.8.8" 164 | resolved "https://registry.yarnpkg.com/electron/-/electron-1.8.8.tgz#a90cddb075291f49576993e6f5c8bb4439301cae" 165 | dependencies: 166 | "@types/node" "^8.0.24" 167 | electron-download "^3.0.1" 168 | extract-zip "^1.0.3" 169 | 170 | error-ex@^1.2.0: 171 | version "1.3.2" 172 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 173 | dependencies: 174 | is-arrayish "^0.2.1" 175 | 176 | es6-promise@^4.0.5: 177 | version "4.2.8" 178 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a" 179 | 180 | extend@~3.0.2: 181 | version "3.0.2" 182 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 183 | 184 | extract-zip@^1.0.3: 185 | version "1.6.7" 186 | resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-1.6.7.tgz#a840b4b8af6403264c8db57f4f1a74333ef81fe9" 187 | dependencies: 188 | concat-stream "1.6.2" 189 | debug "2.6.9" 190 | mkdirp "0.5.1" 191 | yauzl "2.4.1" 192 | 193 | extsprintf@1.3.0: 194 | version "1.3.0" 195 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 196 | 197 | extsprintf@^1.2.0: 198 | version "1.4.0" 199 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 200 | 201 | fast-deep-equal@^2.0.1: 202 | version "2.0.1" 203 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" 204 | 205 | fast-json-stable-stringify@^2.0.0: 206 | version "2.0.0" 207 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 208 | 209 | fd-slicer@~1.0.1: 210 | version "1.0.1" 211 | resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.0.1.tgz#8b5bcbd9ec327c5041bf9ab023fd6750f1177e65" 212 | dependencies: 213 | pend "~1.2.0" 214 | 215 | find-up@^1.0.0: 216 | version "1.1.2" 217 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 218 | dependencies: 219 | path-exists "^2.0.0" 220 | pinkie-promise "^2.0.0" 221 | 222 | forever-agent@~0.6.1: 223 | version "0.6.1" 224 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 225 | 226 | form-data@~2.3.2: 227 | version "2.3.3" 228 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" 229 | dependencies: 230 | asynckit "^0.4.0" 231 | combined-stream "^1.0.6" 232 | mime-types "^2.1.12" 233 | 234 | fs-extra@^0.30.0: 235 | version "0.30.0" 236 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.30.0.tgz#f233ffcc08d4da7d432daa449776989db1df93f0" 237 | dependencies: 238 | graceful-fs "^4.1.2" 239 | jsonfile "^2.1.0" 240 | klaw "^1.0.0" 241 | path-is-absolute "^1.0.0" 242 | rimraf "^2.2.8" 243 | 244 | fs.realpath@^1.0.0: 245 | version "1.0.0" 246 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 247 | 248 | get-stdin@^4.0.1: 249 | version "4.0.1" 250 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 251 | 252 | getpass@^0.1.1: 253 | version "0.1.7" 254 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 255 | dependencies: 256 | assert-plus "^1.0.0" 257 | 258 | glob@^7.1.3: 259 | version "7.1.5" 260 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.5.tgz#6714c69bee20f3c3e64c4dd905553e532b40cdc0" 261 | dependencies: 262 | fs.realpath "^1.0.0" 263 | inflight "^1.0.4" 264 | inherits "2" 265 | minimatch "^3.0.4" 266 | once "^1.3.0" 267 | path-is-absolute "^1.0.0" 268 | 269 | graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9: 270 | version "4.2.2" 271 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.2.tgz#6f0952605d0140c1cfdb138ed005775b92d67b02" 272 | 273 | har-schema@^2.0.0: 274 | version "2.0.0" 275 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 276 | 277 | har-validator@~5.1.0: 278 | version "5.1.3" 279 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080" 280 | dependencies: 281 | ajv "^6.5.5" 282 | har-schema "^2.0.0" 283 | 284 | home-path@^1.0.1: 285 | version "1.0.7" 286 | resolved "https://registry.yarnpkg.com/home-path/-/home-path-1.0.7.tgz#cf77d7339ff3ddc3347a23c52612b1f5e7e56313" 287 | 288 | hosted-git-info@^2.1.4: 289 | version "2.8.5" 290 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.5.tgz#759cfcf2c4d156ade59b0b2dfabddc42a6b9c70c" 291 | 292 | http-signature@~1.2.0: 293 | version "1.2.0" 294 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 295 | dependencies: 296 | assert-plus "^1.0.0" 297 | jsprim "^1.2.2" 298 | sshpk "^1.7.0" 299 | 300 | indent-string@^2.1.0: 301 | version "2.1.0" 302 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 303 | dependencies: 304 | repeating "^2.0.0" 305 | 306 | inflight@^1.0.4: 307 | version "1.0.6" 308 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 309 | dependencies: 310 | once "^1.3.0" 311 | wrappy "1" 312 | 313 | inherits@2, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3: 314 | version "2.0.4" 315 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 316 | 317 | ini@~1.3.0: 318 | version "1.3.5" 319 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 320 | 321 | is-arrayish@^0.2.1: 322 | version "0.2.1" 323 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 324 | 325 | is-finite@^1.0.0: 326 | version "1.0.2" 327 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 328 | dependencies: 329 | number-is-nan "^1.0.0" 330 | 331 | is-fullwidth-code-point@^1.0.0: 332 | version "1.0.0" 333 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 334 | dependencies: 335 | number-is-nan "^1.0.0" 336 | 337 | is-typedarray@~1.0.0: 338 | version "1.0.0" 339 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 340 | 341 | is-utf8@^0.2.0: 342 | version "0.2.1" 343 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 344 | 345 | isarray@0.0.1: 346 | version "0.0.1" 347 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 348 | 349 | isarray@~1.0.0: 350 | version "1.0.0" 351 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 352 | 353 | isstream@~0.1.2: 354 | version "0.1.2" 355 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 356 | 357 | jsbn@~0.1.0: 358 | version "0.1.1" 359 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 360 | 361 | json-schema-traverse@^0.4.1: 362 | version "0.4.1" 363 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 364 | 365 | json-schema@0.2.3: 366 | version "0.2.3" 367 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 368 | 369 | json-stringify-safe@~5.0.1: 370 | version "5.0.1" 371 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 372 | 373 | jsonfile@^2.1.0: 374 | version "2.4.0" 375 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" 376 | optionalDependencies: 377 | graceful-fs "^4.1.6" 378 | 379 | jsprim@^1.2.2: 380 | version "1.4.1" 381 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 382 | dependencies: 383 | assert-plus "1.0.0" 384 | extsprintf "1.3.0" 385 | json-schema "0.2.3" 386 | verror "1.10.0" 387 | 388 | klaw@^1.0.0: 389 | version "1.3.1" 390 | resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" 391 | optionalDependencies: 392 | graceful-fs "^4.1.9" 393 | 394 | load-json-file@^1.0.0: 395 | version "1.1.0" 396 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 397 | dependencies: 398 | graceful-fs "^4.1.2" 399 | parse-json "^2.2.0" 400 | pify "^2.0.0" 401 | pinkie-promise "^2.0.0" 402 | strip-bom "^2.0.0" 403 | 404 | loud-rejection@^1.0.0: 405 | version "1.6.0" 406 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 407 | dependencies: 408 | currently-unhandled "^0.4.1" 409 | signal-exit "^3.0.0" 410 | 411 | map-obj@^1.0.0, map-obj@^1.0.1: 412 | version "1.0.1" 413 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 414 | 415 | meow@^3.1.0: 416 | version "3.7.0" 417 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 418 | dependencies: 419 | camelcase-keys "^2.0.0" 420 | decamelize "^1.1.2" 421 | loud-rejection "^1.0.0" 422 | map-obj "^1.0.1" 423 | minimist "^1.1.3" 424 | normalize-package-data "^2.3.4" 425 | object-assign "^4.0.1" 426 | read-pkg-up "^1.0.1" 427 | redent "^1.0.0" 428 | trim-newlines "^1.0.0" 429 | 430 | mime-db@1.40.0: 431 | version "1.40.0" 432 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.40.0.tgz#a65057e998db090f732a68f6c276d387d4126c32" 433 | 434 | mime-types@^2.1.12, mime-types@~2.1.19: 435 | version "2.1.24" 436 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.24.tgz#b6f8d0b3e951efb77dedeca194cff6d16f676f81" 437 | dependencies: 438 | mime-db "1.40.0" 439 | 440 | minimatch@^3.0.4: 441 | version "3.0.4" 442 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 443 | dependencies: 444 | brace-expansion "^1.1.7" 445 | 446 | minimist@0.0.8: 447 | version "0.0.8" 448 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 449 | 450 | minimist@^1.1.0, minimist@^1.1.3, minimist@^1.2.0: 451 | version "1.2.0" 452 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 453 | 454 | mkdirp@0.5.1: 455 | version "0.5.1" 456 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 457 | dependencies: 458 | minimist "0.0.8" 459 | 460 | ms@2.0.0: 461 | version "2.0.0" 462 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 463 | 464 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 465 | version "2.5.0" 466 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 467 | dependencies: 468 | hosted-git-info "^2.1.4" 469 | resolve "^1.10.0" 470 | semver "2 || 3 || 4 || 5" 471 | validate-npm-package-license "^3.0.1" 472 | 473 | nugget@^2.0.0: 474 | version "2.0.1" 475 | resolved "https://registry.yarnpkg.com/nugget/-/nugget-2.0.1.tgz#201095a487e1ad36081b3432fa3cada4f8d071b0" 476 | dependencies: 477 | debug "^2.1.3" 478 | minimist "^1.1.0" 479 | pretty-bytes "^1.0.2" 480 | progress-stream "^1.1.0" 481 | request "^2.45.0" 482 | single-line-log "^1.1.2" 483 | throttleit "0.0.2" 484 | 485 | number-is-nan@^1.0.0: 486 | version "1.0.1" 487 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 488 | 489 | oauth-sign@~0.9.0: 490 | version "0.9.0" 491 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" 492 | 493 | object-assign@^4.0.1: 494 | version "4.1.1" 495 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 496 | 497 | object-keys@~0.4.0: 498 | version "0.4.0" 499 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-0.4.0.tgz#28a6aae7428dd2c3a92f3d95f21335dd204e0336" 500 | 501 | once@^1.3.0: 502 | version "1.4.0" 503 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 504 | dependencies: 505 | wrappy "1" 506 | 507 | parse-json@^2.2.0: 508 | version "2.2.0" 509 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 510 | dependencies: 511 | error-ex "^1.2.0" 512 | 513 | path-exists@^2.0.0, path-exists@^2.1.0: 514 | version "2.1.0" 515 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 516 | dependencies: 517 | pinkie-promise "^2.0.0" 518 | 519 | path-is-absolute@^1.0.0: 520 | version "1.0.1" 521 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 522 | 523 | path-parse@^1.0.6: 524 | version "1.0.6" 525 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 526 | 527 | path-type@^1.0.0: 528 | version "1.1.0" 529 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 530 | dependencies: 531 | graceful-fs "^4.1.2" 532 | pify "^2.0.0" 533 | pinkie-promise "^2.0.0" 534 | 535 | pend@~1.2.0: 536 | version "1.2.0" 537 | resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" 538 | 539 | performance-now@^2.1.0: 540 | version "2.1.0" 541 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 542 | 543 | pify@^2.0.0: 544 | version "2.3.0" 545 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 546 | 547 | pinkie-promise@^2.0.0: 548 | version "2.0.1" 549 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 550 | dependencies: 551 | pinkie "^2.0.0" 552 | 553 | pinkie@^2.0.0: 554 | version "2.0.4" 555 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 556 | 557 | pretty-bytes@^1.0.2: 558 | version "1.0.4" 559 | resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-1.0.4.tgz#0a22e8210609ad35542f8c8d5d2159aff0751c84" 560 | dependencies: 561 | get-stdin "^4.0.1" 562 | meow "^3.1.0" 563 | 564 | process-nextick-args@~2.0.0: 565 | version "2.0.1" 566 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" 567 | 568 | progress-stream@^1.1.0: 569 | version "1.2.0" 570 | resolved "https://registry.yarnpkg.com/progress-stream/-/progress-stream-1.2.0.tgz#2cd3cfea33ba3a89c9c121ec3347abe9ab125f77" 571 | dependencies: 572 | speedometer "~0.1.2" 573 | through2 "~0.2.3" 574 | 575 | psl@^1.1.24: 576 | version "1.4.0" 577 | resolved "https://registry.yarnpkg.com/psl/-/psl-1.4.0.tgz#5dd26156cdb69fa1fdb8ab1991667d3f80ced7c2" 578 | 579 | punycode@^1.4.1: 580 | version "1.4.1" 581 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 582 | 583 | punycode@^2.1.0: 584 | version "2.1.1" 585 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 586 | 587 | qs@~6.5.2: 588 | version "6.5.2" 589 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" 590 | 591 | rc@^1.1.2: 592 | version "1.2.8" 593 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 594 | dependencies: 595 | deep-extend "^0.6.0" 596 | ini "~1.3.0" 597 | minimist "^1.2.0" 598 | strip-json-comments "~2.0.1" 599 | 600 | read-pkg-up@^1.0.1: 601 | version "1.0.1" 602 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 603 | dependencies: 604 | find-up "^1.0.0" 605 | read-pkg "^1.0.0" 606 | 607 | read-pkg@^1.0.0: 608 | version "1.1.0" 609 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 610 | dependencies: 611 | load-json-file "^1.0.0" 612 | normalize-package-data "^2.3.2" 613 | path-type "^1.0.0" 614 | 615 | readable-stream@^2.2.2: 616 | version "2.3.6" 617 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 618 | dependencies: 619 | core-util-is "~1.0.0" 620 | inherits "~2.0.3" 621 | isarray "~1.0.0" 622 | process-nextick-args "~2.0.0" 623 | safe-buffer "~5.1.1" 624 | string_decoder "~1.1.1" 625 | util-deprecate "~1.0.1" 626 | 627 | readable-stream@~1.1.9: 628 | version "1.1.14" 629 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" 630 | dependencies: 631 | core-util-is "~1.0.0" 632 | inherits "~2.0.1" 633 | isarray "0.0.1" 634 | string_decoder "~0.10.x" 635 | 636 | redent@^1.0.0: 637 | version "1.0.0" 638 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 639 | dependencies: 640 | indent-string "^2.1.0" 641 | strip-indent "^1.0.1" 642 | 643 | repeating@^2.0.0: 644 | version "2.0.1" 645 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 646 | dependencies: 647 | is-finite "^1.0.0" 648 | 649 | request@^2.45.0: 650 | version "2.88.0" 651 | resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef" 652 | dependencies: 653 | aws-sign2 "~0.7.0" 654 | aws4 "^1.8.0" 655 | caseless "~0.12.0" 656 | combined-stream "~1.0.6" 657 | extend "~3.0.2" 658 | forever-agent "~0.6.1" 659 | form-data "~2.3.2" 660 | har-validator "~5.1.0" 661 | http-signature "~1.2.0" 662 | is-typedarray "~1.0.0" 663 | isstream "~0.1.2" 664 | json-stringify-safe "~5.0.1" 665 | mime-types "~2.1.19" 666 | oauth-sign "~0.9.0" 667 | performance-now "^2.1.0" 668 | qs "~6.5.2" 669 | safe-buffer "^5.1.2" 670 | tough-cookie "~2.4.3" 671 | tunnel-agent "^0.6.0" 672 | uuid "^3.3.2" 673 | 674 | resolve@^1.10.0: 675 | version "1.12.0" 676 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.12.0.tgz#3fc644a35c84a48554609ff26ec52b66fa577df6" 677 | dependencies: 678 | path-parse "^1.0.6" 679 | 680 | rimraf@^2.2.8: 681 | version "2.7.1" 682 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" 683 | dependencies: 684 | glob "^7.1.3" 685 | 686 | safe-buffer@^5.0.1, safe-buffer@^5.1.2: 687 | version "5.2.0" 688 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519" 689 | 690 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 691 | version "5.1.2" 692 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 693 | 694 | safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: 695 | version "2.1.2" 696 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 697 | 698 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 699 | version "5.7.1" 700 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 701 | 702 | signal-exit@^3.0.0: 703 | version "3.0.2" 704 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 705 | 706 | single-line-log@^1.1.2: 707 | version "1.1.2" 708 | resolved "https://registry.yarnpkg.com/single-line-log/-/single-line-log-1.1.2.tgz#c2f83f273a3e1a16edb0995661da0ed5ef033364" 709 | dependencies: 710 | string-width "^1.0.1" 711 | 712 | spdx-correct@^3.0.0: 713 | version "3.1.0" 714 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4" 715 | dependencies: 716 | spdx-expression-parse "^3.0.0" 717 | spdx-license-ids "^3.0.0" 718 | 719 | spdx-exceptions@^2.1.0: 720 | version "2.2.0" 721 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977" 722 | 723 | spdx-expression-parse@^3.0.0: 724 | version "3.0.0" 725 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 726 | dependencies: 727 | spdx-exceptions "^2.1.0" 728 | spdx-license-ids "^3.0.0" 729 | 730 | spdx-license-ids@^3.0.0: 731 | version "3.0.5" 732 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz#3694b5804567a458d3c8045842a6358632f62654" 733 | 734 | speedometer@~0.1.2: 735 | version "0.1.4" 736 | resolved "https://registry.yarnpkg.com/speedometer/-/speedometer-0.1.4.tgz#9876dbd2a169d3115402d48e6ea6329c8816a50d" 737 | 738 | sshpk@^1.7.0: 739 | version "1.16.1" 740 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" 741 | dependencies: 742 | asn1 "~0.2.3" 743 | assert-plus "^1.0.0" 744 | bcrypt-pbkdf "^1.0.0" 745 | dashdash "^1.12.0" 746 | ecc-jsbn "~0.1.1" 747 | getpass "^0.1.1" 748 | jsbn "~0.1.0" 749 | safer-buffer "^2.0.2" 750 | tweetnacl "~0.14.0" 751 | 752 | string-width@^1.0.1: 753 | version "1.0.2" 754 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 755 | dependencies: 756 | code-point-at "^1.0.0" 757 | is-fullwidth-code-point "^1.0.0" 758 | strip-ansi "^3.0.0" 759 | 760 | string_decoder@~0.10.x: 761 | version "0.10.31" 762 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 763 | 764 | string_decoder@~1.1.1: 765 | version "1.1.1" 766 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 767 | dependencies: 768 | safe-buffer "~5.1.0" 769 | 770 | strip-ansi@^3.0.0: 771 | version "3.0.1" 772 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 773 | dependencies: 774 | ansi-regex "^2.0.0" 775 | 776 | strip-bom@^2.0.0: 777 | version "2.0.0" 778 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 779 | dependencies: 780 | is-utf8 "^0.2.0" 781 | 782 | strip-indent@^1.0.1: 783 | version "1.0.1" 784 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 785 | dependencies: 786 | get-stdin "^4.0.1" 787 | 788 | strip-json-comments@~2.0.1: 789 | version "2.0.1" 790 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 791 | 792 | sumchecker@^1.2.0: 793 | version "1.3.1" 794 | resolved "https://registry.yarnpkg.com/sumchecker/-/sumchecker-1.3.1.tgz#79bb3b4456dd04f18ebdbc0d703a1d1daec5105d" 795 | dependencies: 796 | debug "^2.2.0" 797 | es6-promise "^4.0.5" 798 | 799 | throttleit@0.0.2: 800 | version "0.0.2" 801 | resolved "https://registry.yarnpkg.com/throttleit/-/throttleit-0.0.2.tgz#cfedf88e60c00dd9697b61fdd2a8343a9b680eaf" 802 | 803 | through2@~0.2.3: 804 | version "0.2.3" 805 | resolved "https://registry.yarnpkg.com/through2/-/through2-0.2.3.tgz#eb3284da4ea311b6cc8ace3653748a52abf25a3f" 806 | dependencies: 807 | readable-stream "~1.1.9" 808 | xtend "~2.1.1" 809 | 810 | tough-cookie@~2.4.3: 811 | version "2.4.3" 812 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781" 813 | dependencies: 814 | psl "^1.1.24" 815 | punycode "^1.4.1" 816 | 817 | trim-newlines@^1.0.0: 818 | version "1.0.0" 819 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 820 | 821 | tunnel-agent@^0.6.0: 822 | version "0.6.0" 823 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 824 | dependencies: 825 | safe-buffer "^5.0.1" 826 | 827 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 828 | version "0.14.5" 829 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 830 | 831 | typedarray@^0.0.6: 832 | version "0.0.6" 833 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 834 | 835 | uri-js@^4.2.2: 836 | version "4.2.2" 837 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" 838 | dependencies: 839 | punycode "^2.1.0" 840 | 841 | util-deprecate@~1.0.1: 842 | version "1.0.2" 843 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 844 | 845 | uuid@^3.3.2: 846 | version "3.3.3" 847 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.3.tgz#4568f0216e78760ee1dbf3a4d2cf53e224112866" 848 | 849 | validate-npm-package-license@^3.0.1: 850 | version "3.0.4" 851 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 852 | dependencies: 853 | spdx-correct "^3.0.0" 854 | spdx-expression-parse "^3.0.0" 855 | 856 | verror@1.10.0: 857 | version "1.10.0" 858 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 859 | dependencies: 860 | assert-plus "^1.0.0" 861 | core-util-is "1.0.2" 862 | extsprintf "^1.2.0" 863 | 864 | wrappy@1: 865 | version "1.0.2" 866 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 867 | 868 | xtend@~2.1.1: 869 | version "2.1.2" 870 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-2.1.2.tgz#6efecc2a4dad8e6962c4901b337ce7ba87b5d28b" 871 | dependencies: 872 | object-keys "~0.4.0" 873 | 874 | yauzl@2.4.1: 875 | version "2.4.1" 876 | resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.4.1.tgz#9528f442dab1b2284e58b4379bb194e22e0c4005" 877 | dependencies: 878 | fd-slicer "~1.0.1" 879 | --------------------------------------------------------------------------------