├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── app.js ├── bin └── www ├── docs ├── Caddyfile ├── setup.md └── startup.md ├── letter ├── example-letter.md ├── signature.pdf └── template.tex ├── package.json ├── public └── stylesheets │ └── style.css ├── routes ├── index.js ├── pdf.js └── users.js ├── views ├── error.pug ├── index.pug └── layout.pug └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnglst/latex-letter/091b72d23a2f0d3242262cc700f102fbbe912aab/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | user-letters -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM vnglst/pandoc-nodejs-docker 2 | 3 | MAINTAINER Koen van Gilst 4 | 5 | # Add app source code 6 | ADD . /usr/src/app 7 | WORKDIR /usr/src/app 8 | 9 | # Install packages with YARN 10 | RUN yarn 11 | 12 | EXPOSE 8080 13 | CMD [ "yarn", "start" ] 14 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2016 Koen van Gilst 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Latex letters 2 | 3 | Generating beautiful PDF letters with LaTeX and Node. 4 | 5 | ## Clone repo 6 | 7 | ```` 8 | clone https://github.com/vnglst/latex-letter.git 9 | cd latex-letter 10 | ```` 11 | 12 | ## Build Docker image 13 | 14 | Building the Docker images from the Dockerfile might take a while (downloading the images it's based on and verifying those). After the first built is goes faster. 15 | 16 | ```` 17 | docker build -t vnglst/latex-letter . 18 | ```` 19 | 20 | Find the Docker image id by typing: 21 | ```` 22 | docker images 23 | ```` 24 | 25 | ## Start developing 26 | Start the Docker container and forward port 8080 to 8080 on your localhost. 27 | ```` 28 | docker run -v $(pwd) -p 8080:8080 -d 29 | ```` 30 | Open the web app on http://localhost:8080. You can now make changes to the source code and the application automatically restarts on changes. 31 | 32 | ## Push the image to Docker 33 | 34 | ```` 35 | docker push vnglst/latex-letter 36 | 37 | ```` 38 | 39 | It's also possible to add your Github repo to Docker Hub and let them do the building for you. That way you don't have to upload the rather large Docker image (of almost 6 Gig). 40 | 41 | ## Deploy on a server 42 | Create a server, for instance a 512 Mb Droplet on Digital Ocean. If you use the CoreOS droplet you get an optimized Docker server without any doing any extra work. 43 | 44 | ```` 45 | docker pull vnglst/latex-letter 46 | docker run -p 8080:8080 -d 47 | 48 | ```` 49 | You're own LaTeX letter app is now deployed. You can find it on port 8080 on your IP address. For instance: 188.166.141.4:8080 50 | 51 | That's all! Feel free to contact me if you have any questions! 52 | 53 | -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- 1 | var express = require('express') 2 | var path = require('path') 3 | var logger = require('morgan') 4 | var cookieParser = require('cookie-parser') 5 | var bodyParser = require('body-parser') 6 | 7 | var index = require('./routes/index') 8 | var users = require('./routes/users') 9 | var pdf = require('./routes/pdf') 10 | 11 | var app = express() 12 | 13 | // view engine setup 14 | app.set('views', path.join(__dirname, 'views')) 15 | app.set('view engine', 'pug') 16 | 17 | app.use(logger('dev')) 18 | app.use(bodyParser.json()) 19 | app.use(bodyParser.urlencoded({ extended: false })) 20 | app.use(cookieParser()) 21 | app.use(express.static(path.join(__dirname, 'public'))) 22 | 23 | app.use('/', index) 24 | app.use('/users', users) 25 | app.use('/pdf', pdf) 26 | 27 | // catch 404 and forward to error handler 28 | app.use(function (req, res, next) { 29 | var err = new Error('Not Found') 30 | err.status = 404 31 | next(err) 32 | }) 33 | 34 | // error handler 35 | app.use(function (err, req, res, next) { 36 | // set locals, only providing error in development 37 | res.locals.message = err.message 38 | res.locals.error = req.app.get('env') === 'development' ? err : {} 39 | 40 | // render the error page 41 | res.status(err.status || 500) 42 | res.render('error') 43 | }) 44 | 45 | module.exports = app 46 | -------------------------------------------------------------------------------- /bin/www: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | /** 4 | * Module dependencies. 5 | */ 6 | 7 | var app = require('../app') 8 | var debug = require('debug')('latex-letter:server') 9 | var http = require('http') 10 | 11 | /** 12 | * Get port from environment and store in Express. 13 | */ 14 | 15 | var port = normalizePort(process.env.PORT || '8080') 16 | app.set('port', port) 17 | 18 | /** 19 | * Create HTTP server. 20 | */ 21 | 22 | var server = http.createServer(app) 23 | 24 | /** 25 | * Listen on provided port, on all network interfaces. 26 | */ 27 | 28 | server.listen(port) 29 | server.on('error', onError) 30 | server.on('listening', onListening) 31 | 32 | /** 33 | * Normalize a port into a number, string, or false. 34 | */ 35 | 36 | function normalizePort (val) { 37 | var port = parseInt(val, 10) 38 | 39 | if (isNaN(port)) { 40 | // named pipe 41 | return val 42 | } 43 | 44 | if (port >= 0) { 45 | // port number 46 | return port 47 | } 48 | 49 | return false 50 | } 51 | 52 | /** 53 | * Event listener for HTTP server "error" event. 54 | */ 55 | 56 | function onError (error) { 57 | if (error.syscall !== 'listen') { 58 | throw error 59 | } 60 | 61 | var bind = typeof port === 'string' 62 | ? 'Pipe ' + port 63 | : 'Port ' + port 64 | 65 | // handle specific listen errors with friendly messages 66 | switch (error.code) { 67 | case 'EACCES': 68 | console.error(bind + ' requires elevated privileges') 69 | process.exit(1) 70 | break 71 | case 'EADDRINUSE': 72 | console.error(bind + ' is already in use') 73 | process.exit(1) 74 | break 75 | default: 76 | throw error 77 | } 78 | } 79 | 80 | /** 81 | * Event listener for HTTP server "listening" event. 82 | */ 83 | 84 | function onListening () { 85 | var addr = server.address() 86 | var bind = typeof addr === 'string' 87 | ? 'pipe ' + addr 88 | : 'port ' + addr.port 89 | debug('Listening on ' + bind) 90 | } 91 | -------------------------------------------------------------------------------- /docs/Caddyfile: -------------------------------------------------------------------------------- 1 | letters.koenvangilst.nl { 2 | proxy / localhost:8080 { 3 | policy round_robin 4 | } 5 | gzip 6 | log /home/ubuntu/logs/letters.log 7 | } -------------------------------------------------------------------------------- /docs/setup.md: -------------------------------------------------------------------------------- 1 | sudo apt-get update && sudo apt-get upgrade 2 | echo "Install docker" 3 | sudo curl -sSL https://get.docker.com/ | sh 4 | sudo usermod -aG docker ubuntu 5 | curl https://getcaddy.com | bash 6 | sudo reboot -------------------------------------------------------------------------------- /docs/startup.md: -------------------------------------------------------------------------------- 1 | ulimit -n 8192 2 | sudo nohup caddy >> logs/caddy.log & 3 | cat logs/caddy.log 4 | docker info 5 | docker pull vnglst/latex-letter 6 | docker run --restart=always -p 80:8080 -d 4c297c28c876 7 | 8 | # To restart Caddy use 9 | sudo kill -USR1 10228 -------------------------------------------------------------------------------- /letter/example-letter.md: -------------------------------------------------------------------------------- 1 | --- 2 | # subject: My life as a soldier 3 | author: F. Nietzsche 4 | city: Naumburg 5 | from: 6 | - Artillerieregiment, 8. Batt. 7 | - Nordstraße 15, Naumburg 8 | to: 9 | - Carl Freiherr von Gersdorff 10 | - Stresow-Kaserne I 11 | - Grenadierstraße 13–16 12 | - 13597 Spandau 13 | 14 | # Settings 15 | mainfont: Hoefler Text 16 | altfont: Helvetica Neue 17 | monofont: Courier 18 | lang: english 19 | fontsize: 10pt 20 | geometry: a4paper, left=35mm, right=35mm, top=50mm, bottom=25mm 21 | # letterhead: true 22 | # customdate: YYYY-MM-DD 23 | --- 24 | 25 | Dear Friend, 26 | 27 | I am a bombardier in the second mounted division of the Fourth Horse Artillery. 28 | 29 | You may well imagine how astonished I was by this revolution in my affairs, and what a violent upheaval it has made in my everyday humdrum existence. Nevertheless I have borne the change with determination and courage, and even derive a certain pleasure from this turn of fortune. Now that I have an opportunity of doing a little athletic training I am more than ever thankful to our Schopenhauer. For the first five weeks I had to be in the stables. At 5:30 in the morning I had to be among the horses, removing the manure and grooming the animals down with the currycomb and horse brush. For the present my work lasts on an average from 7 a.m. to 10 a.m. and from 11.30 a.m. to 6 p.m., the greater part of which I spend in parade drill. Four times a week we two soldiers who are to serve for a year have to attend a lecture given by a lieutenant, to prepare us for the reserve officers examination. You must know that in the horse artillery there is a tremendous amount to learn. We get most fun out of the riding lessons. My horse is a very fine animal, and I am supposed to have some talent for riding. When I and my steed gallop round the large parade ground, I feel very contented with my lot. On the whole, too, I am very well treated. Above all, we have a very nice captain. 30 | 31 | I have now told you all about my life as a soldier. This is the reason why I have kept you waiting so long for news and for an answer to your last letter. Meanwhile, if I am not mistaken, you will probably have been freed from your military fetters; that is why I thought it would be best to address this letter to Spandau. 32 | 33 | But my time is already up; a business letter to Volkmann and another to Ritschl have robbed me of much of it. So I must stop in order to get ready for the parade in full kit. 34 | 35 | Well, old man, forgive my long neglect, and hold the god of War responsible for most of it. 36 | 37 | Your devoted friend, 38 | -------------------------------------------------------------------------------- /letter/signature.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vnglst/latex-letter/091b72d23a2f0d3242262cc700f102fbbe912aab/letter/signature.pdf -------------------------------------------------------------------------------- /letter/template.tex: -------------------------------------------------------------------------------- 1 | %!TEX TS-program = xelatex 2 | %!TEX encoding = UTF-8 Unicode 3 | 4 | \documentclass[$fontsize$, a4paper]{article} 5 | \usepackage{fontspec} 6 | 7 | % LAYOUT 8 | %-------------------------------- 9 | \usepackage{geometry} 10 | \geometry{$geometry$} 11 | 12 | % No page numbers 13 | \pagenumbering{gobble} 14 | 15 | % Left align 16 | \usepackage[document]{ragged2e} 17 | 18 | % Trim excessive whitespace before lists 19 | \usepackage{enumitem} 20 | \setlist{nolistsep} 21 | 22 | $if(letterhead)$ 23 | \usepackage{wallpaper} 24 | % \ThisULCornerWallPaper{1}{letterhead-front.pdf} % Uncomment to include a different letterhead on the first page 25 | \ULCornerWallPaper{1}{letterhead.pdf} 26 | $endif$ 27 | 28 | % LANGUAGE 29 | %-------------------------------- 30 | $if(lang)$ 31 | \usepackage{polyglossia} 32 | \setmainlanguage{$lang$} 33 | $endif$ 34 | 35 | % TYPOGRAPHY 36 | %-------------------------------- 37 | \usepackage{xunicode} 38 | \usepackage{xltxtra} 39 | \usepackage[protrusion=true,final]{microtype} 40 | 41 | % converts LaTeX specials (quotes, dashes etc.) to Unicode 42 | \defaultfontfeatures{Mapping=tex-text} 43 | \setromanfont [Ligatures={Common}, Numbers={OldStyle}]{$mainfont$} 44 | \setsansfont[Scale=0.9]{$altfont$} 45 | \setmonofont[Scale=0.8]{$monofont$} 46 | 47 | % Set paragraph break 48 | \setlength{\parskip}{1em} 49 | 50 | % Custom ampersand 51 | \newcommand{\amper}{{\fontspec[Scale=.95]{$mainfont$}\selectfont\itshape\&}} 52 | 53 | $if(mainfont)$ 54 | \setmainfont{$mainfont$} 55 | $endif$ 56 | $if(altfont)$ 57 | \setsansfont{$altfont$} 58 | $endif$ 59 | 60 | % Command required by how Pandoc handles the list conversion 61 | \providecommand{\tightlist}{% 62 | \setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}} 63 | 64 | % PDF SETUP 65 | %-------------------------------- 66 | \usepackage[xetex, bookmarks, colorlinks, breaklinks]{hyperref} 67 | \hypersetup 68 | { 69 | pdfauthor={$author$}, 70 | pdfsubject={$subject$}, 71 | pdftitle={$subject$}, 72 | colorlinks,breaklinks, 73 | filecolor=black, 74 | urlcolor=[rgb]{0.117,0.682,0.858}, 75 | linkcolor=[rgb]{0.117,0.682,0.858}, 76 | linkcolor=[rgb]{0.117,0.682,0.858}, 77 | citecolor=[rgb]{0.117,0.682,0.858} 78 | } 79 | 80 | % To display custom date in the example 81 | $if(customdate)$ 82 | \usepackage[$lang$]{datetime2} 83 | \DTMsavedate{customdate}{$customdate$} 84 | $endif$ 85 | 86 | % DOCUMENT 87 | %-------------------------------- 88 | \begin{document} 89 | \small 90 | \textsc{\textbf{$author$}} 91 | $for(from)$ 92 | \textbullet{} \textsc{$from$} 93 | $endfor$ 94 | 95 | \vspace{1em} 96 | 97 | \normalsize \sffamily 98 | $for(to)$ 99 | $to$\\ 100 | $endfor$ 101 | 102 | \vspace{3em} 103 | 104 | \rmfamily 105 | \begin{flushright} 106 | $city$, $if(customdate)$\DTMusedate{customdate}$else$\today$endif$ 107 | \end{flushright} 108 | 109 | \vspace{1em} 110 | 111 | $if(subject)$ 112 | \textbf{$subject$} 113 | $endif$ 114 | 115 | \vspace{1em} 116 | 117 | $body$ 118 | 119 | \begin{FlushRight} 120 | \IfFileExists{signature.pdf} 121 | { 122 | \includegraphics[height=5.5\baselineskip]{signature.pdf} \par 123 | } 124 | { 125 | \vspace{5.5\baselineskip} 126 | } 127 | $author$ 128 | \end{FlushRight} 129 | 130 | \end{document} 131 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "latex-letter", 3 | "version": "0.0.0", 4 | "private": true, 5 | "scripts": { 6 | "start": "node --harmony-async-await ./bin/www", 7 | "watch": "nodemon --harmony-async-await ./bin/www", 8 | "lint": "standard **/**.js", 9 | "lint:fix": "standard **/**.js --fix" 10 | }, 11 | "dependencies": { 12 | "body-parser": "~1.15.2", 13 | "cookie-parser": "~1.4.3", 14 | "debug": "~2.2.0", 15 | "express": "~4.14.0", 16 | "express-generator": "^4.14.0", 17 | "global": "^4.3.1", 18 | "morgan": "~1.7.0", 19 | "nodemon": "^1.11.0", 20 | "pdfkit": "^0.8.0", 21 | "pug": "~2.0.0-beta6", 22 | "serve-favicon": "~2.3.0", 23 | "shortid": "^2.2.6" 24 | }, 25 | "devDependencies": { 26 | "standard": "^8.5.0" 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /public/stylesheets/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding: 10px; 3 | } 4 | 5 | .letter { 6 | max-width: 700px; 7 | } 8 | -------------------------------------------------------------------------------- /routes/index.js: -------------------------------------------------------------------------------- 1 | var express = require('express') 2 | var router = express.Router() 3 | 4 | /* GET home page. */ 5 | router.get('/', function (req, res, next) { 6 | res.render('index', { title: 'Express' }) 7 | }) 8 | 9 | module.exports = router 10 | -------------------------------------------------------------------------------- /routes/pdf.js: -------------------------------------------------------------------------------- 1 | const express = require('express') 2 | const shortid = require('shortid') 3 | const router = express.Router() 4 | const fs = require('fs') 5 | const 6 | spawn = require('child_process') 7 | .spawnSync 8 | 9 | const cleanup = (inputFile, outputFile) => { 10 | spawn(`rm`, [inputFile]) 11 | spawn(`rm`, [outputFile]) 12 | } 13 | 14 | const makePDF = (inputFile, outputFile) => { 15 | const pandoc = spawn(`pandoc`, [`${inputFile}`, 16 | `-o`, 17 | `${outputFile}`, 18 | `--template=letter/template.tex`, 19 | `--latex-engine=xelatex`, 20 | `--latex-engine-opt=--disable-write18` 21 | // this disables remote execution of random code in LaTeX (hopefully) 22 | ]) 23 | const error = pandoc.stderr.toString() 24 | if (error) { 25 | console.log(error) 26 | } 27 | } 28 | 29 | const validateInput = (body) => { 30 | // "To" fields are required for the LaTeX compiler 31 | if (!body.to1) return false 32 | if (!body.to2) return false 33 | if (!body.to3) return false 34 | if (!body.to4) return false 35 | return true 36 | } 37 | 38 | // Removes \ from user input string 39 | // Sanitize other characters 40 | const sanitize = (input) => { 41 | return input 42 | .replace(String.fromCharCode(92), ``) 43 | .replace(`#`, `\\#`) 44 | .replace(`%`, `\\%`) 45 | .replace(`$`, `\\$`) 46 | .replace(`^`, `\\^`) 47 | .replace(`&`, `\\&`) 48 | .replace(`{`, `\\{`) 49 | .replace(`}`, `\\}`) 50 | } 51 | 52 | // Don't allow user to execute code on server using LaTeX 53 | // E.g. \input{/etc/passwd} 54 | // Or even worse: \write18{rm -rf /} 55 | const sanitizeInput = (body) => { 56 | console.log(body) 57 | for (let prop in body) { 58 | body[prop] = sanitize(body[prop]) 59 | } 60 | console.log(body) 61 | return body 62 | } 63 | 64 | router.post('/', (req, res) => { 65 | // Make sure user-letters folder exists 66 | spawn(`mkdir`, [`-p`, `user-letters`]) 67 | 68 | const uniqueId = shortid.generate() 69 | const inputFile = `user-letters/letter-${uniqueId}.md` 70 | const outputFile = `user-letters/output-${uniqueId}.pdf` 71 | 72 | // Validate user input 73 | if (!validateInput(req.body)) { 74 | return res.send(`Incorrect data. "To" form fields cannot be empty.`) 75 | } 76 | 77 | // Sanitize user input 78 | const letterContent = formBodyToMarkDown(sanitizeInput(req.body)) 79 | 80 | fs.writeFile(inputFile, letterContent, () => { 81 | makePDF(inputFile, outputFile) 82 | const readStream = fs.createReadStream(outputFile) 83 | // Getting file stats 84 | const stats = fs.statSync(outputFile) 85 | // Setting file size 86 | res.setHeader('Content-Length', stats.size) 87 | res.setHeader('Content-Type', 'application/pdf') 88 | // Setting file name and type 89 | res.setHeader('Content-Disposition', 'attachment; filename="letter.pdf"') 90 | readStream.pipe(res) 91 | // Cleanup files 92 | cleanup(inputFile, outputFile) 93 | }) 94 | }) 95 | 96 | const formBodyToMarkDown = ({ 97 | content, 98 | subject, 99 | author, 100 | city, 101 | from1, 102 | from2, 103 | to1, 104 | to2, 105 | to3, 106 | to4 107 | }) => (`--- 108 | subject: ${subject} 109 | author: ${author} 110 | city: ${city} 111 | from: 112 | - ${from1} 113 | - ${from2} 114 | to: 115 | - ${to1} 116 | - ${to2} 117 | - ${to3} 118 | - ${to4} 119 | 120 | # Settings 121 | mainfont: Hoefler Text 122 | altfont: Helvetica Neue 123 | monofont: Courier 124 | lang: english 125 | fontsize: 10pt 126 | geometry: a4paper, left=35mm, right=35mm, top=50mm, bottom=25mm 127 | # letterhead: true 128 | # customdate: YYYY-MM-DD 129 | --- 130 | ${content || standardText} 131 | `) 132 | 133 | const standardText = `Dear Friend, 134 | 135 | I am a bombardier in the second mounted division of the Fourth Horse Artillery. 136 | 137 | You may well imagine how astonished I was by this revolution in my affairs, and what a violent upheaval it has made in my everyday humdrum existence. Nevertheless I have borne the change with determination and courage, and even derive a certain pleasure from this turn of fortune. Now that I have an opportunity of doing a little athletic training I am more than ever thankful to our Schopenhauer. For the first five weeks I had to be in the stables. At 5:30 in the morning I had to be among the horses, removing the manure and grooming the animals down with the currycomb and horse brush. For the present my work lasts on an average from 7 a.m. to 10 a.m. and from 11.30 a.m. to 6 p.m., the greater part of which I spend in parade drill. Four times a week we two soldiers who are to serve for a year have to attend a lecture given by a lieutenant, to prepare us for the reserve officers examination. You must know that in the horse artillery there is a tremendous amount to learn. We get most fun out of the riding lessons. My horse is a very fine animal, and I am supposed to have some talent for riding. When I and my steed gallop round the large parade ground, I feel very contented with my lot. On the whole, too, I am very well treated. Above all, we have a very nice captain. 138 | 139 | I have now told you all about my life as a soldier. This is the reason why I have kept you waiting so long for news and for an answer to your last letter. Meanwhile, if I am not mistaken, you will probably have been freed from your military fetters; that is why I thought it would be best to address this letter to Spandau. 140 | 141 | But my time is already up; a business letter to Volkmann and another to Ritschl have robbed me of much of it. So I must stop in order to get ready for the parade in full kit. 142 | 143 | Well, old man, forgive my long neglect, and hold the god of War responsible for most of it. 144 | 145 | Your devoted friend, 146 | ` 147 | 148 | module.exports = router 149 | -------------------------------------------------------------------------------- /routes/users.js: -------------------------------------------------------------------------------- 1 | var express = require('express') 2 | var router = express.Router() 3 | 4 | /* GET users listing. */ 5 | router.get('/', function (req, res, next) { 6 | res.send('respond with a resource') 7 | }) 8 | 9 | module.exports = router 10 | -------------------------------------------------------------------------------- /views/error.pug: -------------------------------------------------------------------------------- 1 | extends layout 2 | 3 | block content 4 | h1= message 5 | h2= error.status 6 | pre #{error.stack} 7 | -------------------------------------------------------------------------------- /views/index.pug: -------------------------------------------------------------------------------- 1 | extends layout 2 | block content 3 | .container 4 | .center-block.letter 5 | h1.text-center="Create a Beautiful Letter" 6 | hr 7 | form.form-horizontal(method="post", action="/pdf") 8 | .form-group 9 | label.col-sm-2.control-label Subject 10 | .col-sm-9 11 | input.form-control(type="text", name="subject", value="My life as a soldier") 12 | .form-group 13 | label.col-sm-2.control-label Author 14 | .col-sm-9 15 | input.form-control(type="text", name="author", value="F. Nietzsche") 16 | .form-group 17 | label.col-sm-2.control-label City 18 | .col-sm-9 19 | input.form-control(type="text", name="city", value="Naumburg") 20 | .form-group 21 | label.col-sm-2.control-label From: 22 | .col-sm-9 23 | input.form-control(type="text", name="from1", value="Artillerieregiment, 8. Batt.") 24 | .form-group 25 | .col-sm-offset-2.col-sm-9 26 | input.form-control(type="text", name="from2", value="Nordstraße 15, Naumburg") 27 | .form-group 28 | label.col-sm-2.control-label To: 29 | .col-sm-9 30 | input.form-control(type="text", name="to1", value="Carl Freiherr von Gersdorff") 31 | .form-group 32 | .col-sm-offset-2.col-sm-9 33 | input.form-control(type="text", name="to2", value="Stresow-Kaserne I") 34 | .form-group 35 | .col-sm-offset-2.col-sm-9 36 | input.form-control(type="text", name="to3", value="Grenadierstraße 13–16") 37 | .form-group 38 | .col-sm-offset-2.col-sm-9 39 | input.form-control(type="text", name="to4", value="13597 Spandau") 40 | .form-group 41 | label.col-sm-2.control-label Text 42 | .col-sm-9 43 | textarea.form-control(rows="8", name="content", placeholder="Dear Friend,\n\nI am a bombardier in the second mounted division of the Fourth Horse Artillery.\n\nYou may well imagine how astonished I was by this revolution in my affairs, and what a violent upheaval it has made in my everyday humdrum existence.") 44 | .form-group 45 | .col-sm-offset-2.col-sm-9 46 | input.btn.btn-primary(type="submit", value="Create PDF") 47 | br 48 | hr 49 | footer 50 | p.text-center 51 | | Made by 52 | a(href="https://twitter.com/vnglst") Koen van Gilst 53 | | . Based upon the 54 | a(href="http://mrzool.cc/tex-boilerplates") beautiful LATEX boilerplates 55 | | by 56 | a(href="https://twitter.com/mrzool_") Mattia Tezzele 57 | | and the 58 | a(href="https://medium.com/@dimitrieh/a-curriculum-vitae-latex-typesetting-automation-adventure-with-gitlab-6ac233c0b66b#.57lf809qi") Docker image 59 | | by 60 | a(href="https://twitter.com/dimitrieh") Dimitrie Hoekstra 61 | | . 62 | a(href="https://github.com/vnglst/latex-letter") Source code 63 | | available on Github. 64 | p.text-center 65 | | The PDF files are generated on the server and deleted immediately afterwards. The connection from the web form to the server is encrypted with standard TLS (using Caddy and Let's Encrypt). Be advised, however, that this is just a hobby project and it may contain security risks. Do not use this to generate PDF's containing confidential information. -------------------------------------------------------------------------------- /views/layout.pug: -------------------------------------------------------------------------------- 1 | doctype html 2 | html 3 | head 4 | title='Creating beautiful letter with LaTeX' 5 | link(rel='stylesheet', href='https://cdnjs.cloudflare.com/ajax/libs/bootswatch/3.3.6/flatly/bootstrap.min.css') 6 | link(rel='stylesheet', href='/stylesheets/style.css') 7 | meta(name="viewport" content="width=device-width, initial-scale=1") 8 | body 9 | a(href="https://github.com/vnglst/latex-letter") 10 | img(style="position: absolute; top: 0; right: 0; border: 0;", src="https://camo.githubusercontent.com/365986a132ccd6a44c23a9169022c0b5c890c387/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f7265645f6161303030302e706e67", alt="Fork me on GitHub", data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png") 11 | block content 12 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | abbrev@1: 4 | version "1.0.9" 5 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 6 | 7 | accepts@~1.3.3: 8 | version "1.3.3" 9 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca" 10 | dependencies: 11 | mime-types "~2.1.11" 12 | negotiator "0.6.1" 13 | 14 | acorn-globals@^3.0.0: 15 | version "3.0.0" 16 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.0.0.tgz#1a64dd8fa761288594620649526e2625917a56c6" 17 | dependencies: 18 | acorn "^3.1.0" 19 | 20 | acorn-jsx@^3.0.0, acorn-jsx@^3.0.1: 21 | version "3.0.1" 22 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 23 | dependencies: 24 | acorn "^3.0.4" 25 | 26 | acorn@^1.0.3: 27 | version "1.2.2" 28 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-1.2.2.tgz#c8ce27de0acc76d896d2b1fad3df588d9e82f014" 29 | 30 | acorn@^3.0.4, acorn@^3.1.0, acorn@~3.3.0: 31 | version "3.3.0" 32 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 33 | 34 | acorn@^4.0.1, acorn@~4.0.2: 35 | version "4.0.3" 36 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.3.tgz#1a3e850b428e73ba6b09d1cc527f5aaad4d03ef1" 37 | 38 | ajv-keywords@^1.0.0: 39 | version "1.1.1" 40 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.1.1.tgz#02550bc605a3e576041565628af972e06c549d50" 41 | 42 | ajv@^4.7.0: 43 | version "4.8.2" 44 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.8.2.tgz#65486936ca36fea39a1504332a78bebd5d447bdc" 45 | dependencies: 46 | co "^4.6.0" 47 | json-stable-stringify "^1.0.1" 48 | 49 | align-text@^0.1.1, align-text@^0.1.3: 50 | version "0.1.4" 51 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 52 | dependencies: 53 | kind-of "^3.0.2" 54 | longest "^1.0.1" 55 | repeat-string "^1.5.2" 56 | 57 | amdefine@>=0.0.4: 58 | version "1.0.1" 59 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 60 | 61 | ansi-escapes@^1.1.0: 62 | version "1.4.0" 63 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 64 | 65 | ansi-regex@^2.0.0: 66 | version "2.0.0" 67 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.0.0.tgz#c5061b6e0ef8a81775e50f5d66151bf6bf371107" 68 | 69 | ansi-styles@^2.2.1: 70 | version "2.2.1" 71 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 72 | 73 | anymatch@^1.3.0: 74 | version "1.3.0" 75 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 76 | dependencies: 77 | arrify "^1.0.0" 78 | micromatch "^2.1.5" 79 | 80 | aproba@^1.0.3: 81 | version "1.0.4" 82 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.0.4.tgz#2713680775e7614c8ba186c065d4e2e52d1072c0" 83 | 84 | are-we-there-yet@~1.1.2: 85 | version "1.1.2" 86 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 87 | dependencies: 88 | delegates "^1.0.0" 89 | readable-stream "^2.0.0 || ^1.1.13" 90 | 91 | argparse@^1.0.7: 92 | version "1.0.9" 93 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 94 | dependencies: 95 | sprintf-js "~1.0.2" 96 | 97 | arr-diff@^2.0.0: 98 | version "2.0.0" 99 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 100 | dependencies: 101 | arr-flatten "^1.0.1" 102 | 103 | arr-flatten@^1.0.1: 104 | version "1.0.1" 105 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 106 | 107 | array-flatten@1.1.1: 108 | version "1.1.1" 109 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" 110 | 111 | array-union@^1.0.1: 112 | version "1.0.2" 113 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 114 | dependencies: 115 | array-uniq "^1.0.1" 116 | 117 | array-uniq@^1.0.1: 118 | version "1.0.3" 119 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 120 | 121 | array-unique@^0.2.1: 122 | version "0.2.1" 123 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 124 | 125 | arrify@^1.0.0: 126 | version "1.0.1" 127 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 128 | 129 | asap@~2.0.3: 130 | version "2.0.5" 131 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f" 132 | 133 | asn1@~0.2.3: 134 | version "0.2.3" 135 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 136 | 137 | assert-plus@^0.2.0: 138 | version "0.2.0" 139 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 140 | 141 | assert-plus@^1.0.0: 142 | version "1.0.0" 143 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 144 | 145 | ast-transform@0.0.0: 146 | version "0.0.0" 147 | resolved "https://registry.yarnpkg.com/ast-transform/-/ast-transform-0.0.0.tgz#74944058887d8283e189d954600947bc98fe0062" 148 | dependencies: 149 | escodegen "~1.2.0" 150 | esprima "~1.0.4" 151 | through "~2.3.4" 152 | 153 | ast-types@^0.7.0: 154 | version "0.7.8" 155 | resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.7.8.tgz#902d2e0d60d071bdcd46dc115e1809ed11c138a9" 156 | 157 | async-each@^1.0.0: 158 | version "1.0.1" 159 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 160 | 161 | async@~0.2.6: 162 | version "0.2.10" 163 | resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" 164 | 165 | asynckit@^0.4.0: 166 | version "0.4.0" 167 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 168 | 169 | aws-sign2@~0.6.0: 170 | version "0.6.0" 171 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 172 | 173 | aws4@^1.2.1: 174 | version "1.5.0" 175 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.5.0.tgz#0a29ffb79c31c9e712eeb087e8e7a64b4a56d755" 176 | 177 | babel-runtime@^6.11.6: 178 | version "6.18.0" 179 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.18.0.tgz#0f4177ffd98492ef13b9f823e9994a02584c9078" 180 | dependencies: 181 | core-js "^2.4.0" 182 | regenerator-runtime "^0.9.5" 183 | 184 | balanced-match@^0.4.1: 185 | version "0.4.2" 186 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 187 | 188 | base64-js@^1.1.2: 189 | version "1.2.0" 190 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1" 191 | 192 | basic-auth@~1.0.3: 193 | version "1.0.4" 194 | resolved "https://registry.yarnpkg.com/basic-auth/-/basic-auth-1.0.4.tgz#030935b01de7c9b94a824b29f3fccb750d3a5290" 195 | 196 | bcrypt-pbkdf@^1.0.0: 197 | version "1.0.0" 198 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.0.tgz#3ca76b85241c7170bf7d9703e7b9aa74630040d4" 199 | dependencies: 200 | tweetnacl "^0.14.3" 201 | 202 | binary-extensions@^1.0.0: 203 | version "1.7.0" 204 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.7.0.tgz#6c1610db163abfb34edfe42fa423343a1e01185d" 205 | 206 | block-stream@*: 207 | version "0.0.9" 208 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 209 | dependencies: 210 | inherits "~2.0.0" 211 | 212 | body-parser@~1.15.2: 213 | version "1.15.2" 214 | resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.15.2.tgz#d7578cf4f1d11d5f6ea804cef35dc7a7ff6dae67" 215 | dependencies: 216 | bytes "2.4.0" 217 | content-type "~1.0.2" 218 | debug "~2.2.0" 219 | depd "~1.1.0" 220 | http-errors "~1.5.0" 221 | iconv-lite "0.4.13" 222 | on-finished "~2.3.0" 223 | qs "6.2.0" 224 | raw-body "~2.1.7" 225 | type-is "~1.6.13" 226 | 227 | boom@2.x.x: 228 | version "2.10.1" 229 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 230 | dependencies: 231 | hoek "2.x.x" 232 | 233 | brace-expansion@^1.0.0: 234 | version "1.1.6" 235 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 236 | dependencies: 237 | balanced-match "^0.4.1" 238 | concat-map "0.0.1" 239 | 240 | braces@^1.8.2: 241 | version "1.8.5" 242 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 243 | dependencies: 244 | expand-range "^1.8.1" 245 | preserve "^0.2.0" 246 | repeat-element "^1.1.2" 247 | 248 | brfs@^1.4.0: 249 | version "1.4.3" 250 | resolved "https://registry.yarnpkg.com/brfs/-/brfs-1.4.3.tgz#db675d6f5e923e6df087fca5859c9090aaed3216" 251 | dependencies: 252 | quote-stream "^1.0.1" 253 | resolve "^1.1.5" 254 | static-module "^1.1.0" 255 | through2 "^2.0.0" 256 | 257 | brotli@^1.2.0: 258 | version "1.3.1" 259 | resolved "https://registry.yarnpkg.com/brotli/-/brotli-1.3.1.tgz#352a6f3f6973c5a74fd4be04aba40b337b3b6a7e" 260 | dependencies: 261 | base64-js "^1.1.2" 262 | 263 | browser-resolve@^1.8.1: 264 | version "1.11.2" 265 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 266 | dependencies: 267 | resolve "1.1.7" 268 | 269 | browserify-optional@^1.0.0: 270 | version "1.0.0" 271 | resolved "https://registry.yarnpkg.com/browserify-optional/-/browserify-optional-1.0.0.tgz#20cf7ab1e7bf014cbf63782d35d75b62dab4b6f1" 272 | dependencies: 273 | ast-transform "0.0.0" 274 | ast-types "^0.7.0" 275 | browser-resolve "^1.8.1" 276 | 277 | buffer-equal@0.0.1: 278 | version "0.0.1" 279 | resolved "https://registry.yarnpkg.com/buffer-equal/-/buffer-equal-0.0.1.tgz#91bc74b11ea405bc916bc6aa908faafa5b4aac4b" 280 | 281 | buffer-shims@^1.0.0: 282 | version "1.0.0" 283 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 284 | 285 | bytes@2.4.0: 286 | version "2.4.0" 287 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.4.0.tgz#7d97196f9d5baf7f6935e25985549edd2a6c2339" 288 | 289 | caller-path@^0.1.0: 290 | version "0.1.0" 291 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 292 | dependencies: 293 | callsites "^0.2.0" 294 | 295 | callsites@^0.2.0: 296 | version "0.2.0" 297 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 298 | 299 | camelcase@^1.0.2: 300 | version "1.2.1" 301 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 302 | 303 | caseless@~0.11.0: 304 | version "0.11.0" 305 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 306 | 307 | center-align@^0.1.1: 308 | version "0.1.3" 309 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 310 | dependencies: 311 | align-text "^0.1.3" 312 | lazy-cache "^1.0.3" 313 | 314 | chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3: 315 | version "1.1.3" 316 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 317 | dependencies: 318 | ansi-styles "^2.2.1" 319 | escape-string-regexp "^1.0.2" 320 | has-ansi "^2.0.0" 321 | strip-ansi "^3.0.0" 322 | supports-color "^2.0.0" 323 | 324 | character-parser@^2.1.1: 325 | version "2.2.0" 326 | resolved "https://registry.yarnpkg.com/character-parser/-/character-parser-2.2.0.tgz#c7ce28f36d4bcd9744e5ffc2c5fcde1c73261fc0" 327 | dependencies: 328 | is-regex "^1.0.3" 329 | 330 | chokidar@^1.4.3: 331 | version "1.6.1" 332 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 333 | dependencies: 334 | anymatch "^1.3.0" 335 | async-each "^1.0.0" 336 | glob-parent "^2.0.0" 337 | inherits "^2.0.1" 338 | is-binary-path "^1.0.0" 339 | is-glob "^2.0.0" 340 | path-is-absolute "^1.0.0" 341 | readdirp "^2.0.0" 342 | optionalDependencies: 343 | fsevents "^1.0.0" 344 | 345 | circular-json@^0.3.0: 346 | version "0.3.1" 347 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 348 | 349 | clean-css@^3.3.0: 350 | version "3.4.20" 351 | resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-3.4.20.tgz#c0d8963b5448e030f0bcd3ddd0dac4dfe3dea501" 352 | dependencies: 353 | commander "2.8.x" 354 | source-map "0.4.x" 355 | 356 | cli-cursor@^1.0.1: 357 | version "1.0.2" 358 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 359 | dependencies: 360 | restore-cursor "^1.0.1" 361 | 362 | cli-width@^2.0.0: 363 | version "2.1.0" 364 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 365 | 366 | cliui@^2.1.0: 367 | version "2.1.0" 368 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 369 | dependencies: 370 | center-align "^0.1.1" 371 | right-align "^0.1.1" 372 | wordwrap "0.0.2" 373 | 374 | clone@^1.0.1: 375 | version "1.0.2" 376 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" 377 | 378 | co@^4.6.0: 379 | version "4.6.0" 380 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 381 | 382 | code-point-at@^1.0.0: 383 | version "1.1.0" 384 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 385 | 386 | combined-stream@^1.0.5, combined-stream@~1.0.5: 387 | version "1.0.5" 388 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 389 | dependencies: 390 | delayed-stream "~1.0.0" 391 | 392 | commander@^2.9.0, commander@2.9.0: 393 | version "2.9.0" 394 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 395 | dependencies: 396 | graceful-readlink ">= 1.0.0" 397 | 398 | commander@2.8.x: 399 | version "2.8.1" 400 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.8.1.tgz#06be367febfda0c330aa1e2a072d3dc9762425d4" 401 | dependencies: 402 | graceful-readlink ">= 1.0.0" 403 | 404 | concat-map@0.0.1: 405 | version "0.0.1" 406 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 407 | 408 | concat-stream@^1.4.6: 409 | version "1.5.2" 410 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.2.tgz#708978624d856af41a5a741defdd261da752c266" 411 | dependencies: 412 | inherits "~2.0.1" 413 | readable-stream "~2.0.0" 414 | typedarray "~0.0.5" 415 | 416 | concat-stream@~1.4.5: 417 | version "1.4.10" 418 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.4.10.tgz#acc3bbf5602cb8cc980c6ac840fa7d8603e3ef36" 419 | dependencies: 420 | inherits "~2.0.1" 421 | readable-stream "~1.1.9" 422 | typedarray "~0.0.5" 423 | 424 | configstore@^1.0.0: 425 | version "1.4.0" 426 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-1.4.0.tgz#c35781d0501d268c25c54b8b17f6240e8a4fb021" 427 | dependencies: 428 | graceful-fs "^4.1.2" 429 | mkdirp "^0.5.0" 430 | object-assign "^4.0.1" 431 | os-tmpdir "^1.0.0" 432 | osenv "^0.1.0" 433 | uuid "^2.0.1" 434 | write-file-atomic "^1.1.2" 435 | xdg-basedir "^2.0.0" 436 | 437 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 438 | version "1.1.0" 439 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 440 | 441 | constantinople@^3.0.1: 442 | version "3.1.0" 443 | resolved "https://registry.yarnpkg.com/constantinople/-/constantinople-3.1.0.tgz#7569caa8aa3f8d5935d62e1fa96f9f702cd81c79" 444 | dependencies: 445 | acorn "^3.1.0" 446 | is-expression "^2.0.1" 447 | 448 | content-disposition@0.5.1: 449 | version "0.5.1" 450 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.1.tgz#87476c6a67c8daa87e32e87616df883ba7fb071b" 451 | 452 | content-type@~1.0.2: 453 | version "1.0.2" 454 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.2.tgz#b7d113aee7a8dd27bd21133c4dc2529df1721eed" 455 | 456 | cookie-parser@~1.4.3: 457 | version "1.4.3" 458 | resolved "https://registry.yarnpkg.com/cookie-parser/-/cookie-parser-1.4.3.tgz#0fe31fa19d000b95f4aadf1f53fdc2b8a203baa5" 459 | dependencies: 460 | cookie "0.3.1" 461 | cookie-signature "1.0.6" 462 | 463 | cookie-signature@1.0.6: 464 | version "1.0.6" 465 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 466 | 467 | cookie@0.3.1: 468 | version "0.3.1" 469 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" 470 | 471 | core-js@^2.4.0: 472 | version "2.4.1" 473 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 474 | 475 | core-util-is@~1.0.0: 476 | version "1.0.2" 477 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 478 | 479 | cryptiles@2.x.x: 480 | version "2.0.5" 481 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 482 | dependencies: 483 | boom "2.x.x" 484 | 485 | d@^0.1.1, d@~0.1.1: 486 | version "0.1.1" 487 | resolved "https://registry.yarnpkg.com/d/-/d-0.1.1.tgz#da184c535d18d8ee7ba2aa229b914009fae11309" 488 | dependencies: 489 | es5-ext "~0.10.2" 490 | 491 | dashdash@^1.12.0: 492 | version "1.14.0" 493 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.0.tgz#29e486c5418bf0f356034a993d51686a33e84141" 494 | dependencies: 495 | assert-plus "^1.0.0" 496 | 497 | debug-log@^1.0.0: 498 | version "1.0.1" 499 | resolved "https://registry.yarnpkg.com/debug-log/-/debug-log-1.0.1.tgz#2307632d4c04382b8df8a32f70b895046d52745f" 500 | 501 | debug@^2.1.1, debug@^2.2.0: 502 | version "2.3.0" 503 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.3.0.tgz#3912dc55d7167fc3af17d2b85c13f93deaedaa43" 504 | dependencies: 505 | ms "0.7.2" 506 | 507 | debug@~2.2.0: 508 | version "2.2.0" 509 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 510 | dependencies: 511 | ms "0.7.1" 512 | 513 | decamelize@^1.0.0: 514 | version "1.2.0" 515 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 516 | 517 | deep-equal@^1.0.0: 518 | version "1.0.1" 519 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" 520 | 521 | deep-extend@~0.4.0: 522 | version "0.4.1" 523 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 524 | 525 | deep-is@~0.1.3: 526 | version "0.1.3" 527 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 528 | 529 | deglob@^2.0.0: 530 | version "2.0.0" 531 | resolved "https://registry.yarnpkg.com/deglob/-/deglob-2.0.0.tgz#dd087aa2971a0b1feeea66483c2c82685c73be86" 532 | dependencies: 533 | find-root "^1.0.0" 534 | glob "^7.0.5" 535 | ignore "^3.0.9" 536 | pkg-config "^1.1.0" 537 | run-parallel "^1.1.2" 538 | uniq "^1.0.1" 539 | 540 | del@^2.0.2: 541 | version "2.2.2" 542 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 543 | dependencies: 544 | globby "^5.0.0" 545 | is-path-cwd "^1.0.0" 546 | is-path-in-cwd "^1.0.0" 547 | object-assign "^4.0.1" 548 | pify "^2.0.0" 549 | pinkie-promise "^2.0.0" 550 | rimraf "^2.2.8" 551 | 552 | delayed-stream@~1.0.0: 553 | version "1.0.0" 554 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 555 | 556 | delegates@^1.0.0: 557 | version "1.0.0" 558 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 559 | 560 | depd@~1.1.0: 561 | version "1.1.0" 562 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3" 563 | 564 | destroy@~1.0.4: 565 | version "1.0.4" 566 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 567 | 568 | doctrine@^1.2.2: 569 | version "1.5.0" 570 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 571 | dependencies: 572 | esutils "^2.0.2" 573 | isarray "^1.0.0" 574 | 575 | doctypes@^1.1.0: 576 | version "1.1.0" 577 | resolved "https://registry.yarnpkg.com/doctypes/-/doctypes-1.1.0.tgz#ea80b106a87538774e8a3a4a5afe293de489e0a9" 578 | 579 | dom-walk@^0.1.0: 580 | version "0.1.1" 581 | resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.1.tgz#672226dc74c8f799ad35307df936aba11acd6018" 582 | 583 | duplexer@~0.1.1: 584 | version "0.1.1" 585 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 586 | 587 | duplexer2@~0.0.2: 588 | version "0.0.2" 589 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.0.2.tgz#c614dcf67e2fb14995a91711e5a617e8a60a31db" 590 | dependencies: 591 | readable-stream "~1.1.9" 592 | 593 | duplexify@^3.2.0: 594 | version "3.5.0" 595 | resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.5.0.tgz#1aa773002e1578457e9d9d4a50b0ccaaebcbd604" 596 | dependencies: 597 | end-of-stream "1.0.0" 598 | inherits "^2.0.1" 599 | readable-stream "^2.0.0" 600 | stream-shift "^1.0.0" 601 | 602 | ecc-jsbn@~0.1.1: 603 | version "0.1.1" 604 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 605 | dependencies: 606 | jsbn "~0.1.0" 607 | 608 | ee-first@1.1.1: 609 | version "1.1.1" 610 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 611 | 612 | encodeurl@~1.0.1: 613 | version "1.0.1" 614 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" 615 | 616 | end-of-stream@1.0.0: 617 | version "1.0.0" 618 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.0.0.tgz#d4596e702734a93e40e9af864319eabd99ff2f0e" 619 | dependencies: 620 | once "~1.3.0" 621 | 622 | es5-ext@^0.10.7, es5-ext@^0.10.8, es5-ext@~0.10.11, es5-ext@~0.10.2, es5-ext@~0.10.7: 623 | version "0.10.12" 624 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.12.tgz#aa84641d4db76b62abba5e45fd805ecbab140047" 625 | dependencies: 626 | es6-iterator "2" 627 | es6-symbol "~3.1" 628 | 629 | es6-iterator@2: 630 | version "2.0.0" 631 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.0.tgz#bd968567d61635e33c0b80727613c9cb4b096bac" 632 | dependencies: 633 | d "^0.1.1" 634 | es5-ext "^0.10.7" 635 | es6-symbol "3" 636 | 637 | es6-map@^0.1.3: 638 | version "0.1.4" 639 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.4.tgz#a34b147be224773a4d7da8072794cefa3632b897" 640 | dependencies: 641 | d "~0.1.1" 642 | es5-ext "~0.10.11" 643 | es6-iterator "2" 644 | es6-set "~0.1.3" 645 | es6-symbol "~3.1.0" 646 | event-emitter "~0.3.4" 647 | 648 | es6-promise@^3.0.2: 649 | version "3.3.1" 650 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-3.3.1.tgz#a08cdde84ccdbf34d027a1451bc91d4bcd28a613" 651 | 652 | es6-set@~0.1.3: 653 | version "0.1.4" 654 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.4.tgz#9516b6761c2964b92ff479456233a247dc707ce8" 655 | dependencies: 656 | d "~0.1.1" 657 | es5-ext "~0.10.11" 658 | es6-iterator "2" 659 | es6-symbol "3" 660 | event-emitter "~0.3.4" 661 | 662 | es6-symbol@~3.1, es6-symbol@~3.1.0, es6-symbol@3: 663 | version "3.1.0" 664 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.0.tgz#94481c655e7a7cad82eba832d97d5433496d7ffa" 665 | dependencies: 666 | d "~0.1.1" 667 | es5-ext "~0.10.11" 668 | 669 | es6-weak-map@^2.0.1: 670 | version "2.0.1" 671 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.1.tgz#0d2bbd8827eb5fb4ba8f97fbfea50d43db21ea81" 672 | dependencies: 673 | d "^0.1.1" 674 | es5-ext "^0.10.8" 675 | es6-iterator "2" 676 | es6-symbol "3" 677 | 678 | escape-html@~1.0.3: 679 | version "1.0.3" 680 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 681 | 682 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 683 | version "1.0.5" 684 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 685 | 686 | escodegen@~0.0.24: 687 | version "0.0.28" 688 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-0.0.28.tgz#0e4ff1715f328775d6cab51ac44a406cd7abffd3" 689 | dependencies: 690 | esprima "~1.0.2" 691 | estraverse "~1.3.0" 692 | optionalDependencies: 693 | source-map ">= 0.1.2" 694 | 695 | escodegen@~1.2.0: 696 | version "1.2.0" 697 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.2.0.tgz#09de7967791cc958b7f89a2ddb6d23451af327e1" 698 | dependencies: 699 | esprima "~1.0.4" 700 | estraverse "~1.5.0" 701 | esutils "~1.0.0" 702 | optionalDependencies: 703 | source-map "~0.1.30" 704 | 705 | escodegen@~1.3.2: 706 | version "1.3.3" 707 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.3.3.tgz#f024016f5a88e046fd12005055e939802e6c5f23" 708 | dependencies: 709 | esprima "~1.1.1" 710 | estraverse "~1.5.0" 711 | esutils "~1.0.0" 712 | optionalDependencies: 713 | source-map "~0.1.33" 714 | 715 | escope@^3.6.0: 716 | version "3.6.0" 717 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 718 | dependencies: 719 | es6-map "^0.1.3" 720 | es6-weak-map "^2.0.1" 721 | esrecurse "^4.1.0" 722 | estraverse "^4.1.1" 723 | 724 | eslint-config-standard-jsx@3.2.0: 725 | version "3.2.0" 726 | resolved "https://registry.yarnpkg.com/eslint-config-standard-jsx/-/eslint-config-standard-jsx-3.2.0.tgz#c240e26ed919a11a42aa4de8059472b38268d620" 727 | 728 | eslint-config-standard@6.2.1: 729 | version "6.2.1" 730 | resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-6.2.1.tgz#d3a68aafc7191639e7ee441e7348739026354292" 731 | 732 | eslint-plugin-promise@~3.3.0: 733 | version "3.3.1" 734 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.3.1.tgz#c1e980cf7c3cac3300731450fb31d2bb843eb226" 735 | 736 | eslint-plugin-react@~6.4.1: 737 | version "6.4.1" 738 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-6.4.1.tgz#7d1aade747db15892f71eee1fea4addf97bcfa2b" 739 | dependencies: 740 | doctrine "^1.2.2" 741 | jsx-ast-utils "^1.3.1" 742 | 743 | eslint-plugin-standard@~2.0.1: 744 | version "2.0.1" 745 | resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-2.0.1.tgz#3589699ff9c917f2c25f76a916687f641c369ff3" 746 | 747 | eslint@~3.8.1: 748 | version "3.8.1" 749 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.8.1.tgz#7d02db44cd5aaf4fa7aa489e1f083baa454342ba" 750 | dependencies: 751 | chalk "^1.1.3" 752 | concat-stream "^1.4.6" 753 | debug "^2.1.1" 754 | doctrine "^1.2.2" 755 | escope "^3.6.0" 756 | espree "^3.3.1" 757 | estraverse "^4.2.0" 758 | esutils "^2.0.2" 759 | file-entry-cache "^2.0.0" 760 | glob "^7.0.3" 761 | globals "^9.2.0" 762 | ignore "^3.1.5" 763 | imurmurhash "^0.1.4" 764 | inquirer "^0.12.0" 765 | is-my-json-valid "^2.10.0" 766 | is-resolvable "^1.0.0" 767 | js-yaml "^3.5.1" 768 | json-stable-stringify "^1.0.0" 769 | levn "^0.3.0" 770 | lodash "^4.0.0" 771 | mkdirp "^0.5.0" 772 | natural-compare "^1.4.0" 773 | optionator "^0.8.2" 774 | path-is-inside "^1.0.1" 775 | pluralize "^1.2.1" 776 | progress "^1.1.8" 777 | require-uncached "^1.0.2" 778 | shelljs "^0.6.0" 779 | strip-bom "^3.0.0" 780 | strip-json-comments "~1.0.1" 781 | table "^3.7.8" 782 | text-table "~0.2.0" 783 | user-home "^2.0.0" 784 | 785 | espree@^3.3.1: 786 | version "3.3.2" 787 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.3.2.tgz#dbf3fadeb4ecb4d4778303e50103b3d36c88b89c" 788 | dependencies: 789 | acorn "^4.0.1" 790 | acorn-jsx "^3.0.0" 791 | 792 | esprima@^2.6.0: 793 | version "2.7.3" 794 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 795 | 796 | esprima@~1.0.2, esprima@~1.0.4: 797 | version "1.0.4" 798 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-1.0.4.tgz#9f557e08fc3b4d26ece9dd34f8fbf476b62585ad" 799 | 800 | esprima@~1.1.1: 801 | version "1.1.1" 802 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-1.1.1.tgz#5b6f1547f4d102e670e140c509be6771d6aeb549" 803 | 804 | esrecurse@^4.1.0: 805 | version "4.1.0" 806 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 807 | dependencies: 808 | estraverse "~4.1.0" 809 | object-assign "^4.0.1" 810 | 811 | estraverse@^4.1.1, estraverse@^4.2.0: 812 | version "4.2.0" 813 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 814 | 815 | estraverse@~1.3.0: 816 | version "1.3.2" 817 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.3.2.tgz#37c2b893ef13d723f276d878d60d8535152a6c42" 818 | 819 | estraverse@~1.5.0: 820 | version "1.5.1" 821 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.5.1.tgz#867a3e8e58a9f84618afb6c2ddbcd916b7cbaf71" 822 | 823 | estraverse@~4.1.0: 824 | version "4.1.1" 825 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 826 | 827 | esutils@^2.0.2: 828 | version "2.0.2" 829 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 830 | 831 | esutils@~1.0.0: 832 | version "1.0.0" 833 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-1.0.0.tgz#8151d358e20c8acc7fb745e7472c0025fe496570" 834 | 835 | etag@~1.7.0: 836 | version "1.7.0" 837 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.7.0.tgz#03d30b5f67dd6e632d2945d30d6652731a34d5d8" 838 | 839 | event-emitter@~0.3.4: 840 | version "0.3.4" 841 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.4.tgz#8d63ddfb4cfe1fae3b32ca265c4c720222080bb5" 842 | dependencies: 843 | d "~0.1.1" 844 | es5-ext "~0.10.7" 845 | 846 | event-stream@~3.3.0: 847 | version "3.3.4" 848 | resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" 849 | dependencies: 850 | duplexer "~0.1.1" 851 | from "~0" 852 | map-stream "~0.1.0" 853 | pause-stream "0.0.11" 854 | split "0.3" 855 | stream-combiner "~0.0.4" 856 | through "~2.3.1" 857 | 858 | exit-hook@^1.0.0: 859 | version "1.1.1" 860 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 861 | 862 | expand-brackets@^0.1.4: 863 | version "0.1.5" 864 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 865 | dependencies: 866 | is-posix-bracket "^0.1.0" 867 | 868 | expand-range@^1.8.1: 869 | version "1.8.2" 870 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 871 | dependencies: 872 | fill-range "^2.1.0" 873 | 874 | express-generator: 875 | version "4.14.0" 876 | resolved "https://registry.yarnpkg.com/express-generator/-/express-generator-4.14.0.tgz#4abff6edd5b92dfc47f9967e1ce6b4c7164e6ab8" 877 | dependencies: 878 | commander "2.9.0" 879 | mkdirp "0.5.1" 880 | sorted-object "2.0.0" 881 | 882 | express@~4.14.0: 883 | version "4.14.0" 884 | resolved "https://registry.yarnpkg.com/express/-/express-4.14.0.tgz#c1ee3f42cdc891fb3dc650a8922d51ec847d0d66" 885 | dependencies: 886 | accepts "~1.3.3" 887 | array-flatten "1.1.1" 888 | content-disposition "0.5.1" 889 | content-type "~1.0.2" 890 | cookie "0.3.1" 891 | cookie-signature "1.0.6" 892 | debug "~2.2.0" 893 | depd "~1.1.0" 894 | encodeurl "~1.0.1" 895 | escape-html "~1.0.3" 896 | etag "~1.7.0" 897 | finalhandler "0.5.0" 898 | fresh "0.3.0" 899 | merge-descriptors "1.0.1" 900 | methods "~1.1.2" 901 | on-finished "~2.3.0" 902 | parseurl "~1.3.1" 903 | path-to-regexp "0.1.7" 904 | proxy-addr "~1.1.2" 905 | qs "6.2.0" 906 | range-parser "~1.2.0" 907 | send "0.14.1" 908 | serve-static "~1.11.1" 909 | type-is "~1.6.13" 910 | utils-merge "1.0.0" 911 | vary "~1.1.0" 912 | 913 | extend@~3.0.0: 914 | version "3.0.0" 915 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 916 | 917 | extglob@^0.3.1: 918 | version "0.3.2" 919 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 920 | dependencies: 921 | is-extglob "^1.0.0" 922 | 923 | extsprintf@1.0.2: 924 | version "1.0.2" 925 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 926 | 927 | falafel@^1.0.0: 928 | version "1.2.0" 929 | resolved "https://registry.yarnpkg.com/falafel/-/falafel-1.2.0.tgz#c18d24ef5091174a497f318cd24b026a25cddab4" 930 | dependencies: 931 | acorn "^1.0.3" 932 | foreach "^2.0.5" 933 | isarray "0.0.1" 934 | object-keys "^1.0.6" 935 | 936 | fast-levenshtein@~2.0.4: 937 | version "2.0.5" 938 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.5.tgz#bd33145744519ab1c36c3ee9f31f08e9079b67f2" 939 | 940 | figures@^1.3.5: 941 | version "1.7.0" 942 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 943 | dependencies: 944 | escape-string-regexp "^1.0.5" 945 | object-assign "^4.1.0" 946 | 947 | file-entry-cache@^2.0.0: 948 | version "2.0.0" 949 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 950 | dependencies: 951 | flat-cache "^1.2.1" 952 | object-assign "^4.0.1" 953 | 954 | filename-regex@^2.0.0: 955 | version "2.0.0" 956 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 957 | 958 | fill-range@^2.1.0: 959 | version "2.2.3" 960 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 961 | dependencies: 962 | is-number "^2.1.0" 963 | isobject "^2.0.0" 964 | randomatic "^1.1.3" 965 | repeat-element "^1.1.2" 966 | repeat-string "^1.5.2" 967 | 968 | finalhandler@0.5.0: 969 | version "0.5.0" 970 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-0.5.0.tgz#e9508abece9b6dba871a6942a1d7911b91911ac7" 971 | dependencies: 972 | debug "~2.2.0" 973 | escape-html "~1.0.3" 974 | on-finished "~2.3.0" 975 | statuses "~1.3.0" 976 | unpipe "~1.0.0" 977 | 978 | find-root@^1.0.0: 979 | version "1.0.0" 980 | resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.0.0.tgz#962ff211aab25c6520feeeb8d6287f8f6e95807a" 981 | 982 | flat-cache@^1.2.1: 983 | version "1.2.1" 984 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.1.tgz#6c837d6225a7de5659323740b36d5361f71691ff" 985 | dependencies: 986 | circular-json "^0.3.0" 987 | del "^2.0.2" 988 | graceful-fs "^4.1.2" 989 | write "^0.2.1" 990 | 991 | fontkit@^1.0.0: 992 | version "1.4.2" 993 | resolved "https://registry.yarnpkg.com/fontkit/-/fontkit-1.4.2.tgz#a71c4e87a890049b6d6ba383853518113cef4fcb" 994 | dependencies: 995 | babel-runtime "^6.11.6" 996 | brfs "^1.4.0" 997 | brotli "^1.2.0" 998 | clone "^1.0.1" 999 | deep-equal "^1.0.0" 1000 | restructure "^0.5.2" 1001 | tiny-inflate "^1.0.2" 1002 | unicode-properties "^1.0.0" 1003 | unicode-trie "^0.3.0" 1004 | 1005 | for-in@^0.1.5: 1006 | version "0.1.6" 1007 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8" 1008 | 1009 | for-own@^0.1.4: 1010 | version "0.1.4" 1011 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072" 1012 | dependencies: 1013 | for-in "^0.1.5" 1014 | 1015 | foreach@^2.0.5: 1016 | version "2.0.5" 1017 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1018 | 1019 | forever-agent@~0.6.1: 1020 | version "0.6.1" 1021 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1022 | 1023 | form-data@~2.1.1: 1024 | version "2.1.2" 1025 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 1026 | dependencies: 1027 | asynckit "^0.4.0" 1028 | combined-stream "^1.0.5" 1029 | mime-types "^2.1.12" 1030 | 1031 | forwarded@~0.1.0: 1032 | version "0.1.0" 1033 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.0.tgz#19ef9874c4ae1c297bcf078fde63a09b66a84363" 1034 | 1035 | fresh@0.3.0: 1036 | version "0.3.0" 1037 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.3.0.tgz#651f838e22424e7566de161d8358caa199f83d4f" 1038 | 1039 | from@~0: 1040 | version "0.1.3" 1041 | resolved "https://registry.yarnpkg.com/from/-/from-0.1.3.tgz#ef63ac2062ac32acf7862e0d40b44b896f22f3bc" 1042 | 1043 | fs.realpath@^1.0.0: 1044 | version "1.0.0" 1045 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1046 | 1047 | fsevents@^1.0.0: 1048 | version "1.0.15" 1049 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.0.15.tgz#fa63f590f3c2ad91275e4972a6cea545fb0aae44" 1050 | dependencies: 1051 | nan "^2.3.0" 1052 | node-pre-gyp "^0.6.29" 1053 | 1054 | fstream-ignore@~1.0.5: 1055 | version "1.0.5" 1056 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1057 | dependencies: 1058 | fstream "^1.0.0" 1059 | inherits "2" 1060 | minimatch "^3.0.0" 1061 | 1062 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10: 1063 | version "1.0.10" 1064 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822" 1065 | dependencies: 1066 | graceful-fs "^4.1.2" 1067 | inherits "~2.0.0" 1068 | mkdirp ">=0.5 0" 1069 | rimraf "2" 1070 | 1071 | function-bind@^1.0.2: 1072 | version "1.1.0" 1073 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1074 | 1075 | gauge@~2.6.0: 1076 | version "2.6.0" 1077 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.6.0.tgz#d35301ad18e96902b4751dcbbe40f4218b942a46" 1078 | dependencies: 1079 | aproba "^1.0.3" 1080 | console-control-strings "^1.0.0" 1081 | has-color "^0.1.7" 1082 | has-unicode "^2.0.0" 1083 | object-assign "^4.1.0" 1084 | signal-exit "^3.0.0" 1085 | string-width "^1.0.1" 1086 | strip-ansi "^3.0.1" 1087 | wide-align "^1.1.0" 1088 | 1089 | generate-function@^2.0.0: 1090 | version "2.0.0" 1091 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1092 | 1093 | generate-object-property@^1.1.0: 1094 | version "1.2.0" 1095 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1096 | dependencies: 1097 | is-property "^1.0.0" 1098 | 1099 | get-stdin@^5.0.1: 1100 | version "5.0.1" 1101 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 1102 | 1103 | getpass@^0.1.1: 1104 | version "0.1.6" 1105 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 1106 | dependencies: 1107 | assert-plus "^1.0.0" 1108 | 1109 | glob-base@^0.3.0: 1110 | version "0.3.0" 1111 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1112 | dependencies: 1113 | glob-parent "^2.0.0" 1114 | is-glob "^2.0.0" 1115 | 1116 | glob-parent@^2.0.0: 1117 | version "2.0.0" 1118 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1119 | dependencies: 1120 | is-glob "^2.0.0" 1121 | 1122 | glob@^7.0.3, glob@^7.0.5: 1123 | version "7.1.1" 1124 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1125 | dependencies: 1126 | fs.realpath "^1.0.0" 1127 | inflight "^1.0.4" 1128 | inherits "2" 1129 | minimatch "^3.0.2" 1130 | once "^1.3.0" 1131 | path-is-absolute "^1.0.0" 1132 | 1133 | global: 1134 | version "4.3.1" 1135 | resolved "https://registry.yarnpkg.com/global/-/global-4.3.1.tgz#5f757908c7cbabce54f386ae440e11e26b7916df" 1136 | dependencies: 1137 | min-document "^2.19.0" 1138 | process "~0.5.1" 1139 | 1140 | globals@^9.2.0: 1141 | version "9.12.0" 1142 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.12.0.tgz#992ce90828c3a55fa8f16fada177adb64664cf9d" 1143 | 1144 | globby@^5.0.0: 1145 | version "5.0.0" 1146 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1147 | dependencies: 1148 | array-union "^1.0.1" 1149 | arrify "^1.0.0" 1150 | glob "^7.0.3" 1151 | object-assign "^4.0.1" 1152 | pify "^2.0.0" 1153 | pinkie-promise "^2.0.0" 1154 | 1155 | got@^3.2.0: 1156 | version "3.3.1" 1157 | resolved "https://registry.yarnpkg.com/got/-/got-3.3.1.tgz#e5d0ed4af55fc3eef4d56007769d98192bcb2eca" 1158 | dependencies: 1159 | duplexify "^3.2.0" 1160 | infinity-agent "^2.0.0" 1161 | is-redirect "^1.0.0" 1162 | is-stream "^1.0.0" 1163 | lowercase-keys "^1.0.0" 1164 | nested-error-stacks "^1.0.0" 1165 | object-assign "^3.0.0" 1166 | prepend-http "^1.0.0" 1167 | read-all-stream "^3.0.0" 1168 | timed-out "^2.0.0" 1169 | 1170 | graceful-fs@^4.1.2: 1171 | version "4.1.10" 1172 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.10.tgz#f2d720c22092f743228775c75e3612632501f131" 1173 | 1174 | "graceful-readlink@>= 1.0.0": 1175 | version "1.0.1" 1176 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1177 | 1178 | har-validator@~2.0.6: 1179 | version "2.0.6" 1180 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 1181 | dependencies: 1182 | chalk "^1.1.1" 1183 | commander "^2.9.0" 1184 | is-my-json-valid "^2.12.4" 1185 | pinkie-promise "^2.0.0" 1186 | 1187 | has-ansi@^2.0.0: 1188 | version "2.0.0" 1189 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1190 | dependencies: 1191 | ansi-regex "^2.0.0" 1192 | 1193 | has-color@^0.1.7: 1194 | version "0.1.7" 1195 | resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f" 1196 | 1197 | has-unicode@^2.0.0: 1198 | version "2.0.1" 1199 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1200 | 1201 | has@^1.0.0: 1202 | version "1.0.1" 1203 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1204 | dependencies: 1205 | function-bind "^1.0.2" 1206 | 1207 | hawk@~3.1.3: 1208 | version "3.1.3" 1209 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1210 | dependencies: 1211 | boom "2.x.x" 1212 | cryptiles "2.x.x" 1213 | hoek "2.x.x" 1214 | sntp "1.x.x" 1215 | 1216 | hoek@2.x.x: 1217 | version "2.16.3" 1218 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1219 | 1220 | home-or-tmp@^2.0.0: 1221 | version "2.0.0" 1222 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1223 | dependencies: 1224 | os-homedir "^1.0.0" 1225 | os-tmpdir "^1.0.1" 1226 | 1227 | http-errors@~1.5.0: 1228 | version "1.5.0" 1229 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.5.0.tgz#b1cb3d8260fd8e2386cad3189045943372d48211" 1230 | dependencies: 1231 | inherits "2.0.1" 1232 | setprototypeof "1.0.1" 1233 | statuses ">= 1.3.0 < 2" 1234 | 1235 | http-signature@~1.1.0: 1236 | version "1.1.1" 1237 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1238 | dependencies: 1239 | assert-plus "^0.2.0" 1240 | jsprim "^1.2.2" 1241 | sshpk "^1.7.0" 1242 | 1243 | iconv-lite@0.4.13: 1244 | version "0.4.13" 1245 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1246 | 1247 | ignore-by-default@^1.0.0: 1248 | version "1.0.1" 1249 | resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" 1250 | 1251 | ignore@^3.0.9, ignore@^3.1.5: 1252 | version "3.2.0" 1253 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.0.tgz#8d88f03c3002a0ac52114db25d2c673b0bf1e435" 1254 | 1255 | imurmurhash@^0.1.4: 1256 | version "0.1.4" 1257 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1258 | 1259 | infinity-agent@^2.0.0: 1260 | version "2.0.3" 1261 | resolved "https://registry.yarnpkg.com/infinity-agent/-/infinity-agent-2.0.3.tgz#45e0e2ff7a9eb030b27d62b74b3744b7a7ac4216" 1262 | 1263 | inflight@^1.0.4: 1264 | version "1.0.6" 1265 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1266 | dependencies: 1267 | once "^1.3.0" 1268 | wrappy "1" 1269 | 1270 | inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1, inherits@2: 1271 | version "2.0.3" 1272 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1273 | 1274 | inherits@2.0.1: 1275 | version "2.0.1" 1276 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1277 | 1278 | ini@~1.3.0: 1279 | version "1.3.4" 1280 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1281 | 1282 | inquirer@^0.12.0: 1283 | version "0.12.0" 1284 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 1285 | dependencies: 1286 | ansi-escapes "^1.1.0" 1287 | ansi-regex "^2.0.0" 1288 | chalk "^1.0.0" 1289 | cli-cursor "^1.0.1" 1290 | cli-width "^2.0.0" 1291 | figures "^1.3.5" 1292 | lodash "^4.3.0" 1293 | readline2 "^1.0.1" 1294 | run-async "^0.1.0" 1295 | rx-lite "^3.1.2" 1296 | string-width "^1.0.1" 1297 | strip-ansi "^3.0.0" 1298 | through "^2.3.6" 1299 | 1300 | ipaddr.js@1.1.1: 1301 | version "1.1.1" 1302 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.1.1.tgz#c791d95f52b29c1247d5df80ada39b8a73647230" 1303 | 1304 | is-binary-path@^1.0.0: 1305 | version "1.0.1" 1306 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1307 | dependencies: 1308 | binary-extensions "^1.0.0" 1309 | 1310 | is-buffer@^1.0.2: 1311 | version "1.1.4" 1312 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" 1313 | 1314 | is-dotfile@^1.0.0: 1315 | version "1.0.2" 1316 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1317 | 1318 | is-equal-shallow@^0.1.3: 1319 | version "0.1.3" 1320 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1321 | dependencies: 1322 | is-primitive "^2.0.0" 1323 | 1324 | is-expression@^2.0.1: 1325 | version "2.1.0" 1326 | resolved "https://registry.yarnpkg.com/is-expression/-/is-expression-2.1.0.tgz#91be9d47debcfef077977e9722be6dcfb4465ef0" 1327 | dependencies: 1328 | acorn "~3.3.0" 1329 | object-assign "^4.0.1" 1330 | 1331 | is-expression@^3.0.0: 1332 | version "3.0.0" 1333 | resolved "https://registry.yarnpkg.com/is-expression/-/is-expression-3.0.0.tgz#39acaa6be7fd1f3471dc42c7416e61c24317ac9f" 1334 | dependencies: 1335 | acorn "~4.0.2" 1336 | object-assign "^4.0.1" 1337 | 1338 | is-extendable@^0.1.1: 1339 | version "0.1.1" 1340 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1341 | 1342 | is-extglob@^1.0.0: 1343 | version "1.0.0" 1344 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1345 | 1346 | is-finite@^1.0.0: 1347 | version "1.0.2" 1348 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1349 | dependencies: 1350 | number-is-nan "^1.0.0" 1351 | 1352 | is-fullwidth-code-point@^1.0.0: 1353 | version "1.0.0" 1354 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1355 | dependencies: 1356 | number-is-nan "^1.0.0" 1357 | 1358 | is-fullwidth-code-point@^2.0.0: 1359 | version "2.0.0" 1360 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1361 | 1362 | is-glob@^2.0.0, is-glob@^2.0.1: 1363 | version "2.0.1" 1364 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1365 | dependencies: 1366 | is-extglob "^1.0.0" 1367 | 1368 | is-my-json-valid@^2.10.0, is-my-json-valid@^2.12.4: 1369 | version "2.15.0" 1370 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b" 1371 | dependencies: 1372 | generate-function "^2.0.0" 1373 | generate-object-property "^1.1.0" 1374 | jsonpointer "^4.0.0" 1375 | xtend "^4.0.0" 1376 | 1377 | is-npm@^1.0.0: 1378 | version "1.0.0" 1379 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 1380 | 1381 | is-number@^2.0.2, is-number@^2.1.0: 1382 | version "2.1.0" 1383 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1384 | dependencies: 1385 | kind-of "^3.0.2" 1386 | 1387 | is-path-cwd@^1.0.0: 1388 | version "1.0.0" 1389 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1390 | 1391 | is-path-in-cwd@^1.0.0: 1392 | version "1.0.0" 1393 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1394 | dependencies: 1395 | is-path-inside "^1.0.0" 1396 | 1397 | is-path-inside@^1.0.0: 1398 | version "1.0.0" 1399 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1400 | dependencies: 1401 | path-is-inside "^1.0.1" 1402 | 1403 | is-posix-bracket@^0.1.0: 1404 | version "0.1.1" 1405 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1406 | 1407 | is-primitive@^2.0.0: 1408 | version "2.0.0" 1409 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1410 | 1411 | is-promise@^2.0.0: 1412 | version "2.1.0" 1413 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1414 | 1415 | is-property@^1.0.0: 1416 | version "1.0.2" 1417 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1418 | 1419 | is-redirect@^1.0.0: 1420 | version "1.0.0" 1421 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 1422 | 1423 | is-regex@^1.0.3: 1424 | version "1.0.3" 1425 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.3.tgz#0d55182bddf9f2fde278220aec3a75642c908637" 1426 | 1427 | is-resolvable@^1.0.0: 1428 | version "1.0.0" 1429 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 1430 | dependencies: 1431 | tryit "^1.0.1" 1432 | 1433 | is-stream@^1.0.0: 1434 | version "1.1.0" 1435 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1436 | 1437 | is-typedarray@~1.0.0: 1438 | version "1.0.0" 1439 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1440 | 1441 | isarray@^1.0.0, isarray@~1.0.0, isarray@1.0.0: 1442 | version "1.0.0" 1443 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1444 | 1445 | isarray@0.0.1: 1446 | version "0.0.1" 1447 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1448 | 1449 | isobject@^2.0.0: 1450 | version "2.1.0" 1451 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1452 | dependencies: 1453 | isarray "1.0.0" 1454 | 1455 | isstream@~0.1.2: 1456 | version "0.1.2" 1457 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1458 | 1459 | jodid25519@^1.0.0: 1460 | version "1.0.2" 1461 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 1462 | dependencies: 1463 | jsbn "~0.1.0" 1464 | 1465 | js-stringify@^1.0.1: 1466 | version "1.0.2" 1467 | resolved "https://registry.yarnpkg.com/js-stringify/-/js-stringify-1.0.2.tgz#1736fddfd9724f28a3682adc6230ae7e4e9679db" 1468 | 1469 | js-yaml@^3.5.1: 1470 | version "3.6.1" 1471 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.6.1.tgz#6e5fe67d8b205ce4d22fad05b7781e8dadcc4b30" 1472 | dependencies: 1473 | argparse "^1.0.7" 1474 | esprima "^2.6.0" 1475 | 1476 | jsbn@~0.1.0: 1477 | version "0.1.0" 1478 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd" 1479 | 1480 | json-schema@0.2.3: 1481 | version "0.2.3" 1482 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1483 | 1484 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 1485 | version "1.0.1" 1486 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1487 | dependencies: 1488 | jsonify "~0.0.0" 1489 | 1490 | json-stringify-safe@~5.0.1: 1491 | version "5.0.1" 1492 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1493 | 1494 | jsonify@~0.0.0: 1495 | version "0.0.0" 1496 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1497 | 1498 | jsonpointer@^4.0.0: 1499 | version "4.0.0" 1500 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.0.tgz#6661e161d2fc445f19f98430231343722e1fcbd5" 1501 | 1502 | jsprim@^1.2.2: 1503 | version "1.3.1" 1504 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252" 1505 | dependencies: 1506 | extsprintf "1.0.2" 1507 | json-schema "0.2.3" 1508 | verror "1.3.6" 1509 | 1510 | jstransformer@1.0.0: 1511 | version "1.0.0" 1512 | resolved "https://registry.yarnpkg.com/jstransformer/-/jstransformer-1.0.0.tgz#ed8bf0921e2f3f1ed4d5c1a44f68709ed24722c3" 1513 | dependencies: 1514 | is-promise "^2.0.0" 1515 | promise "^7.0.1" 1516 | 1517 | jsx-ast-utils@^1.3.1: 1518 | version "1.3.3" 1519 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.3.3.tgz#ccfdbe0320ba03f7a1fc4e67ceaf7e2cc0169721" 1520 | dependencies: 1521 | acorn-jsx "^3.0.1" 1522 | object-assign "^4.1.0" 1523 | 1524 | kind-of@^3.0.2: 1525 | version "3.0.4" 1526 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.0.4.tgz#7b8ecf18a4e17f8269d73b501c9f232c96887a74" 1527 | dependencies: 1528 | is-buffer "^1.0.2" 1529 | 1530 | latest-version@^1.0.0: 1531 | version "1.0.1" 1532 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-1.0.1.tgz#72cfc46e3e8d1be651e1ebb54ea9f6ea96f374bb" 1533 | dependencies: 1534 | package-json "^1.0.0" 1535 | 1536 | lazy-cache@^1.0.3: 1537 | version "1.0.4" 1538 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1539 | 1540 | levn@^0.3.0, levn@~0.3.0: 1541 | version "0.3.0" 1542 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1543 | dependencies: 1544 | prelude-ls "~1.1.2" 1545 | type-check "~0.3.2" 1546 | 1547 | linebreak@~0.1.0: 1548 | version "0.1.2" 1549 | resolved "https://registry.yarnpkg.com/linebreak/-/linebreak-0.1.2.tgz#67ef2db4a4698902e87eba9a0ee4f8490aa717e6" 1550 | dependencies: 1551 | unicode-trie "^0.1.1" 1552 | 1553 | lodash._baseassign@^3.0.0: 1554 | version "3.2.0" 1555 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 1556 | dependencies: 1557 | lodash._basecopy "^3.0.0" 1558 | lodash.keys "^3.0.0" 1559 | 1560 | lodash._basecopy@^3.0.0: 1561 | version "3.0.1" 1562 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1563 | 1564 | lodash._bindcallback@^3.0.0: 1565 | version "3.0.1" 1566 | resolved "https://registry.yarnpkg.com/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e" 1567 | 1568 | lodash._createassigner@^3.0.0: 1569 | version "3.1.1" 1570 | resolved "https://registry.yarnpkg.com/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz#838a5bae2fdaca63ac22dee8e19fa4e6d6970b11" 1571 | dependencies: 1572 | lodash._bindcallback "^3.0.0" 1573 | lodash._isiterateecall "^3.0.0" 1574 | lodash.restparam "^3.0.0" 1575 | 1576 | lodash._getnative@^3.0.0: 1577 | version "3.9.1" 1578 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1579 | 1580 | lodash._isiterateecall@^3.0.0: 1581 | version "3.0.9" 1582 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 1583 | 1584 | lodash.assign@^3.0.0: 1585 | version "3.2.0" 1586 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-3.2.0.tgz#3ce9f0234b4b2223e296b8fa0ac1fee8ebca64fa" 1587 | dependencies: 1588 | lodash._baseassign "^3.0.0" 1589 | lodash._createassigner "^3.0.0" 1590 | lodash.keys "^3.0.0" 1591 | 1592 | lodash.defaults@^3.1.2: 1593 | version "3.1.2" 1594 | resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-3.1.2.tgz#c7308b18dbf8bc9372d701a73493c61192bd2e2c" 1595 | dependencies: 1596 | lodash.assign "^3.0.0" 1597 | lodash.restparam "^3.0.0" 1598 | 1599 | lodash.isarguments@^3.0.0: 1600 | version "3.1.0" 1601 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 1602 | 1603 | lodash.isarray@^3.0.0: 1604 | version "3.0.4" 1605 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 1606 | 1607 | lodash.keys@^3.0.0: 1608 | version "3.1.2" 1609 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 1610 | dependencies: 1611 | lodash._getnative "^3.0.0" 1612 | lodash.isarguments "^3.0.0" 1613 | lodash.isarray "^3.0.0" 1614 | 1615 | lodash.restparam@^3.0.0: 1616 | version "3.6.1" 1617 | resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" 1618 | 1619 | lodash@^4.0.0, lodash@^4.3.0: 1620 | version "4.16.6" 1621 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.16.6.tgz#d22c9ac660288f3843e16ba7d2b5d06cca27d777" 1622 | 1623 | longest@^1.0.1: 1624 | version "1.0.1" 1625 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1626 | 1627 | lowercase-keys@^1.0.0: 1628 | version "1.0.0" 1629 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 1630 | 1631 | map-stream@~0.1.0: 1632 | version "0.1.0" 1633 | resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" 1634 | 1635 | media-typer@0.3.0: 1636 | version "0.3.0" 1637 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 1638 | 1639 | merge-descriptors@1.0.1: 1640 | version "1.0.1" 1641 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 1642 | 1643 | methods@~1.1.2: 1644 | version "1.1.2" 1645 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 1646 | 1647 | micromatch@^2.1.5: 1648 | version "2.3.11" 1649 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1650 | dependencies: 1651 | arr-diff "^2.0.0" 1652 | array-unique "^0.2.1" 1653 | braces "^1.8.2" 1654 | expand-brackets "^0.1.4" 1655 | extglob "^0.3.1" 1656 | filename-regex "^2.0.0" 1657 | is-extglob "^1.0.0" 1658 | is-glob "^2.0.1" 1659 | kind-of "^3.0.2" 1660 | normalize-path "^2.0.1" 1661 | object.omit "^2.0.0" 1662 | parse-glob "^3.0.4" 1663 | regex-cache "^0.4.2" 1664 | 1665 | mime-db@~1.24.0: 1666 | version "1.24.0" 1667 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.24.0.tgz#e2d13f939f0016c6e4e9ad25a8652f126c467f0c" 1668 | 1669 | mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.7: 1670 | version "2.1.12" 1671 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.12.tgz#152ba256777020dd4663f54c2e7bc26381e71729" 1672 | dependencies: 1673 | mime-db "~1.24.0" 1674 | 1675 | mime@1.3.4: 1676 | version "1.3.4" 1677 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" 1678 | 1679 | min-document@^2.19.0: 1680 | version "2.19.0" 1681 | resolved "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685" 1682 | dependencies: 1683 | dom-walk "^0.1.0" 1684 | 1685 | minimatch@^3.0.0, minimatch@^3.0.2: 1686 | version "3.0.3" 1687 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 1688 | dependencies: 1689 | brace-expansion "^1.0.0" 1690 | 1691 | minimist@^1.1.0, minimist@^1.1.3, minimist@^1.2.0: 1692 | version "1.2.0" 1693 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1694 | 1695 | minimist@0.0.8: 1696 | version "0.0.8" 1697 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1698 | 1699 | mkdirp@^0.5.0, mkdirp@^0.5.1, "mkdirp@>=0.5 0", mkdirp@~0.5.1, mkdirp@0.5.1: 1700 | version "0.5.1" 1701 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1702 | dependencies: 1703 | minimist "0.0.8" 1704 | 1705 | morgan@~1.7.0: 1706 | version "1.7.0" 1707 | resolved "https://registry.yarnpkg.com/morgan/-/morgan-1.7.0.tgz#eb10ca8e50d1abe0f8d3dad5c0201d052d981c62" 1708 | dependencies: 1709 | basic-auth "~1.0.3" 1710 | debug "~2.2.0" 1711 | depd "~1.1.0" 1712 | on-finished "~2.3.0" 1713 | on-headers "~1.0.1" 1714 | 1715 | ms@0.7.1: 1716 | version "0.7.1" 1717 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 1718 | 1719 | ms@0.7.2: 1720 | version "0.7.2" 1721 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 1722 | 1723 | mute-stream@0.0.5: 1724 | version "0.0.5" 1725 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 1726 | 1727 | nan@^2.3.0: 1728 | version "2.4.0" 1729 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.4.0.tgz#fb3c59d45fe4effe215f0b890f8adf6eb32d2232" 1730 | 1731 | natural-compare@^1.4.0: 1732 | version "1.4.0" 1733 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1734 | 1735 | negotiator@0.6.1: 1736 | version "0.6.1" 1737 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 1738 | 1739 | nested-error-stacks@^1.0.0: 1740 | version "1.0.2" 1741 | resolved "https://registry.yarnpkg.com/nested-error-stacks/-/nested-error-stacks-1.0.2.tgz#19f619591519f096769a5ba9a86e6eeec823c3cf" 1742 | dependencies: 1743 | inherits "~2.0.1" 1744 | 1745 | node-pre-gyp@^0.6.29: 1746 | version "0.6.31" 1747 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.31.tgz#d8a00ddaa301a940615dbcc8caad4024d58f6017" 1748 | dependencies: 1749 | mkdirp "~0.5.1" 1750 | nopt "~3.0.6" 1751 | npmlog "^4.0.0" 1752 | rc "~1.1.6" 1753 | request "^2.75.0" 1754 | rimraf "~2.5.4" 1755 | semver "~5.3.0" 1756 | tar "~2.2.1" 1757 | tar-pack "~3.3.0" 1758 | 1759 | node-uuid@~1.4.7: 1760 | version "1.4.7" 1761 | resolved "https://registry.yarnpkg.com/node-uuid/-/node-uuid-1.4.7.tgz#6da5a17668c4b3dd59623bda11cf7fa4c1f60a6f" 1762 | 1763 | nodemon: 1764 | version "1.11.0" 1765 | resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-1.11.0.tgz#226c562bd2a7b13d3d7518b49ad4828a3623d06c" 1766 | dependencies: 1767 | chokidar "^1.4.3" 1768 | debug "^2.2.0" 1769 | es6-promise "^3.0.2" 1770 | ignore-by-default "^1.0.0" 1771 | lodash.defaults "^3.1.2" 1772 | minimatch "^3.0.0" 1773 | ps-tree "^1.0.1" 1774 | touch "1.0.0" 1775 | undefsafe "0.0.3" 1776 | update-notifier "0.5.0" 1777 | 1778 | nopt@~1.0.10: 1779 | version "1.0.10" 1780 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee" 1781 | dependencies: 1782 | abbrev "1" 1783 | 1784 | nopt@~3.0.6: 1785 | version "3.0.6" 1786 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 1787 | dependencies: 1788 | abbrev "1" 1789 | 1790 | normalize-path@^2.0.1: 1791 | version "2.0.1" 1792 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 1793 | 1794 | npmlog@^4.0.0: 1795 | version "4.0.0" 1796 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.0.tgz#e094503961c70c1774eb76692080e8d578a9f88f" 1797 | dependencies: 1798 | are-we-there-yet "~1.1.2" 1799 | console-control-strings "~1.1.0" 1800 | gauge "~2.6.0" 1801 | set-blocking "~2.0.0" 1802 | 1803 | number-is-nan@^1.0.0: 1804 | version "1.0.1" 1805 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1806 | 1807 | oauth-sign@~0.8.1: 1808 | version "0.8.2" 1809 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1810 | 1811 | object-assign@^3.0.0: 1812 | version "3.0.0" 1813 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2" 1814 | 1815 | object-assign@^4.0.1, object-assign@^4.1.0: 1816 | version "4.1.0" 1817 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0" 1818 | 1819 | object-inspect@~0.4.0: 1820 | version "0.4.0" 1821 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-0.4.0.tgz#f5157c116c1455b243b06ee97703392c5ad89fec" 1822 | 1823 | object-keys@^1.0.6: 1824 | version "1.0.11" 1825 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 1826 | 1827 | object-keys@~0.4.0: 1828 | version "0.4.0" 1829 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-0.4.0.tgz#28a6aae7428dd2c3a92f3d95f21335dd204e0336" 1830 | 1831 | object.omit@^2.0.0: 1832 | version "2.0.1" 1833 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1834 | dependencies: 1835 | for-own "^0.1.4" 1836 | is-extendable "^0.1.1" 1837 | 1838 | on-finished@~2.3.0: 1839 | version "2.3.0" 1840 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 1841 | dependencies: 1842 | ee-first "1.1.1" 1843 | 1844 | on-headers@~1.0.1: 1845 | version "1.0.1" 1846 | resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7" 1847 | 1848 | once@^1.3.0: 1849 | version "1.4.0" 1850 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1851 | dependencies: 1852 | wrappy "1" 1853 | 1854 | once@~1.3.0, once@~1.3.3: 1855 | version "1.3.3" 1856 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 1857 | dependencies: 1858 | wrappy "1" 1859 | 1860 | onetime@^1.0.0: 1861 | version "1.1.0" 1862 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 1863 | 1864 | optionator@^0.8.2: 1865 | version "0.8.2" 1866 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1867 | dependencies: 1868 | deep-is "~0.1.3" 1869 | fast-levenshtein "~2.0.4" 1870 | levn "~0.3.0" 1871 | prelude-ls "~1.1.2" 1872 | type-check "~0.3.2" 1873 | wordwrap "~1.0.0" 1874 | 1875 | os-homedir@^1.0.0: 1876 | version "1.0.2" 1877 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1878 | 1879 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 1880 | version "1.0.2" 1881 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1882 | 1883 | osenv@^0.1.0: 1884 | version "0.1.3" 1885 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.3.tgz#83cf05c6d6458fc4d5ac6362ea325d92f2754217" 1886 | dependencies: 1887 | os-homedir "^1.0.0" 1888 | os-tmpdir "^1.0.0" 1889 | 1890 | package-json@^1.0.0: 1891 | version "1.2.0" 1892 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-1.2.0.tgz#c8ecac094227cdf76a316874ed05e27cc939a0e0" 1893 | dependencies: 1894 | got "^3.2.0" 1895 | registry-url "^3.0.0" 1896 | 1897 | pako@^0.2.5: 1898 | version "0.2.9" 1899 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" 1900 | 1901 | parse-glob@^3.0.4: 1902 | version "3.0.4" 1903 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1904 | dependencies: 1905 | glob-base "^0.3.0" 1906 | is-dotfile "^1.0.0" 1907 | is-extglob "^1.0.0" 1908 | is-glob "^2.0.0" 1909 | 1910 | parseurl@~1.3.0, parseurl@~1.3.1: 1911 | version "1.3.1" 1912 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56" 1913 | 1914 | path-is-absolute@^1.0.0: 1915 | version "1.0.1" 1916 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1917 | 1918 | path-is-inside@^1.0.1: 1919 | version "1.0.2" 1920 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 1921 | 1922 | path-to-regexp@0.1.7: 1923 | version "0.1.7" 1924 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" 1925 | 1926 | pause-stream@0.0.11: 1927 | version "0.0.11" 1928 | resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" 1929 | dependencies: 1930 | through "~2.3" 1931 | 1932 | pdfkit: 1933 | version "0.8.0" 1934 | resolved "https://registry.yarnpkg.com/pdfkit/-/pdfkit-0.8.0.tgz#0b3f7c0c3b00cc4f7f69e46d85d2a7cbb3818af6" 1935 | dependencies: 1936 | fontkit "^1.0.0" 1937 | linebreak "~0.1.0" 1938 | png-js ">=0.1.0" 1939 | 1940 | pify@^2.0.0: 1941 | version "2.3.0" 1942 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1943 | 1944 | pinkie-promise@^2.0.0: 1945 | version "2.0.1" 1946 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1947 | dependencies: 1948 | pinkie "^2.0.0" 1949 | 1950 | pinkie@^2.0.0: 1951 | version "2.0.4" 1952 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1953 | 1954 | pkg-config@^1.0.1, pkg-config@^1.1.0: 1955 | version "1.1.1" 1956 | resolved "https://registry.yarnpkg.com/pkg-config/-/pkg-config-1.1.1.tgz#557ef22d73da3c8837107766c52eadabde298fe4" 1957 | dependencies: 1958 | debug-log "^1.0.0" 1959 | find-root "^1.0.0" 1960 | xtend "^4.0.1" 1961 | 1962 | pluralize@^1.2.1: 1963 | version "1.2.1" 1964 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 1965 | 1966 | png-js@>=0.1.0: 1967 | version "0.1.1" 1968 | resolved "https://registry.yarnpkg.com/png-js/-/png-js-0.1.1.tgz#1cc7c212303acabe74263ec3ac78009580242d93" 1969 | 1970 | prelude-ls@~1.1.2: 1971 | version "1.1.2" 1972 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 1973 | 1974 | prepend-http@^1.0.0: 1975 | version "1.0.4" 1976 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 1977 | 1978 | preserve@^0.2.0: 1979 | version "0.2.0" 1980 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1981 | 1982 | process-nextick-args@~1.0.6: 1983 | version "1.0.7" 1984 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1985 | 1986 | process@~0.5.1: 1987 | version "0.5.2" 1988 | resolved "https://registry.yarnpkg.com/process/-/process-0.5.2.tgz#1638d8a8e34c2f440a91db95ab9aeb677fc185cf" 1989 | 1990 | progress@^1.1.8: 1991 | version "1.1.8" 1992 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 1993 | 1994 | promise@^7.0.1: 1995 | version "7.1.1" 1996 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.1.1.tgz#489654c692616b8aa55b0724fa809bb7db49c5bf" 1997 | dependencies: 1998 | asap "~2.0.3" 1999 | 2000 | proxy-addr@~1.1.2: 2001 | version "1.1.2" 2002 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-1.1.2.tgz#b4cc5f22610d9535824c123aef9d3cf73c40ba37" 2003 | dependencies: 2004 | forwarded "~0.1.0" 2005 | ipaddr.js "1.1.1" 2006 | 2007 | ps-tree@^1.0.1: 2008 | version "1.1.0" 2009 | resolved "https://registry.yarnpkg.com/ps-tree/-/ps-tree-1.1.0.tgz#b421b24140d6203f1ed3c76996b4427b08e8c014" 2010 | dependencies: 2011 | event-stream "~3.3.0" 2012 | 2013 | pug-attrs@^2.0.1: 2014 | version "2.0.1" 2015 | resolved "https://registry.yarnpkg.com/pug-attrs/-/pug-attrs-2.0.1.tgz#8b5dd7c330730c09f62299e06b58fd0ebc4ebfd5" 2016 | dependencies: 2017 | constantinople "^3.0.1" 2018 | js-stringify "^1.0.1" 2019 | pug-runtime "^2.0.0" 2020 | 2021 | pug-code-gen@^1.1.0: 2022 | version "1.1.0" 2023 | resolved "https://registry.yarnpkg.com/pug-code-gen/-/pug-code-gen-1.1.0.tgz#f638a6d5792185536a4a2bb3cb73b8f458bdc01f" 2024 | dependencies: 2025 | constantinople "^3.0.1" 2026 | doctypes "^1.1.0" 2027 | js-stringify "^1.0.1" 2028 | pug-attrs "^2.0.1" 2029 | pug-error "^1.3.0" 2030 | pug-runtime "^2.0.0" 2031 | void-elements "^2.0.1" 2032 | with "^5.0.0" 2033 | 2034 | pug-error@^1.0.0, pug-error@^1.3.0: 2035 | version "1.3.1" 2036 | resolved "https://registry.yarnpkg.com/pug-error/-/pug-error-1.3.1.tgz#61627425c3f8b307b1c38b10a0b6d5c8e1a3581f" 2037 | 2038 | pug-filters@^1.2.4: 2039 | version "1.2.4" 2040 | resolved "https://registry.yarnpkg.com/pug-filters/-/pug-filters-1.2.4.tgz#92d852472c74508572a0d9b0c91f9dcb9ae05839" 2041 | dependencies: 2042 | clean-css "^3.3.0" 2043 | constantinople "^3.0.1" 2044 | jstransformer "1.0.0" 2045 | pug-error "^1.3.0" 2046 | pug-walk "^1.0.0" 2047 | resolve "^1.1.6" 2048 | uglify-js "^2.6.1" 2049 | 2050 | pug-lexer@^2.2.0: 2051 | version "2.3.0" 2052 | resolved "https://registry.yarnpkg.com/pug-lexer/-/pug-lexer-2.3.0.tgz#b841ac4cd8d27501281e0f9c88fb4243297aff3a" 2053 | dependencies: 2054 | character-parser "^2.1.1" 2055 | is-expression "^3.0.0" 2056 | pug-error "^1.3.0" 2057 | 2058 | pug-linker@^1.0.1: 2059 | version "1.0.1" 2060 | resolved "https://registry.yarnpkg.com/pug-linker/-/pug-linker-1.0.1.tgz#d6da79b910e683d3313567168047ebafed92d153" 2061 | dependencies: 2062 | pug-error "^1.3.0" 2063 | pug-walk "^1.0.0" 2064 | 2065 | pug-load@^2.0.3: 2066 | version "2.0.3" 2067 | resolved "https://registry.yarnpkg.com/pug-load/-/pug-load-2.0.3.tgz#fe8cf838f79c9a1249785774d52ba1d7ea43df37" 2068 | dependencies: 2069 | object-assign "^4.1.0" 2070 | pug-walk "^1.0.0" 2071 | 2072 | pug-parser@^2.0.1: 2073 | version "2.0.1" 2074 | resolved "https://registry.yarnpkg.com/pug-parser/-/pug-parser-2.0.1.tgz#dc2c5bbb777047e98359cd606860f75f4bfc1541" 2075 | dependencies: 2076 | pug-error "^1.3.0" 2077 | token-stream "0.0.1" 2078 | 2079 | pug-runtime@^2.0.0, pug-runtime@^2.0.2: 2080 | version "2.0.2" 2081 | resolved "https://registry.yarnpkg.com/pug-runtime/-/pug-runtime-2.0.2.tgz#97331abce339a5436254a7f9b0bd65be11665c21" 2082 | 2083 | pug-strip-comments@^1.0.1: 2084 | version "1.0.1" 2085 | resolved "https://registry.yarnpkg.com/pug-strip-comments/-/pug-strip-comments-1.0.1.tgz#89695921a34fcf56855d4302b426686b426bafd1" 2086 | dependencies: 2087 | pug-error "^1.0.0" 2088 | 2089 | pug-walk@^1.0.0: 2090 | version "1.0.0" 2091 | resolved "https://registry.yarnpkg.com/pug-walk/-/pug-walk-1.0.0.tgz#7f4ae1456a4f18feee40a0d708b75c1c51d2e4e4" 2092 | 2093 | pug@~2.0.0-beta6: 2094 | version "2.0.0-beta6" 2095 | resolved "https://registry.yarnpkg.com/pug/-/pug-2.0.0-beta6.tgz#9ead2e59e540a467efc3787ccb03e4574ba5fae9" 2096 | dependencies: 2097 | pug-code-gen "^1.1.0" 2098 | pug-filters "^1.2.4" 2099 | pug-lexer "^2.2.0" 2100 | pug-linker "^1.0.1" 2101 | pug-load "^2.0.3" 2102 | pug-parser "^2.0.1" 2103 | pug-runtime "^2.0.2" 2104 | pug-strip-comments "^1.0.1" 2105 | 2106 | punycode@^1.4.1: 2107 | version "1.4.1" 2108 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2109 | 2110 | qs@~6.3.0: 2111 | version "6.3.0" 2112 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442" 2113 | 2114 | qs@6.2.0: 2115 | version "6.2.0" 2116 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.0.tgz#3b7848c03c2dece69a9522b0fae8c4126d745f3b" 2117 | 2118 | quote-stream@^1.0.1: 2119 | version "1.0.2" 2120 | resolved "https://registry.yarnpkg.com/quote-stream/-/quote-stream-1.0.2.tgz#84963f8c9c26b942e153feeb53aae74652b7e0b2" 2121 | dependencies: 2122 | buffer-equal "0.0.1" 2123 | minimist "^1.1.3" 2124 | through2 "^2.0.0" 2125 | 2126 | quote-stream@~0.0.0: 2127 | version "0.0.0" 2128 | resolved "https://registry.yarnpkg.com/quote-stream/-/quote-stream-0.0.0.tgz#cde29e94c409b16e19dc7098b89b6658f9721d3b" 2129 | dependencies: 2130 | minimist "0.0.8" 2131 | through2 "~0.4.1" 2132 | 2133 | randomatic@^1.1.3: 2134 | version "1.1.5" 2135 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.5.tgz#5e9ef5f2d573c67bd2b8124ae90b5156e457840b" 2136 | dependencies: 2137 | is-number "^2.0.2" 2138 | kind-of "^3.0.2" 2139 | 2140 | range-parser@~1.2.0: 2141 | version "1.2.0" 2142 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" 2143 | 2144 | raw-body@~2.1.7: 2145 | version "2.1.7" 2146 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.1.7.tgz#adfeace2e4fb3098058014d08c072dcc59758774" 2147 | dependencies: 2148 | bytes "2.4.0" 2149 | iconv-lite "0.4.13" 2150 | unpipe "1.0.0" 2151 | 2152 | rc@^1.0.1, rc@~1.1.6: 2153 | version "1.1.6" 2154 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.6.tgz#43651b76b6ae53b5c802f1151fa3fc3b059969c9" 2155 | dependencies: 2156 | deep-extend "~0.4.0" 2157 | ini "~1.3.0" 2158 | minimist "^1.2.0" 2159 | strip-json-comments "~1.0.4" 2160 | 2161 | read-all-stream@^3.0.0: 2162 | version "3.1.0" 2163 | resolved "https://registry.yarnpkg.com/read-all-stream/-/read-all-stream-3.1.0.tgz#35c3e177f2078ef789ee4bfafa4373074eaef4fa" 2164 | dependencies: 2165 | pinkie-promise "^2.0.0" 2166 | readable-stream "^2.0.0" 2167 | 2168 | readable-stream@^2.0.0, "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2, readable-stream@~2.1.4: 2169 | version "2.1.5" 2170 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" 2171 | dependencies: 2172 | buffer-shims "^1.0.0" 2173 | core-util-is "~1.0.0" 2174 | inherits "~2.0.1" 2175 | isarray "~1.0.0" 2176 | process-nextick-args "~1.0.6" 2177 | string_decoder "~0.10.x" 2178 | util-deprecate "~1.0.1" 2179 | 2180 | readable-stream@~1.0.17, readable-stream@~1.0.27-1: 2181 | version "1.0.34" 2182 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" 2183 | dependencies: 2184 | core-util-is "~1.0.0" 2185 | inherits "~2.0.1" 2186 | isarray "0.0.1" 2187 | string_decoder "~0.10.x" 2188 | 2189 | readable-stream@~1.1.9: 2190 | version "1.1.14" 2191 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" 2192 | dependencies: 2193 | core-util-is "~1.0.0" 2194 | inherits "~2.0.1" 2195 | isarray "0.0.1" 2196 | string_decoder "~0.10.x" 2197 | 2198 | readable-stream@~2.0.0: 2199 | version "2.0.6" 2200 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" 2201 | dependencies: 2202 | core-util-is "~1.0.0" 2203 | inherits "~2.0.1" 2204 | isarray "~1.0.0" 2205 | process-nextick-args "~1.0.6" 2206 | string_decoder "~0.10.x" 2207 | util-deprecate "~1.0.1" 2208 | 2209 | readdirp@^2.0.0: 2210 | version "2.1.0" 2211 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2212 | dependencies: 2213 | graceful-fs "^4.1.2" 2214 | minimatch "^3.0.2" 2215 | readable-stream "^2.0.2" 2216 | set-immediate-shim "^1.0.1" 2217 | 2218 | readline2@^1.0.1: 2219 | version "1.0.1" 2220 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 2221 | dependencies: 2222 | code-point-at "^1.0.0" 2223 | is-fullwidth-code-point "^1.0.0" 2224 | mute-stream "0.0.5" 2225 | 2226 | regenerator-runtime@^0.9.5: 2227 | version "0.9.5" 2228 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.9.5.tgz#403d6d40a4bdff9c330dd9392dcbb2d9a8bba1fc" 2229 | 2230 | regex-cache@^0.4.2: 2231 | version "0.4.3" 2232 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2233 | dependencies: 2234 | is-equal-shallow "^0.1.3" 2235 | is-primitive "^2.0.0" 2236 | 2237 | registry-url@^3.0.0: 2238 | version "3.1.0" 2239 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 2240 | dependencies: 2241 | rc "^1.0.1" 2242 | 2243 | repeat-element@^1.1.2: 2244 | version "1.1.2" 2245 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2246 | 2247 | repeat-string@^1.5.2: 2248 | version "1.6.1" 2249 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2250 | 2251 | repeating@^1.1.2: 2252 | version "1.1.3" 2253 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-1.1.3.tgz#3d4114218877537494f97f77f9785fab810fa4ac" 2254 | dependencies: 2255 | is-finite "^1.0.0" 2256 | 2257 | request@^2.75.0: 2258 | version "2.78.0" 2259 | resolved "https://registry.yarnpkg.com/request/-/request-2.78.0.tgz#e1c8dec346e1c81923b24acdb337f11decabe9cc" 2260 | dependencies: 2261 | aws-sign2 "~0.6.0" 2262 | aws4 "^1.2.1" 2263 | caseless "~0.11.0" 2264 | combined-stream "~1.0.5" 2265 | extend "~3.0.0" 2266 | forever-agent "~0.6.1" 2267 | form-data "~2.1.1" 2268 | har-validator "~2.0.6" 2269 | hawk "~3.1.3" 2270 | http-signature "~1.1.0" 2271 | is-typedarray "~1.0.0" 2272 | isstream "~0.1.2" 2273 | json-stringify-safe "~5.0.1" 2274 | mime-types "~2.1.7" 2275 | node-uuid "~1.4.7" 2276 | oauth-sign "~0.8.1" 2277 | qs "~6.3.0" 2278 | stringstream "~0.0.4" 2279 | tough-cookie "~2.3.0" 2280 | tunnel-agent "~0.4.1" 2281 | 2282 | require-uncached@^1.0.2: 2283 | version "1.0.3" 2284 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 2285 | dependencies: 2286 | caller-path "^0.1.0" 2287 | resolve-from "^1.0.0" 2288 | 2289 | resolve-from@^1.0.0: 2290 | version "1.0.1" 2291 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 2292 | 2293 | resolve@^1.1.5, resolve@^1.1.6, resolve@1.1.7: 2294 | version "1.1.7" 2295 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2296 | 2297 | restore-cursor@^1.0.1: 2298 | version "1.0.1" 2299 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 2300 | dependencies: 2301 | exit-hook "^1.0.0" 2302 | onetime "^1.0.0" 2303 | 2304 | restructure@^0.5.2: 2305 | version "0.5.3" 2306 | resolved "https://registry.yarnpkg.com/restructure/-/restructure-0.5.3.tgz#b35f4b2a403383bc6103f38ecf7fcbe488b5ef77" 2307 | dependencies: 2308 | browserify-optional "^1.0.0" 2309 | 2310 | right-align@^0.1.1: 2311 | version "0.1.3" 2312 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2313 | dependencies: 2314 | align-text "^0.1.1" 2315 | 2316 | rimraf@^2.2.8, rimraf@~2.5.1, rimraf@~2.5.4, rimraf@2: 2317 | version "2.5.4" 2318 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 2319 | dependencies: 2320 | glob "^7.0.5" 2321 | 2322 | run-async@^0.1.0: 2323 | version "0.1.0" 2324 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 2325 | dependencies: 2326 | once "^1.3.0" 2327 | 2328 | run-parallel@^1.1.2: 2329 | version "1.1.6" 2330 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.6.tgz#29003c9a2163e01e2d2dfc90575f2c6c1d61a039" 2331 | 2332 | rx-lite@^3.1.2: 2333 | version "3.1.2" 2334 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 2335 | 2336 | semver-diff@^2.0.0: 2337 | version "2.1.0" 2338 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 2339 | dependencies: 2340 | semver "^5.0.3" 2341 | 2342 | semver@^5.0.3, semver@~5.3.0: 2343 | version "5.3.0" 2344 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2345 | 2346 | send@0.14.1: 2347 | version "0.14.1" 2348 | resolved "https://registry.yarnpkg.com/send/-/send-0.14.1.tgz#a954984325392f51532a7760760e459598c89f7a" 2349 | dependencies: 2350 | debug "~2.2.0" 2351 | depd "~1.1.0" 2352 | destroy "~1.0.4" 2353 | encodeurl "~1.0.1" 2354 | escape-html "~1.0.3" 2355 | etag "~1.7.0" 2356 | fresh "0.3.0" 2357 | http-errors "~1.5.0" 2358 | mime "1.3.4" 2359 | ms "0.7.1" 2360 | on-finished "~2.3.0" 2361 | range-parser "~1.2.0" 2362 | statuses "~1.3.0" 2363 | 2364 | serve-favicon@~2.3.0: 2365 | version "2.3.0" 2366 | resolved "https://registry.yarnpkg.com/serve-favicon/-/serve-favicon-2.3.0.tgz#aed36cc6834069a6f189cc7222c6a1a811dc5b39" 2367 | dependencies: 2368 | etag "~1.7.0" 2369 | fresh "0.3.0" 2370 | ms "0.7.1" 2371 | parseurl "~1.3.0" 2372 | 2373 | serve-static@~1.11.1: 2374 | version "1.11.1" 2375 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.11.1.tgz#d6cce7693505f733c759de57befc1af76c0f0805" 2376 | dependencies: 2377 | encodeurl "~1.0.1" 2378 | escape-html "~1.0.3" 2379 | parseurl "~1.3.1" 2380 | send "0.14.1" 2381 | 2382 | set-blocking@~2.0.0: 2383 | version "2.0.0" 2384 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2385 | 2386 | set-immediate-shim@^1.0.1: 2387 | version "1.0.1" 2388 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2389 | 2390 | setprototypeof@1.0.1: 2391 | version "1.0.1" 2392 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.1.tgz#52009b27888c4dc48f591949c0a8275834c1ca7e" 2393 | 2394 | shallow-copy@~0.0.1: 2395 | version "0.0.1" 2396 | resolved "https://registry.yarnpkg.com/shallow-copy/-/shallow-copy-0.0.1.tgz#415f42702d73d810330292cc5ee86eae1a11a170" 2397 | 2398 | shelljs@^0.6.0: 2399 | version "0.6.1" 2400 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.6.1.tgz#ec6211bed1920442088fe0f70b2837232ed2c8a8" 2401 | 2402 | shortid: 2403 | version "2.2.6" 2404 | resolved "https://registry.yarnpkg.com/shortid/-/shortid-2.2.6.tgz#3abbefc6c51074cf2c1f1e72f6216a1b45876d72" 2405 | 2406 | signal-exit@^3.0.0: 2407 | version "3.0.1" 2408 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.1.tgz#5a4c884992b63a7acd9badb7894c3ee9cfccad81" 2409 | 2410 | slice-ansi@0.0.4: 2411 | version "0.0.4" 2412 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 2413 | 2414 | slide@^1.1.5: 2415 | version "1.1.6" 2416 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 2417 | 2418 | sntp@1.x.x: 2419 | version "1.0.9" 2420 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2421 | dependencies: 2422 | hoek "2.x.x" 2423 | 2424 | sorted-object@2.0.0: 2425 | version "2.0.0" 2426 | resolved "https://registry.yarnpkg.com/sorted-object/-/sorted-object-2.0.0.tgz#1cfea981609047d8043807a490a9d99b317faf7f" 2427 | 2428 | "source-map@>= 0.1.2", source-map@~0.5.1: 2429 | version "0.5.6" 2430 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 2431 | 2432 | source-map@~0.1.30, source-map@~0.1.33: 2433 | version "0.1.43" 2434 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.43.tgz#c24bc146ca517c1471f5dacbe2571b2b7f9e3346" 2435 | dependencies: 2436 | amdefine ">=0.0.4" 2437 | 2438 | source-map@0.4.x: 2439 | version "0.4.4" 2440 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 2441 | dependencies: 2442 | amdefine ">=0.0.4" 2443 | 2444 | split@0.3: 2445 | version "0.3.3" 2446 | resolved "https://registry.yarnpkg.com/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" 2447 | dependencies: 2448 | through "2" 2449 | 2450 | sprintf-js@~1.0.2: 2451 | version "1.0.3" 2452 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2453 | 2454 | sshpk@^1.7.0: 2455 | version "1.10.1" 2456 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.1.tgz#30e1a5d329244974a1af61511339d595af6638b0" 2457 | dependencies: 2458 | asn1 "~0.2.3" 2459 | assert-plus "^1.0.0" 2460 | dashdash "^1.12.0" 2461 | getpass "^0.1.1" 2462 | optionalDependencies: 2463 | bcrypt-pbkdf "^1.0.0" 2464 | ecc-jsbn "~0.1.1" 2465 | jodid25519 "^1.0.0" 2466 | jsbn "~0.1.0" 2467 | tweetnacl "~0.14.0" 2468 | 2469 | standard: 2470 | version "8.5.0" 2471 | resolved "https://registry.yarnpkg.com/standard/-/standard-8.5.0.tgz#df78a505da59382287b92a86b55ae02df3b54a31" 2472 | dependencies: 2473 | eslint "~3.8.1" 2474 | eslint-config-standard "6.2.1" 2475 | eslint-config-standard-jsx "3.2.0" 2476 | eslint-plugin-promise "~3.3.0" 2477 | eslint-plugin-react "~6.4.1" 2478 | eslint-plugin-standard "~2.0.1" 2479 | standard-engine "~5.1.0" 2480 | 2481 | standard-engine@~5.1.0: 2482 | version "5.1.1" 2483 | resolved "https://registry.yarnpkg.com/standard-engine/-/standard-engine-5.1.1.tgz#cb775eae1c50cfa8e76ab25456dd122af7f34788" 2484 | dependencies: 2485 | deglob "^2.0.0" 2486 | find-root "^1.0.0" 2487 | get-stdin "^5.0.1" 2488 | home-or-tmp "^2.0.0" 2489 | minimist "^1.1.0" 2490 | pkg-config "^1.0.1" 2491 | 2492 | static-eval@~0.2.0: 2493 | version "0.2.4" 2494 | resolved "https://registry.yarnpkg.com/static-eval/-/static-eval-0.2.4.tgz#b7d34d838937b969f9641ca07d48f8ede263ea7b" 2495 | dependencies: 2496 | escodegen "~0.0.24" 2497 | 2498 | static-module@^1.1.0: 2499 | version "1.3.1" 2500 | resolved "https://registry.yarnpkg.com/static-module/-/static-module-1.3.1.tgz#79071d340e4419e4ab5ce87976a9eb67250c8493" 2501 | dependencies: 2502 | concat-stream "~1.4.5" 2503 | duplexer2 "~0.0.2" 2504 | escodegen "~1.3.2" 2505 | falafel "^1.0.0" 2506 | has "^1.0.0" 2507 | object-inspect "~0.4.0" 2508 | quote-stream "~0.0.0" 2509 | readable-stream "~1.0.27-1" 2510 | shallow-copy "~0.0.1" 2511 | static-eval "~0.2.0" 2512 | through2 "~0.4.1" 2513 | 2514 | "statuses@>= 1.3.0 < 2", statuses@~1.3.0: 2515 | version "1.3.0" 2516 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.0.tgz#8e55758cb20e7682c1f4fce8dcab30bf01d1e07a" 2517 | 2518 | stream-combiner@~0.0.4: 2519 | version "0.0.4" 2520 | resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" 2521 | dependencies: 2522 | duplexer "~0.1.1" 2523 | 2524 | stream-shift@^1.0.0: 2525 | version "1.0.0" 2526 | resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" 2527 | 2528 | string_decoder@~0.10.x: 2529 | version "0.10.31" 2530 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 2531 | 2532 | string-length@^1.0.0: 2533 | version "1.0.1" 2534 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 2535 | dependencies: 2536 | strip-ansi "^3.0.0" 2537 | 2538 | string-width@^1.0.1: 2539 | version "1.0.2" 2540 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2541 | dependencies: 2542 | code-point-at "^1.0.0" 2543 | is-fullwidth-code-point "^1.0.0" 2544 | strip-ansi "^3.0.0" 2545 | 2546 | string-width@^2.0.0: 2547 | version "2.0.0" 2548 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 2549 | dependencies: 2550 | is-fullwidth-code-point "^2.0.0" 2551 | strip-ansi "^3.0.0" 2552 | 2553 | stringstream@~0.0.4: 2554 | version "0.0.5" 2555 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2556 | 2557 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2558 | version "3.0.1" 2559 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2560 | dependencies: 2561 | ansi-regex "^2.0.0" 2562 | 2563 | strip-bom@^3.0.0: 2564 | version "3.0.0" 2565 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2566 | 2567 | strip-json-comments@~1.0.1, strip-json-comments@~1.0.4: 2568 | version "1.0.4" 2569 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 2570 | 2571 | supports-color@^2.0.0: 2572 | version "2.0.0" 2573 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2574 | 2575 | table@^3.7.8: 2576 | version "3.8.3" 2577 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 2578 | dependencies: 2579 | ajv "^4.7.0" 2580 | ajv-keywords "^1.0.0" 2581 | chalk "^1.1.1" 2582 | lodash "^4.0.0" 2583 | slice-ansi "0.0.4" 2584 | string-width "^2.0.0" 2585 | 2586 | tar-pack@~3.3.0: 2587 | version "3.3.0" 2588 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae" 2589 | dependencies: 2590 | debug "~2.2.0" 2591 | fstream "~1.0.10" 2592 | fstream-ignore "~1.0.5" 2593 | once "~1.3.3" 2594 | readable-stream "~2.1.4" 2595 | rimraf "~2.5.1" 2596 | tar "~2.2.1" 2597 | uid-number "~0.0.6" 2598 | 2599 | tar@~2.2.1: 2600 | version "2.2.1" 2601 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2602 | dependencies: 2603 | block-stream "*" 2604 | fstream "^1.0.2" 2605 | inherits "2" 2606 | 2607 | text-table@~0.2.0: 2608 | version "0.2.0" 2609 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2610 | 2611 | through@^2.3.6, through@~2.3, through@~2.3.1, through@~2.3.4, through@2: 2612 | version "2.3.8" 2613 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2614 | 2615 | through2@^2.0.0: 2616 | version "2.0.1" 2617 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.1.tgz#384e75314d49f32de12eebb8136b8eb6b5d59da9" 2618 | dependencies: 2619 | readable-stream "~2.0.0" 2620 | xtend "~4.0.0" 2621 | 2622 | through2@~0.4.1: 2623 | version "0.4.2" 2624 | resolved "https://registry.yarnpkg.com/through2/-/through2-0.4.2.tgz#dbf5866031151ec8352bb6c4db64a2292a840b9b" 2625 | dependencies: 2626 | readable-stream "~1.0.17" 2627 | xtend "~2.1.1" 2628 | 2629 | timed-out@^2.0.0: 2630 | version "2.0.0" 2631 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-2.0.0.tgz#f38b0ae81d3747d628001f41dafc652ace671c0a" 2632 | 2633 | tiny-inflate@^1.0.0, tiny-inflate@^1.0.2: 2634 | version "1.0.2" 2635 | resolved "https://registry.yarnpkg.com/tiny-inflate/-/tiny-inflate-1.0.2.tgz#93d9decffc8805bd57eae4310f0b745e9b6fb3a7" 2636 | 2637 | token-stream@0.0.1: 2638 | version "0.0.1" 2639 | resolved "https://registry.yarnpkg.com/token-stream/-/token-stream-0.0.1.tgz#ceeefc717a76c4316f126d0b9dbaa55d7e7df01a" 2640 | 2641 | touch@1.0.0: 2642 | version "1.0.0" 2643 | resolved "https://registry.yarnpkg.com/touch/-/touch-1.0.0.tgz#449cbe2dbae5a8c8038e30d71fa0ff464947c4de" 2644 | dependencies: 2645 | nopt "~1.0.10" 2646 | 2647 | tough-cookie@~2.3.0: 2648 | version "2.3.2" 2649 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 2650 | dependencies: 2651 | punycode "^1.4.1" 2652 | 2653 | tryit@^1.0.1: 2654 | version "1.0.3" 2655 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 2656 | 2657 | tunnel-agent@~0.4.1: 2658 | version "0.4.3" 2659 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 2660 | 2661 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2662 | version "0.14.3" 2663 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.3.tgz#3da382f670f25ded78d7b3d1792119bca0b7132d" 2664 | 2665 | type-check@~0.3.2: 2666 | version "0.3.2" 2667 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2668 | dependencies: 2669 | prelude-ls "~1.1.2" 2670 | 2671 | type-is@~1.6.13: 2672 | version "1.6.13" 2673 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.13.tgz#6e83ba7bc30cd33a7bb0b7fb00737a2085bf9d08" 2674 | dependencies: 2675 | media-typer "0.3.0" 2676 | mime-types "~2.1.11" 2677 | 2678 | typedarray@~0.0.5: 2679 | version "0.0.6" 2680 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 2681 | 2682 | uglify-js@^2.6.1: 2683 | version "2.7.4" 2684 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.7.4.tgz#a295a0de12b6a650c031c40deb0dc40b14568bd2" 2685 | dependencies: 2686 | async "~0.2.6" 2687 | source-map "~0.5.1" 2688 | uglify-to-browserify "~1.0.0" 2689 | yargs "~3.10.0" 2690 | 2691 | uglify-to-browserify@~1.0.0: 2692 | version "1.0.2" 2693 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 2694 | 2695 | uid-number@~0.0.6: 2696 | version "0.0.6" 2697 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2698 | 2699 | undefsafe@0.0.3: 2700 | version "0.0.3" 2701 | resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-0.0.3.tgz#ecca3a03e56b9af17385baac812ac83b994a962f" 2702 | 2703 | unicode-properties@^1.0.0: 2704 | version "1.1.0" 2705 | resolved "https://registry.yarnpkg.com/unicode-properties/-/unicode-properties-1.1.0.tgz#7a96eef49f75682ea69d2315eec9ac43ffdf00c1" 2706 | dependencies: 2707 | brfs "^1.4.0" 2708 | unicode-trie "^0.3.0" 2709 | 2710 | unicode-trie@^0.1.1: 2711 | version "0.1.2" 2712 | resolved "https://registry.yarnpkg.com/unicode-trie/-/unicode-trie-0.1.2.tgz#bd3c528bc3360cafdf71f0863cbec29fc0e84ec8" 2713 | 2714 | unicode-trie@^0.3.0: 2715 | version "0.3.1" 2716 | resolved "https://registry.yarnpkg.com/unicode-trie/-/unicode-trie-0.3.1.tgz#d671dddd89101a08bac37b6a5161010602052085" 2717 | dependencies: 2718 | pako "^0.2.5" 2719 | tiny-inflate "^1.0.0" 2720 | 2721 | uniq@^1.0.1: 2722 | version "1.0.1" 2723 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" 2724 | 2725 | unpipe@~1.0.0, unpipe@1.0.0: 2726 | version "1.0.0" 2727 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 2728 | 2729 | update-notifier@0.5.0: 2730 | version "0.5.0" 2731 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-0.5.0.tgz#07b5dc2066b3627ab3b4f530130f7eddda07a4cc" 2732 | dependencies: 2733 | chalk "^1.0.0" 2734 | configstore "^1.0.0" 2735 | is-npm "^1.0.0" 2736 | latest-version "^1.0.0" 2737 | repeating "^1.1.2" 2738 | semver-diff "^2.0.0" 2739 | string-length "^1.0.0" 2740 | 2741 | user-home@^2.0.0: 2742 | version "2.0.0" 2743 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 2744 | dependencies: 2745 | os-homedir "^1.0.0" 2746 | 2747 | util-deprecate@~1.0.1: 2748 | version "1.0.2" 2749 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2750 | 2751 | utils-merge@1.0.0: 2752 | version "1.0.0" 2753 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" 2754 | 2755 | uuid@^2.0.1: 2756 | version "2.0.3" 2757 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 2758 | 2759 | vary@~1.1.0: 2760 | version "1.1.0" 2761 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.0.tgz#e1e5affbbd16ae768dd2674394b9ad3022653140" 2762 | 2763 | verror@1.3.6: 2764 | version "1.3.6" 2765 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 2766 | dependencies: 2767 | extsprintf "1.0.2" 2768 | 2769 | void-elements@^2.0.1: 2770 | version "2.0.1" 2771 | resolved "https://registry.yarnpkg.com/void-elements/-/void-elements-2.0.1.tgz#c066afb582bb1cb4128d60ea92392e94d5e9dbec" 2772 | 2773 | wide-align@^1.1.0: 2774 | version "1.1.0" 2775 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 2776 | dependencies: 2777 | string-width "^1.0.1" 2778 | 2779 | window-size@0.1.0: 2780 | version "0.1.0" 2781 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 2782 | 2783 | with@^5.0.0: 2784 | version "5.1.1" 2785 | resolved "https://registry.yarnpkg.com/with/-/with-5.1.1.tgz#fa4daa92daf32c4ea94ed453c81f04686b575dfe" 2786 | dependencies: 2787 | acorn "^3.1.0" 2788 | acorn-globals "^3.0.0" 2789 | 2790 | wordwrap@~1.0.0: 2791 | version "1.0.0" 2792 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2793 | 2794 | wordwrap@0.0.2: 2795 | version "0.0.2" 2796 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 2797 | 2798 | wrappy@1: 2799 | version "1.0.2" 2800 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2801 | 2802 | write-file-atomic@^1.1.2: 2803 | version "1.2.0" 2804 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.2.0.tgz#14c66d4e4cb3ca0565c28cf3b7a6f3e4d5938fab" 2805 | dependencies: 2806 | graceful-fs "^4.1.2" 2807 | imurmurhash "^0.1.4" 2808 | slide "^1.1.5" 2809 | 2810 | write@^0.2.1: 2811 | version "0.2.1" 2812 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 2813 | dependencies: 2814 | mkdirp "^0.5.1" 2815 | 2816 | xdg-basedir@^2.0.0: 2817 | version "2.0.0" 2818 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-2.0.0.tgz#edbc903cc385fc04523d966a335504b5504d1bd2" 2819 | dependencies: 2820 | os-homedir "^1.0.0" 2821 | 2822 | xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.0: 2823 | version "4.0.1" 2824 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2825 | 2826 | xtend@~2.1.1: 2827 | version "2.1.2" 2828 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-2.1.2.tgz#6efecc2a4dad8e6962c4901b337ce7ba87b5d28b" 2829 | dependencies: 2830 | object-keys "~0.4.0" 2831 | 2832 | yargs@~3.10.0: 2833 | version "3.10.0" 2834 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 2835 | dependencies: 2836 | camelcase "^1.0.2" 2837 | cliui "^2.1.0" 2838 | decamelize "^1.0.0" 2839 | window-size "0.1.0" 2840 | 2841 | --------------------------------------------------------------------------------