├── .babelrc ├── .gitignore ├── .travis.yml ├── README.md ├── codewar.md ├── homeworks ├── week1 │ ├── README.md │ ├── hw1.js │ ├── hw2.js │ ├── hw3.js │ ├── hw4.js │ ├── hw5.js │ └── hw6.md ├── week10 │ ├── README.md │ ├── hw1 │ │ └── index.html │ ├── hw2 │ │ └── index.html │ ├── hw3 │ │ └── index.html │ └── hw4.md ├── week11 │ ├── README.md │ ├── hw1 │ │ └── index.html │ ├── hw2 │ │ └── index.html │ └── hw3.md ├── week12 │ ├── README.md │ ├── blog.png │ ├── hw1 │ │ └── index.html │ ├── hw2 │ │ └── index.html │ ├── hw3 │ │ └── index.html │ └── hw4.md ├── week13 │ ├── README.md │ ├── hw1 │ │ └── index.html │ └── hw2.md ├── week14 │ ├── README.md │ ├── hw1 │ │ └── index.html │ └── hw2.md ├── week15 │ ├── README.md │ └── hw1 │ │ └── index.html ├── week2 │ ├── README.md │ ├── hw1.js │ ├── hw1.test.js │ ├── hw2.js │ ├── hw2.test.js │ ├── hw3.js │ ├── hw3.test.js │ ├── hw4.js │ ├── hw4.test.js │ ├── hw5.js │ ├── hw5.test.js │ └── hw6.md ├── week3 │ ├── README.md │ ├── example.png │ ├── example2.png │ ├── hw1 │ │ └── index.html │ ├── hw2 │ │ └── index.html │ └── hw6.md ├── week4 │ ├── README.md │ ├── calculator.png │ ├── form.png │ ├── hw1 │ │ └── index.html │ ├── hw2 │ │ └── index.html │ ├── hw3 │ │ └── index.html │ ├── hw4 │ │ └── index.html │ └── twitch.png ├── week5 │ ├── README.md │ ├── board.png │ ├── board2.png │ ├── hw1.md │ ├── hw2 │ │ └── index.html │ └── hw4.md ├── week6 │ ├── README.md │ ├── hw1 │ │ └── index.html │ ├── hw2 │ │ └── index.html │ ├── hw3 │ │ └── index.html │ ├── hw4 │ │ └── index.html │ └── hw5.md ├── week7 │ ├── README.md │ ├── hw1 │ │ └── index.html │ ├── hw2 │ │ └── index.html │ ├── hw3 │ │ └── index.html │ ├── hw4.md │ └── todo.png ├── week8 │ ├── README.md │ ├── hw3 │ │ └── index.html │ └── hw4.md └── week9 │ ├── README.md │ ├── hw1 │ └── index.html │ ├── hw2 │ └── index.html │ └── hw5.md ├── package.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"] 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "node" 4 | cache: yarn 5 | before_script: 6 | - wget $TESTCASE_URL 7 | notifications: 8 | email: false 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 程式導師實驗計畫第二期 2 | 3 | ## 這是什麼 4 | 5 | [程式導師實驗計畫第二期](https://medium.com/hulis-blog/mentor-program-s2-f876c4e13d3b)是一個為期四個月的計畫,要求學生全程參與(每週至少付出四十小時),希望能在結業時培養出合格的(意思就是找得到工作)的工程師。 6 | 7 | ## 課程目標 8 | 9 | ### 綜合能力 10 | 1. 具有找資料的能力,能夠知道如何找到相關資訊 11 | 2. 具有分析問題的能力,能夠快速定位問題 12 | 3. 知道如何解決問題,包括但不限於拆解問題、簡化問題、轉化問題 13 | 4. 解決問題後能夠重新歸納並整理 14 | 15 | ### 工具能力 16 | 17 | 1. 後端:知道後端原理,知道什麼是資料庫、server,可以寫出簡單的網站並且自己部署 18 | 2. 前端:知道前端原理,HTML、CSS、JavaScript,知道 Ajax 以及如何與後端串接 19 | 3. 資安:基本資安概念,SQL Injection、XSS、CSRF 20 | 21 | ## 課程規則 22 | 23 | 1.根據課程規則,必須要報告每日進度,其實主要不是給我看的,是給你們自己看的,可以順便整理一下自己昨天學過哪些東西以及今天預計要學哪些東西,詳細規則請參考:[程式導師實驗計畫第二期每日任務](https://github.com/Lidemy/mentor-daily-report)。 24 | 25 | 2.有任何意見回饋或是課程相關問題,都可以直接私訊導師(@huli)討論,但比較建議的方法是去[ Lidemy 討論區](https://github.com/Lidemy/forum)開一個 Issue 來問。 26 | 27 | 3.請在 GitHub 開一個 repository,把 Issue 頁面當作 blog 紀錄心得,順便練習 Markdown 語法,可參考[簡單範例](https://github.com/Lidemy/blog-example)或是[第一期學生的心得記錄](https://github.com/Lidemy/mentor-program-xu3cl40122/issues)。 28 | 29 | 30 | ## 課程進行方式 31 | 32 | 每週一、四晚上九點進行直播教學,其餘時間可利用 slack 群組隨時發問。每次教學時間約為一小時至兩小時。 33 | 34 | 週一上半場會講解上週的作業以及幫上週做個總結,下半場會把這週的課程內容大概講過一遍,而學生利用週二以及週三自學並且嘗試練習題目。 35 | 36 | 週四會總結大家這兩天以來的問題一併回答,並且重新把課程內容再講過一遍(或是補完週一上不完的)。 37 | 38 | ## 課程大綱 39 | 40 | 從 2018/09/03 至 2019/01/14 ,為期四個月的課程,一共約十九週。每週的開始為禮拜一,結束為禮拜日。 41 | 42 | ### 第一週(09/03 ~ 09/09):程式基礎(上) 43 | 44 | 大致介紹整個計畫以及帶學生看過一次課程大綱,接著說明整體架構,介紹各種不同工程師職位所負責的工作內容並著重在網頁工程師的介紹。 45 | 46 | Mindset 建立: 47 | 48 | 1. 不要害怕問問題,每個問題都值得被提出來,你的問題可能也是其他人的問題 49 | 2. 問問題前應該要自己查詢資料(有些很難查的直接問也可以) 50 | 3. 你有老師讓你盡量問,反正問就對了,有錯的話我會提醒你 51 | 4. 重點是「目的」,而不是「手段」,持續問為什麼為什麼為什麼為什麼 52 | 53 | 建置基礎環境,例如說 command line tool、Git 以及 Node.js。 54 | 55 | 複習程式基礎,像是變數、陣列、迴圈、判斷式以及函式(以 ES5 為例)。 56 | 57 | 學會如何交作業。 58 | 59 | [HW1 作業連結](/homeworks/week1) 60 | 61 | #### 目標: 62 | 63 | - [ ] 知道程式如何執行 64 | - [ ] 了解寫程式的本質只是一行行的指令 65 | - [ ] 了解前端與後端的區別 66 | - [ ] 能說出從發出一個 request 到接收 response 中間發生的事 67 | - [ ] 了解不同載具的差異(Desktop、Mobile、Web) 68 | - [ ] 了解基本的 command line 指令 69 | - [ ] 知道 Git 在做什麼 70 | - [ ] 知道 add、commit、push、pull 等基本 Git 指令 71 | 72 | ### 第二週(09/10 ~ 09/16):程式基礎(下) 73 | 74 | 根據上一期的經驗,在一開始的程式基礎培養一週是不夠的,所以這一期特地多留了一週來加強程式基礎。在這一週裡面我們會延伸上一週的內容,並且多講一些有關於 ES6 的語法。 75 | 76 | 介紹常用內建函式如 replace、indexOf、split、map、filter、join、parseInt 以及 Math 等等。 77 | 78 | 也會教大家寫簡單的 unit test,並且自己寫 test case 檢驗自己的函式。 79 | 80 | [HW2 作業連結](/homeworks/week2) 81 | 82 | #### 目標: 83 | 84 | - [ ] 了解常用內建函式 85 | - [ ] 熟悉程式語法並解決基礎問題 86 | - [ ] 知道什麼是 unit test 87 | - [ ] 知道如何寫測試 88 | - [ ] 知道如何測試 function 89 | 90 | ### 第三週(09/17 ~ 09/23):前端基礎(上) 91 | 92 | 本週將會正式進入到前端課程的領域,開始用 HTML 與 CSS 打造出基本的網頁,並且利用 media query 實現簡單的 RWD(Responsive Web Design)。 93 | 94 | HTML 的部分就簡單帶過幾個常見的 tag,帶到 head 的一些屬性跟設定,也會講到跟 SEO 有關的一些 tag(title, description, json ld...)。 95 | 96 | 主要會著重在 CSS 的部分,並且讓大家多多練習。 97 | 98 | 也可以先看一下這兩篇文章(很多地方你會看不懂,但沒關係)先培養一下對前端的感覺,等幾週過後當我們學得越來越多,再看一次會有完全不同的感受:[零基礎的小明要如何成為前端工程師?](https://medium.com/hulis-blog/frontend-engineer-guide-297821512f4e)、[跟著小明一起搞懂技術名詞:MVC、SPA 與 SSR](https://medium.com/@hulitw/introduction-mvc-spa-and-ssr-545c941669e9) 99 | 100 | [HW3 作業連結](/homeworks/week3) 101 | 102 | #### 目標: 103 | 104 | - [ ] 知道 HTML 是什麼 105 | - [ ] 知道 CSS 是什麼 106 | - [ ] 知道 inline、block 跟 inline-block 的區別 107 | - [ ] 知道什麼是 box model 108 | - [ ] 知道 position 的所有屬性及其差別 109 | - [ ] 知道 :hover, :before, :after 110 | - [ ] 知道 :nth-child 111 | - [ ] 熟悉 CSS selector 112 | 113 | ### 第四週(09/24 ~ 09/30):前端基礎(中) 114 | 115 | 這一週將會進入到 JavaScript,讓網頁變得有互動性,並結合 `
` 做表單驗證,或是讓大家寫出簡單的網頁應用程式。 116 | 117 | 除此之外,也會在這週講 API 串接,讓大家對什麼是 API 有基本的概念,並且實作 Ajax。 118 | 119 | 相關學習資源: 120 | 121 | 1. [輕鬆理解 Ajax 與跨來源請求](https://blog.techbridge.cc/2017/05/20/api-ajax-cors-and-jsonp/) 122 | 2. [DOM 的事件傳遞機制:捕獲與冒泡](https://blog.techbridge.cc/2017/07/15/javascript-event-propagation/) 123 | 3. [RESTful API Design by TritonHo](https://github.com/TritonHo/slides/blob/master/Taipei%202016-04%20talk/RESTful%20API%20Design-tw-2.1.pdf) 124 | 125 | 126 | [HW4 作業連結](/homeworks/week4) 127 | 128 | #### 目標: 129 | 130 | - [ ] 知道 JavaScript 是什麼 131 | - [ ] 知道 JavaScript 跟 Java 的關係 132 | - [ ] 知道 DOM 是什麼 133 | - [ ] 知道如何用 JavaScript 操控 DOM 物件 134 | - [ ] 知道什麼是 API 135 | - [ ] 知道什麼是 Ajax 136 | - [ ] 知道如何存取跨網域的資源(CORS) 137 | - [ ] 知道什麼是 JSON 138 | - [ ] 知道什麼是 JSONP 及其原理 139 | 140 | ### 第五週(10/01 ~ 10/07):後端基礎(上) 141 | 142 | 前端基礎打得差不多以後,就要進入後端的課程,這次課程會以 PHP 為主要的語言,Node.js 為輔助。 143 | 144 | 這週的課程會講解 PHP 基本觀念、語法,並且教大家安裝設定 MySQL,寫出簡單的 CRUD 應用。 145 | 146 | 相關學習資源: 147 | 148 | 1. [第一正規化(First Normal Form, 1NF)](https://matthung0807.blogspot.com/2017/11/first-normal-form-1nf.html) 149 | 2. 150 | 151 | [HW5 作業連結](/homeworks/week5) 152 | 153 | #### 目標: 154 | 155 | - [ ] 知道 PHP 是什麼 156 | - [ ] 知道前端與後端的差別 157 | - [ ] 知道什麼是資料庫 158 | - [ ] 了解基本 SQL 語法 159 | - [ ] 寫出基本 CRUD 應用 160 | 161 | ### 第六週(10/08 ~ 10/14):後端基礎(中) 162 | 163 | 這週會延續之前的章節,打造出一個比較完整的產品,一步步把後端變得更複雜一點,並且加強會員系統、權限管理等等。 164 | 165 | 延伸閱讀:[讓我們來談談 CSRF](https://blog.techbridge.cc/2017/02/25/csrf-introduction/) 166 | 167 | 168 | [HW6 作業連結](/homeworks/week6) 169 | 170 | #### 目標: 171 | 172 | - [ ] 知道什麼是 Session 173 | - [ ] 知道什麼是 Cookie 174 | - [ ] 知道 Session 與 Cookie 的差別 175 | - [ ] 知道雜湊演算法原理以及應用 176 | - [ ] 知道什麼是 SQL Injection 以及如何防範 177 | - [ ] 知道什麼是 XSS 以及如何防範 178 | - [ ] 知道什麼是 CSRF 以及如何防範 179 | 180 | 181 | ### 第七週(10/15 ~ 10/21):前端基礎(下) 182 | 183 | 首先帶大家串接之前自己寫出來的 API,把前端介面用 Ajax 改寫,使網頁互動性變得更高。讓大家熟悉 jQuery,把現有應用用 jQuery 改寫一次。 184 | 185 | 版面的部分則利用 Bootstrap 搭配 Bootswatch 讓介面變得美觀。利用網格系統實作 RWD。 186 | 187 | 也會講到 Promise 與 Fetch,帶大家認識比較新的 Web API。 188 | 189 | [HW7 作業連結](/homeworks/week7) 190 | 191 | #### 目標: 192 | 193 | - [ ] 知道 jQuery 是做什麼的 194 | - [ ] 知道 jQuery 與 vanilla js 的差別 195 | - [ ] 知道如何與自己寫的 API 串接 196 | - [ ] 知道什麼是 Bootstrap 197 | - [ ] 知道 Bootstrap 原理及如何應用 198 | - [ ] 知道什麼是網格系統以及如何應用在 RWD 199 | - [ ] 知道什麼是 Promise 200 | - [ ] 知道如何使用 Fetch 201 | 202 | ### 第八週(10/22 ~ 10/28):後端基礎(下) 203 | 204 | 有了自己的前後端程式之後,就可以開始來部署了。這週的重點會放在帶大家直接去買主機(AWS、Digital Ocean、Linode),並且了解如何連上主機。 205 | 206 | 也會讓大家購買自己的網域,理解如何將網域以及主機串連起來,讓大家可以連線到你的網站。 207 | 208 | 在這個章節也會讓大家理解後端基本架構(NAT、Load balancer、DB replication 等等) 209 | 210 | 最後也會補齊跟資料庫的一些知識,像是 ACID、Transaction、View 以及 Stored procedure。 211 | 212 | 這邊有一份參考某間公司面試考題的[綜合能力測驗](http://mentor-program.co/huli/game/index.php),還滿有趣的,主要是測驗前八週的基礎,如果你前八週都 ok 的話,相信你一定能夠破關! 213 | 214 | 這週也要特別感謝 [gandi](https://www.gandi.net/) 連續兩期全額贊助了學生購買網域的費用,在這邊特此感謝。 215 | 216 | 相關學習資源: 217 | 218 | 1. [MySQL 超新手入門(11)Views](http://www.codedata.com.tw/database/mysql-tutorial-11-views/) 219 | 2. [MySQL Views](http://www.mysqltutorial.org/mysql-views-tutorial.aspx) 220 | 3. [MySQL 超新手入門(13)Stored Routines 入門](http://www.codedata.com.tw/database/mysql-tutorial-13-stored-routines/) 221 | 4. [只要說「我要下午茶!」——什麼是資料庫預存程序?](http://www.newtype.com.tw/aw/Article_ShareDetail.aspx?UniqueID=3) 222 | 5. [MySQL Stored Procedure](http://www.mysqltutorial.org/mysql-stored-procedure-tutorial.aspx) 223 | 6. [MySQL 超新手入門(16)Triggers](http://www.codedata.com.tw/database/mysql-tutorial-16-triggers/) 224 | 7. [MySQL Triggers](http://www.mysqltutorial.org/mysql-triggers.aspx) 225 | 8. [跟 Trigger 與 View 相關的簡報 by TritonHo](https://github.com/TritonHo/slides/blob/master/internal-talk/internal_talk1.pdf) 226 | 9. [跟 ACID 有關的簡報 by TritonHo](https://github.com/TritonHo/slides/blob/master/Taipei%202018-06%20talk/lesson0.pdf) 227 | 10. [MySQL CREATE INDEX](http://www.mysqltutorial.org/mysql-index/mysql-create-index/) 228 | 11. Stored procedure 相關討論:[討論一](https://www.facebook.com/groups/616369245163622/permalink/1315254285275111/)、[討論二](https://www.facebook.com/groups/616369245163622/permalink/1316314398502433/)、[討論三](https://www.facebook.com/groups/616369245163622/permalink/1315406481926558/)、[討論四](https://www.facebook.com/yftzeng.tw/posts/10209307179835921) 229 | 230 | [HW8 作業連結](/homeworks/week8) 231 | 232 | #### 目標: 233 | 234 | - [ ] 了解後端架構 235 | - [ ] 知道虛擬空間、虛擬主機以及實體主機的差別 236 | - [ ] 知道什麼是網域 237 | - [ ] 知道如何設定網域以及原理 238 | - [ ] 知道如何用 SSH 遠端連線到自己的主機 239 | - [ ] 知道如何部署應用程式 240 | - [ ] 知道什麼是 No SQL 241 | - [ ] 知道什麼是 Transaction 與 lock 242 | - [ ] 知道資料庫的 ACID 243 | - [ ] 知道什麼是資料庫的 View 244 | - [ ] 知道什麼是 Stored procedure 245 | - [ ] 知道資料庫的 Trigger 以及使用時機 246 | 247 | ### 第九週(10/29 ~ 11/04):前端中階(上) 248 | 249 | 在被 CSS 折磨這麼久之後,終於有機會用程式化的方法來撰寫 CSS,這週將介紹幾個不同的 CSS preprocessor(LESS, SASS, Stylus),讓學生自行選擇看順眼的並且練習,把之前的 CSS 都改寫。 250 | 251 | 也會介紹到 postcss,讓 CSS 變得更簡單。 252 | 253 | 除此之外,這週也會介紹到基本的資料結構 stack 與 queue,JavaScript 的 Event Loop 機制以及 Cache 相關的說明。 254 | 255 | 這週的第一個重點是 CSS 預處理器,第二個重點就是 JavaScript 的一些重要基礎:什麼是 this、execution context、prototype 等等。 256 | 257 | [HW9 作業連結](/homeworks/week9) 258 | 259 | 延伸閱讀:[該來理解 JavaScript 的原型鍊了](https://blog.techbridge.cc/2017/04/22/javascript-prototype/)、[解读ECMAScript[1]——执行环境、作用域及闭包](http://www.cnblogs.com/leoo2sk/archive/2010/12/19/ecmascript-scope.html)、[JS 作用域](https://github.com/nightn/front-end-plan/blob/master/js/js-scope.md) 260 | 261 | #### 目標: 262 | 263 | - [ ] 了解 CSS 預處理器的目的以及原理 264 | - [ ] 知道 postcss 是什麼 265 | - [ ] 了解什麼是 Cache 266 | - [ ] 知道 HTTP Cache 的原理以及相關 Header 267 | - [ ] 知道什麼是 Stack 268 | - [ ] 知道什麼是 Queue 269 | - [ ] 知道 Event Loop 的運作方式 270 | - [ ] 知道 CSS Selector 權重的計算方式 271 | - [ ] 對 this、exectuion context、prototype 有最基礎的理解 272 | 273 | ### 第十週(11/05 ~ 11/11):前端中階(下) 274 | 275 | 這週將學習把工作自動化,利用 gulp 管理工作流程,避免繁瑣的手動操作。 276 | 277 | 也會講到 Webpack 誕生的理由以及模組化的 JavaScript 開發,讓學生理解為何需要使用 Webpack。 278 | 279 | 除此之外也會講到一些與 CSS 相關的優化小技巧,例如說針對圖片做優化的 CSS Sprites 或是 Data URI,或是 JavaScript 與 CSS 的 uglify、minify 等等。 280 | 281 | 最後也會用跟以往不太一樣的模式,做出一個簡單的 todo list。 282 | 283 | [HW10 作業連結](/homeworks/week10) 284 | 285 | #### 目標: 286 | 287 | - [ ] 了解 gulp 的目的以及原理 288 | - [ ] 了解 webpack 的目的以及原理 289 | - [ ] 熟悉如何使用 webpack 進行模組化開發 290 | - [ ] 熟悉如何使用 gulp 建構自動化工作流程 291 | - [ ] 能夠快速打造出基礎環境 292 | - [ ] 知道 CSS 優化的一些小技巧 293 | 294 | ### 第十一週(11/12 ~ 11/18):後端框架(上) 295 | 296 | 這一週正式進入後端框架的領域,會帶大家上最基礎的 Express,熟悉後端框架的各個元素。 297 | 298 | [HW11 作業連結](/homeworks/week11) 299 | 300 | #### 目標: 301 | 302 | - [ ] 了解一般後端框架的各個元素 303 | - [ ] 了解 Route 以及 MVC 304 | - [ ] 了解什麼是 ORM 305 | 306 | ### 第十二週(11/19 ~ 11/25):前端框架(上) 307 | 308 | 終於要進入到前端框架 React 了(雖然嚴格來說 React 並不是一個框架,但搭配其他各種 React 生態系成員,其實就算是一個框架了)。 309 | 310 | 這週會學習到 React 的基本應用以及原理,了解為什麼我們需要使用 React。 311 | 312 | 延伸閱讀:[React 性能優化大挑戰:一次理解 Immutable data 跟 shouldComponentUpdate](https://blog.techbridge.cc/2018/01/05/react-render-optimization/) 313 | 314 | [HW12 作業連結](/homeworks/week12) 315 | 316 | #### 目標: 317 | 318 | - [ ] 了解 React 的目的以及原理 319 | - [ ] 了解我們為什麼需要 React 320 | - [ ] 了解 React 跟之前使用 jQuery 的區別 321 | - [ ] 了解 state 跟 props 的不同 322 | - [ ] 學習以元件的角度去看整個 App 323 | 324 | ### 第十三週(11/26 ~ 12/02):前端框架(中) 325 | 326 | 在上一週結束之後,大家應該對 React 有了一些基本的感覺,這一週我們要繼續培養對 React 的感覺,讓大家對 React 越來越熟練。 327 | 328 | 除此之外也會教大家用 React Router 這一套 library,來實做前端的路由。 329 | 330 | [HW13 作業連結](/homeworks/week13) 331 | 332 | 延伸閱讀:[前後端分離與 SPA](https://blog.techbridge.cc/2017/09/16/frontend-backend-mvc/)、[跟著小明一起搞懂技術名詞:MVC、SPA 與 SSR](https://medium.com/@hulitw/introduction-mvc-spa-and-ssr-545c941669e9) 333 | 334 | #### 目標: 335 | 336 | - [ ] 熟悉 React 337 | - [ ] 知道如何使用 React Router 338 | - [ ] 了解 React Router 的目的 339 | - [ ] 知道什麼是 Single Page Application 340 | - [ ] 了解現在的前端與以往的差別 341 | 342 | 343 | ### 第十四週(12/03 ~ 12/09):前端框架(下) 344 | 345 | 這是最後一週的前端課程,也是最後一週的 React 課程了。在之前的 React 課程中,我們已經慢慢熟悉 React 的思考模式,可是還有一些問題還沒解決,雖然你現在感受不太到,但是在 App 慢慢變大之後就會碰到了。 346 | 347 | 接續之前的課程,這一週會讓你的 Web App 變得更加完整,會導入一個新的東西:Redux,說明我們為什麼需要它,以及如何利用它與 redux-promise 來解決非同步的一些問題。 348 | 349 | [HW14 作業連結](/homeworks/week14) 350 | 351 | #### 目標: 352 | 353 | - [ ] 了解 Redux 的目的以及原理 354 | - [ ] 了解我們為什麼需要 Redux 355 | - [ ] 知道 Redux 如何搭配 middleware 解決非同步操作的問題 356 | 357 | 358 | ### 第十五週(12/10 ~ 12/16):後端框架(下) 359 | 360 | 之前我們學過了原生的 PHP,也學了 Express 這套輕巧的 Node.js 框架,而這一週呢,要來教 PHP 的一個輕量的框架 [CodeIgniter](https://codeigniter.org.tw/)。 361 | 362 | 在教完之後,會讓大家把之前的留言板從純 PHP 用 CodeIgnier 這套框架改寫,就可以比較一下兩者之間有哪裡不一樣。 363 | 364 | [HW15 作業連結](/homeworks/week15) 365 | 366 | #### 目標: 367 | 368 | - [ ] 學過兩套不同語言的框架之後,要發現其中的異同 369 | - [ ] 理解為什麼會需要框架 370 | - [ ] 體驗純 PHP 跟有框架的差別在哪裡 371 | 372 | ### 第十六週(12/17 ~ 12/23):Final Project 373 | ### 第十七週(12/24 ~ 12/30):Final Project 374 | 375 | ### 第十八週(12/31 ~ 01/06):Final Project 376 | 377 | ### 第十九週(01/07 ~ 01/13):Final Project Demo 378 | 379 | 380 | # Final Project 381 | 382 | 正式的課程就到這邊告一段落了,你學了前端後端與程式相關的基礎知識,接下來需要做一些作品累積經驗,因此接下來幾週都會讓同學做出屬於自己的 Final Project,建議可以與其他人合作,但也可以選擇一個人單打獨鬥。 383 | 384 | 根據第一期的經驗,其實找人合作會是比較好的選擇。 385 | 386 | 第一期學長姐的 Final Project:[Coffee Beans House Online 387 | ](http://thinkr.tw/coffee-beans/)、[Sukiya 仿作](http://tomlee0122.tw/static/sukiya_project/sukiya/index.html#/) 388 | 389 | 如果大家一點靈感都沒有的話,可以參考以下幾個提案(但有自己的想法當然是最好的): 390 | 391 | ## 留言板 392 | 393 | 既然我們這次的課程做了這麼多個留言板,不如把留言板給做到極致吧! 394 | 395 | 你可以做一個「讓大家都能申請留言板」的系統,就像是無名小站那樣,每個人都可以申請帳號,有帳號之後可以開設自己的留言板,然後可以自己選擇要不要開放訪客來留言,不開放的話就預設是只有會員可以留言。 396 | 397 | 點下去會員的帳號之後還可以看到會員個人資料,或者是直接跳到會員自己的留言板去(如果有的話)。 398 | 399 | 除此之外,如果你想走前端的話,可以試著把前端改成 SPA 試試看! 400 | 401 | ## 論壇系統 402 | 403 | 建立一個論壇系統,能有不同的板塊(討論區),例如說: 404 | 405 | 1. 閒聊 406 | 2. 購物 407 | 3. 程式相關主題 408 | 409 | 在不同板塊底下都可以發表文章,除了發表文章以外,下面也能夠有回覆。 410 | 411 | 或者是你也可以把板塊當成是 Tag 而已,在同一個頁面就可以看到所有的文章,如果你想找範例的話,可以參考:http://react-china.org/ 412 | 413 | ## 購物網站 414 | 415 | 做個簡單的購物網站,可以參考任何一家市面上的電商,例如說這個我隨便找的電商:https://www.yuyufarm.com/ 416 | 417 | 重點是除了前端以外,你必須要有後台能夠讓管理者登入,並且管理商品(例如說調整價錢、上傳圖片、調整順序等等),可以先完成一個最簡單的版本,之後再慢慢加強。 418 | 419 | ## 社交網站 420 | 421 | 可以直接參考 Twitter:https://twitter.com/?lang=zh-tw 422 | 423 | 你可以 follow 人,然後就能夠看到他的動態,也可以自己 po 動態,會出現在自己的 follower 的牆上。 424 | 425 | 總之呢,關於 Final Project,沒有靈感的話可以先從自己常用的東西開始下手,先打造出一個最簡單的版本再慢慢加強。也可以盡量去找一些第三方的 API 來串,增加自己串 API 的經驗,例如說: 426 | 427 | 1. Firebase 428 | 2. Google Map API 429 | 3. Google Login, Facebook Login 430 | 4. 金流 431 | 432 | ## 繳交 Final Project 433 | 434 | 請準備好以下幾個東西並且於第十九週 po 到 Slack 裡面: 435 | 436 | 1. 作品網址(沒主機或是 deploy 碰到問題的可以來找我) 437 | 2. 5 分鐘以內介紹作品的短片,上傳到 YouTube(可以不用露臉,你不想出聲的話後製加文字也可以) 438 | 3. GitHub 網址(請確保你有把一些敏感的資訊例如說資料庫密碼之類的拿掉) 439 | 4. 做 final project 的心得(看你想寫在哪裡都可以) 440 | 441 | ## 自我練習 442 | 443 | Codewar 是一個程式解題平台,靠這些題目,可以訓練自己對語法的熟悉度以及維持手感,更進階的題目則是能夠訓練思考邏輯以及解題方法。 444 | 445 | 我依照難度整理出了一些題目,平常做作業卡關或是沒事做的時候,都可以解一下這些題目。 446 | 447 | [Codewar 題目列表](/codewar.md) 448 | 449 | ## Tech Stack 450 | 451 | 這邊列舉這堂課程用到的所有工具。 452 | 453 | 1. 課程直播:YouTube 454 | 2. 群組聊天:Slack 455 | 3. 交作業:GitHub + GitHub Classroom + Travis CI 自動批改 456 | 4. 練習題目:Codewar 457 | 5. 簽到系統:GitHub Webhook + Slack GitHub App + AWS Lambda + Google Sheet API 458 | 459 | -------------------------------------------------------------------------------- /codewar.md: -------------------------------------------------------------------------------- 1 | # Codewar 練習題 2 | 3 | Codewar 是一個程式解題平台,上面充滿著各種開發者出的題目,會使用這個平台的理由為: 4 | 5 | 1. 可以自己寫測試驗證基本測資 6 | 2. 過關後可以看到其他人的解答 7 | 3. 方便導師追蹤解題成效 8 | 9 | ## 注意事項 10 | 11 | 解題最重要的一點就是:絕對不要輕易看答案。為什麼解題能夠成長?是因為你有思考,思考過後想出來的答案才是你的,如果你放棄了然後去看別人的答案,那就始終是別人的,不會是你自己的。 12 | 13 | 想了一陣子還是想不出來的話,不用急,去洗個澡或是散個步搞不好就想通了(真心不騙) 14 | 15 | 若是認真想過還是想不出來,這時候可以先尋求一些提示,如果還是沒頭緒,這時候才能去查解答。但看完解答之後務必理解,並且重新再測驗一遍。 16 | 17 | 做完之後請自行把標題的 ❌ 換成 ✅。 18 | 19 | ## 題目列表 20 | 21 | 以下按照題目難度分類 22 | 23 | ## 零顆星(超簡單) 24 | 25 | ### ❌ Opposite number 26 | 題目連結:https://www.codewars.com/kata/opposite-number/javascript 27 | 題目說明:正數變負數,反之亦然 28 | 29 | ### ❌ Even or Odd 30 | 題目連結:https://www.codewars.com/kata/even-or-odd/javascript 31 | 題目說明:判斷是奇數或是偶數 32 | 33 | ## 一顆星(熟悉語法) 34 | 35 | ### ❌ Number-Star ladder 36 | 題目連結:https://www.codewars.com/kata/number-star-ladder/javascript 37 | 題目說明: 38 | 這題就是依照規律輸出文字,沒什麼好講的 39 | 40 | ### ❌ Who likes it 41 | 題目連結:https://www.codewars.com/kata/who-likes-it 42 | 題目說明:模擬 Facebook 按讚時或出現的文字 43 | 44 | ### ❌ String repeat 45 | 題目連結:https://www.codewars.com/kata/string-repeat/javascript 46 | 題目說明:回傳重複 n 遍的字串 47 | 48 | ### ❌ Build Tower 49 | 題目連結:https://www.codewars.com/kata/build-tower 50 | 題目說明: 51 | 也是依照規律輸出文字即可 52 | 53 | ### ❌ Reversed Strings 54 | 題目連結:https://www.codewars.com/kata/reversed-strings/javascript 55 | 題目說明: 56 | 把輸入的文字反轉過後回傳,如果想挑戰自己的話,可以試試看用陣列的各種內建函式組合完成 57 | 58 | ### ❌ Reversed Words 59 | 題目連結:https://www.codewars.com/kata/reversed-words 60 | 題目說明: 61 | 這一題是進階版的字串反轉,原本的只要把每個「字元」反轉,這個則是要把每個「單字」反轉。 62 | 63 | ### ❌ Alternate case 64 | 題目連結:https://www.codewars.com/kata/alternate-case 65 | 題目說明:把大寫字母轉成小寫,小寫字母轉成大寫 66 | 67 | ### ❌ You only need one - Beginner 68 | 題目連結:https://www.codewars.com/kata/you-only-need-one-beginner/javascript 69 | 題目說明:回傳要找的元素是否在陣列裡面 70 | 71 | ### ❌ Find the capitals 72 | 題目連結:https://www.codewars.com/kata/find-the-capitals-1/javascript 73 | 題目說明:回傳大寫字母所在的 index 74 | 75 | ### ❌ Sum arrays 76 | 題目連結:https://www.codewars.com/kata/sum-arrays/javascript 77 | 題目說明:把陣列加總回傳結果 78 | 79 | ### ❌ Find the smallest integer in the array 80 | 題目連結:https://www.codewars.com/kata/find-the-smallest-integer-in-the-array 81 | 題目說明:找出陣列中最小的數字 82 | 83 | ## 兩顆星(需要花點時間思考) 84 | 85 | ### ❌ Shortest Word 86 | 題目連結:https://www.codewars.com/kata/shortest-word/javascript 87 | 題目說明:回傳最短的單字的長度 88 | 89 | ### ❌ Bit Counting 90 | 題目連結:https://www.codewars.com/kata/bit-counting/javascript 91 | 題目說明:計算 bit 的總數 92 | 93 | ### ❌ Find The Parity Outlier 94 | 題目連結:https://www.codewars.com/kata/find-the-parity-outlier/javascript 95 | 題目說明:全部的數字裡,只有一個的奇偶跟其他的不一樣,你要找出這個數字 96 | 97 | ### ❌ Take a Ten Minute Walk 98 | 題目連結:https://www.codewars.com/kata/take-a-ten-minute-walk/javascript 99 | 題目說明:有一個人他可以往東南西北這四個方向走,請幫他計算它能否剛好在十步的時候回到原點 100 | 101 | ### ❌ Tribonacci Sequence 102 | 題目連結:https://www.codewars.com/kata/tribonacci-sequence/javascript 103 | 題目說明:費式數列的進階版 104 | 105 | ### ❌ A Man and his Umbrellas 106 | 題目連結:https://www.codewars.com/kata/a-man-and-his-umbrellas/javascript 107 | 題目說明: 108 | 這題需要花多一點時間去思考。 109 | 110 | input 會給你每天的氣象預報,基本上就是下雨跟沒下雨。如果早上下雨,那就會從家裡帶一把傘去公司,如果家裡沒傘的話需要買一把。如果晚上下雨,必須要從公司帶一把傘回家。如果公司沒傘,必須去買一支傘。 111 | 112 | 你要輸出的結果就是:總共需要買幾支傘才行。 113 | 114 | 舉例來說:`["rainy", "clear", "rainy", "cloudy"]`,就是第一天早上下雨,所以要買第一把傘到公司,回家的時候沒下雨,所以把傘放在公司。而第二天早上又下雨,家裡沒傘,需要買第二把傘,因此答案是 2。 115 | 116 | `["rainy", "rainy", "rainy", "rainy", "thunderstorms", "rainy"]`的話,每一天的早上跟晚上都在下雨,所以只要買一把傘就可以從家裡到公司,再從公司帶回家裡。 117 | 118 | ### ❌ Check if two words are isomorphic to each other 119 | 題目連結:https://www.codewars.com/kata/check-if-two-words-are-isomorphic-to-each-other 120 | 題目說明: 121 | 這題比較複雜一點,如果兩個字串 A 跟 B 存在「一對一關係」,那我們就可以說這兩個字串是同構(isomorphic)的。 122 | 123 | 舉例來說,ABB 跟 CDD,A 對應到 C,B 對應到 D,存在一對一的關係,所以是同構的。 124 | -------------------------------------------------------------------------------- /homeworks/week1/README.md: -------------------------------------------------------------------------------- 1 | # 作業 2 | 3 | 備註:以下題目請看清楚題目要求,如果要你「印出」,代表你要在 function 內使用`console.log`印出正確答案,如果要你「回傳」,則是用`return`把正確的值傳回去。 4 | 5 | ## hw1:印出星星 6 | 給定 n(1<=n<=30),依照規律「印出」正確圖形 7 | 8 | ``` 9 | printStars(1) 10 | 正確輸出: 11 | * 12 | ``` 13 | 14 | ``` 15 | printStars(3) 16 | 正確輸出: 17 | * 18 | * 19 | * 20 | ``` 21 | 22 | ``` 23 | printStars(6) 24 | 正確輸出: 25 | * 26 | * 27 | * 28 | * 29 | * 30 | * 31 | ``` 32 | 33 | ## hw2:首字母大寫 34 | 給定一字串,把第一個字轉成大寫之後「回傳」,若第一個字不是英文字母則忽略。 35 | 36 | ``` 37 | capitalize('nick') 38 | 正確回傳值:Nick 39 | 40 | capitalize('Nick') 41 | 正確回傳值:Nick 42 | 43 | capitalize(',hello') 44 | 正確回傳值:,hello 45 | ``` 46 | 47 | ## hw3:反轉字串 48 | 給定一個字串,請「印出」反轉之後的樣子(不能使用內建的 `reverse` 函式) 49 | 50 | ``` 51 | reverse('yoyoyo') 52 | 正確輸出:oyoyoy 53 | 54 | reverse('1abc2') 55 | 正確輸出:2bca1 56 | 57 | reverse('1,2,3,2,1') 58 | 正確輸出:1,2,3,2,1 59 | ``` 60 | 61 | ## hw4:印出因數 62 | 先幫大家複習一下數學,給定一個數字 n,因數就是所有小於等於 n 又可以被 n 整除的數,所以最明顯的例子就是 1 跟 n,這兩個數一定是 n 的因數。現在請寫出一個函式來「印出」所有的因數 63 | 64 | ``` 65 | printFactor(10) 66 | 正確輸出: 67 | 1 68 | 2 69 | 5 70 | 10 71 | ``` 72 | 73 | ``` 74 | printFactor(7) 75 | 正確輸出: 76 | 1 77 | 7 78 | ``` 79 | 80 | ## hw5:自己的函式自己寫 81 | 其實仔細思考的話,你會發現那些陣列內建的函式你其實都寫得出來,因此這一題就是要讓你自己動手實作那些函式! 82 | 83 | 我們要實作的函式有兩個:join 以及 repeat。 84 | 85 | join 會接收兩個參數:一個陣列跟一個字串,會在陣列的每個元素中間插入一個字串,最後回傳合起來的字串。 86 | 87 | repeat 的話就是回傳重複 n 次之後的字串。 88 | 89 | ``` 90 | join([1, 2, 3], ''),正確回傳值:123 91 | join(["a", "b", "c"], "!"),正確回傳值:a!b!c 92 | join(["a", 1, "b", 2, "c", 3], ','),正確回傳值:a,1,b,2,c,3 93 | 94 | repeat('a', 5),正確回傳值:aaaaa 95 | repeat('yoyo', 2)正確回傳值:yoyoyoyo 96 | ``` 97 | 98 | ## hw6:簡答題 99 | 請將答案寫在[hw6.md](hw6.md)。 100 | 101 | 1. 請解釋後端與前端的差異。 102 | 2. 假設我今天去 Google 首頁搜尋框打上:JavaScript 並且按下 Enter,請說出從這一刻開始到我看到搜尋結果為止發生在背後的事情。 103 | 3. 請列舉出 5 個 command line 指令並且說明功用。 104 | -------------------------------------------------------------------------------- /homeworks/week1/hw1.js: -------------------------------------------------------------------------------- 1 | function printStars(n) { 2 | 3 | } -------------------------------------------------------------------------------- /homeworks/week1/hw2.js: -------------------------------------------------------------------------------- 1 | function capitalize(str) { 2 | 3 | } -------------------------------------------------------------------------------- /homeworks/week1/hw3.js: -------------------------------------------------------------------------------- 1 | function reverse(str) { 2 | 3 | } -------------------------------------------------------------------------------- /homeworks/week1/hw4.js: -------------------------------------------------------------------------------- 1 | function printFactor(n) { 2 | 3 | } -------------------------------------------------------------------------------- /homeworks/week1/hw5.js: -------------------------------------------------------------------------------- 1 | function join(str, concatStr) { 2 | 3 | } 4 | 5 | function repeat(str, times) { 6 | 7 | } -------------------------------------------------------------------------------- /homeworks/week1/hw6.md: -------------------------------------------------------------------------------- 1 | ## 請解釋後端與前端的差異。 2 | 3 | 4 | ## 假設我今天去 Google 首頁搜尋框打上:JavaScri[t 並且按下 Enter,請說出從這一刻開始到我看到搜尋結果為止發生在背後的事情。 5 | 6 | 7 | 8 | ## 請列舉出 5 個 command line 指令並且說明功用 -------------------------------------------------------------------------------- /homeworks/week10/README.md: -------------------------------------------------------------------------------- 1 | # 作業 2 | 3 | ## hw1:Gulp 4 | 5 | gulp 就是用來把原本的工作流程自動化的,現在請你寫一個 gulp 的設定檔,依序完成以下事情: 6 | 7 | 1. 把 scss 編譯成 css 8 | 2. 把 js 用 babel 轉成 ES5 語法 9 | 3. 把 css 以及 js 壓縮 10 | 11 | ## hw2:Webpack 12 | 13 | Webpack 的目的其實就是讓前端也能夠像 Node.js 那樣,支援 `module.exports` 以及 `require`。 14 | 15 | 為了讓你體驗 Webpack,在這個作業中你只要做以下簡單的幾件事情就好: 16 | 17 | 1. 寫一個檔案叫做 `utils.js`,裡面有一個叫做 `add` 的 function 18 | 2. 寫一個檔案叫做 `index.js` 19 | 3. 在 `index.js` 裡面引入 `add` 這個 function 並且輸出`add(10, 3)` 20 | 4. 用 Webpack 把以上檔案打包產生出 `bundle.js` 21 | 22 | ## hw3:Todo List 23 | 24 | 之前在第七週時已經讓大家寫過一個 todo list,這次我們要來點不一樣的。 25 | 26 | 其實有一種寫法非常直覺,而且寫起來非常方便,那就是「只要資料更新,我就全部重新 render」。 27 | 28 | 什麼意思呢?之前我們寫第七週的作業時,新增的話就是新增一筆資料,然後在 DOM 上面 append,刪除的話就是直接把 DOM 上面的那筆元素刪掉。 29 | 30 | 可是其實還有另外一種做法,用程式碼示意的話會長這樣: 31 | 32 | ``` js 33 | var list = [] 34 | function addTodo(todo) { 35 | list.push(todo) 36 | render() 37 | } 38 | 39 | function removeTodo(id) { 40 | list = list.filter(item => item.id !== id) 41 | render() 42 | } 43 | 44 | function render(){ 45 | $('.todo-list').empty() 46 | $('.todo-list').append(list.map(item => `
  • ${todo.content}
  • `)) // 示意 47 | } 48 | ``` 49 | 50 | 每次只要資料有更新,你就更新資料就好,然後把畫面全部重新渲染。如此一來的好處就是你完全不用管 DOM,你只要更新程式裡面的資料即可。 51 | 52 | 現在請你把之前實作的 Todo list 改成這種形式,更新資料並且 re-render。 53 | 54 | ## hw4:簡答題 55 | 56 | 1. gulp 跟 webpack 有什麼不一樣?我們可以不用它們嗎? 57 | 2. hw3 把 todo list 這樣改寫,可能會有什麼問題? 58 | 3. CSS Sprites 與 Data URI 的優缺點是什麼? 59 | -------------------------------------------------------------------------------- /homeworks/week10/hw1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week10/hw1/index.html -------------------------------------------------------------------------------- /homeworks/week10/hw2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week10/hw2/index.html -------------------------------------------------------------------------------- /homeworks/week10/hw3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week10/hw3/index.html -------------------------------------------------------------------------------- /homeworks/week10/hw4.md: -------------------------------------------------------------------------------- 1 | ## gulp 跟 webpack 有什麼不一樣?我們可以不用它們嗎? 2 | 3 | 4 | ## hw3 把 todo list 這樣改寫,可能會有什麼問題? 5 | 6 | ## CSS Sprites 與 Data URI 的優缺點是什麼? -------------------------------------------------------------------------------- /homeworks/week11/README.md: -------------------------------------------------------------------------------- 1 | # 作業 2 | 3 | ## hw1:留言板 4 | 5 | 這週上到了 Express 這一個 Node.js 的框架,而這次的作業很簡單,就是要把之前寫的留言板系統移植到 Express 上面,讓你體驗看看有用框架跟沒有用框架的差別在哪。 6 | 7 | 這次的移植照理來說只會有後端程式碼有變化,前端應該會是完全不變的。 8 | 9 | ## hw2:短網址系統 10 | 11 | 之前有帶大家設計過短網址的系統架構,那時候是要求大家考量的越大越複雜越好,但這次作業我們只要實作一個簡單的版本就好,能夠讓使用者輸入長網址並且產生短網址,以及讓短網址可以導到正確的網頁去。 12 | 13 | 至於要怎麼生成短網址的那個網址,就交給大家自己去研究了! 14 | 15 | ## hw3:簡答題 16 | 17 | 1. 什麼是 MVC? 18 | 2. 什麼是 ORM? 19 | -------------------------------------------------------------------------------- /homeworks/week11/hw1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week11/hw1/index.html -------------------------------------------------------------------------------- /homeworks/week11/hw2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week11/hw2/index.html -------------------------------------------------------------------------------- /homeworks/week11/hw3.md: -------------------------------------------------------------------------------- 1 | ## 什麼是 MVC? 2 | 3 | 4 | ## 什麼是 ORM? 5 | 6 | -------------------------------------------------------------------------------- /homeworks/week12/README.md: -------------------------------------------------------------------------------- 1 | # 作業 2 | 3 | ## hw1:Todo List 4 | 5 | 請你用 React 實作出一個 todo list,介面跟功能就參考之前用 jQuery 寫出來的那個就行了。 6 | 7 | ## hw2:五子棋遊戲 8 | 9 | 請實作出一個簡單的五子棋遊戲,讓黑棋白棋可以輪流下,並且判定勝負。棋盤的話請用十九路棋盤(19*19),如果想挑戰更進階的,可以試著把棋譜也記錄起來,甚至是做一個輸入棋譜就可以重演整個盤面的小程式。 10 | 11 | ## hw3:Blog SPA 12 | 13 | 請做出一個簡單的 Blog 前端頁面,就像我在影片裡面示範的那樣,一共有三個頁面: 14 | 15 | 1. About 16 | 2. 文章列表 17 | 3. 單篇文章 18 | 19 | API 的話可以用這個:https://jsonplaceholder.typicode.com/posts 20 | 21 | 圖片可參考: 22 | 23 | ![](blog.png) 24 | 25 | ## hw4:簡答題 26 | 27 | 1. 為什麼我們需要 React?可以不用嗎? 28 | 2. React 的思考模式跟以前的思考模式有什麼不一樣? 29 | 2. state 跟 props 的差別在哪裡? 30 | 3. 請列出 React 的 lifecycle 以及其代表的意義 -------------------------------------------------------------------------------- /homeworks/week12/blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week12/blog.png -------------------------------------------------------------------------------- /homeworks/week12/hw1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week12/hw1/index.html -------------------------------------------------------------------------------- /homeworks/week12/hw2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week12/hw2/index.html -------------------------------------------------------------------------------- /homeworks/week12/hw3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week12/hw3/index.html -------------------------------------------------------------------------------- /homeworks/week12/hw4.md: -------------------------------------------------------------------------------- 1 | ## 為什麼我們需要 React?可以不用嗎? 2 | 3 | ## React 的思考模式跟以前的思考模式有什麼不一樣? 4 | 5 | 6 | ## state 跟 props 的差別在哪裡? 7 | 8 | 9 | ## 請列出 React 的 lifecycle 以及其代表的意義 10 | 11 | -------------------------------------------------------------------------------- /homeworks/week13/README.md: -------------------------------------------------------------------------------- 1 | # 作業 2 | 3 | ## hw1:SPA 部落格 4 | 5 | 在這個作業中,我們要把上一週的部落格範例變得更完整一點,請你加入以下功能: 6 | 7 | 1. 美化部落格主頁 8 | 2. 美化部落格文章頁面 9 | 3. 使用 React Router 10 | 4. 串接 API 11 | 5. 加入發文的功能(無須登入) 12 | 13 | API 格式: 14 | 15 | endpoint:http://45.55.26.18:3310 16 | 使用說明:https://github.com/typicode/json-server 17 | 18 | ``` 19 | POST /posts {title, author, body} 新增 posts 20 | GET /posts 取得所有 post 21 | GET /posts/:id 取得某個 post 22 | DELETE /posts/:id 刪除 post 23 | PUT /posts/:id {title, author, body} 更新 post 24 | ``` 25 | 26 | 27 | ## hw2:簡答題 28 | 29 | 1. React Router 背後的原理你猜是怎麼實作的? 30 | 2. SDK 與 API 的差別是什麼? 31 | 3. 在用 Ajax 的時候,預設是不會把 Cookie 帶上的,要怎麼樣才能把 Cookie 一起帶上? 32 | -------------------------------------------------------------------------------- /homeworks/week13/hw1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week13/hw1/index.html -------------------------------------------------------------------------------- /homeworks/week13/hw2.md: -------------------------------------------------------------------------------- 1 | ## React Router 背後的原理你猜是怎麼實作的? 2 | 3 | 4 | ## SDK 與 API 的差別是什麼? 5 | 6 | 7 | ## 在用 Ajax 的時候,預設是不會把 Cookie 帶上的,要怎麼樣才能把 Cookie 一起帶上? -------------------------------------------------------------------------------- /homeworks/week14/README.md: -------------------------------------------------------------------------------- 1 | # 作業 2 | 3 | ## hw1:SPA 部落格加強版 4 | 5 | 延續上週的作業,我們這次要結合 Redux,把留言板變成一個完整的 SPA(Single Page Applicaton),並且把有 API call 的地方都改成用 redux-promise 來實作,除了這些以外呢,也希望你能新增一些功能: 6 | 7 | 1. 刪除文章 8 | 2. 編輯文章 9 | 3. 加入登入功能,要登入之後才能發文、刪除跟修改文章 10 | 3. 可以用 Markdown 格式來撰寫文章(加分題) 11 | 12 | 登入的帳號密碼都固定為 user01 13 | 14 | API 格式: 15 | 16 | endpoint:http://45.55.26.18:3310 17 | 使用說明:https://github.com/typicode/json-server 18 | 19 | ``` 20 | POST /login {username, password} 登入 21 | GET /me 如果有登入會回傳現在的使用者資料 22 | GET /logout 登出 23 | POST /posts {title, author, body} 新增 posts 24 | GET /posts 取得所有 post 25 | GET /posts/:id 取得某個 post 26 | DELETE /posts/:id 刪除 post 27 | PUT /posts/:id {title, author, body} 更新 post 28 | ``` 29 | 30 | 31 | ## hw2:簡答題 32 | 33 | 1. 為什麼我們需要 Redux? 34 | 2. Redux 是什麼? 35 | 3. Single Page Application 是什麼?有哪些頁面一定要用這個架構去設計嗎? 36 | 4. Redux 如何解決非同步(例如說 call API 拿資料)的問題 37 | -------------------------------------------------------------------------------- /homeworks/week14/hw1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week14/hw1/index.html -------------------------------------------------------------------------------- /homeworks/week14/hw2.md: -------------------------------------------------------------------------------- 1 | ## 為什麼我們需要 Redux? 2 | 3 | 4 | ## Redux 是什麼? 5 | 6 | 7 | ## Single Page Application 是什麼?有哪些頁面一定要用這個架構去設計嗎? 8 | 9 | 10 | ## Redux 如何解決非同步(例如說 call API 拿資料)的問題 11 | -------------------------------------------------------------------------------- /homeworks/week15/README.md: -------------------------------------------------------------------------------- 1 | # 作業 2 | 3 | ## hw1:改寫 PHP 留言板 4 | 5 | 在這一系列課程中,我們把留言板這個範例一直用不同的技術去改寫。之前把留言板移植到 Node.js 並且用 Express 來寫,而這週呢我們則是要把之前用 PHP 寫的留言版換成用 CodeIgniter 來寫,讓你體驗看看兩者的差別在哪裡。 6 | 7 | 至於留言板的話,我們其實也做了很多版本,你可以任選一個版本來改寫(例如說要不要用改成 ajax 的那個版本)。 8 | 9 | ## hw2:簡答題 10 | 11 | (寫心得就好,沒有正確答案) 12 | 13 | 1. 使用 CodeIgniter 之後跟原本寫純 PHP 有什麼不一樣的地方嗎? 14 | 2. 跟 Express 比起來,你比較喜歡哪個 15 | 16 | 17 | -------------------------------------------------------------------------------- /homeworks/week15/hw1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week15/hw1/index.html -------------------------------------------------------------------------------- /homeworks/week2/README.md: -------------------------------------------------------------------------------- 1 | # 作業 2 | 3 | ## hw1:好多星星 4 | 給定 n(1<=n<=30),依照規律「回傳」正確圖形(每一行是一個陣列的元素) 5 | 6 | ``` 7 | n = 1 8 | ["*"] 9 | 10 | n = 3 11 | ["*", "**", "***"] 12 | 13 | n = 6 14 | ["*", "**", "***", "****", "*****", "******"] 15 | ``` 16 | 17 | ## hw2:大小寫互換 18 | 給定一字串,把小寫字母轉成大寫,大寫字母轉成小寫之後回傳,若不是英文字母則忽略。 19 | 20 | ``` 21 | input: nick 22 | output: NICK 23 | 24 | input: Nick 25 | output: nICK 26 | 27 | input: ,hEllO122 28 | output: ,HeLLo123 29 | ``` 30 | 31 | ## hw3:判斷質數 32 | 給定一個數字 n(1<=n<=100000),請回傳 n 是否為質數(質數的定義:除了 1 以外,所有小於他的數都無法整除) 33 | 34 | ``` 35 | n = 2 => true 36 | n = 3 => true 37 | n = 10 => false 38 | n = 37 => true 39 | n = 38 => false 40 | ``` 41 | 42 | ## hw4:判斷迴文 43 | 給定一個長度小於 100 的字串 s,請回傳 s 是否為迴文(迴文的定義:正著唸倒著念都一樣) 44 | 45 | ``` 46 | abcba => true 47 | apple => false 48 | aaaaa => true 49 | applppa => true 50 | ``` 51 | 52 | ## hw5:大數加法 53 | 給定兩個長度為 l(1<=l<=1000)的數字(但型態為字串),請回傳兩個數字相加後的結果。 54 | 提示:小時候怎麼做直式加法,這一題就怎麼做 55 | 56 | ``` 57 | "123"+"456" => "579" 58 | "12312383813881381381"+"129018313819319831" => "12441402127700701212" 59 | ``` 60 | 61 | ## hw6:簡答題 62 | 請將答案寫在[hw6.md](hw6.md)。 63 | 64 | 1. 請寫下以上五題的解題心得 65 | -------------------------------------------------------------------------------- /homeworks/week2/hw1.js: -------------------------------------------------------------------------------- 1 | function stars(n) { 2 | 3 | } 4 | 5 | module.exports = stars; -------------------------------------------------------------------------------- /homeworks/week2/hw1.test.js: -------------------------------------------------------------------------------- 1 | var stars = require('./hw1') 2 | 3 | describe("hw1", function() { 4 | it("should return correct answer when n = 1", function() { 5 | expect(stars(1)).toEqual(['*']) 6 | }) 7 | }) -------------------------------------------------------------------------------- /homeworks/week2/hw2.js: -------------------------------------------------------------------------------- 1 | function alphaSwap(str) { 2 | 3 | } 4 | 5 | module.exports = alphaSwap -------------------------------------------------------------------------------- /homeworks/week2/hw2.test.js: -------------------------------------------------------------------------------- 1 | var alphaSwap = require('./hw2') 2 | 3 | describe("hw2", function() { 4 | it("should return correct answer when str = nick", function() { 5 | expect(alphaSwap('nick')).toBe('NICK') 6 | }) 7 | }) -------------------------------------------------------------------------------- /homeworks/week2/hw3.js: -------------------------------------------------------------------------------- 1 | function isPrime(n) { 2 | 3 | } 4 | 5 | module.exports = isPrime -------------------------------------------------------------------------------- /homeworks/week2/hw3.test.js: -------------------------------------------------------------------------------- 1 | var isPrime = require('./hw3') 2 | 3 | describe("hw3", function() { 4 | it("should return correct answer when n = 1", function() { 5 | expect(isPrime(1)).toBe(false) 6 | }) 7 | }) -------------------------------------------------------------------------------- /homeworks/week2/hw4.js: -------------------------------------------------------------------------------- 1 | function isPalindromes(str) { 2 | 3 | } 4 | 5 | module.exports = isPalindromes -------------------------------------------------------------------------------- /homeworks/week2/hw4.test.js: -------------------------------------------------------------------------------- 1 | var isPalindromes = require('./hw4') 2 | 3 | describe("hw4", function() { 4 | it("should return correct answer when str = abcdcba", function() { 5 | expect(isPalindromes('abcdcba')).toBe(true) 6 | }) 7 | }) -------------------------------------------------------------------------------- /homeworks/week2/hw5.js: -------------------------------------------------------------------------------- 1 | function add(a, b) { 2 | 3 | } 4 | 5 | module.exports = add; -------------------------------------------------------------------------------- /homeworks/week2/hw5.test.js: -------------------------------------------------------------------------------- 1 | var add = require('./hw5') 2 | 3 | describe("hw5", function() { 4 | it("should return correct answer when a=111111111111111111111111111111111111 and b=111111111111111111111111111111111111", function() { 5 | expect(add('111111111111111111111111111111111111', '111111111111111111111111111111111111')).toBe('222222222222222222222222222222222222') 6 | }) 7 | }) 8 | -------------------------------------------------------------------------------- /homeworks/week2/hw6.md: -------------------------------------------------------------------------------- 1 | ## hw1:好多星星 2 | 3 | 4 | ## hw2:大小寫互換 5 | 6 | ## hw3:判斷質數 7 | 8 | ## hw4:判斷迴文 9 | 10 | ## hw5:大數加法 -------------------------------------------------------------------------------- /homeworks/week3/README.md: -------------------------------------------------------------------------------- 1 | # 作業 2 | 3 | ## hw1:切版 4 | 5 | 請切出如下圖的版面: 6 | ![](example.png) 7 | 8 | 不需要做到完全一樣,但可以盡你所能做的相似,除此之外,還要支援超基本的 RWD,在手機上看也不會跑版。 9 | 10 | 你可以觀察[這個網頁](https://lidemy.github.io/mentor-program-kristxeng/homeworks/week2/hw1/)來決定應該如何實作。 11 | 12 | ## hw2:仿 Medium 13 | 14 | 請切出如下圖的版面: 15 | ![](example2.png) 16 | 17 | 可以先觀察[這個網頁](https://lidemy.github.io/mentor-program-kristxeng/homeworks/week2/hw2)。 18 | 19 | 文字可以自己換成其他的,只要效果有達到就好。一樣要支援簡易的 RWD,在手機上看不會跑版(拍手會自動隱藏)。 20 | 21 | ## hw3:Github pages 22 | 做完上面的 Project 之後,請將你的 Github repo 開啟 Github Pages 的功能,能夠直接利用連結觀看到網頁。不知道怎麼設定的話可以參考網路上的資源。 23 | 24 | 對於 hw2,你可以加上我們在課程中提過的 og tag,並且利用 [Facebook debugger](https://developers.facebook.com/tools/debug/) 驗證是否成功。 25 | 26 | ## hw4:CSS Diner 27 | 28 | 請完成這個小遊戲:https://flukeout.github.io/ 29 | 30 | ## hw5:Flexbox Froggy 31 | 32 | 請完成這個小遊戲:http://flexboxfroggy.com/ 33 | 34 | ## hw6:簡答題 35 | 36 | 請將答案寫在[hw6.md](hw6.md)。 37 | 38 | 1. 請找出三個課程裡面沒提到的 HTML 標籤並一一說明作用。 39 | 2. 請問什麼是盒模型(box modal) 40 | 3. 請問 display: inline, block 跟 inline-block 的差別是什麼? 41 | 4. 請問 position: static, relative, absolute 跟 fixed 的差別是什麼? 42 | -------------------------------------------------------------------------------- /homeworks/week3/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week3/example.png -------------------------------------------------------------------------------- /homeworks/week3/example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week3/example2.png -------------------------------------------------------------------------------- /homeworks/week3/hw1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week3/hw1/index.html -------------------------------------------------------------------------------- /homeworks/week3/hw2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week3/hw2/index.html -------------------------------------------------------------------------------- /homeworks/week3/hw6.md: -------------------------------------------------------------------------------- 1 | ## 請找出三個課程裡面沒提到的 HTML 標籤並一一說明作用。 2 | 3 | 4 | ## 請問什麼是盒模型(box modal) 5 | 6 | 7 | ## 請問 display: inline, block 跟 inline-block 的差別是什麼? 8 | 9 | 10 | ## 請問 position: static, relative, absolute 跟 fixed 的差別是什麼? 11 | 12 | -------------------------------------------------------------------------------- /homeworks/week4/README.md: -------------------------------------------------------------------------------- 1 | # 作業 2 | 3 | ## hw1:計算機 4 | 5 | ![](calculator.png) 6 | 7 | 可參考範例:[https://lidemy.github.io/mentor-program-kristxeng/homeworks/week4/hw1/](https://lidemy.github.io/mentor-program-kristxeng/homeworks/week4/hw1/)(第一期學生 Kris 的作品) 8 | 9 | 請用你在之前學會的網頁技術(HTML, CSS, JavaScript)打造出一個簡單的計算機,功能如下: 10 | 11 | 1. 要有 0 到 9 12 | 2. 要有加減乘除 13 | 3. 要能夠清空 14 | 15 | 計算機這一題其實要難可以到很難,這個作業的目的只是想讓你熟悉基本操作而已,所以你可以用以下的範例來測試,能夠通過就好: 16 | 17 | ### 測試1 18 | 19 | 1. 按下 123 20 | 2. 按下 + 21 | 2. 按下 456 22 | 3. 按下 = 23 | 4. 出現 579 24 | 25 | ### 測試2 26 | 27 | 1. 按下 20 28 | 2. 按下 - 29 | 2. 按下 25 30 | 3. 按下 = 31 | 4. 出現 -5 32 | 33 | ## hw2:仿 Google 表單 34 | 35 | 請實作出你們當初報名時所填寫的表單:https://docs.google.com/forms/d/e/1FAIpQLSeOTy7j1OjgI-q9xYaiGCJJn5w2TkpB1JNZZXXQwqCt3SsDsg/viewform 36 | 37 | ![](form.png) 38 | 39 | 可參考範例:[https://lidemy.github.io/mentor-program-pychiang/homeworks/week4/hw2/](https://lidemy.github.io/mentor-program-pychiang/homeworks/week4/hw2/)(第一期學生 pychiang 的作品) 40 | 41 | 背景隨便用一個顏色就好了,重點是實做出表單內容以及驗證。UI 可以不用完全一樣,只要功能有做出來就好,UI 只是讓你參考的。 42 | 43 | 功能如下: 44 | 45 | 1. 文字輸入框可以選擇必填或是非必填 46 | 2. 送出表單時,必填的地方如果空白,要能夠把背景變紅色並且提示使用者 47 | 3. 成功提交之後,把表單的資料輸出在 console,並且用`alert`跳出提示即可 48 | 49 | ## hw3:仿 Twitch 頻道頁面 50 | 51 | 請串接 [Twitch API v5](https://dev.twitch.tv/docs/v5/),顯示出 League of Legends 目前正在直播的前 20 個實況。 52 | 53 | ![](twitch.png) 54 | 55 | 1. [Twitch API](https://dev.twitch.tv/docs/v5/)裡面有一個 API 是可以拿到現在正在直播的某個遊戲底下的資料,API 的描述是「Gets a list of live streams.」,看到這行就代表你找對 API 了。 56 | 2. API 要帶的參數有一個 `game` 的欄位,請帶`League%20of%20Legends` 57 | 3. 請顯示 20 個實況,不多不少,要剛好 20 個 58 | 59 | (基本上這題就是直接照搬我之前在別的地方出過的[作業](https://github.com/aszx87410/frontend-intermediate-course/blob/master/homeworks/hw4.md)) 60 | 61 | ## hw4:化繁為簡 62 | 63 | 每次在操縱 DOM 物件時,都需要輸入`document.querySelector()`,重複幾次之後會覺得有點煩瑣,所以我們可以實作出一個簡單的 function 叫做`q`,可以快速的選取到你要的元素,接著利用選到之後的這個物件進行常見的操作(`hide`跟`show`) 64 | 65 | 可以參考以下範例,只要能夠按照以下範例運行即可: 66 | 67 | ``` js 68 | var element = q('.title') 69 | element.hide() // 隱藏 70 | element.show() // 顯示 71 | 72 | ``` 73 | ## hw5:簡答題 74 | 75 | 1. 什麼是 DOM? 76 | 2. 什麼是 Ajax? 77 | 3. HTTP method 有哪幾個?有什麼不一樣? 78 | 4. `GET` 跟 `POST` 有哪些區別,可以試著舉幾個例子嗎? 79 | 5. 什麼是 RESTful API? 80 | 6. JSON 是什麼? 81 | 7. JSONP 是什麼? 82 | 8. 要如何存取跨網域的 API? 83 | -------------------------------------------------------------------------------- /homeworks/week4/calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week4/calculator.png -------------------------------------------------------------------------------- /homeworks/week4/form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week4/form.png -------------------------------------------------------------------------------- /homeworks/week4/hw1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week4/hw1/index.html -------------------------------------------------------------------------------- /homeworks/week4/hw2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week4/hw2/index.html -------------------------------------------------------------------------------- /homeworks/week4/hw3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week4/hw3/index.html -------------------------------------------------------------------------------- /homeworks/week4/hw4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week4/hw4/index.html -------------------------------------------------------------------------------- /homeworks/week4/twitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week4/twitch.png -------------------------------------------------------------------------------- /homeworks/week5/README.md: -------------------------------------------------------------------------------- 1 | # 作業 2 | 3 | ### 注意:hw2 與 hw3 寫在一起就好,不用分開。然後記得把你連線到資料庫的檔案(conn.php),加入`.gitignore`,否則這檔案會被放到 GitHub 上,大家就知道資料庫的帳號密碼了。 4 | 5 | ## hw1:設計留言板 Database 結構 6 | 7 | 在開始動手做之前,需要先花點時間想好怎麼樣規劃你的資料庫結構,確定沒問題以後再下去動手實作。 8 | 9 | 我們接下來要做的作業是:留言板。 10 | 11 | 可以參考以下需求來想要怎麼設計資料庫結構: 12 | 13 | 1. 身為使用者,在新增留言時應該可以輸入暱稱跟留言內容 14 | 2. 身為使用者,可以在別人的留言底下新增留言,一樣可以輸入暱稱跟留言內容 15 | 3. 身為系統,應該每頁只顯示十筆留言,並且可以讓使用者換頁 16 | 4. 身為系統,應該顯示出留言者的暱稱跟留言內容以及留言時間 17 | 5. 身為系統,在顯示留言時應該一併列出底下所有的子留言 18 | 6. 身為系統,顯示留言時應該按照時間排序,最後留的顯示在最上面 19 | 20 | 請把答案依照格式寫在:[hw1.md](hw1.md) 21 | 22 | ## hw2:留言板 23 | 24 | 請實作出一個簡易的留言版頁面,需要以下元素: 25 | 26 | 1. 有一個留言的區塊可以新增留言 27 | 2. 能夠顯示留言 28 | 29 | 可參考以下示意圖(擷取自[iT 邦幫忙](https://ithelp.ithome.com.tw/articles/10185630)) 30 | 31 | ![](board.png) 32 | ![](board2.png) 33 | 34 | 不用做得像上面那麼精緻,只要基本功能有達成就好。例如說留言的區塊只要能輸入純文字就夠了,留言區左邊的那個按讚數也可以不用實作。 35 | 36 | 可以參考上面附的需求來實作: 37 | 38 | 1. 身為使用者,在新增留言時應該可以輸入暱稱跟留言內容 39 | 2. 身為使用者,可以在別人的留言底下新增留言,一樣可以輸入暱稱跟留言內容 40 | 3. 身為系統,應該每頁只顯示十筆留言,並且可以讓使用者換頁 41 | 4. 身為系統,應該顯示出留言者的暱稱跟留言內容以及留言時間 42 | 5. 身為系統,在顯示留言時應該一併列出底下所有的子留言 43 | 6. 身為系統,顯示留言時應該按照時間排序,最後留的顯示在最上面 44 | 45 | ## hw3:會員系統 46 | 47 | 上面的留言板系統完成之後,要來多加一個功能,那就是會員系統。現在的系統是開放每個訪客可以自己取暱稱,但有了會員系統以後,必須要是會員才能夠留言。 48 | 49 | 這個時候問題就來了,應該要怎麼實作會員系統呢? 50 | 51 | 最大的問題是: 52 | 53 | > 每個 Request 之間都是獨立的,在會員登入之後,你要怎麼知道上一個 Request 跟現在的是同一個人呢? 54 | 55 | 意思就是,你要怎麼知道使用者已經登入了?你要怎麼記錄這個狀態? 56 | 57 | 在瀏覽器這邊,我們有個東西可以使用,叫做 Cookie,其實它就是可以讓瀏覽器儲存資料的地方。而且呢,Server 端可以主動把資料存到 Cookie 去。 58 | 59 | 在 PHP 裡面,你可以使用`setcookie`函式達成這件事。 60 | 61 | ``` php 62 | // 設定一個 24 小時之後會過期的 Cookie 63 | setcookie("member_id", "001", time()+3600*24); 64 | ``` 65 | 66 | 如此一來,在會員登入之後,我們就能夠利用 setcookie,把會員的資料存到使用者瀏覽器的 cookie 裡面。而瀏覽器在送出 request 的時候,也會把 cookie 的內容一起帶上來,你可以用 `$_COOKIE[$cookie_name]` 來取得。 67 | 68 | ``` php 69 | if(!isset($_COOKIE["member_id"])) { 70 | echo "not login"; 71 | } else { 72 | echo "member id: " . $_COOKIE["member_id"]; 73 | } 74 | ``` 75 | 76 | 有了 Cookie 之後,我們就能夠知道使用者是不是登入狀態了。那如果要登出的話呢?也很簡單,只要把 cookie 的內容清掉就好了(換句話說,就是設定一個內容為空的 Cookie),這樣子使用者下次再拜訪頁面時,就會跳出需要登入的提示了。 77 | 78 | 會員系統的資料庫設計可參考以下的結構: 79 | 80 | Table 名稱:users 81 | 82 | | 欄位名稱 | 欄位型態 | 說明 | 83 | |----------|----------|------| 84 | | id | integer | 使用者 id | 85 | | username | VARCHAR(16) | 帳號 | 86 | | password | VARCHAR(16) | 密碼 | 87 | | nickname | VARCHAR(64) | 暱稱 | 88 | 89 | 接著,你需要實作的就是以下幾個頁面: 90 | 91 | 1. 註冊頁面 92 | 2. 登入頁面 93 | 3. 登出頁面 94 | 95 | 以及把原本的留言板改成需要登入才能夠留言,並且自動帶入使用者的暱稱。 96 | 97 | ## hw4:簡答題 98 | 99 | 1. 資料庫欄位型態 VARCHAR 跟 TEXT 的差別是什麼 100 | 2. Cookie 是什麼?在 HTTP 這一層要怎麼設定 Cookie,瀏覽器又會以什麼形式帶去 Server? 101 | 3. 我們本週實作的會員系統,你能夠想到什麼潛在的問題嗎? 102 | -------------------------------------------------------------------------------- /homeworks/week5/board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week5/board.png -------------------------------------------------------------------------------- /homeworks/week5/board2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week5/board2.png -------------------------------------------------------------------------------- /homeworks/week5/hw1.md: -------------------------------------------------------------------------------- 1 | 資料庫名稱:comments 2 | 3 | | 欄位名稱 | 欄位型態 | 說明 | 4 | |----------|----------|------| 5 | | id | integer | 留言 id | 6 | | content | text | 留言內容 | 7 | -------------------------------------------------------------------------------- /homeworks/week5/hw2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week5/hw2/index.html -------------------------------------------------------------------------------- /homeworks/week5/hw4.md: -------------------------------------------------------------------------------- 1 | ## 資料庫欄位型態 VARCHAR 跟 TEXT 的差別是什麼 2 | 3 | 4 | 5 | ## Cookie 是什麼?在 HTTP 這一層要怎麼設定 Cookie,瀏覽器又會以什麼形式帶去 Server? 6 | 7 | 8 | 9 | 10 | ## 我們本週實作的會員系統,你能夠想到什麼潛在的問題嗎? 11 | 12 | 13 | -------------------------------------------------------------------------------- /homeworks/week6/README.md: -------------------------------------------------------------------------------- 1 | # 作業 2 | 3 | ### 注意:這週的 hw1~hw4 是連續的作業,只要交一份就好,不用每一個都特地交一個 4 | 5 | ## hw1:加強留言板 6 | 7 | 在上次的作業中,只有顯示留言而已。 8 | 9 | 而這次的作業,我們要再多加幾個功能,讓這個留言板變得更完整。 10 | 11 | 1. 會員可以刪除自己的留言 12 | 2. 會員可以編輯自己的留言 13 | 3. 會員在自己的留言底下回覆的話,背景要顯示不同的顏色 14 | 15 | ## hw2:幫密碼穿衣服 16 | 17 | 在課程中有提到上次寫的會員系統的缺陷之一,那就是密碼存明碼。密碼存明碼的風險就是一旦你的伺服器被入侵,資料庫被偷走的時候,使用者的密碼就外洩了。 18 | 19 | 你可能會問說:「所以,難道資料庫不能存密碼嗎?」 20 | 21 | 是的,我們要改存「另外一種形式」。 22 | 23 | 這是什麼意思呢?有一種東西叫做:Hash function,中文翻作雜湊函數,這個函數的重點就是它是單向的。你輸入 123 可以得到 202cb962ac59075b964b07152d234b70,但你沒辦法從 202cb962ac59075b964b07152d234b70 推出輸入是 123。 24 | 25 | 聽起來很神奇對吧? 26 | 27 | 所以我們的密碼就必須利用這種 hash function,在存入資料庫以前先轉變成另外一種形式。在驗證密碼的時候也是同理,我們不驗證密碼,而是驗證`hash_function(password)`跟資料庫裡面所存的密碼是不是一致。 28 | 29 | 這樣一來,就算我們的資料庫整個被偷走,駭客們還是不知道使用者的密碼是什麼(或其實是說很難知道啦,要花很多時間)。 30 | 31 | PHP 在 5.5 以上提供了兩個函式:`password_hash`跟`password_verify`,請你利用這兩個函式把之前會員註冊跟登入的頁面改寫,讓你的系統變得更安全一點。 32 | 33 | ## hw3:通行證 34 | 35 | 在上一週的作業裡面,我們把會員的帳號存在 Cookie 裡面,藉此判斷會員是不是已經登入了,以及驗證身份。可是這樣子做其實會有問題產生,首先,先跟我唸一遍資安金句: 36 | 37 | > 千萬不要相信來自 Client 端的資料 38 | 39 | 為什麼?因為只要是存在 Client 端的資料,都是可以被篡改的。假設有人把 Cookie 裡面的會員帳號改成:admin,那他就可以以管理員的身份登入了。 40 | 41 | 那要怎麼辦才好呢? 42 | 43 | 你可以回想你要去商業辦公大樓面試的時候,通常會要你在櫃檯換證。換了證之後,認證不認人,你的證是誰,你就是誰。在會員系統的實作上面,我們也可以參考這一個機制。 44 | 45 | 1. 會員輸入帳號密碼,按下登入 46 | 2. 若錯誤,返回錯誤訊息 47 | 3. 若正確,亂數產生一個通行證 ID,並且在資料庫裡面記下通行證 ID 與會員 ID 的對應關係 48 | 4. 把通行證 ID 設置到 Cookie 49 | 5. 下次再發 Request 來,就會把通行證 ID 一起帶上來 50 | 6. 檢查通行證 ID 是否有對應到的 ID,有的話就代表是那個人 51 | 52 | 我們引入了通行證的機制以後,就不用怕有人會竄改 Client 端的資料了,除非通行證被偷走,不然不可能用猜的把通行證 ID 猜出來。(所以你的通行證 ID 通常會長得很像亂碼) 53 | 54 | 現在這個作業,就要你把會員系統的驗證換成上面這個通行證的機制,你會需要在資料庫新增一個 Table 來儲存通行證跟帳號的對應關係,可參考以下結構: 55 | 56 | Table 名稱:users_certificate 57 | 58 | | 欄位名稱 | 欄位型態 | 說明 | 59 | |----------|----------|------| 60 | | id | VARCHAR(32) | 通行證 id | 61 | | username | VARCHAR(16) | 帳號 | 62 | 63 | 64 | ## hw4:修補漏洞 65 | 66 | 如同我在課程中提過的,上週做出來的網頁裡面,會有兩個網頁最知名的漏洞: 67 | 68 | 1. SQL Injection 69 | 2. XSS 70 | 71 | 現在請你試試看對你上週做出來的網頁做這兩種攻擊,看看是否能成功,並且修補這兩個漏洞。 72 | 73 | ## hw5:簡答題 74 | 75 | 1. 請說明 SQL Injection 的攻擊原理以及防範方法 76 | 2. 請說明 XSS 的攻擊原理以及防範方法 77 | 3. 請說明 CSRF 的攻擊原理以及防範方法 78 | 4. 請舉出三種不同的雜湊函數 79 | 5. 請去查什麼是 Session,以及 Session 跟 Cookie 的差別 80 | 6. `include`、`require`、`include_once`、`require_once` 的差別 81 | -------------------------------------------------------------------------------- /homeworks/week6/hw1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week6/hw1/index.html -------------------------------------------------------------------------------- /homeworks/week6/hw2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week6/hw2/index.html -------------------------------------------------------------------------------- /homeworks/week6/hw3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week6/hw3/index.html -------------------------------------------------------------------------------- /homeworks/week6/hw4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week6/hw4/index.html -------------------------------------------------------------------------------- /homeworks/week6/hw5.md: -------------------------------------------------------------------------------- 1 | ## 請說明 SQL Injection 的攻擊原理以及防範方法 2 | 3 | 4 | ## 請說明 XSS 的攻擊原理以及防範方法 5 | 6 | 7 | ## 請說明 CSRF 的攻擊原理以及防範方法 8 | 9 | 10 | ## 請舉出三種不同的雜湊函數 11 | 12 | 13 | ## 請去查什麼是 Session,以及 Session 跟 Cookie 的差別 14 | 15 | ## `include`、`require`、`include_once`、`require_once` 的差別 -------------------------------------------------------------------------------- /homeworks/week7/README.md: -------------------------------------------------------------------------------- 1 | # 作業 2 | 3 | ## hw1:實作基本網格系統 4 | 5 | 其實網格系統說穿了,就只是在不同寬度的時候依照比例調整 column 的寬度而已。這一個作業,你要實作出基本的網格系統,詳細規格可參考下面: 6 | 7 | 1. 每一個 row 有 12 格 8 | 2. 有一個叫做 container 的 class 會把裡面的內容置中,寬度則是 960px 9 | 3. 一共有 12 種 col 的 class,col-1, col-2...col-12 10 | 11 | 只要螢幕寬度小於 720px,每一格都會佔滿整個 row。 12 | 13 | ## hw2:超基礎 Todo list 14 | 15 | ![](todo.png) 16 | 17 | 請你完成一個很簡單的 Todo List,需要有以下功能: 18 | 19 | 1. 身為使用者,我可以新增 todo item 20 | 2. 身為使用者,我可以刪除 todo item 21 | 3. 身為使用者,我可以標記某個 todo item 已完成 22 | 23 | ## hw3:加強留言板 24 | 25 | 之前在課程中講過 Bootstrap 這一個好用的 library,能夠讓你把版面變得好看一點,現在就請你利用 Bootstrap 改造之前的留言板 UI。 26 | 27 | 另外,請把發送留言跟刪除留言的地方改成 ajax,新增留言跟刪除的時候都不用換頁,藉此增進使用者體驗。 28 | 29 | ## hw4:簡答題 30 | 31 | 1. Bootstrap 是什麼? 32 | 2. 請簡介網格系統以及與 RWD 的關係 33 | 3. 請找出任何一個與 Bootstrap 類似的 library 34 | 4. jQuery 是什麼? 35 | 5. jQuery 與 vanilla JS 的關係是什麼? 36 | -------------------------------------------------------------------------------- /homeworks/week7/hw1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week7/hw1/index.html -------------------------------------------------------------------------------- /homeworks/week7/hw2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week7/hw2/index.html -------------------------------------------------------------------------------- /homeworks/week7/hw3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week7/hw3/index.html -------------------------------------------------------------------------------- /homeworks/week7/hw4.md: -------------------------------------------------------------------------------- 1 | ## Bootstrap 是什麼? 2 | 3 | 4 | 5 | ## 請簡介網格系統以及與 RWD 的關係 6 | 7 | 8 | 9 | ## 請找出任何一個與 Bootstrap 類似的 library 10 | 11 | 12 | 13 | ## jQuery 是什麼? 14 | 15 | 16 | 17 | ## jQuery 與 vanilla JS 的關係是什麼? 18 | 19 | 20 | -------------------------------------------------------------------------------- /homeworks/week7/todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week7/todo.png -------------------------------------------------------------------------------- /homeworks/week8/README.md: -------------------------------------------------------------------------------- 1 | # 作業 2 | 3 | ## hw1:短網址系統設計 4 | 5 | 請你畫出一張短網址服務的後端系統架構圖,越詳細越好,可以考慮到如何增進效能、scaling 以及備份資料。 6 | 7 | 沒靈感的話可參考:[短网址(short URL)系统的原理及其实现](https://hufangyun.com/2017/short-url/)、[Design TinyURL](https://leetcode.com/problems/design-tinyurl/description/) 8 | 9 | 圖片可參考下圖(這是一張 Mobile 與 Web 前端如何跟後端溝通的圖,這示意圖只是大概講一下應該要怎麼畫,但你實際畫出來一定跟這個長得不一樣): 10 | ![](http://ithelp.ithome.com.tw/upload/images/20161211/20091346nyV3Lex42r.jpg) 11 | 12 | ## hw2:部署 13 | 14 | 請把你之前寫的 PHP 程式部署到自己的機器上面,並且對應到自己購買的網域。 15 | 16 | 除此之外呢,我們在第六週的時候有實作過「通行證」的機制,其實在 PHP 裡面有內建的可以用,而這個機制就叫做 session。可以參考 [PHP 5 Sessions](https://www.w3schools.com/php/php_sessions.asp) 或是 [PHP Session 使用介紹,啟用與清除 session](http://www.webtech.tw/info.php?tid=33),把之前留言板的作業改成用 PHP 內建的 session 機制。 17 | 18 | 可參考其他同學的心得(特別感謝 @yuchun33 跟 @futianshen ): 19 | 1. [部署 AWS EC2 遠端主機 + Ubuntu LAMP 環境 + phpmyadmin ](https://github.com/Lidemy/mentor-program-2nd-yuchun33/issues/15) 20 | 2. [一小時完成 VPS (Virtual Private Server) 部署 ](https://github.com/Lidemy/mentor-program-2nd-futianshen/issues/21) 21 | 22 | ## hw3:Transaction 練習 23 | 24 | Transaction 就是一筆交易的意思,在後端應用上非常常見。 25 | 26 | 舉例來說,假設我現在做一個購物網站,然後購物車裡面有五個產品,接著我按下結帳購買按鈕。此時我會執行五個 SQL Query,分別把每一個產品的剩餘數量都扣一,接著新增一筆訂單紀錄。 27 | 28 | 可是,假如有一個產品剛好賣完了,那怎麼辦呢?我必須把剛剛扣的都自己再加回去,這樣並不是一個好方法。因此我們需要將上面的 SQL Query 都放入一個 Transaction 裡面,要嘛就是全部成功,要嘛就是全部失敗。 29 | 30 | 現在請你寫一個非常簡單的購物系統,來試試看 Transaction。 31 | 32 | ## hw4:簡答題 33 | 34 | 1. 什麼是 DNS?Google 有提供的公開的 DNS,對 Google 的好處以及對一般大眾的好處是什麼? 35 | 2. 什麼是資料庫的 lock?為什麼我們需要 lock? 36 | 3. NoSQL 跟 SQL 的差別在哪裡? 37 | 4. 資料庫的 ACID 是什麼? 38 | 39 | -------------------------------------------------------------------------------- /homeworks/week8/hw3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week8/hw3/index.html -------------------------------------------------------------------------------- /homeworks/week8/hw4.md: -------------------------------------------------------------------------------- 1 | ## 什麼是 DNS?Google 有提供的公開的 DNS,對 Google 的好處以及對一般大眾的好處是什麼? 2 | 3 | 4 | ## 什麼是資料庫的 lock?為什麼我們需要 lock? 5 | 6 | 7 | ## NoSQL 跟 SQL 的差別在哪裡? 8 | 9 | 10 | ## 資料庫的 ACID 是什麼? -------------------------------------------------------------------------------- /homeworks/week9/README.md: -------------------------------------------------------------------------------- 1 | # 作業 2 | 3 | ## hw1:CSS 預處理器 4 | 5 | 自從學會 CSS 預處理器之後,寫 CSS 的複雜度一下子降低了很多,一方面是巢狀 CSS 可以很簡單的實作出來,另一方面是多了變數這個好用的東西。 6 | 7 | 現在請你把以前寫的 CSS 都用你自己挑的 CSS preprocessor(LESS, SASS, Stylus)來改寫,並且串上 PostCSS 讓它自動幫你加上 prefix。 8 | 9 | ## hw2:實作出 Stack 與 Queue 10 | 11 | 請你實作出`Stack`跟`Queue`兩個 Function,讓以下程式碼可以順利執行: 12 | (禁止使用內建函式`push`與`pop`) 13 | 14 | ``` js 15 | var stack = new Stack() 16 | stack.push(10) 17 | stack.push(5) 18 | console.log(stack.pop()) // 5 19 | console.log(stack.pop()) // 10 20 | 21 | var queue = new Queue() 22 | queue.push(1) 23 | queue.push(2) 24 | console.log(queue.pop()) // 1 25 | console.log(queue.pop()) // 2 26 | ``` 27 | ## hw3:Event Loop 28 | 29 | 在 JavaScript 裡面,一個很重要的概念就是 Event Loop,是 JavaScript 底層在執行程式碼時的運作方式。請你說明以下程式碼會輸出什麼,以及盡可能詳細的解釋原因。 30 | 31 | ``` js 32 | console.log(1) 33 | setTimeout(() => { 34 | console.log(2) 35 | }, 0) 36 | console.log(3) 37 | setTimeout(() => { 38 | console.log(4) 39 | }, 0) 40 | console.log(5) 41 | ``` 42 | 43 | ## hw4:HTTP Cache 44 | 45 | 請閱讀這篇文章:[循序漸進理解 HTTP Cache 機制](https://blog.techbridge.cc/2017/06/17/cache-introduction/)來理解 HTTP Cache 機制。 46 | 47 | ## hw5:簡答題 48 | 49 | 1. CSS 預處理器是什麼?我們可以不用它嗎? 50 | 2. 請舉出任何一個跟 HTTP Cache 有關的 Header 並說明其作用。 51 | 3. Stack 跟 Queue 的差別是什麼? 52 | 4. 請去查詢資料並解釋 CSS Selector 的權重是如何計算的(不要複製貼上,請自己思考過一遍再自己寫出來,沒有很完整也行) 53 | -------------------------------------------------------------------------------- /homeworks/week9/hw1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week9/hw1/index.html -------------------------------------------------------------------------------- /homeworks/week9/hw2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lidemy/mentor-program-2nd/a62cab579a59e667fabc4786a15a370001664ed1/homeworks/week9/hw2/index.html -------------------------------------------------------------------------------- /homeworks/week9/hw5.md: -------------------------------------------------------------------------------- 1 | ## CSS 預處理器是什麼?我們可以不用它嗎? 2 | 3 | 4 | ## 請舉出任何一個跟 HTTP Cache 有關的 Header 並說明其作用。 5 | 6 | 7 | ## Stack 跟 Queue 的差別是什麼? 8 | 9 | ## 請去查詢資料並解釋 CSS Selector 的權重是如何計算的(不要複製貼上,請自己思考過一遍再自己寫出來) -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mentor-program-2nd", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "jest --env=node" 8 | }, 9 | "author": "", 10 | "license": "MIT", 11 | "dependencies": { 12 | "babel-core": "^6.26.0", 13 | "babel-jest": "^22.0.6", 14 | "babel-preset-es2015": "^6.24.1", 15 | "jest": "^22.0.6", 16 | "regenerator-runtime": "^0.11.1" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.0.0-beta.35": 6 | version "7.0.0-beta.37" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0-beta.37.tgz#2da1dd3b1b57bfdea777ddc378df7cd12fe40171" 8 | dependencies: 9 | chalk "^2.0.0" 10 | esutils "^2.0.2" 11 | js-tokens "^3.0.0" 12 | 13 | "@types/node@*": 14 | version "9.3.0" 15 | resolved "https://registry.yarnpkg.com/@types/node/-/node-9.3.0.tgz#3a129cda7c4e5df2409702626892cb4b96546dd5" 16 | 17 | abab@^1.0.3: 18 | version "1.0.4" 19 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e" 20 | 21 | abbrev@1: 22 | version "1.1.1" 23 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 24 | 25 | acorn-globals@^4.0.0: 26 | version "4.1.0" 27 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.1.0.tgz#ab716025dbe17c54d3ef81d32ece2b2d99fe2538" 28 | dependencies: 29 | acorn "^5.0.0" 30 | 31 | acorn@^5.0.0, acorn@^5.1.2: 32 | version "5.3.0" 33 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.3.0.tgz#7446d39459c54fb49a80e6ee6478149b940ec822" 34 | 35 | ajv@^4.9.1: 36 | version "4.11.8" 37 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 38 | dependencies: 39 | co "^4.6.0" 40 | json-stable-stringify "^1.0.1" 41 | 42 | ajv@^5.1.0: 43 | version "5.5.2" 44 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 45 | dependencies: 46 | co "^4.6.0" 47 | fast-deep-equal "^1.0.0" 48 | fast-json-stable-stringify "^2.0.0" 49 | json-schema-traverse "^0.3.0" 50 | 51 | align-text@^0.1.1, align-text@^0.1.3: 52 | version "0.1.4" 53 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 54 | dependencies: 55 | kind-of "^3.0.2" 56 | longest "^1.0.1" 57 | repeat-string "^1.5.2" 58 | 59 | amdefine@>=0.0.4: 60 | version "1.0.1" 61 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 62 | 63 | ansi-escapes@^3.0.0: 64 | version "3.0.0" 65 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" 66 | 67 | ansi-regex@^2.0.0: 68 | version "2.1.1" 69 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 70 | 71 | ansi-regex@^3.0.0: 72 | version "3.0.0" 73 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 74 | 75 | ansi-styles@^2.2.1: 76 | version "2.2.1" 77 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 78 | 79 | ansi-styles@^3.1.0, ansi-styles@^3.2.0: 80 | version "3.2.0" 81 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 82 | dependencies: 83 | color-convert "^1.9.0" 84 | 85 | anymatch@^1.3.0: 86 | version "1.3.2" 87 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 88 | dependencies: 89 | micromatch "^2.1.5" 90 | normalize-path "^2.0.0" 91 | 92 | append-transform@^0.4.0: 93 | version "0.4.0" 94 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 95 | dependencies: 96 | default-require-extensions "^1.0.0" 97 | 98 | aproba@^1.0.3: 99 | version "1.2.0" 100 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 101 | 102 | are-we-there-yet@~1.1.2: 103 | version "1.1.4" 104 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 105 | dependencies: 106 | delegates "^1.0.0" 107 | readable-stream "^2.0.6" 108 | 109 | argparse@^1.0.7: 110 | version "1.0.9" 111 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 112 | dependencies: 113 | sprintf-js "~1.0.2" 114 | 115 | arr-diff@^2.0.0: 116 | version "2.0.0" 117 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 118 | dependencies: 119 | arr-flatten "^1.0.1" 120 | 121 | arr-flatten@^1.0.1: 122 | version "1.1.0" 123 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 124 | 125 | array-equal@^1.0.0: 126 | version "1.0.0" 127 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 128 | 129 | array-unique@^0.2.1: 130 | version "0.2.1" 131 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 132 | 133 | arrify@^1.0.1: 134 | version "1.0.1" 135 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 136 | 137 | asn1@~0.2.3: 138 | version "0.2.3" 139 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 140 | 141 | assert-plus@1.0.0, assert-plus@^1.0.0: 142 | version "1.0.0" 143 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 144 | 145 | assert-plus@^0.2.0: 146 | version "0.2.0" 147 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 148 | 149 | astral-regex@^1.0.0: 150 | version "1.0.0" 151 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 152 | 153 | async@^1.4.0: 154 | version "1.5.2" 155 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 156 | 157 | async@^2.1.4: 158 | version "2.6.0" 159 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4" 160 | dependencies: 161 | lodash "^4.14.0" 162 | 163 | asynckit@^0.4.0: 164 | version "0.4.0" 165 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 166 | 167 | aws-sign2@~0.6.0: 168 | version "0.6.0" 169 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 170 | 171 | aws-sign2@~0.7.0: 172 | version "0.7.0" 173 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 174 | 175 | aws4@^1.2.1, aws4@^1.6.0: 176 | version "1.6.0" 177 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 178 | 179 | babel-code-frame@^6.26.0: 180 | version "6.26.0" 181 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 182 | dependencies: 183 | chalk "^1.1.3" 184 | esutils "^2.0.2" 185 | js-tokens "^3.0.2" 186 | 187 | babel-core@^6.0.0, babel-core@^6.26.0: 188 | version "6.26.0" 189 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 190 | dependencies: 191 | babel-code-frame "^6.26.0" 192 | babel-generator "^6.26.0" 193 | babel-helpers "^6.24.1" 194 | babel-messages "^6.23.0" 195 | babel-register "^6.26.0" 196 | babel-runtime "^6.26.0" 197 | babel-template "^6.26.0" 198 | babel-traverse "^6.26.0" 199 | babel-types "^6.26.0" 200 | babylon "^6.18.0" 201 | convert-source-map "^1.5.0" 202 | debug "^2.6.8" 203 | json5 "^0.5.1" 204 | lodash "^4.17.4" 205 | minimatch "^3.0.4" 206 | path-is-absolute "^1.0.1" 207 | private "^0.1.7" 208 | slash "^1.0.0" 209 | source-map "^0.5.6" 210 | 211 | babel-generator@^6.18.0, babel-generator@^6.26.0: 212 | version "6.26.0" 213 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 214 | dependencies: 215 | babel-messages "^6.23.0" 216 | babel-runtime "^6.26.0" 217 | babel-types "^6.26.0" 218 | detect-indent "^4.0.0" 219 | jsesc "^1.3.0" 220 | lodash "^4.17.4" 221 | source-map "^0.5.6" 222 | trim-right "^1.0.1" 223 | 224 | babel-helper-call-delegate@^6.24.1: 225 | version "6.24.1" 226 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 227 | dependencies: 228 | babel-helper-hoist-variables "^6.24.1" 229 | babel-runtime "^6.22.0" 230 | babel-traverse "^6.24.1" 231 | babel-types "^6.24.1" 232 | 233 | babel-helper-define-map@^6.24.1: 234 | version "6.26.0" 235 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 236 | dependencies: 237 | babel-helper-function-name "^6.24.1" 238 | babel-runtime "^6.26.0" 239 | babel-types "^6.26.0" 240 | lodash "^4.17.4" 241 | 242 | babel-helper-function-name@^6.24.1: 243 | version "6.24.1" 244 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 245 | dependencies: 246 | babel-helper-get-function-arity "^6.24.1" 247 | babel-runtime "^6.22.0" 248 | babel-template "^6.24.1" 249 | babel-traverse "^6.24.1" 250 | babel-types "^6.24.1" 251 | 252 | babel-helper-get-function-arity@^6.24.1: 253 | version "6.24.1" 254 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 255 | dependencies: 256 | babel-runtime "^6.22.0" 257 | babel-types "^6.24.1" 258 | 259 | babel-helper-hoist-variables@^6.24.1: 260 | version "6.24.1" 261 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 262 | dependencies: 263 | babel-runtime "^6.22.0" 264 | babel-types "^6.24.1" 265 | 266 | babel-helper-optimise-call-expression@^6.24.1: 267 | version "6.24.1" 268 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 269 | dependencies: 270 | babel-runtime "^6.22.0" 271 | babel-types "^6.24.1" 272 | 273 | babel-helper-regex@^6.24.1: 274 | version "6.26.0" 275 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 276 | dependencies: 277 | babel-runtime "^6.26.0" 278 | babel-types "^6.26.0" 279 | lodash "^4.17.4" 280 | 281 | babel-helper-replace-supers@^6.24.1: 282 | version "6.24.1" 283 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 284 | dependencies: 285 | babel-helper-optimise-call-expression "^6.24.1" 286 | babel-messages "^6.23.0" 287 | babel-runtime "^6.22.0" 288 | babel-template "^6.24.1" 289 | babel-traverse "^6.24.1" 290 | babel-types "^6.24.1" 291 | 292 | babel-helpers@^6.24.1: 293 | version "6.24.1" 294 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 295 | dependencies: 296 | babel-runtime "^6.22.0" 297 | babel-template "^6.24.1" 298 | 299 | babel-jest@^22.0.6: 300 | version "22.0.6" 301 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-22.0.6.tgz#807a2a5f5fad7789c57174a955cd14b11045299f" 302 | dependencies: 303 | babel-plugin-istanbul "^4.1.5" 304 | babel-preset-jest "^22.0.6" 305 | 306 | babel-messages@^6.23.0: 307 | version "6.23.0" 308 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 309 | dependencies: 310 | babel-runtime "^6.22.0" 311 | 312 | babel-plugin-check-es2015-constants@^6.22.0: 313 | version "6.22.0" 314 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 315 | dependencies: 316 | babel-runtime "^6.22.0" 317 | 318 | babel-plugin-istanbul@^4.1.5: 319 | version "4.1.5" 320 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.5.tgz#6760cdd977f411d3e175bb064f2bc327d99b2b6e" 321 | dependencies: 322 | find-up "^2.1.0" 323 | istanbul-lib-instrument "^1.7.5" 324 | test-exclude "^4.1.1" 325 | 326 | babel-plugin-jest-hoist@^22.0.6: 327 | version "22.0.6" 328 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-22.0.6.tgz#551269ded350a15d6585da35d16d449df30d66c4" 329 | 330 | babel-plugin-syntax-object-rest-spread@^6.13.0: 331 | version "6.13.0" 332 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 333 | 334 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 335 | version "6.22.0" 336 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 337 | dependencies: 338 | babel-runtime "^6.22.0" 339 | 340 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 341 | version "6.22.0" 342 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 343 | dependencies: 344 | babel-runtime "^6.22.0" 345 | 346 | babel-plugin-transform-es2015-block-scoping@^6.24.1: 347 | version "6.26.0" 348 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 349 | dependencies: 350 | babel-runtime "^6.26.0" 351 | babel-template "^6.26.0" 352 | babel-traverse "^6.26.0" 353 | babel-types "^6.26.0" 354 | lodash "^4.17.4" 355 | 356 | babel-plugin-transform-es2015-classes@^6.24.1: 357 | version "6.24.1" 358 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 359 | dependencies: 360 | babel-helper-define-map "^6.24.1" 361 | babel-helper-function-name "^6.24.1" 362 | babel-helper-optimise-call-expression "^6.24.1" 363 | babel-helper-replace-supers "^6.24.1" 364 | babel-messages "^6.23.0" 365 | babel-runtime "^6.22.0" 366 | babel-template "^6.24.1" 367 | babel-traverse "^6.24.1" 368 | babel-types "^6.24.1" 369 | 370 | babel-plugin-transform-es2015-computed-properties@^6.24.1: 371 | version "6.24.1" 372 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 373 | dependencies: 374 | babel-runtime "^6.22.0" 375 | babel-template "^6.24.1" 376 | 377 | babel-plugin-transform-es2015-destructuring@^6.22.0: 378 | version "6.23.0" 379 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 380 | dependencies: 381 | babel-runtime "^6.22.0" 382 | 383 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1: 384 | version "6.24.1" 385 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 386 | dependencies: 387 | babel-runtime "^6.22.0" 388 | babel-types "^6.24.1" 389 | 390 | babel-plugin-transform-es2015-for-of@^6.22.0: 391 | version "6.23.0" 392 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 393 | dependencies: 394 | babel-runtime "^6.22.0" 395 | 396 | babel-plugin-transform-es2015-function-name@^6.24.1: 397 | version "6.24.1" 398 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 399 | dependencies: 400 | babel-helper-function-name "^6.24.1" 401 | babel-runtime "^6.22.0" 402 | babel-types "^6.24.1" 403 | 404 | babel-plugin-transform-es2015-literals@^6.22.0: 405 | version "6.22.0" 406 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 407 | dependencies: 408 | babel-runtime "^6.22.0" 409 | 410 | babel-plugin-transform-es2015-modules-amd@^6.24.1: 411 | version "6.24.1" 412 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 413 | dependencies: 414 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 415 | babel-runtime "^6.22.0" 416 | babel-template "^6.24.1" 417 | 418 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 419 | version "6.26.0" 420 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 421 | dependencies: 422 | babel-plugin-transform-strict-mode "^6.24.1" 423 | babel-runtime "^6.26.0" 424 | babel-template "^6.26.0" 425 | babel-types "^6.26.0" 426 | 427 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1: 428 | version "6.24.1" 429 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 430 | dependencies: 431 | babel-helper-hoist-variables "^6.24.1" 432 | babel-runtime "^6.22.0" 433 | babel-template "^6.24.1" 434 | 435 | babel-plugin-transform-es2015-modules-umd@^6.24.1: 436 | version "6.24.1" 437 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 438 | dependencies: 439 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 440 | babel-runtime "^6.22.0" 441 | babel-template "^6.24.1" 442 | 443 | babel-plugin-transform-es2015-object-super@^6.24.1: 444 | version "6.24.1" 445 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 446 | dependencies: 447 | babel-helper-replace-supers "^6.24.1" 448 | babel-runtime "^6.22.0" 449 | 450 | babel-plugin-transform-es2015-parameters@^6.24.1: 451 | version "6.24.1" 452 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 453 | dependencies: 454 | babel-helper-call-delegate "^6.24.1" 455 | babel-helper-get-function-arity "^6.24.1" 456 | babel-runtime "^6.22.0" 457 | babel-template "^6.24.1" 458 | babel-traverse "^6.24.1" 459 | babel-types "^6.24.1" 460 | 461 | babel-plugin-transform-es2015-shorthand-properties@^6.24.1: 462 | version "6.24.1" 463 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 464 | dependencies: 465 | babel-runtime "^6.22.0" 466 | babel-types "^6.24.1" 467 | 468 | babel-plugin-transform-es2015-spread@^6.22.0: 469 | version "6.22.0" 470 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 471 | dependencies: 472 | babel-runtime "^6.22.0" 473 | 474 | babel-plugin-transform-es2015-sticky-regex@^6.24.1: 475 | version "6.24.1" 476 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 477 | dependencies: 478 | babel-helper-regex "^6.24.1" 479 | babel-runtime "^6.22.0" 480 | babel-types "^6.24.1" 481 | 482 | babel-plugin-transform-es2015-template-literals@^6.22.0: 483 | version "6.22.0" 484 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 485 | dependencies: 486 | babel-runtime "^6.22.0" 487 | 488 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 489 | version "6.23.0" 490 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 491 | dependencies: 492 | babel-runtime "^6.22.0" 493 | 494 | babel-plugin-transform-es2015-unicode-regex@^6.24.1: 495 | version "6.24.1" 496 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 497 | dependencies: 498 | babel-helper-regex "^6.24.1" 499 | babel-runtime "^6.22.0" 500 | regexpu-core "^2.0.0" 501 | 502 | babel-plugin-transform-regenerator@^6.24.1: 503 | version "6.26.0" 504 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 505 | dependencies: 506 | regenerator-transform "^0.10.0" 507 | 508 | babel-plugin-transform-strict-mode@^6.24.1: 509 | version "6.24.1" 510 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 511 | dependencies: 512 | babel-runtime "^6.22.0" 513 | babel-types "^6.24.1" 514 | 515 | babel-preset-es2015@^6.24.1: 516 | version "6.24.1" 517 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" 518 | dependencies: 519 | babel-plugin-check-es2015-constants "^6.22.0" 520 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 521 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 522 | babel-plugin-transform-es2015-block-scoping "^6.24.1" 523 | babel-plugin-transform-es2015-classes "^6.24.1" 524 | babel-plugin-transform-es2015-computed-properties "^6.24.1" 525 | babel-plugin-transform-es2015-destructuring "^6.22.0" 526 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1" 527 | babel-plugin-transform-es2015-for-of "^6.22.0" 528 | babel-plugin-transform-es2015-function-name "^6.24.1" 529 | babel-plugin-transform-es2015-literals "^6.22.0" 530 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 531 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 532 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1" 533 | babel-plugin-transform-es2015-modules-umd "^6.24.1" 534 | babel-plugin-transform-es2015-object-super "^6.24.1" 535 | babel-plugin-transform-es2015-parameters "^6.24.1" 536 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1" 537 | babel-plugin-transform-es2015-spread "^6.22.0" 538 | babel-plugin-transform-es2015-sticky-regex "^6.24.1" 539 | babel-plugin-transform-es2015-template-literals "^6.22.0" 540 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 541 | babel-plugin-transform-es2015-unicode-regex "^6.24.1" 542 | babel-plugin-transform-regenerator "^6.24.1" 543 | 544 | babel-preset-jest@^22.0.6: 545 | version "22.0.6" 546 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-22.0.6.tgz#d13202533db9495c98663044d9f51b273d3984c8" 547 | dependencies: 548 | babel-plugin-jest-hoist "^22.0.6" 549 | babel-plugin-syntax-object-rest-spread "^6.13.0" 550 | 551 | babel-register@^6.26.0: 552 | version "6.26.0" 553 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 554 | dependencies: 555 | babel-core "^6.26.0" 556 | babel-runtime "^6.26.0" 557 | core-js "^2.5.0" 558 | home-or-tmp "^2.0.0" 559 | lodash "^4.17.4" 560 | mkdirp "^0.5.1" 561 | source-map-support "^0.4.15" 562 | 563 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 564 | version "6.26.0" 565 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 566 | dependencies: 567 | core-js "^2.4.0" 568 | regenerator-runtime "^0.11.0" 569 | 570 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0: 571 | version "6.26.0" 572 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 573 | dependencies: 574 | babel-runtime "^6.26.0" 575 | babel-traverse "^6.26.0" 576 | babel-types "^6.26.0" 577 | babylon "^6.18.0" 578 | lodash "^4.17.4" 579 | 580 | babel-traverse@^6.18.0, babel-traverse@^6.24.1, babel-traverse@^6.26.0: 581 | version "6.26.0" 582 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 583 | dependencies: 584 | babel-code-frame "^6.26.0" 585 | babel-messages "^6.23.0" 586 | babel-runtime "^6.26.0" 587 | babel-types "^6.26.0" 588 | babylon "^6.18.0" 589 | debug "^2.6.8" 590 | globals "^9.18.0" 591 | invariant "^2.2.2" 592 | lodash "^4.17.4" 593 | 594 | babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 595 | version "6.26.0" 596 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 597 | dependencies: 598 | babel-runtime "^6.26.0" 599 | esutils "^2.0.2" 600 | lodash "^4.17.4" 601 | to-fast-properties "^1.0.3" 602 | 603 | babylon@^6.18.0: 604 | version "6.18.0" 605 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 606 | 607 | balanced-match@^1.0.0: 608 | version "1.0.0" 609 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 610 | 611 | bcrypt-pbkdf@^1.0.0: 612 | version "1.0.1" 613 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 614 | dependencies: 615 | tweetnacl "^0.14.3" 616 | 617 | block-stream@*: 618 | version "0.0.9" 619 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 620 | dependencies: 621 | inherits "~2.0.0" 622 | 623 | boom@2.x.x: 624 | version "2.10.1" 625 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 626 | dependencies: 627 | hoek "2.x.x" 628 | 629 | boom@4.x.x: 630 | version "4.3.1" 631 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" 632 | dependencies: 633 | hoek "4.x.x" 634 | 635 | boom@5.x.x: 636 | version "5.2.0" 637 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" 638 | dependencies: 639 | hoek "4.x.x" 640 | 641 | brace-expansion@^1.1.7: 642 | version "1.1.8" 643 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 644 | dependencies: 645 | balanced-match "^1.0.0" 646 | concat-map "0.0.1" 647 | 648 | braces@^1.8.2: 649 | version "1.8.5" 650 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 651 | dependencies: 652 | expand-range "^1.8.1" 653 | preserve "^0.2.0" 654 | repeat-element "^1.1.2" 655 | 656 | browser-process-hrtime@^0.1.2: 657 | version "0.1.2" 658 | resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.1.2.tgz#425d68a58d3447f02a04aa894187fce8af8b7b8e" 659 | 660 | browser-resolve@^1.11.2: 661 | version "1.11.2" 662 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 663 | dependencies: 664 | resolve "1.1.7" 665 | 666 | bser@^2.0.0: 667 | version "2.0.0" 668 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 669 | dependencies: 670 | node-int64 "^0.4.0" 671 | 672 | builtin-modules@^1.0.0: 673 | version "1.1.1" 674 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 675 | 676 | callsites@^2.0.0: 677 | version "2.0.0" 678 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 679 | 680 | camelcase@^1.0.2: 681 | version "1.2.1" 682 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 683 | 684 | camelcase@^4.1.0: 685 | version "4.1.0" 686 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 687 | 688 | caseless@~0.12.0: 689 | version "0.12.0" 690 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 691 | 692 | center-align@^0.1.1: 693 | version "0.1.3" 694 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 695 | dependencies: 696 | align-text "^0.1.3" 697 | lazy-cache "^1.0.3" 698 | 699 | chalk@^1.1.3: 700 | version "1.1.3" 701 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 702 | dependencies: 703 | ansi-styles "^2.2.1" 704 | escape-string-regexp "^1.0.2" 705 | has-ansi "^2.0.0" 706 | strip-ansi "^3.0.0" 707 | supports-color "^2.0.0" 708 | 709 | chalk@^2.0.0, chalk@^2.0.1: 710 | version "2.3.0" 711 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" 712 | dependencies: 713 | ansi-styles "^3.1.0" 714 | escape-string-regexp "^1.0.5" 715 | supports-color "^4.0.0" 716 | 717 | ci-info@^1.0.0: 718 | version "1.1.2" 719 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.2.tgz#03561259db48d0474c8bdc90f5b47b068b6bbfb4" 720 | 721 | cliui@^2.1.0: 722 | version "2.1.0" 723 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 724 | dependencies: 725 | center-align "^0.1.1" 726 | right-align "^0.1.1" 727 | wordwrap "0.0.2" 728 | 729 | cliui@^4.0.0: 730 | version "4.0.0" 731 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.0.0.tgz#743d4650e05f36d1ed2575b59638d87322bfbbcc" 732 | dependencies: 733 | string-width "^2.1.1" 734 | strip-ansi "^4.0.0" 735 | wrap-ansi "^2.0.0" 736 | 737 | co@^4.6.0: 738 | version "4.6.0" 739 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 740 | 741 | code-point-at@^1.0.0: 742 | version "1.1.0" 743 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 744 | 745 | color-convert@^1.9.0: 746 | version "1.9.1" 747 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 748 | dependencies: 749 | color-name "^1.1.1" 750 | 751 | color-name@^1.1.1: 752 | version "1.1.3" 753 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 754 | 755 | combined-stream@^1.0.5, combined-stream@~1.0.5: 756 | version "1.0.5" 757 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 758 | dependencies: 759 | delayed-stream "~1.0.0" 760 | 761 | concat-map@0.0.1: 762 | version "0.0.1" 763 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 764 | 765 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 766 | version "1.1.0" 767 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 768 | 769 | content-type-parser@^1.0.1: 770 | version "1.0.2" 771 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.2.tgz#caabe80623e63638b2502fd4c7f12ff4ce2352e7" 772 | 773 | convert-source-map@^1.4.0, convert-source-map@^1.5.0: 774 | version "1.5.1" 775 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 776 | 777 | core-js@^2.4.0, core-js@^2.5.0: 778 | version "2.5.3" 779 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e" 780 | 781 | core-util-is@1.0.2, core-util-is@~1.0.0: 782 | version "1.0.2" 783 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 784 | 785 | cross-spawn@^5.0.1: 786 | version "5.1.0" 787 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 788 | dependencies: 789 | lru-cache "^4.0.1" 790 | shebang-command "^1.2.0" 791 | which "^1.2.9" 792 | 793 | cryptiles@2.x.x: 794 | version "2.0.5" 795 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 796 | dependencies: 797 | boom "2.x.x" 798 | 799 | cryptiles@3.x.x: 800 | version "3.1.2" 801 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" 802 | dependencies: 803 | boom "5.x.x" 804 | 805 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 806 | version "0.3.2" 807 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 808 | 809 | "cssstyle@>= 0.2.37 < 0.3.0": 810 | version "0.2.37" 811 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 812 | dependencies: 813 | cssom "0.3.x" 814 | 815 | dashdash@^1.12.0: 816 | version "1.14.1" 817 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 818 | dependencies: 819 | assert-plus "^1.0.0" 820 | 821 | debug@^2.2.0, debug@^2.6.8: 822 | version "2.6.9" 823 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 824 | dependencies: 825 | ms "2.0.0" 826 | 827 | debug@^3.1.0: 828 | version "3.1.0" 829 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 830 | dependencies: 831 | ms "2.0.0" 832 | 833 | decamelize@^1.0.0, decamelize@^1.1.1: 834 | version "1.2.0" 835 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 836 | 837 | deep-extend@~0.4.0: 838 | version "0.4.2" 839 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 840 | 841 | deep-is@~0.1.3: 842 | version "0.1.3" 843 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 844 | 845 | default-require-extensions@^1.0.0: 846 | version "1.0.0" 847 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 848 | dependencies: 849 | strip-bom "^2.0.0" 850 | 851 | define-properties@^1.1.2: 852 | version "1.1.2" 853 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 854 | dependencies: 855 | foreach "^2.0.5" 856 | object-keys "^1.0.8" 857 | 858 | delayed-stream@~1.0.0: 859 | version "1.0.0" 860 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 861 | 862 | delegates@^1.0.0: 863 | version "1.0.0" 864 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 865 | 866 | detect-indent@^4.0.0: 867 | version "4.0.0" 868 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 869 | dependencies: 870 | repeating "^2.0.0" 871 | 872 | detect-libc@^1.0.2: 873 | version "1.0.3" 874 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 875 | 876 | detect-newline@^2.1.0: 877 | version "2.1.0" 878 | resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" 879 | 880 | diff@^3.2.0: 881 | version "3.4.0" 882 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.4.0.tgz#b1d85507daf3964828de54b37d0d73ba67dda56c" 883 | 884 | domexception@^1.0.0: 885 | version "1.0.0" 886 | resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.0.tgz#81fe5df81b3f057052cde3a9fa9bf536a85b9ab0" 887 | 888 | ecc-jsbn@~0.1.1: 889 | version "0.1.1" 890 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 891 | dependencies: 892 | jsbn "~0.1.0" 893 | 894 | error-ex@^1.2.0: 895 | version "1.3.1" 896 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 897 | dependencies: 898 | is-arrayish "^0.2.1" 899 | 900 | es-abstract@^1.5.1: 901 | version "1.10.0" 902 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.10.0.tgz#1ecb36c197842a00d8ee4c2dfd8646bb97d60864" 903 | dependencies: 904 | es-to-primitive "^1.1.1" 905 | function-bind "^1.1.1" 906 | has "^1.0.1" 907 | is-callable "^1.1.3" 908 | is-regex "^1.0.4" 909 | 910 | es-to-primitive@^1.1.1: 911 | version "1.1.1" 912 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 913 | dependencies: 914 | is-callable "^1.1.1" 915 | is-date-object "^1.0.1" 916 | is-symbol "^1.0.1" 917 | 918 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 919 | version "1.0.5" 920 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 921 | 922 | escodegen@^1.9.0: 923 | version "1.9.0" 924 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.0.tgz#9811a2f265dc1cd3894420ee3717064b632b8852" 925 | dependencies: 926 | esprima "^3.1.3" 927 | estraverse "^4.2.0" 928 | esutils "^2.0.2" 929 | optionator "^0.8.1" 930 | optionalDependencies: 931 | source-map "~0.5.6" 932 | 933 | esprima@^3.1.3: 934 | version "3.1.3" 935 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 936 | 937 | esprima@^4.0.0: 938 | version "4.0.0" 939 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 940 | 941 | estraverse@^4.2.0: 942 | version "4.2.0" 943 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 944 | 945 | esutils@^2.0.2: 946 | version "2.0.2" 947 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 948 | 949 | exec-sh@^0.2.0: 950 | version "0.2.1" 951 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.1.tgz#163b98a6e89e6b65b47c2a28d215bc1f63989c38" 952 | dependencies: 953 | merge "^1.1.3" 954 | 955 | execa@^0.7.0: 956 | version "0.7.0" 957 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 958 | dependencies: 959 | cross-spawn "^5.0.1" 960 | get-stream "^3.0.0" 961 | is-stream "^1.1.0" 962 | npm-run-path "^2.0.0" 963 | p-finally "^1.0.0" 964 | signal-exit "^3.0.0" 965 | strip-eof "^1.0.0" 966 | 967 | expand-brackets@^0.1.4: 968 | version "0.1.5" 969 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 970 | dependencies: 971 | is-posix-bracket "^0.1.0" 972 | 973 | expand-range@^1.8.1: 974 | version "1.8.2" 975 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 976 | dependencies: 977 | fill-range "^2.1.0" 978 | 979 | expect@^22.0.6: 980 | version "22.0.6" 981 | resolved "https://registry.yarnpkg.com/expect/-/expect-22.0.6.tgz#69e1761ecb5ba354513e546e6187beda79e18078" 982 | dependencies: 983 | ansi-styles "^3.2.0" 984 | jest-diff "^22.0.6" 985 | jest-get-type "^22.0.6" 986 | jest-matcher-utils "^22.0.6" 987 | jest-message-util "^22.0.6" 988 | jest-regex-util "^22.0.6" 989 | 990 | extend@~3.0.0, extend@~3.0.1: 991 | version "3.0.1" 992 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 993 | 994 | extglob@^0.3.1: 995 | version "0.3.2" 996 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 997 | dependencies: 998 | is-extglob "^1.0.0" 999 | 1000 | extsprintf@1.3.0, extsprintf@^1.2.0: 1001 | version "1.3.0" 1002 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1003 | 1004 | fast-deep-equal@^1.0.0: 1005 | version "1.0.0" 1006 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 1007 | 1008 | fast-json-stable-stringify@^2.0.0: 1009 | version "2.0.0" 1010 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1011 | 1012 | fast-levenshtein@~2.0.4: 1013 | version "2.0.6" 1014 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1015 | 1016 | fb-watchman@^2.0.0: 1017 | version "2.0.0" 1018 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1019 | dependencies: 1020 | bser "^2.0.0" 1021 | 1022 | filename-regex@^2.0.0: 1023 | version "2.0.1" 1024 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1025 | 1026 | fileset@^2.0.2: 1027 | version "2.0.3" 1028 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1029 | dependencies: 1030 | glob "^7.0.3" 1031 | minimatch "^3.0.3" 1032 | 1033 | fill-range@^2.1.0: 1034 | version "2.2.3" 1035 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1036 | dependencies: 1037 | is-number "^2.1.0" 1038 | isobject "^2.0.0" 1039 | randomatic "^1.1.3" 1040 | repeat-element "^1.1.2" 1041 | repeat-string "^1.5.2" 1042 | 1043 | find-up@^1.0.0: 1044 | version "1.1.2" 1045 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1046 | dependencies: 1047 | path-exists "^2.0.0" 1048 | pinkie-promise "^2.0.0" 1049 | 1050 | find-up@^2.1.0: 1051 | version "2.1.0" 1052 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1053 | dependencies: 1054 | locate-path "^2.0.0" 1055 | 1056 | for-in@^1.0.1: 1057 | version "1.0.2" 1058 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1059 | 1060 | for-own@^0.1.4: 1061 | version "0.1.5" 1062 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1063 | dependencies: 1064 | for-in "^1.0.1" 1065 | 1066 | foreach@^2.0.5: 1067 | version "2.0.5" 1068 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1069 | 1070 | forever-agent@~0.6.1: 1071 | version "0.6.1" 1072 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1073 | 1074 | form-data@~2.1.1: 1075 | version "2.1.4" 1076 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1077 | dependencies: 1078 | asynckit "^0.4.0" 1079 | combined-stream "^1.0.5" 1080 | mime-types "^2.1.12" 1081 | 1082 | form-data@~2.3.1: 1083 | version "2.3.1" 1084 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.1.tgz#6fb94fbd71885306d73d15cc497fe4cc4ecd44bf" 1085 | dependencies: 1086 | asynckit "^0.4.0" 1087 | combined-stream "^1.0.5" 1088 | mime-types "^2.1.12" 1089 | 1090 | fs.realpath@^1.0.0: 1091 | version "1.0.0" 1092 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1093 | 1094 | fsevents@^1.1.1: 1095 | version "1.1.3" 1096 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" 1097 | dependencies: 1098 | nan "^2.3.0" 1099 | node-pre-gyp "^0.6.39" 1100 | 1101 | fstream-ignore@^1.0.5: 1102 | version "1.0.5" 1103 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1104 | dependencies: 1105 | fstream "^1.0.0" 1106 | inherits "2" 1107 | minimatch "^3.0.0" 1108 | 1109 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1110 | version "1.0.11" 1111 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1112 | dependencies: 1113 | graceful-fs "^4.1.2" 1114 | inherits "~2.0.0" 1115 | mkdirp ">=0.5 0" 1116 | rimraf "2" 1117 | 1118 | function-bind@^1.0.2, function-bind@^1.1.1: 1119 | version "1.1.1" 1120 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1121 | 1122 | gauge@~2.7.3: 1123 | version "2.7.4" 1124 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1125 | dependencies: 1126 | aproba "^1.0.3" 1127 | console-control-strings "^1.0.0" 1128 | has-unicode "^2.0.0" 1129 | object-assign "^4.1.0" 1130 | signal-exit "^3.0.0" 1131 | string-width "^1.0.1" 1132 | strip-ansi "^3.0.1" 1133 | wide-align "^1.1.0" 1134 | 1135 | get-caller-file@^1.0.1: 1136 | version "1.0.2" 1137 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1138 | 1139 | get-stream@^3.0.0: 1140 | version "3.0.0" 1141 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1142 | 1143 | getpass@^0.1.1: 1144 | version "0.1.7" 1145 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1146 | dependencies: 1147 | assert-plus "^1.0.0" 1148 | 1149 | glob-base@^0.3.0: 1150 | version "0.3.0" 1151 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1152 | dependencies: 1153 | glob-parent "^2.0.0" 1154 | is-glob "^2.0.0" 1155 | 1156 | glob-parent@^2.0.0: 1157 | version "2.0.0" 1158 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1159 | dependencies: 1160 | is-glob "^2.0.0" 1161 | 1162 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: 1163 | version "7.1.2" 1164 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1165 | dependencies: 1166 | fs.realpath "^1.0.0" 1167 | inflight "^1.0.4" 1168 | inherits "2" 1169 | minimatch "^3.0.4" 1170 | once "^1.3.0" 1171 | path-is-absolute "^1.0.0" 1172 | 1173 | globals@^9.18.0: 1174 | version "9.18.0" 1175 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1176 | 1177 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 1178 | version "4.1.11" 1179 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1180 | 1181 | growly@^1.3.0: 1182 | version "1.3.0" 1183 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1184 | 1185 | handlebars@^4.0.3: 1186 | version "4.0.11" 1187 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc" 1188 | dependencies: 1189 | async "^1.4.0" 1190 | optimist "^0.6.1" 1191 | source-map "^0.4.4" 1192 | optionalDependencies: 1193 | uglify-js "^2.6" 1194 | 1195 | har-schema@^1.0.5: 1196 | version "1.0.5" 1197 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1198 | 1199 | har-schema@^2.0.0: 1200 | version "2.0.0" 1201 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 1202 | 1203 | har-validator@~4.2.1: 1204 | version "4.2.1" 1205 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1206 | dependencies: 1207 | ajv "^4.9.1" 1208 | har-schema "^1.0.5" 1209 | 1210 | har-validator@~5.0.3: 1211 | version "5.0.3" 1212 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 1213 | dependencies: 1214 | ajv "^5.1.0" 1215 | har-schema "^2.0.0" 1216 | 1217 | has-ansi@^2.0.0: 1218 | version "2.0.0" 1219 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1220 | dependencies: 1221 | ansi-regex "^2.0.0" 1222 | 1223 | has-flag@^1.0.0: 1224 | version "1.0.0" 1225 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1226 | 1227 | has-flag@^2.0.0: 1228 | version "2.0.0" 1229 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1230 | 1231 | has-unicode@^2.0.0: 1232 | version "2.0.1" 1233 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1234 | 1235 | has@^1.0.1: 1236 | version "1.0.1" 1237 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1238 | dependencies: 1239 | function-bind "^1.0.2" 1240 | 1241 | hawk@3.1.3, hawk@~3.1.3: 1242 | version "3.1.3" 1243 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1244 | dependencies: 1245 | boom "2.x.x" 1246 | cryptiles "2.x.x" 1247 | hoek "2.x.x" 1248 | sntp "1.x.x" 1249 | 1250 | hawk@~6.0.2: 1251 | version "6.0.2" 1252 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" 1253 | dependencies: 1254 | boom "4.x.x" 1255 | cryptiles "3.x.x" 1256 | hoek "4.x.x" 1257 | sntp "2.x.x" 1258 | 1259 | hoek@2.x.x: 1260 | version "2.16.3" 1261 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1262 | 1263 | hoek@4.x.x: 1264 | version "4.2.0" 1265 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.0.tgz#72d9d0754f7fe25ca2d01ad8f8f9a9449a89526d" 1266 | 1267 | home-or-tmp@^2.0.0: 1268 | version "2.0.0" 1269 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1270 | dependencies: 1271 | os-homedir "^1.0.0" 1272 | os-tmpdir "^1.0.1" 1273 | 1274 | hosted-git-info@^2.1.4: 1275 | version "2.5.0" 1276 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1277 | 1278 | html-encoding-sniffer@^1.0.1: 1279 | version "1.0.2" 1280 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" 1281 | dependencies: 1282 | whatwg-encoding "^1.0.1" 1283 | 1284 | http-signature@~1.1.0: 1285 | version "1.1.1" 1286 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1287 | dependencies: 1288 | assert-plus "^0.2.0" 1289 | jsprim "^1.2.2" 1290 | sshpk "^1.7.0" 1291 | 1292 | http-signature@~1.2.0: 1293 | version "1.2.0" 1294 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 1295 | dependencies: 1296 | assert-plus "^1.0.0" 1297 | jsprim "^1.2.2" 1298 | sshpk "^1.7.0" 1299 | 1300 | iconv-lite@0.4.19: 1301 | version "0.4.19" 1302 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1303 | 1304 | imurmurhash@^0.1.4: 1305 | version "0.1.4" 1306 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1307 | 1308 | inflight@^1.0.4: 1309 | version "1.0.6" 1310 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1311 | dependencies: 1312 | once "^1.3.0" 1313 | wrappy "1" 1314 | 1315 | inherits@2, inherits@~2.0.0, inherits@~2.0.3: 1316 | version "2.0.3" 1317 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1318 | 1319 | ini@~1.3.0: 1320 | version "1.3.5" 1321 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1322 | 1323 | invariant@^2.2.2: 1324 | version "2.2.2" 1325 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1326 | dependencies: 1327 | loose-envify "^1.0.0" 1328 | 1329 | invert-kv@^1.0.0: 1330 | version "1.0.0" 1331 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1332 | 1333 | is-arrayish@^0.2.1: 1334 | version "0.2.1" 1335 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1336 | 1337 | is-buffer@^1.1.5: 1338 | version "1.1.6" 1339 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1340 | 1341 | is-builtin-module@^1.0.0: 1342 | version "1.0.0" 1343 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1344 | dependencies: 1345 | builtin-modules "^1.0.0" 1346 | 1347 | is-callable@^1.1.1, is-callable@^1.1.3: 1348 | version "1.1.3" 1349 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1350 | 1351 | is-ci@^1.0.10: 1352 | version "1.1.0" 1353 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.1.0.tgz#247e4162e7860cebbdaf30b774d6b0ac7dcfe7a5" 1354 | dependencies: 1355 | ci-info "^1.0.0" 1356 | 1357 | is-date-object@^1.0.1: 1358 | version "1.0.1" 1359 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1360 | 1361 | is-dotfile@^1.0.0: 1362 | version "1.0.3" 1363 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1364 | 1365 | is-equal-shallow@^0.1.3: 1366 | version "0.1.3" 1367 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1368 | dependencies: 1369 | is-primitive "^2.0.0" 1370 | 1371 | is-extendable@^0.1.1: 1372 | version "0.1.1" 1373 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1374 | 1375 | is-extglob@^1.0.0: 1376 | version "1.0.0" 1377 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1378 | 1379 | is-finite@^1.0.0: 1380 | version "1.0.2" 1381 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1382 | dependencies: 1383 | number-is-nan "^1.0.0" 1384 | 1385 | is-fullwidth-code-point@^1.0.0: 1386 | version "1.0.0" 1387 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1388 | dependencies: 1389 | number-is-nan "^1.0.0" 1390 | 1391 | is-fullwidth-code-point@^2.0.0: 1392 | version "2.0.0" 1393 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1394 | 1395 | is-generator-fn@^1.0.0: 1396 | version "1.0.0" 1397 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a" 1398 | 1399 | is-glob@^2.0.0, is-glob@^2.0.1: 1400 | version "2.0.1" 1401 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1402 | dependencies: 1403 | is-extglob "^1.0.0" 1404 | 1405 | is-number@^2.1.0: 1406 | version "2.1.0" 1407 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1408 | dependencies: 1409 | kind-of "^3.0.2" 1410 | 1411 | is-number@^3.0.0: 1412 | version "3.0.0" 1413 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1414 | dependencies: 1415 | kind-of "^3.0.2" 1416 | 1417 | is-posix-bracket@^0.1.0: 1418 | version "0.1.1" 1419 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1420 | 1421 | is-primitive@^2.0.0: 1422 | version "2.0.0" 1423 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1424 | 1425 | is-regex@^1.0.4: 1426 | version "1.0.4" 1427 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 1428 | dependencies: 1429 | has "^1.0.1" 1430 | 1431 | is-stream@^1.1.0: 1432 | version "1.1.0" 1433 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1434 | 1435 | is-symbol@^1.0.1: 1436 | version "1.0.1" 1437 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 1438 | 1439 | is-typedarray@~1.0.0: 1440 | version "1.0.0" 1441 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1442 | 1443 | is-utf8@^0.2.0: 1444 | version "0.2.1" 1445 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1446 | 1447 | isarray@1.0.0, isarray@~1.0.0: 1448 | version "1.0.0" 1449 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1450 | 1451 | isexe@^2.0.0: 1452 | version "2.0.0" 1453 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1454 | 1455 | isobject@^2.0.0: 1456 | version "2.1.0" 1457 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1458 | dependencies: 1459 | isarray "1.0.0" 1460 | 1461 | isstream@~0.1.2: 1462 | version "0.1.2" 1463 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1464 | 1465 | istanbul-api@^1.1.14: 1466 | version "1.2.1" 1467 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.2.1.tgz#0c60a0515eb11c7d65c6b50bba2c6e999acd8620" 1468 | dependencies: 1469 | async "^2.1.4" 1470 | fileset "^2.0.2" 1471 | istanbul-lib-coverage "^1.1.1" 1472 | istanbul-lib-hook "^1.1.0" 1473 | istanbul-lib-instrument "^1.9.1" 1474 | istanbul-lib-report "^1.1.2" 1475 | istanbul-lib-source-maps "^1.2.2" 1476 | istanbul-reports "^1.1.3" 1477 | js-yaml "^3.7.0" 1478 | mkdirp "^0.5.1" 1479 | once "^1.4.0" 1480 | 1481 | istanbul-lib-coverage@^1.1.1: 1482 | version "1.1.1" 1483 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 1484 | 1485 | istanbul-lib-hook@^1.1.0: 1486 | version "1.1.0" 1487 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.1.0.tgz#8538d970372cb3716d53e55523dd54b557a8d89b" 1488 | dependencies: 1489 | append-transform "^0.4.0" 1490 | 1491 | istanbul-lib-instrument@^1.7.5, istanbul-lib-instrument@^1.8.0, istanbul-lib-instrument@^1.9.1: 1492 | version "1.9.1" 1493 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.9.1.tgz#250b30b3531e5d3251299fdd64b0b2c9db6b558e" 1494 | dependencies: 1495 | babel-generator "^6.18.0" 1496 | babel-template "^6.16.0" 1497 | babel-traverse "^6.18.0" 1498 | babel-types "^6.18.0" 1499 | babylon "^6.18.0" 1500 | istanbul-lib-coverage "^1.1.1" 1501 | semver "^5.3.0" 1502 | 1503 | istanbul-lib-report@^1.1.2: 1504 | version "1.1.2" 1505 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.2.tgz#922be27c13b9511b979bd1587359f69798c1d425" 1506 | dependencies: 1507 | istanbul-lib-coverage "^1.1.1" 1508 | mkdirp "^0.5.1" 1509 | path-parse "^1.0.5" 1510 | supports-color "^3.1.2" 1511 | 1512 | istanbul-lib-source-maps@^1.2.1, istanbul-lib-source-maps@^1.2.2: 1513 | version "1.2.2" 1514 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.2.tgz#750578602435f28a0c04ee6d7d9e0f2960e62c1c" 1515 | dependencies: 1516 | debug "^3.1.0" 1517 | istanbul-lib-coverage "^1.1.1" 1518 | mkdirp "^0.5.1" 1519 | rimraf "^2.6.1" 1520 | source-map "^0.5.3" 1521 | 1522 | istanbul-reports@^1.1.3: 1523 | version "1.1.3" 1524 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.3.tgz#3b9e1e8defb6d18b1d425da8e8b32c5a163f2d10" 1525 | dependencies: 1526 | handlebars "^4.0.3" 1527 | 1528 | jest-changed-files@^22.0.6: 1529 | version "22.0.6" 1530 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-22.0.6.tgz#fca38cf4c89920c66aad1707e91d25bbea238875" 1531 | dependencies: 1532 | throat "^4.0.0" 1533 | 1534 | jest-cli@^22.0.6: 1535 | version "22.0.6" 1536 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-22.0.6.tgz#a2f1e5e094c42b29d22815463ae57f4d07e292ac" 1537 | dependencies: 1538 | ansi-escapes "^3.0.0" 1539 | chalk "^2.0.1" 1540 | glob "^7.1.2" 1541 | graceful-fs "^4.1.11" 1542 | is-ci "^1.0.10" 1543 | istanbul-api "^1.1.14" 1544 | istanbul-lib-coverage "^1.1.1" 1545 | istanbul-lib-instrument "^1.8.0" 1546 | istanbul-lib-source-maps "^1.2.1" 1547 | jest-changed-files "^22.0.6" 1548 | jest-config "^22.0.6" 1549 | jest-environment-jsdom "^22.0.6" 1550 | jest-get-type "^22.0.6" 1551 | jest-haste-map "^22.0.6" 1552 | jest-message-util "^22.0.6" 1553 | jest-regex-util "^22.0.6" 1554 | jest-resolve-dependencies "^22.0.6" 1555 | jest-runner "^22.0.6" 1556 | jest-runtime "^22.0.6" 1557 | jest-snapshot "^22.0.6" 1558 | jest-util "^22.0.6" 1559 | jest-worker "^22.0.6" 1560 | micromatch "^2.3.11" 1561 | node-notifier "^5.1.2" 1562 | realpath-native "^1.0.0" 1563 | rimraf "^2.5.4" 1564 | slash "^1.0.0" 1565 | string-length "^2.0.0" 1566 | strip-ansi "^4.0.0" 1567 | which "^1.2.12" 1568 | yargs "^10.0.3" 1569 | 1570 | jest-config@^22.0.6: 1571 | version "22.0.6" 1572 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-22.0.6.tgz#8af116784df189b98ed6fd6c307bce4181f7f012" 1573 | dependencies: 1574 | chalk "^2.0.1" 1575 | glob "^7.1.1" 1576 | jest-environment-jsdom "^22.0.6" 1577 | jest-environment-node "^22.0.6" 1578 | jest-get-type "^22.0.6" 1579 | jest-jasmine2 "^22.0.6" 1580 | jest-regex-util "^22.0.6" 1581 | jest-resolve "^22.0.6" 1582 | jest-util "^22.0.6" 1583 | jest-validate "^22.0.6" 1584 | pretty-format "^22.0.6" 1585 | 1586 | jest-diff@^22.0.6: 1587 | version "22.0.6" 1588 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-22.0.6.tgz#38c07187324564ecf6389a980a2f0e86e7e79890" 1589 | dependencies: 1590 | chalk "^2.0.1" 1591 | diff "^3.2.0" 1592 | jest-get-type "^22.0.6" 1593 | pretty-format "^22.0.6" 1594 | 1595 | jest-docblock@^22.0.6: 1596 | version "22.0.6" 1597 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-22.0.6.tgz#f187fb2c67eec0999e569d563092125283084f9e" 1598 | dependencies: 1599 | detect-newline "^2.1.0" 1600 | 1601 | jest-environment-jsdom@^22.0.6: 1602 | version "22.0.6" 1603 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-22.0.6.tgz#243f3fa7167a1f293410aec8d3eb12ab8de4f748" 1604 | dependencies: 1605 | jest-mock "^22.0.6" 1606 | jest-util "^22.0.6" 1607 | jsdom "^11.5.1" 1608 | 1609 | jest-environment-node@^22.0.6: 1610 | version "22.0.6" 1611 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-22.0.6.tgz#4f34ac4c0591297aceefa6a93421360bd56e5a74" 1612 | dependencies: 1613 | jest-mock "^22.0.6" 1614 | jest-util "^22.0.6" 1615 | 1616 | jest-get-type@^22.0.6: 1617 | version "22.0.6" 1618 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-22.0.6.tgz#301fbc0760779fdbad37b6e3239a3c1811aa75cb" 1619 | 1620 | jest-haste-map@^22.0.6: 1621 | version "22.0.6" 1622 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-22.0.6.tgz#198d665f65e1c484fef106a3c970c5b47903647e" 1623 | dependencies: 1624 | fb-watchman "^2.0.0" 1625 | graceful-fs "^4.1.11" 1626 | jest-docblock "^22.0.6" 1627 | jest-worker "^22.0.6" 1628 | micromatch "^2.3.11" 1629 | sane "^2.0.0" 1630 | 1631 | jest-jasmine2@^22.0.6: 1632 | version "22.0.6" 1633 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-22.0.6.tgz#db9eae709978a8d67a52f7b90d74cab7301107f5" 1634 | dependencies: 1635 | callsites "^2.0.0" 1636 | chalk "^2.0.1" 1637 | co "^4.6.0" 1638 | expect "^22.0.6" 1639 | graceful-fs "^4.1.11" 1640 | is-generator-fn "^1.0.0" 1641 | jest-diff "^22.0.6" 1642 | jest-matcher-utils "^22.0.6" 1643 | jest-message-util "^22.0.6" 1644 | jest-snapshot "^22.0.6" 1645 | source-map-support "^0.5.0" 1646 | 1647 | jest-leak-detector@^22.0.6: 1648 | version "22.0.6" 1649 | resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-22.0.6.tgz#e983e6fca0959f095cd5b39df2a9a8c956f45988" 1650 | dependencies: 1651 | pretty-format "^22.0.6" 1652 | 1653 | jest-matcher-utils@^22.0.6: 1654 | version "22.0.6" 1655 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-22.0.6.tgz#55675242b2af1de913f44e00aa4d68a38d349b07" 1656 | dependencies: 1657 | chalk "^2.0.1" 1658 | jest-get-type "^22.0.6" 1659 | pretty-format "^22.0.6" 1660 | 1661 | jest-message-util@^22.0.6: 1662 | version "22.0.6" 1663 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-22.0.6.tgz#2b30edce5131a9358f529ad66ff84835ba4ed457" 1664 | dependencies: 1665 | "@babel/code-frame" "^7.0.0-beta.35" 1666 | chalk "^2.0.1" 1667 | micromatch "^2.3.11" 1668 | slash "^1.0.0" 1669 | stack-utils "^1.0.1" 1670 | 1671 | jest-mock@^22.0.6: 1672 | version "22.0.6" 1673 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-22.0.6.tgz#0d1f51ec2bf1e72cd58e79cb76f587e6397306ec" 1674 | 1675 | jest-regex-util@^22.0.6: 1676 | version "22.0.6" 1677 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-22.0.6.tgz#cd01d33c5993340f5d61be09b270773787a41d88" 1678 | 1679 | jest-resolve-dependencies@^22.0.6: 1680 | version "22.0.6" 1681 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-22.0.6.tgz#dd976f0a9c2874d32edf4876b0a965cef48d479b" 1682 | dependencies: 1683 | jest-regex-util "^22.0.6" 1684 | 1685 | jest-resolve@^22.0.6: 1686 | version "22.0.6" 1687 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-22.0.6.tgz#29d7aa425adb9aae7aa5ae157483dffba724e52b" 1688 | dependencies: 1689 | browser-resolve "^1.11.2" 1690 | chalk "^2.0.1" 1691 | 1692 | jest-runner@^22.0.6: 1693 | version "22.0.6" 1694 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-22.0.6.tgz#1986ee82b7968d21f04c402e5b67e3da71496f19" 1695 | dependencies: 1696 | jest-config "^22.0.6" 1697 | jest-docblock "^22.0.6" 1698 | jest-haste-map "^22.0.6" 1699 | jest-jasmine2 "^22.0.6" 1700 | jest-leak-detector "^22.0.6" 1701 | jest-message-util "^22.0.6" 1702 | jest-runtime "^22.0.6" 1703 | jest-util "^22.0.6" 1704 | jest-worker "^22.0.6" 1705 | throat "^4.0.0" 1706 | 1707 | jest-runtime@^22.0.6: 1708 | version "22.0.6" 1709 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-22.0.6.tgz#827c35e706adfc22e685de733ba3ab78cda72bfc" 1710 | dependencies: 1711 | babel-core "^6.0.0" 1712 | babel-jest "^22.0.6" 1713 | babel-plugin-istanbul "^4.1.5" 1714 | chalk "^2.0.1" 1715 | convert-source-map "^1.4.0" 1716 | graceful-fs "^4.1.11" 1717 | jest-config "^22.0.6" 1718 | jest-haste-map "^22.0.6" 1719 | jest-regex-util "^22.0.6" 1720 | jest-resolve "^22.0.6" 1721 | jest-util "^22.0.6" 1722 | json-stable-stringify "^1.0.1" 1723 | micromatch "^2.3.11" 1724 | realpath-native "^1.0.0" 1725 | slash "^1.0.0" 1726 | strip-bom "3.0.0" 1727 | write-file-atomic "^2.1.0" 1728 | yargs "^10.0.3" 1729 | 1730 | jest-snapshot@^22.0.6: 1731 | version "22.0.6" 1732 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-22.0.6.tgz#30c1f85b6f050891c4a2060d807a3d65a594591c" 1733 | dependencies: 1734 | chalk "^2.0.1" 1735 | jest-diff "^22.0.6" 1736 | jest-matcher-utils "^22.0.6" 1737 | mkdirp "^0.5.1" 1738 | natural-compare "^1.4.0" 1739 | pretty-format "^22.0.6" 1740 | 1741 | jest-util@^22.0.6: 1742 | version "22.0.6" 1743 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-22.0.6.tgz#539b3f21f4e2e458bb38719aa0e417109fe31657" 1744 | dependencies: 1745 | callsites "^2.0.0" 1746 | chalk "^2.0.1" 1747 | graceful-fs "^4.1.11" 1748 | is-ci "^1.0.10" 1749 | jest-message-util "^22.0.6" 1750 | jest-validate "^22.0.6" 1751 | mkdirp "^0.5.1" 1752 | 1753 | jest-validate@^22.0.6: 1754 | version "22.0.6" 1755 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-22.0.6.tgz#48c6972f154fa4abe20d0686a9b819d142740167" 1756 | dependencies: 1757 | chalk "^2.0.1" 1758 | jest-get-type "^22.0.6" 1759 | leven "^2.1.0" 1760 | pretty-format "^22.0.6" 1761 | 1762 | jest-worker@^22.0.6: 1763 | version "22.0.6" 1764 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-22.0.6.tgz#1998ac7ab24a6eee4deddec76efe7742f2651504" 1765 | dependencies: 1766 | merge-stream "^1.0.1" 1767 | 1768 | jest@^22.0.6: 1769 | version "22.0.6" 1770 | resolved "https://registry.yarnpkg.com/jest/-/jest-22.0.6.tgz#0d0d3bdc402c43cf5a3eae58a55cff6da8b6820f" 1771 | dependencies: 1772 | jest-cli "^22.0.6" 1773 | 1774 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1775 | version "3.0.2" 1776 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1777 | 1778 | js-yaml@^3.7.0: 1779 | version "3.10.0" 1780 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 1781 | dependencies: 1782 | argparse "^1.0.7" 1783 | esprima "^4.0.0" 1784 | 1785 | jsbn@~0.1.0: 1786 | version "0.1.1" 1787 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1788 | 1789 | jsdom@^11.5.1: 1790 | version "11.5.1" 1791 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-11.5.1.tgz#5df753b8d0bca20142ce21f4f6c039f99a992929" 1792 | dependencies: 1793 | abab "^1.0.3" 1794 | acorn "^5.1.2" 1795 | acorn-globals "^4.0.0" 1796 | array-equal "^1.0.0" 1797 | browser-process-hrtime "^0.1.2" 1798 | content-type-parser "^1.0.1" 1799 | cssom ">= 0.3.2 < 0.4.0" 1800 | cssstyle ">= 0.2.37 < 0.3.0" 1801 | domexception "^1.0.0" 1802 | escodegen "^1.9.0" 1803 | html-encoding-sniffer "^1.0.1" 1804 | left-pad "^1.2.0" 1805 | nwmatcher "^1.4.3" 1806 | parse5 "^3.0.2" 1807 | pn "^1.0.0" 1808 | request "^2.83.0" 1809 | request-promise-native "^1.0.3" 1810 | sax "^1.2.1" 1811 | symbol-tree "^3.2.1" 1812 | tough-cookie "^2.3.3" 1813 | webidl-conversions "^4.0.2" 1814 | whatwg-encoding "^1.0.1" 1815 | whatwg-url "^6.3.0" 1816 | xml-name-validator "^2.0.1" 1817 | 1818 | jsesc@^1.3.0: 1819 | version "1.3.0" 1820 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1821 | 1822 | jsesc@~0.5.0: 1823 | version "0.5.0" 1824 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1825 | 1826 | json-schema-traverse@^0.3.0: 1827 | version "0.3.1" 1828 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 1829 | 1830 | json-schema@0.2.3: 1831 | version "0.2.3" 1832 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1833 | 1834 | json-stable-stringify@^1.0.1: 1835 | version "1.0.1" 1836 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1837 | dependencies: 1838 | jsonify "~0.0.0" 1839 | 1840 | json-stringify-safe@~5.0.1: 1841 | version "5.0.1" 1842 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1843 | 1844 | json5@^0.5.1: 1845 | version "0.5.1" 1846 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1847 | 1848 | jsonify@~0.0.0: 1849 | version "0.0.0" 1850 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1851 | 1852 | jsprim@^1.2.2: 1853 | version "1.4.1" 1854 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1855 | dependencies: 1856 | assert-plus "1.0.0" 1857 | extsprintf "1.3.0" 1858 | json-schema "0.2.3" 1859 | verror "1.10.0" 1860 | 1861 | kind-of@^3.0.2: 1862 | version "3.2.2" 1863 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1864 | dependencies: 1865 | is-buffer "^1.1.5" 1866 | 1867 | kind-of@^4.0.0: 1868 | version "4.0.0" 1869 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1870 | dependencies: 1871 | is-buffer "^1.1.5" 1872 | 1873 | lazy-cache@^1.0.3: 1874 | version "1.0.4" 1875 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1876 | 1877 | lcid@^1.0.0: 1878 | version "1.0.0" 1879 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1880 | dependencies: 1881 | invert-kv "^1.0.0" 1882 | 1883 | left-pad@^1.2.0: 1884 | version "1.2.0" 1885 | resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.2.0.tgz#d30a73c6b8201d8f7d8e7956ba9616087a68e0ee" 1886 | 1887 | leven@^2.1.0: 1888 | version "2.1.0" 1889 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 1890 | 1891 | levn@~0.3.0: 1892 | version "0.3.0" 1893 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1894 | dependencies: 1895 | prelude-ls "~1.1.2" 1896 | type-check "~0.3.2" 1897 | 1898 | load-json-file@^1.0.0: 1899 | version "1.1.0" 1900 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1901 | dependencies: 1902 | graceful-fs "^4.1.2" 1903 | parse-json "^2.2.0" 1904 | pify "^2.0.0" 1905 | pinkie-promise "^2.0.0" 1906 | strip-bom "^2.0.0" 1907 | 1908 | locate-path@^2.0.0: 1909 | version "2.0.0" 1910 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1911 | dependencies: 1912 | p-locate "^2.0.0" 1913 | path-exists "^3.0.0" 1914 | 1915 | lodash.sortby@^4.7.0: 1916 | version "4.7.0" 1917 | resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" 1918 | 1919 | lodash@^4.13.1, lodash@^4.14.0, lodash@^4.17.4: 1920 | version "4.17.4" 1921 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1922 | 1923 | longest@^1.0.1: 1924 | version "1.0.1" 1925 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1926 | 1927 | loose-envify@^1.0.0: 1928 | version "1.3.1" 1929 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1930 | dependencies: 1931 | js-tokens "^3.0.0" 1932 | 1933 | lru-cache@^4.0.1: 1934 | version "4.1.1" 1935 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 1936 | dependencies: 1937 | pseudomap "^1.0.2" 1938 | yallist "^2.1.2" 1939 | 1940 | makeerror@1.0.x: 1941 | version "1.0.11" 1942 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 1943 | dependencies: 1944 | tmpl "1.0.x" 1945 | 1946 | mem@^1.1.0: 1947 | version "1.1.0" 1948 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 1949 | dependencies: 1950 | mimic-fn "^1.0.0" 1951 | 1952 | merge-stream@^1.0.1: 1953 | version "1.0.1" 1954 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" 1955 | dependencies: 1956 | readable-stream "^2.0.1" 1957 | 1958 | merge@^1.1.3: 1959 | version "1.2.0" 1960 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 1961 | 1962 | micromatch@^2.1.5, micromatch@^2.3.11: 1963 | version "2.3.11" 1964 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1965 | dependencies: 1966 | arr-diff "^2.0.0" 1967 | array-unique "^0.2.1" 1968 | braces "^1.8.2" 1969 | expand-brackets "^0.1.4" 1970 | extglob "^0.3.1" 1971 | filename-regex "^2.0.0" 1972 | is-extglob "^1.0.0" 1973 | is-glob "^2.0.1" 1974 | kind-of "^3.0.2" 1975 | normalize-path "^2.0.1" 1976 | object.omit "^2.0.0" 1977 | parse-glob "^3.0.4" 1978 | regex-cache "^0.4.2" 1979 | 1980 | mime-db@~1.30.0: 1981 | version "1.30.0" 1982 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 1983 | 1984 | mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.7: 1985 | version "2.1.17" 1986 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 1987 | dependencies: 1988 | mime-db "~1.30.0" 1989 | 1990 | mimic-fn@^1.0.0: 1991 | version "1.1.0" 1992 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 1993 | 1994 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 1995 | version "3.0.4" 1996 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1997 | dependencies: 1998 | brace-expansion "^1.1.7" 1999 | 2000 | minimist@0.0.8, minimist@~0.0.1: 2001 | version "0.0.8" 2002 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2003 | 2004 | minimist@^1.1.1, minimist@^1.2.0: 2005 | version "1.2.0" 2006 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2007 | 2008 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 2009 | version "0.5.1" 2010 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2011 | dependencies: 2012 | minimist "0.0.8" 2013 | 2014 | ms@2.0.0: 2015 | version "2.0.0" 2016 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2017 | 2018 | nan@^2.3.0: 2019 | version "2.8.0" 2020 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a" 2021 | 2022 | natural-compare@^1.4.0: 2023 | version "1.4.0" 2024 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2025 | 2026 | node-int64@^0.4.0: 2027 | version "0.4.0" 2028 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2029 | 2030 | node-notifier@^5.1.2: 2031 | version "5.1.2" 2032 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 2033 | dependencies: 2034 | growly "^1.3.0" 2035 | semver "^5.3.0" 2036 | shellwords "^0.1.0" 2037 | which "^1.2.12" 2038 | 2039 | node-pre-gyp@^0.6.39: 2040 | version "0.6.39" 2041 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 2042 | dependencies: 2043 | detect-libc "^1.0.2" 2044 | hawk "3.1.3" 2045 | mkdirp "^0.5.1" 2046 | nopt "^4.0.1" 2047 | npmlog "^4.0.2" 2048 | rc "^1.1.7" 2049 | request "2.81.0" 2050 | rimraf "^2.6.1" 2051 | semver "^5.3.0" 2052 | tar "^2.2.1" 2053 | tar-pack "^3.4.0" 2054 | 2055 | nopt@^4.0.1: 2056 | version "4.0.1" 2057 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2058 | dependencies: 2059 | abbrev "1" 2060 | osenv "^0.1.4" 2061 | 2062 | normalize-package-data@^2.3.2: 2063 | version "2.4.0" 2064 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2065 | dependencies: 2066 | hosted-git-info "^2.1.4" 2067 | is-builtin-module "^1.0.0" 2068 | semver "2 || 3 || 4 || 5" 2069 | validate-npm-package-license "^3.0.1" 2070 | 2071 | normalize-path@^2.0.0, normalize-path@^2.0.1: 2072 | version "2.1.1" 2073 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2074 | dependencies: 2075 | remove-trailing-separator "^1.0.1" 2076 | 2077 | npm-run-path@^2.0.0: 2078 | version "2.0.2" 2079 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2080 | dependencies: 2081 | path-key "^2.0.0" 2082 | 2083 | npmlog@^4.0.2: 2084 | version "4.1.2" 2085 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2086 | dependencies: 2087 | are-we-there-yet "~1.1.2" 2088 | console-control-strings "~1.1.0" 2089 | gauge "~2.7.3" 2090 | set-blocking "~2.0.0" 2091 | 2092 | number-is-nan@^1.0.0: 2093 | version "1.0.1" 2094 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2095 | 2096 | nwmatcher@^1.4.3: 2097 | version "1.4.3" 2098 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.3.tgz#64348e3b3d80f035b40ac11563d278f8b72db89c" 2099 | 2100 | oauth-sign@~0.8.1, oauth-sign@~0.8.2: 2101 | version "0.8.2" 2102 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2103 | 2104 | object-assign@^4.1.0: 2105 | version "4.1.1" 2106 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2107 | 2108 | object-keys@^1.0.8: 2109 | version "1.0.11" 2110 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 2111 | 2112 | object.getownpropertydescriptors@^2.0.3: 2113 | version "2.0.3" 2114 | resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" 2115 | dependencies: 2116 | define-properties "^1.1.2" 2117 | es-abstract "^1.5.1" 2118 | 2119 | object.omit@^2.0.0: 2120 | version "2.0.1" 2121 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2122 | dependencies: 2123 | for-own "^0.1.4" 2124 | is-extendable "^0.1.1" 2125 | 2126 | once@^1.3.0, once@^1.3.3, once@^1.4.0: 2127 | version "1.4.0" 2128 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2129 | dependencies: 2130 | wrappy "1" 2131 | 2132 | optimist@^0.6.1: 2133 | version "0.6.1" 2134 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2135 | dependencies: 2136 | minimist "~0.0.1" 2137 | wordwrap "~0.0.2" 2138 | 2139 | optionator@^0.8.1: 2140 | version "0.8.2" 2141 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2142 | dependencies: 2143 | deep-is "~0.1.3" 2144 | fast-levenshtein "~2.0.4" 2145 | levn "~0.3.0" 2146 | prelude-ls "~1.1.2" 2147 | type-check "~0.3.2" 2148 | wordwrap "~1.0.0" 2149 | 2150 | os-homedir@^1.0.0: 2151 | version "1.0.2" 2152 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2153 | 2154 | os-locale@^2.0.0: 2155 | version "2.1.0" 2156 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 2157 | dependencies: 2158 | execa "^0.7.0" 2159 | lcid "^1.0.0" 2160 | mem "^1.1.0" 2161 | 2162 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2163 | version "1.0.2" 2164 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2165 | 2166 | osenv@^0.1.4: 2167 | version "0.1.4" 2168 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2169 | dependencies: 2170 | os-homedir "^1.0.0" 2171 | os-tmpdir "^1.0.0" 2172 | 2173 | p-finally@^1.0.0: 2174 | version "1.0.0" 2175 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2176 | 2177 | p-limit@^1.1.0: 2178 | version "1.2.0" 2179 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.2.0.tgz#0e92b6bedcb59f022c13d0f1949dc82d15909f1c" 2180 | dependencies: 2181 | p-try "^1.0.0" 2182 | 2183 | p-locate@^2.0.0: 2184 | version "2.0.0" 2185 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2186 | dependencies: 2187 | p-limit "^1.1.0" 2188 | 2189 | p-try@^1.0.0: 2190 | version "1.0.0" 2191 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 2192 | 2193 | parse-glob@^3.0.4: 2194 | version "3.0.4" 2195 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2196 | dependencies: 2197 | glob-base "^0.3.0" 2198 | is-dotfile "^1.0.0" 2199 | is-extglob "^1.0.0" 2200 | is-glob "^2.0.0" 2201 | 2202 | parse-json@^2.2.0: 2203 | version "2.2.0" 2204 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2205 | dependencies: 2206 | error-ex "^1.2.0" 2207 | 2208 | parse5@^3.0.2: 2209 | version "3.0.3" 2210 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-3.0.3.tgz#042f792ffdd36851551cf4e9e066b3874ab45b5c" 2211 | dependencies: 2212 | "@types/node" "*" 2213 | 2214 | path-exists@^2.0.0: 2215 | version "2.1.0" 2216 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2217 | dependencies: 2218 | pinkie-promise "^2.0.0" 2219 | 2220 | path-exists@^3.0.0: 2221 | version "3.0.0" 2222 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2223 | 2224 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2225 | version "1.0.1" 2226 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2227 | 2228 | path-key@^2.0.0: 2229 | version "2.0.1" 2230 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2231 | 2232 | path-parse@^1.0.5: 2233 | version "1.0.5" 2234 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2235 | 2236 | path-type@^1.0.0: 2237 | version "1.1.0" 2238 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2239 | dependencies: 2240 | graceful-fs "^4.1.2" 2241 | pify "^2.0.0" 2242 | pinkie-promise "^2.0.0" 2243 | 2244 | performance-now@^0.2.0: 2245 | version "0.2.0" 2246 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2247 | 2248 | performance-now@^2.1.0: 2249 | version "2.1.0" 2250 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 2251 | 2252 | pify@^2.0.0: 2253 | version "2.3.0" 2254 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2255 | 2256 | pinkie-promise@^2.0.0: 2257 | version "2.0.1" 2258 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2259 | dependencies: 2260 | pinkie "^2.0.0" 2261 | 2262 | pinkie@^2.0.0: 2263 | version "2.0.4" 2264 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2265 | 2266 | pn@^1.0.0: 2267 | version "1.1.0" 2268 | resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" 2269 | 2270 | prelude-ls@~1.1.2: 2271 | version "1.1.2" 2272 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2273 | 2274 | preserve@^0.2.0: 2275 | version "0.2.0" 2276 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2277 | 2278 | pretty-format@^22.0.6: 2279 | version "22.0.6" 2280 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-22.0.6.tgz#bbb78e38445f263c2d3b9e281f4b844380990720" 2281 | dependencies: 2282 | ansi-regex "^3.0.0" 2283 | ansi-styles "^3.2.0" 2284 | 2285 | private@^0.1.6, private@^0.1.7: 2286 | version "0.1.8" 2287 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2288 | 2289 | process-nextick-args@~1.0.6: 2290 | version "1.0.7" 2291 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2292 | 2293 | pseudomap@^1.0.2: 2294 | version "1.0.2" 2295 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2296 | 2297 | punycode@^1.4.1: 2298 | version "1.4.1" 2299 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2300 | 2301 | punycode@^2.1.0: 2302 | version "2.1.0" 2303 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.0.tgz#5f863edc89b96db09074bad7947bf09056ca4e7d" 2304 | 2305 | qs@~6.4.0: 2306 | version "6.4.0" 2307 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2308 | 2309 | qs@~6.5.1: 2310 | version "6.5.1" 2311 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" 2312 | 2313 | randomatic@^1.1.3: 2314 | version "1.1.7" 2315 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2316 | dependencies: 2317 | is-number "^3.0.0" 2318 | kind-of "^4.0.0" 2319 | 2320 | rc@^1.1.7: 2321 | version "1.2.3" 2322 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.3.tgz#51575a900f8dd68381c710b4712c2154c3e2035b" 2323 | dependencies: 2324 | deep-extend "~0.4.0" 2325 | ini "~1.3.0" 2326 | minimist "^1.2.0" 2327 | strip-json-comments "~2.0.1" 2328 | 2329 | read-pkg-up@^1.0.1: 2330 | version "1.0.1" 2331 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2332 | dependencies: 2333 | find-up "^1.0.0" 2334 | read-pkg "^1.0.0" 2335 | 2336 | read-pkg@^1.0.0: 2337 | version "1.1.0" 2338 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2339 | dependencies: 2340 | load-json-file "^1.0.0" 2341 | normalize-package-data "^2.3.2" 2342 | path-type "^1.0.0" 2343 | 2344 | readable-stream@^2.0.1, readable-stream@^2.0.6, readable-stream@^2.1.4: 2345 | version "2.3.3" 2346 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 2347 | dependencies: 2348 | core-util-is "~1.0.0" 2349 | inherits "~2.0.3" 2350 | isarray "~1.0.0" 2351 | process-nextick-args "~1.0.6" 2352 | safe-buffer "~5.1.1" 2353 | string_decoder "~1.0.3" 2354 | util-deprecate "~1.0.1" 2355 | 2356 | realpath-native@^1.0.0: 2357 | version "1.0.0" 2358 | resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.0.0.tgz#7885721a83b43bd5327609f0ddecb2482305fdf0" 2359 | dependencies: 2360 | util.promisify "^1.0.0" 2361 | 2362 | regenerate@^1.2.1: 2363 | version "1.3.3" 2364 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" 2365 | 2366 | regenerator-runtime@^0.11.0, regenerator-runtime@^0.11.1: 2367 | version "0.11.1" 2368 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 2369 | 2370 | regenerator-transform@^0.10.0: 2371 | version "0.10.1" 2372 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 2373 | dependencies: 2374 | babel-runtime "^6.18.0" 2375 | babel-types "^6.19.0" 2376 | private "^0.1.6" 2377 | 2378 | regex-cache@^0.4.2: 2379 | version "0.4.4" 2380 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2381 | dependencies: 2382 | is-equal-shallow "^0.1.3" 2383 | 2384 | regexpu-core@^2.0.0: 2385 | version "2.0.0" 2386 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2387 | dependencies: 2388 | regenerate "^1.2.1" 2389 | regjsgen "^0.2.0" 2390 | regjsparser "^0.1.4" 2391 | 2392 | regjsgen@^0.2.0: 2393 | version "0.2.0" 2394 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2395 | 2396 | regjsparser@^0.1.4: 2397 | version "0.1.5" 2398 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2399 | dependencies: 2400 | jsesc "~0.5.0" 2401 | 2402 | remove-trailing-separator@^1.0.1: 2403 | version "1.1.0" 2404 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2405 | 2406 | repeat-element@^1.1.2: 2407 | version "1.1.2" 2408 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2409 | 2410 | repeat-string@^1.5.2: 2411 | version "1.6.1" 2412 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2413 | 2414 | repeating@^2.0.0: 2415 | version "2.0.1" 2416 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2417 | dependencies: 2418 | is-finite "^1.0.0" 2419 | 2420 | request-promise-core@1.1.1: 2421 | version "1.1.1" 2422 | resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6" 2423 | dependencies: 2424 | lodash "^4.13.1" 2425 | 2426 | request-promise-native@^1.0.3: 2427 | version "1.0.5" 2428 | resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.5.tgz#5281770f68e0c9719e5163fd3fab482215f4fda5" 2429 | dependencies: 2430 | request-promise-core "1.1.1" 2431 | stealthy-require "^1.1.0" 2432 | tough-cookie ">=2.3.3" 2433 | 2434 | request@2.81.0: 2435 | version "2.81.0" 2436 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2437 | dependencies: 2438 | aws-sign2 "~0.6.0" 2439 | aws4 "^1.2.1" 2440 | caseless "~0.12.0" 2441 | combined-stream "~1.0.5" 2442 | extend "~3.0.0" 2443 | forever-agent "~0.6.1" 2444 | form-data "~2.1.1" 2445 | har-validator "~4.2.1" 2446 | hawk "~3.1.3" 2447 | http-signature "~1.1.0" 2448 | is-typedarray "~1.0.0" 2449 | isstream "~0.1.2" 2450 | json-stringify-safe "~5.0.1" 2451 | mime-types "~2.1.7" 2452 | oauth-sign "~0.8.1" 2453 | performance-now "^0.2.0" 2454 | qs "~6.4.0" 2455 | safe-buffer "^5.0.1" 2456 | stringstream "~0.0.4" 2457 | tough-cookie "~2.3.0" 2458 | tunnel-agent "^0.6.0" 2459 | uuid "^3.0.0" 2460 | 2461 | request@^2.83.0: 2462 | version "2.83.0" 2463 | resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356" 2464 | dependencies: 2465 | aws-sign2 "~0.7.0" 2466 | aws4 "^1.6.0" 2467 | caseless "~0.12.0" 2468 | combined-stream "~1.0.5" 2469 | extend "~3.0.1" 2470 | forever-agent "~0.6.1" 2471 | form-data "~2.3.1" 2472 | har-validator "~5.0.3" 2473 | hawk "~6.0.2" 2474 | http-signature "~1.2.0" 2475 | is-typedarray "~1.0.0" 2476 | isstream "~0.1.2" 2477 | json-stringify-safe "~5.0.1" 2478 | mime-types "~2.1.17" 2479 | oauth-sign "~0.8.2" 2480 | performance-now "^2.1.0" 2481 | qs "~6.5.1" 2482 | safe-buffer "^5.1.1" 2483 | stringstream "~0.0.5" 2484 | tough-cookie "~2.3.3" 2485 | tunnel-agent "^0.6.0" 2486 | uuid "^3.1.0" 2487 | 2488 | require-directory@^2.1.1: 2489 | version "2.1.1" 2490 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2491 | 2492 | require-main-filename@^1.0.1: 2493 | version "1.0.1" 2494 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2495 | 2496 | resolve@1.1.7: 2497 | version "1.1.7" 2498 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2499 | 2500 | right-align@^0.1.1: 2501 | version "0.1.3" 2502 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2503 | dependencies: 2504 | align-text "^0.1.1" 2505 | 2506 | rimraf@2, rimraf@^2.5.1, rimraf@^2.5.4, rimraf@^2.6.1: 2507 | version "2.6.2" 2508 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2509 | dependencies: 2510 | glob "^7.0.5" 2511 | 2512 | safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2513 | version "5.1.1" 2514 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2515 | 2516 | sane@^2.0.0: 2517 | version "2.2.0" 2518 | resolved "https://registry.yarnpkg.com/sane/-/sane-2.2.0.tgz#d6d2e2fcab00e3d283c93b912b7c3a20846f1d56" 2519 | dependencies: 2520 | anymatch "^1.3.0" 2521 | exec-sh "^0.2.0" 2522 | fb-watchman "^2.0.0" 2523 | minimatch "^3.0.2" 2524 | minimist "^1.1.1" 2525 | walker "~1.0.5" 2526 | watch "~0.18.0" 2527 | optionalDependencies: 2528 | fsevents "^1.1.1" 2529 | 2530 | sax@^1.2.1: 2531 | version "1.2.4" 2532 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2533 | 2534 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 2535 | version "5.4.1" 2536 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 2537 | 2538 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2539 | version "2.0.0" 2540 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2541 | 2542 | shebang-command@^1.2.0: 2543 | version "1.2.0" 2544 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2545 | dependencies: 2546 | shebang-regex "^1.0.0" 2547 | 2548 | shebang-regex@^1.0.0: 2549 | version "1.0.0" 2550 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2551 | 2552 | shellwords@^0.1.0: 2553 | version "0.1.1" 2554 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 2555 | 2556 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2557 | version "3.0.2" 2558 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2559 | 2560 | slash@^1.0.0: 2561 | version "1.0.0" 2562 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2563 | 2564 | sntp@1.x.x: 2565 | version "1.0.9" 2566 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2567 | dependencies: 2568 | hoek "2.x.x" 2569 | 2570 | sntp@2.x.x: 2571 | version "2.1.0" 2572 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8" 2573 | dependencies: 2574 | hoek "4.x.x" 2575 | 2576 | source-map-support@^0.4.15: 2577 | version "0.4.18" 2578 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 2579 | dependencies: 2580 | source-map "^0.5.6" 2581 | 2582 | source-map-support@^0.5.0: 2583 | version "0.5.0" 2584 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.0.tgz#2018a7ad2bdf8faf2691e5fddab26bed5a2bacab" 2585 | dependencies: 2586 | source-map "^0.6.0" 2587 | 2588 | source-map@^0.4.4: 2589 | version "0.4.4" 2590 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 2591 | dependencies: 2592 | amdefine ">=0.0.4" 2593 | 2594 | source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.6: 2595 | version "0.5.7" 2596 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2597 | 2598 | source-map@^0.6.0: 2599 | version "0.6.1" 2600 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2601 | 2602 | spdx-correct@~1.0.0: 2603 | version "1.0.2" 2604 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2605 | dependencies: 2606 | spdx-license-ids "^1.0.2" 2607 | 2608 | spdx-expression-parse@~1.0.0: 2609 | version "1.0.4" 2610 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2611 | 2612 | spdx-license-ids@^1.0.2: 2613 | version "1.2.2" 2614 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2615 | 2616 | sprintf-js@~1.0.2: 2617 | version "1.0.3" 2618 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2619 | 2620 | sshpk@^1.7.0: 2621 | version "1.13.1" 2622 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2623 | dependencies: 2624 | asn1 "~0.2.3" 2625 | assert-plus "^1.0.0" 2626 | dashdash "^1.12.0" 2627 | getpass "^0.1.1" 2628 | optionalDependencies: 2629 | bcrypt-pbkdf "^1.0.0" 2630 | ecc-jsbn "~0.1.1" 2631 | jsbn "~0.1.0" 2632 | tweetnacl "~0.14.0" 2633 | 2634 | stack-utils@^1.0.1: 2635 | version "1.0.1" 2636 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620" 2637 | 2638 | stealthy-require@^1.1.0: 2639 | version "1.1.1" 2640 | resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" 2641 | 2642 | string-length@^2.0.0: 2643 | version "2.0.0" 2644 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed" 2645 | dependencies: 2646 | astral-regex "^1.0.0" 2647 | strip-ansi "^4.0.0" 2648 | 2649 | string-width@^1.0.1, string-width@^1.0.2: 2650 | version "1.0.2" 2651 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2652 | dependencies: 2653 | code-point-at "^1.0.0" 2654 | is-fullwidth-code-point "^1.0.0" 2655 | strip-ansi "^3.0.0" 2656 | 2657 | string-width@^2.0.0, string-width@^2.1.1: 2658 | version "2.1.1" 2659 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2660 | dependencies: 2661 | is-fullwidth-code-point "^2.0.0" 2662 | strip-ansi "^4.0.0" 2663 | 2664 | string_decoder@~1.0.3: 2665 | version "1.0.3" 2666 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2667 | dependencies: 2668 | safe-buffer "~5.1.0" 2669 | 2670 | stringstream@~0.0.4, stringstream@~0.0.5: 2671 | version "0.0.5" 2672 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2673 | 2674 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2675 | version "3.0.1" 2676 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2677 | dependencies: 2678 | ansi-regex "^2.0.0" 2679 | 2680 | strip-ansi@^4.0.0: 2681 | version "4.0.0" 2682 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2683 | dependencies: 2684 | ansi-regex "^3.0.0" 2685 | 2686 | strip-bom@3.0.0: 2687 | version "3.0.0" 2688 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2689 | 2690 | strip-bom@^2.0.0: 2691 | version "2.0.0" 2692 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2693 | dependencies: 2694 | is-utf8 "^0.2.0" 2695 | 2696 | strip-eof@^1.0.0: 2697 | version "1.0.0" 2698 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 2699 | 2700 | strip-json-comments@~2.0.1: 2701 | version "2.0.1" 2702 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2703 | 2704 | supports-color@^2.0.0: 2705 | version "2.0.0" 2706 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2707 | 2708 | supports-color@^3.1.2: 2709 | version "3.2.3" 2710 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 2711 | dependencies: 2712 | has-flag "^1.0.0" 2713 | 2714 | supports-color@^4.0.0: 2715 | version "4.5.0" 2716 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 2717 | dependencies: 2718 | has-flag "^2.0.0" 2719 | 2720 | symbol-tree@^3.2.1: 2721 | version "3.2.2" 2722 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 2723 | 2724 | tar-pack@^3.4.0: 2725 | version "3.4.1" 2726 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 2727 | dependencies: 2728 | debug "^2.2.0" 2729 | fstream "^1.0.10" 2730 | fstream-ignore "^1.0.5" 2731 | once "^1.3.3" 2732 | readable-stream "^2.1.4" 2733 | rimraf "^2.5.1" 2734 | tar "^2.2.1" 2735 | uid-number "^0.0.6" 2736 | 2737 | tar@^2.2.1: 2738 | version "2.2.1" 2739 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2740 | dependencies: 2741 | block-stream "*" 2742 | fstream "^1.0.2" 2743 | inherits "2" 2744 | 2745 | test-exclude@^4.1.1: 2746 | version "4.1.1" 2747 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" 2748 | dependencies: 2749 | arrify "^1.0.1" 2750 | micromatch "^2.3.11" 2751 | object-assign "^4.1.0" 2752 | read-pkg-up "^1.0.1" 2753 | require-main-filename "^1.0.1" 2754 | 2755 | throat@^4.0.0: 2756 | version "4.1.0" 2757 | resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" 2758 | 2759 | tmpl@1.0.x: 2760 | version "1.0.4" 2761 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 2762 | 2763 | to-fast-properties@^1.0.3: 2764 | version "1.0.3" 2765 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2766 | 2767 | tough-cookie@>=2.3.3, tough-cookie@^2.3.3, tough-cookie@~2.3.0, tough-cookie@~2.3.3: 2768 | version "2.3.3" 2769 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 2770 | dependencies: 2771 | punycode "^1.4.1" 2772 | 2773 | tr46@^1.0.0: 2774 | version "1.0.1" 2775 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" 2776 | dependencies: 2777 | punycode "^2.1.0" 2778 | 2779 | trim-right@^1.0.1: 2780 | version "1.0.1" 2781 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2782 | 2783 | tunnel-agent@^0.6.0: 2784 | version "0.6.0" 2785 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2786 | dependencies: 2787 | safe-buffer "^5.0.1" 2788 | 2789 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2790 | version "0.14.5" 2791 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2792 | 2793 | type-check@~0.3.2: 2794 | version "0.3.2" 2795 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2796 | dependencies: 2797 | prelude-ls "~1.1.2" 2798 | 2799 | uglify-js@^2.6: 2800 | version "2.8.29" 2801 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 2802 | dependencies: 2803 | source-map "~0.5.1" 2804 | yargs "~3.10.0" 2805 | optionalDependencies: 2806 | uglify-to-browserify "~1.0.0" 2807 | 2808 | uglify-to-browserify@~1.0.0: 2809 | version "1.0.2" 2810 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 2811 | 2812 | uid-number@^0.0.6: 2813 | version "0.0.6" 2814 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2815 | 2816 | util-deprecate@~1.0.1: 2817 | version "1.0.2" 2818 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2819 | 2820 | util.promisify@^1.0.0: 2821 | version "1.0.0" 2822 | resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" 2823 | dependencies: 2824 | define-properties "^1.1.2" 2825 | object.getownpropertydescriptors "^2.0.3" 2826 | 2827 | uuid@^3.0.0, uuid@^3.1.0: 2828 | version "3.1.0" 2829 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 2830 | 2831 | validate-npm-package-license@^3.0.1: 2832 | version "3.0.1" 2833 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2834 | dependencies: 2835 | spdx-correct "~1.0.0" 2836 | spdx-expression-parse "~1.0.0" 2837 | 2838 | verror@1.10.0: 2839 | version "1.10.0" 2840 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 2841 | dependencies: 2842 | assert-plus "^1.0.0" 2843 | core-util-is "1.0.2" 2844 | extsprintf "^1.2.0" 2845 | 2846 | walker@~1.0.5: 2847 | version "1.0.7" 2848 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 2849 | dependencies: 2850 | makeerror "1.0.x" 2851 | 2852 | watch@~0.18.0: 2853 | version "0.18.0" 2854 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986" 2855 | dependencies: 2856 | exec-sh "^0.2.0" 2857 | minimist "^1.2.0" 2858 | 2859 | webidl-conversions@^4.0.1, webidl-conversions@^4.0.2: 2860 | version "4.0.2" 2861 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 2862 | 2863 | whatwg-encoding@^1.0.1: 2864 | version "1.0.3" 2865 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.3.tgz#57c235bc8657e914d24e1a397d3c82daee0a6ba3" 2866 | dependencies: 2867 | iconv-lite "0.4.19" 2868 | 2869 | whatwg-url@^6.3.0: 2870 | version "6.4.0" 2871 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.4.0.tgz#08fdf2b9e872783a7a1f6216260a1d66cc722e08" 2872 | dependencies: 2873 | lodash.sortby "^4.7.0" 2874 | tr46 "^1.0.0" 2875 | webidl-conversions "^4.0.1" 2876 | 2877 | which-module@^2.0.0: 2878 | version "2.0.0" 2879 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 2880 | 2881 | which@^1.2.12, which@^1.2.9: 2882 | version "1.3.0" 2883 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 2884 | dependencies: 2885 | isexe "^2.0.0" 2886 | 2887 | wide-align@^1.1.0: 2888 | version "1.1.2" 2889 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 2890 | dependencies: 2891 | string-width "^1.0.2" 2892 | 2893 | window-size@0.1.0: 2894 | version "0.1.0" 2895 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 2896 | 2897 | wordwrap@0.0.2: 2898 | version "0.0.2" 2899 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 2900 | 2901 | wordwrap@~0.0.2: 2902 | version "0.0.3" 2903 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 2904 | 2905 | wordwrap@~1.0.0: 2906 | version "1.0.0" 2907 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2908 | 2909 | wrap-ansi@^2.0.0: 2910 | version "2.1.0" 2911 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 2912 | dependencies: 2913 | string-width "^1.0.1" 2914 | strip-ansi "^3.0.1" 2915 | 2916 | wrappy@1: 2917 | version "1.0.2" 2918 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2919 | 2920 | write-file-atomic@^2.1.0: 2921 | version "2.3.0" 2922 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 2923 | dependencies: 2924 | graceful-fs "^4.1.11" 2925 | imurmurhash "^0.1.4" 2926 | signal-exit "^3.0.2" 2927 | 2928 | xml-name-validator@^2.0.1: 2929 | version "2.0.1" 2930 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 2931 | 2932 | y18n@^3.2.1: 2933 | version "3.2.1" 2934 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 2935 | 2936 | yallist@^2.1.2: 2937 | version "2.1.2" 2938 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 2939 | 2940 | yargs-parser@^8.1.0: 2941 | version "8.1.0" 2942 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-8.1.0.tgz#f1376a33b6629a5d063782944da732631e966950" 2943 | dependencies: 2944 | camelcase "^4.1.0" 2945 | 2946 | yargs@^10.0.3: 2947 | version "10.1.1" 2948 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-10.1.1.tgz#5fe1ea306985a099b33492001fa19a1e61efe285" 2949 | dependencies: 2950 | cliui "^4.0.0" 2951 | decamelize "^1.1.1" 2952 | find-up "^2.1.0" 2953 | get-caller-file "^1.0.1" 2954 | os-locale "^2.0.0" 2955 | require-directory "^2.1.1" 2956 | require-main-filename "^1.0.1" 2957 | set-blocking "^2.0.0" 2958 | string-width "^2.0.0" 2959 | which-module "^2.0.0" 2960 | y18n "^3.2.1" 2961 | yargs-parser "^8.1.0" 2962 | 2963 | yargs@~3.10.0: 2964 | version "3.10.0" 2965 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 2966 | dependencies: 2967 | camelcase "^1.0.2" 2968 | cliui "^2.1.0" 2969 | decamelize "^1.0.0" 2970 | window-size "0.1.0" 2971 | --------------------------------------------------------------------------------