├── lib └── .gitkeep ├── .npmignore ├── .travis.yml ├── .codeclimate.yml ├── appveyor.yml ├── .gitignore ├── .jshintrc ├── LICENSE ├── tests ├── fixtures.js ├── functional-test.js └── options-test.js ├── ember-addon-main.js ├── package.json ├── .jscsrc ├── README.md ├── src └── index.js ├── CHANGELOG.md └── yarn.lock /lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | tests/ 3 | src/ 4 | .codeclimate.yml 5 | .jscsrc 6 | .jshintrc 7 | .travis.yml 8 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - '6' 4 | - '8' 5 | - '10' 6 | cache: yarn 7 | install: 8 | - yarn global add babel 9 | - yarn 10 | script: npm run-script cover 11 | after_script: 12 | - cat coverage/lcov.info | node_modules/.bin/codeclimate-test-reporter < coverage/lcov.info 13 | -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- 1 | engines: 2 | eslint: 3 | enabled: true 4 | 5 | # http://docs.codeclimate.com/article/289-configuring-your-repository-via-codeclimate-yml#platform 6 | 7 | ratings: 8 | paths: 9 | - "**/**.*" 10 | 11 | exclude_paths: 12 | - "LICENSE" 13 | - "README.md" 14 | - "package.json" 15 | - "ember-addon-main.js" 16 | -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- 1 | # appveyor file 2 | # http://www.appveyor.com/docs/appveyor-yml 3 | 4 | # branches to build 5 | branches: 6 | # whitelist 7 | only: 8 | - master 9 | 10 | # build version format 11 | version: "{build}" 12 | 13 | # what combinations to test 14 | environment: 15 | matrix: 16 | - nodejs_version: 0.10 17 | - nodejs_version: 0.12 18 | - nodejs_version: 4.2 19 | 20 | # Get the stable version of node 21 | install: 22 | - ps: Install-Product node $env:nodejs_version 23 | - npm install 24 | 25 | build: off 26 | 27 | test_script: 28 | - node --version 29 | - npm --version 30 | - cmd: npm test 31 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | 5 | # Runtime data 6 | pids 7 | *.pid 8 | *.seed 9 | 10 | # Directory for instrumented libs generated by jscoverage/JSCover 11 | lib-cov 12 | 13 | # Coverage directory used by tools like istanbul 14 | coverage 15 | 16 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 17 | .grunt 18 | 19 | # node-waf configuration 20 | .lock-wscript 21 | 22 | # Compiled binary addons (http://nodejs.org/api/addons.html) 23 | build/Release 24 | 25 | tmp/* 26 | 27 | # Dependency directory 28 | # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git 29 | node_modules 30 | 31 | #babel generated files 32 | lib/*.js 33 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "globals": { 3 | "it": false, 4 | "describe": false, 5 | "beforeEach": false, 6 | "afterEach": false 7 | }, 8 | "esnext": true, 9 | "node" : true, 10 | "browser" : true, 11 | "boss" : false, 12 | "curly": false, 13 | "debug": false, 14 | "devel": false, 15 | "eqeqeq": true, 16 | "evil": true, 17 | "forin": false, 18 | "immed": true, 19 | "laxbreak": false, 20 | "newcap": true, 21 | "noarg": true, 22 | "noempty": false, 23 | "nonew": false, 24 | "nomen": false, 25 | "onevar": true, 26 | "plusplus": false, 27 | "regexp": false, 28 | "undef": true, 29 | "sub": true, 30 | "strict": false, 31 | "white": true, 32 | "unused": true 33 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Sivakumar Kailasam 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /tests/fixtures.js: -------------------------------------------------------------------------------- 1 | const jsMarkers = [ 2 | 'FIXME isolate this fn', 3 | 'TODO move the string to a constant', 4 | `CUSTOM_TAG that's how we roll!` 5 | ]; 6 | 7 | const cssMarkers = [ 8 | 'FIXME body tag is too generic', 9 | ' TODO this color should be different ', 10 | 'CUSTOM_TAG this doesnt belong here ' 11 | 12 | ]; 13 | 14 | const hbsMarkers = [ 15 | 'FIXME surround with span tags ', 16 | 'TODO add fancy css classes', 17 | 'CUSTOM_TAG just checkin' 18 | ]; 19 | 20 | module.exports = { 21 | 22 | jsMarkers, 23 | cssMarkers, 24 | hbsMarkers, 25 | 26 | getJsContent() { 27 | return [ 28 | `//${jsMarkers[0]}`, 29 | ' function coolFn (name) {', 30 | `// ${jsMarkers[1]}`, 31 | ' return \'Hello\' name;', 32 | ' }', 33 | `// ${jsMarkers[2]}`, 34 | ' coolFn();' 35 | ].join('\n'); 36 | }, 37 | 38 | getCssContent() { 39 | return [ 40 | `/* ${cssMarkers[0]}*/`, 41 | ' body {', 42 | `/* ${cssMarkers[1]}*/`, 43 | ' color: #bada55;', 44 | ' }', 45 | ' html {', 46 | `/* ${cssMarkers[2]}*/`, 47 | ' font-size: 12px;', 48 | ' }' 49 | ].join('\n'); 50 | }, 51 | 52 | getHbsContent() { 53 | return [ 54 | `{{!-- ${hbsMarkers[0]} --}}`, 55 | 'hello {{name}}', 56 | `{{!-- ${hbsMarkers[1]} --}}`, 57 | `{{!-- ${hbsMarkers[2]} --}}` 58 | ].join('\n'); 59 | } 60 | 61 | }; -------------------------------------------------------------------------------- /ember-addon-main.js: -------------------------------------------------------------------------------- 1 | var path = require('path'); 2 | var BroccoliBuilder = require('broccoli').Builder; 3 | var BroccoliLeasotFilter = require('./lib/index'); 4 | var chalk = require('chalk'); 5 | var forOwnFn = require('lodash/object').forOwn; 6 | 7 | module.exports = { 8 | 9 | name: 'broccoli-leasot', 10 | 11 | included: function(app) { 12 | 13 | this._super.included.apply(this, arguments); 14 | 15 | var appFolder, testsFolder; 16 | 17 | appFolder = path.resolve(app.project.root, app.trees.app._directoryPath); 18 | testsFolder = path.resolve(app.project.root, app.trees.tests._directoryPath); 19 | 20 | var optionsForLeasot = { 21 | enabled: true 22 | }; 23 | 24 | var optionsThatCanBeOverridden = ['enabled', 'kinds', 'extensions', 'groupBy', 'console']; 25 | 26 | if (typeof(app.options.markers) !== 'undefined') { 27 | forOwnFn(app.options.markers, function(value, key) { 28 | if (optionsThatCanBeOverridden.indexOf(key) !== -1) { 29 | optionsForLeasot[key] = value; 30 | } else { 31 | console.log('\n' + chalk.bgRed(key + ' is an unknown option for broccoli-leasot')); 32 | } 33 | }); 34 | } 35 | 36 | console.log('\n'); 37 | 38 | new BroccoliBuilder( 39 | new BroccoliLeasotFilter( 40 | appFolder, 41 | optionsForLeasot, 42 | 'app' 43 | ) 44 | ).build(); 45 | new BroccoliBuilder( 46 | new BroccoliLeasotFilter( 47 | testsFolder, 48 | optionsForLeasot, 49 | 'tests' 50 | ) 51 | ).build() 52 | 53 | } 54 | 55 | }; 56 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "broccoli-leasot", 3 | "version": "1.6.1", 4 | "author": "Sivakumar Kailasam (http://github.com/sivakumar-kailasam)", 5 | "description": "A broccoli plugin which wraps around the leasot module to parse and output TODOs and FIXMEs from comments in your files", 6 | "license": "MIT", 7 | "bugs": { 8 | "url": "https://github.com/sivakumar-kailasam/broccoli-leasot/issues" 9 | }, 10 | "homepage": "https://github.com/sivakumar-kailasam/broccoli-leasot#readme", 11 | "main": "lib/index.js", 12 | "ember-addon": { 13 | "main": "ember-addon-main.js", 14 | "before": [ 15 | "ember-cli-uglify" 16 | ] 17 | }, 18 | "scripts": { 19 | "compile": "babel src/index.js -o lib/index.js", 20 | "test": "mocha --compilers js:babel/register tests/*-test.js", 21 | "cover": "babel-node -r ./node_modules/.bin/isparta cover --report html --report text --report lcov _mocha -- tests/*-test.js", 22 | "test:watch": "wr 'clear && mocha --compilers js:babel/register tests/*-test.js' src/index.js tests --exec", 23 | "prepublish": "npm run compile" 24 | }, 25 | "repository": { 26 | "type": "git", 27 | "url": "git+https://github.com/sivakumar-kailasam/broccoli-leasot.git" 28 | }, 29 | "keywords": [ 30 | "broccoli-plugin", 31 | "ember-addon", 32 | "todo", 33 | "fixme", 34 | "comments", 35 | "productivity", 36 | "leasot" 37 | ], 38 | "dependencies": { 39 | "broccoli": "0.16.9", 40 | "broccoli-filter": "1.2.3", 41 | "chalk": "^2.0.1", 42 | "leasot": "^4.8.0", 43 | "lodash": "^4.17.4" 44 | }, 45 | "devDependencies": { 46 | "babel": "5.8.34", 47 | "broccoli-fixturify": "0.3.0", 48 | "chai": "3.5.0", 49 | "codeclimate-test-reporter": "^0.5.0", 50 | "isparta": "4.0.0", 51 | "istanbul": "0.4.3", 52 | "mocha": "2.4.5", 53 | "sinon": "1.17.4", 54 | "sinon-chai": "2.8.0", 55 | "strip-ansi": "^4.0.0", 56 | "wr": "1.3.1" 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- 1 | { 2 | "disallowEmptyBlocks": true, 3 | "disallowKeywordsOnNewLine": [ 4 | "else" 5 | ], 6 | "disallowNewlineBeforeBlockStatements": true, 7 | "disallowParenthesesAroundArrowParam": true, 8 | "disallowSpacesInCallExpression": true, 9 | "disallowSpacesInsideArrayBrackets": "all", 10 | "disallowTrailingComma": true, 11 | "disallowTrailingWhitespace": true, 12 | "disallowYodaConditions": [ 13 | "==", 14 | "===", 15 | "!=", 16 | "!==" 17 | ], 18 | "excludeFiles": ["app/locales/"], 19 | "esnext": true, 20 | "maximumNumberOfLines": 700, 21 | "requireBlocksOnNewline": 1, 22 | "requireCommaBeforeLineBreak": true, 23 | "requireCurlyBraces": [ 24 | "if", 25 | "else", 26 | "for", 27 | "while", 28 | "do", 29 | "try", 30 | "catch" 31 | ], 32 | "requireLineFeedAtFileEnd": true, 33 | "requireSpaceAfterBinaryOperators": [ 34 | "<", 35 | ">", 36 | "=", 37 | ",", 38 | "+", 39 | "-", 40 | "/", 41 | "*", 42 | "==", 43 | "===", 44 | "!=", 45 | "!==" 46 | ], 47 | "requireSpaceAfterKeywords": [ 48 | "do", 49 | "for", 50 | "if", 51 | "else", 52 | "switch", 53 | "case", 54 | "try", 55 | "while", 56 | "with", 57 | "return" 58 | ], 59 | "requireSpaceBetweenArguments": true, 60 | "requireSpaceBeforeBinaryOperators": [ 61 | "<", 62 | ">", 63 | "=", 64 | "+", 65 | "-", 66 | "/", 67 | "*", 68 | "==", 69 | "===", 70 | "!=", 71 | "!==" 72 | ], 73 | "requireSpaceBeforeBlockStatements": true, 74 | "requireSpaceBeforeKeywords": [ 75 | "else", 76 | "while", 77 | "catch" 78 | ], 79 | "requireSpaceBeforeObjectValues": true, 80 | "requireSpacesInsideObjectBrackets": "all", 81 | "requireSpacesInConditionalExpression": { 82 | "afterTest": true, 83 | "beforeConsequent": true, 84 | "afterConsequent": true, 85 | "beforeAlternate": true 86 | }, 87 | "validateIndentation": "\t", 88 | "validateParameterSeparator": ", ", 89 | "validateQuoteMarks": "'" 90 | } 91 | -------------------------------------------------------------------------------- /tests/functional-test.js: -------------------------------------------------------------------------------- 1 | /* jshint expr: true */ 2 | /* Included above statement for chai*/ 3 | 4 | import chai from 'chai'; 5 | import sinonChai from 'sinon-chai'; 6 | import { 7 | Builder as BroccoliBuilder 8 | } 9 | from 'broccoli'; 10 | import fixtureTree from 'broccoli-fixturify'; 11 | import stripAnsi from 'strip-ansi'; 12 | import fixtures from './fixtures'; 13 | import BroccoliLeasotFilter from '../src/index'; 14 | 15 | let expect = chai.expect; 16 | chai.use(sinonChai); 17 | 18 | 19 | describe('Functional test suite for Broccoli Leasot', () => { 20 | let broccoliLeasot; 21 | let fileTree; 22 | let message = ''; 23 | let konsole = { 24 | log: function(msg) { 25 | message += stripAnsi(msg); 26 | } 27 | }; 28 | 29 | let checkWithMarkerForGroupByFile = (marker) => { 30 | expect(message).to.include(marker.trim()); 31 | }; 32 | 33 | let checkWithMarkerForGroupByKind = (marker) => { 34 | expect(message).to.include(marker.trim().replace('FIXME','').replace('TODO','').replace('CUSTOM_TAG','')); 35 | }; 36 | 37 | let setupFixtureTree = function(includeImaginaryExtension = false) { 38 | let tree = { 39 | app: { 40 | css: { 41 | 'application.css': fixtures.getCssContent() 42 | }, 43 | js: { 44 | 'app.js': fixtures.getJsContent() 45 | }, 46 | templates: { 47 | 'index.handlebars': fixtures.getHbsContent() 48 | } 49 | } 50 | }; 51 | if (includeImaginaryExtension) { 52 | tree.app['warriors'] = { 53 | 'rocky.balboa': '' 54 | }; 55 | } 56 | fileTree = fixtureTree(tree); 57 | }; 58 | 59 | 60 | afterEach(() => { 61 | message = ''; 62 | fileTree = null; 63 | }); 64 | 65 | it('Basic setup', (done) => { 66 | setupFixtureTree(); 67 | broccoliLeasot = new BroccoliLeasotFilter(fileTree, { 68 | enabled: true, 69 | kinds: ['TODO', 'FIXME', 'CUSTOM_TAG'], 70 | console: konsole 71 | }); 72 | let outputTree = new BroccoliBuilder(broccoliLeasot); 73 | return outputTree.build().then(function() { 74 | fixtures.jsMarkers.forEach(checkWithMarkerForGroupByFile); 75 | fixtures.cssMarkers.forEach(checkWithMarkerForGroupByFile); 76 | fixtures.hbsMarkers.forEach(checkWithMarkerForGroupByFile); 77 | expect(message).to.include('9 markers found'); 78 | done(); 79 | }); 80 | 81 | }); 82 | 83 | 84 | it('Group by type', (done) => { 85 | setupFixtureTree(); 86 | broccoliLeasot = new BroccoliLeasotFilter(fileTree, { 87 | enabled: true, 88 | kinds: ['TODO', 'FIXME', 'CUSTOM_TAG'], 89 | groupBy: 'kind', 90 | console: konsole 91 | }); 92 | let outputTree = new BroccoliBuilder(broccoliLeasot); 93 | return outputTree.build().then(function() { 94 | fixtures.jsMarkers.forEach(checkWithMarkerForGroupByKind); 95 | fixtures.cssMarkers.forEach(checkWithMarkerForGroupByKind); 96 | fixtures.hbsMarkers.forEach(checkWithMarkerForGroupByKind); 97 | done(); 98 | }); 99 | 100 | }); 101 | 102 | it('Imaginary extension lookup', (done) => { 103 | setupFixtureTree(true); 104 | broccoliLeasot = new BroccoliLeasotFilter(fileTree, { 105 | enabled: true, 106 | extensions: ['balboa'], 107 | console: konsole 108 | }); 109 | let outputTree = new BroccoliBuilder(broccoliLeasot); 110 | return outputTree.build().then(function() { 111 | let linkToLeasotDocs = 'https://github.com/pgilad/leasot#supported-languages'; 112 | expect(message).to.include(linkToLeasotDocs); 113 | done(); 114 | }); 115 | 116 | }); 117 | }); 118 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | broccoli-leasot 2 | ============= 3 | 4 | A broccoli plugin and an ember addon for the [leasot](https://github.com/pgilad/leasot) module to parse and output markers like TODOs and FIXMEs from comments 5 | 6 | ## Repo health & stats 7 | [![Build Status](https://travis-ci.org/sivakumar-kailasam/broccoli-leasot.svg?branch=master)](https://travis-ci.org/sivakumar-kailasam/broccoli-leasot) [![Build status](https://ci.appveyor.com/api/projects/status/a1bfeg0f9sx368yl/branch/master?svg=true)](https://ci.appveyor.com/project/sivakumar-kailasam/broccoli-leasot/branch/master) 8 | [![Code Climate](https://codeclimate.com/github/sivakumar-kailasam/broccoli-leasot/badges/gpa.svg)](https://codeclimate.com/github/sivakumar-kailasam/broccoli-leasot) [![Test Coverage](https://codeclimate.com/github/sivakumar-kailasam/broccoli-leasot/badges/coverage.svg)](https://codeclimate.com/github/sivakumar-kailasam/broccoli-leasot/coverage) [![Ember Observer Score](http://emberobserver.com/badges/broccoli-leasot.svg)](http://emberobserver.com/addons/broccoli-leasot) 9 | 10 | [![Dependency Status](https://david-dm.org/sivakumar-kailasam/broccoli-leasot.svg)](https://david-dm.org/sivakumar-kailasam/broccoli-leasot) [![devDependency Status](https://david-dm.org/sivakumar-kailasam/broccoli-leasot/dev-status.svg)](https://david-dm.org/sivakumar-kailasam/broccoli-leasot#info=devDependencies) 11 | 12 | ## Installation 13 | `npm install --save-dev broccoli-leasot` 14 | 15 | ## Screenshot 16 | ![Ember inspector's markers](https://cloud.githubusercontent.com/assets/604117/9023570/7233674c-38be-11e5-9a71-36158e067be2.png) 17 | 18 | ## Usage 19 | 20 | ```js 21 | var broccoliLeasot = require('broccoli-leasot'); 22 | var tree = broccoliLeasot(someTree, options); 23 | ``` 24 | 25 | As a Ember CLI Addon, simply `npm install --save-dev broccoli-leasot` and supply the options you would like: 26 | 27 | ```js 28 | var app = new EmberApp({ 29 | markers: { 30 | enabled: true, 31 | kinds: [ 'TODO', 'FIXME', 'CUSTOM'] 32 | } 33 | }); 34 | ``` 35 | 36 | ## Documentation 37 | 38 | ### `broccoliLeasot(inputTree, options)` 39 | 40 | --- 41 | 42 | `options.enabled` *{true|false}* 43 | 44 | This will eliminate processing altogether. 45 | 46 | Default: **false** 47 | 48 | --- 49 | 50 | `options.extensions` *Array of file types to scan* 51 | 52 | This indicates the files with specific extensions to be scanned. The complete list can be seen at the [leasot repo](https://github.com/pgilad/leasot#supported-languages) 53 | 54 | Default: **['js', 'css', 'less', 'scss', 'hbs', 'handlebars']** 55 | 56 | --- 57 | 58 | `options.kinds` *Array of markers* 59 | 60 | These are the markers looked up in the comments of the files which are scanned. 61 | 62 | Default: **['TODO', 'FIXME']** 63 | 64 | --- 65 | 66 | `options.groupBy` *file|kind* 67 | 68 | The broccoli plugin prints the analysis of leasot on the console. Users can choose between grouping markers by file name or kind of marker. 69 | 70 | Default: **file** 71 | 72 | --- 73 | 74 | 75 | ## Development 76 | This plugin is all about productivity so its written in es6/2015 with the help of [babel.js](https://babeljs.io/). The plugin code is at [src/index.js](https://github.com/sivakumar-kailasam/broccoli-leasot/blob/master/src/index.js). To see the compiled code run `npm run compile` and look at the content of *lib\index.js* 77 | 78 | Interested in using babel for your next npm module, read this [excellent article](http://mammal.io/articles/using-es6-today/) on this. 79 | 80 | 81 | ## Tests 82 | 83 | Running the tests: 84 | 85 | ``` 86 | npm install 87 | npm test 88 | ``` 89 | -------------------------------------------------------------------------------- /tests/options-test.js: -------------------------------------------------------------------------------- 1 | /* jshint expr: true */ 2 | /* Included above statement for chai*/ 3 | 4 | import chai from 'chai'; 5 | import sinonChai from 'sinon-chai'; 6 | import { 7 | Builder as BroccoliBuilder 8 | } 9 | from 'broccoli'; 10 | import fixtureTree from 'broccoli-fixturify'; 11 | import fixtures from './fixtures'; 12 | import BroccoliLeasotFilter from '../src/index'; 13 | 14 | let expect = chai.expect; 15 | chai.use(sinonChai); 16 | 17 | describe('Test defaults & custom values for options passed to Broccoli Leasot', () => { 18 | let broccoliLeasot; 19 | let fileTree; 20 | 21 | beforeEach(() => { 22 | fileTree = fixtureTree({ 23 | app: { 24 | css: { 25 | 'application.css': fixtures.getCssContent() 26 | }, 27 | js: { 28 | 'app.js': fixtures.getJsContent() 29 | }, 30 | templates: { 31 | 'application.hbs': fixtures.getHbsContent(), 32 | 'index.handlebars': fixtures.getHbsContent() 33 | } 34 | } 35 | }); 36 | }); 37 | 38 | describe('Enabled option', () => { 39 | 40 | it('Should be disabled by default', () => { 41 | broccoliLeasot = new BroccoliLeasotFilter(fileTree); 42 | let outputTree = new BroccoliBuilder(broccoliLeasot); 43 | expect(outputTree.tree.enabled).to.be.false; 44 | }); 45 | 46 | 47 | it('Can be enabled by passing an option', () => { 48 | broccoliLeasot = new BroccoliLeasotFilter(fileTree, { 49 | enabled: true 50 | }); 51 | let outputTree = new BroccoliBuilder(broccoliLeasot); 52 | expect(outputTree.tree.enabled).to.be.true; 53 | }); 54 | }); 55 | 56 | describe('Kinds option', () => { 57 | 58 | it('Should have defaults', () => { 59 | broccoliLeasot = new BroccoliLeasotFilter(fileTree); 60 | let outputTree = new BroccoliBuilder(broccoliLeasot); 61 | expect(outputTree.tree.kinds).to.eql(['TODO', 'FIXME']); 62 | }); 63 | 64 | it('Can be overriden', () => { 65 | let customKinds = ['SIVAKUMAR', 'KAILASAM']; 66 | broccoliLeasot = new BroccoliLeasotFilter(fileTree, { 67 | kinds: customKinds 68 | }); 69 | let outputTree = new BroccoliBuilder(broccoliLeasot); 70 | expect(outputTree.tree.kinds).to.eql(customKinds); 71 | }); 72 | 73 | }); 74 | 75 | describe('Extensions option', () => { 76 | 77 | it('Should have defaults', () => { 78 | broccoliLeasot = new BroccoliLeasotFilter(fileTree); 79 | let outputTree = new BroccoliBuilder(broccoliLeasot); 80 | expect(outputTree.tree.extensions).to.exist; 81 | expect(outputTree.tree.extensions).to.include('js', 'css', 'hbs', 'handlebars'); 82 | }); 83 | 84 | it('Can be overriden', () => { 85 | let customExtensions = ['dat', 'sak']; 86 | broccoliLeasot = new BroccoliLeasotFilter(fileTree, { 87 | extensions: customExtensions 88 | }); 89 | let outputTree = new BroccoliBuilder(broccoliLeasot); 90 | expect(outputTree.tree.extensions).to.eql(customExtensions); 91 | }); 92 | 93 | }); 94 | 95 | describe('Group by option', () => { 96 | 97 | it('Should have defaults', () => { 98 | broccoliLeasot = new BroccoliLeasotFilter(fileTree); 99 | let outputTree = new BroccoliBuilder(broccoliLeasot); 100 | expect(outputTree.tree.groupBy).to.exist; 101 | expect(outputTree.tree.groupBy).to.be.equal('file'); 102 | }); 103 | 104 | let testGroupByOption = (criteria, valueToCheckAgainst) => { 105 | broccoliLeasot = new BroccoliLeasotFilter(fileTree, { 106 | groupBy: criteria 107 | }); 108 | let outputTree = new BroccoliBuilder(broccoliLeasot); 109 | expect(outputTree.tree.groupBy).to.eql(valueToCheckAgainst); 110 | }; 111 | 112 | it('Can be overriden', () => { 113 | testGroupByOption('kind', 'kind'); 114 | }); 115 | 116 | it('Defaults to file when unknown value is passed', () => { 117 | testGroupByOption('siva', 'file'); 118 | }); 119 | 120 | }); 121 | 122 | }); -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import Filter from 'broccoli-filter'; 2 | import path from 'path'; 3 | import leasot from 'leasot'; 4 | import chalk from 'chalk'; 5 | import { 6 | groupBy as groupByFn, 7 | forEach as forEachFn 8 | } from 'lodash/collection'; 9 | import { 10 | forOwn as forOwnFn 11 | } from 'lodash/object'; 12 | 13 | 14 | const DEFAULT_SUPPORTED_FILE_EXTENSIONS = ['js', 'css', 'less', 'scss', 'hbs', 'handlebars']; 15 | const DEFAULT_MARKERS = ['TODO', 'FIXME']; 16 | 17 | 18 | const printExceptions = (stdout, exceptions) => { 19 | let _exceptions = exceptions; 20 | if (_exceptions.length > 0) { 21 | _exceptions = _exceptions.filter((exception, i) => { 22 | return _exceptions.indexOf(exception) === i; 23 | }); 24 | const header = chalk.red(`Leasot module doesn't support ${_exceptions.join(', ')}`); 25 | const linkToSupportedExtensions = chalk.blue.underline('https://github.com/pgilad/leasot#supported-languages'); 26 | stdout.log(`\n${header} \n${linkToSupportedExtensions}`); 27 | } 28 | }; 29 | 30 | 31 | const getMessageToPrint = (marker, groupByEntity, groupByCriteria) => { 32 | let inlineGroup = 'kind'; 33 | if (groupByCriteria === 'kind') { 34 | inlineGroup = 'file'; 35 | } 36 | let textToAdd = ''; 37 | marker.forEach((m) => { 38 | textToAdd += `${chalk.gray('line ' + m.line)} ${chalk.green(m[inlineGroup])} ${chalk.cyan(m.text)}\n`; 39 | }); 40 | return `${chalk.underline(groupByEntity)}\n${textToAdd}`; 41 | }; 42 | 43 | 44 | const printMarkers = (stdout, markers, groupBy, treeInternalName) => { 45 | let _markers = [].concat.apply([], markers); 46 | let noOfMarkers = _markers.length; 47 | _markers = groupByFn(_markers, groupBy); 48 | 49 | forEachFn(_markers, (marker, groupByEntity) => { 50 | stdout.log(getMessageToPrint(marker, groupByEntity, groupBy)); 51 | }); 52 | 53 | let messageToShow = chalk.red.bold('✘') + ` ${noOfMarkers} markers found in ${treeInternalName}`; 54 | if (noOfMarkers === 0) { 55 | messageToShow = chalk.green.bold('✔') + ' No markers found in ${treeInternalName}'; 56 | } 57 | 58 | stdout.log(`\n ${messageToShow} \n`); 59 | }; 60 | 61 | 62 | class BroccoliLeasotFilter extends Filter { 63 | 64 | constructor(inputTree, options, treeInternalName) { 65 | super(inputTree, options); 66 | 67 | /* defaults */ 68 | this.enabled = false; 69 | this.kinds = DEFAULT_MARKERS; 70 | this.extensions = DEFAULT_SUPPORTED_FILE_EXTENSIONS; 71 | this.groupBy = ''; 72 | 73 | /* internals */ 74 | this.inputTree = inputTree; 75 | this._markers = []; 76 | this._exceptions = []; 77 | this.treeInternalName = treeInternalName; 78 | this.console = (options && options['console']) || console; 79 | 80 | const context = this; 81 | 82 | forOwnFn(options, (value, key) => { 83 | context[key] = value; 84 | }); 85 | 86 | if (['file', 'kind'].indexOf(this.groupBy.toLowerCase()) === -1) { 87 | this.groupBy = 'file'; 88 | } 89 | 90 | } 91 | 92 | build(readTree, destDir) { 93 | const self = this; 94 | return super.build(readTree, destDir).then(() => { 95 | if(self.enabled) { 96 | printMarkers(self.console, self._markers, self.groupBy, self.treeInternalName); 97 | printExceptions(self.console, self._exceptions); 98 | } 99 | }); 100 | } 101 | 102 | processString(content, relativePath) { 103 | if (this.enabled) { 104 | const fileExtension = path.extname(relativePath); 105 | if (leasot.isExtSupported(fileExtension)) { 106 | this._markers.push(leasot.parse({ 107 | ext: fileExtension, 108 | content: content, 109 | fileName: relativePath, 110 | customTags: this.kinds 111 | })); 112 | } else { 113 | this._exceptions.push(fileExtension); 114 | } 115 | } 116 | return content; 117 | } 118 | 119 | } 120 | 121 | 122 | export default (inputTree, options, treeInternalName) => { 123 | return new BroccoliLeasotFilter(inputTree, options, treeInternalName); 124 | }; 125 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | ## [v1.6.1](https://github.com/sivakumar-kailasam/broccoli-leasot/tree/v1.6.1) 4 | 5 | [Full Changelog](https://github.com/sivakumar-kailasam/broccoli-leasot/compare/v1.6.0...v1.6.1) 6 | 7 | **Implemented enhancements:** 8 | 9 | - \[Enhancement\] Parse tests directory [\#57](https://github.com/sivakumar-kailasam/broccoli-leasot/issues/57) 10 | 11 | **Merged pull requests:** 12 | 13 | - Update lodash to version 4.9.0 🚀 [\#80](https://github.com/sivakumar-kailasam/broccoli-leasot/pull/80) ([greenkeeperio-bot](https://github.com/greenkeeperio-bot)) 14 | - Update istanbul to version 0.4.3 🚀 [\#79](https://github.com/sivakumar-kailasam/broccoli-leasot/pull/79) ([greenkeeperio-bot](https://github.com/greenkeeperio-bot)) 15 | - Update chalk to version 1.1.3 🚀 [\#74](https://github.com/sivakumar-kailasam/broccoli-leasot/pull/74) ([greenkeeperio-bot](https://github.com/greenkeeperio-bot)) 16 | - Update strip-ansi to version 3.0.1 🚀 [\#69](https://github.com/sivakumar-kailasam/broccoli-leasot/pull/69) ([greenkeeperio-bot](https://github.com/greenkeeperio-bot)) 17 | - Update codeclimate-test-reporter to version 0.3.1 🚀 [\#58](https://github.com/sivakumar-kailasam/broccoli-leasot/pull/58) ([greenkeeperio-bot](https://github.com/greenkeeperio-bot)) 18 | 19 | ## [v1.6.0](https://github.com/sivakumar-kailasam/broccoli-leasot/tree/v1.6.0) (2016-02-02) 20 | [Full Changelog](https://github.com/sivakumar-kailasam/broccoli-leasot/compare/v1.5.1...v1.6.0) 21 | 22 | **Merged pull requests:** 23 | 24 | - Update lodash to version 4.2.0 🚀 [\#56](https://github.com/sivakumar-kailasam/broccoli-leasot/pull/56) ([greenkeeperio-bot](https://github.com/greenkeeperio-bot)) 25 | 26 | ## [v1.5.1](https://github.com/sivakumar-kailasam/broccoli-leasot/tree/v1.5.1) (2016-02-02) 27 | [Full Changelog](https://github.com/sivakumar-kailasam/broccoli-leasot/compare/v1.5.0...v1.5.1) 28 | 29 | **Fixed bugs:** 30 | 31 | - crashing because `app.trees.app` is not a string in ember-cli 1.13.13 [\#55](https://github.com/sivakumar-kailasam/broccoli-leasot/issues/55) 32 | 33 | **Closed issues:** 34 | 35 | - Improve ember addon [\#3](https://github.com/sivakumar-kailasam/broccoli-leasot/issues/3) 36 | 37 | **Merged pull requests:** 38 | 39 | - Update lodash to version 4.1.0 🚀 [\#54](https://github.com/sivakumar-kailasam/broccoli-leasot/pull/54) ([greenkeeperio-bot](https://github.com/greenkeeperio-bot)) 40 | - Update mocha to version 2.4.5 🚀 [\#53](https://github.com/sivakumar-kailasam/broccoli-leasot/pull/53) ([greenkeeperio-bot](https://github.com/greenkeeperio-bot)) 41 | - Update chai to version 3.5.0 🚀 [\#52](https://github.com/sivakumar-kailasam/broccoli-leasot/pull/52) ([greenkeeperio-bot](https://github.com/greenkeeperio-bot)) 42 | - Update sinon to version 1.17.3 🚀 [\#50](https://github.com/sivakumar-kailasam/broccoli-leasot/pull/50) ([greenkeeperio-bot](https://github.com/greenkeeperio-bot)) 43 | - Update codeclimate-test-reporter to version 0.2.0 🚀 [\#44](https://github.com/sivakumar-kailasam/broccoli-leasot/pull/44) ([greenkeeperio-bot](https://github.com/greenkeeperio-bot)) 44 | - Update istanbul to version 0.4.2 🚀 [\#42](https://github.com/sivakumar-kailasam/broccoli-leasot/pull/42) ([greenkeeperio-bot](https://github.com/greenkeeperio-bot)) 45 | - Update leasot to version 3.1.2 🚀 [\#41](https://github.com/sivakumar-kailasam/broccoli-leasot/pull/41) ([greenkeeperio-bot](https://github.com/greenkeeperio-bot)) 46 | - Update broccoli-filter to version 1.2.3 🚀 [\#38](https://github.com/sivakumar-kailasam/broccoli-leasot/pull/38) ([greenkeeperio-bot](https://github.com/greenkeeperio-bot)) 47 | - Update broccoli to version 0.16.9 🚀 [\#34](https://github.com/sivakumar-kailasam/broccoli-leasot/pull/34) ([greenkeeperio-bot](https://github.com/greenkeeperio-bot)) 48 | - Update isparta to version 4.0.0 🚀 [\#32](https://github.com/sivakumar-kailasam/broccoli-leasot/pull/32) ([greenkeeperio-bot](https://github.com/greenkeeperio-bot)) 49 | - Update babel to version 5.8.34 🚀 [\#28](https://github.com/sivakumar-kailasam/broccoli-leasot/pull/28) ([greenkeeperio-bot](https://github.com/greenkeeperio-bot)) 50 | 51 | ## [v1.5.0](https://github.com/sivakumar-kailasam/broccoli-leasot/tree/v1.5.0) (2015-10-21) 52 | [Full Changelog](https://github.com/sivakumar-kailasam/broccoli-leasot/compare/v1.4.1...v1.5.0) 53 | 54 | **Merged pull requests:** 55 | 56 | - Update sinon to version 1.17.2 🚀 [\#13](https://github.com/sivakumar-kailasam/broccoli-leasot/pull/13) ([greenkeeperio-bot](https://github.com/greenkeeperio-bot)) 57 | - Update chai to version 3.4.0 🚀 [\#12](https://github.com/sivakumar-kailasam/broccoli-leasot/pull/12) ([greenkeeperio-bot](https://github.com/greenkeeperio-bot)) 58 | - Update istanbul to version 0.4.0 🚀 [\#11](https://github.com/sivakumar-kailasam/broccoli-leasot/pull/11) ([greenkeeperio-bot](https://github.com/greenkeeperio-bot)) 59 | 60 | ## [v1.4.1](https://github.com/sivakumar-kailasam/broccoli-leasot/tree/v1.4.1) (2015-10-14) 61 | [Full Changelog](https://github.com/sivakumar-kailasam/broccoli-leasot/compare/v1.4.0...v1.4.1) 62 | 63 | **Merged pull requests:** 64 | 65 | - Update broccoli-fixturify to version 0.2.0 🚀 [\#10](https://github.com/sivakumar-kailasam/broccoli-leasot/pull/10) ([greenkeeperio-bot](https://github.com/greenkeeperio-bot)) 66 | 67 | ## [v1.4.0](https://github.com/sivakumar-kailasam/broccoli-leasot/tree/v1.4.0) (2015-10-13) 68 | [Full Changelog](https://github.com/sivakumar-kailasam/broccoli-leasot/compare/v1.3.1...v1.4.0) 69 | 70 | ## [v1.3.1](https://github.com/sivakumar-kailasam/broccoli-leasot/tree/v1.3.1) (2015-10-13) 71 | [Full Changelog](https://github.com/sivakumar-kailasam/broccoli-leasot/compare/v1.3.0...v1.3.1) 72 | 73 | **Merged pull requests:** 74 | 75 | - Updated isparta to version 3.1.0 [\#6](https://github.com/sivakumar-kailasam/broccoli-leasot/pull/6) ([sivakumar-kailasam](https://github.com/sivakumar-kailasam)) 76 | - Pinned all dependencies [\#5](https://github.com/sivakumar-kailasam/broccoli-leasot/pull/5) ([sivakumar-kailasam](https://github.com/sivakumar-kailasam)) 77 | 78 | ## [v1.3.0](https://github.com/sivakumar-kailasam/broccoli-leasot/tree/v1.3.0) (2015-08-31) 79 | [Full Changelog](https://github.com/sivakumar-kailasam/broccoli-leasot/compare/v1.2.0...v1.3.0) 80 | 81 | ## [v1.2.0](https://github.com/sivakumar-kailasam/broccoli-leasot/tree/v1.2.0) (2015-08-24) 82 | [Full Changelog](https://github.com/sivakumar-kailasam/broccoli-leasot/compare/v1.1.1...v1.2.0) 83 | 84 | ## [v1.1.1](https://github.com/sivakumar-kailasam/broccoli-leasot/tree/v1.1.1) (2015-08-09) 85 | [Full Changelog](https://github.com/sivakumar-kailasam/broccoli-leasot/compare/v1.1.0...v1.1.1) 86 | 87 | ## [v1.1.0](https://github.com/sivakumar-kailasam/broccoli-leasot/tree/v1.1.0) (2015-08-06) 88 | [Full Changelog](https://github.com/sivakumar-kailasam/broccoli-leasot/compare/v1.0.7...v1.1.0) 89 | 90 | **Merged pull requests:** 91 | 92 | - Fix kinds key in example configuration [\#4](https://github.com/sivakumar-kailasam/broccoli-leasot/pull/4) ([nummi](https://github.com/nummi)) 93 | 94 | ## [v1.0.7](https://github.com/sivakumar-kailasam/broccoli-leasot/tree/v1.0.7) (2015-08-01) 95 | [Full Changelog](https://github.com/sivakumar-kailasam/broccoli-leasot/compare/v1.0.6...v1.0.7) 96 | 97 | ## [v1.0.6](https://github.com/sivakumar-kailasam/broccoli-leasot/tree/v1.0.6) (2015-08-01) 98 | **Closed issues:** 99 | 100 | - Test ticket from Code Climate [\#2](https://github.com/sivakumar-kailasam/broccoli-leasot/issues/2) 101 | - Releasing 1.0 [\#1](https://github.com/sivakumar-kailasam/broccoli-leasot/issues/1) 102 | 103 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.1.1" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 8 | 9 | abbrev@1.0.x: 10 | version "1.0.9" 11 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 12 | 13 | acorn@^5.2.1: 14 | version "5.5.3" 15 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.5.3.tgz#f473dd47e0277a08e28e9bec5aeeb04751f0b8c9" 16 | 17 | align-text@^0.1.1, align-text@^0.1.3: 18 | version "0.1.4" 19 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 20 | dependencies: 21 | kind-of "^3.0.2" 22 | longest "^1.0.1" 23 | repeat-string "^1.5.2" 24 | 25 | alter@~0.2.0: 26 | version "0.2.0" 27 | resolved "https://registry.yarnpkg.com/alter/-/alter-0.2.0.tgz#c7588808617572034aae62480af26b1d4d1cb3cd" 28 | dependencies: 29 | stable "~0.1.3" 30 | 31 | amdefine@>=0.0.4: 32 | version "1.0.1" 33 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 34 | 35 | ansi-regex@^2.0.0: 36 | version "2.1.1" 37 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 38 | 39 | ansi-regex@^3.0.0: 40 | version "3.0.0" 41 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 42 | 43 | ansi-styles@^2.2.1: 44 | version "2.2.1" 45 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 46 | 47 | ansi-styles@^3.2.1: 48 | version "3.2.1" 49 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 50 | dependencies: 51 | color-convert "^1.9.0" 52 | 53 | ansi-styles@~1.0.0: 54 | version "1.0.0" 55 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-1.0.0.tgz#cb102df1c56f5123eab8b67cd7b98027a0279178" 56 | 57 | anymatch@^1.3.0: 58 | version "1.3.2" 59 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 60 | dependencies: 61 | micromatch "^2.1.5" 62 | normalize-path "^2.0.0" 63 | 64 | aproba@^1.0.3: 65 | version "1.2.0" 66 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 67 | 68 | are-we-there-yet@~1.1.2: 69 | version "1.1.5" 70 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" 71 | dependencies: 72 | delegates "^1.0.0" 73 | readable-stream "^2.0.6" 74 | 75 | argparse@^1.0.7: 76 | version "1.0.10" 77 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 78 | dependencies: 79 | sprintf-js "~1.0.2" 80 | 81 | arr-diff@^2.0.0: 82 | version "2.0.0" 83 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 84 | dependencies: 85 | arr-flatten "^1.0.1" 86 | 87 | arr-flatten@^1.0.1: 88 | version "1.1.0" 89 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 90 | 91 | array-union@^1.0.1: 92 | version "1.0.2" 93 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 94 | dependencies: 95 | array-uniq "^1.0.1" 96 | 97 | array-uniq@^1.0.1: 98 | version "1.0.3" 99 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 100 | 101 | array-unique@^0.2.1: 102 | version "0.2.1" 103 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 104 | 105 | arrify@^1.0.1: 106 | version "1.0.1" 107 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 108 | 109 | asn1@~0.2.3: 110 | version "0.2.3" 111 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 112 | 113 | assert-plus@1.0.0, assert-plus@^1.0.0: 114 | version "1.0.0" 115 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 116 | 117 | assert-plus@^0.2.0: 118 | version "0.2.0" 119 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 120 | 121 | assertion-error@^1.0.1: 122 | version "1.1.0" 123 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" 124 | 125 | ast-traverse@~0.1.1: 126 | version "0.1.1" 127 | resolved "https://registry.yarnpkg.com/ast-traverse/-/ast-traverse-0.1.1.tgz#69cf2b8386f19dcda1bb1e05d68fe359d8897de6" 128 | 129 | ast-types@0.8.12: 130 | version "0.8.12" 131 | resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.8.12.tgz#a0d90e4351bb887716c83fd637ebf818af4adfcc" 132 | 133 | ast-types@0.8.15: 134 | version "0.8.15" 135 | resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.8.15.tgz#8eef0827f04dff0ec8857ba925abe3fea6194e52" 136 | 137 | ast-types@0.9.6: 138 | version "0.9.6" 139 | resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.9.6.tgz#102c9e9e9005d3e7e3829bf0c4fa24ee862ee9b9" 140 | 141 | async-each@^1.0.0: 142 | version "1.0.1" 143 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 144 | 145 | async@1.x, async@^1.4.0, async@~1.5.2: 146 | version "1.5.2" 147 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 148 | 149 | async@^2.1.2: 150 | version "2.6.1" 151 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.1.tgz#b245a23ca71930044ec53fa46aa00a3e87c6a610" 152 | dependencies: 153 | lodash "^4.17.10" 154 | 155 | asynckit@^0.4.0: 156 | version "0.4.0" 157 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 158 | 159 | aws-sign2@~0.6.0: 160 | version "0.6.0" 161 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 162 | 163 | aws4@^1.2.1: 164 | version "1.7.0" 165 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.7.0.tgz#d4d0e9b9dbfca77bf08eeb0a8a471550fe39e289" 166 | 167 | babel-code-frame@^6.26.0: 168 | version "6.26.0" 169 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 170 | dependencies: 171 | chalk "^1.1.3" 172 | esutils "^2.0.2" 173 | js-tokens "^3.0.2" 174 | 175 | babel-core@^5.6.21: 176 | version "5.8.38" 177 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-5.8.38.tgz#1fcaee79d7e61b750b00b8e54f6dfc9d0af86558" 178 | dependencies: 179 | babel-plugin-constant-folding "^1.0.1" 180 | babel-plugin-dead-code-elimination "^1.0.2" 181 | babel-plugin-eval "^1.0.1" 182 | babel-plugin-inline-environment-variables "^1.0.1" 183 | babel-plugin-jscript "^1.0.4" 184 | babel-plugin-member-expression-literals "^1.0.1" 185 | babel-plugin-property-literals "^1.0.1" 186 | babel-plugin-proto-to-assign "^1.0.3" 187 | babel-plugin-react-constant-elements "^1.0.3" 188 | babel-plugin-react-display-name "^1.0.3" 189 | babel-plugin-remove-console "^1.0.1" 190 | babel-plugin-remove-debugger "^1.0.1" 191 | babel-plugin-runtime "^1.0.7" 192 | babel-plugin-undeclared-variables-check "^1.0.2" 193 | babel-plugin-undefined-to-void "^1.1.6" 194 | babylon "^5.8.38" 195 | bluebird "^2.9.33" 196 | chalk "^1.0.0" 197 | convert-source-map "^1.1.0" 198 | core-js "^1.0.0" 199 | debug "^2.1.1" 200 | detect-indent "^3.0.0" 201 | esutils "^2.0.0" 202 | fs-readdir-recursive "^0.1.0" 203 | globals "^6.4.0" 204 | home-or-tmp "^1.0.0" 205 | is-integer "^1.0.4" 206 | js-tokens "1.0.1" 207 | json5 "^0.4.0" 208 | lodash "^3.10.0" 209 | minimatch "^2.0.3" 210 | output-file-sync "^1.1.0" 211 | path-exists "^1.0.0" 212 | path-is-absolute "^1.0.0" 213 | private "^0.1.6" 214 | regenerator "0.8.40" 215 | regexpu "^1.3.0" 216 | repeating "^1.1.2" 217 | resolve "^1.1.6" 218 | shebang-regex "^1.0.0" 219 | slash "^1.0.0" 220 | source-map "^0.5.0" 221 | source-map-support "^0.2.10" 222 | to-fast-properties "^1.0.0" 223 | trim-right "^1.0.0" 224 | try-resolve "^1.0.0" 225 | 226 | babel-core@^6.1.4, babel-core@^6.26.0: 227 | version "6.26.3" 228 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207" 229 | dependencies: 230 | babel-code-frame "^6.26.0" 231 | babel-generator "^6.26.0" 232 | babel-helpers "^6.24.1" 233 | babel-messages "^6.23.0" 234 | babel-register "^6.26.0" 235 | babel-runtime "^6.26.0" 236 | babel-template "^6.26.0" 237 | babel-traverse "^6.26.0" 238 | babel-types "^6.26.0" 239 | babylon "^6.18.0" 240 | convert-source-map "^1.5.1" 241 | debug "^2.6.9" 242 | json5 "^0.5.1" 243 | lodash "^4.17.4" 244 | minimatch "^3.0.4" 245 | path-is-absolute "^1.0.1" 246 | private "^0.1.8" 247 | slash "^1.0.0" 248 | source-map "^0.5.7" 249 | 250 | babel-generator@^6.26.0: 251 | version "6.26.1" 252 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" 253 | dependencies: 254 | babel-messages "^6.23.0" 255 | babel-runtime "^6.26.0" 256 | babel-types "^6.26.0" 257 | detect-indent "^4.0.0" 258 | jsesc "^1.3.0" 259 | lodash "^4.17.4" 260 | source-map "^0.5.7" 261 | trim-right "^1.0.1" 262 | 263 | babel-helpers@^6.24.1: 264 | version "6.24.1" 265 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 266 | dependencies: 267 | babel-runtime "^6.22.0" 268 | babel-template "^6.24.1" 269 | 270 | babel-messages@^6.23.0: 271 | version "6.23.0" 272 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 273 | dependencies: 274 | babel-runtime "^6.22.0" 275 | 276 | babel-plugin-constant-folding@^1.0.1: 277 | version "1.0.1" 278 | resolved "https://registry.yarnpkg.com/babel-plugin-constant-folding/-/babel-plugin-constant-folding-1.0.1.tgz#8361d364c98e449c3692bdba51eff0844290aa8e" 279 | 280 | babel-plugin-dead-code-elimination@^1.0.2: 281 | version "1.0.2" 282 | resolved "https://registry.yarnpkg.com/babel-plugin-dead-code-elimination/-/babel-plugin-dead-code-elimination-1.0.2.tgz#5f7c451274dcd7cccdbfbb3e0b85dd28121f0f65" 283 | 284 | babel-plugin-eval@^1.0.1: 285 | version "1.0.1" 286 | resolved "https://registry.yarnpkg.com/babel-plugin-eval/-/babel-plugin-eval-1.0.1.tgz#a2faed25ce6be69ade4bfec263f70169195950da" 287 | 288 | babel-plugin-inline-environment-variables@^1.0.1: 289 | version "1.0.1" 290 | resolved "https://registry.yarnpkg.com/babel-plugin-inline-environment-variables/-/babel-plugin-inline-environment-variables-1.0.1.tgz#1f58ce91207ad6a826a8bf645fafe68ff5fe3ffe" 291 | 292 | babel-plugin-jscript@^1.0.4: 293 | version "1.0.4" 294 | resolved "https://registry.yarnpkg.com/babel-plugin-jscript/-/babel-plugin-jscript-1.0.4.tgz#8f342c38276e87a47d5fa0a8bd3d5eb6ccad8fcc" 295 | 296 | babel-plugin-member-expression-literals@^1.0.1: 297 | version "1.0.1" 298 | resolved "https://registry.yarnpkg.com/babel-plugin-member-expression-literals/-/babel-plugin-member-expression-literals-1.0.1.tgz#cc5edb0faa8dc927170e74d6d1c02440021624d3" 299 | 300 | babel-plugin-property-literals@^1.0.1: 301 | version "1.0.1" 302 | resolved "https://registry.yarnpkg.com/babel-plugin-property-literals/-/babel-plugin-property-literals-1.0.1.tgz#0252301900192980b1c118efea48ce93aab83336" 303 | 304 | babel-plugin-proto-to-assign@^1.0.3: 305 | version "1.0.4" 306 | resolved "https://registry.yarnpkg.com/babel-plugin-proto-to-assign/-/babel-plugin-proto-to-assign-1.0.4.tgz#c49e7afd02f577bc4da05ea2df002250cf7cd123" 307 | dependencies: 308 | lodash "^3.9.3" 309 | 310 | babel-plugin-react-constant-elements@^1.0.3: 311 | version "1.0.3" 312 | resolved "https://registry.yarnpkg.com/babel-plugin-react-constant-elements/-/babel-plugin-react-constant-elements-1.0.3.tgz#946736e8378429cbc349dcff62f51c143b34e35a" 313 | 314 | babel-plugin-react-display-name@^1.0.3: 315 | version "1.0.3" 316 | resolved "https://registry.yarnpkg.com/babel-plugin-react-display-name/-/babel-plugin-react-display-name-1.0.3.tgz#754fe38926e8424a4e7b15ab6ea6139dee0514fc" 317 | 318 | babel-plugin-remove-console@^1.0.1: 319 | version "1.0.1" 320 | resolved "https://registry.yarnpkg.com/babel-plugin-remove-console/-/babel-plugin-remove-console-1.0.1.tgz#d8f24556c3a05005d42aaaafd27787f53ff013a7" 321 | 322 | babel-plugin-remove-debugger@^1.0.1: 323 | version "1.0.1" 324 | resolved "https://registry.yarnpkg.com/babel-plugin-remove-debugger/-/babel-plugin-remove-debugger-1.0.1.tgz#fd2ea3cd61a428ad1f3b9c89882ff4293e8c14c7" 325 | 326 | babel-plugin-runtime@^1.0.7: 327 | version "1.0.7" 328 | resolved "https://registry.yarnpkg.com/babel-plugin-runtime/-/babel-plugin-runtime-1.0.7.tgz#bf7c7d966dd56ecd5c17fa1cb253c9acb7e54aaf" 329 | 330 | babel-plugin-undeclared-variables-check@^1.0.2: 331 | version "1.0.2" 332 | resolved "https://registry.yarnpkg.com/babel-plugin-undeclared-variables-check/-/babel-plugin-undeclared-variables-check-1.0.2.tgz#5cf1aa539d813ff64e99641290af620965f65dee" 333 | dependencies: 334 | leven "^1.0.2" 335 | 336 | babel-plugin-undefined-to-void@^1.1.6: 337 | version "1.1.6" 338 | resolved "https://registry.yarnpkg.com/babel-plugin-undefined-to-void/-/babel-plugin-undefined-to-void-1.1.6.tgz#7f578ef8b78dfae6003385d8417a61eda06e2f81" 339 | 340 | babel-register@^6.26.0: 341 | version "6.26.0" 342 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 343 | dependencies: 344 | babel-core "^6.26.0" 345 | babel-runtime "^6.26.0" 346 | core-js "^2.5.0" 347 | home-or-tmp "^2.0.0" 348 | lodash "^4.17.4" 349 | mkdirp "^0.5.1" 350 | source-map-support "^0.4.15" 351 | 352 | babel-runtime@^6.22.0, babel-runtime@^6.26.0: 353 | version "6.26.0" 354 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 355 | dependencies: 356 | core-js "^2.4.0" 357 | regenerator-runtime "^0.11.0" 358 | 359 | babel-template@^6.24.1, babel-template@^6.26.0: 360 | version "6.26.0" 361 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 362 | dependencies: 363 | babel-runtime "^6.26.0" 364 | babel-traverse "^6.26.0" 365 | babel-types "^6.26.0" 366 | babylon "^6.18.0" 367 | lodash "^4.17.4" 368 | 369 | babel-traverse@^6.26.0: 370 | version "6.26.0" 371 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 372 | dependencies: 373 | babel-code-frame "^6.26.0" 374 | babel-messages "^6.23.0" 375 | babel-runtime "^6.26.0" 376 | babel-types "^6.26.0" 377 | babylon "^6.18.0" 378 | debug "^2.6.8" 379 | globals "^9.18.0" 380 | invariant "^2.2.2" 381 | lodash "^4.17.4" 382 | 383 | babel-types@^6.26.0: 384 | version "6.26.0" 385 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 386 | dependencies: 387 | babel-runtime "^6.26.0" 388 | esutils "^2.0.2" 389 | lodash "^4.17.4" 390 | to-fast-properties "^1.0.3" 391 | 392 | babel@5.8.34: 393 | version "5.8.34" 394 | resolved "http://registry.npmjs.org/babel/-/babel-5.8.34.tgz#db37ce691a04d5ed3d0be4443599520bd822d5b3" 395 | dependencies: 396 | babel-core "^5.6.21" 397 | chokidar "^1.0.0" 398 | commander "^2.6.0" 399 | convert-source-map "^1.1.0" 400 | fs-readdir-recursive "^0.1.0" 401 | glob "^5.0.5" 402 | lodash "^3.2.0" 403 | output-file-sync "^1.1.0" 404 | path-exists "^1.0.0" 405 | path-is-absolute "^1.0.0" 406 | slash "^1.0.0" 407 | source-map "^0.5.0" 408 | 409 | babylon@^5.8.38: 410 | version "5.8.38" 411 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-5.8.38.tgz#ec9b120b11bf6ccd4173a18bf217e60b79859ffd" 412 | 413 | babylon@^6.18.0: 414 | version "6.18.0" 415 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 416 | 417 | balanced-match@^1.0.0: 418 | version "1.0.0" 419 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 420 | 421 | bcrypt-pbkdf@^1.0.0: 422 | version "1.0.1" 423 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 424 | dependencies: 425 | tweetnacl "^0.14.3" 426 | 427 | binary-extensions@^1.0.0: 428 | version "1.11.0" 429 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 430 | 431 | bluebird@^2.9.33: 432 | version "2.11.0" 433 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-2.11.0.tgz#534b9033c022c9579c56ba3b3e5a5caafbb650e1" 434 | 435 | boom@2.x.x: 436 | version "2.10.1" 437 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 438 | dependencies: 439 | hoek "2.x.x" 440 | 441 | brace-expansion@^1.0.0, brace-expansion@^1.1.7: 442 | version "1.1.11" 443 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 444 | dependencies: 445 | balanced-match "^1.0.0" 446 | concat-map "0.0.1" 447 | 448 | braces@^1.8.2: 449 | version "1.8.5" 450 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 451 | dependencies: 452 | expand-range "^1.8.1" 453 | preserve "^0.2.0" 454 | repeat-element "^1.1.2" 455 | 456 | breakable@~1.0.0: 457 | version "1.0.0" 458 | resolved "https://registry.yarnpkg.com/breakable/-/breakable-1.0.0.tgz#784a797915a38ead27bad456b5572cb4bbaa78c1" 459 | 460 | broccoli-filter@1.2.3: 461 | version "1.2.3" 462 | resolved "https://registry.yarnpkg.com/broccoli-filter/-/broccoli-filter-1.2.3.tgz#683b6c73975db469cce6423cafba9fc408750e17" 463 | dependencies: 464 | broccoli-kitchen-sink-helpers "^0.2.7" 465 | broccoli-plugin "^1.0.0" 466 | copy-dereference "^1.0.0" 467 | debug "^2.2.0" 468 | mkdirp "^0.5.1" 469 | promise-map-series "^0.2.1" 470 | rsvp "^3.0.18" 471 | symlink-or-copy "^1.0.1" 472 | walk-sync "^0.2.6" 473 | 474 | broccoli-fixturify@0.3.0: 475 | version "0.3.0" 476 | resolved "https://registry.yarnpkg.com/broccoli-fixturify/-/broccoli-fixturify-0.3.0.tgz#e96cb5b8407b43e850a46bb09fb81c6f44b7288a" 477 | dependencies: 478 | broccoli-plugin "^1.2.0" 479 | fixturify "~0.3.0" 480 | 481 | broccoli-kitchen-sink-helpers@^0.2.5, broccoli-kitchen-sink-helpers@^0.2.7: 482 | version "0.2.9" 483 | resolved "https://registry.yarnpkg.com/broccoli-kitchen-sink-helpers/-/broccoli-kitchen-sink-helpers-0.2.9.tgz#a5e0986ed8d76fb5984b68c3f0450d3a96e36ecc" 484 | dependencies: 485 | glob "^5.0.10" 486 | mkdirp "^0.5.1" 487 | 488 | broccoli-plugin@^1.0.0, broccoli-plugin@^1.2.0: 489 | version "1.3.0" 490 | resolved "https://registry.yarnpkg.com/broccoli-plugin/-/broccoli-plugin-1.3.0.tgz#bee704a8e42da08cb58e513aaa436efb7f0ef1ee" 491 | dependencies: 492 | promise-map-series "^0.2.1" 493 | quick-temp "^0.1.3" 494 | rimraf "^2.3.4" 495 | symlink-or-copy "^1.1.8" 496 | 497 | broccoli-slow-trees@^1.0.0: 498 | version "1.1.0" 499 | resolved "https://registry.yarnpkg.com/broccoli-slow-trees/-/broccoli-slow-trees-1.1.0.tgz#426c5724e008107e4573f73e8a9ca702916b78f7" 500 | 501 | broccoli@0.16.9: 502 | version "0.16.9" 503 | resolved "https://registry.yarnpkg.com/broccoli/-/broccoli-0.16.9.tgz#b87ca679f09005c576901a9bc19f5df77efd55a4" 504 | dependencies: 505 | broccoli-kitchen-sink-helpers "^0.2.5" 506 | broccoli-slow-trees "^1.0.0" 507 | commander "^2.5.0" 508 | connect "^3.3.3" 509 | copy-dereference "^1.0.0" 510 | findup-sync "^0.2.1" 511 | handlebars "^4.0.4" 512 | mime "^1.2.11" 513 | promise-map-series "^0.2.1" 514 | quick-temp "^0.1.2" 515 | rimraf "^2.2.8" 516 | rsvp "^3.0.17" 517 | 518 | camelcase@^1.0.2, camelcase@^1.2.1: 519 | version "1.2.1" 520 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 521 | 522 | caseless@~0.11.0: 523 | version "0.11.0" 524 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 525 | 526 | center-align@^0.1.1: 527 | version "0.1.3" 528 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 529 | dependencies: 530 | align-text "^0.1.3" 531 | lazy-cache "^1.0.3" 532 | 533 | chai@3.5.0: 534 | version "3.5.0" 535 | resolved "https://registry.yarnpkg.com/chai/-/chai-3.5.0.tgz#4d02637b067fe958bdbfdd3a40ec56fef7373247" 536 | dependencies: 537 | assertion-error "^1.0.1" 538 | deep-eql "^0.1.3" 539 | type-detect "^1.0.0" 540 | 541 | chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3: 542 | version "1.1.3" 543 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 544 | dependencies: 545 | ansi-styles "^2.2.1" 546 | escape-string-regexp "^1.0.2" 547 | has-ansi "^2.0.0" 548 | strip-ansi "^3.0.0" 549 | supports-color "^2.0.0" 550 | 551 | chalk@^2.0.1, chalk@^2.3.0: 552 | version "2.4.1" 553 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" 554 | dependencies: 555 | ansi-styles "^3.2.1" 556 | escape-string-regexp "^1.0.5" 557 | supports-color "^5.3.0" 558 | 559 | chalk@~0.4.0: 560 | version "0.4.0" 561 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.4.0.tgz#5199a3ddcd0c1efe23bc08c1b027b06176e0c64f" 562 | dependencies: 563 | ansi-styles "~1.0.0" 564 | has-color "~0.1.0" 565 | strip-ansi "~0.1.0" 566 | 567 | chokidar@^1.0.0: 568 | version "1.7.0" 569 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 570 | dependencies: 571 | anymatch "^1.3.0" 572 | async-each "^1.0.0" 573 | glob-parent "^2.0.0" 574 | inherits "^2.0.1" 575 | is-binary-path "^1.0.0" 576 | is-glob "^2.0.0" 577 | path-is-absolute "^1.0.0" 578 | readdirp "^2.0.0" 579 | optionalDependencies: 580 | fsevents "^1.0.0" 581 | 582 | chownr@^1.0.1: 583 | version "1.0.1" 584 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181" 585 | 586 | cliui@^2.1.0: 587 | version "2.1.0" 588 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 589 | dependencies: 590 | center-align "^0.1.1" 591 | right-align "^0.1.1" 592 | wordwrap "0.0.2" 593 | 594 | code-point-at@^1.0.0: 595 | version "1.1.0" 596 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 597 | 598 | codeclimate-test-reporter@^0.5.0: 599 | version "0.5.0" 600 | resolved "https://registry.yarnpkg.com/codeclimate-test-reporter/-/codeclimate-test-reporter-0.5.0.tgz#93fa06b1c18e4117349128dc4e38aad08043828e" 601 | dependencies: 602 | async "~1.5.2" 603 | commander "2.9.0" 604 | lcov-parse "0.0.10" 605 | request "~2.79.0" 606 | 607 | color-convert@^1.9.0: 608 | version "1.9.1" 609 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 610 | dependencies: 611 | color-name "^1.1.1" 612 | 613 | color-name@^1.1.1: 614 | version "1.1.3" 615 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 616 | 617 | colors@0.6.x: 618 | version "0.6.2" 619 | resolved "https://registry.yarnpkg.com/colors/-/colors-0.6.2.tgz#2423fe6678ac0c5dae8852e5d0e5be08c997abcc" 620 | 621 | combined-stream@^1.0.5, combined-stream@~1.0.5: 622 | version "1.0.6" 623 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818" 624 | dependencies: 625 | delayed-stream "~1.0.0" 626 | 627 | commander@0.6.1: 628 | version "0.6.1" 629 | resolved "https://registry.yarnpkg.com/commander/-/commander-0.6.1.tgz#fa68a14f6a945d54dbbe50d8cdb3320e9e3b1a06" 630 | 631 | commander@2.3.0: 632 | version "2.3.0" 633 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.3.0.tgz#fd430e889832ec353b9acd1de217c11cb3eef873" 634 | 635 | commander@2.9.0: 636 | version "2.9.0" 637 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 638 | dependencies: 639 | graceful-readlink ">= 1.0.0" 640 | 641 | commander@^2.5.0, commander@^2.6.0, commander@^2.9.0: 642 | version "2.15.1" 643 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.15.1.tgz#df46e867d0fc2aec66a34662b406a9ccafff5b0f" 644 | 645 | commoner@~0.10.3: 646 | version "0.10.8" 647 | resolved "https://registry.yarnpkg.com/commoner/-/commoner-0.10.8.tgz#34fc3672cd24393e8bb47e70caa0293811f4f2c5" 648 | dependencies: 649 | commander "^2.5.0" 650 | detective "^4.3.1" 651 | glob "^5.0.15" 652 | graceful-fs "^4.1.2" 653 | iconv-lite "^0.4.5" 654 | mkdirp "^0.5.0" 655 | private "^0.1.6" 656 | q "^1.1.2" 657 | recast "^0.11.17" 658 | 659 | concat-map@0.0.1: 660 | version "0.0.1" 661 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 662 | 663 | connect@^3.3.3: 664 | version "3.6.6" 665 | resolved "https://registry.yarnpkg.com/connect/-/connect-3.6.6.tgz#09eff6c55af7236e137135a72574858b6786f524" 666 | dependencies: 667 | debug "2.6.9" 668 | finalhandler "1.1.0" 669 | parseurl "~1.3.2" 670 | utils-merge "1.0.1" 671 | 672 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 673 | version "1.1.0" 674 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 675 | 676 | convert-source-map@^1.1.0, convert-source-map@^1.5.1: 677 | version "1.5.1" 678 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 679 | 680 | copy-dereference@^1.0.0: 681 | version "1.0.0" 682 | resolved "https://registry.yarnpkg.com/copy-dereference/-/copy-dereference-1.0.0.tgz#6b131865420fd81b413ba994b44d3655311152b6" 683 | 684 | core-js@^1.0.0: 685 | version "1.2.7" 686 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 687 | 688 | core-js@^2.4.0, core-js@^2.5.0: 689 | version "2.5.7" 690 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.7.tgz#f972608ff0cead68b841a16a932d0b183791814e" 691 | 692 | core-util-is@1.0.2, core-util-is@~1.0.0: 693 | version "1.0.2" 694 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 695 | 696 | cryptiles@2.x.x: 697 | version "2.0.5" 698 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 699 | dependencies: 700 | boom "2.x.x" 701 | 702 | dashdash@^1.12.0: 703 | version "1.14.1" 704 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 705 | dependencies: 706 | assert-plus "^1.0.0" 707 | 708 | debug@2.2.0: 709 | version "2.2.0" 710 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 711 | dependencies: 712 | ms "0.7.1" 713 | 714 | debug@2.6.9, debug@^2.1.1, debug@^2.1.2, debug@^2.2.0, debug@^2.6.8, debug@^2.6.9: 715 | version "2.6.9" 716 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 717 | dependencies: 718 | ms "2.0.0" 719 | 720 | decamelize@^1.0.0: 721 | version "1.2.0" 722 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 723 | 724 | deep-eql@^0.1.3: 725 | version "0.1.3" 726 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-0.1.3.tgz#ef558acab8de25206cd713906d74e56930eb69f2" 727 | dependencies: 728 | type-detect "0.1.1" 729 | 730 | deep-extend@^0.6.0: 731 | version "0.6.0" 732 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 733 | 734 | deep-is@~0.1.3: 735 | version "0.1.3" 736 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 737 | 738 | defined@^1.0.0: 739 | version "1.0.0" 740 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 741 | 742 | defs@~1.1.0: 743 | version "1.1.1" 744 | resolved "https://registry.yarnpkg.com/defs/-/defs-1.1.1.tgz#b22609f2c7a11ba7a3db116805c139b1caffa9d2" 745 | dependencies: 746 | alter "~0.2.0" 747 | ast-traverse "~0.1.1" 748 | breakable "~1.0.0" 749 | esprima-fb "~15001.1001.0-dev-harmony-fb" 750 | simple-fmt "~0.1.0" 751 | simple-is "~0.2.0" 752 | stringmap "~0.2.2" 753 | stringset "~0.2.1" 754 | tryor "~0.1.2" 755 | yargs "~3.27.0" 756 | 757 | delayed-stream@~1.0.0: 758 | version "1.0.0" 759 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 760 | 761 | delegates@^1.0.0: 762 | version "1.0.0" 763 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 764 | 765 | detect-indent@^3.0.0: 766 | version "3.0.1" 767 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-3.0.1.tgz#9dc5e5ddbceef8325764b9451b02bc6d54084f75" 768 | dependencies: 769 | get-stdin "^4.0.1" 770 | minimist "^1.1.0" 771 | repeating "^1.1.0" 772 | 773 | detect-indent@^4.0.0: 774 | version "4.0.0" 775 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 776 | dependencies: 777 | repeating "^2.0.0" 778 | 779 | detect-libc@^1.0.2: 780 | version "1.0.3" 781 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 782 | 783 | detective@^4.3.1: 784 | version "4.7.1" 785 | resolved "https://registry.yarnpkg.com/detective/-/detective-4.7.1.tgz#0eca7314338442febb6d65da54c10bb1c82b246e" 786 | dependencies: 787 | acorn "^5.2.1" 788 | defined "^1.0.0" 789 | 790 | diff@1.4.0: 791 | version "1.4.0" 792 | resolved "https://registry.yarnpkg.com/diff/-/diff-1.4.0.tgz#7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf" 793 | 794 | dir-glob@^2.0.0: 795 | version "2.0.0" 796 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-2.0.0.tgz#0b205d2b6aef98238ca286598a8204d29d0a0034" 797 | dependencies: 798 | arrify "^1.0.1" 799 | path-type "^3.0.0" 800 | 801 | ecc-jsbn@~0.1.1: 802 | version "0.1.1" 803 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 804 | dependencies: 805 | jsbn "~0.1.0" 806 | 807 | ee-first@1.1.1: 808 | version "1.1.1" 809 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 810 | 811 | encodeurl@~1.0.1: 812 | version "1.0.2" 813 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" 814 | 815 | ensure-posix-path@^1.0.0: 816 | version "1.0.2" 817 | resolved "https://registry.yarnpkg.com/ensure-posix-path/-/ensure-posix-path-1.0.2.tgz#a65b3e42d0b71cfc585eb774f9943c8d9b91b0c2" 818 | 819 | escape-html@~1.0.3: 820 | version "1.0.3" 821 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 822 | 823 | escape-string-regexp@1.0.2: 824 | version "1.0.2" 825 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.2.tgz#4dbc2fe674e71949caf3fb2695ce7f2dc1d9a8d1" 826 | 827 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 828 | version "1.0.5" 829 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 830 | 831 | escodegen@1.8.x: 832 | version "1.8.1" 833 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 834 | dependencies: 835 | esprima "^2.7.1" 836 | estraverse "^1.9.1" 837 | esutils "^2.0.2" 838 | optionator "^0.8.1" 839 | optionalDependencies: 840 | source-map "~0.2.0" 841 | 842 | escodegen@^1.6.1: 843 | version "1.9.1" 844 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.1.tgz#dbae17ef96c8e4bedb1356f4504fa4cc2f7cb7e2" 845 | dependencies: 846 | esprima "^3.1.3" 847 | estraverse "^4.2.0" 848 | esutils "^2.0.2" 849 | optionator "^0.8.1" 850 | optionalDependencies: 851 | source-map "~0.6.1" 852 | 853 | esprima-fb@~15001.1001.0-dev-harmony-fb: 854 | version "15001.1001.0-dev-harmony-fb" 855 | resolved "https://registry.yarnpkg.com/esprima-fb/-/esprima-fb-15001.1001.0-dev-harmony-fb.tgz#43beb57ec26e8cf237d3dd8b33e42533577f2659" 856 | 857 | esprima@2.7.x, esprima@^2.1.0, esprima@^2.6.0, esprima@^2.7.1: 858 | version "2.7.3" 859 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 860 | 861 | esprima@^3.1.3, esprima@~3.1.0: 862 | version "3.1.3" 863 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 864 | 865 | esprima@^4.0.0: 866 | version "4.0.0" 867 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 868 | 869 | estraverse@^1.9.1: 870 | version "1.9.3" 871 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 872 | 873 | estraverse@^4.2.0: 874 | version "4.2.0" 875 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 876 | 877 | esutils@^2.0.0, esutils@^2.0.2: 878 | version "2.0.2" 879 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 880 | 881 | expand-brackets@^0.1.4: 882 | version "0.1.5" 883 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 884 | dependencies: 885 | is-posix-bracket "^0.1.0" 886 | 887 | expand-range@^1.8.1: 888 | version "1.8.2" 889 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 890 | dependencies: 891 | fill-range "^2.1.0" 892 | 893 | extend@~3.0.0: 894 | version "3.0.1" 895 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 896 | 897 | extglob@^0.3.1: 898 | version "0.3.2" 899 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 900 | dependencies: 901 | is-extglob "^1.0.0" 902 | 903 | extsprintf@1.3.0: 904 | version "1.3.0" 905 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 906 | 907 | extsprintf@^1.2.0: 908 | version "1.4.0" 909 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 910 | 911 | fast-levenshtein@~2.0.4: 912 | version "2.0.6" 913 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 914 | 915 | filename-regex@^2.0.0: 916 | version "2.0.1" 917 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 918 | 919 | fileset@0.2.x: 920 | version "0.2.1" 921 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-0.2.1.tgz#588ef8973c6623b2a76df465105696b96aac8067" 922 | dependencies: 923 | glob "5.x" 924 | minimatch "2.x" 925 | 926 | fill-range@^2.1.0: 927 | version "2.2.4" 928 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" 929 | dependencies: 930 | is-number "^2.1.0" 931 | isobject "^2.0.0" 932 | randomatic "^3.0.0" 933 | repeat-element "^1.1.2" 934 | repeat-string "^1.5.2" 935 | 936 | finalhandler@1.1.0: 937 | version "1.1.0" 938 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.0.tgz#ce0b6855b45853e791b2fcc680046d88253dd7f5" 939 | dependencies: 940 | debug "2.6.9" 941 | encodeurl "~1.0.1" 942 | escape-html "~1.0.3" 943 | on-finished "~2.3.0" 944 | parseurl "~1.3.2" 945 | statuses "~1.3.1" 946 | unpipe "~1.0.0" 947 | 948 | findup-sync@^0.2.1: 949 | version "0.2.1" 950 | resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-0.2.1.tgz#e0a90a450075c49466ee513732057514b81e878c" 951 | dependencies: 952 | glob "~4.3.0" 953 | 954 | fixturify@~0.3.0: 955 | version "0.3.4" 956 | resolved "https://registry.yarnpkg.com/fixturify/-/fixturify-0.3.4.tgz#c676de404a7f8ee8e64d0b76118e62ec95ab7b25" 957 | dependencies: 958 | fs-extra "^0.30.0" 959 | matcher-collection "^1.0.4" 960 | 961 | for-in@^1.0.1: 962 | version "1.0.2" 963 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 964 | 965 | for-own@^0.1.4: 966 | version "0.1.5" 967 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 968 | dependencies: 969 | for-in "^1.0.1" 970 | 971 | forever-agent@~0.6.1: 972 | version "0.6.1" 973 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 974 | 975 | form-data@~2.1.1: 976 | version "2.1.4" 977 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 978 | dependencies: 979 | asynckit "^0.4.0" 980 | combined-stream "^1.0.5" 981 | mime-types "^2.1.12" 982 | 983 | formatio@1.1.1: 984 | version "1.1.1" 985 | resolved "https://registry.yarnpkg.com/formatio/-/formatio-1.1.1.tgz#5ed3ccd636551097383465d996199100e86161e9" 986 | dependencies: 987 | samsam "~1.1" 988 | 989 | fs-extra@^0.30.0: 990 | version "0.30.0" 991 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.30.0.tgz#f233ffcc08d4da7d432daa449776989db1df93f0" 992 | dependencies: 993 | graceful-fs "^4.1.2" 994 | jsonfile "^2.1.0" 995 | klaw "^1.0.0" 996 | path-is-absolute "^1.0.0" 997 | rimraf "^2.2.8" 998 | 999 | fs-minipass@^1.2.5: 1000 | version "1.2.5" 1001 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" 1002 | dependencies: 1003 | minipass "^2.2.1" 1004 | 1005 | fs-readdir-recursive@^0.1.0: 1006 | version "0.1.2" 1007 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-0.1.2.tgz#315b4fb8c1ca5b8c47defef319d073dad3568059" 1008 | 1009 | fs.realpath@^1.0.0: 1010 | version "1.0.0" 1011 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1012 | 1013 | fsevents@^1.0.0: 1014 | version "1.2.4" 1015 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.4.tgz#f41dcb1af2582af3692da36fc55cbd8e1041c426" 1016 | dependencies: 1017 | nan "^2.9.2" 1018 | node-pre-gyp "^0.10.0" 1019 | 1020 | gauge@~2.7.3: 1021 | version "2.7.4" 1022 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1023 | dependencies: 1024 | aproba "^1.0.3" 1025 | console-control-strings "^1.0.0" 1026 | has-unicode "^2.0.0" 1027 | object-assign "^4.1.0" 1028 | signal-exit "^3.0.0" 1029 | string-width "^1.0.1" 1030 | strip-ansi "^3.0.1" 1031 | wide-align "^1.1.0" 1032 | 1033 | generate-function@^2.0.0: 1034 | version "2.0.0" 1035 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1036 | 1037 | generate-object-property@^1.1.0: 1038 | version "1.2.0" 1039 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1040 | dependencies: 1041 | is-property "^1.0.0" 1042 | 1043 | get-line-from-pos@^1.0.0: 1044 | version "1.0.0" 1045 | resolved "https://registry.yarnpkg.com/get-line-from-pos/-/get-line-from-pos-1.0.0.tgz#e3ca483035eef374ad40fff4d43df3fa2da328b3" 1046 | 1047 | get-stdin@^4.0.1: 1048 | version "4.0.1" 1049 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1050 | 1051 | get-stdin@^5.0.1: 1052 | version "5.0.1" 1053 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 1054 | 1055 | getpass@^0.1.1: 1056 | version "0.1.7" 1057 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1058 | dependencies: 1059 | assert-plus "^1.0.0" 1060 | 1061 | glob-base@^0.3.0: 1062 | version "0.3.0" 1063 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1064 | dependencies: 1065 | glob-parent "^2.0.0" 1066 | is-glob "^2.0.0" 1067 | 1068 | glob-parent@^2.0.0: 1069 | version "2.0.0" 1070 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1071 | dependencies: 1072 | is-glob "^2.0.0" 1073 | 1074 | glob@3.2.3: 1075 | version "3.2.3" 1076 | resolved "https://registry.yarnpkg.com/glob/-/glob-3.2.3.tgz#e313eeb249c7affaa5c475286b0e115b59839467" 1077 | dependencies: 1078 | graceful-fs "~2.0.0" 1079 | inherits "2" 1080 | minimatch "~0.2.11" 1081 | 1082 | glob@5.x, glob@^5.0.10, glob@^5.0.15, glob@^5.0.5: 1083 | version "5.0.15" 1084 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 1085 | dependencies: 1086 | inflight "^1.0.4" 1087 | inherits "2" 1088 | minimatch "2 || 3" 1089 | once "^1.3.0" 1090 | path-is-absolute "^1.0.0" 1091 | 1092 | glob@^7.0.5, glob@^7.1.2: 1093 | version "7.1.2" 1094 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1095 | dependencies: 1096 | fs.realpath "^1.0.0" 1097 | inflight "^1.0.4" 1098 | inherits "2" 1099 | minimatch "^3.0.4" 1100 | once "^1.3.0" 1101 | path-is-absolute "^1.0.0" 1102 | 1103 | glob@~4.3.0: 1104 | version "4.3.5" 1105 | resolved "https://registry.yarnpkg.com/glob/-/glob-4.3.5.tgz#80fbb08ca540f238acce5d11d1e9bc41e75173d3" 1106 | dependencies: 1107 | inflight "^1.0.4" 1108 | inherits "2" 1109 | minimatch "^2.0.1" 1110 | once "^1.3.0" 1111 | 1112 | globals@^6.4.0: 1113 | version "6.4.1" 1114 | resolved "https://registry.yarnpkg.com/globals/-/globals-6.4.1.tgz#8498032b3b6d1cc81eebc5f79690d8fe29fabf4f" 1115 | 1116 | globals@^9.18.0: 1117 | version "9.18.0" 1118 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1119 | 1120 | globby@^7.1.1: 1121 | version "7.1.1" 1122 | resolved "https://registry.yarnpkg.com/globby/-/globby-7.1.1.tgz#fb2ccff9401f8600945dfada97440cca972b8680" 1123 | dependencies: 1124 | array-union "^1.0.1" 1125 | dir-glob "^2.0.0" 1126 | glob "^7.1.2" 1127 | ignore "^3.3.5" 1128 | pify "^3.0.0" 1129 | slash "^1.0.0" 1130 | 1131 | graceful-fs@^4.1.2, graceful-fs@^4.1.4, graceful-fs@^4.1.6, graceful-fs@^4.1.9: 1132 | version "4.1.11" 1133 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1134 | 1135 | graceful-fs@~2.0.0: 1136 | version "2.0.3" 1137 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-2.0.3.tgz#7cd2cdb228a4a3f36e95efa6cc142de7d1a136d0" 1138 | 1139 | "graceful-readlink@>= 1.0.0": 1140 | version "1.0.1" 1141 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1142 | 1143 | growl@1.8.1: 1144 | version "1.8.1" 1145 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.8.1.tgz#4b2dec8d907e93db336624dcec0183502f8c9428" 1146 | 1147 | handlebars@^4.0.1, handlebars@^4.0.4: 1148 | version "4.0.11" 1149 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc" 1150 | dependencies: 1151 | async "^1.4.0" 1152 | optimist "^0.6.1" 1153 | source-map "^0.4.4" 1154 | optionalDependencies: 1155 | uglify-js "^2.6" 1156 | 1157 | har-validator@~2.0.6: 1158 | version "2.0.6" 1159 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 1160 | dependencies: 1161 | chalk "^1.1.1" 1162 | commander "^2.9.0" 1163 | is-my-json-valid "^2.12.4" 1164 | pinkie-promise "^2.0.0" 1165 | 1166 | has-ansi@^2.0.0: 1167 | version "2.0.0" 1168 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1169 | dependencies: 1170 | ansi-regex "^2.0.0" 1171 | 1172 | has-color@~0.1.0: 1173 | version "0.1.7" 1174 | resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f" 1175 | 1176 | has-flag@^1.0.0: 1177 | version "1.0.0" 1178 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1179 | 1180 | has-flag@^3.0.0: 1181 | version "3.0.0" 1182 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1183 | 1184 | has-unicode@^2.0.0: 1185 | version "2.0.1" 1186 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1187 | 1188 | hawk@~3.1.3: 1189 | version "3.1.3" 1190 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1191 | dependencies: 1192 | boom "2.x.x" 1193 | cryptiles "2.x.x" 1194 | hoek "2.x.x" 1195 | sntp "1.x.x" 1196 | 1197 | hoek@2.x.x: 1198 | version "2.16.3" 1199 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1200 | 1201 | home-or-tmp@^1.0.0: 1202 | version "1.0.0" 1203 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-1.0.0.tgz#4b9f1e40800c3e50c6c27f781676afcce71f3985" 1204 | dependencies: 1205 | os-tmpdir "^1.0.1" 1206 | user-home "^1.1.1" 1207 | 1208 | home-or-tmp@^2.0.0: 1209 | version "2.0.0" 1210 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1211 | dependencies: 1212 | os-homedir "^1.0.0" 1213 | os-tmpdir "^1.0.1" 1214 | 1215 | http-signature@~1.1.0: 1216 | version "1.1.1" 1217 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1218 | dependencies: 1219 | assert-plus "^0.2.0" 1220 | jsprim "^1.2.2" 1221 | sshpk "^1.7.0" 1222 | 1223 | iconv-lite@^0.4.4, iconv-lite@^0.4.5: 1224 | version "0.4.23" 1225 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63" 1226 | dependencies: 1227 | safer-buffer ">= 2.1.2 < 3" 1228 | 1229 | ignore-walk@^3.0.1: 1230 | version "3.0.1" 1231 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" 1232 | dependencies: 1233 | minimatch "^3.0.4" 1234 | 1235 | ignore@^3.3.5: 1236 | version "3.3.8" 1237 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.8.tgz#3f8e9c35d38708a3a7e0e9abb6c73e7ee7707b2b" 1238 | 1239 | inflight@^1.0.4: 1240 | version "1.0.6" 1241 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1242 | dependencies: 1243 | once "^1.3.0" 1244 | wrappy "1" 1245 | 1246 | inherits@2, inherits@^2.0.1, inherits@~2.0.3: 1247 | version "2.0.3" 1248 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1249 | 1250 | inherits@2.0.1: 1251 | version "2.0.1" 1252 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1253 | 1254 | ini@~1.3.0: 1255 | version "1.3.5" 1256 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1257 | 1258 | invariant@^2.2.2: 1259 | version "2.2.4" 1260 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 1261 | dependencies: 1262 | loose-envify "^1.0.0" 1263 | 1264 | invert-kv@^1.0.0: 1265 | version "1.0.0" 1266 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1267 | 1268 | is-binary-path@^1.0.0: 1269 | version "1.0.1" 1270 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1271 | dependencies: 1272 | binary-extensions "^1.0.0" 1273 | 1274 | is-buffer@^1.1.5: 1275 | version "1.1.6" 1276 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1277 | 1278 | is-dotfile@^1.0.0: 1279 | version "1.0.3" 1280 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1281 | 1282 | is-equal-shallow@^0.1.3: 1283 | version "0.1.3" 1284 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1285 | dependencies: 1286 | is-primitive "^2.0.0" 1287 | 1288 | is-extendable@^0.1.1: 1289 | version "0.1.1" 1290 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1291 | 1292 | is-extglob@^1.0.0: 1293 | version "1.0.0" 1294 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1295 | 1296 | is-finite@^1.0.0: 1297 | version "1.0.2" 1298 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1299 | dependencies: 1300 | number-is-nan "^1.0.0" 1301 | 1302 | is-fullwidth-code-point@^1.0.0: 1303 | version "1.0.0" 1304 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1305 | dependencies: 1306 | number-is-nan "^1.0.0" 1307 | 1308 | is-fullwidth-code-point@^2.0.0: 1309 | version "2.0.0" 1310 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1311 | 1312 | is-glob@^2.0.0, is-glob@^2.0.1: 1313 | version "2.0.1" 1314 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1315 | dependencies: 1316 | is-extglob "^1.0.0" 1317 | 1318 | is-integer@^1.0.4: 1319 | version "1.0.7" 1320 | resolved "https://registry.yarnpkg.com/is-integer/-/is-integer-1.0.7.tgz#6bde81aacddf78b659b6629d629cadc51a886d5c" 1321 | dependencies: 1322 | is-finite "^1.0.0" 1323 | 1324 | is-my-ip-valid@^1.0.0: 1325 | version "1.0.0" 1326 | resolved "https://registry.yarnpkg.com/is-my-ip-valid/-/is-my-ip-valid-1.0.0.tgz#7b351b8e8edd4d3995d4d066680e664d94696824" 1327 | 1328 | is-my-json-valid@^2.12.4: 1329 | version "2.17.2" 1330 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.17.2.tgz#6b2103a288e94ef3de5cf15d29dd85fc4b78d65c" 1331 | dependencies: 1332 | generate-function "^2.0.0" 1333 | generate-object-property "^1.1.0" 1334 | is-my-ip-valid "^1.0.0" 1335 | jsonpointer "^4.0.0" 1336 | xtend "^4.0.0" 1337 | 1338 | is-number@^2.1.0: 1339 | version "2.1.0" 1340 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1341 | dependencies: 1342 | kind-of "^3.0.2" 1343 | 1344 | is-number@^4.0.0: 1345 | version "4.0.0" 1346 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 1347 | 1348 | is-posix-bracket@^0.1.0: 1349 | version "0.1.1" 1350 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1351 | 1352 | is-primitive@^2.0.0: 1353 | version "2.0.0" 1354 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1355 | 1356 | is-property@^1.0.0: 1357 | version "1.0.2" 1358 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1359 | 1360 | is-typedarray@~1.0.0: 1361 | version "1.0.0" 1362 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1363 | 1364 | isarray@1.0.0, isarray@~1.0.0: 1365 | version "1.0.0" 1366 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1367 | 1368 | isexe@^2.0.0: 1369 | version "2.0.0" 1370 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1371 | 1372 | isobject@^2.0.0: 1373 | version "2.1.0" 1374 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1375 | dependencies: 1376 | isarray "1.0.0" 1377 | 1378 | isparta@4.0.0: 1379 | version "4.0.0" 1380 | resolved "https://registry.yarnpkg.com/isparta/-/isparta-4.0.0.tgz#1de91996f480b22dcb1aca8510255bae1574446e" 1381 | dependencies: 1382 | babel-core "^6.1.4" 1383 | escodegen "^1.6.1" 1384 | esprima "^2.1.0" 1385 | istanbul "^0.4.0" 1386 | mkdirp "^0.5.0" 1387 | nomnomnomnom "^2.0.0" 1388 | object-assign "^4.0.1" 1389 | source-map "^0.5.0" 1390 | which "^1.0.9" 1391 | 1392 | isstream@~0.1.2: 1393 | version "0.1.2" 1394 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1395 | 1396 | istanbul@0.4.3: 1397 | version "0.4.3" 1398 | resolved "https://registry.yarnpkg.com/istanbul/-/istanbul-0.4.3.tgz#5b714ee0ae493ac5ef204b99f3872bceef73d53a" 1399 | dependencies: 1400 | abbrev "1.0.x" 1401 | async "1.x" 1402 | escodegen "1.8.x" 1403 | esprima "2.7.x" 1404 | fileset "0.2.x" 1405 | handlebars "^4.0.1" 1406 | js-yaml "3.x" 1407 | mkdirp "0.5.x" 1408 | nopt "3.x" 1409 | once "1.x" 1410 | resolve "1.1.x" 1411 | supports-color "^3.1.0" 1412 | which "^1.1.1" 1413 | wordwrap "^1.0.0" 1414 | 1415 | istanbul@^0.4.0: 1416 | version "0.4.5" 1417 | resolved "https://registry.yarnpkg.com/istanbul/-/istanbul-0.4.5.tgz#65c7d73d4c4da84d4f3ac310b918fb0b8033733b" 1418 | dependencies: 1419 | abbrev "1.0.x" 1420 | async "1.x" 1421 | escodegen "1.8.x" 1422 | esprima "2.7.x" 1423 | glob "^5.0.15" 1424 | handlebars "^4.0.1" 1425 | js-yaml "3.x" 1426 | mkdirp "0.5.x" 1427 | nopt "3.x" 1428 | once "1.x" 1429 | resolve "1.1.x" 1430 | supports-color "^3.1.0" 1431 | which "^1.1.1" 1432 | wordwrap "^1.0.0" 1433 | 1434 | jade@0.26.3: 1435 | version "0.26.3" 1436 | resolved "https://registry.yarnpkg.com/jade/-/jade-0.26.3.tgz#8f10d7977d8d79f2f6ff862a81b0513ccb25686c" 1437 | dependencies: 1438 | commander "0.6.1" 1439 | mkdirp "0.3.0" 1440 | 1441 | js-tokens@1.0.1: 1442 | version "1.0.1" 1443 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-1.0.1.tgz#cc435a5c8b94ad15acb7983140fc80182c89aeae" 1444 | 1445 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1446 | version "3.0.2" 1447 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1448 | 1449 | js-yaml@3.x: 1450 | version "3.11.0" 1451 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.11.0.tgz#597c1a8bd57152f26d622ce4117851a51f5ebaef" 1452 | dependencies: 1453 | argparse "^1.0.7" 1454 | esprima "^4.0.0" 1455 | 1456 | jsbn@~0.1.0: 1457 | version "0.1.1" 1458 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1459 | 1460 | jsesc@^1.3.0: 1461 | version "1.3.0" 1462 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1463 | 1464 | jsesc@~0.5.0: 1465 | version "0.5.0" 1466 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1467 | 1468 | json-schema@0.2.3: 1469 | version "0.2.3" 1470 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1471 | 1472 | json-stringify-safe@~5.0.1: 1473 | version "5.0.1" 1474 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1475 | 1476 | json2xml@^0.1.2: 1477 | version "0.1.3" 1478 | resolved "https://registry.yarnpkg.com/json2xml/-/json2xml-0.1.3.tgz#9ae7c220bedd7c66a668e26f7ac182f6704eca21" 1479 | 1480 | json5@^0.4.0: 1481 | version "0.4.0" 1482 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.4.0.tgz#054352e4c4c80c86c0923877d449de176a732c8d" 1483 | 1484 | json5@^0.5.1: 1485 | version "0.5.1" 1486 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1487 | 1488 | jsonfile@^2.1.0: 1489 | version "2.4.0" 1490 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" 1491 | optionalDependencies: 1492 | graceful-fs "^4.1.6" 1493 | 1494 | jsonpointer@^4.0.0: 1495 | version "4.0.1" 1496 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 1497 | 1498 | jsprim@^1.2.2: 1499 | version "1.4.1" 1500 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1501 | dependencies: 1502 | assert-plus "1.0.0" 1503 | extsprintf "1.3.0" 1504 | json-schema "0.2.3" 1505 | verror "1.10.0" 1506 | 1507 | kind-of@^3.0.2: 1508 | version "3.2.2" 1509 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1510 | dependencies: 1511 | is-buffer "^1.1.5" 1512 | 1513 | kind-of@^6.0.0: 1514 | version "6.0.2" 1515 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 1516 | 1517 | klaw@^1.0.0: 1518 | version "1.3.1" 1519 | resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" 1520 | optionalDependencies: 1521 | graceful-fs "^4.1.9" 1522 | 1523 | lazy-cache@^1.0.3: 1524 | version "1.0.4" 1525 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1526 | 1527 | lcid@^1.0.0: 1528 | version "1.0.0" 1529 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1530 | dependencies: 1531 | invert-kv "^1.0.0" 1532 | 1533 | lcov-parse@0.0.10: 1534 | version "0.0.10" 1535 | resolved "https://registry.yarnpkg.com/lcov-parse/-/lcov-parse-0.0.10.tgz#1b0b8ff9ac9c7889250582b70b71315d9da6d9a3" 1536 | 1537 | leasot@^4.8.0: 1538 | version "4.13.0" 1539 | resolved "https://registry.yarnpkg.com/leasot/-/leasot-4.13.0.tgz#59edc54bcb2fc5141a0bb3c5c8f69bb6a2a45d62" 1540 | dependencies: 1541 | async "^2.1.2" 1542 | chalk "^2.3.0" 1543 | commander "^2.9.0" 1544 | get-line-from-pos "^1.0.0" 1545 | get-stdin "^5.0.1" 1546 | globby "^7.1.1" 1547 | json2xml "^0.1.2" 1548 | lodash "^4.16.4" 1549 | log-symbols "^2.1.0" 1550 | strip-ansi "^4.0.0" 1551 | text-table "^0.2.0" 1552 | 1553 | leven@^1.0.2: 1554 | version "1.0.2" 1555 | resolved "https://registry.yarnpkg.com/leven/-/leven-1.0.2.tgz#9144b6eebca5f1d0680169f1a6770dcea60b75c3" 1556 | 1557 | levn@~0.3.0: 1558 | version "0.3.0" 1559 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1560 | dependencies: 1561 | prelude-ls "~1.1.2" 1562 | type-check "~0.3.2" 1563 | 1564 | lodash@^3.10.0, lodash@^3.2.0, lodash@^3.9.3: 1565 | version "3.10.1" 1566 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" 1567 | 1568 | lodash@^4.16.4, lodash@^4.17.10, lodash@^4.17.4: 1569 | version "4.17.10" 1570 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7" 1571 | 1572 | log-symbols@^2.1.0: 1573 | version "2.2.0" 1574 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" 1575 | dependencies: 1576 | chalk "^2.0.1" 1577 | 1578 | lolex@1.3.2: 1579 | version "1.3.2" 1580 | resolved "https://registry.yarnpkg.com/lolex/-/lolex-1.3.2.tgz#7c3da62ffcb30f0f5a80a2566ca24e45d8a01f31" 1581 | 1582 | longest@^1.0.1: 1583 | version "1.0.1" 1584 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1585 | 1586 | loose-envify@^1.0.0: 1587 | version "1.3.1" 1588 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1589 | dependencies: 1590 | js-tokens "^3.0.0" 1591 | 1592 | lru-cache@2: 1593 | version "2.7.3" 1594 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.7.3.tgz#6d4524e8b955f95d4f5b58851ce21dd72fb4e952" 1595 | 1596 | matcher-collection@^1.0.0, matcher-collection@^1.0.4: 1597 | version "1.0.5" 1598 | resolved "https://registry.yarnpkg.com/matcher-collection/-/matcher-collection-1.0.5.tgz#2ee095438372cb8884f058234138c05c644ec339" 1599 | dependencies: 1600 | minimatch "^3.0.2" 1601 | 1602 | math-random@^1.0.1: 1603 | version "1.0.1" 1604 | resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.1.tgz#8b3aac588b8a66e4975e3cdea67f7bb329601fac" 1605 | 1606 | micromatch@^2.1.5: 1607 | version "2.3.11" 1608 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1609 | dependencies: 1610 | arr-diff "^2.0.0" 1611 | array-unique "^0.2.1" 1612 | braces "^1.8.2" 1613 | expand-brackets "^0.1.4" 1614 | extglob "^0.3.1" 1615 | filename-regex "^2.0.0" 1616 | is-extglob "^1.0.0" 1617 | is-glob "^2.0.1" 1618 | kind-of "^3.0.2" 1619 | normalize-path "^2.0.1" 1620 | object.omit "^2.0.0" 1621 | parse-glob "^3.0.4" 1622 | regex-cache "^0.4.2" 1623 | 1624 | mime-db@~1.33.0: 1625 | version "1.33.0" 1626 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db" 1627 | 1628 | mime-types@^2.1.12, mime-types@~2.1.7: 1629 | version "2.1.18" 1630 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8" 1631 | dependencies: 1632 | mime-db "~1.33.0" 1633 | 1634 | mime@^1.2.11: 1635 | version "1.6.0" 1636 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" 1637 | 1638 | "minimatch@2 || 3", minimatch@^3.0.2, minimatch@^3.0.4: 1639 | version "3.0.4" 1640 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1641 | dependencies: 1642 | brace-expansion "^1.1.7" 1643 | 1644 | minimatch@2.x, minimatch@^2.0.1, minimatch@^2.0.3: 1645 | version "2.0.10" 1646 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-2.0.10.tgz#8d087c39c6b38c001b97fca7ce6d0e1e80afbac7" 1647 | dependencies: 1648 | brace-expansion "^1.0.0" 1649 | 1650 | minimatch@~0.2.11: 1651 | version "0.2.14" 1652 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-0.2.14.tgz#c74e780574f63c6f9a090e90efbe6ef53a6a756a" 1653 | dependencies: 1654 | lru-cache "2" 1655 | sigmund "~1.0.0" 1656 | 1657 | minimist@0.0.8: 1658 | version "0.0.8" 1659 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1660 | 1661 | minimist@^1.1.0, minimist@^1.2.0: 1662 | version "1.2.0" 1663 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1664 | 1665 | minimist@~0.0.1: 1666 | version "0.0.10" 1667 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 1668 | 1669 | minipass@^2.2.1, minipass@^2.3.3: 1670 | version "2.3.3" 1671 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.3.tgz#a7dcc8b7b833f5d368759cce544dccb55f50f233" 1672 | dependencies: 1673 | safe-buffer "^5.1.2" 1674 | yallist "^3.0.0" 1675 | 1676 | minizlib@^1.1.0: 1677 | version "1.1.0" 1678 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.1.0.tgz#11e13658ce46bc3a70a267aac58359d1e0c29ceb" 1679 | dependencies: 1680 | minipass "^2.2.1" 1681 | 1682 | mkdirp@0.3.0: 1683 | version "0.3.0" 1684 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.3.0.tgz#1bbf5ab1ba827af23575143490426455f481fe1e" 1685 | 1686 | mkdirp@0.5.1, mkdirp@0.5.x, mkdirp@^0.5.0, mkdirp@^0.5.1: 1687 | version "0.5.1" 1688 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1689 | dependencies: 1690 | minimist "0.0.8" 1691 | 1692 | mktemp@~0.4.0: 1693 | version "0.4.0" 1694 | resolved "https://registry.yarnpkg.com/mktemp/-/mktemp-0.4.0.tgz#6d0515611c8a8c84e484aa2000129b98e981ff0b" 1695 | 1696 | mocha@2.4.5: 1697 | version "2.4.5" 1698 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-2.4.5.tgz#151768dd2875eb51bc8295e9800026e9f2bb398f" 1699 | dependencies: 1700 | commander "2.3.0" 1701 | debug "2.2.0" 1702 | diff "1.4.0" 1703 | escape-string-regexp "1.0.2" 1704 | glob "3.2.3" 1705 | growl "1.8.1" 1706 | jade "0.26.3" 1707 | mkdirp "0.5.1" 1708 | supports-color "1.2.0" 1709 | 1710 | ms@0.7.1: 1711 | version "0.7.1" 1712 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 1713 | 1714 | ms@2.0.0: 1715 | version "2.0.0" 1716 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1717 | 1718 | nan@^2.9.2: 1719 | version "2.10.0" 1720 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.10.0.tgz#96d0cd610ebd58d4b4de9cc0c6828cda99c7548f" 1721 | 1722 | needle@^2.2.0: 1723 | version "2.2.1" 1724 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.1.tgz#b5e325bd3aae8c2678902fa296f729455d1d3a7d" 1725 | dependencies: 1726 | debug "^2.1.2" 1727 | iconv-lite "^0.4.4" 1728 | sax "^1.2.4" 1729 | 1730 | node-pre-gyp@^0.10.0: 1731 | version "0.10.0" 1732 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.0.tgz#6e4ef5bb5c5203c6552448828c852c40111aac46" 1733 | dependencies: 1734 | detect-libc "^1.0.2" 1735 | mkdirp "^0.5.1" 1736 | needle "^2.2.0" 1737 | nopt "^4.0.1" 1738 | npm-packlist "^1.1.6" 1739 | npmlog "^4.0.2" 1740 | rc "^1.1.7" 1741 | rimraf "^2.6.1" 1742 | semver "^5.3.0" 1743 | tar "^4" 1744 | 1745 | nomnomnomnom@^2.0.0: 1746 | version "2.0.1" 1747 | resolved "https://registry.yarnpkg.com/nomnomnomnom/-/nomnomnomnom-2.0.1.tgz#b2239f031c8d04da67e32836e1e3199e12f7a8e2" 1748 | dependencies: 1749 | chalk "~0.4.0" 1750 | underscore "~1.6.0" 1751 | 1752 | nopt@3.x: 1753 | version "3.0.6" 1754 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 1755 | dependencies: 1756 | abbrev "1" 1757 | 1758 | nopt@^4.0.1: 1759 | version "4.0.1" 1760 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1761 | dependencies: 1762 | abbrev "1" 1763 | osenv "^0.1.4" 1764 | 1765 | normalize-path@^2.0.0, normalize-path@^2.0.1: 1766 | version "2.1.1" 1767 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1768 | dependencies: 1769 | remove-trailing-separator "^1.0.1" 1770 | 1771 | npm-bundled@^1.0.1: 1772 | version "1.0.3" 1773 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.3.tgz#7e71703d973af3370a9591bafe3a63aca0be2308" 1774 | 1775 | npm-packlist@^1.1.6: 1776 | version "1.1.10" 1777 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.1.10.tgz#1039db9e985727e464df066f4cf0ab6ef85c398a" 1778 | dependencies: 1779 | ignore-walk "^3.0.1" 1780 | npm-bundled "^1.0.1" 1781 | 1782 | npmlog@^4.0.2: 1783 | version "4.1.2" 1784 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1785 | dependencies: 1786 | are-we-there-yet "~1.1.2" 1787 | console-control-strings "~1.1.0" 1788 | gauge "~2.7.3" 1789 | set-blocking "~2.0.0" 1790 | 1791 | number-is-nan@^1.0.0: 1792 | version "1.0.1" 1793 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1794 | 1795 | oauth-sign@~0.8.1: 1796 | version "0.8.2" 1797 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1798 | 1799 | object-assign@^4.0.1, object-assign@^4.1.0: 1800 | version "4.1.1" 1801 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1802 | 1803 | object.omit@^2.0.0: 1804 | version "2.0.1" 1805 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1806 | dependencies: 1807 | for-own "^0.1.4" 1808 | is-extendable "^0.1.1" 1809 | 1810 | on-finished@~2.3.0: 1811 | version "2.3.0" 1812 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 1813 | dependencies: 1814 | ee-first "1.1.1" 1815 | 1816 | once@1.x, once@^1.3.0: 1817 | version "1.4.0" 1818 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1819 | dependencies: 1820 | wrappy "1" 1821 | 1822 | optimist@0.6.x, optimist@^0.6.1: 1823 | version "0.6.1" 1824 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 1825 | dependencies: 1826 | minimist "~0.0.1" 1827 | wordwrap "~0.0.2" 1828 | 1829 | optionator@^0.8.1: 1830 | version "0.8.2" 1831 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1832 | dependencies: 1833 | deep-is "~0.1.3" 1834 | fast-levenshtein "~2.0.4" 1835 | levn "~0.3.0" 1836 | prelude-ls "~1.1.2" 1837 | type-check "~0.3.2" 1838 | wordwrap "~1.0.0" 1839 | 1840 | os-homedir@^1.0.0: 1841 | version "1.0.2" 1842 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1843 | 1844 | os-locale@^1.4.0: 1845 | version "1.4.0" 1846 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 1847 | dependencies: 1848 | lcid "^1.0.0" 1849 | 1850 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 1851 | version "1.0.2" 1852 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1853 | 1854 | osenv@^0.1.4: 1855 | version "0.1.5" 1856 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 1857 | dependencies: 1858 | os-homedir "^1.0.0" 1859 | os-tmpdir "^1.0.0" 1860 | 1861 | output-file-sync@^1.1.0: 1862 | version "1.1.2" 1863 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 1864 | dependencies: 1865 | graceful-fs "^4.1.4" 1866 | mkdirp "^0.5.1" 1867 | object-assign "^4.1.0" 1868 | 1869 | parse-glob@^3.0.4: 1870 | version "3.0.4" 1871 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1872 | dependencies: 1873 | glob-base "^0.3.0" 1874 | is-dotfile "^1.0.0" 1875 | is-extglob "^1.0.0" 1876 | is-glob "^2.0.0" 1877 | 1878 | parseurl@~1.3.2: 1879 | version "1.3.2" 1880 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3" 1881 | 1882 | path-exists@^1.0.0: 1883 | version "1.0.0" 1884 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-1.0.0.tgz#d5a8998eb71ef37a74c34eb0d9eba6e878eea081" 1885 | 1886 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 1887 | version "1.0.1" 1888 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1889 | 1890 | path-parse@^1.0.5: 1891 | version "1.0.5" 1892 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 1893 | 1894 | path-type@^3.0.0: 1895 | version "3.0.0" 1896 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" 1897 | dependencies: 1898 | pify "^3.0.0" 1899 | 1900 | pify@^3.0.0: 1901 | version "3.0.0" 1902 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 1903 | 1904 | pinkie-promise@^2.0.0: 1905 | version "2.0.1" 1906 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1907 | dependencies: 1908 | pinkie "^2.0.0" 1909 | 1910 | pinkie@^2.0.0: 1911 | version "2.0.4" 1912 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1913 | 1914 | prelude-ls@~1.1.2: 1915 | version "1.1.2" 1916 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 1917 | 1918 | preserve@^0.2.0: 1919 | version "0.2.0" 1920 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1921 | 1922 | private@^0.1.6, private@^0.1.8, private@~0.1.5: 1923 | version "0.1.8" 1924 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 1925 | 1926 | process-nextick-args@~2.0.0: 1927 | version "2.0.0" 1928 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 1929 | 1930 | promise-map-series@^0.2.1: 1931 | version "0.2.3" 1932 | resolved "https://registry.yarnpkg.com/promise-map-series/-/promise-map-series-0.2.3.tgz#c2d377afc93253f6bd03dbb77755eb88ab20a847" 1933 | dependencies: 1934 | rsvp "^3.0.14" 1935 | 1936 | punycode@^1.4.1: 1937 | version "1.4.1" 1938 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1939 | 1940 | q@^1.1.2: 1941 | version "1.5.1" 1942 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" 1943 | 1944 | qs@~6.3.0: 1945 | version "6.3.2" 1946 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.2.tgz#e75bd5f6e268122a2a0e0bda630b2550c166502c" 1947 | 1948 | quick-temp@^0.1.2, quick-temp@^0.1.3: 1949 | version "0.1.8" 1950 | resolved "https://registry.yarnpkg.com/quick-temp/-/quick-temp-0.1.8.tgz#bab02a242ab8fb0dd758a3c9776b32f9a5d94408" 1951 | dependencies: 1952 | mktemp "~0.4.0" 1953 | rimraf "^2.5.4" 1954 | underscore.string "~3.3.4" 1955 | 1956 | randomatic@^3.0.0: 1957 | version "3.0.0" 1958 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.0.0.tgz#d35490030eb4f7578de292ce6dfb04a91a128923" 1959 | dependencies: 1960 | is-number "^4.0.0" 1961 | kind-of "^6.0.0" 1962 | math-random "^1.0.1" 1963 | 1964 | rc@^1.1.7: 1965 | version "1.2.8" 1966 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 1967 | dependencies: 1968 | deep-extend "^0.6.0" 1969 | ini "~1.3.0" 1970 | minimist "^1.2.0" 1971 | strip-json-comments "~2.0.1" 1972 | 1973 | readable-stream@^2.0.2, readable-stream@^2.0.6: 1974 | version "2.3.6" 1975 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 1976 | dependencies: 1977 | core-util-is "~1.0.0" 1978 | inherits "~2.0.3" 1979 | isarray "~1.0.0" 1980 | process-nextick-args "~2.0.0" 1981 | safe-buffer "~5.1.1" 1982 | string_decoder "~1.1.1" 1983 | util-deprecate "~1.0.1" 1984 | 1985 | readdirp@^2.0.0: 1986 | version "2.1.0" 1987 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 1988 | dependencies: 1989 | graceful-fs "^4.1.2" 1990 | minimatch "^3.0.2" 1991 | readable-stream "^2.0.2" 1992 | set-immediate-shim "^1.0.1" 1993 | 1994 | recast@0.10.33: 1995 | version "0.10.33" 1996 | resolved "https://registry.yarnpkg.com/recast/-/recast-0.10.33.tgz#942808f7aa016f1fa7142c461d7e5704aaa8d697" 1997 | dependencies: 1998 | ast-types "0.8.12" 1999 | esprima-fb "~15001.1001.0-dev-harmony-fb" 2000 | private "~0.1.5" 2001 | source-map "~0.5.0" 2002 | 2003 | recast@^0.10.10: 2004 | version "0.10.43" 2005 | resolved "https://registry.yarnpkg.com/recast/-/recast-0.10.43.tgz#b95d50f6d60761a5f6252e15d80678168491ce7f" 2006 | dependencies: 2007 | ast-types "0.8.15" 2008 | esprima-fb "~15001.1001.0-dev-harmony-fb" 2009 | private "~0.1.5" 2010 | source-map "~0.5.0" 2011 | 2012 | recast@^0.11.17: 2013 | version "0.11.23" 2014 | resolved "https://registry.yarnpkg.com/recast/-/recast-0.11.23.tgz#451fd3004ab1e4df9b4e4b66376b2a21912462d3" 2015 | dependencies: 2016 | ast-types "0.9.6" 2017 | esprima "~3.1.0" 2018 | private "~0.1.5" 2019 | source-map "~0.5.0" 2020 | 2021 | regenerate@^1.2.1: 2022 | version "1.4.0" 2023 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" 2024 | 2025 | regenerator-runtime@^0.11.0: 2026 | version "0.11.1" 2027 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 2028 | 2029 | regenerator@0.8.40: 2030 | version "0.8.40" 2031 | resolved "https://registry.yarnpkg.com/regenerator/-/regenerator-0.8.40.tgz#a0e457c58ebdbae575c9f8cd75127e93756435d8" 2032 | dependencies: 2033 | commoner "~0.10.3" 2034 | defs "~1.1.0" 2035 | esprima-fb "~15001.1001.0-dev-harmony-fb" 2036 | private "~0.1.5" 2037 | recast "0.10.33" 2038 | through "~2.3.8" 2039 | 2040 | regex-cache@^0.4.2: 2041 | version "0.4.4" 2042 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2043 | dependencies: 2044 | is-equal-shallow "^0.1.3" 2045 | 2046 | regexpu@^1.3.0: 2047 | version "1.3.0" 2048 | resolved "https://registry.yarnpkg.com/regexpu/-/regexpu-1.3.0.tgz#e534dc991a9e5846050c98de6d7dd4a55c9ea16d" 2049 | dependencies: 2050 | esprima "^2.6.0" 2051 | recast "^0.10.10" 2052 | regenerate "^1.2.1" 2053 | regjsgen "^0.2.0" 2054 | regjsparser "^0.1.4" 2055 | 2056 | regjsgen@^0.2.0: 2057 | version "0.2.0" 2058 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2059 | 2060 | regjsparser@^0.1.4: 2061 | version "0.1.5" 2062 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2063 | dependencies: 2064 | jsesc "~0.5.0" 2065 | 2066 | remove-trailing-separator@^1.0.1: 2067 | version "1.1.0" 2068 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2069 | 2070 | repeat-element@^1.1.2: 2071 | version "1.1.2" 2072 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2073 | 2074 | repeat-string@^1.5.2: 2075 | version "1.6.1" 2076 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2077 | 2078 | repeating@^1.1.0, repeating@^1.1.2: 2079 | version "1.1.3" 2080 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-1.1.3.tgz#3d4114218877537494f97f77f9785fab810fa4ac" 2081 | dependencies: 2082 | is-finite "^1.0.0" 2083 | 2084 | repeating@^2.0.0: 2085 | version "2.0.1" 2086 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2087 | dependencies: 2088 | is-finite "^1.0.0" 2089 | 2090 | request@~2.79.0: 2091 | version "2.79.0" 2092 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 2093 | dependencies: 2094 | aws-sign2 "~0.6.0" 2095 | aws4 "^1.2.1" 2096 | caseless "~0.11.0" 2097 | combined-stream "~1.0.5" 2098 | extend "~3.0.0" 2099 | forever-agent "~0.6.1" 2100 | form-data "~2.1.1" 2101 | har-validator "~2.0.6" 2102 | hawk "~3.1.3" 2103 | http-signature "~1.1.0" 2104 | is-typedarray "~1.0.0" 2105 | isstream "~0.1.2" 2106 | json-stringify-safe "~5.0.1" 2107 | mime-types "~2.1.7" 2108 | oauth-sign "~0.8.1" 2109 | qs "~6.3.0" 2110 | stringstream "~0.0.4" 2111 | tough-cookie "~2.3.0" 2112 | tunnel-agent "~0.4.1" 2113 | uuid "^3.0.0" 2114 | 2115 | resolve@1.1.x: 2116 | version "1.1.7" 2117 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2118 | 2119 | resolve@^1.1.6: 2120 | version "1.7.1" 2121 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.7.1.tgz#aadd656374fd298aee895bc026b8297418677fd3" 2122 | dependencies: 2123 | path-parse "^1.0.5" 2124 | 2125 | right-align@^0.1.1: 2126 | version "0.1.3" 2127 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2128 | dependencies: 2129 | align-text "^0.1.1" 2130 | 2131 | rimraf@^2.2.8, rimraf@^2.3.4, rimraf@^2.5.4, rimraf@^2.6.1: 2132 | version "2.6.2" 2133 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2134 | dependencies: 2135 | glob "^7.0.5" 2136 | 2137 | rsvp@^3.0.14, rsvp@^3.0.17, rsvp@^3.0.18: 2138 | version "3.6.2" 2139 | resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-3.6.2.tgz#2e96491599a96cde1b515d5674a8f7a91452926a" 2140 | 2141 | safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2142 | version "5.1.2" 2143 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2144 | 2145 | "safer-buffer@>= 2.1.2 < 3": 2146 | version "2.1.2" 2147 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2148 | 2149 | samsam@1.1.2: 2150 | version "1.1.2" 2151 | resolved "https://registry.yarnpkg.com/samsam/-/samsam-1.1.2.tgz#bec11fdc83a9fda063401210e40176c3024d1567" 2152 | 2153 | samsam@~1.1: 2154 | version "1.1.3" 2155 | resolved "https://registry.yarnpkg.com/samsam/-/samsam-1.1.3.tgz#9f5087419b4d091f232571e7fa52e90b0f552621" 2156 | 2157 | sax@^1.2.4: 2158 | version "1.2.4" 2159 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2160 | 2161 | semver@^5.3.0: 2162 | version "5.5.0" 2163 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 2164 | 2165 | set-blocking@~2.0.0: 2166 | version "2.0.0" 2167 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2168 | 2169 | set-immediate-shim@^1.0.1: 2170 | version "1.0.1" 2171 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2172 | 2173 | shebang-regex@^1.0.0: 2174 | version "1.0.0" 2175 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2176 | 2177 | sigmund@~1.0.0: 2178 | version "1.0.1" 2179 | resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590" 2180 | 2181 | signal-exit@^3.0.0: 2182 | version "3.0.2" 2183 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2184 | 2185 | simple-fmt@~0.1.0: 2186 | version "0.1.0" 2187 | resolved "https://registry.yarnpkg.com/simple-fmt/-/simple-fmt-0.1.0.tgz#191bf566a59e6530482cb25ab53b4a8dc85c3a6b" 2188 | 2189 | simple-is@~0.2.0: 2190 | version "0.2.0" 2191 | resolved "https://registry.yarnpkg.com/simple-is/-/simple-is-0.2.0.tgz#2abb75aade39deb5cc815ce10e6191164850baf0" 2192 | 2193 | sinon-chai@2.8.0: 2194 | version "2.8.0" 2195 | resolved "https://registry.yarnpkg.com/sinon-chai/-/sinon-chai-2.8.0.tgz#432a9bbfd51a6fc00798f4d2526a829c060687ac" 2196 | 2197 | sinon@1.17.4: 2198 | version "1.17.4" 2199 | resolved "https://registry.yarnpkg.com/sinon/-/sinon-1.17.4.tgz#4e4ff4d84b20adee13138f36acb132ca1cd72c83" 2200 | dependencies: 2201 | formatio "1.1.1" 2202 | lolex "1.3.2" 2203 | samsam "1.1.2" 2204 | util ">=0.10.3 <1" 2205 | 2206 | slash@^1.0.0: 2207 | version "1.0.0" 2208 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2209 | 2210 | sntp@1.x.x: 2211 | version "1.0.9" 2212 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2213 | dependencies: 2214 | hoek "2.x.x" 2215 | 2216 | source-map-support@^0.2.10: 2217 | version "0.2.10" 2218 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.2.10.tgz#ea5a3900a1c1cb25096a0ae8cc5c2b4b10ded3dc" 2219 | dependencies: 2220 | source-map "0.1.32" 2221 | 2222 | source-map-support@^0.4.15: 2223 | version "0.4.18" 2224 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 2225 | dependencies: 2226 | source-map "^0.5.6" 2227 | 2228 | source-map@0.1.32: 2229 | version "0.1.32" 2230 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.32.tgz#c8b6c167797ba4740a8ea33252162ff08591b266" 2231 | dependencies: 2232 | amdefine ">=0.0.4" 2233 | 2234 | source-map@^0.4.4: 2235 | version "0.4.4" 2236 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 2237 | dependencies: 2238 | amdefine ">=0.0.4" 2239 | 2240 | source-map@^0.5.0, source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.0, source-map@~0.5.1: 2241 | version "0.5.7" 2242 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2243 | 2244 | source-map@~0.2.0: 2245 | version "0.2.0" 2246 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 2247 | dependencies: 2248 | amdefine ">=0.0.4" 2249 | 2250 | source-map@~0.6.1: 2251 | version "0.6.1" 2252 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2253 | 2254 | sprintf-js@^1.0.3: 2255 | version "1.1.1" 2256 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.1.tgz#36be78320afe5801f6cea3ee78b6e5aab940ea0c" 2257 | 2258 | sprintf-js@~1.0.2: 2259 | version "1.0.3" 2260 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2261 | 2262 | sshpk@^1.7.0: 2263 | version "1.14.1" 2264 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.14.1.tgz#130f5975eddad963f1d56f92b9ac6c51fa9f83eb" 2265 | dependencies: 2266 | asn1 "~0.2.3" 2267 | assert-plus "^1.0.0" 2268 | dashdash "^1.12.0" 2269 | getpass "^0.1.1" 2270 | optionalDependencies: 2271 | bcrypt-pbkdf "^1.0.0" 2272 | ecc-jsbn "~0.1.1" 2273 | jsbn "~0.1.0" 2274 | tweetnacl "~0.14.0" 2275 | 2276 | stable@~0.1.3: 2277 | version "0.1.8" 2278 | resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" 2279 | 2280 | statuses@~1.3.1: 2281 | version "1.3.1" 2282 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" 2283 | 2284 | string-width@^1.0.1: 2285 | version "1.0.2" 2286 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2287 | dependencies: 2288 | code-point-at "^1.0.0" 2289 | is-fullwidth-code-point "^1.0.0" 2290 | strip-ansi "^3.0.0" 2291 | 2292 | "string-width@^1.0.2 || 2": 2293 | version "2.1.1" 2294 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2295 | dependencies: 2296 | is-fullwidth-code-point "^2.0.0" 2297 | strip-ansi "^4.0.0" 2298 | 2299 | string_decoder@~1.1.1: 2300 | version "1.1.1" 2301 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 2302 | dependencies: 2303 | safe-buffer "~5.1.0" 2304 | 2305 | stringmap@~0.2.2: 2306 | version "0.2.2" 2307 | resolved "https://registry.yarnpkg.com/stringmap/-/stringmap-0.2.2.tgz#556c137b258f942b8776f5b2ef582aa069d7d1b1" 2308 | 2309 | stringset@~0.2.1: 2310 | version "0.2.1" 2311 | resolved "https://registry.yarnpkg.com/stringset/-/stringset-0.2.1.tgz#ef259c4e349344377fcd1c913dd2e848c9c042b5" 2312 | 2313 | stringstream@~0.0.4: 2314 | version "0.0.6" 2315 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.6.tgz#7880225b0d4ad10e30927d167a1d6f2fd3b33a72" 2316 | 2317 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2318 | version "3.0.1" 2319 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2320 | dependencies: 2321 | ansi-regex "^2.0.0" 2322 | 2323 | strip-ansi@^4.0.0: 2324 | version "4.0.0" 2325 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2326 | dependencies: 2327 | ansi-regex "^3.0.0" 2328 | 2329 | strip-ansi@~0.1.0: 2330 | version "0.1.1" 2331 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-0.1.1.tgz#39e8a98d044d150660abe4a6808acf70bb7bc991" 2332 | 2333 | strip-json-comments@~2.0.1: 2334 | version "2.0.1" 2335 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2336 | 2337 | supports-color@1.2.0: 2338 | version "1.2.0" 2339 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-1.2.0.tgz#ff1ed1e61169d06b3cf2d588e188b18d8847e17e" 2340 | 2341 | supports-color@^2.0.0: 2342 | version "2.0.0" 2343 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2344 | 2345 | supports-color@^3.1.0: 2346 | version "3.2.3" 2347 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 2348 | dependencies: 2349 | has-flag "^1.0.0" 2350 | 2351 | supports-color@^5.3.0: 2352 | version "5.4.0" 2353 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.4.0.tgz#1c6b337402c2137605efe19f10fec390f6faab54" 2354 | dependencies: 2355 | has-flag "^3.0.0" 2356 | 2357 | symlink-or-copy@^1.0.1, symlink-or-copy@^1.1.8: 2358 | version "1.2.0" 2359 | resolved "https://registry.yarnpkg.com/symlink-or-copy/-/symlink-or-copy-1.2.0.tgz#5d49108e2ab824a34069b68974486c290020b393" 2360 | 2361 | tar@^4: 2362 | version "4.4.4" 2363 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.4.tgz#ec8409fae9f665a4355cc3b4087d0820232bb8cd" 2364 | dependencies: 2365 | chownr "^1.0.1" 2366 | fs-minipass "^1.2.5" 2367 | minipass "^2.3.3" 2368 | minizlib "^1.1.0" 2369 | mkdirp "^0.5.0" 2370 | safe-buffer "^5.1.2" 2371 | yallist "^3.0.2" 2372 | 2373 | text-table@^0.2.0: 2374 | version "0.2.0" 2375 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2376 | 2377 | through@~2.3.8: 2378 | version "2.3.8" 2379 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2380 | 2381 | to-fast-properties@^1.0.0, to-fast-properties@^1.0.3: 2382 | version "1.0.3" 2383 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2384 | 2385 | tough-cookie@~2.3.0: 2386 | version "2.3.4" 2387 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655" 2388 | dependencies: 2389 | punycode "^1.4.1" 2390 | 2391 | trim-right@^1.0.0, trim-right@^1.0.1: 2392 | version "1.0.1" 2393 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2394 | 2395 | try-resolve@^1.0.0: 2396 | version "1.0.1" 2397 | resolved "https://registry.yarnpkg.com/try-resolve/-/try-resolve-1.0.1.tgz#cfde6fabd72d63e5797cfaab873abbe8e700e912" 2398 | 2399 | tryor@~0.1.2: 2400 | version "0.1.2" 2401 | resolved "https://registry.yarnpkg.com/tryor/-/tryor-0.1.2.tgz#8145e4ca7caff40acde3ccf946e8b8bb75b4172b" 2402 | 2403 | tunnel-agent@~0.4.1: 2404 | version "0.4.3" 2405 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 2406 | 2407 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2408 | version "0.14.5" 2409 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2410 | 2411 | type-check@~0.3.2: 2412 | version "0.3.2" 2413 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2414 | dependencies: 2415 | prelude-ls "~1.1.2" 2416 | 2417 | type-detect@0.1.1: 2418 | version "0.1.1" 2419 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-0.1.1.tgz#0ba5ec2a885640e470ea4e8505971900dac58822" 2420 | 2421 | type-detect@^1.0.0: 2422 | version "1.0.0" 2423 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-1.0.0.tgz#762217cc06db258ec48908a1298e8b95121e8ea2" 2424 | 2425 | uglify-js@^2.6: 2426 | version "2.8.29" 2427 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 2428 | dependencies: 2429 | source-map "~0.5.1" 2430 | yargs "~3.10.0" 2431 | optionalDependencies: 2432 | uglify-to-browserify "~1.0.0" 2433 | 2434 | uglify-to-browserify@~1.0.0: 2435 | version "1.0.2" 2436 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 2437 | 2438 | underscore.string@~3.3.4: 2439 | version "3.3.4" 2440 | resolved "https://registry.yarnpkg.com/underscore.string/-/underscore.string-3.3.4.tgz#2c2a3f9f83e64762fdc45e6ceac65142864213db" 2441 | dependencies: 2442 | sprintf-js "^1.0.3" 2443 | util-deprecate "^1.0.2" 2444 | 2445 | underscore@~1.6.0: 2446 | version "1.6.0" 2447 | resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.6.0.tgz#8b38b10cacdef63337b8b24e4ff86d45aea529a8" 2448 | 2449 | unpipe@~1.0.0: 2450 | version "1.0.0" 2451 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 2452 | 2453 | user-home@^1.1.1: 2454 | version "1.1.1" 2455 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 2456 | 2457 | util-deprecate@^1.0.2, util-deprecate@~1.0.1: 2458 | version "1.0.2" 2459 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2460 | 2461 | "util@>=0.10.3 <1": 2462 | version "0.10.3" 2463 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 2464 | dependencies: 2465 | inherits "2.0.1" 2466 | 2467 | utils-merge@1.0.1: 2468 | version "1.0.1" 2469 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" 2470 | 2471 | uuid@^3.0.0: 2472 | version "3.2.1" 2473 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" 2474 | 2475 | verror@1.10.0: 2476 | version "1.10.0" 2477 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 2478 | dependencies: 2479 | assert-plus "^1.0.0" 2480 | core-util-is "1.0.2" 2481 | extsprintf "^1.2.0" 2482 | 2483 | walk-sync@^0.2.6: 2484 | version "0.2.7" 2485 | resolved "https://registry.yarnpkg.com/walk-sync/-/walk-sync-0.2.7.tgz#b49be4ee6867657aeb736978b56a29d10fa39969" 2486 | dependencies: 2487 | ensure-posix-path "^1.0.0" 2488 | matcher-collection "^1.0.0" 2489 | 2490 | which@^1.0.9, which@^1.1.1: 2491 | version "1.3.1" 2492 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 2493 | dependencies: 2494 | isexe "^2.0.0" 2495 | 2496 | wide-align@^1.1.0: 2497 | version "1.1.3" 2498 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 2499 | dependencies: 2500 | string-width "^1.0.2 || 2" 2501 | 2502 | window-size@0.1.0: 2503 | version "0.1.0" 2504 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 2505 | 2506 | window-size@^0.1.2: 2507 | version "0.1.4" 2508 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.4.tgz#f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876" 2509 | 2510 | wordwrap@0.0.2: 2511 | version "0.0.2" 2512 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 2513 | 2514 | wordwrap@^1.0.0, wordwrap@~1.0.0: 2515 | version "1.0.0" 2516 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2517 | 2518 | wordwrap@~0.0.2: 2519 | version "0.0.3" 2520 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 2521 | 2522 | wr@1.3.1: 2523 | version "1.3.1" 2524 | resolved "https://registry.yarnpkg.com/wr/-/wr-1.3.1.tgz#4214dfc0a738df84fc9af2d5f77d972aabc3a806" 2525 | dependencies: 2526 | colors "0.6.x" 2527 | optimist "0.6.x" 2528 | 2529 | wrappy@1: 2530 | version "1.0.2" 2531 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2532 | 2533 | xtend@^4.0.0: 2534 | version "4.0.1" 2535 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2536 | 2537 | y18n@^3.2.0: 2538 | version "3.2.1" 2539 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 2540 | 2541 | yallist@^3.0.0, yallist@^3.0.2: 2542 | version "3.0.2" 2543 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.2.tgz#8452b4bb7e83c7c188d8041c1a837c773d6d8bb9" 2544 | 2545 | yargs@~3.10.0: 2546 | version "3.10.0" 2547 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 2548 | dependencies: 2549 | camelcase "^1.0.2" 2550 | cliui "^2.1.0" 2551 | decamelize "^1.0.0" 2552 | window-size "0.1.0" 2553 | 2554 | yargs@~3.27.0: 2555 | version "3.27.0" 2556 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.27.0.tgz#21205469316e939131d59f2da0c6d7f98221ea40" 2557 | dependencies: 2558 | camelcase "^1.2.1" 2559 | cliui "^2.1.0" 2560 | decamelize "^1.0.0" 2561 | os-locale "^1.4.0" 2562 | window-size "^0.1.2" 2563 | y18n "^3.2.0" 2564 | --------------------------------------------------------------------------------