├── .gitignore ├── .npmignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── __tests__ └── alder.spec.js ├── alder.js ├── fixtures ├── .gitignore ├── README.md ├── bar │ ├── bar.js │ ├── baz.txt │ └── foo.js ├── baz │ └── baz.js ├── foo │ ├── README.md │ ├── bar.js │ └── foo.js ├── foobar.java ├── foobarbaz.txt └── zulu.rs ├── package.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | __tests__/__snapshots__ -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | fixtures 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "7" 4 | - "6" 5 | - "5" 6 | cache: 7 | directories: 8 | - __tests__/__snapshots__ -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. 6 | 7 | ## Our Standards 8 | 9 | Examples of behavior that contributes to creating a positive environment include: 10 | 11 | * Using welcoming and inclusive language 12 | * Being respectful of differing viewpoints and experiences 13 | * Gracefully accepting constructive criticism 14 | * Focusing on what is best for the community 15 | * Showing empathy towards other community members 16 | 17 | Examples of unacceptable behavior by participants include: 18 | 19 | * The use of sexualized language or imagery and unwelcome sexual attention or advances 20 | * Trolling, insulting/derogatory comments, and personal or political attacks 21 | * Public or private harassment 22 | * Publishing others' private information, such as a physical or electronic address, without explicit permission 23 | * Other conduct which could reasonably be considered inappropriate in a professional setting 24 | 25 | ## Our Responsibilities 26 | 27 | Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. 28 | 29 | Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. 30 | 31 | ## Scope 32 | 33 | This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. 34 | 35 | ## Enforcement 36 | 37 | Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at kierkegaurd@gmail.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. 38 | 39 | Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. 40 | 41 | ## Attribution 42 | 43 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] 44 | 45 | [homepage]: http://contributor-covenant.org 46 | [version]: http://contributor-covenant.org/version/1/4/ 47 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright © 2017 Brandon Dail 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | 5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 6 | 7 | THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # alder 🌳 2 | A recursive directory listing program that supports file-size reporting, and pattern matching. Inspired by the [`tree`](http://www.computerhope.com/unix/tree.htm) 3 | UNIX command. 4 | 5 | ![Alder: the better tree printer](http://i.imgur.com/8qhaxvG.png) 6 | 7 | ## Installation 8 | `alder` should be installed globally using `yarn`. 9 | ``` 10 | yarn global add @aweary/alder 11 | ``` 12 | or with `npm`: 13 | ``` 14 | npm install -g @aweary/alder 15 | ``` 16 | 17 | ## Usage 18 | 19 | ``` 20 | Usage: alder [options] [target] 21 | 22 | Options: 23 | 24 | -h, --help output usage information 25 | -a, --all Print all files, including hidden files 26 | -d, --depth Only render the tree to a specific depth 27 | -D, --directories Only print directories 28 | -e, --exclude Exclude files matching a pattern 29 | -f, --full Print the full path prefix for each file 30 | -i, --no-indent Tree will not print the indentation lines 31 | -I, --git-ignore Exclude files in .gitignore 32 | -p, --include Include only files that match a pattern 33 | -s, --sizes Show file sizes in tree 34 | -t, --time-stamp Print the last modified date for each file 35 | -V, --version output the version number 36 | --prune Prune empty directories from the output 37 | --filelimit Do not descend directories that contain more than # entries 38 | --jsx Print directory structure as JSX 39 | ``` 40 | 41 | ### Exclude pattern 42 | 43 | You can pass a string that will be parsed as a regular expression to `--exclude`: 44 | 45 | ```sh 46 | # excluding single directory 47 | alder --exclude=.git 48 | 49 | # excluding multiple directories 50 | alder --exclude=".git|bower_components|node_modules" 51 | ``` 52 | 53 | ### Include pattern 54 | 55 | You can pass a string that will be parsed as a regular expression to `--include`: 56 | 57 | ```sh 58 | # including single file pattern 59 | alder --include=package 60 | 61 | # including multiple files patterns 62 | alder --include="package|webpack" 63 | ``` 64 | -------------------------------------------------------------------------------- /__tests__/alder.spec.js: -------------------------------------------------------------------------------- 1 | const child_process = require('child_process') 2 | const path = require('path') 3 | 4 | const alder = path.resolve(__dirname, './../alder.js') 5 | 6 | 7 | const execute = (args, cb) => { 8 | child_process.exec(`${alder} fixtures ${args}`, {}, (err, stdout, stderr) => { 9 | if (err) { 10 | throw err 11 | } 12 | expect(stdout).toMatchSnapshot() 13 | typeof cb !== 'undefined' && cb() 14 | }) 15 | } 16 | 17 | describe('alder', () => { 18 | it(`works with 0 arguments/flags`, (done) => { 19 | execute(``, done) 20 | }) 21 | 22 | it(`only renders the tree to a depth of 1`, (done) => { 23 | execute(`--depth 1`, done) && execute(`-d 1`, done) 24 | }) 25 | 26 | it(`only prints directories`, (done) => { 27 | execute(`-D`, done) && execute(`--directories`, done) 28 | }) 29 | 30 | it(`excludes files matching pattern (bar)`, (done) => { 31 | execute(`-e bar`, done) && execute(`--exclude bar`, done) 32 | }) 33 | 34 | it(`prints the full path prefix for each file`, (done) => { 35 | execute(`-f`, done) && execute(`--full`, done) 36 | }) 37 | 38 | it(`will not print indentation lines`, (done) => { 39 | execute(`-i`, done) && execute(`--no-indent`, done) 40 | }) 41 | 42 | it(`ignores files listed in .gitignore (foo folder)`, (done) => { 43 | execute(`-I`, done) && execute(`--git-ignore`, done) 44 | }) 45 | 46 | it(`will only show files matching pattern (foo)`, (done) => { 47 | execute(`-p foo`, done) && execute(`--include foo`, done) 48 | }) 49 | 50 | it(`shows file size in tree`, (done) => { 51 | execute(`-s`, done) && execute(`--sizes`, done) 52 | }) 53 | 54 | it(`prints the last modified date for each file`, (done) => { 55 | execute(`-t`, done) && execute(`--time-stamp`, done) 56 | }) 57 | 58 | it(`prunes empty directories from output`, (done) => { 59 | execute(`--prune`, done) 60 | }) 61 | 62 | it(`only descends directories with <2 files`, (done) => { 63 | execute(`--filelimit 2`, done) 64 | }) 65 | 66 | it(`makes everything all jsxexy`, (done) => { 67 | execute(`--jsx`, done) 68 | }) 69 | }) 70 | -------------------------------------------------------------------------------- /alder.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 'use strict' 3 | 4 | const fs = require('fs') 5 | const path = require('path') 6 | const prettybytes = require('pretty-bytes') 7 | const chalk = require('chalk') 8 | const program = require('commander') 9 | const tinytime = require('tinytime') 10 | const minimatch = require('minimatch') 11 | 12 | program.version('2.0.0') 13 | .arguments('[target]') 14 | .option('-a, --all', 'Print all files, including hidden files') 15 | .option('-d, --depth ', 'Only render the tree to a specific depth', parseInt) 16 | .option('-D, --directories', 'Only print directories') 17 | .option('-e, --exclude ', 'Exclude files matching a pattern') 18 | .option('-f, --full', 'Print the full path prefix for each file') 19 | .option('-i, --no-indent', 'Tree will not print the indentation lines') 20 | .option('-I, --git-ignore', 'Exclude files in .gitignore') 21 | .option('-p, --include ', 'Pattern to include only files that match a pattern') 22 | .option('-s, --sizes', 'Show file sizes in tree') 23 | .option('-t, --time-stamp', 'Print the last modified date for each file') 24 | .option('--prune', 'Prune empty directories from the output') 25 | .option('--filelimit ', 'Do not descend directories that contain more than # entries', parseInt) 26 | .option('--jsx', 'Print directory structure as JSX') 27 | .parse(process.argv) 28 | 29 | /** 30 | * Whitespace is included for easy-on-the-eyes padding 31 | */ 32 | const BOX_BOTTOM_LEFT = ' └── ' 33 | const BOX_INTERSECTION = ' ├── ' 34 | const BOX_VERTICAL = ' │ ' 35 | const EMPTY = ' ' 36 | 37 | const input = program.args[0] || '.'; 38 | const cwd = process.env.PWD; 39 | const root = path.resolve(cwd, input) 40 | const maxDepth = program.depth || Infinity 41 | const fileLimit = program.filelimit || Infinity 42 | const showSize = program.sizes 43 | const showFullPath = !!program.full 44 | const showAllFiles = !!program.all 45 | const showTimeStamp = !!program.timeStamp 46 | const showOnlyDirectories = !!program.directories 47 | const hideFilesInGitIgnore = !!program.gitIgnore 48 | const pruneEmptyDirectories = !!program.prune 49 | const printJSX = program.jsx 50 | const shouldIndent = typeof program.indent === 'undefined' ? true : program.indent 51 | const hasExcludePattern = typeof program.exclude !== 'undefined' 52 | const hasIncludePattern = typeof program.include !== 'undefined' 53 | const excludePattern = new RegExp(program.exclude) 54 | const includePattern = new RegExp(program.include) 55 | const dateTemplate = tinytime('[{MM} {DD} {h}:{mm}] ', { padDays :true, padHours: true }) 56 | 57 | if (hasExcludePattern && hasIncludePattern) { 58 | throw new Error('Exclude patterns and include patterns cannot be used together.') 59 | } 60 | 61 | let output = '\n ' + input + '\n' 62 | 63 | const colors = ['blue', 'magenta', 'cyan', 'red', 'white'] 64 | const depths = {} 65 | 66 | let fileCount = 0 67 | let directoryCount = 0 68 | let totalFileSize = 0 69 | 70 | /** 71 | * If available, it reads the `.gitignore` file in the current 72 | * directory and parses it into a list of glob patterns, removing 73 | * empty lines and comments 74 | */ 75 | function readGitignore(directory) { 76 | const gitignorePath = `${directory}/.gitignore` 77 | try { 78 | const gitignoreRaw = fs.readFileSync(gitignorePath, 'utf-8') 79 | const gitignoreList = gitignoreRaw.split('\n') 80 | .filter(function (line) { 81 | return line !== '' && !line.startsWith('#') 82 | }) 83 | .map(function (line) { 84 | // lines such as `/node_modules` in `.gitignore` are not used 85 | // the same way by minimatch. In order for the matching to work 86 | // we need to remove the starting `/` 87 | return line.startsWith('/') ? line.slice(1) : line 88 | }) 89 | return gitignoreList 90 | } catch (e) { 91 | return [] 92 | } 93 | } 94 | 95 | /** 96 | * Pads filenames with either whitespace or box characters. 97 | * The depths map is used to track whether a character should 98 | * be whitespace or a vertical character. Typically it will 99 | * be whitespace if there are no other files at that depth 100 | * that need to be rendered. 101 | * @param {Number} depth the level at which this file/filder is nested 102 | * @param {Boolean} bottom whether this is the last file in the folder 103 | */ 104 | function buildPrefix(depth, bottom) { 105 | if (!shouldIndent) { 106 | return '' 107 | } 108 | let prefix = bottom ? BOX_BOTTOM_LEFT : BOX_INTERSECTION 109 | let spacing = [] 110 | let spaceIndex = 0 111 | while(spaceIndex < depth) { 112 | spacing[spaceIndex] = depths[spaceIndex] && !printJSX ? BOX_VERTICAL : EMPTY 113 | spaceIndex++ 114 | } 115 | return printJSX ? spacing.join('') : spacing.join('') + prefix 116 | } 117 | 118 | /** 119 | * Uses either the exclude or include pattern to determine 120 | * if a file should be shown. 121 | * @param {String} file filename 122 | */ 123 | function shouldBeIncluded(file) { 124 | 125 | if (!showAllFiles && file[0] === '.') { 126 | return false 127 | } 128 | if (hasExcludePattern) { 129 | return !excludePattern.test(file) 130 | } 131 | if (hasIncludePattern) { 132 | return includePattern.test(file) 133 | } 134 | return true 135 | } 136 | 137 | function createJSXTags(filename, isDirectory, size, fullPath) { 138 | const tag = isDirectory ? 'dir' : 'file' 139 | const empty = isDirectory && (fs.readdirSync(fullPath).length > 0) 140 | return { 141 | open: empty && (fs.readdirSync(fullPath).length > 0) 142 | ? `<${tag} ${isDirectory ? '' : chalk.cyan("size=")}"${size}" ${chalk.cyan("name=")}"${filename}">` 143 | : `<${tag} ${chalk.cyan("size=")}"${size}" ${chalk.cyan("name=")}"${filename}" />`, 144 | close: empty ? `` : null 145 | } 146 | } 147 | 148 | /** 149 | * Depth-first recursive traversal utility for 150 | * building up the output string. 151 | */ 152 | function buildTree(directory, depth, parentGitignoreList) { 153 | const files = fs.readdirSync(directory); 154 | const max_index = files.length - 1 155 | const color = chalk[colors[depth % colors.length]] 156 | parentGitignoreList = parentGitignoreList || [] 157 | const gitignoreList = hideFilesInGitIgnore 158 | ? parentGitignoreList.concat(readGitignore(directory)) 159 | : [] 160 | 161 | for (let i = 0; i <= max_index; i++) { 162 | const file = files[i] 163 | depths[depth] = max_index - i 164 | const fullPath = path.resolve(directory, file) 165 | let printWithoutDescending = false 166 | let postfix = '' 167 | let prefix = buildPrefix(depth, i === max_index, directory) 168 | const stats = fs.statSync(fullPath) 169 | const isDirectory = stats.isDirectory() 170 | const size = prettybytes(stats.size) 171 | 172 | if (showTimeStamp) { 173 | prefix += dateTemplate.render(new Date(stats.mtime)) 174 | } 175 | 176 | if (isDirectory) { 177 | directoryCount++ 178 | } else { 179 | fileCount++ 180 | totalFileSize += stats.size 181 | } 182 | 183 | if (!shouldBeIncluded(file)) { 184 | continue 185 | } 186 | 187 | if (hideFilesInGitIgnore) { 188 | let matchesGitIgnoreEntry = false 189 | let m = gitignoreList.length 190 | while (!matchesGitIgnoreEntry && m > 0) { 191 | matchesGitIgnoreEntry = minimatch(file, gitignoreList[m - 1]) 192 | m-- 193 | } 194 | 195 | if (matchesGitIgnoreEntry) { 196 | continue 197 | } 198 | } 199 | 200 | if (!isDirectory && showOnlyDirectories) { 201 | continue 202 | } 203 | 204 | if (isDirectory) { 205 | if (fileLimit !== Infinity || pruneEmptyDirectories) { 206 | const dirfiles = fs.readdirSync(fullPath).filter(shouldBeIncluded) 207 | if (pruneEmptyDirectories && dirfiles.length === 0) { 208 | continue 209 | } 210 | if (dirfiles.length > fileLimit) { 211 | printWithoutDescending = true 212 | postfix = ` [${dirfiles.length} entries exceeds filelimit (${fileLimit}), not opening dir]` 213 | } 214 | } 215 | } 216 | 217 | const filename = showFullPath ? color(fullPath.replace(cwd + '/', '')) : color(file) 218 | const JSXTags = createJSXTags(filename, isDirectory, size, fullPath) 219 | 220 | if (printJSX) { 221 | output += prefix + JSXTags.open + '\n' 222 | } else { 223 | output += prefix + filename + (!isDirectory && showSize ? ` (${size})` : '') + postfix + '\n'; 224 | } 225 | if (printWithoutDescending) { 226 | continue 227 | } 228 | if (isDirectory && (depth + 1 < maxDepth)) { 229 | buildTree(path.resolve(directory, file), depth + 1, gitignoreList) 230 | } 231 | if (printJSX && JSXTags.close) { 232 | output += prefix + JSXTags.close + '\n' 233 | } 234 | --depths[depth] 235 | } 236 | } 237 | // Kick off the recursive printing process. 238 | buildTree(root, 0) 239 | 240 | output += directoryCount + ' directories, ' 241 | output += fileCount + ' files' 242 | output += ' (' + prettybytes(totalFileSize) + ')\n' 243 | 244 | process.stdout.write(output) 245 | -------------------------------------------------------------------------------- /fixtures/.gitignore: -------------------------------------------------------------------------------- 1 | foo -------------------------------------------------------------------------------- /fixtures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aweary/alder/edf7c40a7a95b61e82a0685bdb720eac47777d01/fixtures/README.md -------------------------------------------------------------------------------- /fixtures/bar/bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aweary/alder/edf7c40a7a95b61e82a0685bdb720eac47777d01/fixtures/bar/bar.js -------------------------------------------------------------------------------- /fixtures/bar/baz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aweary/alder/edf7c40a7a95b61e82a0685bdb720eac47777d01/fixtures/bar/baz.txt -------------------------------------------------------------------------------- /fixtures/bar/foo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aweary/alder/edf7c40a7a95b61e82a0685bdb720eac47777d01/fixtures/bar/foo.js -------------------------------------------------------------------------------- /fixtures/baz/baz.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | const fs = require('fs') 3 | const path = require('path') 4 | const prettybytes = require('pretty-bytes') 5 | const chalk = require('chalk') 6 | const random = require('unique-random-at-depth') 7 | const argv = require('yargs').argv 8 | 9 | /** 10 | * Whitespace is included for easy-on-the-eyes padding 11 | */ 12 | const BOX_BOTTOM_LEFT = ' └── ' 13 | const BOX_INTERSECTION = ' ├── ' 14 | const BOX_VERTICAL = ' │ ' 15 | const EMPTY = ' ' 16 | 17 | const input = argv._[0] || '.'; 18 | const cwd = process.env.PWD; 19 | const target = path.resolve(cwd, input) 20 | const useColors = typeof argv.colors === 'undefined' ? true : argv.colors 21 | const maxDepth = argv.depth || Infinity 22 | const hasIgnorePattern = typeof argv.ignore !== 'undefined' 23 | const hasIncludePattern = typeof argv.include !== 'undefined' 24 | const showSize = argv.sizes || argv.size 25 | const ignorePattern = new RegExp(argv.ignore) 26 | const includePattern = new RegExp(argv.include) 27 | 28 | if (hasIgnorePattern && hasIncludePattern) { 29 | throw new Error('Ignore patterns and include patterns cannot be used together.') 30 | } 31 | 32 | let output = '\n ' + input + '\n' 33 | 34 | const colors = ['blue', 'magenta', 'cyan', 'red', 'white'] 35 | const depths = {} 36 | 37 | let fileCount = 0 38 | let directoryCount = 0 39 | let totalFileSize = 0 40 | 41 | /** 42 | * Pads filenames with either whitespace or box characters. 43 | * The depths map is used to track whether a character should 44 | * be whitespace or a vertical character. Typically it will 45 | * be whitespace if there are no other files at that depth 46 | * that need to be rendered. 47 | * @param {Number} depth the level at which this file/filder is nested 48 | * @param {Boolean} bottom whether this is the last file in the folder 49 | */ 50 | function buildPrefix(depth, bottom) { 51 | let prefix = bottom ? BOX_BOTTOM_LEFT : BOX_INTERSECTION 52 | let spacing = [] 53 | let spaceIndex = 0 54 | while(spaceIndex < depth) { 55 | spacing[spaceIndex] = depths[spaceIndex] ? BOX_VERTICAL : EMPTY 56 | spaceIndex++ 57 | } 58 | return spacing.join('') + prefix 59 | } 60 | 61 | /** 62 | * Uses either the ignore or include pattern to determine 63 | * if a file should be shown. 64 | * @param {String} file filename 65 | */ 66 | function shouldBeIncluded(file) { 67 | let isIncluded = false 68 | let isIgnored = false 69 | if (hasIgnorePattern) { 70 | return !ignorePattern.test(file) 71 | } 72 | if (hasIncludePattern) { 73 | return includePattern.test(file) 74 | } 75 | return true 76 | } 77 | 78 | /** 79 | * Depth-first recursive traversal utility for 80 | * building up the output string. 81 | */ 82 | function buildTree(directory, depth) { 83 | const files = fs.readdirSync(directory); 84 | const max_index = files.length - 1 85 | const color = chalk[colors[depth % colors.length]] 86 | 87 | for (let i = 0; i <= max_index; i++) { 88 | const file = files[i] 89 | depths[depth] = max_index - i 90 | const fullPath = path.resolve(directory, file) 91 | const prefix = buildPrefix(depth, i === max_index, directory) 92 | const stats = fs.statSync(fullPath) 93 | const isDirectory = stats.isDirectory() 94 | const size = prettybytes(stats.size) 95 | 96 | if (isDirectory) { 97 | directoryCount++ 98 | } else { 99 | fileCount++ 100 | totalFileSize += stats.size 101 | } 102 | 103 | if (!isDirectory && !shouldBeIncluded(file)) { 104 | return 105 | } 106 | 107 | const filename = useColors ? color(file) : file 108 | output += prefix + filename + (!isDirectory && showSize ? ` (${size})` : '') + '\n'; 109 | if (isDirectory && (depth + 1 < maxDepth)) { 110 | buildTree(path.resolve(directory, file), depth + 1) 111 | } 112 | --depths[depth] 113 | } 114 | } 115 | // Kick off the recursive printing process. 116 | buildTree(target, 0) 117 | 118 | output += directoryCount + ' directories, ' 119 | output += fileCount + ' files' 120 | output += ' (' + prettybytes(totalFileSize) + ')\n' 121 | 122 | process.stdout.write(output) -------------------------------------------------------------------------------- /fixtures/foo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aweary/alder/edf7c40a7a95b61e82a0685bdb720eac47777d01/fixtures/foo/README.md -------------------------------------------------------------------------------- /fixtures/foo/bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aweary/alder/edf7c40a7a95b61e82a0685bdb720eac47777d01/fixtures/foo/bar.js -------------------------------------------------------------------------------- /fixtures/foo/foo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aweary/alder/edf7c40a7a95b61e82a0685bdb720eac47777d01/fixtures/foo/foo.js -------------------------------------------------------------------------------- /fixtures/foobar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aweary/alder/edf7c40a7a95b61e82a0685bdb720eac47777d01/fixtures/foobar.java -------------------------------------------------------------------------------- /fixtures/foobarbaz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aweary/alder/edf7c40a7a95b61e82a0685bdb720eac47777d01/fixtures/foobarbaz.txt -------------------------------------------------------------------------------- /fixtures/zulu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aweary/alder/edf7c40a7a95b61e82a0685bdb720eac47777d01/fixtures/zulu.rs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@aweary/alder", 3 | "version": "2.0.0", 4 | "main": "tree.js", 5 | "repository": { 6 | "type": "git", 7 | "url": "https://github.com/aweary/tree.git" 8 | }, 9 | "license": "MIT", 10 | "author": { 11 | "name": "Brandon Dail", 12 | "email": "cottoncrypt@gmail.com", 13 | "url": "https://www.twitter.com/aweary" 14 | }, 15 | "engines": { 16 | "node": ">=4" 17 | }, 18 | "bin": { 19 | "alder": "alder.js" 20 | }, 21 | "scripts": { 22 | "test": "jest" 23 | }, 24 | "dependencies": { 25 | "chalk": "^1.1.3", 26 | "commander": "^2.9.0", 27 | "minimatch": "^3.0.3", 28 | "pretty-bytes": "^4.0.2", 29 | "tinytime": "^0.2.0" 30 | }, 31 | "devDependencies": { 32 | "jest": "^18.1.0" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abab@^1.0.0: 6 | version "1.0.3" 7 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d" 8 | 9 | acorn-globals@^1.0.4: 10 | version "1.0.9" 11 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-1.0.9.tgz#55bb5e98691507b74579d0513413217c380c54cf" 12 | dependencies: 13 | acorn "^2.1.0" 14 | 15 | acorn@^2.1.0, acorn@^2.4.0: 16 | version "2.7.0" 17 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-2.7.0.tgz#ab6e7d9d886aaca8b085bc3312b79a198433f0e7" 18 | 19 | align-text@^0.1.1, align-text@^0.1.3: 20 | version "0.1.4" 21 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 22 | dependencies: 23 | kind-of "^3.0.2" 24 | longest "^1.0.1" 25 | repeat-string "^1.5.2" 26 | 27 | amdefine@>=0.0.4: 28 | version "1.0.1" 29 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 30 | 31 | ansi-escapes@^1.4.0: 32 | version "1.4.0" 33 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 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-styles@^2.2.1: 40 | version "2.2.1" 41 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 42 | 43 | ansicolors@~0.2.1: 44 | version "0.2.1" 45 | resolved "https://registry.yarnpkg.com/ansicolors/-/ansicolors-0.2.1.tgz#be089599097b74a5c9c4a84a0cdbcdb62bd87aef" 46 | 47 | append-transform@^0.4.0: 48 | version "0.4.0" 49 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 50 | dependencies: 51 | default-require-extensions "^1.0.0" 52 | 53 | argparse@^1.0.7: 54 | version "1.0.9" 55 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 56 | dependencies: 57 | sprintf-js "~1.0.2" 58 | 59 | arr-diff@^2.0.0: 60 | version "2.0.0" 61 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 62 | dependencies: 63 | arr-flatten "^1.0.1" 64 | 65 | arr-flatten@^1.0.1: 66 | version "1.0.1" 67 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 68 | 69 | array-equal@^1.0.0: 70 | version "1.0.0" 71 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 72 | 73 | array-unique@^0.2.1: 74 | version "0.2.1" 75 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 76 | 77 | arrify@^1.0.1: 78 | version "1.0.1" 79 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 80 | 81 | asn1@~0.2.3: 82 | version "0.2.3" 83 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 84 | 85 | assert-plus@^0.2.0: 86 | version "0.2.0" 87 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 88 | 89 | assert-plus@^1.0.0: 90 | version "1.0.0" 91 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 92 | 93 | async@^1.4.0, async@^1.4.2: 94 | version "1.5.2" 95 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 96 | 97 | async@^2.1.4: 98 | version "2.1.4" 99 | resolved "https://registry.yarnpkg.com/async/-/async-2.1.4.tgz#2d2160c7788032e4dd6cbe2502f1f9a2c8f6cde4" 100 | dependencies: 101 | lodash "^4.14.0" 102 | 103 | async@~0.2.6: 104 | version "0.2.10" 105 | resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" 106 | 107 | asynckit@^0.4.0: 108 | version "0.4.0" 109 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 110 | 111 | aws-sign2@~0.6.0: 112 | version "0.6.0" 113 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 114 | 115 | aws4@^1.2.1: 116 | version "1.5.0" 117 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.5.0.tgz#0a29ffb79c31c9e712eeb087e8e7a64b4a56d755" 118 | 119 | babel-code-frame@^6.22.0: 120 | version "6.22.0" 121 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 122 | dependencies: 123 | chalk "^1.1.0" 124 | esutils "^2.0.2" 125 | js-tokens "^3.0.0" 126 | 127 | babel-core@^6.0.0, babel-core@^6.22.0: 128 | version "6.22.1" 129 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.22.1.tgz#9c5fd658ba1772d28d721f6d25d968fc7ae21648" 130 | dependencies: 131 | babel-code-frame "^6.22.0" 132 | babel-generator "^6.22.0" 133 | babel-helpers "^6.22.0" 134 | babel-messages "^6.22.0" 135 | babel-register "^6.22.0" 136 | babel-runtime "^6.22.0" 137 | babel-template "^6.22.0" 138 | babel-traverse "^6.22.1" 139 | babel-types "^6.22.0" 140 | babylon "^6.11.0" 141 | convert-source-map "^1.1.0" 142 | debug "^2.1.1" 143 | json5 "^0.5.0" 144 | lodash "^4.2.0" 145 | minimatch "^3.0.2" 146 | path-is-absolute "^1.0.0" 147 | private "^0.1.6" 148 | slash "^1.0.0" 149 | source-map "^0.5.0" 150 | 151 | babel-generator@^6.18.0, babel-generator@^6.22.0: 152 | version "6.22.0" 153 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.22.0.tgz#d642bf4961911a8adc7c692b0c9297f325cda805" 154 | dependencies: 155 | babel-messages "^6.22.0" 156 | babel-runtime "^6.22.0" 157 | babel-types "^6.22.0" 158 | detect-indent "^4.0.0" 159 | jsesc "^1.3.0" 160 | lodash "^4.2.0" 161 | source-map "^0.5.0" 162 | 163 | babel-helpers@^6.22.0: 164 | version "6.22.0" 165 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.22.0.tgz#d275f55f2252b8101bff07bc0c556deda657392c" 166 | dependencies: 167 | babel-runtime "^6.22.0" 168 | babel-template "^6.22.0" 169 | 170 | babel-jest@^18.0.0: 171 | version "18.0.0" 172 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-18.0.0.tgz#17ebba8cb3285c906d859e8707e4e79795fb65e3" 173 | dependencies: 174 | babel-core "^6.0.0" 175 | babel-plugin-istanbul "^3.0.0" 176 | babel-preset-jest "^18.0.0" 177 | 178 | babel-messages@^6.22.0: 179 | version "6.22.0" 180 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.22.0.tgz#36066a214f1217e4ed4164867669ecb39e3ea575" 181 | dependencies: 182 | babel-runtime "^6.22.0" 183 | 184 | babel-plugin-istanbul@^3.0.0: 185 | version "3.1.2" 186 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-3.1.2.tgz#11d5abde18425ec24b5d648c7e0b5d25cd354a22" 187 | dependencies: 188 | find-up "^1.1.2" 189 | istanbul-lib-instrument "^1.4.2" 190 | object-assign "^4.1.0" 191 | test-exclude "^3.3.0" 192 | 193 | babel-plugin-jest-hoist@^18.0.0: 194 | version "18.0.0" 195 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-18.0.0.tgz#4150e70ecab560e6e7344adc849498072d34e12a" 196 | 197 | babel-preset-jest@^18.0.0: 198 | version "18.0.0" 199 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-18.0.0.tgz#84faf8ca3ec65aba7d5e3f59bbaed935ab24049e" 200 | dependencies: 201 | babel-plugin-jest-hoist "^18.0.0" 202 | 203 | babel-register@^6.22.0: 204 | version "6.22.0" 205 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.22.0.tgz#a61dd83975f9ca4a9e7d6eff3059494cd5ea4c63" 206 | dependencies: 207 | babel-core "^6.22.0" 208 | babel-runtime "^6.22.0" 209 | core-js "^2.4.0" 210 | home-or-tmp "^2.0.0" 211 | lodash "^4.2.0" 212 | mkdirp "^0.5.1" 213 | source-map-support "^0.4.2" 214 | 215 | babel-runtime@^6.22.0: 216 | version "6.22.0" 217 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.22.0.tgz#1cf8b4ac67c77a4ddb0db2ae1f74de52ac4ca611" 218 | dependencies: 219 | core-js "^2.4.0" 220 | regenerator-runtime "^0.10.0" 221 | 222 | babel-template@^6.16.0, babel-template@^6.22.0: 223 | version "6.22.0" 224 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.22.0.tgz#403d110905a4626b317a2a1fcb8f3b73204b2edb" 225 | dependencies: 226 | babel-runtime "^6.22.0" 227 | babel-traverse "^6.22.0" 228 | babel-types "^6.22.0" 229 | babylon "^6.11.0" 230 | lodash "^4.2.0" 231 | 232 | babel-traverse@^6.18.0, babel-traverse@^6.22.0, babel-traverse@^6.22.1: 233 | version "6.22.1" 234 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.22.1.tgz#3b95cd6b7427d6f1f757704908f2fc9748a5f59f" 235 | dependencies: 236 | babel-code-frame "^6.22.0" 237 | babel-messages "^6.22.0" 238 | babel-runtime "^6.22.0" 239 | babel-types "^6.22.0" 240 | babylon "^6.15.0" 241 | debug "^2.2.0" 242 | globals "^9.0.0" 243 | invariant "^2.2.0" 244 | lodash "^4.2.0" 245 | 246 | babel-types@^6.18.0, babel-types@^6.22.0: 247 | version "6.22.0" 248 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.22.0.tgz#2a447e8d0ea25d2512409e4175479fd78cc8b1db" 249 | dependencies: 250 | babel-runtime "^6.22.0" 251 | esutils "^2.0.2" 252 | lodash "^4.2.0" 253 | to-fast-properties "^1.0.1" 254 | 255 | babylon@^6.11.0, babylon@^6.13.0, babylon@^6.15.0: 256 | version "6.15.0" 257 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.15.0.tgz#ba65cfa1a80e1759b0e89fb562e27dccae70348e" 258 | 259 | balanced-match@^0.4.1: 260 | version "0.4.2" 261 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 262 | 263 | bcrypt-pbkdf@^1.0.0: 264 | version "1.0.1" 265 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 266 | dependencies: 267 | tweetnacl "^0.14.3" 268 | 269 | boom@2.x.x: 270 | version "2.10.1" 271 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 272 | dependencies: 273 | hoek "2.x.x" 274 | 275 | brace-expansion@^1.0.0: 276 | version "1.1.6" 277 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 278 | dependencies: 279 | balanced-match "^0.4.1" 280 | concat-map "0.0.1" 281 | 282 | braces@^1.8.2: 283 | version "1.8.5" 284 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 285 | dependencies: 286 | expand-range "^1.8.1" 287 | preserve "^0.2.0" 288 | repeat-element "^1.1.2" 289 | 290 | browser-resolve@^1.11.2: 291 | version "1.11.2" 292 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 293 | dependencies: 294 | resolve "1.1.7" 295 | 296 | bser@1.0.2: 297 | version "1.0.2" 298 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 299 | dependencies: 300 | node-int64 "^0.4.0" 301 | 302 | builtin-modules@^1.0.0: 303 | version "1.1.1" 304 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 305 | 306 | callsites@^2.0.0: 307 | version "2.0.0" 308 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 309 | 310 | camelcase@^1.0.2: 311 | version "1.2.1" 312 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 313 | 314 | camelcase@^3.0.0: 315 | version "3.0.0" 316 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 317 | 318 | cardinal@^1.0.0: 319 | version "1.0.0" 320 | resolved "https://registry.yarnpkg.com/cardinal/-/cardinal-1.0.0.tgz#50e21c1b0aa37729f9377def196b5a9cec932ee9" 321 | dependencies: 322 | ansicolors "~0.2.1" 323 | redeyed "~1.0.0" 324 | 325 | caseless@~0.11.0: 326 | version "0.11.0" 327 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 328 | 329 | center-align@^0.1.1: 330 | version "0.1.3" 331 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 332 | dependencies: 333 | align-text "^0.1.3" 334 | lazy-cache "^1.0.3" 335 | 336 | chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 337 | version "1.1.3" 338 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 339 | dependencies: 340 | ansi-styles "^2.2.1" 341 | escape-string-regexp "^1.0.2" 342 | has-ansi "^2.0.0" 343 | strip-ansi "^3.0.0" 344 | supports-color "^2.0.0" 345 | 346 | ci-info@^1.0.0: 347 | version "1.0.0" 348 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 349 | 350 | cli-table@^0.3.1: 351 | version "0.3.1" 352 | resolved "https://registry.yarnpkg.com/cli-table/-/cli-table-0.3.1.tgz#f53b05266a8b1a0b934b3d0821e6e2dc5914ae23" 353 | dependencies: 354 | colors "1.0.3" 355 | 356 | cli-usage@^0.1.1: 357 | version "0.1.4" 358 | resolved "https://registry.yarnpkg.com/cli-usage/-/cli-usage-0.1.4.tgz#7c01e0dc706c234b39c933838c8e20b2175776e2" 359 | dependencies: 360 | marked "^0.3.6" 361 | marked-terminal "^1.6.2" 362 | 363 | cliui@^2.1.0: 364 | version "2.1.0" 365 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 366 | dependencies: 367 | center-align "^0.1.1" 368 | right-align "^0.1.1" 369 | wordwrap "0.0.2" 370 | 371 | cliui@^3.2.0: 372 | version "3.2.0" 373 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 374 | dependencies: 375 | string-width "^1.0.1" 376 | strip-ansi "^3.0.1" 377 | wrap-ansi "^2.0.0" 378 | 379 | code-point-at@^1.0.0: 380 | version "1.1.0" 381 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 382 | 383 | colors@1.0.3: 384 | version "1.0.3" 385 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b" 386 | 387 | combined-stream@^1.0.5, combined-stream@~1.0.5: 388 | version "1.0.5" 389 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 390 | dependencies: 391 | delayed-stream "~1.0.0" 392 | 393 | commander@^2.9.0: 394 | version "2.9.0" 395 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 396 | dependencies: 397 | graceful-readlink ">= 1.0.0" 398 | 399 | concat-map@0.0.1: 400 | version "0.0.1" 401 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 402 | 403 | content-type-parser@^1.0.1: 404 | version "1.0.1" 405 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 406 | 407 | convert-source-map@^1.1.0: 408 | version "1.3.0" 409 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.3.0.tgz#e9f3e9c6e2728efc2676696a70eb382f73106a67" 410 | 411 | core-js@^2.4.0: 412 | version "2.4.1" 413 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 414 | 415 | cryptiles@2.x.x: 416 | version "2.0.5" 417 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 418 | dependencies: 419 | boom "2.x.x" 420 | 421 | cssom@0.3.x, "cssom@>= 0.3.0 < 0.4.0": 422 | version "0.3.2" 423 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 424 | 425 | "cssstyle@>= 0.2.36 < 0.3.0": 426 | version "0.2.37" 427 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 428 | dependencies: 429 | cssom "0.3.x" 430 | 431 | dashdash@^1.12.0: 432 | version "1.14.1" 433 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 434 | dependencies: 435 | assert-plus "^1.0.0" 436 | 437 | debug@^2.1.1, debug@^2.2.0: 438 | version "2.6.0" 439 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.0.tgz#bc596bcabe7617f11d9fa15361eded5608b8499b" 440 | dependencies: 441 | ms "0.7.2" 442 | 443 | decamelize@^1.0.0, decamelize@^1.1.1: 444 | version "1.2.0" 445 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 446 | 447 | deep-is@~0.1.3: 448 | version "0.1.3" 449 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 450 | 451 | default-require-extensions@^1.0.0: 452 | version "1.0.0" 453 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 454 | dependencies: 455 | strip-bom "^2.0.0" 456 | 457 | delayed-stream@~1.0.0: 458 | version "1.0.0" 459 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 460 | 461 | detect-indent@^4.0.0: 462 | version "4.0.0" 463 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 464 | dependencies: 465 | repeating "^2.0.0" 466 | 467 | diff@^3.0.0: 468 | version "3.2.0" 469 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 470 | 471 | ecc-jsbn@~0.1.1: 472 | version "0.1.1" 473 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 474 | dependencies: 475 | jsbn "~0.1.0" 476 | 477 | "errno@>=0.1.1 <0.2.0-0": 478 | version "0.1.4" 479 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 480 | dependencies: 481 | prr "~0.0.0" 482 | 483 | error-ex@^1.2.0: 484 | version "1.3.0" 485 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.0.tgz#e67b43f3e82c96ea3a584ffee0b9fc3325d802d9" 486 | dependencies: 487 | is-arrayish "^0.2.1" 488 | 489 | escape-string-regexp@^1.0.2: 490 | version "1.0.5" 491 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 492 | 493 | escodegen@^1.6.1: 494 | version "1.8.1" 495 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 496 | dependencies: 497 | esprima "^2.7.1" 498 | estraverse "^1.9.1" 499 | esutils "^2.0.2" 500 | optionator "^0.8.1" 501 | optionalDependencies: 502 | source-map "~0.2.0" 503 | 504 | esprima@^2.6.0, esprima@^2.7.1: 505 | version "2.7.3" 506 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 507 | 508 | esprima@~3.0.0: 509 | version "3.0.0" 510 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.0.0.tgz#53cf247acda77313e551c3aa2e73342d3fb4f7d9" 511 | 512 | estraverse@^1.9.1: 513 | version "1.9.3" 514 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 515 | 516 | esutils@^2.0.2: 517 | version "2.0.2" 518 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 519 | 520 | exec-sh@^0.2.0: 521 | version "0.2.0" 522 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 523 | dependencies: 524 | merge "^1.1.3" 525 | 526 | expand-brackets@^0.1.4: 527 | version "0.1.5" 528 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 529 | dependencies: 530 | is-posix-bracket "^0.1.0" 531 | 532 | expand-range@^1.8.1: 533 | version "1.8.2" 534 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 535 | dependencies: 536 | fill-range "^2.1.0" 537 | 538 | extend@~3.0.0: 539 | version "3.0.0" 540 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 541 | 542 | extglob@^0.3.1: 543 | version "0.3.2" 544 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 545 | dependencies: 546 | is-extglob "^1.0.0" 547 | 548 | extsprintf@1.0.2: 549 | version "1.0.2" 550 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 551 | 552 | fast-levenshtein@~2.0.4: 553 | version "2.0.6" 554 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 555 | 556 | fb-watchman@^1.8.0, fb-watchman@^1.9.0: 557 | version "1.9.2" 558 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 559 | dependencies: 560 | bser "1.0.2" 561 | 562 | filename-regex@^2.0.0: 563 | version "2.0.0" 564 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 565 | 566 | fileset@^2.0.2: 567 | version "2.0.3" 568 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 569 | dependencies: 570 | glob "^7.0.3" 571 | minimatch "^3.0.3" 572 | 573 | fill-range@^2.1.0: 574 | version "2.2.3" 575 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 576 | dependencies: 577 | is-number "^2.1.0" 578 | isobject "^2.0.0" 579 | randomatic "^1.1.3" 580 | repeat-element "^1.1.2" 581 | repeat-string "^1.5.2" 582 | 583 | find-up@^1.0.0, find-up@^1.1.2: 584 | version "1.1.2" 585 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 586 | dependencies: 587 | path-exists "^2.0.0" 588 | pinkie-promise "^2.0.0" 589 | 590 | for-in@^0.1.5: 591 | version "0.1.6" 592 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8" 593 | 594 | for-own@^0.1.4: 595 | version "0.1.4" 596 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072" 597 | dependencies: 598 | for-in "^0.1.5" 599 | 600 | forever-agent@~0.6.1: 601 | version "0.6.1" 602 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 603 | 604 | form-data@~2.1.1: 605 | version "2.1.2" 606 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 607 | dependencies: 608 | asynckit "^0.4.0" 609 | combined-stream "^1.0.5" 610 | mime-types "^2.1.12" 611 | 612 | fs.realpath@^1.0.0: 613 | version "1.0.0" 614 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 615 | 616 | generate-function@^2.0.0: 617 | version "2.0.0" 618 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 619 | 620 | generate-object-property@^1.1.0: 621 | version "1.2.0" 622 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 623 | dependencies: 624 | is-property "^1.0.0" 625 | 626 | get-caller-file@^1.0.1: 627 | version "1.0.2" 628 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 629 | 630 | getpass@^0.1.1: 631 | version "0.1.6" 632 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 633 | dependencies: 634 | assert-plus "^1.0.0" 635 | 636 | glob-base@^0.3.0: 637 | version "0.3.0" 638 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 639 | dependencies: 640 | glob-parent "^2.0.0" 641 | is-glob "^2.0.0" 642 | 643 | glob-parent@^2.0.0: 644 | version "2.0.0" 645 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 646 | dependencies: 647 | is-glob "^2.0.0" 648 | 649 | glob@^7.0.3, glob@^7.0.5: 650 | version "7.1.1" 651 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 652 | dependencies: 653 | fs.realpath "^1.0.0" 654 | inflight "^1.0.4" 655 | inherits "2" 656 | minimatch "^3.0.2" 657 | once "^1.3.0" 658 | path-is-absolute "^1.0.0" 659 | 660 | globals@^9.0.0: 661 | version "9.14.0" 662 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.14.0.tgz#8859936af0038741263053b39d0e76ca241e4034" 663 | 664 | graceful-fs@^4.1.2, graceful-fs@^4.1.6: 665 | version "4.1.11" 666 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 667 | 668 | "graceful-readlink@>= 1.0.0": 669 | version "1.0.1" 670 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 671 | 672 | growly@^1.2.0: 673 | version "1.3.0" 674 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 675 | 676 | handlebars@^4.0.3: 677 | version "4.0.6" 678 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.6.tgz#2ce4484850537f9c97a8026d5399b935c4ed4ed7" 679 | dependencies: 680 | async "^1.4.0" 681 | optimist "^0.6.1" 682 | source-map "^0.4.4" 683 | optionalDependencies: 684 | uglify-js "^2.6" 685 | 686 | har-validator@~2.0.6: 687 | version "2.0.6" 688 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 689 | dependencies: 690 | chalk "^1.1.1" 691 | commander "^2.9.0" 692 | is-my-json-valid "^2.12.4" 693 | pinkie-promise "^2.0.0" 694 | 695 | has-ansi@^2.0.0: 696 | version "2.0.0" 697 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 698 | dependencies: 699 | ansi-regex "^2.0.0" 700 | 701 | has-flag@^1.0.0: 702 | version "1.0.0" 703 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 704 | 705 | hawk@~3.1.3: 706 | version "3.1.3" 707 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 708 | dependencies: 709 | boom "2.x.x" 710 | cryptiles "2.x.x" 711 | hoek "2.x.x" 712 | sntp "1.x.x" 713 | 714 | hoek@2.x.x: 715 | version "2.16.3" 716 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 717 | 718 | home-or-tmp@^2.0.0: 719 | version "2.0.0" 720 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 721 | dependencies: 722 | os-homedir "^1.0.0" 723 | os-tmpdir "^1.0.1" 724 | 725 | hosted-git-info@^2.1.4: 726 | version "2.1.5" 727 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.1.5.tgz#0ba81d90da2e25ab34a332e6ec77936e1598118b" 728 | 729 | html-encoding-sniffer@^1.0.1: 730 | version "1.0.1" 731 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 732 | dependencies: 733 | whatwg-encoding "^1.0.1" 734 | 735 | http-signature@~1.1.0: 736 | version "1.1.1" 737 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 738 | dependencies: 739 | assert-plus "^0.2.0" 740 | jsprim "^1.2.2" 741 | sshpk "^1.7.0" 742 | 743 | iconv-lite@0.4.13: 744 | version "0.4.13" 745 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 746 | 747 | iconv-lite@^0.4.13: 748 | version "0.4.15" 749 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.15.tgz#fe265a218ac6a57cfe854927e9d04c19825eddeb" 750 | 751 | inflight@^1.0.4: 752 | version "1.0.6" 753 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 754 | dependencies: 755 | once "^1.3.0" 756 | wrappy "1" 757 | 758 | inherits@2: 759 | version "2.0.3" 760 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 761 | 762 | invariant@^2.2.0: 763 | version "2.2.2" 764 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 765 | dependencies: 766 | loose-envify "^1.0.0" 767 | 768 | invert-kv@^1.0.0: 769 | version "1.0.0" 770 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 771 | 772 | is-arrayish@^0.2.1: 773 | version "0.2.1" 774 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 775 | 776 | is-buffer@^1.0.2: 777 | version "1.1.4" 778 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" 779 | 780 | is-builtin-module@^1.0.0: 781 | version "1.0.0" 782 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 783 | dependencies: 784 | builtin-modules "^1.0.0" 785 | 786 | is-ci@^1.0.9: 787 | version "1.0.10" 788 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 789 | dependencies: 790 | ci-info "^1.0.0" 791 | 792 | is-dotfile@^1.0.0: 793 | version "1.0.2" 794 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 795 | 796 | is-equal-shallow@^0.1.3: 797 | version "0.1.3" 798 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 799 | dependencies: 800 | is-primitive "^2.0.0" 801 | 802 | is-extendable@^0.1.1: 803 | version "0.1.1" 804 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 805 | 806 | is-extglob@^1.0.0: 807 | version "1.0.0" 808 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 809 | 810 | is-finite@^1.0.0: 811 | version "1.0.2" 812 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 813 | dependencies: 814 | number-is-nan "^1.0.0" 815 | 816 | is-fullwidth-code-point@^1.0.0: 817 | version "1.0.0" 818 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 819 | dependencies: 820 | number-is-nan "^1.0.0" 821 | 822 | is-glob@^2.0.0, is-glob@^2.0.1: 823 | version "2.0.1" 824 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 825 | dependencies: 826 | is-extglob "^1.0.0" 827 | 828 | is-my-json-valid@^2.12.4: 829 | version "2.15.0" 830 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b" 831 | dependencies: 832 | generate-function "^2.0.0" 833 | generate-object-property "^1.1.0" 834 | jsonpointer "^4.0.0" 835 | xtend "^4.0.0" 836 | 837 | is-number@^2.0.2, is-number@^2.1.0: 838 | version "2.1.0" 839 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 840 | dependencies: 841 | kind-of "^3.0.2" 842 | 843 | is-posix-bracket@^0.1.0: 844 | version "0.1.1" 845 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 846 | 847 | is-primitive@^2.0.0: 848 | version "2.0.0" 849 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 850 | 851 | is-property@^1.0.0: 852 | version "1.0.2" 853 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 854 | 855 | is-typedarray@~1.0.0: 856 | version "1.0.0" 857 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 858 | 859 | is-utf8@^0.2.0: 860 | version "0.2.1" 861 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 862 | 863 | isarray@1.0.0: 864 | version "1.0.0" 865 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 866 | 867 | isexe@^1.1.1: 868 | version "1.1.2" 869 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-1.1.2.tgz#36f3e22e60750920f5e7241a476a8c6a42275ad0" 870 | 871 | isobject@^2.0.0: 872 | version "2.1.0" 873 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 874 | dependencies: 875 | isarray "1.0.0" 876 | 877 | isstream@~0.1.2: 878 | version "0.1.2" 879 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 880 | 881 | istanbul-api@^1.1.0-alpha.1: 882 | version "1.1.1" 883 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.1.tgz#d36e2f1560d1a43ce304c4ff7338182de61c8f73" 884 | dependencies: 885 | async "^2.1.4" 886 | fileset "^2.0.2" 887 | istanbul-lib-coverage "^1.0.0" 888 | istanbul-lib-hook "^1.0.0" 889 | istanbul-lib-instrument "^1.3.0" 890 | istanbul-lib-report "^1.0.0-alpha.3" 891 | istanbul-lib-source-maps "^1.1.0" 892 | istanbul-reports "^1.0.0" 893 | js-yaml "^3.7.0" 894 | mkdirp "^0.5.1" 895 | once "^1.4.0" 896 | 897 | istanbul-lib-coverage@^1.0.0, istanbul-lib-coverage@^1.0.0-alpha, istanbul-lib-coverage@^1.0.0-alpha.0: 898 | version "1.0.1" 899 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.0.1.tgz#f263efb519c051c5f1f3343034fc40e7b43ff212" 900 | 901 | istanbul-lib-hook@^1.0.0: 902 | version "1.0.0" 903 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.0.tgz#fc5367ee27f59268e8f060b0c7aaf051d9c425c5" 904 | dependencies: 905 | append-transform "^0.4.0" 906 | 907 | istanbul-lib-instrument@^1.1.1, istanbul-lib-instrument@^1.3.0, istanbul-lib-instrument@^1.4.2: 908 | version "1.4.2" 909 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.4.2.tgz#0e2fdfac93c1dabf2e31578637dc78a19089f43e" 910 | dependencies: 911 | babel-generator "^6.18.0" 912 | babel-template "^6.16.0" 913 | babel-traverse "^6.18.0" 914 | babel-types "^6.18.0" 915 | babylon "^6.13.0" 916 | istanbul-lib-coverage "^1.0.0" 917 | semver "^5.3.0" 918 | 919 | istanbul-lib-report@^1.0.0-alpha.3: 920 | version "1.0.0-alpha.3" 921 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.0.0-alpha.3.tgz#32d5f6ec7f33ca3a602209e278b2e6ff143498af" 922 | dependencies: 923 | async "^1.4.2" 924 | istanbul-lib-coverage "^1.0.0-alpha" 925 | mkdirp "^0.5.1" 926 | path-parse "^1.0.5" 927 | rimraf "^2.4.3" 928 | supports-color "^3.1.2" 929 | 930 | istanbul-lib-source-maps@^1.1.0: 931 | version "1.1.0" 932 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.1.0.tgz#9d429218f35b823560ea300a96ff0c3bbdab785f" 933 | dependencies: 934 | istanbul-lib-coverage "^1.0.0-alpha.0" 935 | mkdirp "^0.5.1" 936 | rimraf "^2.4.4" 937 | source-map "^0.5.3" 938 | 939 | istanbul-reports@^1.0.0: 940 | version "1.0.1" 941 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.0.1.tgz#9a17176bc4a6cbebdae52b2f15961d52fa623fbc" 942 | dependencies: 943 | handlebars "^4.0.3" 944 | 945 | jest-changed-files@^17.0.2: 946 | version "17.0.2" 947 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-17.0.2.tgz#f5657758736996f590a51b87e5c9369d904ba7b7" 948 | 949 | jest-cli@^18.1.0: 950 | version "18.1.0" 951 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-18.1.0.tgz#5ead36ecad420817c2c9baa2aa7574f63257b3d6" 952 | dependencies: 953 | ansi-escapes "^1.4.0" 954 | callsites "^2.0.0" 955 | chalk "^1.1.1" 956 | graceful-fs "^4.1.6" 957 | is-ci "^1.0.9" 958 | istanbul-api "^1.1.0-alpha.1" 959 | istanbul-lib-coverage "^1.0.0" 960 | istanbul-lib-instrument "^1.1.1" 961 | jest-changed-files "^17.0.2" 962 | jest-config "^18.1.0" 963 | jest-environment-jsdom "^18.1.0" 964 | jest-file-exists "^17.0.0" 965 | jest-haste-map "^18.1.0" 966 | jest-jasmine2 "^18.1.0" 967 | jest-mock "^18.0.0" 968 | jest-resolve "^18.1.0" 969 | jest-resolve-dependencies "^18.1.0" 970 | jest-runtime "^18.1.0" 971 | jest-snapshot "^18.1.0" 972 | jest-util "^18.1.0" 973 | json-stable-stringify "^1.0.0" 974 | node-notifier "^4.6.1" 975 | sane "~1.4.1" 976 | strip-ansi "^3.0.1" 977 | throat "^3.0.0" 978 | which "^1.1.1" 979 | worker-farm "^1.3.1" 980 | yargs "^6.3.0" 981 | 982 | jest-config@^18.1.0: 983 | version "18.1.0" 984 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-18.1.0.tgz#6111740a6d48aab86ff5a9e6ab0b98bd993b6ff4" 985 | dependencies: 986 | chalk "^1.1.1" 987 | jest-environment-jsdom "^18.1.0" 988 | jest-environment-node "^18.1.0" 989 | jest-jasmine2 "^18.1.0" 990 | jest-mock "^18.0.0" 991 | jest-resolve "^18.1.0" 992 | jest-util "^18.1.0" 993 | json-stable-stringify "^1.0.0" 994 | 995 | jest-diff@^18.1.0: 996 | version "18.1.0" 997 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-18.1.0.tgz#4ff79e74dd988c139195b365dc65d87f606f4803" 998 | dependencies: 999 | chalk "^1.1.3" 1000 | diff "^3.0.0" 1001 | jest-matcher-utils "^18.1.0" 1002 | pretty-format "^18.1.0" 1003 | 1004 | jest-environment-jsdom@^18.1.0: 1005 | version "18.1.0" 1006 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-18.1.0.tgz#18b42f0c4ea2bae9f36cab3639b1e8f8c384e24e" 1007 | dependencies: 1008 | jest-mock "^18.0.0" 1009 | jest-util "^18.1.0" 1010 | jsdom "^9.9.1" 1011 | 1012 | jest-environment-node@^18.1.0: 1013 | version "18.1.0" 1014 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-18.1.0.tgz#4d6797572c8dda99acf5fae696eb62945547c779" 1015 | dependencies: 1016 | jest-mock "^18.0.0" 1017 | jest-util "^18.1.0" 1018 | 1019 | jest-file-exists@^17.0.0: 1020 | version "17.0.0" 1021 | resolved "https://registry.yarnpkg.com/jest-file-exists/-/jest-file-exists-17.0.0.tgz#7f63eb73a1c43a13f461be261768b45af2cdd169" 1022 | 1023 | jest-haste-map@^18.1.0: 1024 | version "18.1.0" 1025 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-18.1.0.tgz#06839c74b770a40c1a106968851df8d281c08375" 1026 | dependencies: 1027 | fb-watchman "^1.9.0" 1028 | graceful-fs "^4.1.6" 1029 | micromatch "^2.3.11" 1030 | sane "~1.4.1" 1031 | worker-farm "^1.3.1" 1032 | 1033 | jest-jasmine2@^18.1.0: 1034 | version "18.1.0" 1035 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-18.1.0.tgz#094e104c2c189708766c77263bb2aecb5860a80b" 1036 | dependencies: 1037 | graceful-fs "^4.1.6" 1038 | jest-matcher-utils "^18.1.0" 1039 | jest-matchers "^18.1.0" 1040 | jest-snapshot "^18.1.0" 1041 | jest-util "^18.1.0" 1042 | 1043 | jest-matcher-utils@^18.1.0: 1044 | version "18.1.0" 1045 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-18.1.0.tgz#1ac4651955ee2a60cef1e7fcc98cdfd773c0f932" 1046 | dependencies: 1047 | chalk "^1.1.3" 1048 | pretty-format "^18.1.0" 1049 | 1050 | jest-matchers@^18.1.0: 1051 | version "18.1.0" 1052 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-18.1.0.tgz#0341484bf87a1fd0bac0a4d2c899e2b77a3f1ead" 1053 | dependencies: 1054 | jest-diff "^18.1.0" 1055 | jest-matcher-utils "^18.1.0" 1056 | jest-util "^18.1.0" 1057 | pretty-format "^18.1.0" 1058 | 1059 | jest-mock@^18.0.0: 1060 | version "18.0.0" 1061 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-18.0.0.tgz#5c248846ea33fa558b526f5312ab4a6765e489b3" 1062 | 1063 | jest-resolve-dependencies@^18.1.0: 1064 | version "18.1.0" 1065 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-18.1.0.tgz#8134fb5caf59c9ed842fe0152ab01c52711f1bbb" 1066 | dependencies: 1067 | jest-file-exists "^17.0.0" 1068 | jest-resolve "^18.1.0" 1069 | 1070 | jest-resolve@^18.1.0: 1071 | version "18.1.0" 1072 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-18.1.0.tgz#6800accb536658c906cd5e29de412b1ab9ac249b" 1073 | dependencies: 1074 | browser-resolve "^1.11.2" 1075 | jest-file-exists "^17.0.0" 1076 | jest-haste-map "^18.1.0" 1077 | resolve "^1.2.0" 1078 | 1079 | jest-runtime@^18.1.0: 1080 | version "18.1.0" 1081 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-18.1.0.tgz#3abfd687175b21fc3b85a2b8064399e997859922" 1082 | dependencies: 1083 | babel-core "^6.0.0" 1084 | babel-jest "^18.0.0" 1085 | babel-plugin-istanbul "^3.0.0" 1086 | chalk "^1.1.3" 1087 | graceful-fs "^4.1.6" 1088 | jest-config "^18.1.0" 1089 | jest-file-exists "^17.0.0" 1090 | jest-haste-map "^18.1.0" 1091 | jest-mock "^18.0.0" 1092 | jest-resolve "^18.1.0" 1093 | jest-snapshot "^18.1.0" 1094 | jest-util "^18.1.0" 1095 | json-stable-stringify "^1.0.0" 1096 | micromatch "^2.3.11" 1097 | yargs "^6.3.0" 1098 | 1099 | jest-snapshot@^18.1.0: 1100 | version "18.1.0" 1101 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-18.1.0.tgz#55b96d2ee639c9bce76f87f2a3fd40b71c7a5916" 1102 | dependencies: 1103 | jest-diff "^18.1.0" 1104 | jest-file-exists "^17.0.0" 1105 | jest-matcher-utils "^18.1.0" 1106 | jest-util "^18.1.0" 1107 | natural-compare "^1.4.0" 1108 | pretty-format "^18.1.0" 1109 | 1110 | jest-util@^18.1.0: 1111 | version "18.1.0" 1112 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-18.1.0.tgz#3a99c32114ab17f84be094382527006e6d4bfc6a" 1113 | dependencies: 1114 | chalk "^1.1.1" 1115 | diff "^3.0.0" 1116 | graceful-fs "^4.1.6" 1117 | jest-file-exists "^17.0.0" 1118 | jest-mock "^18.0.0" 1119 | mkdirp "^0.5.1" 1120 | 1121 | jest@^18.1.0: 1122 | version "18.1.0" 1123 | resolved "https://registry.yarnpkg.com/jest/-/jest-18.1.0.tgz#bcebf1e203dee5c2ad2091c805300a343d9e6c7d" 1124 | dependencies: 1125 | jest-cli "^18.1.0" 1126 | 1127 | jodid25519@^1.0.0: 1128 | version "1.0.2" 1129 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 1130 | dependencies: 1131 | jsbn "~0.1.0" 1132 | 1133 | js-tokens@^3.0.0: 1134 | version "3.0.1" 1135 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 1136 | 1137 | js-yaml@^3.7.0: 1138 | version "3.7.0" 1139 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80" 1140 | dependencies: 1141 | argparse "^1.0.7" 1142 | esprima "^2.6.0" 1143 | 1144 | jsbn@~0.1.0: 1145 | version "0.1.0" 1146 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd" 1147 | 1148 | jsdom@^9.9.1: 1149 | version "9.9.1" 1150 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.9.1.tgz#84f3972ad394ab963233af8725211bce4d01bfd5" 1151 | dependencies: 1152 | abab "^1.0.0" 1153 | acorn "^2.4.0" 1154 | acorn-globals "^1.0.4" 1155 | array-equal "^1.0.0" 1156 | content-type-parser "^1.0.1" 1157 | cssom ">= 0.3.0 < 0.4.0" 1158 | cssstyle ">= 0.2.36 < 0.3.0" 1159 | escodegen "^1.6.1" 1160 | html-encoding-sniffer "^1.0.1" 1161 | iconv-lite "^0.4.13" 1162 | nwmatcher ">= 1.3.9 < 2.0.0" 1163 | parse5 "^1.5.1" 1164 | request "^2.55.0" 1165 | sax "^1.1.4" 1166 | symbol-tree ">= 3.1.0 < 4.0.0" 1167 | tough-cookie "^2.3.1" 1168 | webidl-conversions "^3.0.1" 1169 | whatwg-encoding "^1.0.1" 1170 | whatwg-url "^4.1.0" 1171 | xml-name-validator ">= 2.0.1 < 3.0.0" 1172 | 1173 | jsesc@^1.3.0: 1174 | version "1.3.0" 1175 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1176 | 1177 | json-schema@0.2.3: 1178 | version "0.2.3" 1179 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1180 | 1181 | json-stable-stringify@^1.0.0: 1182 | version "1.0.1" 1183 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1184 | dependencies: 1185 | jsonify "~0.0.0" 1186 | 1187 | json-stringify-safe@~5.0.1: 1188 | version "5.0.1" 1189 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1190 | 1191 | json5@^0.5.0: 1192 | version "0.5.1" 1193 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1194 | 1195 | jsonify@~0.0.0: 1196 | version "0.0.0" 1197 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1198 | 1199 | jsonpointer@^4.0.0: 1200 | version "4.0.1" 1201 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 1202 | 1203 | jsprim@^1.2.2: 1204 | version "1.3.1" 1205 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252" 1206 | dependencies: 1207 | extsprintf "1.0.2" 1208 | json-schema "0.2.3" 1209 | verror "1.3.6" 1210 | 1211 | kind-of@^3.0.2: 1212 | version "3.1.0" 1213 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 1214 | dependencies: 1215 | is-buffer "^1.0.2" 1216 | 1217 | lazy-cache@^1.0.3: 1218 | version "1.0.4" 1219 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1220 | 1221 | lcid@^1.0.0: 1222 | version "1.0.0" 1223 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1224 | dependencies: 1225 | invert-kv "^1.0.0" 1226 | 1227 | levn@~0.3.0: 1228 | version "0.3.0" 1229 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1230 | dependencies: 1231 | prelude-ls "~1.1.2" 1232 | type-check "~0.3.2" 1233 | 1234 | load-json-file@^1.0.0: 1235 | version "1.1.0" 1236 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1237 | dependencies: 1238 | graceful-fs "^4.1.2" 1239 | parse-json "^2.2.0" 1240 | pify "^2.0.0" 1241 | pinkie-promise "^2.0.0" 1242 | strip-bom "^2.0.0" 1243 | 1244 | lodash._arraycopy@^3.0.0: 1245 | version "3.0.0" 1246 | resolved "https://registry.yarnpkg.com/lodash._arraycopy/-/lodash._arraycopy-3.0.0.tgz#76e7b7c1f1fb92547374878a562ed06a3e50f6e1" 1247 | 1248 | lodash._arrayeach@^3.0.0: 1249 | version "3.0.0" 1250 | resolved "https://registry.yarnpkg.com/lodash._arrayeach/-/lodash._arrayeach-3.0.0.tgz#bab156b2a90d3f1bbd5c653403349e5e5933ef9e" 1251 | 1252 | lodash._baseassign@^3.0.0: 1253 | version "3.2.0" 1254 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 1255 | dependencies: 1256 | lodash._basecopy "^3.0.0" 1257 | lodash.keys "^3.0.0" 1258 | 1259 | lodash._baseclone@^3.0.0: 1260 | version "3.3.0" 1261 | resolved "https://registry.yarnpkg.com/lodash._baseclone/-/lodash._baseclone-3.3.0.tgz#303519bf6393fe7e42f34d8b630ef7794e3542b7" 1262 | dependencies: 1263 | lodash._arraycopy "^3.0.0" 1264 | lodash._arrayeach "^3.0.0" 1265 | lodash._baseassign "^3.0.0" 1266 | lodash._basefor "^3.0.0" 1267 | lodash.isarray "^3.0.0" 1268 | lodash.keys "^3.0.0" 1269 | 1270 | lodash._basecopy@^3.0.0: 1271 | version "3.0.1" 1272 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1273 | 1274 | lodash._basefor@^3.0.0: 1275 | version "3.0.3" 1276 | resolved "https://registry.yarnpkg.com/lodash._basefor/-/lodash._basefor-3.0.3.tgz#7550b4e9218ef09fad24343b612021c79b4c20c2" 1277 | 1278 | lodash._bindcallback@^3.0.0: 1279 | version "3.0.1" 1280 | resolved "https://registry.yarnpkg.com/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e" 1281 | 1282 | lodash._getnative@^3.0.0: 1283 | version "3.9.1" 1284 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1285 | 1286 | lodash.assign@^4.2.0: 1287 | version "4.2.0" 1288 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" 1289 | 1290 | lodash.clonedeep@^3.0.0: 1291 | version "3.0.2" 1292 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-3.0.2.tgz#a0a1e40d82a5ea89ff5b147b8444ed63d92827db" 1293 | dependencies: 1294 | lodash._baseclone "^3.0.0" 1295 | lodash._bindcallback "^3.0.0" 1296 | 1297 | lodash.isarguments@^3.0.0: 1298 | version "3.1.0" 1299 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 1300 | 1301 | lodash.isarray@^3.0.0: 1302 | version "3.0.4" 1303 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 1304 | 1305 | lodash.keys@^3.0.0: 1306 | version "3.1.2" 1307 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 1308 | dependencies: 1309 | lodash._getnative "^3.0.0" 1310 | lodash.isarguments "^3.0.0" 1311 | lodash.isarray "^3.0.0" 1312 | 1313 | lodash@^4.14.0, lodash@^4.2.0: 1314 | version "4.17.4" 1315 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1316 | 1317 | longest@^1.0.1: 1318 | version "1.0.1" 1319 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1320 | 1321 | loose-envify@^1.0.0: 1322 | version "1.3.1" 1323 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1324 | dependencies: 1325 | js-tokens "^3.0.0" 1326 | 1327 | makeerror@1.0.x: 1328 | version "1.0.11" 1329 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 1330 | dependencies: 1331 | tmpl "1.0.x" 1332 | 1333 | marked-terminal@^1.6.2: 1334 | version "1.7.0" 1335 | resolved "https://registry.yarnpkg.com/marked-terminal/-/marked-terminal-1.7.0.tgz#c8c460881c772c7604b64367007ee5f77f125904" 1336 | dependencies: 1337 | cardinal "^1.0.0" 1338 | chalk "^1.1.3" 1339 | cli-table "^0.3.1" 1340 | lodash.assign "^4.2.0" 1341 | node-emoji "^1.4.1" 1342 | 1343 | marked@^0.3.6: 1344 | version "0.3.6" 1345 | resolved "https://registry.yarnpkg.com/marked/-/marked-0.3.6.tgz#b2c6c618fccece4ef86c4fc6cb8a7cbf5aeda8d7" 1346 | 1347 | merge@^1.1.3: 1348 | version "1.2.0" 1349 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 1350 | 1351 | micromatch@^2.3.11: 1352 | version "2.3.11" 1353 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1354 | dependencies: 1355 | arr-diff "^2.0.0" 1356 | array-unique "^0.2.1" 1357 | braces "^1.8.2" 1358 | expand-brackets "^0.1.4" 1359 | extglob "^0.3.1" 1360 | filename-regex "^2.0.0" 1361 | is-extglob "^1.0.0" 1362 | is-glob "^2.0.1" 1363 | kind-of "^3.0.2" 1364 | normalize-path "^2.0.1" 1365 | object.omit "^2.0.0" 1366 | parse-glob "^3.0.4" 1367 | regex-cache "^0.4.2" 1368 | 1369 | mime-db@~1.26.0: 1370 | version "1.26.0" 1371 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.26.0.tgz#eaffcd0e4fc6935cf8134da246e2e6c35305adff" 1372 | 1373 | mime-types@^2.1.12, mime-types@~2.1.7: 1374 | version "2.1.14" 1375 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.14.tgz#f7ef7d97583fcaf3b7d282b6f8b5679dab1e94ee" 1376 | dependencies: 1377 | mime-db "~1.26.0" 1378 | 1379 | minimatch@^3.0.2, minimatch@^3.0.3: 1380 | version "3.0.3" 1381 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 1382 | dependencies: 1383 | brace-expansion "^1.0.0" 1384 | 1385 | minimist@0.0.8, minimist@~0.0.1: 1386 | version "0.0.8" 1387 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1388 | 1389 | minimist@^1.1.1: 1390 | version "1.2.0" 1391 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1392 | 1393 | mkdirp@^0.5.1: 1394 | version "0.5.1" 1395 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1396 | dependencies: 1397 | minimist "0.0.8" 1398 | 1399 | ms@0.7.2: 1400 | version "0.7.2" 1401 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 1402 | 1403 | natural-compare@^1.4.0: 1404 | version "1.4.0" 1405 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1406 | 1407 | node-emoji@^1.4.1: 1408 | version "1.5.1" 1409 | resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-1.5.1.tgz#fd918e412769bf8c448051238233840b2aff16a1" 1410 | dependencies: 1411 | string.prototype.codepointat "^0.2.0" 1412 | 1413 | node-int64@^0.4.0: 1414 | version "0.4.0" 1415 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 1416 | 1417 | node-notifier@^4.6.1: 1418 | version "4.6.1" 1419 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-4.6.1.tgz#056d14244f3dcc1ceadfe68af9cff0c5473a33f3" 1420 | dependencies: 1421 | cli-usage "^0.1.1" 1422 | growly "^1.2.0" 1423 | lodash.clonedeep "^3.0.0" 1424 | minimist "^1.1.1" 1425 | semver "^5.1.0" 1426 | shellwords "^0.1.0" 1427 | which "^1.0.5" 1428 | 1429 | normalize-package-data@^2.3.2: 1430 | version "2.3.5" 1431 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.5.tgz#8d924f142960e1777e7ffe170543631cc7cb02df" 1432 | dependencies: 1433 | hosted-git-info "^2.1.4" 1434 | is-builtin-module "^1.0.0" 1435 | semver "2 || 3 || 4 || 5" 1436 | validate-npm-package-license "^3.0.1" 1437 | 1438 | normalize-path@^2.0.1: 1439 | version "2.0.1" 1440 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 1441 | 1442 | number-is-nan@^1.0.0: 1443 | version "1.0.1" 1444 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1445 | 1446 | "nwmatcher@>= 1.3.9 < 2.0.0": 1447 | version "1.3.9" 1448 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.3.9.tgz#8bab486ff7fa3dfd086656bbe8b17116d3692d2a" 1449 | 1450 | oauth-sign@~0.8.1: 1451 | version "0.8.2" 1452 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1453 | 1454 | object-assign@^4.1.0: 1455 | version "4.1.1" 1456 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1457 | 1458 | object.omit@^2.0.0: 1459 | version "2.0.1" 1460 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1461 | dependencies: 1462 | for-own "^0.1.4" 1463 | is-extendable "^0.1.1" 1464 | 1465 | once@^1.3.0, once@^1.4.0: 1466 | version "1.4.0" 1467 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1468 | dependencies: 1469 | wrappy "1" 1470 | 1471 | optimist@^0.6.1: 1472 | version "0.6.1" 1473 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 1474 | dependencies: 1475 | minimist "~0.0.1" 1476 | wordwrap "~0.0.2" 1477 | 1478 | optionator@^0.8.1: 1479 | version "0.8.2" 1480 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1481 | dependencies: 1482 | deep-is "~0.1.3" 1483 | fast-levenshtein "~2.0.4" 1484 | levn "~0.3.0" 1485 | prelude-ls "~1.1.2" 1486 | type-check "~0.3.2" 1487 | wordwrap "~1.0.0" 1488 | 1489 | os-homedir@^1.0.0: 1490 | version "1.0.2" 1491 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1492 | 1493 | os-locale@^1.4.0: 1494 | version "1.4.0" 1495 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 1496 | dependencies: 1497 | lcid "^1.0.0" 1498 | 1499 | os-tmpdir@^1.0.1: 1500 | version "1.0.2" 1501 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1502 | 1503 | parse-glob@^3.0.4: 1504 | version "3.0.4" 1505 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1506 | dependencies: 1507 | glob-base "^0.3.0" 1508 | is-dotfile "^1.0.0" 1509 | is-extglob "^1.0.0" 1510 | is-glob "^2.0.0" 1511 | 1512 | parse-json@^2.2.0: 1513 | version "2.2.0" 1514 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1515 | dependencies: 1516 | error-ex "^1.2.0" 1517 | 1518 | parse5@^1.5.1: 1519 | version "1.5.1" 1520 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 1521 | 1522 | path-exists@^2.0.0: 1523 | version "2.1.0" 1524 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1525 | dependencies: 1526 | pinkie-promise "^2.0.0" 1527 | 1528 | path-is-absolute@^1.0.0: 1529 | version "1.0.1" 1530 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1531 | 1532 | path-parse@^1.0.5: 1533 | version "1.0.5" 1534 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 1535 | 1536 | path-type@^1.0.0: 1537 | version "1.1.0" 1538 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1539 | dependencies: 1540 | graceful-fs "^4.1.2" 1541 | pify "^2.0.0" 1542 | pinkie-promise "^2.0.0" 1543 | 1544 | pify@^2.0.0: 1545 | version "2.3.0" 1546 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1547 | 1548 | pinkie-promise@^2.0.0: 1549 | version "2.0.1" 1550 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1551 | dependencies: 1552 | pinkie "^2.0.0" 1553 | 1554 | pinkie@^2.0.0: 1555 | version "2.0.4" 1556 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1557 | 1558 | prelude-ls@~1.1.2: 1559 | version "1.1.2" 1560 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 1561 | 1562 | preserve@^0.2.0: 1563 | version "0.2.0" 1564 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1565 | 1566 | pretty-bytes@^4.0.2: 1567 | version "4.0.2" 1568 | resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-4.0.2.tgz#b2bf82e7350d65c6c33aa95aaa5a4f6327f61cd9" 1569 | 1570 | pretty-format@^18.1.0: 1571 | version "18.1.0" 1572 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-18.1.0.tgz#fb65a86f7a7f9194963eee91865c1bcf1039e284" 1573 | dependencies: 1574 | ansi-styles "^2.2.1" 1575 | 1576 | private@^0.1.6: 1577 | version "0.1.6" 1578 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.6.tgz#55c6a976d0f9bafb9924851350fe47b9b5fbb7c1" 1579 | 1580 | prr@~0.0.0: 1581 | version "0.0.0" 1582 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 1583 | 1584 | punycode@^1.4.1: 1585 | version "1.4.1" 1586 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1587 | 1588 | qs@~6.3.0: 1589 | version "6.3.0" 1590 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442" 1591 | 1592 | randomatic@^1.1.3: 1593 | version "1.1.6" 1594 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 1595 | dependencies: 1596 | is-number "^2.0.2" 1597 | kind-of "^3.0.2" 1598 | 1599 | read-pkg-up@^1.0.1: 1600 | version "1.0.1" 1601 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 1602 | dependencies: 1603 | find-up "^1.0.0" 1604 | read-pkg "^1.0.0" 1605 | 1606 | read-pkg@^1.0.0: 1607 | version "1.1.0" 1608 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 1609 | dependencies: 1610 | load-json-file "^1.0.0" 1611 | normalize-package-data "^2.3.2" 1612 | path-type "^1.0.0" 1613 | 1614 | redeyed@~1.0.0: 1615 | version "1.0.1" 1616 | resolved "https://registry.yarnpkg.com/redeyed/-/redeyed-1.0.1.tgz#e96c193b40c0816b00aec842698e61185e55498a" 1617 | dependencies: 1618 | esprima "~3.0.0" 1619 | 1620 | regenerator-runtime@^0.10.0: 1621 | version "0.10.1" 1622 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.1.tgz#257f41961ce44558b18f7814af48c17559f9faeb" 1623 | 1624 | regex-cache@^0.4.2: 1625 | version "0.4.3" 1626 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 1627 | dependencies: 1628 | is-equal-shallow "^0.1.3" 1629 | is-primitive "^2.0.0" 1630 | 1631 | repeat-element@^1.1.2: 1632 | version "1.1.2" 1633 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1634 | 1635 | repeat-string@^1.5.2: 1636 | version "1.6.1" 1637 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1638 | 1639 | repeating@^2.0.0: 1640 | version "2.0.1" 1641 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1642 | dependencies: 1643 | is-finite "^1.0.0" 1644 | 1645 | request@^2.55.0: 1646 | version "2.79.0" 1647 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 1648 | dependencies: 1649 | aws-sign2 "~0.6.0" 1650 | aws4 "^1.2.1" 1651 | caseless "~0.11.0" 1652 | combined-stream "~1.0.5" 1653 | extend "~3.0.0" 1654 | forever-agent "~0.6.1" 1655 | form-data "~2.1.1" 1656 | har-validator "~2.0.6" 1657 | hawk "~3.1.3" 1658 | http-signature "~1.1.0" 1659 | is-typedarray "~1.0.0" 1660 | isstream "~0.1.2" 1661 | json-stringify-safe "~5.0.1" 1662 | mime-types "~2.1.7" 1663 | oauth-sign "~0.8.1" 1664 | qs "~6.3.0" 1665 | stringstream "~0.0.4" 1666 | tough-cookie "~2.3.0" 1667 | tunnel-agent "~0.4.1" 1668 | uuid "^3.0.0" 1669 | 1670 | require-directory@^2.1.1: 1671 | version "2.1.1" 1672 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1673 | 1674 | require-main-filename@^1.0.1: 1675 | version "1.0.1" 1676 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 1677 | 1678 | resolve@1.1.7: 1679 | version "1.1.7" 1680 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 1681 | 1682 | resolve@^1.2.0: 1683 | version "1.2.0" 1684 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.2.0.tgz#9589c3f2f6149d1417a40becc1663db6ec6bc26c" 1685 | 1686 | right-align@^0.1.1: 1687 | version "0.1.3" 1688 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 1689 | dependencies: 1690 | align-text "^0.1.1" 1691 | 1692 | rimraf@^2.4.3, rimraf@^2.4.4: 1693 | version "2.5.4" 1694 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 1695 | dependencies: 1696 | glob "^7.0.5" 1697 | 1698 | sane@~1.4.1: 1699 | version "1.4.1" 1700 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.4.1.tgz#88f763d74040f5f0c256b6163db399bf110ac715" 1701 | dependencies: 1702 | exec-sh "^0.2.0" 1703 | fb-watchman "^1.8.0" 1704 | minimatch "^3.0.2" 1705 | minimist "^1.1.1" 1706 | walker "~1.0.5" 1707 | watch "~0.10.0" 1708 | 1709 | sax@^1.1.4: 1710 | version "1.2.1" 1711 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.1.tgz#7b8e656190b228e81a66aea748480d828cd2d37a" 1712 | 1713 | "semver@2 || 3 || 4 || 5", semver@^5.1.0, semver@^5.3.0: 1714 | version "5.3.0" 1715 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 1716 | 1717 | set-blocking@^2.0.0: 1718 | version "2.0.0" 1719 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1720 | 1721 | shellwords@^0.1.0: 1722 | version "0.1.0" 1723 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.0.tgz#66afd47b6a12932d9071cbfd98a52e785cd0ba14" 1724 | 1725 | slash@^1.0.0: 1726 | version "1.0.0" 1727 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 1728 | 1729 | sntp@1.x.x: 1730 | version "1.0.9" 1731 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 1732 | dependencies: 1733 | hoek "2.x.x" 1734 | 1735 | source-map-support@^0.4.2: 1736 | version "0.4.11" 1737 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.11.tgz#647f939978b38535909530885303daf23279f322" 1738 | dependencies: 1739 | source-map "^0.5.3" 1740 | 1741 | source-map@^0.4.4: 1742 | version "0.4.4" 1743 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 1744 | dependencies: 1745 | amdefine ">=0.0.4" 1746 | 1747 | source-map@^0.5.0, source-map@^0.5.3, source-map@~0.5.1: 1748 | version "0.5.6" 1749 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 1750 | 1751 | source-map@~0.2.0: 1752 | version "0.2.0" 1753 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 1754 | dependencies: 1755 | amdefine ">=0.0.4" 1756 | 1757 | spdx-correct@~1.0.0: 1758 | version "1.0.2" 1759 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 1760 | dependencies: 1761 | spdx-license-ids "^1.0.2" 1762 | 1763 | spdx-expression-parse@~1.0.0: 1764 | version "1.0.4" 1765 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 1766 | 1767 | spdx-license-ids@^1.0.2: 1768 | version "1.2.2" 1769 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 1770 | 1771 | sprintf-js@~1.0.2: 1772 | version "1.0.3" 1773 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 1774 | 1775 | sshpk@^1.7.0: 1776 | version "1.10.2" 1777 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.2.tgz#d5a804ce22695515638e798dbe23273de070a5fa" 1778 | dependencies: 1779 | asn1 "~0.2.3" 1780 | assert-plus "^1.0.0" 1781 | dashdash "^1.12.0" 1782 | getpass "^0.1.1" 1783 | optionalDependencies: 1784 | bcrypt-pbkdf "^1.0.0" 1785 | ecc-jsbn "~0.1.1" 1786 | jodid25519 "^1.0.0" 1787 | jsbn "~0.1.0" 1788 | tweetnacl "~0.14.0" 1789 | 1790 | string-width@^1.0.1, string-width@^1.0.2: 1791 | version "1.0.2" 1792 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1793 | dependencies: 1794 | code-point-at "^1.0.0" 1795 | is-fullwidth-code-point "^1.0.0" 1796 | strip-ansi "^3.0.0" 1797 | 1798 | string.prototype.codepointat@^0.2.0: 1799 | version "0.2.0" 1800 | resolved "https://registry.yarnpkg.com/string.prototype.codepointat/-/string.prototype.codepointat-0.2.0.tgz#6b26e9bd3afcaa7be3b4269b526de1b82000ac78" 1801 | 1802 | stringstream@~0.0.4: 1803 | version "0.0.5" 1804 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 1805 | 1806 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1807 | version "3.0.1" 1808 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1809 | dependencies: 1810 | ansi-regex "^2.0.0" 1811 | 1812 | strip-bom@^2.0.0: 1813 | version "2.0.0" 1814 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 1815 | dependencies: 1816 | is-utf8 "^0.2.0" 1817 | 1818 | supports-color@^2.0.0: 1819 | version "2.0.0" 1820 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1821 | 1822 | supports-color@^3.1.2: 1823 | version "3.2.3" 1824 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 1825 | dependencies: 1826 | has-flag "^1.0.0" 1827 | 1828 | "symbol-tree@>= 3.1.0 < 4.0.0": 1829 | version "3.2.1" 1830 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.1.tgz#8549dd1d01fa9f893c18cc9ab0b106b4d9b168cb" 1831 | 1832 | test-exclude@^3.3.0: 1833 | version "3.3.0" 1834 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-3.3.0.tgz#7a17ca1239988c98367b0621456dbb7d4bc38977" 1835 | dependencies: 1836 | arrify "^1.0.1" 1837 | micromatch "^2.3.11" 1838 | object-assign "^4.1.0" 1839 | read-pkg-up "^1.0.1" 1840 | require-main-filename "^1.0.1" 1841 | 1842 | throat@^3.0.0: 1843 | version "3.0.0" 1844 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.0.0.tgz#e7c64c867cbb3845f10877642f7b60055b8ec0d6" 1845 | 1846 | tinytime@^0.2.0: 1847 | version "0.2.0" 1848 | resolved "https://registry.yarnpkg.com/tinytime/-/tinytime-0.2.0.tgz#bdf0117a6114557fd2220996da9e0a7a9ceac8fb" 1849 | 1850 | tmpl@1.0.x: 1851 | version "1.0.4" 1852 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 1853 | 1854 | to-fast-properties@^1.0.1: 1855 | version "1.0.2" 1856 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 1857 | 1858 | tough-cookie@^2.3.1, tough-cookie@~2.3.0: 1859 | version "2.3.2" 1860 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 1861 | dependencies: 1862 | punycode "^1.4.1" 1863 | 1864 | tr46@~0.0.3: 1865 | version "0.0.3" 1866 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 1867 | 1868 | tunnel-agent@~0.4.1: 1869 | version "0.4.3" 1870 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 1871 | 1872 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1873 | version "0.14.5" 1874 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1875 | 1876 | type-check@~0.3.2: 1877 | version "0.3.2" 1878 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 1879 | dependencies: 1880 | prelude-ls "~1.1.2" 1881 | 1882 | uglify-js@^2.6: 1883 | version "2.7.5" 1884 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.7.5.tgz#4612c0c7baaee2ba7c487de4904ae122079f2ca8" 1885 | dependencies: 1886 | async "~0.2.6" 1887 | source-map "~0.5.1" 1888 | uglify-to-browserify "~1.0.0" 1889 | yargs "~3.10.0" 1890 | 1891 | uglify-to-browserify@~1.0.0: 1892 | version "1.0.2" 1893 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 1894 | 1895 | uuid@^3.0.0: 1896 | version "3.0.1" 1897 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 1898 | 1899 | validate-npm-package-license@^3.0.1: 1900 | version "3.0.1" 1901 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 1902 | dependencies: 1903 | spdx-correct "~1.0.0" 1904 | spdx-expression-parse "~1.0.0" 1905 | 1906 | verror@1.3.6: 1907 | version "1.3.6" 1908 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 1909 | dependencies: 1910 | extsprintf "1.0.2" 1911 | 1912 | walker@~1.0.5: 1913 | version "1.0.7" 1914 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 1915 | dependencies: 1916 | makeerror "1.0.x" 1917 | 1918 | watch@~0.10.0: 1919 | version "0.10.0" 1920 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 1921 | 1922 | webidl-conversions@^3.0.0, webidl-conversions@^3.0.1: 1923 | version "3.0.1" 1924 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 1925 | 1926 | whatwg-encoding@^1.0.1: 1927 | version "1.0.1" 1928 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 1929 | dependencies: 1930 | iconv-lite "0.4.13" 1931 | 1932 | whatwg-url@^4.1.0: 1933 | version "4.3.0" 1934 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.3.0.tgz#92aaee21f4f2a642074357d70ef8500a7cbb171a" 1935 | dependencies: 1936 | tr46 "~0.0.3" 1937 | webidl-conversions "^3.0.0" 1938 | 1939 | which-module@^1.0.0: 1940 | version "1.0.0" 1941 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 1942 | 1943 | which@^1.0.5, which@^1.1.1: 1944 | version "1.2.12" 1945 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.12.tgz#de67b5e450269f194909ef23ece4ebe416fa1192" 1946 | dependencies: 1947 | isexe "^1.1.1" 1948 | 1949 | window-size@0.1.0: 1950 | version "0.1.0" 1951 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 1952 | 1953 | wordwrap@0.0.2: 1954 | version "0.0.2" 1955 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 1956 | 1957 | wordwrap@~0.0.2: 1958 | version "0.0.3" 1959 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 1960 | 1961 | wordwrap@~1.0.0: 1962 | version "1.0.0" 1963 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 1964 | 1965 | worker-farm@^1.3.1: 1966 | version "1.3.1" 1967 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.3.1.tgz#4333112bb49b17aa050b87895ca6b2cacf40e5ff" 1968 | dependencies: 1969 | errno ">=0.1.1 <0.2.0-0" 1970 | xtend ">=4.0.0 <4.1.0-0" 1971 | 1972 | wrap-ansi@^2.0.0: 1973 | version "2.1.0" 1974 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 1975 | dependencies: 1976 | string-width "^1.0.1" 1977 | strip-ansi "^3.0.1" 1978 | 1979 | wrappy@1: 1980 | version "1.0.2" 1981 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1982 | 1983 | "xml-name-validator@>= 2.0.1 < 3.0.0": 1984 | version "2.0.1" 1985 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 1986 | 1987 | "xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0: 1988 | version "4.0.1" 1989 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 1990 | 1991 | y18n@^3.2.1: 1992 | version "3.2.1" 1993 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 1994 | 1995 | yargs-parser@^4.2.0: 1996 | version "4.2.1" 1997 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" 1998 | dependencies: 1999 | camelcase "^3.0.0" 2000 | 2001 | yargs@^6.3.0: 2002 | version "6.6.0" 2003 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" 2004 | dependencies: 2005 | camelcase "^3.0.0" 2006 | cliui "^3.2.0" 2007 | decamelize "^1.1.1" 2008 | get-caller-file "^1.0.1" 2009 | os-locale "^1.4.0" 2010 | read-pkg-up "^1.0.1" 2011 | require-directory "^2.1.1" 2012 | require-main-filename "^1.0.1" 2013 | set-blocking "^2.0.0" 2014 | string-width "^1.0.2" 2015 | which-module "^1.0.0" 2016 | y18n "^3.2.1" 2017 | yargs-parser "^4.2.0" 2018 | 2019 | yargs@~3.10.0: 2020 | version "3.10.0" 2021 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 2022 | dependencies: 2023 | camelcase "^1.0.2" 2024 | cliui "^2.1.0" 2025 | decamelize "^1.0.0" 2026 | window-size "0.1.0" 2027 | --------------------------------------------------------------------------------