├── .babelrc ├── .gitignore ├── .snyk ├── .travis.yml ├── README.md ├── dist └── uiuc.js ├── gulpfile.js ├── package.json ├── spec ├── scheduleSpec.js ├── src │ ├── scheduleSpec.js │ ├── termSpec.js │ ├── uiucSpec.js │ └── yearSpec.js ├── support │ └── jasmine.json ├── termSpec.js ├── uiucSpec.js └── yearSpec.js ├── src └── uiuc.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /.snyk: -------------------------------------------------------------------------------- 1 | # Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities. 2 | version: v1.7.1 3 | ignore: {} 4 | # patches apply the minimum changes required to fix a vulnerability 5 | patch: 6 | 'npm:ms:20170412': 7 | - node-rest-client > debug > ms: 8 | patched: '2017-05-21T19:00:22.464Z' 9 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "5" 4 | - "5.1" 5 | - "4" 6 | - "4.2" 7 | - "4.1" 8 | - "4.0" 9 | - "node" 10 | 11 | before_script: npm run build 12 | script: npm test 13 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # UIUC [![Build Status](https://travis-ci.org/pranaygp/uiuc.svg?branch=master)](https://travis-ci.org/pranaygp/uiuc) 2 | 3 | A JS wrapper for U of I's Course Schedule/Catalog API 4 | 5 | ## Installation 6 | 7 | ```Bash 8 | $ npm install --save uiuc 9 | ``` 10 | 11 | ## Usage 12 | 13 | This project uses some of the more popular ES6 features like Classes, Promises and arrow functions. 14 | 15 | import or require it 16 | 17 | ```Javascript 18 | 19 | import uiuc from 'uiuc' // ES6 Syntax 20 | 21 | var uiuc = require('uiuc').default 22 | 23 | ``` 24 | 25 | Read the API Docs below for more information on how to use it 26 | 27 | ## API 28 | 29 | > Don't use the constructors of any Classes. This won't get real data. They are used internally by a classes own fetch function. Use the fetch function of any class to instantiate it. 30 | 31 | ### uiuc 32 | 33 | #### Static Methods 34 | 35 | `getSchedule ( [options] )` 36 | 37 | Returns a Promise for a `Schedule` object 38 | You can optionally pass in options to get a more specific object (`Year` / `Term` / `Subject`) 39 | 40 | **Options:** 41 | 42 | * *year* - (Number | String) - *(optional)* The year for a specific schedule. 43 | * *term* - (String) - *(optional)* The term for a specific schedule. Should be set to one of "spring", "fall", "winter", "summer". Requires `year` parameter to be set. 44 | * *subject* - (String) - *(optional)* The subject code for a specific schedule. Requires `year` and `term` parameters to be set. 45 | * *active* - (Boolean) - *(optional)* Set to true to only get classes that are currently offered. Set to `false` by default. Requires `year`, `term` and `subject` parameters to be set. 46 | 47 | If you specify any options without specifying its required options, The function will behave as if the specific option wasn't passed. 48 | 49 | 50 | ### Schedule 51 | 52 | * Array [Number] `years` -> The years for which courses can be looked up 53 | 54 | #### Static Methods 55 | 56 | `fetch ()` 57 | 58 | Returns a Promise for `Schedule` object 59 | 60 | #### Methods 61 | 62 | `year( [year] )` 63 | 64 | Returns a Promise for a `Year` object. 65 | 66 | **Parameters** 67 | 68 | * *year* - (Number | String) - *(optional)* The year for a specific schedule. If set to "DEFAULT" or undefined, the latest year is used 69 | 70 | ### Year 71 | 72 | * Number `year` -> The current Year 73 | * Array [String] `terms` -> The terms for which courses can be looked up 74 | 75 | #### Static Methods 76 | 77 | `fetch ( options )` 78 | 79 | Returns a Promise for a `Year` object. 80 | 81 | **Options** 82 | 83 | * *year* - (Number | String) - *(optional)* The year for a specific schedule. If set to "DEFAULT" or undefined, the latest year is used 84 | 85 | #### Methods 86 | 87 | `term( [term] )` 88 | 89 | Returns a `Term` object. 90 | 91 | **Parameters** 92 | 93 | * *term* - (String) - *(optional)* The term for a specific schedule. Should be set to one of "spring", "fall", "winter", "summer" or "DEFAULT". If set to "DEFAULT" or undefined, the latest term is used. 94 | 95 | ### Term 96 | 97 | * Number `year` -> The current Year 98 | * String `term` -> The current Term 99 | * Array [String] `subjects` -> The subjects for which courses can be looked up 100 | 101 | #### Static Methods 102 | 103 | `fetch ( options )` 104 | 105 | Returns a Promise for a `Term` object. 106 | 107 | **Options** 108 | 109 | * *year* - (Number | String) - *(optional)* The year for a specific schedule. If set to "DEFAULT" or undefined, the latest year is used 110 | * *term* - (String) - *(optional)* The term for a specific schedule. Should be set to one of "spring", "fall", "winter", "summer" or "DEFAULT". If set to "DEFAULT" or undefined, the latest term is used. 111 | 112 | #### Methods 113 | 114 | `subject( subject , [active])` 115 | 116 | Returns a `Subject` object. 117 | 118 | **Parameters** 119 | 120 | * *subject* - (Object) Search parameters for Subject (need to have either `title` or `code`) 121 | * *active* - (Boolean) - *optional* Return only active courses (currently offered). Set to `false` by default. 122 | 123 | 124 | ### Subject 125 | 126 | * Number `year` -> The current Year 127 | * String `term` -> The current Term 128 | * String `subject` -> The current Subject 129 | * String `label` -> Full title of current Subject 130 | * String `collegeCode` -> The College Code [No idea what this is] 131 | * String `departmentCode` -> Department Code 132 | * String `unitName` -> Name of Unit [Department] 133 | * String `contactName` -> Department contact name 134 | * String `contactTitle` -> Department contact title 135 | * String `addressLine1` -> Department contact address (line 1) 136 | * String `addressLine2` -> Department contact address (line 2) 137 | * String `phoneNumber` -> Department contact phone number 138 | * String `websiteURL` -> Department website 139 | * String `collegeDepartmentDescription` -> Self Explanatory 140 | * Object `courses` -> List of courses offered under this subject 141 | 142 | #### Static Methods 143 | 144 | `fetch ( options )` 145 | 146 | Returns a Promise for a `Subject` object. 147 | 148 | **Options** 149 | 150 | * *year* - (Number | String) - *(optional)* The year for a specific schedule. If set to "DEFAULT" or undefined, the latest year is used 151 | * *term* - (String) - *(optional)* The term for a specific schedule. Should be set to one of "spring", "fall", "winter", "summer" or "DEFAULT". If set to "DEFAULT" or undefined, the latest term is used. 152 | * *subject* - (String) - The subject code for a specific schedule. 153 | * *active* - (Boolean) - *(optional)* Return only active courses (currently offered). Set to `false` by default. 154 | 155 | #### Methods 156 | 157 | `course( course, active )` 158 | 159 | Returns a `Course` object. 160 | 161 | **Parameters** 162 | 163 | * *course* - (Object) Search parameters for Course (need to have either `title` or `number`) 164 | * *active* - (Boolean) - *optional* Return only active courses (currently offered). Set to `false` by default. 165 | 166 | 167 | ### Course 168 | 169 | * Number `year` -> The current Year 170 | * String `term` -> The current Term 171 | * String `subject` -> The current Subject 172 | * String `label` -> Full title of course 173 | * String `description` -> Course Description 174 | * String `creditHourse` -> Number of Credits (Don't assume this is a number) 175 | * String `courseSectionInformation` -> self Explanatory 176 | * Array `sections` -> List of sections for this course 177 | 178 | #### Static Methods 179 | 180 | `fetch ( options )` 181 | 182 | Returns a Promise for a `Course` object. 183 | 184 | **Options** 185 | 186 | * *year* - (Number | String) - *(optional)* The year for a specific schedule. If set to "DEFAULT" or undefined, the latest year is used 187 | * *term* - (String) - *(optional)* The term for a specific schedule. Should be set to one of "spring", "fall", "winter", "summer" or "DEFAULT". If set to "DEFAULT" or undefined, the latest term is used. 188 | * *subject* - (String) - The subject code for a specific schedule. 189 | * *course* - (String) - The course number. 190 | * *active* - (Boolean) - *(optional)* Return only active courses (currently offered). Set to `false` by default. 191 | 192 | #### Methods 193 | 194 | `section( section )` 195 | 196 | Returns a `Section` object. 197 | 198 | **Parameters** 199 | 200 | * *section* - (Object) Search parameters for Section (need to have either `section` or `crn`) 201 | 202 | ### Section 203 | 204 | * Number `year` -> The current Year 205 | * String `term` -> The current Term 206 | * String `subject` -> The current Subject 207 | * String `sectionNumber` -> The section number 208 | * String `creditHourse` -> Number of credits (Don't expect this to be a number) 209 | * String `statusCode` -> status code (No idea what this is) 210 | * String `partOfTerm` -> Part of which term (usually either one of 1, A, B) 211 | * String `sectionStatusCode` -> section status code (No idea what this is) 212 | * String `enrollmentStatus` -> ability to enroll in course 213 | * String `startDate` -> start date of course (section) 214 | * String `endDate` -> end date of course (section) 215 | * Array `meetings` -> list of meeting objects for course 216 | * String `type` -> type of section (Lecture, Discussion, Lab, etc.) 217 | * String `start` -> start time 218 | * String `end` -> end time 219 | * String `daysOfTheWeek` -> which days the section meets (in the form of'TR' or 'MWF' etc) 220 | * String `roomNumber` -> room number of venue 221 | * String `buildingName` -> building name of venue 222 | * Array `instructors` -> list of instructors for course 223 | 224 | #### Static Methods 225 | 226 | `fetch ( options )` 227 | 228 | Returns a Promise for a `Section` object. 229 | 230 | **Options** 231 | 232 | * *year* - (Number | String) - *(optional)* The year for a specific schedule. If set to "DEFAULT" or undefined, the latest year is used 233 | * *term* - (String) - *(optional)* The term for a specific schedule. Should be set to one of "spring", "fall", "winter", "summer" or "DEFAULT". If set to "DEFAULT" or undefined, the latest term is used. 234 | * *subject* - (String) - The subject code for a specific schedule. 235 | * *course* - (String) - The course number. 236 | * *crn* - (String) - The crn. 237 | * *active* - (Boolean) - *(optional)* Return only active courses (currently offered). Set to `false` by default. -------------------------------------------------------------------------------- /dist/uiuc.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | 7 | var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); 8 | 9 | var _nodeRestClient = require('node-rest-client'); 10 | 11 | var _lodash = require('lodash'); 12 | 13 | var _lodash2 = _interopRequireDefault(_lodash); 14 | 15 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 16 | 17 | function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } 18 | 19 | var Schedule = function () { 20 | function Schedule(years) { 21 | _classCallCheck(this, Schedule); 22 | 23 | this.years = years.map(function (year) { 24 | return Number(year); 25 | }); 26 | } 27 | 28 | _createClass(Schedule, [{ 29 | key: 'year', 30 | value: function year(_year) { 31 | if (!_year) { 32 | _year = "DEFAULT"; 33 | } 34 | 35 | try { 36 | _year = Number(_year); 37 | if (!(_lodash2.default.indexOf(this.years, _year) > -1)) { 38 | return new Promise(function (resolve, reject) { 39 | reject("Invalid Year"); 40 | }); 41 | } 42 | } catch (e) { 43 | if (_year != "DEFAULT") { 44 | return new Promise(function (resolve, reject) { 45 | reject("Invalid Year"); 46 | }); 47 | } 48 | } 49 | return Year.fetch({ year: _year }); 50 | } 51 | }], [{ 52 | key: 'fetch', 53 | value: function fetch() { 54 | return new Promise(function (resolve, reject) { 55 | var client = new _nodeRestClient.Client(); 56 | client.get("http://courses.illinois.edu/cisapp/explorer/schedule.xml", function (data, response) { 57 | resolve(new Schedule(data['ns2:schedule'].calendarYears[0].calendarYear.map(function (calendarYear) { 58 | return calendarYear._; 59 | }))); 60 | }); 61 | client = null; 62 | }); 63 | } 64 | }]); 65 | 66 | return Schedule; 67 | }(); 68 | 69 | var Year = function () { 70 | function Year(year, terms) { 71 | _classCallCheck(this, Year); 72 | 73 | this.year = year; 74 | this.terms = terms.map(function (string) { 75 | return _lodash2.default.words(string)[0]; 76 | }).map(function (string) { 77 | return _lodash2.default.toLower(string); 78 | }); 79 | } 80 | 81 | _createClass(Year, [{ 82 | key: 'term', 83 | value: function term(_term) { 84 | 85 | try { 86 | _term = _lodash2.default.toLower(_term); 87 | } catch (e) { 88 | return new Promise(function (resolve, reject) { 89 | reject("Invalid Term"); 90 | }); 91 | } 92 | 93 | if (_term != "DEFAULT" && !(_lodash2.default.indexOf(this.terms, _term) > -1)) { 94 | return new Promise(function (resolve, reject) { 95 | reject("Invalid Term"); 96 | }); 97 | } else { 98 | return Term.fetch({ 99 | year: this.year, 100 | term: _term 101 | }); 102 | } 103 | } 104 | }], [{ 105 | key: 'fetch', 106 | value: function fetch(_ref) { 107 | var _ref$year = _ref.year, 108 | year = _ref$year === undefined ? "DEFAULT" : _ref$year; 109 | 110 | 111 | try { 112 | year = Number(year); 113 | } catch (e) { 114 | if (year != "DEFAULT") return new Promise(function (resolve, reject) { 115 | reject("Invalid Year"); 116 | }); 117 | } 118 | 119 | return new Promise(function (resolve, reject) { 120 | var client = new _nodeRestClient.Client(); 121 | client.get('http://courses.illinois.edu/cisapp/explorer/catalog/' + year + '.xml', function (data, response) { 122 | resolve(new Year(year, data['ns2:calendarYear'].terms[0].term.map(function (term) { 123 | return term._; 124 | }))); 125 | }); 126 | client = null; 127 | }); 128 | } 129 | }]); 130 | 131 | return Year; 132 | }(); 133 | 134 | var Term = function () { 135 | function Term(term, year, subjects) { 136 | _classCallCheck(this, Term); 137 | 138 | this.term = term; 139 | this.year = year; 140 | this.subjects = subjects.map(function (_ref2) { 141 | var title = _ref2.title, 142 | code = _ref2.code; 143 | return { title: _lodash2.default.toUpper(title), code: _lodash2.default.toUpper(code) }; 144 | }); 145 | } 146 | 147 | _createClass(Term, [{ 148 | key: 'subject', 149 | value: function subject(_subject, active) { 150 | _subject = _lodash2.default.mapValues(_subject, function (value) { 151 | return _lodash2.default.toUpper(value); 152 | }); 153 | _subject = _lodash2.default.find(this.subjects, _lodash2.default.pick(_subject, _lodash2.default.keys(_subject)[0])); 154 | 155 | if (_subject == undefined) { 156 | return new Promise(function (resolve, reject) { 157 | reject("Invalid Subject"); 158 | }); 159 | } else { 160 | return Subject.fetch({ 161 | subject: _subject.code, 162 | term: this.term, 163 | year: this.year, 164 | active: active 165 | }); 166 | } 167 | } 168 | }], [{ 169 | key: 'fetch', 170 | value: function fetch(_ref3) { 171 | var _ref3$year = _ref3.year, 172 | year = _ref3$year === undefined ? "DEFAULT" : _ref3$year, 173 | _ref3$term = _ref3.term, 174 | term = _ref3$term === undefined ? "DEFAULT" : _ref3$term; 175 | 176 | 177 | try { 178 | year = Number(year); 179 | } catch (e) { 180 | if (year != "DEFAULT") { 181 | return new Promise(function (resolve, reject) { 182 | reject("Invalid Year"); 183 | }); 184 | } 185 | } 186 | 187 | return new Promise(function (resolve, reject) { 188 | var client = new _nodeRestClient.Client(); 189 | client.get('http://courses.illinois.edu/cisapp/explorer/catalog/' + year + '/' + term + '.xml', function (data, response) { 190 | resolve(new Term(term, year, data['ns2:term'].subjects[0].subject.map(function (subject) { 191 | return { title: subject._, code: subject.$.id }; 192 | }))); 193 | }); 194 | client = null; 195 | }); 196 | } 197 | }]); 198 | 199 | return Term; 200 | }(); 201 | 202 | var Subject = function () { 203 | function Subject(subject, term, year, label, collegeCode, departmentCode, unitName, contactName, contactTitle, addressLine1, addressLine2, phoneNumber, webSiteURL, collegeDepartmentDescription, courses) { 204 | _classCallCheck(this, Subject); 205 | 206 | this.subject = subject; 207 | this.term = term; 208 | this.year = year; 209 | this.label = label; 210 | this.collegeCode = collegeCode; 211 | this.departmentCode = departmentCode; 212 | this.unitName = unitName; 213 | this.contactName = contactName; 214 | this.contactTitle = contactTitle; 215 | this.addressLine1 = addressLine1; 216 | this.addressLine2 = addressLine2; 217 | this.phoneNumber = phoneNumber; 218 | this.webSiteURL = webSiteURL; 219 | this.collegeDepartmentDescription = collegeDepartmentDescription; 220 | this.courses = courses; 221 | } 222 | 223 | _createClass(Subject, [{ 224 | key: 'course', 225 | value: function course(_course, active) { 226 | 227 | _course = _lodash2.default.find(this.courses, _lodash2.default.pick(_course, _lodash2.default.keys(_course)[0])); 228 | if (_course == undefined) { 229 | return new Promise(function (resolve, reject) { 230 | reject("Invalid Course"); 231 | }); 232 | } else { 233 | return Course.fetch({ 234 | course: _course.number, 235 | subject: this.subject, 236 | term: this.term, 237 | year: this.year, 238 | active: active 239 | }); 240 | } 241 | } 242 | }], [{ 243 | key: 'fetch', 244 | value: function fetch(_ref4) { 245 | var subject = _ref4.subject, 246 | _ref4$term = _ref4.term, 247 | term = _ref4$term === undefined ? "DEFAULT" : _ref4$term, 248 | _ref4$year = _ref4.year, 249 | year = _ref4$year === undefined ? "DEFAULT" : _ref4$year, 250 | _ref4$active = _ref4.active, 251 | active = _ref4$active === undefined ? false : _ref4$active; 252 | 253 | var module = "catalog"; 254 | if (active == true) { 255 | module = "schedule"; 256 | } 257 | return new Promise(function (resolve, reject) { 258 | if (subject == undefined) { 259 | reject("Invalid Subject"); 260 | } else { 261 | var client = new _nodeRestClient.Client(); 262 | client.get('http://courses.illinois.edu/cisapp/explorer/' + module + '/' + year + '/' + term + '/' + subject + '.xml', function (data, response) { 263 | if (!data['ns2:subject']) { 264 | reject(data); 265 | } else { 266 | resolve(new Subject(subject, term !== 'DEFAULT' ? term : _lodash2.default.toLower(data['ns2:subject'].parents[0].term[0]._.split(' ')[0]), year !== 'DEFAULT' ? year : data['ns2:subject'].parents[0].calendarYear[0]._, data['ns2:subject'].label[0], data['ns2:subject'].collegeCode[0], data['ns2:subject'].departmentCode[0], data['ns2:subject'].unitName[0], data['ns2:subject'].contactName[0], data['ns2:subject'].contactTitle[0], data['ns2:subject'].addressLine1[0], data['ns2:subject'].addressLine2[0], data['ns2:subject'].phoneNumber[0], data['ns2:subject'].webSiteURL[0], data['ns2:subject'].collegeDepartmentDescription[0], data['ns2:subject'].courses[0].course.map(function (_ref5) { 267 | var _ = _ref5._, 268 | $ = _ref5.$; 269 | return { course: _, number: $.id }; 270 | }))); 271 | } 272 | }); 273 | client = null; 274 | } 275 | }); 276 | } 277 | }]); 278 | 279 | return Subject; 280 | }(); 281 | 282 | var Course = function () { 283 | function Course(course, subject, term, year, label, description, creditHours, courseSectionInformation, sections) { 284 | _classCallCheck(this, Course); 285 | 286 | this.course = course; 287 | this.subject = subject; 288 | this.term = term; 289 | this.year = year; 290 | this.label = label; 291 | this.description = description; 292 | this.creditHours = creditHours; 293 | this.courseSectionInformation = courseSectionInformation; 294 | this.sections = sections; 295 | } 296 | 297 | _createClass(Course, [{ 298 | key: 'section', 299 | value: function section(_section, active) { 300 | _section = _lodash2.default.find(this.sections, _lodash2.default.pick(_section, _lodash2.default.keys(_section)[0])); 301 | 302 | if (_section == undefined) { 303 | return new Promise(function (resolve, reject) { 304 | reject("Invalid Section"); 305 | }); 306 | } else { 307 | return Section.fetch({ 308 | crn: _section.crn, 309 | course: this.course, 310 | subject: this.subject, 311 | term: this.term, 312 | year: this.year, 313 | active: active 314 | }); 315 | } 316 | } 317 | }], [{ 318 | key: 'fetch', 319 | value: function fetch(_ref6) { 320 | var course = _ref6.course, 321 | subject = _ref6.subject, 322 | _ref6$term = _ref6.term, 323 | term = _ref6$term === undefined ? "DEFAULT" : _ref6$term, 324 | _ref6$year = _ref6.year, 325 | year = _ref6$year === undefined ? "DEFAULT" : _ref6$year, 326 | _ref6$active = _ref6.active, 327 | active = _ref6$active === undefined ? false : _ref6$active; 328 | 329 | var module = "catalog"; 330 | if (active == true) { 331 | module = "schedule"; 332 | } 333 | 334 | return new Promise(function (resolve, reject) { 335 | if (subject == undefined) { 336 | reject("Invalid Subject"); 337 | }if (course == undefined) { 338 | reject("Invalid Course"); 339 | } else { 340 | var client = new _nodeRestClient.Client(); 341 | client.get('http://courses.illinois.edu/cisapp/explorer/' + module + '/' + year + '/' + term + '/' + subject + '/' + course + '.xml', function (data, response) { 342 | if (!data['ns2:course']) { 343 | reject(data); 344 | } else { 345 | resolve(new Course(course, subject, term !== 'DEFAULT' ? term : _lodash2.default.toLower(data['ns2:course'].parents[0].term[0]._.split(' ')[0]), year !== 'DEFAULT' ? year : data['ns2:course'].parents[0].calendarYear[0]._, data['ns2:course'].label[0], data['ns2:course'].description[0], data['ns2:course'].creditHours[0], data['ns2:course'].courseSectionInformation[0], active ? data['ns2:course'].sections[0].section.map(function (_ref7) { 346 | var $ = _ref7.$, 347 | _ = _ref7._; 348 | return { section: _.trim(), crn: $.id.trim() }; 349 | }) : [])); 350 | } 351 | }); 352 | client = null; 353 | } 354 | }); 355 | } 356 | }]); 357 | 358 | return Course; 359 | }(); 360 | 361 | var Section = function () { 362 | function Section(crn, course, subject, term, year, sectionNumber, creditHours, statusCode, partOfTerm, sectionStatusCode, enrollmentStatus, startDate, endDate, meetings) { 363 | _classCallCheck(this, Section); 364 | 365 | this.course = course; 366 | this.subject = subject; 367 | this.term = term; 368 | this.year = year; 369 | this.sectionNumber = sectionNumber; 370 | this.creditHours = creditHours; 371 | this.statusCode = statusCode; 372 | this.partOfTerm = partOfTerm; 373 | this.sectionStatusCode = sectionStatusCode; 374 | this.enrollmentStatus = enrollmentStatus; 375 | this.startDate = startDate; 376 | this.endDate = endDate; 377 | this.meetings = meetings; 378 | } 379 | 380 | _createClass(Section, null, [{ 381 | key: 'fetch', 382 | value: function fetch(_ref8) { 383 | var crn = _ref8.crn, 384 | course = _ref8.course, 385 | subject = _ref8.subject, 386 | _ref8$term = _ref8.term, 387 | term = _ref8$term === undefined ? "DEFAULT" : _ref8$term, 388 | _ref8$year = _ref8.year, 389 | year = _ref8$year === undefined ? "DEFAULT" : _ref8$year; 390 | 391 | var module = "schedule"; 392 | 393 | return new Promise(function (resolve, reject) { 394 | if (subject == undefined) { 395 | reject("Invalid Subject"); 396 | }if (course == undefined) { 397 | reject("Invalid Course"); 398 | }if (crn == undefined) { 399 | reject("Invalid CRN"); 400 | } else { 401 | var client = new _nodeRestClient.Client(); 402 | client.get('http://courses.illinois.edu/cisapp/explorer/' + module + '/' + year + '/' + term + '/' + subject + '/' + course + '/' + crn + '.xml', function (data, response) { 403 | if (!data['ns2:section']) { 404 | reject(data); 405 | } else { 406 | resolve(new Section(crn, course, subject, term !== 'DEFAULT' ? term : _lodash2.default.toLower(data['ns2:section'].parents[0].term[0]._.split(' ')[0]), year !== 'DEFAULT' ? year : data['ns2:section'].parents[0].calendarYear[0]._, data['ns2:section'].sectionNumber[0].trim(), (data['ns2:section'].creditHours || [''])[0], // HACK: for some reason this broke on a CS 374 section (which didn't have credit hours :3) 407 | data['ns2:section'].statusCode[0], data['ns2:section'].partOfTerm[0], data['ns2:section'].sectionStatusCode[0], data['ns2:section'].enrollmentStatus[0], data['ns2:section'].startDate[0], data['ns2:section'].endDate[0], data['ns2:section'].meetings[0].meeting.map(function (meeting) { 408 | return new Meeting(meeting); 409 | }))); 410 | } 411 | }); 412 | client = null; 413 | } 414 | }); 415 | } 416 | }]); 417 | 418 | return Section; 419 | }(); 420 | 421 | var Meeting = function Meeting(_ref9) { 422 | var $ = _ref9.$, 423 | type = _ref9.type, 424 | start = _ref9.start, 425 | end = _ref9.end, 426 | daysOfTheWeek = _ref9.daysOfTheWeek, 427 | roomNumber = _ref9.roomNumber, 428 | buildingName = _ref9.buildingName, 429 | instructors = _ref9.instructors; 430 | 431 | _classCallCheck(this, Meeting); 432 | 433 | this.type = type[0]._; 434 | this.start = start[0]; 435 | this.end = end[0]; 436 | this.daysOfTheWeek = daysOfTheWeek[0].trim(); 437 | this.roomNumber = roomNumber[0]; 438 | this.buildingName = buildingName[0]; 439 | this.instructors = instructors[0].instructor.map(function (instructor) { 440 | return instructor._; 441 | }); 442 | }; 443 | 444 | exports.default = { 445 | Schedule: Schedule, 446 | Term: Term, 447 | Subject: Subject, 448 | Course: Course, 449 | getSchedule: function getSchedule(options) { 450 | 451 | if (options) { 452 | var year = options.year, 453 | term = options.term, 454 | subject = options.subject, 455 | course = options.course; 456 | 457 | if (year) { 458 | if (term) { 459 | if (subject) { 460 | if (course) { 461 | return Course.fetch(options); 462 | } 463 | return Subject.fetch(options); 464 | } 465 | return Term.fetch(options); 466 | } 467 | return Year.fetch(options); 468 | } 469 | } else { 470 | return Schedule.fetch(); 471 | } 472 | } 473 | }; -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- 1 | const gulp = require("gulp") 2 | const babel = require("gulp-babel") 3 | 4 | gulp.task("build-test", () => { 5 | return gulp.src("spec/src/**/*.js") 6 | .pipe(babel()) 7 | .pipe(gulp.dest("spec")) 8 | }) 9 | 10 | gulp.task("default", () => { 11 | return gulp.src("src/**/*.js") 12 | .pipe(babel()) 13 | .pipe(gulp.dest("dist")) 14 | }) 15 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "uiuc", 3 | "version": "2.0.2", 4 | "description": "An unofficial JS wrapper for the UIUC Course Directory", 5 | "main": "dist/uiuc.js", 6 | "scripts": { 7 | "test": "gulp build-test && jasmine", 8 | "build": "gulp", 9 | "snyk-protect": "snyk protect", 10 | "prepublish": "npm run snyk-protect" 11 | }, 12 | "keywords": [ 13 | "uiuc", 14 | "illinois", 15 | "UofI" 16 | ], 17 | "author": "Pranay Prakash (http://pranayprakash.co)", 18 | "license": "MIT", 19 | "devDependencies": { 20 | "babel-preset-es2015": "^6.6.0", 21 | "gulp": "^3.9.1", 22 | "gulp-babel": "^6.1.2", 23 | "jasmine": "^2.4.1", 24 | "jasmine-core": "^2.4.1" 25 | }, 26 | "dependencies": { 27 | "lodash": "^4.7.0", 28 | "node-rest-client": "^1.8.0", 29 | "snyk": "^1.30.1" 30 | }, 31 | "repository": "pranaygp/uiuc", 32 | "snyk": true 33 | } -------------------------------------------------------------------------------- /spec/scheduleSpec.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | var _ = require("./../"); 4 | 5 | var _2 = _interopRequireDefault(_); 6 | 7 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 8 | 9 | describe("schedule", function () { 10 | var schedule = void 0; 11 | 12 | beforeAll(function (done) { 13 | _2.default.getSchedule().then(function (data) { 14 | schedule = data; 15 | done(); 16 | }); 17 | }); 18 | 19 | it("contains an array of years", function () { 20 | expect(schedule.years).toEqual(jasmine.any(Array)); 21 | expect(schedule.years.length).toBeGreaterThan(0); 22 | }); 23 | 24 | describe(".year(year)", function () { 25 | 26 | it("returns a Promise", function () { 27 | expect(schedule.year(schedule.years[0])).toEqual(jasmine.any(Promise)); 28 | }); 29 | 30 | it("returns a year", function (done) { 31 | schedule.year(schedule.years[0]).then(function (year) { 32 | expect(year.constructor.name).toEqual("Year"); 33 | done(); 34 | }).catch(function (err) { 35 | fail(err); 36 | done(); 37 | }); 38 | }); 39 | 40 | it("returns a year (Number)", function (done) { 41 | schedule.year(Number(schedule.years[0])).then(function (year) { 42 | expect(year.constructor.name).toEqual("Year"); 43 | done(); 44 | }).catch(function (err) { 45 | fail(err); 46 | done(); 47 | }); 48 | }); 49 | 50 | it("returns an error on invalid year", function (done) { 51 | schedule.year('2020').then(function (year) { 52 | fail("No error!"); 53 | done(); 54 | }).catch(function (err) { 55 | expect(err).toEqual("Invalid Year"); 56 | done(); 57 | }); 58 | }); 59 | }); 60 | }); -------------------------------------------------------------------------------- /spec/src/scheduleSpec.js: -------------------------------------------------------------------------------- 1 | import uiuc from './../' 2 | 3 | describe("schedule", () => { 4 | let schedule; 5 | 6 | beforeAll((done) => { 7 | uiuc.getSchedule() 8 | .then((data) => { 9 | schedule = data; 10 | done(); 11 | }) 12 | }) 13 | 14 | it("contains an array of years", () => { 15 | expect(schedule.years).toEqual(jasmine.any(Array)) 16 | expect(schedule.years.length).toBeGreaterThan(0); 17 | }) 18 | 19 | describe(".year(year)", () => { 20 | 21 | it("returns a Promise", () => { 22 | expect(schedule.year(schedule.years[0])).toEqual(jasmine.any(Promise)) 23 | }) 24 | 25 | it("returns a year", (done) => { 26 | schedule.year(schedule.years[0]) 27 | .then((year) => { 28 | expect(year.constructor.name).toEqual("Year") 29 | done(); 30 | }) 31 | .catch((err) => { 32 | fail(err); 33 | done(); 34 | }) 35 | }) 36 | 37 | it("returns a year (Number)", (done) => { 38 | schedule.year(Number(schedule.years[0])) 39 | .then((year) => { 40 | expect(year.constructor.name).toEqual("Year") 41 | done(); 42 | }) 43 | .catch((err) => { 44 | fail(err); 45 | done(); 46 | }) 47 | }) 48 | 49 | it("returns an error on invalid year", (done) => { 50 | schedule.year('2020').then((year) => { 51 | fail("No error!"); 52 | done(); 53 | }).catch((err) => { 54 | expect(err).toEqual("Invalid Year") 55 | done(); 56 | }) 57 | }) 58 | 59 | }) 60 | 61 | }) 62 | -------------------------------------------------------------------------------- /spec/src/termSpec.js: -------------------------------------------------------------------------------- 1 | import uiuc from './../' 2 | import _ from 'lodash' 3 | 4 | describe("term", () => { 5 | let term; 6 | 7 | beforeAll((done) => { 8 | uiuc.getSchedule() 9 | .then(schedule => schedule.year(schedule.years[0])) 10 | .then(year => year.term(year.terms[3])) 11 | .then(data => { 12 | term = data; 13 | done(); 14 | }) 15 | }) 16 | 17 | it("contains the current year as a Number", () => { 18 | expect(term.year).toEqual(jasmine.any(Number)) 19 | }) 20 | 21 | it("contains an array of subjects", () => { 22 | expect(term.subjects).toEqual(jasmine.any(Array)) 23 | expect(term.subjects.length).toBeGreaterThan(0); 24 | }) 25 | 26 | describe(".subject(subject)", () => { 27 | 28 | it("returns a Promise", () => { 29 | expect(term.subject(term.subjects[0])).toEqual(jasmine.any(Promise)) 30 | }) 31 | 32 | it("returns a subject", (done) => { 33 | term.subject(term.subjects[0]) 34 | .then((subject) => { 35 | expect(subject.constructor.name).toEqual("Subject") 36 | done(); 37 | }) 38 | .catch((err) => {fail(err); done();}) 39 | 40 | term.subject(term.subjects[0], true) 41 | .then((subject) => { 42 | expect(subject.constructor.name).toEqual("Subject") 43 | done(); 44 | }) 45 | .catch((err) => {fail(err); done();}) 46 | // console.log(term.section(46258)) 47 | }) 48 | 49 | it("throws an error on invalid subject", (done) => { 50 | term.subject({code: "LOLOLOLOLOLOL"}) 51 | .then((subject) => { 52 | fail("Did not throw error") 53 | done(); 54 | }) 55 | .catch((err) => { 56 | expect(err).toEqual("Invalid Subject"); 57 | done(); 58 | }) 59 | }) 60 | 61 | }) 62 | 63 | }) 64 | -------------------------------------------------------------------------------- /spec/src/uiucSpec.js: -------------------------------------------------------------------------------- 1 | import uiuc from './../' 2 | // const uiuc = require("./../").default 3 | 4 | describe("getSchedule()", () => { 5 | 6 | it("is not null", () => { 7 | expect(uiuc.getSchedule()).not.toBeNull(); 8 | }) 9 | 10 | it("returns a Promise", () => { 11 | expect(uiuc.getSchedule()).toEqual(jasmine.any(Promise)) 12 | }) 13 | 14 | it("returns a Schedule", (done) => { 15 | uiuc.getSchedule().then((schedule) => { 16 | expect(schedule.constructor.name).toEqual("Schedule") 17 | done() 18 | }) 19 | }) 20 | 21 | it("can return a Year", (done) => { 22 | uiuc.getSchedule({year: 2016}).then((schedule) => { 23 | expect(schedule.constructor.name).toEqual("Year") 24 | done() 25 | }) 26 | }) 27 | 28 | it("can return a Term", (done) => { 29 | uiuc.getSchedule({year: 2016, term: "spring"}).then((schedule) => { 30 | expect(schedule.constructor.name).toEqual("Term") 31 | done() 32 | }) 33 | }) 34 | 35 | it("can return a Subject", (done) => { 36 | uiuc.getSchedule({year: 2016, term: "spring", subject: "ADV"}).then((schedule) => { 37 | expect(schedule.constructor.name).toEqual("Subject") 38 | done() 39 | }) 40 | }) 41 | 42 | }) 43 | -------------------------------------------------------------------------------- /spec/src/yearSpec.js: -------------------------------------------------------------------------------- 1 | import uiuc from './../' 2 | import _ from 'lodash' 3 | 4 | describe("year", () => { 5 | let year; 6 | 7 | beforeAll((done) => { 8 | uiuc.getSchedule() 9 | .then(schedule => schedule.year(schedule.years[0])) 10 | .then(data => { 11 | year = data 12 | done() 13 | }) 14 | }) 15 | 16 | it("contains the current year", () => { 17 | expect(year.year).toEqual(jasmine.any(Number)) 18 | expect(year.year).not.toBeNull(); 19 | }) 20 | 21 | it("contains an array of terms", () => { 22 | expect(year.terms).toEqual(jasmine.any(Array)) 23 | expect(year.terms.length).toBeGreaterThan(0); 24 | }) 25 | 26 | describe(".term(term)", () => { 27 | 28 | it("returns a Promise", () => { 29 | expect(year.term(year.terms[0])).toEqual(jasmine.any(Promise)) 30 | }) 31 | 32 | it("returns a term", (done) => { 33 | year.term(year.terms[0]) 34 | .then((term) => { 35 | expect(term.constructor.name).toEqual("Term") 36 | done(); 37 | }) 38 | .catch((err) => {fail(err); done();}) 39 | }) 40 | 41 | it("returns a term (lowercase)", (done) => { 42 | year.term(_.toLower(year.terms[0])) 43 | .then((term) => { 44 | expect(term.constructor.name).toEqual("Term") 45 | done(); 46 | }) 47 | .catch((err) => {fail(err); done();}) 48 | }) 49 | 50 | it("returns a term (uppercase)", (done) => { 51 | year.term(_.toUpper(year.terms[0])) 52 | .then((term) => { 53 | expect(term.constructor.name).toEqual("Term") 54 | done(); 55 | }) 56 | .catch((err) => {fail(err); done();}) 57 | }) 58 | 59 | it("throws an error on invalid term", (done) => { 60 | year.term("LOL") 61 | .then((term) => { 62 | fail("Did not throw error") 63 | done(); 64 | }) 65 | .catch((err) => { 66 | expect(err).toEqual("Invalid Term"); 67 | done(); 68 | }) 69 | }) 70 | 71 | }) 72 | 73 | }) 74 | -------------------------------------------------------------------------------- /spec/support/jasmine.json: -------------------------------------------------------------------------------- 1 | { 2 | "spec_dir": "spec", 3 | "spec_files": [ 4 | "*[sS]pec.js" 5 | ], 6 | "helpers": [ 7 | "helpers/**/*.js" 8 | ], 9 | "stopSpecOnExpectationFailure": false, 10 | "random": false 11 | } 12 | -------------------------------------------------------------------------------- /spec/termSpec.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var _2 = require('./../'); 4 | 5 | var _3 = _interopRequireDefault(_2); 6 | 7 | var _lodash = require('lodash'); 8 | 9 | var _lodash2 = _interopRequireDefault(_lodash); 10 | 11 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 12 | 13 | describe("term", function () { 14 | var term = void 0; 15 | 16 | beforeAll(function (done) { 17 | _3.default.getSchedule().then(function (schedule) { 18 | return schedule.year(schedule.years[0]); 19 | }).then(function (year) { 20 | return year.term(year.terms[3]); 21 | }).then(function (data) { 22 | term = data; 23 | done(); 24 | }); 25 | }); 26 | 27 | it("contains the current year as a Number", function () { 28 | expect(term.year).toEqual(jasmine.any(Number)); 29 | }); 30 | 31 | it("contains an array of subjects", function () { 32 | expect(term.subjects).toEqual(jasmine.any(Array)); 33 | expect(term.subjects.length).toBeGreaterThan(0); 34 | }); 35 | 36 | describe(".subject(subject)", function () { 37 | 38 | it("returns a Promise", function () { 39 | expect(term.subject(term.subjects[0])).toEqual(jasmine.any(Promise)); 40 | }); 41 | 42 | it("returns a subject", function (done) { 43 | term.subject(term.subjects[0]).then(function (subject) { 44 | expect(subject.constructor.name).toEqual("Subject"); 45 | done(); 46 | }).catch(function (err) { 47 | fail(err);done(); 48 | }); 49 | 50 | term.subject(term.subjects[0], true).then(function (subject) { 51 | expect(subject.constructor.name).toEqual("Subject"); 52 | done(); 53 | }).catch(function (err) { 54 | fail(err);done(); 55 | }); 56 | // console.log(term.section(46258)) 57 | }); 58 | 59 | it("throws an error on invalid subject", function (done) { 60 | term.subject({ code: "LOLOLOLOLOLOL" }).then(function (subject) { 61 | fail("Did not throw error"); 62 | done(); 63 | }).catch(function (err) { 64 | expect(err).toEqual("Invalid Subject"); 65 | done(); 66 | }); 67 | }); 68 | }); 69 | }); -------------------------------------------------------------------------------- /spec/uiucSpec.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | var _ = require("./../"); 4 | 5 | var _2 = _interopRequireDefault(_); 6 | 7 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 8 | 9 | // const uiuc = require("./../").default 10 | 11 | describe("getSchedule()", function () { 12 | 13 | it("is not null", function () { 14 | expect(_2.default.getSchedule()).not.toBeNull(); 15 | }); 16 | 17 | it("returns a Promise", function () { 18 | expect(_2.default.getSchedule()).toEqual(jasmine.any(Promise)); 19 | }); 20 | 21 | it("returns a Schedule", function (done) { 22 | _2.default.getSchedule().then(function (schedule) { 23 | expect(schedule.constructor.name).toEqual("Schedule"); 24 | done(); 25 | }); 26 | }); 27 | 28 | it("can return a Year", function (done) { 29 | _2.default.getSchedule({ year: 2016 }).then(function (schedule) { 30 | expect(schedule.constructor.name).toEqual("Year"); 31 | done(); 32 | }); 33 | }); 34 | 35 | it("can return a Term", function (done) { 36 | _2.default.getSchedule({ year: 2016, term: "spring" }).then(function (schedule) { 37 | expect(schedule.constructor.name).toEqual("Term"); 38 | done(); 39 | }); 40 | }); 41 | 42 | it("can return a Subject", function (done) { 43 | _2.default.getSchedule({ year: 2016, term: "spring", subject: "ADV" }).then(function (schedule) { 44 | expect(schedule.constructor.name).toEqual("Subject"); 45 | done(); 46 | }); 47 | }); 48 | }); -------------------------------------------------------------------------------- /spec/yearSpec.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var _2 = require('./../'); 4 | 5 | var _3 = _interopRequireDefault(_2); 6 | 7 | var _lodash = require('lodash'); 8 | 9 | var _lodash2 = _interopRequireDefault(_lodash); 10 | 11 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 12 | 13 | describe("year", function () { 14 | var year = void 0; 15 | 16 | beforeAll(function (done) { 17 | _3.default.getSchedule().then(function (schedule) { 18 | return schedule.year(schedule.years[0]); 19 | }).then(function (data) { 20 | year = data; 21 | done(); 22 | }); 23 | }); 24 | 25 | it("contains the current year", function () { 26 | expect(year.year).toEqual(jasmine.any(Number)); 27 | expect(year.year).not.toBeNull(); 28 | }); 29 | 30 | it("contains an array of terms", function () { 31 | expect(year.terms).toEqual(jasmine.any(Array)); 32 | expect(year.terms.length).toBeGreaterThan(0); 33 | }); 34 | 35 | describe(".term(term)", function () { 36 | 37 | it("returns a Promise", function () { 38 | expect(year.term(year.terms[0])).toEqual(jasmine.any(Promise)); 39 | }); 40 | 41 | it("returns a term", function (done) { 42 | year.term(year.terms[0]).then(function (term) { 43 | expect(term.constructor.name).toEqual("Term"); 44 | done(); 45 | }).catch(function (err) { 46 | fail(err);done(); 47 | }); 48 | }); 49 | 50 | it("returns a term (lowercase)", function (done) { 51 | year.term(_lodash2.default.toLower(year.terms[0])).then(function (term) { 52 | expect(term.constructor.name).toEqual("Term"); 53 | done(); 54 | }).catch(function (err) { 55 | fail(err);done(); 56 | }); 57 | }); 58 | 59 | it("returns a term (uppercase)", function (done) { 60 | year.term(_lodash2.default.toUpper(year.terms[0])).then(function (term) { 61 | expect(term.constructor.name).toEqual("Term"); 62 | done(); 63 | }).catch(function (err) { 64 | fail(err);done(); 65 | }); 66 | }); 67 | 68 | it("throws an error on invalid term", function (done) { 69 | year.term("LOL").then(function (term) { 70 | fail("Did not throw error"); 71 | done(); 72 | }).catch(function (err) { 73 | expect(err).toEqual("Invalid Term"); 74 | done(); 75 | }); 76 | }); 77 | }); 78 | }); -------------------------------------------------------------------------------- /src/uiuc.js: -------------------------------------------------------------------------------- 1 | import {Client} from 'node-rest-client' 2 | import _ from 'lodash' 3 | 4 | class Schedule{ 5 | constructor(years){ 6 | this.years = years.map((year) => Number(year)) 7 | } 8 | 9 | year(year){ 10 | if(!year){ 11 | year = "DEFAULT" 12 | } 13 | 14 | try{ 15 | year = Number(year) 16 | if(! ( _.indexOf(this.years, year) > -1 )){ 17 | return new Promise(function(resolve, reject) { 18 | reject("Invalid Year"); 19 | }); 20 | } 21 | } catch(e){ 22 | if(year != "DEFAULT"){ 23 | return new Promise(function(resolve, reject) { 24 | reject("Invalid Year"); 25 | }); 26 | } 27 | } 28 | return Year.fetch({year}) 29 | 30 | } 31 | 32 | static fetch(){ 33 | return new Promise(function(resolve, reject) { 34 | let client = new Client(); 35 | client.get("http://courses.illinois.edu/cisapp/explorer/schedule.xml", (data, response) => { 36 | resolve(new Schedule(data['ns2:schedule'].calendarYears[0].calendarYear.map((calendarYear) => calendarYear._))) 37 | }) 38 | client = null; 39 | }); 40 | } 41 | } 42 | 43 | class Year{ 44 | constructor(year, terms){ 45 | this.year = year 46 | this.terms = terms 47 | .map(string => _.words(string)[0]) 48 | .map(string => _.toLower(string)) 49 | } 50 | 51 | term(term){ 52 | 53 | try { 54 | term = _.toLower(term) 55 | } catch(e){ 56 | return new Promise(function(resolve, reject) { 57 | reject("Invalid Term") 58 | }); 59 | } 60 | 61 | if(term != "DEFAULT" && ! ( _.indexOf(this.terms, term) > -1 )){ 62 | return new Promise(function(resolve, reject) { 63 | reject("Invalid Term"); 64 | }); 65 | } else { 66 | return Term.fetch({ 67 | year: this.year, 68 | term: term 69 | }); 70 | } 71 | 72 | 73 | } 74 | 75 | static fetch({year = "DEFAULT"}){ 76 | 77 | try { 78 | year = Number(year); 79 | } catch (e) { 80 | if(year != "DEFAULT") 81 | return new Promise(function(resolve, reject) { 82 | reject("Invalid Year") 83 | }); 84 | } 85 | 86 | return new Promise((resolve, reject) => { 87 | let client = new Client(); 88 | client.get(`http://courses.illinois.edu/cisapp/explorer/catalog/${year}.xml`, (data, response) => { 89 | resolve( 90 | new Year( 91 | year, 92 | data['ns2:calendarYear'] 93 | .terms[0] 94 | .term.map((term) => term._) 95 | ) 96 | ) 97 | }) 98 | client = null; 99 | }); 100 | } 101 | } 102 | 103 | class Term{ 104 | constructor(term, year, subjects){ 105 | this.term = term 106 | this.year = year 107 | this.subjects = subjects 108 | .map(({title, code}) => ({title: _.toUpper(title), code: _.toUpper(code)})) 109 | } 110 | 111 | subject(subject, active){ 112 | subject = _.mapValues(subject, (value) => _.toUpper(value)) 113 | subject = _.find(this.subjects, _.pick(subject, _.keys(subject)[0])) 114 | 115 | if(subject == undefined){ 116 | return new Promise(function(resolve, reject) { 117 | reject("Invalid Subject") 118 | }); 119 | } else { 120 | return Subject.fetch({ 121 | subject: subject.code, 122 | term: this.term, 123 | year: this.year, 124 | active: active 125 | }) 126 | } 127 | 128 | } 129 | 130 | static fetch({year = "DEFAULT", term = "DEFAULT"}){ 131 | 132 | try{ 133 | year = Number(year) 134 | } catch(e){ 135 | if(year != "DEFAULT"){ 136 | return new Promise(function(resolve, reject) { 137 | reject("Invalid Year"); 138 | }); 139 | } 140 | } 141 | 142 | return new Promise((resolve, reject) => { 143 | let client = new Client(); 144 | client.get(`http://courses.illinois.edu/cisapp/explorer/catalog/${year}/${term}.xml`, (data, response) => { 145 | resolve( 146 | new Term( 147 | term, 148 | year, 149 | data['ns2:term'] 150 | .subjects[0] 151 | .subject.map((subject) => ({title: subject._, code: subject.$.id}) ) 152 | ) 153 | ) 154 | }) 155 | client = null; 156 | }); 157 | } 158 | } 159 | 160 | class Subject{ 161 | constructor(subject, term, year, label, collegeCode, departmentCode, unitName, contactName, contactTitle, addressLine1, addressLine2, phoneNumber, webSiteURL, collegeDepartmentDescription, courses){ 162 | this.subject = subject 163 | this.term = term 164 | this.year = year 165 | this.label = label 166 | this.collegeCode = collegeCode 167 | this.departmentCode = departmentCode 168 | this.unitName = unitName 169 | this.contactName = contactName 170 | this.contactTitle = contactTitle 171 | this.addressLine1 = addressLine1 172 | this.addressLine2 = addressLine2 173 | this.phoneNumber = phoneNumber 174 | this.webSiteURL = webSiteURL 175 | this.collegeDepartmentDescription = collegeDepartmentDescription 176 | this.courses = courses 177 | } 178 | 179 | course(course, active){ 180 | 181 | course = _.find(this.courses, _.pick(course, _.keys(course)[0])) 182 | if(course == undefined){ 183 | return new Promise(function(resolve, reject) { 184 | reject("Invalid Course") 185 | }); 186 | } else { 187 | return Course.fetch({ 188 | course: course.number, 189 | subject: this.subject, 190 | term: this.term, 191 | year: this.year, 192 | active: active 193 | }) 194 | } 195 | 196 | } 197 | 198 | static fetch({subject, term = "DEFAULT", year="DEFAULT", active = false}){ 199 | let module = "catalog" 200 | if(active == true){ 201 | module = "schedule" 202 | } 203 | return new Promise((resolve, reject) => { 204 | if(subject == undefined){ 205 | reject("Invalid Subject") 206 | } else { 207 | let client = new Client(); 208 | client.get(`http://courses.illinois.edu/cisapp/explorer/${module}/${year}/${term}/${subject}.xml`, (data, response) => { 209 | if(!data['ns2:subject']){ 210 | reject(data) 211 | } else { 212 | resolve( 213 | new Subject( 214 | subject, 215 | term !== 'DEFAULT' ? term : _.toLower(data['ns2:subject'].parents[0].term[0]._.split(' ')[0]), 216 | year !== 'DEFAULT' ? year : data['ns2:subject'].parents[0].calendarYear[0]._, 217 | data['ns2:subject'].label[0], 218 | data['ns2:subject'].collegeCode[0], 219 | data['ns2:subject'].departmentCode[0], 220 | data['ns2:subject'].unitName[0], 221 | data['ns2:subject'].contactName[0], 222 | data['ns2:subject'].contactTitle[0], 223 | data['ns2:subject'].addressLine1[0], 224 | data['ns2:subject'].addressLine2[0], 225 | data['ns2:subject'].phoneNumber[0], 226 | data['ns2:subject'].webSiteURL[0], 227 | data['ns2:subject'].collegeDepartmentDescription[0], 228 | data['ns2:subject'].courses[0].course.map(({_, $}) => ({course: _, number: $.id})) 229 | ) 230 | ) 231 | } 232 | }) 233 | client = null; 234 | } 235 | }); 236 | } 237 | 238 | } 239 | 240 | class Course{ 241 | constructor(course, subject, term, year, label, description, creditHours, courseSectionInformation, sections){ 242 | this.course = course 243 | this.subject = subject 244 | this.term = term 245 | this.year = year 246 | this.label = label 247 | this.description = description 248 | this.creditHours = creditHours 249 | this.courseSectionInformation = courseSectionInformation 250 | this.sections = sections 251 | } 252 | 253 | section(section, active){ 254 | section = _.find(this.sections, _.pick(section, _.keys(section)[0])) 255 | 256 | if(section == undefined){ 257 | return new Promise(function(resolve, reject) { 258 | reject("Invalid Section") 259 | }); 260 | } else { 261 | return Section.fetch({ 262 | crn: section.crn, 263 | course: this.course, 264 | subject: this.subject, 265 | term: this.term, 266 | year: this.year, 267 | active: active 268 | }) 269 | } 270 | 271 | } 272 | 273 | static fetch({course, subject, term = "DEFAULT", year="DEFAULT", active = false}){ 274 | let module = "catalog" 275 | if(active == true){ 276 | module = "schedule" 277 | } 278 | 279 | return new Promise((resolve, reject) => { 280 | if(subject == undefined){ 281 | reject("Invalid Subject") 282 | } if(course == undefined){ 283 | reject("Invalid Course") 284 | } else { 285 | let client = new Client(); 286 | client.get(`http://courses.illinois.edu/cisapp/explorer/${module}/${year}/${term}/${subject}/${course}.xml`, (data, response) => { 287 | if(!data['ns2:course']){ 288 | reject(data) 289 | } else { 290 | resolve( 291 | new Course( 292 | course, 293 | subject, 294 | term !== 'DEFAULT' ? term : _.toLower(data['ns2:course'].parents[0].term[0]._.split(' ')[0]), 295 | year !== 'DEFAULT' ? year : data['ns2:course'].parents[0].calendarYear[0]._, 296 | data['ns2:course'].label[0], 297 | data['ns2:course'].description[0], 298 | data['ns2:course'].creditHours[0], 299 | data['ns2:course'].courseSectionInformation[0], 300 | active ? data['ns2:course'].sections[0].section.map(({$, _}) => ({section: _.trim(), crn: $.id.trim()})) : [] 301 | ) 302 | ) 303 | } 304 | }) 305 | client = null; 306 | } 307 | }); 308 | } 309 | 310 | } 311 | 312 | class Section{ 313 | constructor(crn, course, subject, term, year, sectionNumber, creditHours , statusCode, partOfTerm, sectionStatusCode, enrollmentStatus, startDate, endDate, meetings){ 314 | this.course = course 315 | this.subject = subject 316 | this.term = term 317 | this.year = year 318 | this.sectionNumber = sectionNumber 319 | this.creditHours = creditHours 320 | this.statusCode = statusCode 321 | this.partOfTerm = partOfTerm 322 | this.sectionStatusCode = sectionStatusCode 323 | this.enrollmentStatus = enrollmentStatus 324 | this.startDate = startDate 325 | this.endDate = endDate 326 | this.meetings = meetings 327 | } 328 | 329 | static fetch({crn, course, subject, term = "DEFAULT", year="DEFAULT"}){ 330 | let module = "schedule" 331 | 332 | return new Promise((resolve, reject) => { 333 | if(subject == undefined){ 334 | reject("Invalid Subject") 335 | } if(course == undefined){ 336 | reject("Invalid Course") 337 | } if(crn == undefined){ 338 | reject("Invalid CRN") 339 | } else { 340 | let client = new Client(); 341 | client.get(`http://courses.illinois.edu/cisapp/explorer/${module}/${year}/${term}/${subject}/${course}/${crn}.xml`, (data, response) => { 342 | if(!data['ns2:section']){ 343 | reject(data) 344 | } else { 345 | resolve( 346 | new Section( 347 | crn, 348 | course, 349 | subject, 350 | term !== 'DEFAULT' ? term : _.toLower(data['ns2:section'].parents[0].term[0]._.split(' ')[0]), 351 | year !== 'DEFAULT' ? year : data['ns2:section'].parents[0].calendarYear[0]._, 352 | data['ns2:section'].sectionNumber[0].trim(), 353 | (data['ns2:section'].creditHours || [''])[0], // HACK: for some reason this broke on a CS 374 section (which didn't have credit hours :3) 354 | data['ns2:section'].statusCode[0], 355 | data['ns2:section'].partOfTerm[0], 356 | data['ns2:section'].sectionStatusCode[0], 357 | data['ns2:section'].enrollmentStatus[0], 358 | data['ns2:section'].startDate[0], 359 | data['ns2:section'].endDate[0], 360 | data['ns2:section'].meetings[0].meeting.map(meeting => new Meeting(meeting)) 361 | ) 362 | ) 363 | } 364 | }) 365 | client = null; 366 | } 367 | }); 368 | } 369 | 370 | } 371 | 372 | class Meeting{ 373 | constructor({$, type, start, end, daysOfTheWeek, roomNumber, buildingName, instructors}){ 374 | this.type = type[0]._ 375 | this.start = start[0] 376 | this.end = end[0] 377 | this.daysOfTheWeek = daysOfTheWeek[0].trim() 378 | this.roomNumber = roomNumber[0] 379 | this.buildingName = buildingName[0] 380 | this.instructors = instructors[0].instructor.map(instructor => instructor._) 381 | } 382 | } 383 | 384 | 385 | export default { 386 | Schedule: Schedule, 387 | Term: Term, 388 | Subject: Subject, 389 | Course: Course, 390 | getSchedule(options){ 391 | 392 | if(options){ 393 | const {year, term, subject, course} = options 394 | if(year){ 395 | if(term){ 396 | if(subject){ 397 | if(course) { 398 | return Course.fetch(options) 399 | } 400 | return Subject.fetch(options) 401 | } 402 | return Term.fetch(options) 403 | } 404 | return Year.fetch(options) 405 | } 406 | } else { 407 | return Schedule.fetch() 408 | } 409 | 410 | } 411 | } -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@snyk/cli-interface@1.5.0": 6 | version "1.5.0" 7 | resolved "https://registry.yarnpkg.com/@snyk/cli-interface/-/cli-interface-1.5.0.tgz#b9dbe6ebfb86e67ffabf29d4e0d28a52670ac456" 8 | dependencies: 9 | tslib "^1.9.3" 10 | 11 | "@snyk/cli-interface@2.2.0", "@snyk/cli-interface@^2.0.3": 12 | version "2.2.0" 13 | resolved "https://registry.yarnpkg.com/@snyk/cli-interface/-/cli-interface-2.2.0.tgz#5536bc913917c623d16d727f9f3759521a916026" 14 | dependencies: 15 | tslib "^1.9.3" 16 | 17 | "@snyk/cocoapods-lockfile-parser@2.0.4": 18 | version "2.0.4" 19 | resolved "https://registry.yarnpkg.com/@snyk/cocoapods-lockfile-parser/-/cocoapods-lockfile-parser-2.0.4.tgz#296421454ba2ee9248ce1f13da57aa1b10b54de7" 20 | dependencies: 21 | "@snyk/dep-graph" "^1.11.0" 22 | "@snyk/ruby-semver" "^2.0.4" 23 | "@types/js-yaml" "^3.12.1" 24 | core-js "^3.2.0" 25 | js-yaml "^3.13.1" 26 | source-map-support "^0.5.7" 27 | tslib "^1.9.3" 28 | 29 | "@snyk/composer-lockfile-parser@1.0.3": 30 | version "1.0.3" 31 | resolved "https://registry.yarnpkg.com/@snyk/composer-lockfile-parser/-/composer-lockfile-parser-1.0.3.tgz#4b703883ec36f3cec63c64355031e06698c771f5" 32 | dependencies: 33 | lodash "^4.17.13" 34 | 35 | "@snyk/dep-graph@1.13.0": 36 | version "1.13.0" 37 | resolved "https://registry.yarnpkg.com/@snyk/dep-graph/-/dep-graph-1.13.0.tgz#855f628da0b833dd16c02c2f977507bbf090b894" 38 | dependencies: 39 | graphlib "^2.1.5" 40 | lodash "^4.7.14" 41 | object-hash "^1.3.1" 42 | semver "^6.0.0" 43 | source-map-support "^0.5.11" 44 | tslib "^1.9.3" 45 | 46 | "@snyk/dep-graph@1.13.1", "@snyk/dep-graph@^1.11.0": 47 | version "1.13.1" 48 | resolved "https://registry.yarnpkg.com/@snyk/dep-graph/-/dep-graph-1.13.1.tgz#45721f7e21136b62d1cdd99b3319e717d9071dfb" 49 | dependencies: 50 | graphlib "^2.1.5" 51 | lodash "^4.7.14" 52 | object-hash "^1.3.1" 53 | semver "^6.0.0" 54 | source-map-support "^0.5.11" 55 | tslib "^1.9.3" 56 | 57 | "@snyk/gemfile@1.2.0": 58 | version "1.2.0" 59 | resolved "https://registry.yarnpkg.com/@snyk/gemfile/-/gemfile-1.2.0.tgz#919857944973cce74c650e5428aaf11bcd5c0457" 60 | 61 | "@snyk/ruby-semver@^2.0.4": 62 | version "2.0.4" 63 | resolved "https://registry.yarnpkg.com/@snyk/ruby-semver/-/ruby-semver-2.0.4.tgz#457686ea7a4d60b10efddde99587efb3a53ba884" 64 | dependencies: 65 | lodash "^4.17.14" 66 | 67 | "@snyk/snyk-cocoapods-plugin@1.0.3": 68 | version "1.0.3" 69 | resolved "https://registry.yarnpkg.com/@snyk/snyk-cocoapods-plugin/-/snyk-cocoapods-plugin-1.0.3.tgz#eb685590e6a478e1d86f1042c9493426f2f9764a" 70 | dependencies: 71 | "@snyk/cli-interface" "1.5.0" 72 | "@snyk/cocoapods-lockfile-parser" "2.0.4" 73 | "@snyk/dep-graph" "1.13.0" 74 | source-map-support "^0.5.7" 75 | tslib "^1.9.3" 76 | 77 | "@types/agent-base@^4.2.0": 78 | version "4.2.0" 79 | resolved "https://registry.yarnpkg.com/@types/agent-base/-/agent-base-4.2.0.tgz#00644e8b395b40e1bf50aaf1d22cabc1200d5051" 80 | dependencies: 81 | "@types/events" "*" 82 | "@types/node" "*" 83 | 84 | "@types/bunyan@*": 85 | version "1.8.6" 86 | resolved "https://registry.yarnpkg.com/@types/bunyan/-/bunyan-1.8.6.tgz#6527641cca30bedec5feb9ab527b7803b8000582" 87 | dependencies: 88 | "@types/node" "*" 89 | 90 | "@types/debug@^4.1.4": 91 | version "4.1.5" 92 | resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.5.tgz#b14efa8852b7768d898906613c23f688713e02cd" 93 | 94 | "@types/events@*": 95 | version "3.0.0" 96 | resolved "https://registry.yarnpkg.com/@types/events/-/events-3.0.0.tgz#2862f3f58a9a7f7c3e78d79f130dd4d71c25c2a7" 97 | 98 | "@types/js-yaml@^3.12.1": 99 | version "3.12.1" 100 | resolved "https://registry.yarnpkg.com/@types/js-yaml/-/js-yaml-3.12.1.tgz#5c6f4a1eabca84792fbd916f0cb40847f123c656" 101 | 102 | "@types/node@*": 103 | version "12.12.5" 104 | resolved "https://registry.yarnpkg.com/@types/node/-/node-12.12.5.tgz#66103d2eddc543d44a04394abb7be52506d7f290" 105 | 106 | "@types/node@^6.14.4": 107 | version "6.14.9" 108 | resolved "https://registry.yarnpkg.com/@types/node/-/node-6.14.9.tgz#733583e21ef0eab85a9737dfafbaa66345a92ef0" 109 | 110 | "@types/restify@^4.3.6": 111 | version "4.3.6" 112 | resolved "https://registry.yarnpkg.com/@types/restify/-/restify-4.3.6.tgz#5da5889b65c34c33937a67686bab591325dde806" 113 | dependencies: 114 | "@types/bunyan" "*" 115 | "@types/node" "*" 116 | 117 | "@types/semver@^5.5.0": 118 | version "5.5.0" 119 | resolved "https://registry.yarnpkg.com/@types/semver/-/semver-5.5.0.tgz#146c2a29ee7d3bae4bf2fcb274636e264c813c45" 120 | 121 | "@types/xml2js@0.4.3": 122 | version "0.4.3" 123 | resolved "https://registry.yarnpkg.com/@types/xml2js/-/xml2js-0.4.3.tgz#2f41bfc74d5a4022511721f872ed395a210ad3b7" 124 | dependencies: 125 | "@types/events" "*" 126 | "@types/node" "*" 127 | 128 | "@yarnpkg/lockfile@^1.0.2": 129 | version "1.1.0" 130 | resolved "https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz#e77a97fbd345b76d83245edcd17d393b1b41fb31" 131 | 132 | abbrev@^1.1.1: 133 | version "1.1.1" 134 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 135 | 136 | agent-base@4, agent-base@^4.2.0, agent-base@^4.3.0: 137 | version "4.3.0" 138 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-4.3.0.tgz#8165f01c436009bccad0b1d122f05ed770efc6ee" 139 | dependencies: 140 | es6-promisify "^5.0.0" 141 | 142 | agent-base@~4.2.1: 143 | version "4.2.1" 144 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-4.2.1.tgz#d89e5999f797875674c07d87f260fc41e83e8ca9" 145 | dependencies: 146 | es6-promisify "^5.0.0" 147 | 148 | ansi-align@^2.0.0: 149 | version "2.0.0" 150 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" 151 | dependencies: 152 | string-width "^2.0.0" 153 | 154 | ansi-escapes@3.2.0, ansi-escapes@^3.2.0: 155 | version "3.2.0" 156 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" 157 | 158 | ansi-regex@^2.0.0: 159 | version "2.1.1" 160 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 161 | 162 | ansi-regex@^3.0.0: 163 | version "3.0.0" 164 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 165 | 166 | ansi-regex@^4.1.0: 167 | version "4.1.0" 168 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" 169 | 170 | ansi-styles@^2.2.1: 171 | version "2.2.1" 172 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 173 | 174 | ansi-styles@^3.2.0, ansi-styles@^3.2.1: 175 | version "3.2.1" 176 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 177 | dependencies: 178 | color-convert "^1.9.0" 179 | 180 | ansicolors@^0.3.2: 181 | version "0.3.2" 182 | resolved "https://registry.yarnpkg.com/ansicolors/-/ansicolors-0.3.2.tgz#665597de86a9ffe3aa9bfbe6cae5c6ea426b4979" 183 | 184 | archy@^1.0.0: 185 | version "1.0.0" 186 | resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" 187 | 188 | argparse@^1.0.7: 189 | version "1.0.10" 190 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 191 | dependencies: 192 | sprintf-js "~1.0.2" 193 | 194 | arr-diff@^2.0.0: 195 | version "2.0.0" 196 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 197 | dependencies: 198 | arr-flatten "^1.0.1" 199 | 200 | arr-flatten@^1.0.1: 201 | version "1.0.1" 202 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 203 | 204 | array-differ@^1.0.0: 205 | version "1.0.0" 206 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 207 | 208 | array-uniq@^1.0.2: 209 | version "1.0.3" 210 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 211 | 212 | array-unique@^0.2.1: 213 | version "0.2.1" 214 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 215 | 216 | asap@~2.0.3: 217 | version "2.0.6" 218 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" 219 | 220 | ast-types@0.x.x: 221 | version "0.13.2" 222 | resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.13.2.tgz#df39b677a911a83f3a049644fb74fdded23cea48" 223 | 224 | async@^1.4.0: 225 | version "1.5.2" 226 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 227 | 228 | babel-code-frame@^6.22.0: 229 | version "6.22.0" 230 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 231 | dependencies: 232 | chalk "^1.1.0" 233 | esutils "^2.0.2" 234 | js-tokens "^3.0.0" 235 | 236 | babel-core@^6.0.2, babel-core@^6.22.0: 237 | version "6.22.1" 238 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.22.1.tgz#9c5fd658ba1772d28d721f6d25d968fc7ae21648" 239 | dependencies: 240 | babel-code-frame "^6.22.0" 241 | babel-generator "^6.22.0" 242 | babel-helpers "^6.22.0" 243 | babel-messages "^6.22.0" 244 | babel-register "^6.22.0" 245 | babel-runtime "^6.22.0" 246 | babel-template "^6.22.0" 247 | babel-traverse "^6.22.1" 248 | babel-types "^6.22.0" 249 | babylon "^6.11.0" 250 | convert-source-map "^1.1.0" 251 | debug "^2.1.1" 252 | json5 "^0.5.0" 253 | lodash "^4.2.0" 254 | minimatch "^3.0.2" 255 | path-is-absolute "^1.0.0" 256 | private "^0.1.6" 257 | slash "^1.0.0" 258 | source-map "^0.5.0" 259 | 260 | babel-generator@^6.22.0: 261 | version "6.22.0" 262 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.22.0.tgz#d642bf4961911a8adc7c692b0c9297f325cda805" 263 | dependencies: 264 | babel-messages "^6.22.0" 265 | babel-runtime "^6.22.0" 266 | babel-types "^6.22.0" 267 | detect-indent "^4.0.0" 268 | jsesc "^1.3.0" 269 | lodash "^4.2.0" 270 | source-map "^0.5.0" 271 | 272 | babel-helper-call-delegate@^6.22.0: 273 | version "6.22.0" 274 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.22.0.tgz#119921b56120f17e9dae3f74b4f5cc7bcc1b37ef" 275 | dependencies: 276 | babel-helper-hoist-variables "^6.22.0" 277 | babel-runtime "^6.22.0" 278 | babel-traverse "^6.22.0" 279 | babel-types "^6.22.0" 280 | 281 | babel-helper-define-map@^6.22.0: 282 | version "6.22.0" 283 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.22.0.tgz#9544e9502b2d6dfe7d00ff60e82bd5a7a89e95b7" 284 | dependencies: 285 | babel-helper-function-name "^6.22.0" 286 | babel-runtime "^6.22.0" 287 | babel-types "^6.22.0" 288 | lodash "^4.2.0" 289 | 290 | babel-helper-function-name@^6.22.0: 291 | version "6.22.0" 292 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.22.0.tgz#51f1bdc4bb89b15f57a9b249f33d742816dcbefc" 293 | dependencies: 294 | babel-helper-get-function-arity "^6.22.0" 295 | babel-runtime "^6.22.0" 296 | babel-template "^6.22.0" 297 | babel-traverse "^6.22.0" 298 | babel-types "^6.22.0" 299 | 300 | babel-helper-get-function-arity@^6.22.0: 301 | version "6.22.0" 302 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.22.0.tgz#0beb464ad69dc7347410ac6ade9f03a50634f5ce" 303 | dependencies: 304 | babel-runtime "^6.22.0" 305 | babel-types "^6.22.0" 306 | 307 | babel-helper-hoist-variables@^6.22.0: 308 | version "6.22.0" 309 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.22.0.tgz#3eacbf731d80705845dd2e9718f600cfb9b4ba72" 310 | dependencies: 311 | babel-runtime "^6.22.0" 312 | babel-types "^6.22.0" 313 | 314 | babel-helper-optimise-call-expression@^6.22.0: 315 | version "6.22.0" 316 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.22.0.tgz#f8d5d4b40a6e2605a6a7f9d537b581bea3756d15" 317 | dependencies: 318 | babel-runtime "^6.22.0" 319 | babel-types "^6.22.0" 320 | 321 | babel-helper-regex@^6.22.0: 322 | version "6.22.0" 323 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.22.0.tgz#79f532be1647b1f0ee3474b5f5c3da58001d247d" 324 | dependencies: 325 | babel-runtime "^6.22.0" 326 | babel-types "^6.22.0" 327 | lodash "^4.2.0" 328 | 329 | babel-helper-replace-supers@^6.22.0: 330 | version "6.22.0" 331 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.22.0.tgz#1fcee2270657548908c34db16bcc345f9850cf42" 332 | dependencies: 333 | babel-helper-optimise-call-expression "^6.22.0" 334 | babel-messages "^6.22.0" 335 | babel-runtime "^6.22.0" 336 | babel-template "^6.22.0" 337 | babel-traverse "^6.22.0" 338 | babel-types "^6.22.0" 339 | 340 | babel-helpers@^6.22.0: 341 | version "6.22.0" 342 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.22.0.tgz#d275f55f2252b8101bff07bc0c556deda657392c" 343 | dependencies: 344 | babel-runtime "^6.22.0" 345 | babel-template "^6.22.0" 346 | 347 | babel-messages@^6.22.0: 348 | version "6.22.0" 349 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.22.0.tgz#36066a214f1217e4ed4164867669ecb39e3ea575" 350 | dependencies: 351 | babel-runtime "^6.22.0" 352 | 353 | babel-plugin-check-es2015-constants@^6.22.0: 354 | version "6.22.0" 355 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 356 | dependencies: 357 | babel-runtime "^6.22.0" 358 | 359 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 360 | version "6.22.0" 361 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 362 | dependencies: 363 | babel-runtime "^6.22.0" 364 | 365 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 366 | version "6.22.0" 367 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 368 | dependencies: 369 | babel-runtime "^6.22.0" 370 | 371 | babel-plugin-transform-es2015-block-scoping@^6.22.0: 372 | version "6.22.0" 373 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.22.0.tgz#00d6e3a0bebdcfe7536b9d653b44a9141e63e47e" 374 | dependencies: 375 | babel-runtime "^6.22.0" 376 | babel-template "^6.22.0" 377 | babel-traverse "^6.22.0" 378 | babel-types "^6.22.0" 379 | lodash "^4.2.0" 380 | 381 | babel-plugin-transform-es2015-classes@^6.22.0: 382 | version "6.22.0" 383 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.22.0.tgz#54d44998fd823d9dca15292324161c331c1b6f14" 384 | dependencies: 385 | babel-helper-define-map "^6.22.0" 386 | babel-helper-function-name "^6.22.0" 387 | babel-helper-optimise-call-expression "^6.22.0" 388 | babel-helper-replace-supers "^6.22.0" 389 | babel-messages "^6.22.0" 390 | babel-runtime "^6.22.0" 391 | babel-template "^6.22.0" 392 | babel-traverse "^6.22.0" 393 | babel-types "^6.22.0" 394 | 395 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 396 | version "6.22.0" 397 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.22.0.tgz#7c383e9629bba4820c11b0425bdd6290f7f057e7" 398 | dependencies: 399 | babel-runtime "^6.22.0" 400 | babel-template "^6.22.0" 401 | 402 | babel-plugin-transform-es2015-destructuring@^6.22.0: 403 | version "6.22.0" 404 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.22.0.tgz#8e0af2f885a0b2cf999d47c4c1dd23ce88cfa4c6" 405 | dependencies: 406 | babel-runtime "^6.22.0" 407 | 408 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 409 | version "6.22.0" 410 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.22.0.tgz#672397031c21610d72dd2bbb0ba9fb6277e1c36b" 411 | dependencies: 412 | babel-runtime "^6.22.0" 413 | babel-types "^6.22.0" 414 | 415 | babel-plugin-transform-es2015-for-of@^6.22.0: 416 | version "6.22.0" 417 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.22.0.tgz#180467ad63aeea592a1caeee4bf1c8b3e2616265" 418 | dependencies: 419 | babel-runtime "^6.22.0" 420 | 421 | babel-plugin-transform-es2015-function-name@^6.22.0: 422 | version "6.22.0" 423 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.22.0.tgz#f5fcc8b09093f9a23c76ac3d9e392c3ec4b77104" 424 | dependencies: 425 | babel-helper-function-name "^6.22.0" 426 | babel-runtime "^6.22.0" 427 | babel-types "^6.22.0" 428 | 429 | babel-plugin-transform-es2015-literals@^6.22.0: 430 | version "6.22.0" 431 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 432 | dependencies: 433 | babel-runtime "^6.22.0" 434 | 435 | babel-plugin-transform-es2015-modules-amd@^6.22.0: 436 | version "6.22.0" 437 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.22.0.tgz#bf69cd34889a41c33d90dfb740e0091ccff52f21" 438 | dependencies: 439 | babel-plugin-transform-es2015-modules-commonjs "^6.22.0" 440 | babel-runtime "^6.22.0" 441 | babel-template "^6.22.0" 442 | 443 | babel-plugin-transform-es2015-modules-commonjs@^6.22.0: 444 | version "6.22.0" 445 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.22.0.tgz#6ca04e22b8e214fb50169730657e7a07dc941145" 446 | dependencies: 447 | babel-plugin-transform-strict-mode "^6.22.0" 448 | babel-runtime "^6.22.0" 449 | babel-template "^6.22.0" 450 | babel-types "^6.22.0" 451 | 452 | babel-plugin-transform-es2015-modules-systemjs@^6.22.0: 453 | version "6.22.0" 454 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.22.0.tgz#810cd0cd025a08383b84236b92c6e31f88e644ad" 455 | dependencies: 456 | babel-helper-hoist-variables "^6.22.0" 457 | babel-runtime "^6.22.0" 458 | babel-template "^6.22.0" 459 | 460 | babel-plugin-transform-es2015-modules-umd@^6.22.0: 461 | version "6.22.0" 462 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.22.0.tgz#60d0ba3bd23258719c64391d9bf492d648dc0fae" 463 | dependencies: 464 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 465 | babel-runtime "^6.22.0" 466 | babel-template "^6.22.0" 467 | 468 | babel-plugin-transform-es2015-object-super@^6.22.0: 469 | version "6.22.0" 470 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.22.0.tgz#daa60e114a042ea769dd53fe528fc82311eb98fc" 471 | dependencies: 472 | babel-helper-replace-supers "^6.22.0" 473 | babel-runtime "^6.22.0" 474 | 475 | babel-plugin-transform-es2015-parameters@^6.22.0: 476 | version "6.22.0" 477 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.22.0.tgz#57076069232019094f27da8c68bb7162fe208dbb" 478 | dependencies: 479 | babel-helper-call-delegate "^6.22.0" 480 | babel-helper-get-function-arity "^6.22.0" 481 | babel-runtime "^6.22.0" 482 | babel-template "^6.22.0" 483 | babel-traverse "^6.22.0" 484 | babel-types "^6.22.0" 485 | 486 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 487 | version "6.22.0" 488 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.22.0.tgz#8ba776e0affaa60bff21e921403b8a652a2ff723" 489 | dependencies: 490 | babel-runtime "^6.22.0" 491 | babel-types "^6.22.0" 492 | 493 | babel-plugin-transform-es2015-spread@^6.22.0: 494 | version "6.22.0" 495 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 496 | dependencies: 497 | babel-runtime "^6.22.0" 498 | 499 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 500 | version "6.22.0" 501 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.22.0.tgz#ab316829e866ee3f4b9eb96939757d19a5bc4593" 502 | dependencies: 503 | babel-helper-regex "^6.22.0" 504 | babel-runtime "^6.22.0" 505 | babel-types "^6.22.0" 506 | 507 | babel-plugin-transform-es2015-template-literals@^6.22.0: 508 | version "6.22.0" 509 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 510 | dependencies: 511 | babel-runtime "^6.22.0" 512 | 513 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 514 | version "6.22.0" 515 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.22.0.tgz#87faf2336d3b6a97f68c4d906b0cd0edeae676e1" 516 | dependencies: 517 | babel-runtime "^6.22.0" 518 | 519 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 520 | version "6.22.0" 521 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.22.0.tgz#8d9cc27e7ee1decfe65454fb986452a04a613d20" 522 | dependencies: 523 | babel-helper-regex "^6.22.0" 524 | babel-runtime "^6.22.0" 525 | regexpu-core "^2.0.0" 526 | 527 | babel-plugin-transform-regenerator@^6.22.0: 528 | version "6.22.0" 529 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.22.0.tgz#65740593a319c44522157538d690b84094617ea6" 530 | dependencies: 531 | regenerator-transform "0.9.8" 532 | 533 | babel-plugin-transform-strict-mode@^6.22.0: 534 | version "6.22.0" 535 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.22.0.tgz#e008df01340fdc87e959da65991b7e05970c8c7c" 536 | dependencies: 537 | babel-runtime "^6.22.0" 538 | babel-types "^6.22.0" 539 | 540 | babel-preset-es2015@^6.6.0: 541 | version "6.22.0" 542 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.22.0.tgz#af5a98ecb35eb8af764ad8a5a05eb36dc4386835" 543 | dependencies: 544 | babel-plugin-check-es2015-constants "^6.22.0" 545 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 546 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 547 | babel-plugin-transform-es2015-block-scoping "^6.22.0" 548 | babel-plugin-transform-es2015-classes "^6.22.0" 549 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 550 | babel-plugin-transform-es2015-destructuring "^6.22.0" 551 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 552 | babel-plugin-transform-es2015-for-of "^6.22.0" 553 | babel-plugin-transform-es2015-function-name "^6.22.0" 554 | babel-plugin-transform-es2015-literals "^6.22.0" 555 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 556 | babel-plugin-transform-es2015-modules-commonjs "^6.22.0" 557 | babel-plugin-transform-es2015-modules-systemjs "^6.22.0" 558 | babel-plugin-transform-es2015-modules-umd "^6.22.0" 559 | babel-plugin-transform-es2015-object-super "^6.22.0" 560 | babel-plugin-transform-es2015-parameters "^6.22.0" 561 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 562 | babel-plugin-transform-es2015-spread "^6.22.0" 563 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 564 | babel-plugin-transform-es2015-template-literals "^6.22.0" 565 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 566 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 567 | babel-plugin-transform-regenerator "^6.22.0" 568 | 569 | babel-register@^6.22.0: 570 | version "6.22.0" 571 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.22.0.tgz#a61dd83975f9ca4a9e7d6eff3059494cd5ea4c63" 572 | dependencies: 573 | babel-core "^6.22.0" 574 | babel-runtime "^6.22.0" 575 | core-js "^2.4.0" 576 | home-or-tmp "^2.0.0" 577 | lodash "^4.2.0" 578 | mkdirp "^0.5.1" 579 | source-map-support "^0.4.2" 580 | 581 | babel-runtime@^6.18.0, babel-runtime@^6.22.0: 582 | version "6.22.0" 583 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.22.0.tgz#1cf8b4ac67c77a4ddb0db2ae1f74de52ac4ca611" 584 | dependencies: 585 | core-js "^2.4.0" 586 | regenerator-runtime "^0.10.0" 587 | 588 | babel-template@^6.22.0: 589 | version "6.22.0" 590 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.22.0.tgz#403d110905a4626b317a2a1fcb8f3b73204b2edb" 591 | dependencies: 592 | babel-runtime "^6.22.0" 593 | babel-traverse "^6.22.0" 594 | babel-types "^6.22.0" 595 | babylon "^6.11.0" 596 | lodash "^4.2.0" 597 | 598 | babel-traverse@^6.22.0, babel-traverse@^6.22.1: 599 | version "6.22.1" 600 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.22.1.tgz#3b95cd6b7427d6f1f757704908f2fc9748a5f59f" 601 | dependencies: 602 | babel-code-frame "^6.22.0" 603 | babel-messages "^6.22.0" 604 | babel-runtime "^6.22.0" 605 | babel-types "^6.22.0" 606 | babylon "^6.15.0" 607 | debug "^2.2.0" 608 | globals "^9.0.0" 609 | invariant "^2.2.0" 610 | lodash "^4.2.0" 611 | 612 | babel-types@^6.19.0, babel-types@^6.22.0: 613 | version "6.22.0" 614 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.22.0.tgz#2a447e8d0ea25d2512409e4175479fd78cc8b1db" 615 | dependencies: 616 | babel-runtime "^6.22.0" 617 | esutils "^2.0.2" 618 | lodash "^4.2.0" 619 | to-fast-properties "^1.0.1" 620 | 621 | babylon@^6.11.0, babylon@^6.15.0: 622 | version "6.15.0" 623 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.15.0.tgz#ba65cfa1a80e1759b0e89fb562e27dccae70348e" 624 | 625 | balanced-match@^0.4.1: 626 | version "0.4.2" 627 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 628 | 629 | balanced-match@^1.0.0: 630 | version "1.0.0" 631 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 632 | 633 | beeper@^1.0.0: 634 | version "1.1.1" 635 | resolved "https://registry.yarnpkg.com/beeper/-/beeper-1.1.1.tgz#e6d5ea8c5dad001304a70b22638447f69cb2f809" 636 | 637 | bl@^3.0.0: 638 | version "3.0.0" 639 | resolved "https://registry.yarnpkg.com/bl/-/bl-3.0.0.tgz#3611ec00579fd18561754360b21e9f784500ff88" 640 | dependencies: 641 | readable-stream "^3.0.1" 642 | 643 | boxen@^1.2.1: 644 | version "1.3.0" 645 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b" 646 | dependencies: 647 | ansi-align "^2.0.0" 648 | camelcase "^4.0.0" 649 | chalk "^2.0.1" 650 | cli-boxes "^1.0.0" 651 | string-width "^2.0.0" 652 | term-size "^1.2.0" 653 | widest-line "^2.0.0" 654 | 655 | brace-expansion@^1.0.0: 656 | version "1.1.6" 657 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 658 | dependencies: 659 | balanced-match "^0.4.1" 660 | concat-map "0.0.1" 661 | 662 | brace-expansion@^1.1.7: 663 | version "1.1.11" 664 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 665 | dependencies: 666 | balanced-match "^1.0.0" 667 | concat-map "0.0.1" 668 | 669 | braces@^1.8.2: 670 | version "1.8.5" 671 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 672 | dependencies: 673 | expand-range "^1.8.1" 674 | preserve "^0.2.0" 675 | repeat-element "^1.1.2" 676 | 677 | buffer-from@^1.0.0: 678 | version "1.1.1" 679 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 680 | 681 | buffer-shims@^1.0.0: 682 | version "1.0.0" 683 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 684 | 685 | bytes@3.1.0: 686 | version "3.1.0" 687 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" 688 | 689 | camelcase@^2.0.1: 690 | version "2.1.1" 691 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 692 | 693 | camelcase@^4.0.0: 694 | version "4.1.0" 695 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 696 | 697 | capture-stack-trace@^1.0.0: 698 | version "1.0.1" 699 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz#a6c0bbe1f38f3aa0b92238ecb6ff42c344d4135d" 700 | 701 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1: 702 | version "1.1.3" 703 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 704 | dependencies: 705 | ansi-styles "^2.2.1" 706 | escape-string-regexp "^1.0.2" 707 | has-ansi "^2.0.0" 708 | strip-ansi "^3.0.0" 709 | supports-color "^2.0.0" 710 | 711 | chalk@^2.0.1, chalk@^2.4.2: 712 | version "2.4.2" 713 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 714 | dependencies: 715 | ansi-styles "^3.2.1" 716 | escape-string-regexp "^1.0.5" 717 | supports-color "^5.3.0" 718 | 719 | chardet@^0.7.0: 720 | version "0.7.0" 721 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" 722 | 723 | ci-info@^1.5.0: 724 | version "1.6.0" 725 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.6.0.tgz#2ca20dbb9ceb32d4524a683303313f0304b1e497" 726 | 727 | cli-boxes@^1.0.0: 728 | version "1.0.0" 729 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 730 | 731 | cli-cursor@^2.1.0: 732 | version "2.1.0" 733 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 734 | dependencies: 735 | restore-cursor "^2.0.0" 736 | 737 | cli-spinner@0.2.10: 738 | version "0.2.10" 739 | resolved "https://registry.yarnpkg.com/cli-spinner/-/cli-spinner-0.2.10.tgz#f7d617a36f5c47a7bc6353c697fc9338ff782a47" 740 | 741 | cli-width@^2.0.0: 742 | version "2.2.0" 743 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 744 | 745 | cliui@^3.0.3: 746 | version "3.2.0" 747 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 748 | dependencies: 749 | string-width "^1.0.1" 750 | strip-ansi "^3.0.1" 751 | wrap-ansi "^2.0.0" 752 | 753 | clone-deep@^0.3.0: 754 | version "0.3.0" 755 | resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-0.3.0.tgz#348c61ae9cdbe0edfe053d91ff4cc521d790ede8" 756 | dependencies: 757 | for-own "^1.0.0" 758 | is-plain-object "^2.0.1" 759 | kind-of "^3.2.2" 760 | shallow-clone "^0.1.2" 761 | 762 | clone-stats@^0.0.1: 763 | version "0.0.1" 764 | resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-0.0.1.tgz#b88f94a82cf38b8791d58046ea4029ad88ca99d1" 765 | 766 | clone@^0.2.0: 767 | version "0.2.0" 768 | resolved "https://registry.yarnpkg.com/clone/-/clone-0.2.0.tgz#c6126a90ad4f72dbf5acdb243cc37724fe93fc1f" 769 | 770 | clone@^1.0.0, clone@^1.0.2: 771 | version "1.0.2" 772 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" 773 | 774 | co@^4.6.0: 775 | version "4.6.0" 776 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 777 | 778 | code-point-at@^1.0.0: 779 | version "1.1.0" 780 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 781 | 782 | color-convert@^1.9.0: 783 | version "1.9.3" 784 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 785 | dependencies: 786 | color-name "1.1.3" 787 | 788 | color-name@1.1.3: 789 | version "1.1.3" 790 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 791 | 792 | concat-map@0.0.1: 793 | version "0.0.1" 794 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 795 | 796 | configstore@^3.0.0, configstore@^3.1.2: 797 | version "3.1.2" 798 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.2.tgz#c6f25defaeef26df12dd33414b001fe81a543f8f" 799 | dependencies: 800 | dot-prop "^4.1.0" 801 | graceful-fs "^4.1.2" 802 | make-dir "^1.0.0" 803 | unique-string "^1.0.0" 804 | write-file-atomic "^2.0.0" 805 | xdg-basedir "^3.0.0" 806 | 807 | convert-source-map@^1.1.0: 808 | version "1.3.0" 809 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.3.0.tgz#e9f3e9c6e2728efc2676696a70eb382f73106a67" 810 | 811 | core-js@^2.4.0: 812 | version "2.4.1" 813 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 814 | 815 | core-js@^3.2.0: 816 | version "3.3.6" 817 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.3.6.tgz#6ad1650323c441f45379e176ed175c0d021eac92" 818 | 819 | core-util-is@~1.0.0: 820 | version "1.0.2" 821 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 822 | 823 | create-error-class@^3.0.0: 824 | version "3.0.2" 825 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 826 | dependencies: 827 | capture-stack-trace "^1.0.0" 828 | 829 | cross-spawn@^5.0.1: 830 | version "5.1.0" 831 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 832 | dependencies: 833 | lru-cache "^4.0.1" 834 | shebang-command "^1.2.0" 835 | which "^1.2.9" 836 | 837 | cross-spawn@^6.0.0: 838 | version "6.0.5" 839 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 840 | dependencies: 841 | nice-try "^1.0.4" 842 | path-key "^2.0.1" 843 | semver "^5.5.0" 844 | shebang-command "^1.2.0" 845 | which "^1.2.9" 846 | 847 | crypto-random-string@^1.0.0: 848 | version "1.0.0" 849 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" 850 | 851 | data-uri-to-buffer@1: 852 | version "1.2.0" 853 | resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-1.2.0.tgz#77163ea9c20d8641b4707e8f18abdf9a78f34835" 854 | 855 | dateformat@^2.0.0: 856 | version "2.0.0" 857 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-2.0.0.tgz#2743e3abb5c3fc2462e527dca445e04e9f4dee17" 858 | 859 | debug@2: 860 | version "2.6.9" 861 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 862 | dependencies: 863 | ms "2.0.0" 864 | 865 | debug@3.1.0: 866 | version "3.1.0" 867 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 868 | dependencies: 869 | ms "2.0.0" 870 | 871 | debug@4, debug@^4.1.1: 872 | version "4.1.1" 873 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" 874 | dependencies: 875 | ms "^2.1.1" 876 | 877 | debug@^2.1.1, debug@^2.2.0: 878 | version "2.6.0" 879 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.0.tgz#bc596bcabe7617f11d9fa15361eded5608b8499b" 880 | dependencies: 881 | ms "0.7.2" 882 | 883 | debug@^3.1.0, debug@^3.2.5, debug@^3.2.6: 884 | version "3.2.6" 885 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" 886 | dependencies: 887 | ms "^2.1.1" 888 | 889 | debug@~2.2.0: 890 | version "2.2.0" 891 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 892 | dependencies: 893 | ms "0.7.1" 894 | 895 | decamelize@^1.1.1: 896 | version "1.2.0" 897 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 898 | 899 | deep-extend@^0.6.0: 900 | version "0.6.0" 901 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 902 | 903 | deep-is@~0.1.3: 904 | version "0.1.3" 905 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 906 | 907 | defaults@^1.0.0: 908 | version "1.0.3" 909 | resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" 910 | dependencies: 911 | clone "^1.0.2" 912 | 913 | define-properties@^1.1.2, define-properties@^1.1.3: 914 | version "1.1.3" 915 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 916 | dependencies: 917 | object-keys "^1.0.12" 918 | 919 | degenerator@^1.0.4: 920 | version "1.0.4" 921 | resolved "https://registry.yarnpkg.com/degenerator/-/degenerator-1.0.4.tgz#fcf490a37ece266464d9cc431ab98c5819ced095" 922 | dependencies: 923 | ast-types "0.x.x" 924 | escodegen "1.x.x" 925 | esprima "3.x.x" 926 | 927 | depd@~1.1.2: 928 | version "1.1.2" 929 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" 930 | 931 | deprecated@^0.0.1: 932 | version "0.0.1" 933 | resolved "https://registry.yarnpkg.com/deprecated/-/deprecated-0.0.1.tgz#f9c9af5464afa1e7a971458a8bdef2aa94d5bb19" 934 | 935 | detect-file@^0.1.0: 936 | version "0.1.0" 937 | resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-0.1.0.tgz#4935dedfd9488648e006b0129566e9386711ea63" 938 | dependencies: 939 | fs-exists-sync "^0.1.0" 940 | 941 | detect-indent@^4.0.0: 942 | version "4.0.0" 943 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 944 | dependencies: 945 | repeating "^2.0.0" 946 | 947 | diff@^4.0.1: 948 | version "4.0.1" 949 | resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.1.tgz#0c667cb467ebbb5cea7f14f135cc2dba7780a8ff" 950 | 951 | dockerfile-ast@0.0.16: 952 | version "0.0.16" 953 | resolved "https://registry.yarnpkg.com/dockerfile-ast/-/dockerfile-ast-0.0.16.tgz#10b329d343329dab1de70375833495f85ad65913" 954 | dependencies: 955 | vscode-languageserver-types "^3.5.0" 956 | 957 | dot-prop@^4.1.0: 958 | version "4.2.0" 959 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" 960 | dependencies: 961 | is-obj "^1.0.0" 962 | 963 | dotnet-deps-parser@4.5.2: 964 | version "4.5.2" 965 | resolved "https://registry.yarnpkg.com/dotnet-deps-parser/-/dotnet-deps-parser-4.5.2.tgz#f3223fa2b9d0d247c3e855d6b5a292904c2c8109" 966 | dependencies: 967 | "@types/xml2js" "0.4.3" 968 | lodash "^4.17.11" 969 | source-map-support "^0.5.7" 970 | tslib "^1.9.3" 971 | xml2js "0.4.19" 972 | 973 | duplexer2@0.0.2: 974 | version "0.0.2" 975 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.0.2.tgz#c614dcf67e2fb14995a91711e5a617e8a60a31db" 976 | dependencies: 977 | readable-stream "~1.1.9" 978 | 979 | duplexer3@^0.1.4: 980 | version "0.1.4" 981 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 982 | 983 | email-validator@^2.0.4: 984 | version "2.0.4" 985 | resolved "https://registry.yarnpkg.com/email-validator/-/email-validator-2.0.4.tgz#b8dfaa5d0dae28f1b03c95881d904d4e40bfe7ed" 986 | 987 | emoji-regex@^7.0.1: 988 | version "7.0.3" 989 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" 990 | 991 | end-of-stream@^1.1.0, end-of-stream@^1.4.1: 992 | version "1.4.4" 993 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" 994 | dependencies: 995 | once "^1.4.0" 996 | 997 | end-of-stream@~0.1.5: 998 | version "0.1.5" 999 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-0.1.5.tgz#8e177206c3c80837d85632e8b9359dfe8b2f6eaf" 1000 | dependencies: 1001 | once "~1.3.0" 1002 | 1003 | es-abstract@^1.5.1: 1004 | version "1.16.0" 1005 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.16.0.tgz#d3a26dc9c3283ac9750dca569586e976d9dcc06d" 1006 | dependencies: 1007 | es-to-primitive "^1.2.0" 1008 | function-bind "^1.1.1" 1009 | has "^1.0.3" 1010 | has-symbols "^1.0.0" 1011 | is-callable "^1.1.4" 1012 | is-regex "^1.0.4" 1013 | object-inspect "^1.6.0" 1014 | object-keys "^1.1.1" 1015 | string.prototype.trimleft "^2.1.0" 1016 | string.prototype.trimright "^2.1.0" 1017 | 1018 | es-to-primitive@^1.2.0: 1019 | version "1.2.0" 1020 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" 1021 | dependencies: 1022 | is-callable "^1.1.4" 1023 | is-date-object "^1.0.1" 1024 | is-symbol "^1.0.2" 1025 | 1026 | es6-promise@^4.0.3: 1027 | version "4.2.8" 1028 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a" 1029 | 1030 | es6-promisify@^5.0.0: 1031 | version "5.0.0" 1032 | resolved "https://registry.yarnpkg.com/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203" 1033 | dependencies: 1034 | es6-promise "^4.0.3" 1035 | 1036 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1037 | version "1.0.5" 1038 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1039 | 1040 | escodegen@1.x.x: 1041 | version "1.12.0" 1042 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.12.0.tgz#f763daf840af172bb3a2b6dd7219c0e17f7ff541" 1043 | dependencies: 1044 | esprima "^3.1.3" 1045 | estraverse "^4.2.0" 1046 | esutils "^2.0.2" 1047 | optionator "^0.8.1" 1048 | optionalDependencies: 1049 | source-map "~0.6.1" 1050 | 1051 | esprima@3.x.x, esprima@^3.1.3: 1052 | version "3.1.3" 1053 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1054 | 1055 | esprima@^4.0.0: 1056 | version "4.0.1" 1057 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 1058 | 1059 | estraverse@^4.2.0: 1060 | version "4.3.0" 1061 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" 1062 | 1063 | esutils@^2.0.2: 1064 | version "2.0.2" 1065 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1066 | 1067 | execa@^0.7.0: 1068 | version "0.7.0" 1069 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1070 | dependencies: 1071 | cross-spawn "^5.0.1" 1072 | get-stream "^3.0.0" 1073 | is-stream "^1.1.0" 1074 | npm-run-path "^2.0.0" 1075 | p-finally "^1.0.0" 1076 | signal-exit "^3.0.0" 1077 | strip-eof "^1.0.0" 1078 | 1079 | execa@^1.0.0: 1080 | version "1.0.0" 1081 | resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" 1082 | dependencies: 1083 | cross-spawn "^6.0.0" 1084 | get-stream "^4.0.0" 1085 | is-stream "^1.1.0" 1086 | npm-run-path "^2.0.0" 1087 | p-finally "^1.0.0" 1088 | signal-exit "^3.0.0" 1089 | strip-eof "^1.0.0" 1090 | 1091 | exit@^0.1.2: 1092 | version "0.1.2" 1093 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 1094 | 1095 | expand-brackets@^0.1.4: 1096 | version "0.1.5" 1097 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1098 | dependencies: 1099 | is-posix-bracket "^0.1.0" 1100 | 1101 | expand-range@^1.8.1: 1102 | version "1.8.2" 1103 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1104 | dependencies: 1105 | fill-range "^2.1.0" 1106 | 1107 | expand-tilde@^1.2.1, expand-tilde@^1.2.2: 1108 | version "1.2.2" 1109 | resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-1.2.2.tgz#0b81eba897e5a3d31d1c3d102f8f01441e559449" 1110 | dependencies: 1111 | os-homedir "^1.0.1" 1112 | 1113 | extend@^3.0.0: 1114 | version "3.0.0" 1115 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 1116 | 1117 | extend@~3.0.2: 1118 | version "3.0.2" 1119 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 1120 | 1121 | external-editor@^3.0.3: 1122 | version "3.1.0" 1123 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" 1124 | dependencies: 1125 | chardet "^0.7.0" 1126 | iconv-lite "^0.4.24" 1127 | tmp "^0.0.33" 1128 | 1129 | extglob@^0.3.1: 1130 | version "0.3.2" 1131 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1132 | dependencies: 1133 | is-extglob "^1.0.0" 1134 | 1135 | fancy-log@^1.1.0: 1136 | version "1.3.0" 1137 | resolved "https://registry.yarnpkg.com/fancy-log/-/fancy-log-1.3.0.tgz#45be17d02bb9917d60ccffd4995c999e6c8c9948" 1138 | dependencies: 1139 | chalk "^1.1.1" 1140 | time-stamp "^1.0.0" 1141 | 1142 | fast-levenshtein@~2.0.4: 1143 | version "2.0.6" 1144 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1145 | 1146 | figures@^2.0.0: 1147 | version "2.0.0" 1148 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1149 | dependencies: 1150 | escape-string-regexp "^1.0.5" 1151 | 1152 | file-uri-to-path@1: 1153 | version "1.0.0" 1154 | resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" 1155 | 1156 | filename-regex@^2.0.0: 1157 | version "2.0.0" 1158 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 1159 | 1160 | fill-range@^2.1.0: 1161 | version "2.2.3" 1162 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1163 | dependencies: 1164 | is-number "^2.1.0" 1165 | isobject "^2.0.0" 1166 | randomatic "^1.1.3" 1167 | repeat-element "^1.1.2" 1168 | repeat-string "^1.5.2" 1169 | 1170 | find-index@^0.1.1: 1171 | version "0.1.1" 1172 | resolved "https://registry.yarnpkg.com/find-index/-/find-index-0.1.1.tgz#675d358b2ca3892d795a1ab47232f8b6e2e0dde4" 1173 | 1174 | findup-sync@^0.4.2: 1175 | version "0.4.3" 1176 | resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-0.4.3.tgz#40043929e7bc60adf0b7f4827c4c6e75a0deca12" 1177 | dependencies: 1178 | detect-file "^0.1.0" 1179 | is-glob "^2.0.1" 1180 | micromatch "^2.3.7" 1181 | resolve-dir "^0.1.0" 1182 | 1183 | fined@^1.0.1: 1184 | version "1.0.2" 1185 | resolved "https://registry.yarnpkg.com/fined/-/fined-1.0.2.tgz#5b28424b760d7598960b7ef8480dff8ad3660e97" 1186 | dependencies: 1187 | expand-tilde "^1.2.1" 1188 | lodash.assignwith "^4.0.7" 1189 | lodash.isempty "^4.2.1" 1190 | lodash.isplainobject "^4.0.4" 1191 | lodash.isstring "^4.0.1" 1192 | lodash.pick "^4.2.1" 1193 | parse-filepath "^1.0.1" 1194 | 1195 | first-chunk-stream@^1.0.0: 1196 | version "1.0.0" 1197 | resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz#59bfb50cd905f60d7c394cd3d9acaab4e6ad934e" 1198 | 1199 | flagged-respawn@^0.3.2: 1200 | version "0.3.2" 1201 | resolved "https://registry.yarnpkg.com/flagged-respawn/-/flagged-respawn-0.3.2.tgz#ff191eddcd7088a675b2610fffc976be9b8074b5" 1202 | 1203 | for-in@^0.1.3: 1204 | version "0.1.8" 1205 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.8.tgz#d8773908e31256109952b1fdb9b3fa867d2775e1" 1206 | 1207 | for-in@^0.1.5: 1208 | version "0.1.6" 1209 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8" 1210 | 1211 | for-in@^1.0.1: 1212 | version "1.0.2" 1213 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1214 | 1215 | for-own@^0.1.4: 1216 | version "0.1.4" 1217 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072" 1218 | dependencies: 1219 | for-in "^0.1.5" 1220 | 1221 | for-own@^1.0.0: 1222 | version "1.0.0" 1223 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-1.0.0.tgz#c63332f415cedc4b04dbfe70cf836494c53cb44b" 1224 | dependencies: 1225 | for-in "^1.0.1" 1226 | 1227 | fs-constants@^1.0.0: 1228 | version "1.0.0" 1229 | resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" 1230 | 1231 | fs-exists-sync@^0.1.0: 1232 | version "0.1.0" 1233 | resolved "https://registry.yarnpkg.com/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz#982d6893af918e72d08dec9e8673ff2b5a8d6add" 1234 | 1235 | fs.realpath@^1.0.0: 1236 | version "1.0.0" 1237 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1238 | 1239 | ftp@~0.3.10: 1240 | version "0.3.10" 1241 | resolved "https://registry.yarnpkg.com/ftp/-/ftp-0.3.10.tgz#9197d861ad8142f3e63d5a83bfe4c59f7330885d" 1242 | dependencies: 1243 | readable-stream "1.1.x" 1244 | xregexp "2.0.0" 1245 | 1246 | function-bind@^1.1.1: 1247 | version "1.1.1" 1248 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1249 | 1250 | gaze@^0.5.1: 1251 | version "0.5.2" 1252 | resolved "https://registry.yarnpkg.com/gaze/-/gaze-0.5.2.tgz#40b709537d24d1d45767db5a908689dfe69ac44f" 1253 | dependencies: 1254 | globule "~0.1.0" 1255 | 1256 | get-stream@^3.0.0: 1257 | version "3.0.0" 1258 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1259 | 1260 | get-stream@^4.0.0: 1261 | version "4.1.0" 1262 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" 1263 | dependencies: 1264 | pump "^3.0.0" 1265 | 1266 | get-uri@^2.0.0: 1267 | version "2.0.4" 1268 | resolved "https://registry.yarnpkg.com/get-uri/-/get-uri-2.0.4.tgz#d4937ab819e218d4cb5ae18e4f5962bef169cc6a" 1269 | dependencies: 1270 | data-uri-to-buffer "1" 1271 | debug "2" 1272 | extend "~3.0.2" 1273 | file-uri-to-path "1" 1274 | ftp "~0.3.10" 1275 | readable-stream "2" 1276 | 1277 | git-up@^4.0.0: 1278 | version "4.0.1" 1279 | resolved "https://registry.yarnpkg.com/git-up/-/git-up-4.0.1.tgz#cb2ef086653640e721d2042fe3104857d89007c0" 1280 | dependencies: 1281 | is-ssh "^1.3.0" 1282 | parse-url "^5.0.0" 1283 | 1284 | git-url-parse@11.1.2: 1285 | version "11.1.2" 1286 | resolved "https://registry.yarnpkg.com/git-url-parse/-/git-url-parse-11.1.2.tgz#aff1a897c36cc93699270587bea3dbcbbb95de67" 1287 | dependencies: 1288 | git-up "^4.0.0" 1289 | 1290 | glob-base@^0.3.0: 1291 | version "0.3.0" 1292 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1293 | dependencies: 1294 | glob-parent "^2.0.0" 1295 | is-glob "^2.0.0" 1296 | 1297 | glob-parent@^2.0.0: 1298 | version "2.0.0" 1299 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1300 | dependencies: 1301 | is-glob "^2.0.0" 1302 | 1303 | glob-stream@^3.1.5: 1304 | version "3.1.18" 1305 | resolved "https://registry.yarnpkg.com/glob-stream/-/glob-stream-3.1.18.tgz#9170a5f12b790306fdfe598f313f8f7954fd143b" 1306 | dependencies: 1307 | glob "^4.3.1" 1308 | glob2base "^0.0.12" 1309 | minimatch "^2.0.1" 1310 | ordered-read-streams "^0.1.0" 1311 | through2 "^0.6.1" 1312 | unique-stream "^1.0.0" 1313 | 1314 | glob-watcher@^0.0.6: 1315 | version "0.0.6" 1316 | resolved "https://registry.yarnpkg.com/glob-watcher/-/glob-watcher-0.0.6.tgz#b95b4a8df74b39c83298b0c05c978b4d9a3b710b" 1317 | dependencies: 1318 | gaze "^0.5.1" 1319 | 1320 | glob2base@^0.0.12: 1321 | version "0.0.12" 1322 | resolved "https://registry.yarnpkg.com/glob2base/-/glob2base-0.0.12.tgz#9d419b3e28f12e83a362164a277055922c9c0d56" 1323 | dependencies: 1324 | find-index "^0.1.1" 1325 | 1326 | glob@^4.3.1: 1327 | version "4.5.3" 1328 | resolved "https://registry.yarnpkg.com/glob/-/glob-4.5.3.tgz#c6cb73d3226c1efef04de3c56d012f03377ee15f" 1329 | dependencies: 1330 | inflight "^1.0.4" 1331 | inherits "2" 1332 | minimatch "^2.0.1" 1333 | once "^1.3.0" 1334 | 1335 | glob@^7.0.6: 1336 | version "7.1.1" 1337 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1338 | dependencies: 1339 | fs.realpath "^1.0.0" 1340 | inflight "^1.0.4" 1341 | inherits "2" 1342 | minimatch "^3.0.2" 1343 | once "^1.3.0" 1344 | path-is-absolute "^1.0.0" 1345 | 1346 | glob@^7.1.3: 1347 | version "7.1.5" 1348 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.5.tgz#6714c69bee20f3c3e64c4dd905553e532b40cdc0" 1349 | dependencies: 1350 | fs.realpath "^1.0.0" 1351 | inflight "^1.0.4" 1352 | inherits "2" 1353 | minimatch "^3.0.4" 1354 | once "^1.3.0" 1355 | path-is-absolute "^1.0.0" 1356 | 1357 | glob@~3.1.21: 1358 | version "3.1.21" 1359 | resolved "https://registry.yarnpkg.com/glob/-/glob-3.1.21.tgz#d29e0a055dea5138f4d07ed40e8982e83c2066cd" 1360 | dependencies: 1361 | graceful-fs "~1.2.0" 1362 | inherits "1" 1363 | minimatch "~0.2.11" 1364 | 1365 | global-dirs@^0.1.0: 1366 | version "0.1.1" 1367 | resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445" 1368 | dependencies: 1369 | ini "^1.3.4" 1370 | 1371 | global-modules@^0.2.3: 1372 | version "0.2.3" 1373 | resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-0.2.3.tgz#ea5a3bed42c6d6ce995a4f8a1269b5dae223828d" 1374 | dependencies: 1375 | global-prefix "^0.1.4" 1376 | is-windows "^0.2.0" 1377 | 1378 | global-prefix@^0.1.4: 1379 | version "0.1.5" 1380 | resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-0.1.5.tgz#8d3bc6b8da3ca8112a160d8d496ff0462bfef78f" 1381 | dependencies: 1382 | homedir-polyfill "^1.0.0" 1383 | ini "^1.3.4" 1384 | is-windows "^0.2.0" 1385 | which "^1.2.12" 1386 | 1387 | globals@^9.0.0: 1388 | version "9.14.0" 1389 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.14.0.tgz#8859936af0038741263053b39d0e76ca241e4034" 1390 | 1391 | globule@~0.1.0: 1392 | version "0.1.0" 1393 | resolved "https://registry.yarnpkg.com/globule/-/globule-0.1.0.tgz#d9c8edde1da79d125a151b79533b978676346ae5" 1394 | dependencies: 1395 | glob "~3.1.21" 1396 | lodash "~1.0.1" 1397 | minimatch "~0.2.11" 1398 | 1399 | glogg@^1.0.0: 1400 | version "1.0.0" 1401 | resolved "https://registry.yarnpkg.com/glogg/-/glogg-1.0.0.tgz#7fe0f199f57ac906cf512feead8f90ee4a284fc5" 1402 | dependencies: 1403 | sparkles "^1.0.0" 1404 | 1405 | got@^6.7.1: 1406 | version "6.7.1" 1407 | resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" 1408 | dependencies: 1409 | create-error-class "^3.0.0" 1410 | duplexer3 "^0.1.4" 1411 | get-stream "^3.0.0" 1412 | is-redirect "^1.0.0" 1413 | is-retry-allowed "^1.0.0" 1414 | is-stream "^1.0.0" 1415 | lowercase-keys "^1.0.0" 1416 | safe-buffer "^5.0.1" 1417 | timed-out "^4.0.0" 1418 | unzip-response "^2.0.1" 1419 | url-parse-lax "^1.0.0" 1420 | 1421 | graceful-fs@^3.0.0: 1422 | version "3.0.11" 1423 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-3.0.11.tgz#7613c778a1afea62f25c630a086d7f3acbbdd818" 1424 | dependencies: 1425 | natives "^1.1.0" 1426 | 1427 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 1428 | version "4.2.3" 1429 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423" 1430 | 1431 | graceful-fs@~1.2.0: 1432 | version "1.2.3" 1433 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-1.2.3.tgz#15a4806a57547cb2d2dbf27f42e89a8c3451b364" 1434 | 1435 | graphlib@^2.1.1, graphlib@^2.1.5: 1436 | version "2.1.7" 1437 | resolved "https://registry.yarnpkg.com/graphlib/-/graphlib-2.1.7.tgz#b6a69f9f44bd9de3963ce6804a2fc9e73d86aecc" 1438 | dependencies: 1439 | lodash "^4.17.5" 1440 | 1441 | gulp-babel@^6.1.2: 1442 | version "6.1.2" 1443 | resolved "https://registry.yarnpkg.com/gulp-babel/-/gulp-babel-6.1.2.tgz#7c0176e4ba3f244c60588a0c4b320a45d1adefce" 1444 | dependencies: 1445 | babel-core "^6.0.2" 1446 | gulp-util "^3.0.0" 1447 | object-assign "^4.0.1" 1448 | replace-ext "0.0.1" 1449 | through2 "^2.0.0" 1450 | vinyl-sourcemaps-apply "^0.2.0" 1451 | 1452 | gulp-util@^3.0.0: 1453 | version "3.0.8" 1454 | resolved "https://registry.yarnpkg.com/gulp-util/-/gulp-util-3.0.8.tgz#0054e1e744502e27c04c187c3ecc505dd54bbb4f" 1455 | dependencies: 1456 | array-differ "^1.0.0" 1457 | array-uniq "^1.0.2" 1458 | beeper "^1.0.0" 1459 | chalk "^1.0.0" 1460 | dateformat "^2.0.0" 1461 | fancy-log "^1.1.0" 1462 | gulplog "^1.0.0" 1463 | has-gulplog "^0.1.0" 1464 | lodash._reescape "^3.0.0" 1465 | lodash._reevaluate "^3.0.0" 1466 | lodash._reinterpolate "^3.0.0" 1467 | lodash.template "^3.0.0" 1468 | minimist "^1.1.0" 1469 | multipipe "^0.1.2" 1470 | object-assign "^3.0.0" 1471 | replace-ext "0.0.1" 1472 | through2 "^2.0.0" 1473 | vinyl "^0.5.0" 1474 | 1475 | gulp@^3.9.1: 1476 | version "3.9.1" 1477 | resolved "https://registry.yarnpkg.com/gulp/-/gulp-3.9.1.tgz#571ce45928dd40af6514fc4011866016c13845b4" 1478 | dependencies: 1479 | archy "^1.0.0" 1480 | chalk "^1.0.0" 1481 | deprecated "^0.0.1" 1482 | gulp-util "^3.0.0" 1483 | interpret "^1.0.0" 1484 | liftoff "^2.1.0" 1485 | minimist "^1.1.0" 1486 | orchestrator "^0.3.0" 1487 | pretty-hrtime "^1.0.0" 1488 | semver "^4.1.0" 1489 | tildify "^1.0.0" 1490 | v8flags "^2.0.2" 1491 | vinyl-fs "^0.3.0" 1492 | 1493 | gulplog@^1.0.0: 1494 | version "1.0.0" 1495 | resolved "https://registry.yarnpkg.com/gulplog/-/gulplog-1.0.0.tgz#e28c4d45d05ecbbed818363ce8f9c5926229ffe5" 1496 | dependencies: 1497 | glogg "^1.0.0" 1498 | 1499 | has-ansi@^2.0.0: 1500 | version "2.0.0" 1501 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1502 | dependencies: 1503 | ansi-regex "^2.0.0" 1504 | 1505 | has-flag@^3.0.0: 1506 | version "3.0.0" 1507 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1508 | 1509 | has-gulplog@^0.1.0: 1510 | version "0.1.0" 1511 | resolved "https://registry.yarnpkg.com/has-gulplog/-/has-gulplog-0.1.0.tgz#6414c82913697da51590397dafb12f22967811ce" 1512 | dependencies: 1513 | sparkles "^1.0.0" 1514 | 1515 | has-symbols@^1.0.0: 1516 | version "1.0.0" 1517 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" 1518 | 1519 | has@^1.0.1, has@^1.0.3: 1520 | version "1.0.3" 1521 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1522 | dependencies: 1523 | function-bind "^1.1.1" 1524 | 1525 | home-or-tmp@^2.0.0: 1526 | version "2.0.0" 1527 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1528 | dependencies: 1529 | os-homedir "^1.0.0" 1530 | os-tmpdir "^1.0.1" 1531 | 1532 | homedir-polyfill@^1.0.0: 1533 | version "1.0.1" 1534 | resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz#4c2bbc8a758998feebf5ed68580f76d46768b4bc" 1535 | dependencies: 1536 | parse-passwd "^1.0.0" 1537 | 1538 | hosted-git-info@^2.7.1: 1539 | version "2.8.5" 1540 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.5.tgz#759cfcf2c4d156ade59b0b2dfabddc42a6b9c70c" 1541 | 1542 | http-errors@1.7.3: 1543 | version "1.7.3" 1544 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06" 1545 | dependencies: 1546 | depd "~1.1.2" 1547 | inherits "2.0.4" 1548 | setprototypeof "1.1.1" 1549 | statuses ">= 1.5.0 < 2" 1550 | toidentifier "1.0.0" 1551 | 1552 | http-proxy-agent@^2.1.0: 1553 | version "2.1.0" 1554 | resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-2.1.0.tgz#e4821beef5b2142a2026bd73926fe537631c5405" 1555 | dependencies: 1556 | agent-base "4" 1557 | debug "3.1.0" 1558 | 1559 | https-proxy-agent@^3.0.0: 1560 | version "3.0.1" 1561 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-3.0.1.tgz#b8c286433e87602311b01c8ea34413d856a4af81" 1562 | dependencies: 1563 | agent-base "^4.3.0" 1564 | debug "^3.1.0" 1565 | 1566 | iconv-lite@0.4.24, iconv-lite@^0.4.24, iconv-lite@^0.4.4: 1567 | version "0.4.24" 1568 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 1569 | dependencies: 1570 | safer-buffer ">= 2.1.2 < 3" 1571 | 1572 | immediate@~3.0.5: 1573 | version "3.0.6" 1574 | resolved "https://registry.yarnpkg.com/immediate/-/immediate-3.0.6.tgz#9db1dbd0faf8de6fbe0f5dd5e56bb606280de69b" 1575 | 1576 | import-lazy@^2.1.0: 1577 | version "2.1.0" 1578 | resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" 1579 | 1580 | imurmurhash@^0.1.4: 1581 | version "0.1.4" 1582 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1583 | 1584 | inflight@^1.0.4: 1585 | version "1.0.6" 1586 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1587 | dependencies: 1588 | once "^1.3.0" 1589 | wrappy "1" 1590 | 1591 | inherits@1: 1592 | version "1.0.2" 1593 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-1.0.2.tgz#ca4309dadee6b54cc0b8d247e8d7c7a0975bdc9b" 1594 | 1595 | inherits@2, inherits@~2.0.1: 1596 | version "2.0.3" 1597 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1598 | 1599 | inherits@2.0.4, inherits@^2.0.3, inherits@~2.0.3: 1600 | version "2.0.4" 1601 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1602 | 1603 | ini@^1.3.0, ini@~1.3.0: 1604 | version "1.3.5" 1605 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1606 | 1607 | ini@^1.3.4: 1608 | version "1.3.4" 1609 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1610 | 1611 | inquirer@^6.2.2: 1612 | version "6.5.2" 1613 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.5.2.tgz#ad50942375d036d327ff528c08bd5fab089928ca" 1614 | dependencies: 1615 | ansi-escapes "^3.2.0" 1616 | chalk "^2.4.2" 1617 | cli-cursor "^2.1.0" 1618 | cli-width "^2.0.0" 1619 | external-editor "^3.0.3" 1620 | figures "^2.0.0" 1621 | lodash "^4.17.12" 1622 | mute-stream "0.0.7" 1623 | run-async "^2.2.0" 1624 | rxjs "^6.4.0" 1625 | string-width "^2.1.0" 1626 | strip-ansi "^5.1.0" 1627 | through "^2.3.6" 1628 | 1629 | interpret@^1.0.0: 1630 | version "1.0.1" 1631 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.1.tgz#d579fb7f693b858004947af39fa0db49f795602c" 1632 | 1633 | invariant@^2.2.0: 1634 | version "2.2.2" 1635 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1636 | dependencies: 1637 | loose-envify "^1.0.0" 1638 | 1639 | invert-kv@^1.0.0: 1640 | version "1.0.0" 1641 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1642 | 1643 | ip@^1.1.5: 1644 | version "1.1.5" 1645 | resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" 1646 | 1647 | is-absolute@^0.2.3: 1648 | version "0.2.6" 1649 | resolved "https://registry.yarnpkg.com/is-absolute/-/is-absolute-0.2.6.tgz#20de69f3db942ef2d87b9c2da36f172235b1b5eb" 1650 | dependencies: 1651 | is-relative "^0.2.1" 1652 | is-windows "^0.2.0" 1653 | 1654 | is-buffer@^1.0.2: 1655 | version "1.1.4" 1656 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" 1657 | 1658 | is-buffer@^1.1.5: 1659 | version "1.1.6" 1660 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1661 | 1662 | is-callable@^1.1.4: 1663 | version "1.1.4" 1664 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" 1665 | 1666 | is-ci@^1.0.10: 1667 | version "1.2.1" 1668 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.2.1.tgz#e3779c8ee17fccf428488f6e281187f2e632841c" 1669 | dependencies: 1670 | ci-info "^1.5.0" 1671 | 1672 | is-date-object@^1.0.1: 1673 | version "1.0.1" 1674 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1675 | 1676 | is-dotfile@^1.0.0: 1677 | version "1.0.2" 1678 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1679 | 1680 | is-equal-shallow@^0.1.3: 1681 | version "0.1.3" 1682 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1683 | dependencies: 1684 | is-primitive "^2.0.0" 1685 | 1686 | is-extendable@^0.1.1: 1687 | version "0.1.1" 1688 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1689 | 1690 | is-extglob@^1.0.0: 1691 | version "1.0.0" 1692 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1693 | 1694 | is-finite@^1.0.0: 1695 | version "1.0.2" 1696 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1697 | dependencies: 1698 | number-is-nan "^1.0.0" 1699 | 1700 | is-fullwidth-code-point@^1.0.0: 1701 | version "1.0.0" 1702 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1703 | dependencies: 1704 | number-is-nan "^1.0.0" 1705 | 1706 | is-fullwidth-code-point@^2.0.0: 1707 | version "2.0.0" 1708 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1709 | 1710 | is-glob@^2.0.0, is-glob@^2.0.1: 1711 | version "2.0.1" 1712 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1713 | dependencies: 1714 | is-extglob "^1.0.0" 1715 | 1716 | is-installed-globally@^0.1.0: 1717 | version "0.1.0" 1718 | resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80" 1719 | dependencies: 1720 | global-dirs "^0.1.0" 1721 | is-path-inside "^1.0.0" 1722 | 1723 | is-npm@^1.0.0: 1724 | version "1.0.0" 1725 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 1726 | 1727 | is-number@^2.0.2, is-number@^2.1.0: 1728 | version "2.1.0" 1729 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1730 | dependencies: 1731 | kind-of "^3.0.2" 1732 | 1733 | is-obj@^1.0.0: 1734 | version "1.0.1" 1735 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1736 | 1737 | is-path-inside@^1.0.0: 1738 | version "1.0.1" 1739 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" 1740 | dependencies: 1741 | path-is-inside "^1.0.1" 1742 | 1743 | is-plain-object@^2.0.1: 1744 | version "2.0.4" 1745 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 1746 | dependencies: 1747 | isobject "^3.0.1" 1748 | 1749 | is-posix-bracket@^0.1.0: 1750 | version "0.1.1" 1751 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1752 | 1753 | is-primitive@^2.0.0: 1754 | version "2.0.0" 1755 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1756 | 1757 | is-promise@^2.1.0: 1758 | version "2.1.0" 1759 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1760 | 1761 | is-redirect@^1.0.0: 1762 | version "1.0.0" 1763 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 1764 | 1765 | is-regex@^1.0.4: 1766 | version "1.0.4" 1767 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 1768 | dependencies: 1769 | has "^1.0.1" 1770 | 1771 | is-relative@^0.2.1: 1772 | version "0.2.1" 1773 | resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-0.2.1.tgz#d27f4c7d516d175fb610db84bbeef23c3bc97aa5" 1774 | dependencies: 1775 | is-unc-path "^0.1.1" 1776 | 1777 | is-retry-allowed@^1.0.0: 1778 | version "1.2.0" 1779 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz#d778488bd0a4666a3be8a1482b9f2baafedea8b4" 1780 | 1781 | is-ssh@^1.3.0: 1782 | version "1.3.1" 1783 | resolved "https://registry.yarnpkg.com/is-ssh/-/is-ssh-1.3.1.tgz#f349a8cadd24e65298037a522cf7520f2e81a0f3" 1784 | dependencies: 1785 | protocols "^1.1.0" 1786 | 1787 | is-stream@^1.0.0, is-stream@^1.1.0: 1788 | version "1.1.0" 1789 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1790 | 1791 | is-symbol@^1.0.2: 1792 | version "1.0.2" 1793 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38" 1794 | dependencies: 1795 | has-symbols "^1.0.0" 1796 | 1797 | is-unc-path@^0.1.1: 1798 | version "0.1.2" 1799 | resolved "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-0.1.2.tgz#6ab053a72573c10250ff416a3814c35178af39b9" 1800 | dependencies: 1801 | unc-path-regex "^0.1.0" 1802 | 1803 | is-utf8@^0.2.0: 1804 | version "0.2.1" 1805 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1806 | 1807 | is-windows@^0.2.0: 1808 | version "0.2.0" 1809 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-0.2.0.tgz#de1aa6d63ea29dd248737b69f1ff8b8002d2108c" 1810 | 1811 | is-wsl@^1.1.0: 1812 | version "1.1.0" 1813 | resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" 1814 | 1815 | isarray@0.0.1: 1816 | version "0.0.1" 1817 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1818 | 1819 | isarray@1.0.0, isarray@~1.0.0: 1820 | version "1.0.0" 1821 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1822 | 1823 | isexe@^1.1.1: 1824 | version "1.1.2" 1825 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-1.1.2.tgz#36f3e22e60750920f5e7241a476a8c6a42275ad0" 1826 | 1827 | isexe@^2.0.0: 1828 | version "2.0.0" 1829 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1830 | 1831 | isobject@^2.0.0: 1832 | version "2.1.0" 1833 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1834 | dependencies: 1835 | isarray "1.0.0" 1836 | 1837 | isobject@^3.0.1: 1838 | version "3.0.1" 1839 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 1840 | 1841 | jasmine-core@^2.4.1, jasmine-core@~2.5.2: 1842 | version "2.5.2" 1843 | resolved "https://registry.yarnpkg.com/jasmine-core/-/jasmine-core-2.5.2.tgz#6f61bd79061e27f43e6f9355e44b3c6cab6ff297" 1844 | 1845 | jasmine@^2.4.1: 1846 | version "2.5.3" 1847 | resolved "https://registry.yarnpkg.com/jasmine/-/jasmine-2.5.3.tgz#5441f254e1fc2269deb1dfd93e0e57d565ff4d22" 1848 | dependencies: 1849 | exit "^0.1.2" 1850 | glob "^7.0.6" 1851 | jasmine-core "~2.5.2" 1852 | 1853 | js-tokens@^3.0.0: 1854 | version "3.0.0" 1855 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.0.tgz#a2f2a969caae142fb3cd56228358c89366957bd1" 1856 | 1857 | js-yaml@^3.13.1: 1858 | version "3.13.1" 1859 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" 1860 | dependencies: 1861 | argparse "^1.0.7" 1862 | esprima "^4.0.0" 1863 | 1864 | jsesc@^1.3.0: 1865 | version "1.3.0" 1866 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1867 | 1868 | jsesc@~0.5.0: 1869 | version "0.5.0" 1870 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1871 | 1872 | json5@^0.5.0: 1873 | version "0.5.1" 1874 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1875 | 1876 | jszip@^3.1.5: 1877 | version "3.2.2" 1878 | resolved "https://registry.yarnpkg.com/jszip/-/jszip-3.2.2.tgz#b143816df7e106a9597a94c77493385adca5bd1d" 1879 | dependencies: 1880 | lie "~3.3.0" 1881 | pako "~1.0.2" 1882 | readable-stream "~2.3.6" 1883 | set-immediate-shim "~1.0.1" 1884 | 1885 | kind-of@^2.0.1: 1886 | version "2.0.1" 1887 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-2.0.1.tgz#018ec7a4ce7e3a86cb9141be519d24c8faa981b5" 1888 | dependencies: 1889 | is-buffer "^1.0.2" 1890 | 1891 | kind-of@^3.0.2: 1892 | version "3.1.0" 1893 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 1894 | dependencies: 1895 | is-buffer "^1.0.2" 1896 | 1897 | kind-of@^3.2.2: 1898 | version "3.2.2" 1899 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1900 | dependencies: 1901 | is-buffer "^1.1.5" 1902 | 1903 | latest-version@^3.0.0: 1904 | version "3.1.0" 1905 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" 1906 | dependencies: 1907 | package-json "^4.0.0" 1908 | 1909 | lazy-cache@^0.2.3: 1910 | version "0.2.7" 1911 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-0.2.7.tgz#7feddf2dcb6edb77d11ef1d117ab5ffdf0ab1b65" 1912 | 1913 | lcid@^1.0.0: 1914 | version "1.0.0" 1915 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1916 | dependencies: 1917 | invert-kv "^1.0.0" 1918 | 1919 | levn@~0.3.0: 1920 | version "0.3.0" 1921 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1922 | dependencies: 1923 | prelude-ls "~1.1.2" 1924 | type-check "~0.3.2" 1925 | 1926 | lie@~3.3.0: 1927 | version "3.3.0" 1928 | resolved "https://registry.yarnpkg.com/lie/-/lie-3.3.0.tgz#dcf82dee545f46074daf200c7c1c5a08e0f40f6a" 1929 | dependencies: 1930 | immediate "~3.0.5" 1931 | 1932 | liftoff@^2.1.0: 1933 | version "2.3.0" 1934 | resolved "https://registry.yarnpkg.com/liftoff/-/liftoff-2.3.0.tgz#a98f2ff67183d8ba7cfaca10548bd7ff0550b385" 1935 | dependencies: 1936 | extend "^3.0.0" 1937 | findup-sync "^0.4.2" 1938 | fined "^1.0.1" 1939 | flagged-respawn "^0.3.2" 1940 | lodash.isplainobject "^4.0.4" 1941 | lodash.isstring "^4.0.1" 1942 | lodash.mapvalues "^4.4.0" 1943 | rechoir "^0.6.2" 1944 | resolve "^1.1.7" 1945 | 1946 | lodash._basecopy@^3.0.0: 1947 | version "3.0.1" 1948 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1949 | 1950 | lodash._basetostring@^3.0.0: 1951 | version "3.0.1" 1952 | resolved "https://registry.yarnpkg.com/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz#d1861d877f824a52f669832dcaf3ee15566a07d5" 1953 | 1954 | lodash._basevalues@^3.0.0: 1955 | version "3.0.0" 1956 | resolved "https://registry.yarnpkg.com/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz#5b775762802bde3d3297503e26300820fdf661b7" 1957 | 1958 | lodash._getnative@^3.0.0: 1959 | version "3.9.1" 1960 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1961 | 1962 | lodash._isiterateecall@^3.0.0: 1963 | version "3.0.9" 1964 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 1965 | 1966 | lodash._reescape@^3.0.0: 1967 | version "3.0.0" 1968 | resolved "https://registry.yarnpkg.com/lodash._reescape/-/lodash._reescape-3.0.0.tgz#2b1d6f5dfe07c8a355753e5f27fac7f1cde1616a" 1969 | 1970 | lodash._reevaluate@^3.0.0: 1971 | version "3.0.0" 1972 | resolved "https://registry.yarnpkg.com/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz#58bc74c40664953ae0b124d806996daca431e2ed" 1973 | 1974 | lodash._reinterpolate@^3.0.0: 1975 | version "3.0.0" 1976 | resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" 1977 | 1978 | lodash._root@^3.0.0: 1979 | version "3.0.1" 1980 | resolved "https://registry.yarnpkg.com/lodash._root/-/lodash._root-3.0.1.tgz#fba1c4524c19ee9a5f8136b4609f017cf4ded692" 1981 | 1982 | lodash.assign@^4.2.0: 1983 | version "4.2.0" 1984 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" 1985 | 1986 | lodash.assignin@^4.2.0: 1987 | version "4.2.0" 1988 | resolved "https://registry.yarnpkg.com/lodash.assignin/-/lodash.assignin-4.2.0.tgz#ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2" 1989 | 1990 | lodash.assignwith@^4.0.7: 1991 | version "4.2.0" 1992 | resolved "https://registry.yarnpkg.com/lodash.assignwith/-/lodash.assignwith-4.2.0.tgz#127a97f02adc41751a954d24b0de17e100e038eb" 1993 | 1994 | lodash.clone@^4.5.0: 1995 | version "4.5.0" 1996 | resolved "https://registry.yarnpkg.com/lodash.clone/-/lodash.clone-4.5.0.tgz#195870450f5a13192478df4bc3d23d2dea1907b6" 1997 | 1998 | lodash.clonedeep@^4.3.0, lodash.clonedeep@^4.5.0: 1999 | version "4.5.0" 2000 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" 2001 | 2002 | lodash.escape@^3.0.0: 2003 | version "3.2.0" 2004 | resolved "https://registry.yarnpkg.com/lodash.escape/-/lodash.escape-3.2.0.tgz#995ee0dc18c1b48cc92effae71a10aab5b487698" 2005 | dependencies: 2006 | lodash._root "^3.0.0" 2007 | 2008 | lodash.flatten@^4.4.0: 2009 | version "4.4.0" 2010 | resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" 2011 | 2012 | lodash.get@^4.4.2: 2013 | version "4.4.2" 2014 | resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" 2015 | 2016 | lodash.isarguments@^3.0.0: 2017 | version "3.1.0" 2018 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 2019 | 2020 | lodash.isarray@^3.0.0: 2021 | version "3.0.4" 2022 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 2023 | 2024 | lodash.isempty@^4.2.1: 2025 | version "4.4.0" 2026 | resolved "https://registry.yarnpkg.com/lodash.isempty/-/lodash.isempty-4.4.0.tgz#6f86cbedd8be4ec987be9aaf33c9684db1b31e7e" 2027 | 2028 | lodash.isplainobject@^4.0.4: 2029 | version "4.0.6" 2030 | resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" 2031 | 2032 | lodash.isstring@^4.0.1: 2033 | version "4.0.1" 2034 | resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451" 2035 | 2036 | lodash.keys@^3.0.0: 2037 | version "3.1.2" 2038 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 2039 | dependencies: 2040 | lodash._getnative "^3.0.0" 2041 | lodash.isarguments "^3.0.0" 2042 | lodash.isarray "^3.0.0" 2043 | 2044 | lodash.mapvalues@^4.4.0: 2045 | version "4.6.0" 2046 | resolved "https://registry.yarnpkg.com/lodash.mapvalues/-/lodash.mapvalues-4.6.0.tgz#1bafa5005de9dd6f4f26668c30ca37230cc9689c" 2047 | 2048 | lodash.pick@^4.2.1: 2049 | version "4.4.0" 2050 | resolved "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3" 2051 | 2052 | lodash.restparam@^3.0.0: 2053 | version "3.6.1" 2054 | resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" 2055 | 2056 | lodash.set@^4.3.2: 2057 | version "4.3.2" 2058 | resolved "https://registry.yarnpkg.com/lodash.set/-/lodash.set-4.3.2.tgz#d8757b1da807dde24816b0d6a84bea1a76230b23" 2059 | 2060 | lodash.template@^3.0.0: 2061 | version "3.6.2" 2062 | resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-3.6.2.tgz#f8cdecc6169a255be9098ae8b0c53d378931d14f" 2063 | dependencies: 2064 | lodash._basecopy "^3.0.0" 2065 | lodash._basetostring "^3.0.0" 2066 | lodash._basevalues "^3.0.0" 2067 | lodash._isiterateecall "^3.0.0" 2068 | lodash._reinterpolate "^3.0.0" 2069 | lodash.escape "^3.0.0" 2070 | lodash.keys "^3.0.0" 2071 | lodash.restparam "^3.0.0" 2072 | lodash.templatesettings "^3.0.0" 2073 | 2074 | lodash.templatesettings@^3.0.0: 2075 | version "3.1.1" 2076 | resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz#fb307844753b66b9f1afa54e262c745307dba8e5" 2077 | dependencies: 2078 | lodash._reinterpolate "^3.0.0" 2079 | lodash.escape "^3.0.0" 2080 | 2081 | lodash@^4.0.0, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.5, lodash@^4.2.0, lodash@^4.7.14: 2082 | version "4.17.15" 2083 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" 2084 | 2085 | lodash@^4.7.0: 2086 | version "4.17.13" 2087 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.13.tgz#0bdc3a6adc873d2f4e0c4bac285df91b64fc7b93" 2088 | 2089 | lodash@~1.0.1: 2090 | version "1.0.2" 2091 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-1.0.2.tgz#8f57560c83b59fc270bd3d561b690043430e2551" 2092 | 2093 | loose-envify@^1.0.0: 2094 | version "1.3.1" 2095 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2096 | dependencies: 2097 | js-tokens "^3.0.0" 2098 | 2099 | lowercase-keys@^1.0.0: 2100 | version "1.0.1" 2101 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" 2102 | 2103 | lru-cache@2: 2104 | version "2.7.3" 2105 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.7.3.tgz#6d4524e8b955f95d4f5b58851ce21dd72fb4e952" 2106 | 2107 | lru-cache@^4.0.0, lru-cache@^4.0.1: 2108 | version "4.1.5" 2109 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" 2110 | dependencies: 2111 | pseudomap "^1.0.2" 2112 | yallist "^2.1.2" 2113 | 2114 | lru-cache@^5.1.1: 2115 | version "5.1.1" 2116 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" 2117 | dependencies: 2118 | yallist "^3.0.2" 2119 | 2120 | macos-release@^2.2.0: 2121 | version "2.3.0" 2122 | resolved "https://registry.yarnpkg.com/macos-release/-/macos-release-2.3.0.tgz#eb1930b036c0800adebccd5f17bc4c12de8bb71f" 2123 | 2124 | make-dir@^1.0.0: 2125 | version "1.3.0" 2126 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c" 2127 | dependencies: 2128 | pify "^3.0.0" 2129 | 2130 | map-cache@^0.2.0: 2131 | version "0.2.2" 2132 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 2133 | 2134 | micromatch@^2.3.7: 2135 | version "2.3.11" 2136 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2137 | dependencies: 2138 | arr-diff "^2.0.0" 2139 | array-unique "^0.2.1" 2140 | braces "^1.8.2" 2141 | expand-brackets "^0.1.4" 2142 | extglob "^0.3.1" 2143 | filename-regex "^2.0.0" 2144 | is-extglob "^1.0.0" 2145 | is-glob "^2.0.1" 2146 | kind-of "^3.0.2" 2147 | normalize-path "^2.0.1" 2148 | object.omit "^2.0.0" 2149 | parse-glob "^3.0.4" 2150 | regex-cache "^0.4.2" 2151 | 2152 | mimic-fn@^1.0.0: 2153 | version "1.2.0" 2154 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 2155 | 2156 | minimatch@^2.0.1: 2157 | version "2.0.10" 2158 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-2.0.10.tgz#8d087c39c6b38c001b97fca7ce6d0e1e80afbac7" 2159 | dependencies: 2160 | brace-expansion "^1.0.0" 2161 | 2162 | minimatch@^3.0.2: 2163 | version "3.0.3" 2164 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 2165 | dependencies: 2166 | brace-expansion "^1.0.0" 2167 | 2168 | minimatch@^3.0.4: 2169 | version "3.0.4" 2170 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2171 | dependencies: 2172 | brace-expansion "^1.1.7" 2173 | 2174 | minimatch@~0.2.11: 2175 | version "0.2.14" 2176 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-0.2.14.tgz#c74e780574f63c6f9a090e90efbe6ef53a6a756a" 2177 | dependencies: 2178 | lru-cache "2" 2179 | sigmund "~1.0.0" 2180 | 2181 | minimist@0.0.8: 2182 | version "0.0.8" 2183 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2184 | 2185 | minimist@^1.1.0, minimist@^1.2.0: 2186 | version "1.2.0" 2187 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2188 | 2189 | mixin-object@^2.0.1: 2190 | version "2.0.1" 2191 | resolved "https://registry.yarnpkg.com/mixin-object/-/mixin-object-2.0.1.tgz#4fb949441dab182540f1fe035ba60e1947a5e57e" 2192 | dependencies: 2193 | for-in "^0.1.3" 2194 | is-extendable "^0.1.1" 2195 | 2196 | mkdirp@^0.5.0, mkdirp@^0.5.1: 2197 | version "0.5.1" 2198 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2199 | dependencies: 2200 | minimist "0.0.8" 2201 | 2202 | ms@0.7.1: 2203 | version "0.7.1" 2204 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2205 | 2206 | ms@0.7.2: 2207 | version "0.7.2" 2208 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 2209 | 2210 | ms@2.0.0: 2211 | version "2.0.0" 2212 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2213 | 2214 | ms@^2.1.1: 2215 | version "2.1.2" 2216 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 2217 | 2218 | multipipe@^0.1.2: 2219 | version "0.1.2" 2220 | resolved "https://registry.yarnpkg.com/multipipe/-/multipipe-0.1.2.tgz#2a8f2ddf70eed564dff2d57f1e1a137d9f05078b" 2221 | dependencies: 2222 | duplexer2 "0.0.2" 2223 | 2224 | mute-stream@0.0.7: 2225 | version "0.0.7" 2226 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2227 | 2228 | natives@^1.1.0: 2229 | version "1.1.0" 2230 | resolved "https://registry.yarnpkg.com/natives/-/natives-1.1.0.tgz#e9ff841418a6b2ec7a495e939984f78f163e6e31" 2231 | 2232 | nconf@^0.10.0: 2233 | version "0.10.0" 2234 | resolved "https://registry.yarnpkg.com/nconf/-/nconf-0.10.0.tgz#da1285ee95d0a922ca6cee75adcf861f48205ad2" 2235 | dependencies: 2236 | async "^1.4.0" 2237 | ini "^1.3.0" 2238 | secure-keys "^1.0.0" 2239 | yargs "^3.19.0" 2240 | 2241 | needle@^2.2.4: 2242 | version "2.4.0" 2243 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.4.0.tgz#6833e74975c444642590e15a750288c5f939b57c" 2244 | dependencies: 2245 | debug "^3.2.6" 2246 | iconv-lite "^0.4.4" 2247 | sax "^1.2.4" 2248 | 2249 | netmask@^1.0.6: 2250 | version "1.0.6" 2251 | resolved "https://registry.yarnpkg.com/netmask/-/netmask-1.0.6.tgz#20297e89d86f6f6400f250d9f4f6b4c1945fcd35" 2252 | 2253 | nice-try@^1.0.4: 2254 | version "1.0.5" 2255 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 2256 | 2257 | node-rest-client@^1.8.0: 2258 | version "1.8.0" 2259 | resolved "https://registry.yarnpkg.com/node-rest-client/-/node-rest-client-1.8.0.tgz#8d3c566b817e27394cb7273783a41caefe3e5955" 2260 | dependencies: 2261 | debug "~2.2.0" 2262 | xml2js ">=0.2.4" 2263 | 2264 | normalize-path@^2.0.1: 2265 | version "2.0.1" 2266 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 2267 | 2268 | normalize-url@^3.3.0: 2269 | version "3.3.0" 2270 | resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-3.3.0.tgz#b2e1c4dc4f7c6d57743df733a4f5978d18650559" 2271 | 2272 | npm-run-path@^2.0.0: 2273 | version "2.0.2" 2274 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2275 | dependencies: 2276 | path-key "^2.0.0" 2277 | 2278 | number-is-nan@^1.0.0: 2279 | version "1.0.1" 2280 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2281 | 2282 | object-assign@^3.0.0: 2283 | version "3.0.0" 2284 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2" 2285 | 2286 | object-assign@^4.0.1: 2287 | version "4.1.1" 2288 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2289 | 2290 | object-hash@^1.3.1: 2291 | version "1.3.1" 2292 | resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-1.3.1.tgz#fde452098a951cb145f039bb7d455449ddc126df" 2293 | 2294 | object-inspect@^1.6.0: 2295 | version "1.6.0" 2296 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.6.0.tgz#c70b6cbf72f274aab4c34c0c82f5167bf82cf15b" 2297 | 2298 | object-keys@^1.0.12, object-keys@^1.1.1: 2299 | version "1.1.1" 2300 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 2301 | 2302 | object.getownpropertydescriptors@^2.0.3: 2303 | version "2.0.3" 2304 | resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" 2305 | dependencies: 2306 | define-properties "^1.1.2" 2307 | es-abstract "^1.5.1" 2308 | 2309 | object.omit@^2.0.0: 2310 | version "2.0.1" 2311 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2312 | dependencies: 2313 | for-own "^0.1.4" 2314 | is-extendable "^0.1.1" 2315 | 2316 | once@^1.3.0, once@^1.3.1, once@^1.4.0: 2317 | version "1.4.0" 2318 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2319 | dependencies: 2320 | wrappy "1" 2321 | 2322 | once@~1.3.0: 2323 | version "1.3.3" 2324 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 2325 | dependencies: 2326 | wrappy "1" 2327 | 2328 | onetime@^2.0.0: 2329 | version "2.0.1" 2330 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2331 | dependencies: 2332 | mimic-fn "^1.0.0" 2333 | 2334 | opn@^5.5.0: 2335 | version "5.5.0" 2336 | resolved "https://registry.yarnpkg.com/opn/-/opn-5.5.0.tgz#fc7164fab56d235904c51c3b27da6758ca3b9bfc" 2337 | dependencies: 2338 | is-wsl "^1.1.0" 2339 | 2340 | optionator@^0.8.1: 2341 | version "0.8.2" 2342 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2343 | dependencies: 2344 | deep-is "~0.1.3" 2345 | fast-levenshtein "~2.0.4" 2346 | levn "~0.3.0" 2347 | prelude-ls "~1.1.2" 2348 | type-check "~0.3.2" 2349 | wordwrap "~1.0.0" 2350 | 2351 | orchestrator@^0.3.0: 2352 | version "0.3.8" 2353 | resolved "https://registry.yarnpkg.com/orchestrator/-/orchestrator-0.3.8.tgz#14e7e9e2764f7315fbac184e506c7aa6df94ad7e" 2354 | dependencies: 2355 | end-of-stream "~0.1.5" 2356 | sequencify "~0.0.7" 2357 | stream-consume "~0.1.0" 2358 | 2359 | ordered-read-streams@^0.1.0: 2360 | version "0.1.0" 2361 | resolved "https://registry.yarnpkg.com/ordered-read-streams/-/ordered-read-streams-0.1.0.tgz#fd565a9af8eb4473ba69b6ed8a34352cb552f126" 2362 | 2363 | os-homedir@^1.0.0, os-homedir@^1.0.1: 2364 | version "1.0.2" 2365 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2366 | 2367 | os-locale@^1.4.0: 2368 | version "1.4.0" 2369 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2370 | dependencies: 2371 | lcid "^1.0.0" 2372 | 2373 | os-name@^3.0.0: 2374 | version "3.1.0" 2375 | resolved "https://registry.yarnpkg.com/os-name/-/os-name-3.1.0.tgz#dec19d966296e1cd62d701a5a66ee1ddeae70801" 2376 | dependencies: 2377 | macos-release "^2.2.0" 2378 | windows-release "^3.1.0" 2379 | 2380 | os-tmpdir@^1.0.1, os-tmpdir@~1.0.2: 2381 | version "1.0.2" 2382 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2383 | 2384 | p-finally@^1.0.0: 2385 | version "1.0.0" 2386 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2387 | 2388 | pac-proxy-agent@^3.0.1: 2389 | version "3.0.1" 2390 | resolved "https://registry.yarnpkg.com/pac-proxy-agent/-/pac-proxy-agent-3.0.1.tgz#115b1e58f92576cac2eba718593ca7b0e37de2ad" 2391 | dependencies: 2392 | agent-base "^4.2.0" 2393 | debug "^4.1.1" 2394 | get-uri "^2.0.0" 2395 | http-proxy-agent "^2.1.0" 2396 | https-proxy-agent "^3.0.0" 2397 | pac-resolver "^3.0.0" 2398 | raw-body "^2.2.0" 2399 | socks-proxy-agent "^4.0.1" 2400 | 2401 | pac-resolver@^3.0.0: 2402 | version "3.0.0" 2403 | resolved "https://registry.yarnpkg.com/pac-resolver/-/pac-resolver-3.0.0.tgz#6aea30787db0a891704deb7800a722a7615a6f26" 2404 | dependencies: 2405 | co "^4.6.0" 2406 | degenerator "^1.0.4" 2407 | ip "^1.1.5" 2408 | netmask "^1.0.6" 2409 | thunkify "^2.1.2" 2410 | 2411 | package-json@^4.0.0: 2412 | version "4.0.1" 2413 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" 2414 | dependencies: 2415 | got "^6.7.1" 2416 | registry-auth-token "^3.0.1" 2417 | registry-url "^3.0.3" 2418 | semver "^5.1.0" 2419 | 2420 | pako@~1.0.2: 2421 | version "1.0.10" 2422 | resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.10.tgz#4328badb5086a426aa90f541977d4955da5c9732" 2423 | 2424 | parse-filepath@^1.0.1: 2425 | version "1.0.1" 2426 | resolved "https://registry.yarnpkg.com/parse-filepath/-/parse-filepath-1.0.1.tgz#159d6155d43904d16c10ef698911da1e91969b73" 2427 | dependencies: 2428 | is-absolute "^0.2.3" 2429 | map-cache "^0.2.0" 2430 | path-root "^0.1.1" 2431 | 2432 | parse-glob@^3.0.4: 2433 | version "3.0.4" 2434 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2435 | dependencies: 2436 | glob-base "^0.3.0" 2437 | is-dotfile "^1.0.0" 2438 | is-extglob "^1.0.0" 2439 | is-glob "^2.0.0" 2440 | 2441 | parse-passwd@^1.0.0: 2442 | version "1.0.0" 2443 | resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" 2444 | 2445 | parse-path@^4.0.0: 2446 | version "4.0.1" 2447 | resolved "https://registry.yarnpkg.com/parse-path/-/parse-path-4.0.1.tgz#0ec769704949778cb3b8eda5e994c32073a1adff" 2448 | dependencies: 2449 | is-ssh "^1.3.0" 2450 | protocols "^1.4.0" 2451 | 2452 | parse-url@^5.0.0: 2453 | version "5.0.1" 2454 | resolved "https://registry.yarnpkg.com/parse-url/-/parse-url-5.0.1.tgz#99c4084fc11be14141efa41b3d117a96fcb9527f" 2455 | dependencies: 2456 | is-ssh "^1.3.0" 2457 | normalize-url "^3.3.0" 2458 | parse-path "^4.0.0" 2459 | protocols "^1.4.0" 2460 | 2461 | path-is-absolute@^1.0.0: 2462 | version "1.0.1" 2463 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2464 | 2465 | path-is-inside@^1.0.1: 2466 | version "1.0.2" 2467 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2468 | 2469 | path-key@^2.0.0, path-key@^2.0.1: 2470 | version "2.0.1" 2471 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2472 | 2473 | path-root-regex@^0.1.0: 2474 | version "0.1.2" 2475 | resolved "https://registry.yarnpkg.com/path-root-regex/-/path-root-regex-0.1.2.tgz#bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d" 2476 | 2477 | path-root@^0.1.1: 2478 | version "0.1.1" 2479 | resolved "https://registry.yarnpkg.com/path-root/-/path-root-0.1.1.tgz#9a4a6814cac1c0cd73360a95f32083c8ea4745b7" 2480 | dependencies: 2481 | path-root-regex "^0.1.0" 2482 | 2483 | pify@^3.0.0: 2484 | version "3.0.0" 2485 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2486 | 2487 | prelude-ls@~1.1.2: 2488 | version "1.1.2" 2489 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2490 | 2491 | prepend-http@^1.0.1: 2492 | version "1.0.4" 2493 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 2494 | 2495 | preserve@^0.2.0: 2496 | version "0.2.0" 2497 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2498 | 2499 | pretty-hrtime@^1.0.0: 2500 | version "1.0.3" 2501 | resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" 2502 | 2503 | private@^0.1.6: 2504 | version "0.1.6" 2505 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.6.tgz#55c6a976d0f9bafb9924851350fe47b9b5fbb7c1" 2506 | 2507 | process-nextick-args@~1.0.6: 2508 | version "1.0.7" 2509 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2510 | 2511 | process-nextick-args@~2.0.0: 2512 | version "2.0.1" 2513 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" 2514 | 2515 | "promise@>=3.2 <8": 2516 | version "7.3.1" 2517 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" 2518 | dependencies: 2519 | asap "~2.0.3" 2520 | 2521 | protocols@^1.1.0, protocols@^1.4.0: 2522 | version "1.4.7" 2523 | resolved "https://registry.yarnpkg.com/protocols/-/protocols-1.4.7.tgz#95f788a4f0e979b291ffefcf5636ad113d037d32" 2524 | 2525 | proxy-agent@^3.1.1: 2526 | version "3.1.1" 2527 | resolved "https://registry.yarnpkg.com/proxy-agent/-/proxy-agent-3.1.1.tgz#7e04e06bf36afa624a1540be247b47c970bd3014" 2528 | dependencies: 2529 | agent-base "^4.2.0" 2530 | debug "4" 2531 | http-proxy-agent "^2.1.0" 2532 | https-proxy-agent "^3.0.0" 2533 | lru-cache "^5.1.1" 2534 | pac-proxy-agent "^3.0.1" 2535 | proxy-from-env "^1.0.0" 2536 | socks-proxy-agent "^4.0.1" 2537 | 2538 | proxy-from-env@^1.0.0: 2539 | version "1.0.0" 2540 | resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.0.0.tgz#33c50398f70ea7eb96d21f7b817630a55791c7ee" 2541 | 2542 | pseudomap@^1.0.2: 2543 | version "1.0.2" 2544 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2545 | 2546 | pump@^3.0.0: 2547 | version "3.0.0" 2548 | resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" 2549 | dependencies: 2550 | end-of-stream "^1.1.0" 2551 | once "^1.3.1" 2552 | 2553 | randomatic@^1.1.3: 2554 | version "1.1.6" 2555 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 2556 | dependencies: 2557 | is-number "^2.0.2" 2558 | kind-of "^3.0.2" 2559 | 2560 | raw-body@^2.2.0: 2561 | version "2.4.1" 2562 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.1.tgz#30ac82f98bb5ae8c152e67149dac8d55153b168c" 2563 | dependencies: 2564 | bytes "3.1.0" 2565 | http-errors "1.7.3" 2566 | iconv-lite "0.4.24" 2567 | unpipe "1.0.0" 2568 | 2569 | rc@^1.0.1, rc@^1.1.6: 2570 | version "1.2.8" 2571 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 2572 | dependencies: 2573 | deep-extend "^0.6.0" 2574 | ini "~1.3.0" 2575 | minimist "^1.2.0" 2576 | strip-json-comments "~2.0.1" 2577 | 2578 | readable-stream@1.1.x, readable-stream@~1.1.9: 2579 | version "1.1.14" 2580 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" 2581 | dependencies: 2582 | core-util-is "~1.0.0" 2583 | inherits "~2.0.1" 2584 | isarray "0.0.1" 2585 | string_decoder "~0.10.x" 2586 | 2587 | readable-stream@2, readable-stream@~2.3.6: 2588 | version "2.3.6" 2589 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 2590 | dependencies: 2591 | core-util-is "~1.0.0" 2592 | inherits "~2.0.3" 2593 | isarray "~1.0.0" 2594 | process-nextick-args "~2.0.0" 2595 | safe-buffer "~5.1.1" 2596 | string_decoder "~1.1.1" 2597 | util-deprecate "~1.0.1" 2598 | 2599 | "readable-stream@>=1.0.33-1 <1.1.0-0": 2600 | version "1.0.34" 2601 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" 2602 | dependencies: 2603 | core-util-is "~1.0.0" 2604 | inherits "~2.0.1" 2605 | isarray "0.0.1" 2606 | string_decoder "~0.10.x" 2607 | 2608 | readable-stream@^2.1.5: 2609 | version "2.2.2" 2610 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.2.tgz#a9e6fec3c7dda85f8bb1b3ba7028604556fc825e" 2611 | dependencies: 2612 | buffer-shims "^1.0.0" 2613 | core-util-is "~1.0.0" 2614 | inherits "~2.0.1" 2615 | isarray "~1.0.0" 2616 | process-nextick-args "~1.0.6" 2617 | string_decoder "~0.10.x" 2618 | util-deprecate "~1.0.1" 2619 | 2620 | readable-stream@^3.0.1, readable-stream@^3.1.1: 2621 | version "3.4.0" 2622 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.4.0.tgz#a51c26754658e0a3c21dbf59163bd45ba6f447fc" 2623 | dependencies: 2624 | inherits "^2.0.3" 2625 | string_decoder "^1.1.1" 2626 | util-deprecate "^1.0.1" 2627 | 2628 | rechoir@^0.6.2: 2629 | version "0.6.2" 2630 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 2631 | dependencies: 2632 | resolve "^1.1.6" 2633 | 2634 | regenerate@^1.2.1: 2635 | version "1.3.2" 2636 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 2637 | 2638 | regenerator-runtime@^0.10.0: 2639 | version "0.10.1" 2640 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.1.tgz#257f41961ce44558b18f7814af48c17559f9faeb" 2641 | 2642 | regenerator-transform@0.9.8: 2643 | version "0.9.8" 2644 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.8.tgz#0f88bb2bc03932ddb7b6b7312e68078f01026d6c" 2645 | dependencies: 2646 | babel-runtime "^6.18.0" 2647 | babel-types "^6.19.0" 2648 | private "^0.1.6" 2649 | 2650 | regex-cache@^0.4.2: 2651 | version "0.4.3" 2652 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2653 | dependencies: 2654 | is-equal-shallow "^0.1.3" 2655 | is-primitive "^2.0.0" 2656 | 2657 | regexpu-core@^2.0.0: 2658 | version "2.0.0" 2659 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2660 | dependencies: 2661 | regenerate "^1.2.1" 2662 | regjsgen "^0.2.0" 2663 | regjsparser "^0.1.4" 2664 | 2665 | registry-auth-token@^3.0.1: 2666 | version "3.4.0" 2667 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.4.0.tgz#d7446815433f5d5ed6431cd5dca21048f66b397e" 2668 | dependencies: 2669 | rc "^1.1.6" 2670 | safe-buffer "^5.0.1" 2671 | 2672 | registry-url@^3.0.3: 2673 | version "3.1.0" 2674 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 2675 | dependencies: 2676 | rc "^1.0.1" 2677 | 2678 | regjsgen@^0.2.0: 2679 | version "0.2.0" 2680 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2681 | 2682 | regjsparser@^0.1.4: 2683 | version "0.1.5" 2684 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2685 | dependencies: 2686 | jsesc "~0.5.0" 2687 | 2688 | repeat-element@^1.1.2: 2689 | version "1.1.2" 2690 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2691 | 2692 | repeat-string@^1.5.2: 2693 | version "1.6.1" 2694 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2695 | 2696 | repeating@^2.0.0: 2697 | version "2.0.1" 2698 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2699 | dependencies: 2700 | is-finite "^1.0.0" 2701 | 2702 | replace-ext@0.0.1: 2703 | version "0.0.1" 2704 | resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-0.0.1.tgz#29bbd92078a739f0bcce2b4ee41e837953522924" 2705 | 2706 | resolve-dir@^0.1.0: 2707 | version "0.1.1" 2708 | resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-0.1.1.tgz#b219259a5602fac5c5c496ad894a6e8cc430261e" 2709 | dependencies: 2710 | expand-tilde "^1.2.2" 2711 | global-modules "^0.2.3" 2712 | 2713 | resolve@^1.1.6, resolve@^1.1.7: 2714 | version "1.2.0" 2715 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.2.0.tgz#9589c3f2f6149d1417a40becc1663db6ec6bc26c" 2716 | 2717 | restore-cursor@^2.0.0: 2718 | version "2.0.0" 2719 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2720 | dependencies: 2721 | onetime "^2.0.0" 2722 | signal-exit "^3.0.2" 2723 | 2724 | rimraf@^2.6.3: 2725 | version "2.7.1" 2726 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" 2727 | dependencies: 2728 | glob "^7.1.3" 2729 | 2730 | run-async@^2.2.0: 2731 | version "2.3.0" 2732 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 2733 | dependencies: 2734 | is-promise "^2.1.0" 2735 | 2736 | rxjs@^6.4.0: 2737 | version "6.5.3" 2738 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.3.tgz#510e26317f4db91a7eb1de77d9dd9ba0a4899a3a" 2739 | dependencies: 2740 | tslib "^1.9.0" 2741 | 2742 | safe-buffer@^5.0.1, safe-buffer@~5.2.0: 2743 | version "5.2.0" 2744 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519" 2745 | 2746 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2747 | version "5.1.2" 2748 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2749 | 2750 | "safer-buffer@>= 2.1.2 < 3": 2751 | version "2.1.2" 2752 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2753 | 2754 | sax@>=0.6.0: 2755 | version "1.2.1" 2756 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.1.tgz#7b8e656190b228e81a66aea748480d828cd2d37a" 2757 | 2758 | sax@^1.2.4: 2759 | version "1.2.4" 2760 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2761 | 2762 | secure-keys@^1.0.0: 2763 | version "1.0.0" 2764 | resolved "https://registry.yarnpkg.com/secure-keys/-/secure-keys-1.0.0.tgz#f0c82d98a3b139a8776a8808050b824431087fca" 2765 | 2766 | semver-diff@^2.0.0: 2767 | version "2.1.0" 2768 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 2769 | dependencies: 2770 | semver "^5.0.3" 2771 | 2772 | semver@^4.1.0: 2773 | version "4.3.6" 2774 | resolved "https://registry.yarnpkg.com/semver/-/semver-4.3.6.tgz#300bc6e0e86374f7ba61068b5b1ecd57fc6532da" 2775 | 2776 | semver@^5.0.3, semver@^5.1.0, semver@^5.5.0, semver@^5.5.1: 2777 | version "5.7.1" 2778 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 2779 | 2780 | semver@^6.0.0, semver@^6.1.0, semver@^6.1.2: 2781 | version "6.3.0" 2782 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 2783 | 2784 | sequencify@~0.0.7: 2785 | version "0.0.7" 2786 | resolved "https://registry.yarnpkg.com/sequencify/-/sequencify-0.0.7.tgz#90cff19d02e07027fd767f5ead3e7b95d1e7380c" 2787 | 2788 | set-immediate-shim@~1.0.1: 2789 | version "1.0.1" 2790 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2791 | 2792 | setprototypeof@1.1.1: 2793 | version "1.1.1" 2794 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683" 2795 | 2796 | shallow-clone@^0.1.2: 2797 | version "0.1.2" 2798 | resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-0.1.2.tgz#5909e874ba77106d73ac414cfec1ffca87d97060" 2799 | dependencies: 2800 | is-extendable "^0.1.1" 2801 | kind-of "^2.0.1" 2802 | lazy-cache "^0.2.3" 2803 | mixin-object "^2.0.1" 2804 | 2805 | shebang-command@^1.2.0: 2806 | version "1.2.0" 2807 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2808 | dependencies: 2809 | shebang-regex "^1.0.0" 2810 | 2811 | shebang-regex@^1.0.0: 2812 | version "1.0.0" 2813 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2814 | 2815 | sigmund@~1.0.0: 2816 | version "1.0.1" 2817 | resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590" 2818 | 2819 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2820 | version "3.0.2" 2821 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2822 | 2823 | slash@^1.0.0: 2824 | version "1.0.0" 2825 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2826 | 2827 | smart-buffer@4.0.2: 2828 | version "4.0.2" 2829 | resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.0.2.tgz#5207858c3815cc69110703c6b94e46c15634395d" 2830 | 2831 | snyk-config@^2.2.1: 2832 | version "2.2.3" 2833 | resolved "https://registry.yarnpkg.com/snyk-config/-/snyk-config-2.2.3.tgz#8e09bb98602ad044954d30a9fc1695ab5b6042fa" 2834 | dependencies: 2835 | debug "^3.1.0" 2836 | lodash "^4.17.15" 2837 | nconf "^0.10.0" 2838 | 2839 | snyk-docker-plugin@1.33.1: 2840 | version "1.33.1" 2841 | resolved "https://registry.yarnpkg.com/snyk-docker-plugin/-/snyk-docker-plugin-1.33.1.tgz#9fe0acf9964ed3bc49721163ed88de32b212ed05" 2842 | dependencies: 2843 | debug "^4.1.1" 2844 | dockerfile-ast "0.0.16" 2845 | semver "^6.1.0" 2846 | tar-stream "^2.1.0" 2847 | tslib "^1" 2848 | 2849 | snyk-go-parser@1.3.1: 2850 | version "1.3.1" 2851 | resolved "https://registry.yarnpkg.com/snyk-go-parser/-/snyk-go-parser-1.3.1.tgz#427387507578baf008a3e73828e0e53ed8c796f3" 2852 | dependencies: 2853 | toml "^3.0.0" 2854 | tslib "^1.9.3" 2855 | 2856 | snyk-go-plugin@1.11.1: 2857 | version "1.11.1" 2858 | resolved "https://registry.yarnpkg.com/snyk-go-plugin/-/snyk-go-plugin-1.11.1.tgz#cd7c73c42bd3cf5faa2a90a54cd7c6db926fea5d" 2859 | dependencies: 2860 | debug "^4.1.1" 2861 | graphlib "^2.1.1" 2862 | snyk-go-parser "1.3.1" 2863 | tmp "0.0.33" 2864 | tslib "^1.10.0" 2865 | 2866 | snyk-gradle-plugin@3.2.0: 2867 | version "3.2.0" 2868 | resolved "https://registry.yarnpkg.com/snyk-gradle-plugin/-/snyk-gradle-plugin-3.2.0.tgz#eb5ae694658c8b3674402622980bcc82bad638a5" 2869 | dependencies: 2870 | "@snyk/cli-interface" "2.2.0" 2871 | "@types/debug" "^4.1.4" 2872 | chalk "^2.4.2" 2873 | clone-deep "^0.3.0" 2874 | debug "^4.1.1" 2875 | tmp "0.0.33" 2876 | tslib "^1.9.3" 2877 | 2878 | snyk-module@1.9.1, snyk-module@^1.6.0, snyk-module@^1.9.1: 2879 | version "1.9.1" 2880 | resolved "https://registry.yarnpkg.com/snyk-module/-/snyk-module-1.9.1.tgz#b2a78f736600b0ab680f1703466ed7309c980804" 2881 | dependencies: 2882 | debug "^3.1.0" 2883 | hosted-git-info "^2.7.1" 2884 | 2885 | snyk-mvn-plugin@2.4.0: 2886 | version "2.4.0" 2887 | resolved "https://registry.yarnpkg.com/snyk-mvn-plugin/-/snyk-mvn-plugin-2.4.0.tgz#b653050a4095feccffc1b9387dc3a3f2f1aa69da" 2888 | dependencies: 2889 | lodash "^4.17.15" 2890 | tslib "1.9.3" 2891 | 2892 | snyk-nodejs-lockfile-parser@1.16.0: 2893 | version "1.16.0" 2894 | resolved "https://registry.yarnpkg.com/snyk-nodejs-lockfile-parser/-/snyk-nodejs-lockfile-parser-1.16.0.tgz#1c1d0aba4643830901ef999415816e7a92b0974d" 2895 | dependencies: 2896 | "@yarnpkg/lockfile" "^1.0.2" 2897 | graphlib "^2.1.5" 2898 | lodash "^4.17.14" 2899 | source-map-support "^0.5.7" 2900 | tslib "^1.9.3" 2901 | uuid "^3.3.2" 2902 | 2903 | snyk-nuget-plugin@1.13.1: 2904 | version "1.13.1" 2905 | resolved "https://registry.yarnpkg.com/snyk-nuget-plugin/-/snyk-nuget-plugin-1.13.1.tgz#e94f6b129b62f7c0134851be233deab5a472518b" 2906 | dependencies: 2907 | debug "^3.1.0" 2908 | dotnet-deps-parser "4.5.2" 2909 | jszip "^3.1.5" 2910 | lodash "^4.17.14" 2911 | snyk-paket-parser "1.5.0" 2912 | tslib "^1.9.3" 2913 | xml2js "^0.4.17" 2914 | 2915 | snyk-paket-parser@1.5.0: 2916 | version "1.5.0" 2917 | resolved "https://registry.yarnpkg.com/snyk-paket-parser/-/snyk-paket-parser-1.5.0.tgz#a0e96888d9d304b1ae6203a0369971575f099548" 2918 | dependencies: 2919 | tslib "^1.9.3" 2920 | 2921 | snyk-php-plugin@1.6.4: 2922 | version "1.6.4" 2923 | resolved "https://registry.yarnpkg.com/snyk-php-plugin/-/snyk-php-plugin-1.6.4.tgz#c3470aea2f185d2f3417cfc5e966ecf7fd1efa20" 2924 | dependencies: 2925 | "@snyk/composer-lockfile-parser" "1.0.3" 2926 | tslib "1.9.3" 2927 | 2928 | snyk-policy@1.13.5: 2929 | version "1.13.5" 2930 | resolved "https://registry.yarnpkg.com/snyk-policy/-/snyk-policy-1.13.5.tgz#c5cf262f759879a65ab0810dd58d59c8ec7e9e47" 2931 | dependencies: 2932 | debug "^3.1.0" 2933 | email-validator "^2.0.4" 2934 | js-yaml "^3.13.1" 2935 | lodash.clonedeep "^4.5.0" 2936 | semver "^6.0.0" 2937 | snyk-module "^1.9.1" 2938 | snyk-resolve "^1.0.1" 2939 | snyk-try-require "^1.3.1" 2940 | then-fs "^2.0.0" 2941 | 2942 | snyk-python-plugin@^1.13.3: 2943 | version "1.13.3" 2944 | resolved "https://registry.yarnpkg.com/snyk-python-plugin/-/snyk-python-plugin-1.13.3.tgz#34587001de2cca8fb400f3f21110c29b39a80e83" 2945 | dependencies: 2946 | "@snyk/cli-interface" "^2.0.3" 2947 | tmp "0.0.33" 2948 | 2949 | snyk-resolve-deps@4.4.0: 2950 | version "4.4.0" 2951 | resolved "https://registry.yarnpkg.com/snyk-resolve-deps/-/snyk-resolve-deps-4.4.0.tgz#ef20fb578a4c920cc262fb73dd292ff21215f52d" 2952 | dependencies: 2953 | "@types/node" "^6.14.4" 2954 | "@types/semver" "^5.5.0" 2955 | ansicolors "^0.3.2" 2956 | debug "^3.2.5" 2957 | lodash.assign "^4.2.0" 2958 | lodash.assignin "^4.2.0" 2959 | lodash.clone "^4.5.0" 2960 | lodash.flatten "^4.4.0" 2961 | lodash.get "^4.4.2" 2962 | lodash.set "^4.3.2" 2963 | lru-cache "^4.0.0" 2964 | semver "^5.5.1" 2965 | snyk-module "^1.6.0" 2966 | snyk-resolve "^1.0.0" 2967 | snyk-tree "^1.0.0" 2968 | snyk-try-require "^1.1.1" 2969 | then-fs "^2.0.0" 2970 | 2971 | snyk-resolve@1.0.1, snyk-resolve@^1.0.0, snyk-resolve@^1.0.1: 2972 | version "1.0.1" 2973 | resolved "https://registry.yarnpkg.com/snyk-resolve/-/snyk-resolve-1.0.1.tgz#eaa4a275cf7e2b579f18da5b188fe601b8eed9ab" 2974 | dependencies: 2975 | debug "^3.1.0" 2976 | then-fs "^2.0.0" 2977 | 2978 | snyk-sbt-plugin@2.8.0: 2979 | version "2.8.0" 2980 | resolved "https://registry.yarnpkg.com/snyk-sbt-plugin/-/snyk-sbt-plugin-2.8.0.tgz#6812e1df1c311e99a7aa565559032c7511d1e4d4" 2981 | dependencies: 2982 | semver "^6.1.2" 2983 | tmp "^0.1.0" 2984 | tree-kill "^1.2.1" 2985 | tslib "^1.10.0" 2986 | 2987 | snyk-tree@^1.0.0: 2988 | version "1.0.0" 2989 | resolved "https://registry.yarnpkg.com/snyk-tree/-/snyk-tree-1.0.0.tgz#0fb73176dbf32e782f19100294160448f9111cc8" 2990 | dependencies: 2991 | archy "^1.0.0" 2992 | 2993 | snyk-try-require@1.3.1, snyk-try-require@^1.1.1, snyk-try-require@^1.3.1: 2994 | version "1.3.1" 2995 | resolved "https://registry.yarnpkg.com/snyk-try-require/-/snyk-try-require-1.3.1.tgz#6e026f92e64af7fcccea1ee53d524841e418a212" 2996 | dependencies: 2997 | debug "^3.1.0" 2998 | lodash.clonedeep "^4.3.0" 2999 | lru-cache "^4.0.0" 3000 | then-fs "^2.0.0" 3001 | 3002 | snyk@^1.30.1: 3003 | version "1.241.0" 3004 | resolved "https://registry.yarnpkg.com/snyk/-/snyk-1.241.0.tgz#cf9c3cf042dd1a1f5ac60d4c87574f414a9f0aac" 3005 | dependencies: 3006 | "@snyk/cli-interface" "2.2.0" 3007 | "@snyk/dep-graph" "1.13.1" 3008 | "@snyk/gemfile" "1.2.0" 3009 | "@snyk/snyk-cocoapods-plugin" "1.0.3" 3010 | "@types/agent-base" "^4.2.0" 3011 | "@types/restify" "^4.3.6" 3012 | abbrev "^1.1.1" 3013 | ansi-escapes "3.2.0" 3014 | chalk "^2.4.2" 3015 | cli-spinner "0.2.10" 3016 | configstore "^3.1.2" 3017 | debug "^3.1.0" 3018 | diff "^4.0.1" 3019 | git-url-parse "11.1.2" 3020 | glob "^7.1.3" 3021 | inquirer "^6.2.2" 3022 | lodash "^4.17.14" 3023 | needle "^2.2.4" 3024 | opn "^5.5.0" 3025 | os-name "^3.0.0" 3026 | proxy-agent "^3.1.1" 3027 | proxy-from-env "^1.0.0" 3028 | semver "^6.0.0" 3029 | snyk-config "^2.2.1" 3030 | snyk-docker-plugin "1.33.1" 3031 | snyk-go-plugin "1.11.1" 3032 | snyk-gradle-plugin "3.2.0" 3033 | snyk-module "1.9.1" 3034 | snyk-mvn-plugin "2.4.0" 3035 | snyk-nodejs-lockfile-parser "1.16.0" 3036 | snyk-nuget-plugin "1.13.1" 3037 | snyk-php-plugin "1.6.4" 3038 | snyk-policy "1.13.5" 3039 | snyk-python-plugin "^1.13.3" 3040 | snyk-resolve "1.0.1" 3041 | snyk-resolve-deps "4.4.0" 3042 | snyk-sbt-plugin "2.8.0" 3043 | snyk-tree "^1.0.0" 3044 | snyk-try-require "1.3.1" 3045 | source-map-support "^0.5.11" 3046 | strip-ansi "^5.2.0" 3047 | tempfile "^2.0.0" 3048 | then-fs "^2.0.0" 3049 | update-notifier "^2.5.0" 3050 | uuid "^3.3.2" 3051 | wrap-ansi "^5.1.0" 3052 | 3053 | socks-proxy-agent@^4.0.1: 3054 | version "4.0.2" 3055 | resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-4.0.2.tgz#3c8991f3145b2799e70e11bd5fbc8b1963116386" 3056 | dependencies: 3057 | agent-base "~4.2.1" 3058 | socks "~2.3.2" 3059 | 3060 | socks@~2.3.2: 3061 | version "2.3.2" 3062 | resolved "https://registry.yarnpkg.com/socks/-/socks-2.3.2.tgz#ade388e9e6d87fdb11649c15746c578922a5883e" 3063 | dependencies: 3064 | ip "^1.1.5" 3065 | smart-buffer "4.0.2" 3066 | 3067 | source-map-support@^0.4.2: 3068 | version "0.4.10" 3069 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.10.tgz#d7b19038040a14c0837a18e630a196453952b378" 3070 | dependencies: 3071 | source-map "^0.5.3" 3072 | 3073 | source-map-support@^0.5.11, source-map-support@^0.5.7: 3074 | version "0.5.16" 3075 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.16.tgz#0ae069e7fe3ba7538c64c98515e35339eac5a042" 3076 | dependencies: 3077 | buffer-from "^1.0.0" 3078 | source-map "^0.6.0" 3079 | 3080 | source-map@^0.5.0, source-map@^0.5.1, source-map@^0.5.3: 3081 | version "0.5.6" 3082 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3083 | 3084 | source-map@^0.6.0, source-map@~0.6.1: 3085 | version "0.6.1" 3086 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3087 | 3088 | sparkles@^1.0.0: 3089 | version "1.0.0" 3090 | resolved "https://registry.yarnpkg.com/sparkles/-/sparkles-1.0.0.tgz#1acbbfb592436d10bbe8f785b7cc6f82815012c3" 3091 | 3092 | sprintf-js@~1.0.2: 3093 | version "1.0.3" 3094 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3095 | 3096 | "statuses@>= 1.5.0 < 2": 3097 | version "1.5.0" 3098 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" 3099 | 3100 | stream-consume@~0.1.0: 3101 | version "0.1.0" 3102 | resolved "https://registry.yarnpkg.com/stream-consume/-/stream-consume-0.1.0.tgz#a41ead1a6d6081ceb79f65b061901b6d8f3d1d0f" 3103 | 3104 | string-width@^1.0.1: 3105 | version "1.0.2" 3106 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3107 | dependencies: 3108 | code-point-at "^1.0.0" 3109 | is-fullwidth-code-point "^1.0.0" 3110 | strip-ansi "^3.0.0" 3111 | 3112 | string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: 3113 | version "2.1.1" 3114 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3115 | dependencies: 3116 | is-fullwidth-code-point "^2.0.0" 3117 | strip-ansi "^4.0.0" 3118 | 3119 | string-width@^3.0.0: 3120 | version "3.1.0" 3121 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" 3122 | dependencies: 3123 | emoji-regex "^7.0.1" 3124 | is-fullwidth-code-point "^2.0.0" 3125 | strip-ansi "^5.1.0" 3126 | 3127 | string.prototype.trimleft@^2.1.0: 3128 | version "2.1.0" 3129 | resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.0.tgz#6cc47f0d7eb8d62b0f3701611715a3954591d634" 3130 | dependencies: 3131 | define-properties "^1.1.3" 3132 | function-bind "^1.1.1" 3133 | 3134 | string.prototype.trimright@^2.1.0: 3135 | version "2.1.0" 3136 | resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.0.tgz#669d164be9df9b6f7559fa8e89945b168a5a6c58" 3137 | dependencies: 3138 | define-properties "^1.1.3" 3139 | function-bind "^1.1.1" 3140 | 3141 | string_decoder@^1.1.1: 3142 | version "1.3.0" 3143 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" 3144 | dependencies: 3145 | safe-buffer "~5.2.0" 3146 | 3147 | string_decoder@~0.10.x: 3148 | version "0.10.31" 3149 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3150 | 3151 | string_decoder@~1.1.1: 3152 | version "1.1.1" 3153 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 3154 | dependencies: 3155 | safe-buffer "~5.1.0" 3156 | 3157 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3158 | version "3.0.1" 3159 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3160 | dependencies: 3161 | ansi-regex "^2.0.0" 3162 | 3163 | strip-ansi@^4.0.0: 3164 | version "4.0.0" 3165 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3166 | dependencies: 3167 | ansi-regex "^3.0.0" 3168 | 3169 | strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: 3170 | version "5.2.0" 3171 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" 3172 | dependencies: 3173 | ansi-regex "^4.1.0" 3174 | 3175 | strip-bom@^1.0.0: 3176 | version "1.0.0" 3177 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-1.0.0.tgz#85b8862f3844b5a6d5ec8467a93598173a36f794" 3178 | dependencies: 3179 | first-chunk-stream "^1.0.0" 3180 | is-utf8 "^0.2.0" 3181 | 3182 | strip-eof@^1.0.0: 3183 | version "1.0.0" 3184 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3185 | 3186 | strip-json-comments@~2.0.1: 3187 | version "2.0.1" 3188 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3189 | 3190 | supports-color@^2.0.0: 3191 | version "2.0.0" 3192 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3193 | 3194 | supports-color@^5.3.0: 3195 | version "5.5.0" 3196 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 3197 | dependencies: 3198 | has-flag "^3.0.0" 3199 | 3200 | tar-stream@^2.1.0: 3201 | version "2.1.0" 3202 | resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.1.0.tgz#d1aaa3661f05b38b5acc9b7020efdca5179a2cc3" 3203 | dependencies: 3204 | bl "^3.0.0" 3205 | end-of-stream "^1.4.1" 3206 | fs-constants "^1.0.0" 3207 | inherits "^2.0.3" 3208 | readable-stream "^3.1.1" 3209 | 3210 | temp-dir@^1.0.0: 3211 | version "1.0.0" 3212 | resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-1.0.0.tgz#0a7c0ea26d3a39afa7e0ebea9c1fc0bc4daa011d" 3213 | 3214 | tempfile@^2.0.0: 3215 | version "2.0.0" 3216 | resolved "https://registry.yarnpkg.com/tempfile/-/tempfile-2.0.0.tgz#6b0446856a9b1114d1856ffcbe509cccb0977265" 3217 | dependencies: 3218 | temp-dir "^1.0.0" 3219 | uuid "^3.0.1" 3220 | 3221 | term-size@^1.2.0: 3222 | version "1.2.0" 3223 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" 3224 | dependencies: 3225 | execa "^0.7.0" 3226 | 3227 | then-fs@^2.0.0: 3228 | version "2.0.0" 3229 | resolved "https://registry.yarnpkg.com/then-fs/-/then-fs-2.0.0.tgz#72f792dd9d31705a91ae19ebfcf8b3f968c81da2" 3230 | dependencies: 3231 | promise ">=3.2 <8" 3232 | 3233 | through2@^0.6.1: 3234 | version "0.6.5" 3235 | resolved "https://registry.yarnpkg.com/through2/-/through2-0.6.5.tgz#41ab9c67b29d57209071410e1d7a7a968cd3ad48" 3236 | dependencies: 3237 | readable-stream ">=1.0.33-1 <1.1.0-0" 3238 | xtend ">=4.0.0 <4.1.0-0" 3239 | 3240 | through2@^2.0.0: 3241 | version "2.0.3" 3242 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 3243 | dependencies: 3244 | readable-stream "^2.1.5" 3245 | xtend "~4.0.1" 3246 | 3247 | through@^2.3.6: 3248 | version "2.3.8" 3249 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3250 | 3251 | thunkify@^2.1.2: 3252 | version "2.1.2" 3253 | resolved "https://registry.yarnpkg.com/thunkify/-/thunkify-2.1.2.tgz#faa0e9d230c51acc95ca13a361ac05ca7e04553d" 3254 | 3255 | tildify@^1.0.0: 3256 | version "1.2.0" 3257 | resolved "https://registry.yarnpkg.com/tildify/-/tildify-1.2.0.tgz#dcec03f55dca9b7aa3e5b04f21817eb56e63588a" 3258 | dependencies: 3259 | os-homedir "^1.0.0" 3260 | 3261 | time-stamp@^1.0.0: 3262 | version "1.0.1" 3263 | resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.0.1.tgz#9f4bd23559c9365966f3302dbba2b07c6b99b151" 3264 | 3265 | timed-out@^4.0.0: 3266 | version "4.0.1" 3267 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" 3268 | 3269 | tmp@0.0.33, tmp@^0.0.33: 3270 | version "0.0.33" 3271 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 3272 | dependencies: 3273 | os-tmpdir "~1.0.2" 3274 | 3275 | tmp@^0.1.0: 3276 | version "0.1.0" 3277 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.1.0.tgz#ee434a4e22543082e294ba6201dcc6eafefa2877" 3278 | dependencies: 3279 | rimraf "^2.6.3" 3280 | 3281 | to-fast-properties@^1.0.1: 3282 | version "1.0.2" 3283 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 3284 | 3285 | toidentifier@1.0.0: 3286 | version "1.0.0" 3287 | resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" 3288 | 3289 | toml@^3.0.0: 3290 | version "3.0.0" 3291 | resolved "https://registry.yarnpkg.com/toml/-/toml-3.0.0.tgz#342160f1af1904ec9d204d03a5d61222d762c5ee" 3292 | 3293 | tree-kill@^1.2.1: 3294 | version "1.2.1" 3295 | resolved "https://registry.yarnpkg.com/tree-kill/-/tree-kill-1.2.1.tgz#5398f374e2f292b9dcc7b2e71e30a5c3bb6c743a" 3296 | 3297 | tslib@1.9.3: 3298 | version "1.9.3" 3299 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286" 3300 | 3301 | tslib@^1, tslib@^1.10.0, tslib@^1.9.0, tslib@^1.9.3: 3302 | version "1.10.0" 3303 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a" 3304 | 3305 | type-check@~0.3.2: 3306 | version "0.3.2" 3307 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3308 | dependencies: 3309 | prelude-ls "~1.1.2" 3310 | 3311 | unc-path-regex@^0.1.0: 3312 | version "0.1.2" 3313 | resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa" 3314 | 3315 | unique-stream@^1.0.0: 3316 | version "1.0.0" 3317 | resolved "https://registry.yarnpkg.com/unique-stream/-/unique-stream-1.0.0.tgz#d59a4a75427447d9aa6c91e70263f8d26a4b104b" 3318 | 3319 | unique-string@^1.0.0: 3320 | version "1.0.0" 3321 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" 3322 | dependencies: 3323 | crypto-random-string "^1.0.0" 3324 | 3325 | unpipe@1.0.0: 3326 | version "1.0.0" 3327 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 3328 | 3329 | unzip-response@^2.0.1: 3330 | version "2.0.1" 3331 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" 3332 | 3333 | update-notifier@^2.5.0: 3334 | version "2.5.0" 3335 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.5.0.tgz#d0744593e13f161e406acb1d9408b72cad08aff6" 3336 | dependencies: 3337 | boxen "^1.2.1" 3338 | chalk "^2.0.1" 3339 | configstore "^3.0.0" 3340 | import-lazy "^2.1.0" 3341 | is-ci "^1.0.10" 3342 | is-installed-globally "^0.1.0" 3343 | is-npm "^1.0.0" 3344 | latest-version "^3.0.0" 3345 | semver-diff "^2.0.0" 3346 | xdg-basedir "^3.0.0" 3347 | 3348 | url-parse-lax@^1.0.0: 3349 | version "1.0.0" 3350 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 3351 | dependencies: 3352 | prepend-http "^1.0.1" 3353 | 3354 | user-home@^1.1.1: 3355 | version "1.1.1" 3356 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3357 | 3358 | util-deprecate@^1.0.1, util-deprecate@~1.0.1: 3359 | version "1.0.2" 3360 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3361 | 3362 | util.promisify@~1.0.0: 3363 | version "1.0.0" 3364 | resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" 3365 | dependencies: 3366 | define-properties "^1.1.2" 3367 | object.getownpropertydescriptors "^2.0.3" 3368 | 3369 | uuid@^3.0.1, uuid@^3.3.2: 3370 | version "3.3.3" 3371 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.3.tgz#4568f0216e78760ee1dbf3a4d2cf53e224112866" 3372 | 3373 | v8flags@^2.0.2: 3374 | version "2.0.11" 3375 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.0.11.tgz#bca8f30f0d6d60612cc2c00641e6962d42ae6881" 3376 | dependencies: 3377 | user-home "^1.1.1" 3378 | 3379 | vinyl-fs@^0.3.0: 3380 | version "0.3.14" 3381 | resolved "https://registry.yarnpkg.com/vinyl-fs/-/vinyl-fs-0.3.14.tgz#9a6851ce1cac1c1cea5fe86c0931d620c2cfa9e6" 3382 | dependencies: 3383 | defaults "^1.0.0" 3384 | glob-stream "^3.1.5" 3385 | glob-watcher "^0.0.6" 3386 | graceful-fs "^3.0.0" 3387 | mkdirp "^0.5.0" 3388 | strip-bom "^1.0.0" 3389 | through2 "^0.6.1" 3390 | vinyl "^0.4.0" 3391 | 3392 | vinyl-sourcemaps-apply@^0.2.0: 3393 | version "0.2.1" 3394 | resolved "https://registry.yarnpkg.com/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz#ab6549d61d172c2b1b87be5c508d239c8ef87705" 3395 | dependencies: 3396 | source-map "^0.5.1" 3397 | 3398 | vinyl@^0.4.0: 3399 | version "0.4.6" 3400 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.4.6.tgz#2f356c87a550a255461f36bbeb2a5ba8bf784847" 3401 | dependencies: 3402 | clone "^0.2.0" 3403 | clone-stats "^0.0.1" 3404 | 3405 | vinyl@^0.5.0: 3406 | version "0.5.3" 3407 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.5.3.tgz#b0455b38fc5e0cf30d4325132e461970c2091cde" 3408 | dependencies: 3409 | clone "^1.0.0" 3410 | clone-stats "^0.0.1" 3411 | replace-ext "0.0.1" 3412 | 3413 | vscode-languageserver-types@^3.5.0: 3414 | version "3.14.0" 3415 | resolved "https://registry.yarnpkg.com/vscode-languageserver-types/-/vscode-languageserver-types-3.14.0.tgz#d3b5952246d30e5241592b6dde8280e03942e743" 3416 | 3417 | which@^1.2.12: 3418 | version "1.2.12" 3419 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.12.tgz#de67b5e450269f194909ef23ece4ebe416fa1192" 3420 | dependencies: 3421 | isexe "^1.1.1" 3422 | 3423 | which@^1.2.9: 3424 | version "1.3.1" 3425 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 3426 | dependencies: 3427 | isexe "^2.0.0" 3428 | 3429 | widest-line@^2.0.0: 3430 | version "2.0.1" 3431 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.1.tgz#7438764730ec7ef4381ce4df82fb98a53142a3fc" 3432 | dependencies: 3433 | string-width "^2.1.1" 3434 | 3435 | window-size@^0.1.4: 3436 | version "0.1.4" 3437 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.4.tgz#f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876" 3438 | 3439 | windows-release@^3.1.0: 3440 | version "3.2.0" 3441 | resolved "https://registry.yarnpkg.com/windows-release/-/windows-release-3.2.0.tgz#8122dad5afc303d833422380680a79cdfa91785f" 3442 | dependencies: 3443 | execa "^1.0.0" 3444 | 3445 | wordwrap@~1.0.0: 3446 | version "1.0.0" 3447 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3448 | 3449 | wrap-ansi@^2.0.0: 3450 | version "2.1.0" 3451 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3452 | dependencies: 3453 | string-width "^1.0.1" 3454 | strip-ansi "^3.0.1" 3455 | 3456 | wrap-ansi@^5.1.0: 3457 | version "5.1.0" 3458 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09" 3459 | dependencies: 3460 | ansi-styles "^3.2.0" 3461 | string-width "^3.0.0" 3462 | strip-ansi "^5.0.0" 3463 | 3464 | wrappy@1: 3465 | version "1.0.2" 3466 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3467 | 3468 | write-file-atomic@^2.0.0: 3469 | version "2.4.3" 3470 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481" 3471 | dependencies: 3472 | graceful-fs "^4.1.11" 3473 | imurmurhash "^0.1.4" 3474 | signal-exit "^3.0.2" 3475 | 3476 | xdg-basedir@^3.0.0: 3477 | version "3.0.0" 3478 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" 3479 | 3480 | xml2js@0.4.19: 3481 | version "0.4.19" 3482 | resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.19.tgz#686c20f213209e94abf0d1bcf1efaa291c7827a7" 3483 | dependencies: 3484 | sax ">=0.6.0" 3485 | xmlbuilder "~9.0.1" 3486 | 3487 | xml2js@>=0.2.4: 3488 | version "0.4.17" 3489 | resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.17.tgz#17be93eaae3f3b779359c795b419705a8817e868" 3490 | dependencies: 3491 | sax ">=0.6.0" 3492 | xmlbuilder "^4.1.0" 3493 | 3494 | xml2js@^0.4.17: 3495 | version "0.4.22" 3496 | resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.22.tgz#4fa2d846ec803237de86f30aa9b5f70b6600de02" 3497 | dependencies: 3498 | sax ">=0.6.0" 3499 | util.promisify "~1.0.0" 3500 | xmlbuilder "~11.0.0" 3501 | 3502 | xmlbuilder@^4.1.0: 3503 | version "4.2.1" 3504 | resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-4.2.1.tgz#aa58a3041a066f90eaa16c2f5389ff19f3f461a5" 3505 | dependencies: 3506 | lodash "^4.0.0" 3507 | 3508 | xmlbuilder@~11.0.0: 3509 | version "11.0.1" 3510 | resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-11.0.1.tgz#be9bae1c8a046e76b31127726347d0ad7002beb3" 3511 | 3512 | xmlbuilder@~9.0.1: 3513 | version "9.0.7" 3514 | resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-9.0.7.tgz#132ee63d2ec5565c557e20f4c22df9aca686b10d" 3515 | 3516 | xregexp@2.0.0: 3517 | version "2.0.0" 3518 | resolved "https://registry.yarnpkg.com/xregexp/-/xregexp-2.0.0.tgz#52a63e56ca0b84a7f3a5f3d61872f126ad7a5943" 3519 | 3520 | "xtend@>=4.0.0 <4.1.0-0", xtend@~4.0.1: 3521 | version "4.0.1" 3522 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3523 | 3524 | y18n@^3.2.0: 3525 | version "3.2.1" 3526 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3527 | 3528 | yallist@^2.1.2: 3529 | version "2.1.2" 3530 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3531 | 3532 | yallist@^3.0.2: 3533 | version "3.1.1" 3534 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" 3535 | 3536 | yargs@^3.19.0: 3537 | version "3.32.0" 3538 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.32.0.tgz#03088e9ebf9e756b69751611d2a5ef591482c995" 3539 | dependencies: 3540 | camelcase "^2.0.1" 3541 | cliui "^3.0.3" 3542 | decamelize "^1.1.1" 3543 | os-locale "^1.4.0" 3544 | string-width "^1.0.1" 3545 | window-size "^0.1.4" 3546 | y18n "^3.2.0" 3547 | --------------------------------------------------------------------------------