├── .env.sample ├── .gitignore ├── README.md ├── app.js ├── config └── environment.js ├── data └── db.json ├── nodemon.json ├── package.json ├── routes.js ├── services └── authService.js ├── views ├── auth │ ├── login.ejs │ └── signup.ejs ├── book.ejs ├── books.ejs ├── home.ejs ├── layout.ejs └── profile.ejs └── yarn.lock /.env.sample: -------------------------------------------------------------------------------- 1 | SESSION_SECRET='secret' 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | .env 4 | data/sessionFile.json 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Express + lowdb + Passport 2 | 3 | Demo app done in Express, [lowdb](https://github.com/typicode/lowdb), and 4 | [Passport](http://passportjs.org/). 5 | - lowdb is a small local JSON database 6 | - Passport is authentication library 7 | 8 | 9 | ## Setup 10 | 11 | Requirements: Node 12 | 13 | 1. clone repo 14 | 15 | 2. install packages 16 | 17 | ```bash 18 | $ npm install 19 | ``` 20 | 21 | 3. set up enviroment variables 22 | - copy .env.sample, and rename it .env 23 | - fill in the `SESSION_SECRET` 24 | 25 | ## Start application 26 | 27 | ```bash 28 | $ npm run dev 29 | ``` 30 | ## Step-by-step Walkthrough 31 | 32 | Step-by-step [video walkthrough](https://youtu.be/Iu2bIg8fvTw) that explains how the app works. 33 | 34 | 35 | I've also created a separate branch for each commit. To see the code for a particular step: 36 | 37 | ```bash 38 | $ git checkout step_xxx 39 | ``` 40 | -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- 1 | var express = require('express'); 2 | var expressLayouts = require('express-ejs-layouts'); 3 | var bodyParser = require('body-parser'); 4 | var expressValidator = require('express-validator'); 5 | var passport = require('passport'); 6 | var cookieParser = require('cookie-parser'); 7 | var session = require('express-session'); 8 | var store = require('connect-nedb-session')(session); 9 | var path = require('path'); 10 | var flash = require('connect-flash'); 11 | require('./config/environment') 12 | var routes = require('./routes'); 13 | 14 | var app = express(); 15 | 16 | // set view engine 17 | app.set('view engine', 'ejs'); 18 | app.use(expressLayouts); 19 | 20 | // bodyParser reads a form's input and stores it in request.body 21 | app.use(bodyParser.urlencoded({ extended: true })); // support encoded bodies 22 | app.use(bodyParser.json()); // support json encoded bodies 23 | 24 | // form and url validation 25 | app.use(expressValidator()); 26 | 27 | // cookie, session, passport is for authentication 28 | app.use(cookieParser()); 29 | 30 | // setup sessions 31 | var sessionOptions = { 32 | store: new store({ filename: path.join('data', 'sessionFile.json')}), 33 | secret: process.env.SESSION_SECRET, 34 | cookie: {}, 35 | resave: false, 36 | saveUninitialized: false, 37 | } 38 | if (process.env.NODE_ENV === 'production') { 39 | app.set('trust proxy', 1) // trust first proxy 40 | sessionOptions.cookie.secure = true // serve secure cookies for https 41 | } 42 | app.use(session(sessionOptions)) 43 | 44 | // intialize passport 45 | app.use(passport.initialize()); 46 | // use express.session() before passport.session() 47 | app.use(passport.session()); 48 | 49 | // initialize flash; flash must be after cookieParser and session 50 | app.use(flash()); 51 | 52 | // global variables that are available to the views 53 | app.use(function(req, res, next) { 54 | res.locals.errors = null; 55 | // req.user comes from passport. this makes 'user' available in the view. 56 | res.locals.user = req.user || null; 57 | // req.flash comes from flash 58 | res.locals.error = req.flash('error') 59 | res.locals.success = req.flash('success') 60 | next(); 61 | }) 62 | 63 | // routes 64 | app.use('/', routes); 65 | 66 | 67 | // start server 68 | app.listen(3000, function(){ 69 | console.log('server on port 3000') 70 | }) 71 | -------------------------------------------------------------------------------- /config/environment.js: -------------------------------------------------------------------------------- 1 | var nodeEnv = process.env.NODE_ENV || 'development'; 2 | 3 | if (nodeEnv === 'development') { 4 | require('dotenv').config(); 5 | } 6 | -------------------------------------------------------------------------------- /data/db.json: -------------------------------------------------------------------------------- 1 | { 2 | "users": [ 3 | { 4 | "username": "user", 5 | "id": "91d86b2f-f165-4a3a-bfd8-1aeccdf86a80", 6 | "password": "$2a$10$3dV0t7/V4jVoX6BDmdU7auY1GuyxeP31TeqITT4LrCnieveZECuV6" 7 | } 8 | ], 9 | "books": [ 10 | { 11 | "title": "Book One", 12 | "id": "4a588d9d-dd53-4e29-a548-4932cab38d4c", 13 | "author_id": "1" 14 | }, 15 | { 16 | "title": "Book Two", 17 | "id": "2a86570e-5b7e-491d-9249-264a0815f64f", 18 | "author_id": "2" 19 | } 20 | ], 21 | "authors": [ 22 | { 23 | "id": "1", 24 | "name": "author one" 25 | }, 26 | { 27 | "id": "2", 28 | "name": "author two" 29 | } 30 | ] 31 | } 32 | -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- 1 | { 2 | "ignore": ["data/sessionFile.json"] 3 | } 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "bcryptjs": "^2.4.3", 4 | "body-parser": "^1.17.2", 5 | "connect-flash": "^0.1.1", 6 | "connect-nedb-session": "^0.0.3", 7 | "cookie-parser": "^1.4.3", 8 | "dotenv": "^4.0.0", 9 | "ejs": "^2.5.6", 10 | "express": "^4.15.3", 11 | "express-ejs-layouts": "^2.3.0", 12 | "express-session": "^1.15.3", 13 | "express-validator": "^3.2.1", 14 | "lowdb": "^0.16.2", 15 | "passport": "^0.3.2", 16 | "passport-local": "^1.0.0", 17 | "uuid": "^3.1.0" 18 | }, 19 | "scripts": { 20 | "dev": "nodemon app.js" 21 | }, 22 | "devDependencies": { 23 | "nodemon": "^1.11.0" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /routes.js: -------------------------------------------------------------------------------- 1 | var router = require('express').Router(); 2 | var low = require('lowdb'); 3 | var path = require('path'); 4 | var uuid = require('uuid'); 5 | var authService = require('./services/authService'); 6 | var passport = require('passport'); 7 | authService.configurePassport(passport) 8 | 9 | 10 | // connect to database 11 | // path.join will take the parameters and create a path using the 12 | // right type of slashes (\ vs /) based on the operatin system 13 | var db = low(path.join('data', 'db.json')); 14 | 15 | //========================== 16 | // root route 17 | //========================== 18 | 19 | // display home page 20 | router.get('/', function(req, res) { 21 | res.render('home') 22 | }) 23 | 24 | //========================== 25 | // book routes 26 | //========================== 27 | 28 | // display all books 29 | router.get('/books', function(req, res) { 30 | var books = db.get('books').value() 31 | var authors = db.get('authors').value() 32 | 33 | res.render('books', { books: books, authors: authors }) 34 | }) 35 | 36 | // create a new book 37 | router.post('/createBook', function(req, res) { 38 | // get data from form 39 | var title = req.body.title; 40 | var author_id = req.body.author_id; 41 | 42 | // insert new book into database 43 | db.get('books') 44 | .push({title: title, id: uuid(), author_id: author_id}) 45 | .write() 46 | 47 | // redirect 48 | res.redirect('/books') 49 | }) 50 | 51 | // display one book 52 | router.get('/books/:id', function(req, res) { 53 | var book = db.get('books').find({ id: req.params.id }).value() 54 | var author; 55 | if(book) { 56 | author = db.get('authors').find({ id: book.author_id }).value() 57 | } 58 | 59 | res.render('book', { book: book || {}, author: author || {}}) 60 | }) 61 | 62 | //========================== 63 | // auth routes 64 | //========================== 65 | 66 | var signup_view_path = path.join('auth', 'signup'); 67 | var login_view_path = path.join('auth', 'login'); 68 | 69 | // display signup page only if user is not logged in 70 | router.get('/signup', isLoggedOut(), function(req, res) { 71 | res.render(signup_view_path) 72 | }) 73 | 74 | // create user 75 | router.post('/signup', function(req, res) { 76 | // remove extra spaces 77 | var username = req.body.username.trim(); 78 | var password = req.body.password.trim(); 79 | var password2 = req.body.password2.trim(); 80 | 81 | // validate form data 82 | req.checkBody('username', 'Username must have at least 3 characters').isLength({min: 3}); 83 | req.checkBody('password', 'Password must have at least 3 characters').isLength({min: 3}); 84 | req.checkBody('username', 'Username is required').notEmpty(); 85 | req.checkBody('password', 'Password is required').notEmpty(); 86 | req.checkBody('password2', 'Confirm password is required').notEmpty(); 87 | req.checkBody('password', 'Password do not match').equals(password2); 88 | 89 | // check for errors 90 | var errors = req.validationErrors(); 91 | // if there are errors, display signup page 92 | if (errors) { 93 | return res.render(signup_view_path, {errors: errors.map(function(error) {return error.msg})}) 94 | } 95 | 96 | var options = { 97 | username: username, 98 | password: password, 99 | successRedirectUrl: '/', 100 | signUpTemplate: signup_view_path, 101 | } 102 | authService.signup(options,res); 103 | }) 104 | 105 | // display login page if user is not logged in 106 | router.get('/login', isLoggedOut(), function(req, res) { 107 | res.render(login_view_path, { errors: [] }) 108 | }) 109 | 110 | // peform login 111 | router.post( 112 | '/login', 113 | passport.authenticate( 114 | 'local', 115 | { 116 | successRedirect:'/', 117 | failureRedirect:'/login', 118 | failureFlash: true, 119 | successFlash: 'You are logged in', 120 | } 121 | ) 122 | ) 123 | 124 | // logout user 125 | router.get('/logout', function(req, res) { 126 | req.logout(); 127 | req.flash('success', 'You are logged out'); 128 | res.redirect('/') 129 | }) 130 | 131 | // display profile page if user is logged in 132 | router.get('/profile', isLoggedIn(), function(req, res) { 133 | var dbUser = db.get('users').find({ id: req.user.id }).value(); 134 | 135 | res.render('profile', { dbUser: dbUser }) 136 | }) 137 | 138 | //========================== 139 | // middleware 140 | //========================== 141 | 142 | // isAuthenticated comes from passport; 143 | // when a user is logged in, isAuthenticated return true. 144 | 145 | function isLoggedIn () { 146 | return (req, res, next) => { 147 | // if there is a logged in user, do the next thing, and execute the 148 | // function for the route 149 | if (req.isAuthenticated()) { return next() }; 150 | 151 | // if there isn't a login user, skip the function for the route, and 152 | // redirect to the login page 153 | return res.redirect('/login') 154 | } 155 | } 156 | 157 | function isLoggedOut () { 158 | return (req, res, next) => { 159 | // if there isn't a login user, execute the function for the route 160 | if (!req.isAuthenticated()) { return next() }; 161 | 162 | // if there is a logged in user, redirect 163 | return res.redirect('/') 164 | } 165 | } 166 | 167 | module.exports = router; 168 | -------------------------------------------------------------------------------- /services/authService.js: -------------------------------------------------------------------------------- 1 | var uuid = require('uuid'); 2 | var bcrypt = require('bcryptjs'); 3 | var low = require('lowdb'); 4 | var path = require('path'); 5 | var LocalStrategy = require('passport-local').Strategy; 6 | var passport = require('passport'); 7 | 8 | var db = low(path.join('data', 'db.json')); 9 | 10 | // takes a plain text password and returns a hash 11 | function hashPassword(plaintextPassword) { 12 | var salt = bcrypt.genSaltSync(10); 13 | return bcrypt.hashSync(plaintextPassword, salt); 14 | } 15 | 16 | // compare if plain text password matches hash password 17 | function comparePassword(plaintextPassword, hashPassword) { 18 | return bcrypt.compareSync(plaintextPassword, hashPassword); 19 | } 20 | 21 | exports.signup = function signup(options, res) { 22 | // get all values for the username that are in the database 23 | var usernames = db.get('users').map('username').value() 24 | // check if username is already taken 25 | var usernameIsTaken = usernames.includes(options.username) 26 | 27 | // if username is already taken, show error 28 | if (usernameIsTaken) { 29 | return res.render(options.signUpTemplate, {errors: ['This username is already taken']}) 30 | 31 | // else create user 32 | } else { 33 | // save new user to database 34 | db.get('users') 35 | .push({ 36 | username: options.username, 37 | // creates random id 38 | id: uuid(), 39 | // creates hash Password 40 | password: hashPassword(options.password) 41 | }) 42 | .write() 43 | 44 | // redirect 45 | res.redirect(options.successRedirectUrl) 46 | } 47 | } 48 | 49 | // configure passport 50 | exports.configurePassport = function(passport) { 51 | // Passport serializes and deserializes user instances to and from the session. 52 | 53 | // only the user ID is serialized and added to the session 54 | passport.serializeUser(function(user, done) { 55 | done(null, user.id); 56 | }); 57 | 58 | // for every request, the id is used to find the user, which will be restored 59 | // to req.user. 60 | passport.deserializeUser(function(id, done) { 61 | // find user in database 62 | var user = db.get('users').find({id: id}).value() 63 | 64 | if(!user) { 65 | done({ message: 'Invalid credentials.' }, null); 66 | } else { 67 | // the object is what will be available for 'request.user' 68 | done(null, {id: user.id, username: user.username}) 69 | } 70 | }); 71 | 72 | // configures how to autheticate a user when they log in. 73 | 74 | // LocalStrategy uses username / password in the database for authentication. 75 | passport.use(new LocalStrategy( 76 | function(username, password, done) { 77 | // look for user in database 78 | var user = db.get('users').find({ username: username }).value() 79 | 80 | // if user not found, return error 81 | if(!user) { 82 | return done(null, false, { message: 'Invalid username & password.' }); 83 | } 84 | 85 | // check if password matches 86 | var passwordsMatch = comparePassword(password, user.password); 87 | // if passowrd don't match, return error 88 | if(!passwordsMatch) { 89 | return done(null, false, { message: 'Invalid username & password.' }); 90 | } 91 | 92 | //else, if username and password match, return the user 93 | return done(null, user) 94 | } 95 | )); 96 | } 97 | -------------------------------------------------------------------------------- /views/auth/login.ejs: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 | 5 |
6 | 7 |
8 | 9 | 10 |
11 | 12 | 13 |
14 | -------------------------------------------------------------------------------- /views/auth/signup.ejs: -------------------------------------------------------------------------------- 1 |

Sign up

2 | 3 | <% if(errors) { %> 4 |
5 | <% errors.forEach(function(error) { %> 6 |
<%= error %>
7 | <% }) %> 8 |
9 | <% } %> 10 | 11 |
12 |
13 | 14 | 15 |
16 | 17 |
18 | 19 | 20 |
21 | 22 |
23 | 24 | 25 |
26 | 27 | 28 |
29 | -------------------------------------------------------------------------------- /views/book.ejs: -------------------------------------------------------------------------------- 1 |

Book

2 | 3 |

<%= book.title %>

4 |

<%= author.name %>

5 | -------------------------------------------------------------------------------- /views/books.ejs: -------------------------------------------------------------------------------- 1 |

Books

2 | 3 | 8 | 9 |

New Book

10 | 11 |
12 |
13 | 14 | 15 |
16 | 17 |
18 | 19 | 24 |
25 | 26 |
27 | -------------------------------------------------------------------------------- /views/home.ejs: -------------------------------------------------------------------------------- 1 |

Home

2 | -------------------------------------------------------------------------------- /views/layout.ejs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 24 | 25 |
26 | <% if(error.length > 0){ %> 27 |
<%= error %>
28 | <%}%> 29 | <% if(success.length > 0){ %> 30 |
<%= success %>
31 | <%}%> 32 | <%- body %> 33 |
34 | 35 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /views/profile.ejs: -------------------------------------------------------------------------------- 1 |

Profile

2 | 3 |

locals.user from req.user

4 |
<%= JSON.stringify(user) %>
5 | 6 |

user from database

7 |
<%= JSON.stringify(dbUser) %>
8 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@types/bluebird@^3.4.0": 6 | version "3.5.8" 7 | resolved "https://registry.yarnpkg.com/@types/bluebird/-/bluebird-3.5.8.tgz#242a83379f06c90f96acf6d1aeab3af6faebdb98" 8 | 9 | "@types/express-serve-static-core@*": 10 | version "4.0.49" 11 | resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.0.49.tgz#3438d68d26e39db934ba941f18e3862a1beeb722" 12 | dependencies: 13 | "@types/node" "*" 14 | 15 | "@types/express@~4.0.34": 16 | version "4.0.36" 17 | resolved "https://registry.yarnpkg.com/@types/express/-/express-4.0.36.tgz#14eb47de7ecb10319f0a2fb1cf971aa8680758c2" 18 | dependencies: 19 | "@types/express-serve-static-core" "*" 20 | "@types/serve-static" "*" 21 | 22 | "@types/mime@*": 23 | version "1.3.1" 24 | resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.1.tgz#2cf42972d0931c1060c7d5fa6627fce6bd876f2f" 25 | 26 | "@types/node@*": 27 | version "8.0.14" 28 | resolved "https://registry.yarnpkg.com/@types/node/-/node-8.0.14.tgz#4a19dc6bb61d16c01cbadc7b30ac23518fff176b" 29 | 30 | "@types/serve-static@*": 31 | version "1.7.31" 32 | resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.7.31.tgz#15456de8d98d6b4cff31be6c6af7492ae63f521a" 33 | dependencies: 34 | "@types/express-serve-static-core" "*" 35 | "@types/mime" "*" 36 | 37 | abbrev@1: 38 | version "1.1.0" 39 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 40 | 41 | accepts@~1.3.3: 42 | version "1.3.3" 43 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca" 44 | dependencies: 45 | mime-types "~2.1.11" 46 | negotiator "0.6.1" 47 | 48 | ajv@^4.9.1: 49 | version "4.11.8" 50 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 51 | dependencies: 52 | co "^4.6.0" 53 | json-stable-stringify "^1.0.1" 54 | 55 | ansi-regex@^2.0.0: 56 | version "2.1.1" 57 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 58 | 59 | ansi-styles@^2.2.1: 60 | version "2.2.1" 61 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 62 | 63 | anymatch@^1.3.0: 64 | version "1.3.0" 65 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 66 | dependencies: 67 | arrify "^1.0.0" 68 | micromatch "^2.1.5" 69 | 70 | aproba@^1.0.3: 71 | version "1.1.2" 72 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1" 73 | 74 | are-we-there-yet@~1.1.2: 75 | version "1.1.4" 76 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 77 | dependencies: 78 | delegates "^1.0.0" 79 | readable-stream "^2.0.6" 80 | 81 | arr-diff@^2.0.0: 82 | version "2.0.0" 83 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 84 | dependencies: 85 | arr-flatten "^1.0.1" 86 | 87 | arr-flatten@^1.0.1: 88 | version "1.1.0" 89 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 90 | 91 | array-flatten@1.1.1: 92 | version "1.1.1" 93 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" 94 | 95 | array-unique@^0.2.1: 96 | version "0.2.1" 97 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 98 | 99 | arrify@^1.0.0: 100 | version "1.0.1" 101 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 102 | 103 | asn1@~0.2.3: 104 | version "0.2.3" 105 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 106 | 107 | assert-plus@1.0.0, assert-plus@^1.0.0: 108 | version "1.0.0" 109 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 110 | 111 | assert-plus@^0.2.0: 112 | version "0.2.0" 113 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 114 | 115 | async-each@^1.0.0: 116 | version "1.0.1" 117 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 118 | 119 | async@~0.2.8: 120 | version "0.2.10" 121 | resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" 122 | 123 | asynckit@^0.4.0: 124 | version "0.4.0" 125 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 126 | 127 | aws-sign2@~0.6.0: 128 | version "0.6.0" 129 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 130 | 131 | aws4@^1.2.1: 132 | version "1.6.0" 133 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 134 | 135 | balanced-match@^1.0.0: 136 | version "1.0.0" 137 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 138 | 139 | bcrypt-pbkdf@^1.0.0: 140 | version "1.0.1" 141 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 142 | dependencies: 143 | tweetnacl "^0.14.3" 144 | 145 | bcryptjs@^2.4.3: 146 | version "2.4.3" 147 | resolved "https://registry.yarnpkg.com/bcryptjs/-/bcryptjs-2.4.3.tgz#9ab5627b93e60621ff7cdac5da9733027df1d0cb" 148 | 149 | binary-extensions@^1.0.0: 150 | version "1.8.0" 151 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 152 | 153 | block-stream@*: 154 | version "0.0.9" 155 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 156 | dependencies: 157 | inherits "~2.0.0" 158 | 159 | bluebird@^3.4.0: 160 | version "3.5.0" 161 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.0.tgz#791420d7f551eea2897453a8a77653f96606d67c" 162 | 163 | body-parser@^1.17.2: 164 | version "1.17.2" 165 | resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.17.2.tgz#f8892abc8f9e627d42aedafbca66bf5ab99104ee" 166 | dependencies: 167 | bytes "2.4.0" 168 | content-type "~1.0.2" 169 | debug "2.6.7" 170 | depd "~1.1.0" 171 | http-errors "~1.6.1" 172 | iconv-lite "0.4.15" 173 | on-finished "~2.3.0" 174 | qs "6.4.0" 175 | raw-body "~2.2.0" 176 | type-is "~1.6.15" 177 | 178 | boom@2.x.x: 179 | version "2.10.1" 180 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 181 | dependencies: 182 | hoek "2.x.x" 183 | 184 | brace-expansion@^1.1.7: 185 | version "1.1.8" 186 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 187 | dependencies: 188 | balanced-match "^1.0.0" 189 | concat-map "0.0.1" 190 | 191 | braces@^1.8.2: 192 | version "1.8.5" 193 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 194 | dependencies: 195 | expand-range "^1.8.1" 196 | preserve "^0.2.0" 197 | repeat-element "^1.1.2" 198 | 199 | bytes@2.4.0: 200 | version "2.4.0" 201 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.4.0.tgz#7d97196f9d5baf7f6935e25985549edd2a6c2339" 202 | 203 | caseless@~0.12.0: 204 | version "0.12.0" 205 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 206 | 207 | chalk@^1.0.0: 208 | version "1.1.3" 209 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 210 | dependencies: 211 | ansi-styles "^2.2.1" 212 | escape-string-regexp "^1.0.2" 213 | has-ansi "^2.0.0" 214 | strip-ansi "^3.0.0" 215 | supports-color "^2.0.0" 216 | 217 | chokidar@^1.4.3: 218 | version "1.7.0" 219 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 220 | dependencies: 221 | anymatch "^1.3.0" 222 | async-each "^1.0.0" 223 | glob-parent "^2.0.0" 224 | inherits "^2.0.1" 225 | is-binary-path "^1.0.0" 226 | is-glob "^2.0.0" 227 | path-is-absolute "^1.0.0" 228 | readdirp "^2.0.0" 229 | optionalDependencies: 230 | fsevents "^1.0.0" 231 | 232 | co@^4.6.0: 233 | version "4.6.0" 234 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 235 | 236 | code-point-at@^1.0.0: 237 | version "1.1.0" 238 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 239 | 240 | combined-stream@^1.0.5, combined-stream@~1.0.5: 241 | version "1.0.5" 242 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 243 | dependencies: 244 | delayed-stream "~1.0.0" 245 | 246 | concat-map@0.0.1: 247 | version "0.0.1" 248 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 249 | 250 | configstore@^1.0.0: 251 | version "1.4.0" 252 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-1.4.0.tgz#c35781d0501d268c25c54b8b17f6240e8a4fb021" 253 | dependencies: 254 | graceful-fs "^4.1.2" 255 | mkdirp "^0.5.0" 256 | object-assign "^4.0.1" 257 | os-tmpdir "^1.0.0" 258 | osenv "^0.1.0" 259 | uuid "^2.0.1" 260 | write-file-atomic "^1.1.2" 261 | xdg-basedir "^2.0.0" 262 | 263 | connect-flash@^0.1.1: 264 | version "0.1.1" 265 | resolved "https://registry.yarnpkg.com/connect-flash/-/connect-flash-0.1.1.tgz#d8630f26d95a7f851f9956b1e8cc6732f3b6aa30" 266 | 267 | connect-nedb-session@^0.0.3: 268 | version "0.0.3" 269 | resolved "https://registry.yarnpkg.com/connect-nedb-session/-/connect-nedb-session-0.0.3.tgz#e10f642d3d604f609bb23a450021dd1f0579c5ac" 270 | dependencies: 271 | nedb "0.0.6" 272 | 273 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 274 | version "1.1.0" 275 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 276 | 277 | content-disposition@0.5.2: 278 | version "0.5.2" 279 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" 280 | 281 | content-type@~1.0.2: 282 | version "1.0.2" 283 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.2.tgz#b7d113aee7a8dd27bd21133c4dc2529df1721eed" 284 | 285 | cookie-parser@^1.4.3: 286 | version "1.4.3" 287 | resolved "https://registry.yarnpkg.com/cookie-parser/-/cookie-parser-1.4.3.tgz#0fe31fa19d000b95f4aadf1f53fdc2b8a203baa5" 288 | dependencies: 289 | cookie "0.3.1" 290 | cookie-signature "1.0.6" 291 | 292 | cookie-signature@1.0.6: 293 | version "1.0.6" 294 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 295 | 296 | cookie@0.3.1: 297 | version "0.3.1" 298 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" 299 | 300 | core-util-is@~1.0.0: 301 | version "1.0.2" 302 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 303 | 304 | crc@3.4.4: 305 | version "3.4.4" 306 | resolved "https://registry.yarnpkg.com/crc/-/crc-3.4.4.tgz#9da1e980e3bd44fc5c93bf5ab3da3378d85e466b" 307 | 308 | cryptiles@2.x.x: 309 | version "2.0.5" 310 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 311 | dependencies: 312 | boom "2.x.x" 313 | 314 | dashdash@^1.12.0: 315 | version "1.14.1" 316 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 317 | dependencies: 318 | assert-plus "^1.0.0" 319 | 320 | debug@2.6.7, debug@^2.2.0: 321 | version "2.6.7" 322 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.7.tgz#92bad1f6d05bbb6bba22cca88bcd0ec894c2861e" 323 | dependencies: 324 | ms "2.0.0" 325 | 326 | deep-extend@~0.4.0: 327 | version "0.4.2" 328 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 329 | 330 | delayed-stream@~1.0.0: 331 | version "1.0.0" 332 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 333 | 334 | delegates@^1.0.0: 335 | version "1.0.0" 336 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 337 | 338 | depd@1.1.0, depd@~1.1.0: 339 | version "1.1.0" 340 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3" 341 | 342 | destroy@~1.0.4: 343 | version "1.0.4" 344 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 345 | 346 | dotenv@^4.0.0: 347 | version "4.0.0" 348 | resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-4.0.0.tgz#864ef1379aced55ce6f95debecdce179f7a0cd1d" 349 | 350 | duplexer@~0.1.1: 351 | version "0.1.1" 352 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 353 | 354 | duplexify@^3.2.0: 355 | version "3.5.0" 356 | resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.5.0.tgz#1aa773002e1578457e9d9d4a50b0ccaaebcbd604" 357 | dependencies: 358 | end-of-stream "1.0.0" 359 | inherits "^2.0.1" 360 | readable-stream "^2.0.0" 361 | stream-shift "^1.0.0" 362 | 363 | ecc-jsbn@~0.1.1: 364 | version "0.1.1" 365 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 366 | dependencies: 367 | jsbn "~0.1.0" 368 | 369 | ee-first@1.1.1: 370 | version "1.1.1" 371 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 372 | 373 | ejs@^2.5.6: 374 | version "2.5.6" 375 | resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.5.6.tgz#479636bfa3fe3b1debd52087f0acb204b4f19c88" 376 | 377 | encodeurl@~1.0.1: 378 | version "1.0.1" 379 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" 380 | 381 | end-of-stream@1.0.0: 382 | version "1.0.0" 383 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.0.0.tgz#d4596e702734a93e40e9af864319eabd99ff2f0e" 384 | dependencies: 385 | once "~1.3.0" 386 | 387 | es6-promise@^3.0.2: 388 | version "3.3.1" 389 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-3.3.1.tgz#a08cdde84ccdbf34d027a1451bc91d4bcd28a613" 390 | 391 | escape-html@~1.0.3: 392 | version "1.0.3" 393 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 394 | 395 | escape-string-regexp@^1.0.2: 396 | version "1.0.5" 397 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 398 | 399 | etag@~1.8.0: 400 | version "1.8.0" 401 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.0.tgz#6f631aef336d6c46362b51764044ce216be3c051" 402 | 403 | event-stream@~3.3.0: 404 | version "3.3.4" 405 | resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" 406 | dependencies: 407 | duplexer "~0.1.1" 408 | from "~0" 409 | map-stream "~0.1.0" 410 | pause-stream "0.0.11" 411 | split "0.3" 412 | stream-combiner "~0.0.4" 413 | through "~2.3.1" 414 | 415 | expand-brackets@^0.1.4: 416 | version "0.1.5" 417 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 418 | dependencies: 419 | is-posix-bracket "^0.1.0" 420 | 421 | expand-range@^1.8.1: 422 | version "1.8.2" 423 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 424 | dependencies: 425 | fill-range "^2.1.0" 426 | 427 | express-ejs-layouts@^2.3.0: 428 | version "2.3.0" 429 | resolved "https://registry.yarnpkg.com/express-ejs-layouts/-/express-ejs-layouts-2.3.0.tgz#80bee93ed83174c8967a6fcff2fdd3e9afb7087a" 430 | 431 | express-session@^1.15.3: 432 | version "1.15.3" 433 | resolved "https://registry.yarnpkg.com/express-session/-/express-session-1.15.3.tgz#db545f0435a7b1b228ae02da8197f65141735c67" 434 | dependencies: 435 | cookie "0.3.1" 436 | cookie-signature "1.0.6" 437 | crc "3.4.4" 438 | debug "2.6.7" 439 | depd "~1.1.0" 440 | on-headers "~1.0.1" 441 | parseurl "~1.3.1" 442 | uid-safe "~2.1.4" 443 | utils-merge "1.0.0" 444 | 445 | express-validator@^3.2.1: 446 | version "3.2.1" 447 | resolved "https://registry.yarnpkg.com/express-validator/-/express-validator-3.2.1.tgz#45603e7eee693185c2198fbdebd414925ffd3524" 448 | dependencies: 449 | "@types/bluebird" "^3.4.0" 450 | "@types/express" "~4.0.34" 451 | bluebird "^3.4.0" 452 | lodash "^4.16.0" 453 | validator "~6.2.0" 454 | 455 | express@^4.15.3: 456 | version "4.15.3" 457 | resolved "https://registry.yarnpkg.com/express/-/express-4.15.3.tgz#bab65d0f03aa80c358408972fc700f916944b662" 458 | dependencies: 459 | accepts "~1.3.3" 460 | array-flatten "1.1.1" 461 | content-disposition "0.5.2" 462 | content-type "~1.0.2" 463 | cookie "0.3.1" 464 | cookie-signature "1.0.6" 465 | debug "2.6.7" 466 | depd "~1.1.0" 467 | encodeurl "~1.0.1" 468 | escape-html "~1.0.3" 469 | etag "~1.8.0" 470 | finalhandler "~1.0.3" 471 | fresh "0.5.0" 472 | merge-descriptors "1.0.1" 473 | methods "~1.1.2" 474 | on-finished "~2.3.0" 475 | parseurl "~1.3.1" 476 | path-to-regexp "0.1.7" 477 | proxy-addr "~1.1.4" 478 | qs "6.4.0" 479 | range-parser "~1.2.0" 480 | send "0.15.3" 481 | serve-static "1.12.3" 482 | setprototypeof "1.0.3" 483 | statuses "~1.3.1" 484 | type-is "~1.6.15" 485 | utils-merge "1.0.0" 486 | vary "~1.1.1" 487 | 488 | extend@~3.0.0: 489 | version "3.0.1" 490 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 491 | 492 | extglob@^0.3.1: 493 | version "0.3.2" 494 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 495 | dependencies: 496 | is-extglob "^1.0.0" 497 | 498 | extsprintf@1.0.2: 499 | version "1.0.2" 500 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 501 | 502 | filename-regex@^2.0.0: 503 | version "2.0.1" 504 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 505 | 506 | fill-range@^2.1.0: 507 | version "2.2.3" 508 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 509 | dependencies: 510 | is-number "^2.1.0" 511 | isobject "^2.0.0" 512 | randomatic "^1.1.3" 513 | repeat-element "^1.1.2" 514 | repeat-string "^1.5.2" 515 | 516 | finalhandler@~1.0.3: 517 | version "1.0.3" 518 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.0.3.tgz#ef47e77950e999780e86022a560e3217e0d0cc89" 519 | dependencies: 520 | debug "2.6.7" 521 | encodeurl "~1.0.1" 522 | escape-html "~1.0.3" 523 | on-finished "~2.3.0" 524 | parseurl "~1.3.1" 525 | statuses "~1.3.1" 526 | unpipe "~1.0.0" 527 | 528 | for-in@^1.0.1: 529 | version "1.0.2" 530 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 531 | 532 | for-own@^0.1.4: 533 | version "0.1.5" 534 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 535 | dependencies: 536 | for-in "^1.0.1" 537 | 538 | forever-agent@~0.6.1: 539 | version "0.6.1" 540 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 541 | 542 | form-data@~2.1.1: 543 | version "2.1.4" 544 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 545 | dependencies: 546 | asynckit "^0.4.0" 547 | combined-stream "^1.0.5" 548 | mime-types "^2.1.12" 549 | 550 | forwarded@~0.1.0: 551 | version "0.1.0" 552 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.0.tgz#19ef9874c4ae1c297bcf078fde63a09b66a84363" 553 | 554 | fresh@0.5.0: 555 | version "0.5.0" 556 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.0.tgz#f474ca5e6a9246d6fd8e0953cfa9b9c805afa78e" 557 | 558 | from@~0: 559 | version "0.1.7" 560 | resolved "https://registry.yarnpkg.com/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" 561 | 562 | fs.realpath@^1.0.0: 563 | version "1.0.0" 564 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 565 | 566 | fsevents@^1.0.0: 567 | version "1.1.2" 568 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" 569 | dependencies: 570 | nan "^2.3.0" 571 | node-pre-gyp "^0.6.36" 572 | 573 | fstream-ignore@^1.0.5: 574 | version "1.0.5" 575 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 576 | dependencies: 577 | fstream "^1.0.0" 578 | inherits "2" 579 | minimatch "^3.0.0" 580 | 581 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 582 | version "1.0.11" 583 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 584 | dependencies: 585 | graceful-fs "^4.1.2" 586 | inherits "~2.0.0" 587 | mkdirp ">=0.5 0" 588 | rimraf "2" 589 | 590 | gauge@~2.7.3: 591 | version "2.7.4" 592 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 593 | dependencies: 594 | aproba "^1.0.3" 595 | console-control-strings "^1.0.0" 596 | has-unicode "^2.0.0" 597 | object-assign "^4.1.0" 598 | signal-exit "^3.0.0" 599 | string-width "^1.0.1" 600 | strip-ansi "^3.0.1" 601 | wide-align "^1.1.0" 602 | 603 | getpass@^0.1.1: 604 | version "0.1.7" 605 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 606 | dependencies: 607 | assert-plus "^1.0.0" 608 | 609 | glob-base@^0.3.0: 610 | version "0.3.0" 611 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 612 | dependencies: 613 | glob-parent "^2.0.0" 614 | is-glob "^2.0.0" 615 | 616 | glob-parent@^2.0.0: 617 | version "2.0.0" 618 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 619 | dependencies: 620 | is-glob "^2.0.0" 621 | 622 | glob@^7.0.5: 623 | version "7.1.2" 624 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 625 | dependencies: 626 | fs.realpath "^1.0.0" 627 | inflight "^1.0.4" 628 | inherits "2" 629 | minimatch "^3.0.4" 630 | once "^1.3.0" 631 | path-is-absolute "^1.0.0" 632 | 633 | got@^3.2.0: 634 | version "3.3.1" 635 | resolved "https://registry.yarnpkg.com/got/-/got-3.3.1.tgz#e5d0ed4af55fc3eef4d56007769d98192bcb2eca" 636 | dependencies: 637 | duplexify "^3.2.0" 638 | infinity-agent "^2.0.0" 639 | is-redirect "^1.0.0" 640 | is-stream "^1.0.0" 641 | lowercase-keys "^1.0.0" 642 | nested-error-stacks "^1.0.0" 643 | object-assign "^3.0.0" 644 | prepend-http "^1.0.0" 645 | read-all-stream "^3.0.0" 646 | timed-out "^2.0.0" 647 | 648 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.3: 649 | version "4.1.11" 650 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 651 | 652 | har-schema@^1.0.5: 653 | version "1.0.5" 654 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 655 | 656 | har-validator@~4.2.1: 657 | version "4.2.1" 658 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 659 | dependencies: 660 | ajv "^4.9.1" 661 | har-schema "^1.0.5" 662 | 663 | has-ansi@^2.0.0: 664 | version "2.0.0" 665 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 666 | dependencies: 667 | ansi-regex "^2.0.0" 668 | 669 | has-unicode@^2.0.0: 670 | version "2.0.1" 671 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 672 | 673 | hawk@~3.1.3: 674 | version "3.1.3" 675 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 676 | dependencies: 677 | boom "2.x.x" 678 | cryptiles "2.x.x" 679 | hoek "2.x.x" 680 | sntp "1.x.x" 681 | 682 | hoek@2.x.x: 683 | version "2.16.3" 684 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 685 | 686 | http-errors@~1.6.1: 687 | version "1.6.1" 688 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.1.tgz#5f8b8ed98aca545656bf572997387f904a722257" 689 | dependencies: 690 | depd "1.1.0" 691 | inherits "2.0.3" 692 | setprototypeof "1.0.3" 693 | statuses ">= 1.3.1 < 2" 694 | 695 | http-signature@~1.1.0: 696 | version "1.1.1" 697 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 698 | dependencies: 699 | assert-plus "^0.2.0" 700 | jsprim "^1.2.2" 701 | sshpk "^1.7.0" 702 | 703 | iconv-lite@0.4.15: 704 | version "0.4.15" 705 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.15.tgz#fe265a218ac6a57cfe854927e9d04c19825eddeb" 706 | 707 | ignore-by-default@^1.0.0: 708 | version "1.0.1" 709 | resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" 710 | 711 | imurmurhash@^0.1.4: 712 | version "0.1.4" 713 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 714 | 715 | infinity-agent@^2.0.0: 716 | version "2.0.3" 717 | resolved "https://registry.yarnpkg.com/infinity-agent/-/infinity-agent-2.0.3.tgz#45e0e2ff7a9eb030b27d62b74b3744b7a7ac4216" 718 | 719 | inflight@^1.0.4: 720 | version "1.0.6" 721 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 722 | dependencies: 723 | once "^1.3.0" 724 | wrappy "1" 725 | 726 | inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 727 | version "2.0.3" 728 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 729 | 730 | ini@~1.3.0: 731 | version "1.3.4" 732 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 733 | 734 | ipaddr.js@1.3.0: 735 | version "1.3.0" 736 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.3.0.tgz#1e03a52fdad83a8bbb2b25cbf4998b4cffcd3dec" 737 | 738 | is-binary-path@^1.0.0: 739 | version "1.0.1" 740 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 741 | dependencies: 742 | binary-extensions "^1.0.0" 743 | 744 | is-buffer@^1.1.5: 745 | version "1.1.5" 746 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 747 | 748 | is-dotfile@^1.0.0: 749 | version "1.0.3" 750 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 751 | 752 | is-equal-shallow@^0.1.3: 753 | version "0.1.3" 754 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 755 | dependencies: 756 | is-primitive "^2.0.0" 757 | 758 | is-extendable@^0.1.1: 759 | version "0.1.1" 760 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 761 | 762 | is-extglob@^1.0.0: 763 | version "1.0.0" 764 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 765 | 766 | is-finite@^1.0.0: 767 | version "1.0.2" 768 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 769 | dependencies: 770 | number-is-nan "^1.0.0" 771 | 772 | is-fullwidth-code-point@^1.0.0: 773 | version "1.0.0" 774 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 775 | dependencies: 776 | number-is-nan "^1.0.0" 777 | 778 | is-glob@^2.0.0, is-glob@^2.0.1: 779 | version "2.0.1" 780 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 781 | dependencies: 782 | is-extglob "^1.0.0" 783 | 784 | is-npm@^1.0.0: 785 | version "1.0.0" 786 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 787 | 788 | is-number@^2.1.0: 789 | version "2.1.0" 790 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 791 | dependencies: 792 | kind-of "^3.0.2" 793 | 794 | is-number@^3.0.0: 795 | version "3.0.0" 796 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 797 | dependencies: 798 | kind-of "^3.0.2" 799 | 800 | is-posix-bracket@^0.1.0: 801 | version "0.1.1" 802 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 803 | 804 | is-primitive@^2.0.0: 805 | version "2.0.0" 806 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 807 | 808 | is-promise@^2.1.0: 809 | version "2.1.0" 810 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 811 | 812 | is-redirect@^1.0.0: 813 | version "1.0.0" 814 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 815 | 816 | is-stream@^1.0.0: 817 | version "1.1.0" 818 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 819 | 820 | is-typedarray@~1.0.0: 821 | version "1.0.0" 822 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 823 | 824 | isarray@1.0.0, isarray@~1.0.0: 825 | version "1.0.0" 826 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 827 | 828 | isobject@^2.0.0: 829 | version "2.1.0" 830 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 831 | dependencies: 832 | isarray "1.0.0" 833 | 834 | isstream@~0.1.2: 835 | version "0.1.2" 836 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 837 | 838 | jsbn@~0.1.0: 839 | version "0.1.1" 840 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 841 | 842 | json-schema@0.2.3: 843 | version "0.2.3" 844 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 845 | 846 | json-stable-stringify@^1.0.1: 847 | version "1.0.1" 848 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 849 | dependencies: 850 | jsonify "~0.0.0" 851 | 852 | json-stringify-safe@~5.0.1: 853 | version "5.0.1" 854 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 855 | 856 | jsonify@~0.0.0: 857 | version "0.0.0" 858 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 859 | 860 | jsprim@^1.2.2: 861 | version "1.4.0" 862 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 863 | dependencies: 864 | assert-plus "1.0.0" 865 | extsprintf "1.0.2" 866 | json-schema "0.2.3" 867 | verror "1.3.6" 868 | 869 | kind-of@^3.0.2: 870 | version "3.2.2" 871 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 872 | dependencies: 873 | is-buffer "^1.1.5" 874 | 875 | kind-of@^4.0.0: 876 | version "4.0.0" 877 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 878 | dependencies: 879 | is-buffer "^1.1.5" 880 | 881 | latest-version@^1.0.0: 882 | version "1.0.1" 883 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-1.0.1.tgz#72cfc46e3e8d1be651e1ebb54ea9f6ea96f374bb" 884 | dependencies: 885 | package-json "^1.0.0" 886 | 887 | lodash._baseassign@^3.0.0: 888 | version "3.2.0" 889 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 890 | dependencies: 891 | lodash._basecopy "^3.0.0" 892 | lodash.keys "^3.0.0" 893 | 894 | lodash._basecopy@^3.0.0: 895 | version "3.0.1" 896 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 897 | 898 | lodash._bindcallback@^3.0.0: 899 | version "3.0.1" 900 | resolved "https://registry.yarnpkg.com/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e" 901 | 902 | lodash._createassigner@^3.0.0: 903 | version "3.1.1" 904 | resolved "https://registry.yarnpkg.com/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz#838a5bae2fdaca63ac22dee8e19fa4e6d6970b11" 905 | dependencies: 906 | lodash._bindcallback "^3.0.0" 907 | lodash._isiterateecall "^3.0.0" 908 | lodash.restparam "^3.0.0" 909 | 910 | lodash._getnative@^3.0.0: 911 | version "3.9.1" 912 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 913 | 914 | lodash._isiterateecall@^3.0.0: 915 | version "3.0.9" 916 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 917 | 918 | lodash.assign@^3.0.0: 919 | version "3.2.0" 920 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-3.2.0.tgz#3ce9f0234b4b2223e296b8fa0ac1fee8ebca64fa" 921 | dependencies: 922 | lodash._baseassign "^3.0.0" 923 | lodash._createassigner "^3.0.0" 924 | lodash.keys "^3.0.0" 925 | 926 | lodash.defaults@^3.1.2: 927 | version "3.1.2" 928 | resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-3.1.2.tgz#c7308b18dbf8bc9372d701a73493c61192bd2e2c" 929 | dependencies: 930 | lodash.assign "^3.0.0" 931 | lodash.restparam "^3.0.0" 932 | 933 | lodash.isarguments@^3.0.0: 934 | version "3.1.0" 935 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 936 | 937 | lodash.isarray@^3.0.0: 938 | version "3.0.4" 939 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 940 | 941 | lodash.keys@^3.0.0: 942 | version "3.1.2" 943 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 944 | dependencies: 945 | lodash._getnative "^3.0.0" 946 | lodash.isarguments "^3.0.0" 947 | lodash.isarray "^3.0.0" 948 | 949 | lodash.restparam@^3.0.0: 950 | version "3.6.1" 951 | resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" 952 | 953 | lodash@4, lodash@^4.16.0: 954 | version "4.17.4" 955 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 956 | 957 | lowdb@^0.16.2: 958 | version "0.16.2" 959 | resolved "https://registry.yarnpkg.com/lowdb/-/lowdb-0.16.2.tgz#a2a976eb66ec57797291970f3c87cdb61126fa3a" 960 | dependencies: 961 | graceful-fs "^4.1.3" 962 | is-promise "^2.1.0" 963 | lodash "4" 964 | steno "^0.4.1" 965 | 966 | lowercase-keys@^1.0.0: 967 | version "1.0.0" 968 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 969 | 970 | map-stream@~0.1.0: 971 | version "0.1.0" 972 | resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" 973 | 974 | media-typer@0.3.0: 975 | version "0.3.0" 976 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 977 | 978 | merge-descriptors@1.0.1: 979 | version "1.0.1" 980 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 981 | 982 | methods@~1.1.2: 983 | version "1.1.2" 984 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 985 | 986 | micromatch@^2.1.5: 987 | version "2.3.11" 988 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 989 | dependencies: 990 | arr-diff "^2.0.0" 991 | array-unique "^0.2.1" 992 | braces "^1.8.2" 993 | expand-brackets "^0.1.4" 994 | extglob "^0.3.1" 995 | filename-regex "^2.0.0" 996 | is-extglob "^1.0.0" 997 | is-glob "^2.0.1" 998 | kind-of "^3.0.2" 999 | normalize-path "^2.0.1" 1000 | object.omit "^2.0.0" 1001 | parse-glob "^3.0.4" 1002 | regex-cache "^0.4.2" 1003 | 1004 | mime-db@~1.27.0: 1005 | version "1.27.0" 1006 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 1007 | 1008 | mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.15, mime-types@~2.1.7: 1009 | version "2.1.15" 1010 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 1011 | dependencies: 1012 | mime-db "~1.27.0" 1013 | 1014 | mime@1.3.4: 1015 | version "1.3.4" 1016 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" 1017 | 1018 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 1019 | version "3.0.4" 1020 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1021 | dependencies: 1022 | brace-expansion "^1.1.7" 1023 | 1024 | minimist@0.0.8: 1025 | version "0.0.8" 1026 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1027 | 1028 | minimist@^1.2.0: 1029 | version "1.2.0" 1030 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1031 | 1032 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1: 1033 | version "0.5.1" 1034 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1035 | dependencies: 1036 | minimist "0.0.8" 1037 | 1038 | ms@2.0.0: 1039 | version "2.0.0" 1040 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1041 | 1042 | nan@^2.3.0: 1043 | version "2.6.2" 1044 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" 1045 | 1046 | nedb@0.0.6: 1047 | version "0.0.6" 1048 | resolved "https://registry.yarnpkg.com/nedb/-/nedb-0.0.6.tgz#a2e6c02cb2fcacf91245b02431f44cf1664aa85f" 1049 | dependencies: 1050 | async "~0.2.8" 1051 | underscore "~1.4.4" 1052 | 1053 | negotiator@0.6.1: 1054 | version "0.6.1" 1055 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 1056 | 1057 | nested-error-stacks@^1.0.0: 1058 | version "1.0.2" 1059 | resolved "https://registry.yarnpkg.com/nested-error-stacks/-/nested-error-stacks-1.0.2.tgz#19f619591519f096769a5ba9a86e6eeec823c3cf" 1060 | dependencies: 1061 | inherits "~2.0.1" 1062 | 1063 | node-pre-gyp@^0.6.36: 1064 | version "0.6.36" 1065 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz#db604112cb74e0d477554e9b505b17abddfab786" 1066 | dependencies: 1067 | mkdirp "^0.5.1" 1068 | nopt "^4.0.1" 1069 | npmlog "^4.0.2" 1070 | rc "^1.1.7" 1071 | request "^2.81.0" 1072 | rimraf "^2.6.1" 1073 | semver "^5.3.0" 1074 | tar "^2.2.1" 1075 | tar-pack "^3.4.0" 1076 | 1077 | nodemon@^1.11.0: 1078 | version "1.11.0" 1079 | resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-1.11.0.tgz#226c562bd2a7b13d3d7518b49ad4828a3623d06c" 1080 | dependencies: 1081 | chokidar "^1.4.3" 1082 | debug "^2.2.0" 1083 | es6-promise "^3.0.2" 1084 | ignore-by-default "^1.0.0" 1085 | lodash.defaults "^3.1.2" 1086 | minimatch "^3.0.0" 1087 | ps-tree "^1.0.1" 1088 | touch "1.0.0" 1089 | undefsafe "0.0.3" 1090 | update-notifier "0.5.0" 1091 | 1092 | nopt@^4.0.1: 1093 | version "4.0.1" 1094 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1095 | dependencies: 1096 | abbrev "1" 1097 | osenv "^0.1.4" 1098 | 1099 | nopt@~1.0.10: 1100 | version "1.0.10" 1101 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee" 1102 | dependencies: 1103 | abbrev "1" 1104 | 1105 | normalize-path@^2.0.1: 1106 | version "2.1.1" 1107 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1108 | dependencies: 1109 | remove-trailing-separator "^1.0.1" 1110 | 1111 | npmlog@^4.0.2: 1112 | version "4.1.2" 1113 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1114 | dependencies: 1115 | are-we-there-yet "~1.1.2" 1116 | console-control-strings "~1.1.0" 1117 | gauge "~2.7.3" 1118 | set-blocking "~2.0.0" 1119 | 1120 | number-is-nan@^1.0.0: 1121 | version "1.0.1" 1122 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1123 | 1124 | oauth-sign@~0.8.1: 1125 | version "0.8.2" 1126 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1127 | 1128 | object-assign@^3.0.0: 1129 | version "3.0.0" 1130 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2" 1131 | 1132 | object-assign@^4.0.1, object-assign@^4.1.0: 1133 | version "4.1.1" 1134 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1135 | 1136 | object.omit@^2.0.0: 1137 | version "2.0.1" 1138 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1139 | dependencies: 1140 | for-own "^0.1.4" 1141 | is-extendable "^0.1.1" 1142 | 1143 | on-finished@~2.3.0: 1144 | version "2.3.0" 1145 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 1146 | dependencies: 1147 | ee-first "1.1.1" 1148 | 1149 | on-headers@~1.0.1: 1150 | version "1.0.1" 1151 | resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7" 1152 | 1153 | once@^1.3.0, once@^1.3.3: 1154 | version "1.4.0" 1155 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1156 | dependencies: 1157 | wrappy "1" 1158 | 1159 | once@~1.3.0: 1160 | version "1.3.3" 1161 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 1162 | dependencies: 1163 | wrappy "1" 1164 | 1165 | os-homedir@^1.0.0: 1166 | version "1.0.2" 1167 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1168 | 1169 | os-tmpdir@^1.0.0: 1170 | version "1.0.2" 1171 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1172 | 1173 | osenv@^0.1.0, osenv@^0.1.4: 1174 | version "0.1.4" 1175 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 1176 | dependencies: 1177 | os-homedir "^1.0.0" 1178 | os-tmpdir "^1.0.0" 1179 | 1180 | package-json@^1.0.0: 1181 | version "1.2.0" 1182 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-1.2.0.tgz#c8ecac094227cdf76a316874ed05e27cc939a0e0" 1183 | dependencies: 1184 | got "^3.2.0" 1185 | registry-url "^3.0.0" 1186 | 1187 | parse-glob@^3.0.4: 1188 | version "3.0.4" 1189 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1190 | dependencies: 1191 | glob-base "^0.3.0" 1192 | is-dotfile "^1.0.0" 1193 | is-extglob "^1.0.0" 1194 | is-glob "^2.0.0" 1195 | 1196 | parseurl@~1.3.1: 1197 | version "1.3.1" 1198 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56" 1199 | 1200 | passport-local@^1.0.0: 1201 | version "1.0.0" 1202 | resolved "https://registry.yarnpkg.com/passport-local/-/passport-local-1.0.0.tgz#1fe63268c92e75606626437e3b906662c15ba6ee" 1203 | dependencies: 1204 | passport-strategy "1.x.x" 1205 | 1206 | passport-strategy@1.x.x: 1207 | version "1.0.0" 1208 | resolved "https://registry.yarnpkg.com/passport-strategy/-/passport-strategy-1.0.0.tgz#b5539aa8fc225a3d1ad179476ddf236b440f52e4" 1209 | 1210 | passport@^0.3.2: 1211 | version "0.3.2" 1212 | resolved "https://registry.yarnpkg.com/passport/-/passport-0.3.2.tgz#9dd009f915e8fe095b0124a01b8f82da07510102" 1213 | dependencies: 1214 | passport-strategy "1.x.x" 1215 | pause "0.0.1" 1216 | 1217 | path-is-absolute@^1.0.0: 1218 | version "1.0.1" 1219 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1220 | 1221 | path-to-regexp@0.1.7: 1222 | version "0.1.7" 1223 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" 1224 | 1225 | pause-stream@0.0.11: 1226 | version "0.0.11" 1227 | resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" 1228 | dependencies: 1229 | through "~2.3" 1230 | 1231 | pause@0.0.1: 1232 | version "0.0.1" 1233 | resolved "https://registry.yarnpkg.com/pause/-/pause-0.0.1.tgz#1d408b3fdb76923b9543d96fb4c9dfd535d9cb5d" 1234 | 1235 | performance-now@^0.2.0: 1236 | version "0.2.0" 1237 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1238 | 1239 | pinkie-promise@^2.0.0: 1240 | version "2.0.1" 1241 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1242 | dependencies: 1243 | pinkie "^2.0.0" 1244 | 1245 | pinkie@^2.0.0: 1246 | version "2.0.4" 1247 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1248 | 1249 | prepend-http@^1.0.0: 1250 | version "1.0.4" 1251 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 1252 | 1253 | preserve@^0.2.0: 1254 | version "0.2.0" 1255 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1256 | 1257 | process-nextick-args@~1.0.6: 1258 | version "1.0.7" 1259 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1260 | 1261 | proxy-addr@~1.1.4: 1262 | version "1.1.4" 1263 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-1.1.4.tgz#27e545f6960a44a627d9b44467e35c1b6b4ce2f3" 1264 | dependencies: 1265 | forwarded "~0.1.0" 1266 | ipaddr.js "1.3.0" 1267 | 1268 | ps-tree@^1.0.1: 1269 | version "1.1.0" 1270 | resolved "https://registry.yarnpkg.com/ps-tree/-/ps-tree-1.1.0.tgz#b421b24140d6203f1ed3c76996b4427b08e8c014" 1271 | dependencies: 1272 | event-stream "~3.3.0" 1273 | 1274 | punycode@^1.4.1: 1275 | version "1.4.1" 1276 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1277 | 1278 | qs@6.4.0, qs@~6.4.0: 1279 | version "6.4.0" 1280 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 1281 | 1282 | random-bytes@~1.0.0: 1283 | version "1.0.0" 1284 | resolved "https://registry.yarnpkg.com/random-bytes/-/random-bytes-1.0.0.tgz#4f68a1dc0ae58bd3fb95848c30324db75d64360b" 1285 | 1286 | randomatic@^1.1.3: 1287 | version "1.1.7" 1288 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 1289 | dependencies: 1290 | is-number "^3.0.0" 1291 | kind-of "^4.0.0" 1292 | 1293 | range-parser@~1.2.0: 1294 | version "1.2.0" 1295 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" 1296 | 1297 | raw-body@~2.2.0: 1298 | version "2.2.0" 1299 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.2.0.tgz#994976cf6a5096a41162840492f0bdc5d6e7fb96" 1300 | dependencies: 1301 | bytes "2.4.0" 1302 | iconv-lite "0.4.15" 1303 | unpipe "1.0.0" 1304 | 1305 | rc@^1.0.1, rc@^1.1.7: 1306 | version "1.2.1" 1307 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 1308 | dependencies: 1309 | deep-extend "~0.4.0" 1310 | ini "~1.3.0" 1311 | minimist "^1.2.0" 1312 | strip-json-comments "~2.0.1" 1313 | 1314 | read-all-stream@^3.0.0: 1315 | version "3.1.0" 1316 | resolved "https://registry.yarnpkg.com/read-all-stream/-/read-all-stream-3.1.0.tgz#35c3e177f2078ef789ee4bfafa4373074eaef4fa" 1317 | dependencies: 1318 | pinkie-promise "^2.0.0" 1319 | readable-stream "^2.0.0" 1320 | 1321 | readable-stream@^2.0.0, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4: 1322 | version "2.3.3" 1323 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 1324 | dependencies: 1325 | core-util-is "~1.0.0" 1326 | inherits "~2.0.3" 1327 | isarray "~1.0.0" 1328 | process-nextick-args "~1.0.6" 1329 | safe-buffer "~5.1.1" 1330 | string_decoder "~1.0.3" 1331 | util-deprecate "~1.0.1" 1332 | 1333 | readdirp@^2.0.0: 1334 | version "2.1.0" 1335 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 1336 | dependencies: 1337 | graceful-fs "^4.1.2" 1338 | minimatch "^3.0.2" 1339 | readable-stream "^2.0.2" 1340 | set-immediate-shim "^1.0.1" 1341 | 1342 | regex-cache@^0.4.2: 1343 | version "0.4.3" 1344 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 1345 | dependencies: 1346 | is-equal-shallow "^0.1.3" 1347 | is-primitive "^2.0.0" 1348 | 1349 | registry-url@^3.0.0: 1350 | version "3.1.0" 1351 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 1352 | dependencies: 1353 | rc "^1.0.1" 1354 | 1355 | remove-trailing-separator@^1.0.1: 1356 | version "1.0.2" 1357 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.2.tgz#69b062d978727ad14dc6b56ba4ab772fd8d70511" 1358 | 1359 | repeat-element@^1.1.2: 1360 | version "1.1.2" 1361 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1362 | 1363 | repeat-string@^1.5.2: 1364 | version "1.6.1" 1365 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1366 | 1367 | repeating@^1.1.2: 1368 | version "1.1.3" 1369 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-1.1.3.tgz#3d4114218877537494f97f77f9785fab810fa4ac" 1370 | dependencies: 1371 | is-finite "^1.0.0" 1372 | 1373 | request@^2.81.0: 1374 | version "2.81.0" 1375 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 1376 | dependencies: 1377 | aws-sign2 "~0.6.0" 1378 | aws4 "^1.2.1" 1379 | caseless "~0.12.0" 1380 | combined-stream "~1.0.5" 1381 | extend "~3.0.0" 1382 | forever-agent "~0.6.1" 1383 | form-data "~2.1.1" 1384 | har-validator "~4.2.1" 1385 | hawk "~3.1.3" 1386 | http-signature "~1.1.0" 1387 | is-typedarray "~1.0.0" 1388 | isstream "~0.1.2" 1389 | json-stringify-safe "~5.0.1" 1390 | mime-types "~2.1.7" 1391 | oauth-sign "~0.8.1" 1392 | performance-now "^0.2.0" 1393 | qs "~6.4.0" 1394 | safe-buffer "^5.0.1" 1395 | stringstream "~0.0.4" 1396 | tough-cookie "~2.3.0" 1397 | tunnel-agent "^0.6.0" 1398 | uuid "^3.0.0" 1399 | 1400 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: 1401 | version "2.6.1" 1402 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 1403 | dependencies: 1404 | glob "^7.0.5" 1405 | 1406 | safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1407 | version "5.1.1" 1408 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 1409 | 1410 | semver-diff@^2.0.0: 1411 | version "2.1.0" 1412 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 1413 | dependencies: 1414 | semver "^5.0.3" 1415 | 1416 | semver@^5.0.3, semver@^5.3.0: 1417 | version "5.3.0" 1418 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 1419 | 1420 | send@0.15.3: 1421 | version "0.15.3" 1422 | resolved "https://registry.yarnpkg.com/send/-/send-0.15.3.tgz#5013f9f99023df50d1bd9892c19e3defd1d53309" 1423 | dependencies: 1424 | debug "2.6.7" 1425 | depd "~1.1.0" 1426 | destroy "~1.0.4" 1427 | encodeurl "~1.0.1" 1428 | escape-html "~1.0.3" 1429 | etag "~1.8.0" 1430 | fresh "0.5.0" 1431 | http-errors "~1.6.1" 1432 | mime "1.3.4" 1433 | ms "2.0.0" 1434 | on-finished "~2.3.0" 1435 | range-parser "~1.2.0" 1436 | statuses "~1.3.1" 1437 | 1438 | serve-static@1.12.3: 1439 | version "1.12.3" 1440 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.12.3.tgz#9f4ba19e2f3030c547f8af99107838ec38d5b1e2" 1441 | dependencies: 1442 | encodeurl "~1.0.1" 1443 | escape-html "~1.0.3" 1444 | parseurl "~1.3.1" 1445 | send "0.15.3" 1446 | 1447 | set-blocking@~2.0.0: 1448 | version "2.0.0" 1449 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1450 | 1451 | set-immediate-shim@^1.0.1: 1452 | version "1.0.1" 1453 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 1454 | 1455 | setprototypeof@1.0.3: 1456 | version "1.0.3" 1457 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04" 1458 | 1459 | signal-exit@^3.0.0: 1460 | version "3.0.2" 1461 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1462 | 1463 | slide@^1.1.5: 1464 | version "1.1.6" 1465 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 1466 | 1467 | sntp@1.x.x: 1468 | version "1.0.9" 1469 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 1470 | dependencies: 1471 | hoek "2.x.x" 1472 | 1473 | split@0.3: 1474 | version "0.3.3" 1475 | resolved "https://registry.yarnpkg.com/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" 1476 | dependencies: 1477 | through "2" 1478 | 1479 | sshpk@^1.7.0: 1480 | version "1.13.1" 1481 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 1482 | dependencies: 1483 | asn1 "~0.2.3" 1484 | assert-plus "^1.0.0" 1485 | dashdash "^1.12.0" 1486 | getpass "^0.1.1" 1487 | optionalDependencies: 1488 | bcrypt-pbkdf "^1.0.0" 1489 | ecc-jsbn "~0.1.1" 1490 | jsbn "~0.1.0" 1491 | tweetnacl "~0.14.0" 1492 | 1493 | "statuses@>= 1.3.1 < 2", statuses@~1.3.1: 1494 | version "1.3.1" 1495 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" 1496 | 1497 | steno@^0.4.1: 1498 | version "0.4.4" 1499 | resolved "https://registry.yarnpkg.com/steno/-/steno-0.4.4.tgz#071105bdfc286e6615c0403c27e9d7b5dcb855cb" 1500 | dependencies: 1501 | graceful-fs "^4.1.3" 1502 | 1503 | stream-combiner@~0.0.4: 1504 | version "0.0.4" 1505 | resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" 1506 | dependencies: 1507 | duplexer "~0.1.1" 1508 | 1509 | stream-shift@^1.0.0: 1510 | version "1.0.0" 1511 | resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" 1512 | 1513 | string-length@^1.0.0: 1514 | version "1.0.1" 1515 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 1516 | dependencies: 1517 | strip-ansi "^3.0.0" 1518 | 1519 | string-width@^1.0.1, string-width@^1.0.2: 1520 | version "1.0.2" 1521 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1522 | dependencies: 1523 | code-point-at "^1.0.0" 1524 | is-fullwidth-code-point "^1.0.0" 1525 | strip-ansi "^3.0.0" 1526 | 1527 | string_decoder@~1.0.3: 1528 | version "1.0.3" 1529 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 1530 | dependencies: 1531 | safe-buffer "~5.1.0" 1532 | 1533 | stringstream@~0.0.4: 1534 | version "0.0.5" 1535 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 1536 | 1537 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1538 | version "3.0.1" 1539 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1540 | dependencies: 1541 | ansi-regex "^2.0.0" 1542 | 1543 | strip-json-comments@~2.0.1: 1544 | version "2.0.1" 1545 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1546 | 1547 | supports-color@^2.0.0: 1548 | version "2.0.0" 1549 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1550 | 1551 | tar-pack@^3.4.0: 1552 | version "3.4.0" 1553 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 1554 | dependencies: 1555 | debug "^2.2.0" 1556 | fstream "^1.0.10" 1557 | fstream-ignore "^1.0.5" 1558 | once "^1.3.3" 1559 | readable-stream "^2.1.4" 1560 | rimraf "^2.5.1" 1561 | tar "^2.2.1" 1562 | uid-number "^0.0.6" 1563 | 1564 | tar@^2.2.1: 1565 | version "2.2.1" 1566 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 1567 | dependencies: 1568 | block-stream "*" 1569 | fstream "^1.0.2" 1570 | inherits "2" 1571 | 1572 | through@2, through@~2.3, through@~2.3.1: 1573 | version "2.3.8" 1574 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 1575 | 1576 | timed-out@^2.0.0: 1577 | version "2.0.0" 1578 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-2.0.0.tgz#f38b0ae81d3747d628001f41dafc652ace671c0a" 1579 | 1580 | touch@1.0.0: 1581 | version "1.0.0" 1582 | resolved "https://registry.yarnpkg.com/touch/-/touch-1.0.0.tgz#449cbe2dbae5a8c8038e30d71fa0ff464947c4de" 1583 | dependencies: 1584 | nopt "~1.0.10" 1585 | 1586 | tough-cookie@~2.3.0: 1587 | version "2.3.2" 1588 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 1589 | dependencies: 1590 | punycode "^1.4.1" 1591 | 1592 | tunnel-agent@^0.6.0: 1593 | version "0.6.0" 1594 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 1595 | dependencies: 1596 | safe-buffer "^5.0.1" 1597 | 1598 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1599 | version "0.14.5" 1600 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1601 | 1602 | type-is@~1.6.15: 1603 | version "1.6.15" 1604 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.15.tgz#cab10fb4909e441c82842eafe1ad646c81804410" 1605 | dependencies: 1606 | media-typer "0.3.0" 1607 | mime-types "~2.1.15" 1608 | 1609 | uid-number@^0.0.6: 1610 | version "0.0.6" 1611 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 1612 | 1613 | uid-safe@~2.1.4: 1614 | version "2.1.4" 1615 | resolved "https://registry.yarnpkg.com/uid-safe/-/uid-safe-2.1.4.tgz#3ad6f38368c6d4c8c75ec17623fb79aa1d071d81" 1616 | dependencies: 1617 | random-bytes "~1.0.0" 1618 | 1619 | undefsafe@0.0.3: 1620 | version "0.0.3" 1621 | resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-0.0.3.tgz#ecca3a03e56b9af17385baac812ac83b994a962f" 1622 | 1623 | underscore@~1.4.4: 1624 | version "1.4.4" 1625 | resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.4.4.tgz#61a6a32010622afa07963bf325203cf12239d604" 1626 | 1627 | unpipe@1.0.0, unpipe@~1.0.0: 1628 | version "1.0.0" 1629 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 1630 | 1631 | update-notifier@0.5.0: 1632 | version "0.5.0" 1633 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-0.5.0.tgz#07b5dc2066b3627ab3b4f530130f7eddda07a4cc" 1634 | dependencies: 1635 | chalk "^1.0.0" 1636 | configstore "^1.0.0" 1637 | is-npm "^1.0.0" 1638 | latest-version "^1.0.0" 1639 | repeating "^1.1.2" 1640 | semver-diff "^2.0.0" 1641 | string-length "^1.0.0" 1642 | 1643 | util-deprecate@~1.0.1: 1644 | version "1.0.2" 1645 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1646 | 1647 | utils-merge@1.0.0: 1648 | version "1.0.0" 1649 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" 1650 | 1651 | uuid@^2.0.1: 1652 | version "2.0.3" 1653 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 1654 | 1655 | uuid@^3.0.0, uuid@^3.1.0: 1656 | version "3.1.0" 1657 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 1658 | 1659 | validator@~6.2.0: 1660 | version "6.2.1" 1661 | resolved "https://registry.yarnpkg.com/validator/-/validator-6.2.1.tgz#bc575b78d15beb2e338a665ba9530c7f409ef667" 1662 | 1663 | vary@~1.1.1: 1664 | version "1.1.1" 1665 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.1.tgz#67535ebb694c1d52257457984665323f587e8d37" 1666 | 1667 | verror@1.3.6: 1668 | version "1.3.6" 1669 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 1670 | dependencies: 1671 | extsprintf "1.0.2" 1672 | 1673 | wide-align@^1.1.0: 1674 | version "1.1.2" 1675 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 1676 | dependencies: 1677 | string-width "^1.0.2" 1678 | 1679 | wrappy@1: 1680 | version "1.0.2" 1681 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1682 | 1683 | write-file-atomic@^1.1.2: 1684 | version "1.3.4" 1685 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f" 1686 | dependencies: 1687 | graceful-fs "^4.1.11" 1688 | imurmurhash "^0.1.4" 1689 | slide "^1.1.5" 1690 | 1691 | xdg-basedir@^2.0.0: 1692 | version "2.0.0" 1693 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-2.0.0.tgz#edbc903cc385fc04523d966a335504b5504d1bd2" 1694 | dependencies: 1695 | os-homedir "^1.0.0" 1696 | --------------------------------------------------------------------------------