├── .gitignore ├── login ├── index.js └── strategies │ ├── admin-token.js │ ├── github.js │ ├── index.js │ └── login-token.js ├── package.json ├── schema ├── Course.js ├── Lesson.js ├── Mutation.js ├── Query.js ├── Step.js ├── User.js └── index.js ├── scripts ├── deploy.sh ├── devrun.sh └── samples │ ├── 1-first-course │ └── 1-lesson-one.js │ └── 2-second-course │ ├── 1-lesson-one.js │ └── 2-lesson-two.js ├── server.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | -------------------------------------------------------------------------------- /login/index.js: -------------------------------------------------------------------------------- 1 | const passport = require('passport') 2 | const initLoginStrategies = require('./strategies') 3 | const uuid = require('uuid') 4 | const url = require('url') 5 | 6 | module.exports = function (app, db) { 7 | app.use(passport.initialize()) 8 | app.use(passport.session()) 9 | 10 | passport.serializeUser(function (user, done) { 11 | done(null, user._id) 12 | }) 13 | 14 | passport.deserializeUser(function (_id, done) { 15 | db.collection('users').findOne({_id}) 16 | .then((user) => (done(null, user))) 17 | .catch((ex) => (done(ex))) 18 | }) 19 | 20 | app.use((req, res, next) => { 21 | // Save the redirectUrl on the session. 22 | // So, we can use it later when redirecting. 23 | if (req.query.appRedirectUrl) { 24 | req.session.appRedirectUrl = req.query.appRedirectUrl 25 | } 26 | 27 | // User asks for a login token instead of authenticating over cookies. 28 | // We need to provide that. 29 | if (req.query.needToken) { 30 | req.session.needToken = true 31 | } 32 | 33 | next() 34 | }) 35 | 36 | initLoginStrategies(app, db, (req, res) => { 37 | const userId = req.user._id 38 | if (req.session.needToken) { 39 | req.logout('/') 40 | const token = uuid.v4() 41 | const query = { _id: userId } 42 | const modifiers = { $push: { 'loginTokens': token } } 43 | db.collection('users').update(query, modifiers) 44 | .then(() => redirect(token)) 45 | .catch((ex) => { 46 | console.error(ex.stack) 47 | res.status(500).send('Internal Error') 48 | }) 49 | } else { 50 | redirect() 51 | } 52 | 53 | function redirect (token) { 54 | const appRedirectUrl = req.session.appRedirectUrl || '/logincheck' 55 | const parsedUrl = url.parse(appRedirectUrl, true) 56 | 57 | if (token) { 58 | parsedUrl.query['loginToken'] = token 59 | } 60 | 61 | const newRedirectUrl = url.format(parsedUrl) 62 | req.session.appRedirectUrl = null 63 | req.session.needToken = null 64 | res.redirect(newRedirectUrl) 65 | } 66 | }) 67 | 68 | app.get('/logout', (req, res) => { 69 | if (!req.user) return redirect() 70 | 71 | const userId = req.user._id 72 | req.logout('/') 73 | 74 | db.collection('users').update({ _id: userId }, { $unset: { 'loginTokens': true } }) 75 | .then(redirect) 76 | .catch((ex) => { 77 | console.error(ex.stack) 78 | res.status(500).send('Internal Error') 79 | }) 80 | 81 | function redirect () { 82 | const appRedirectUrl = req.query.appRedirectUrl || '/logincheck' 83 | res.redirect(appRedirectUrl) 84 | } 85 | }) 86 | 87 | // Client side app can use this to check the authentication. 88 | app.get('/logincheck', (req, res) => { 89 | if (req.user) { 90 | return res.json({loggedIn: true, userId: req.user._id}) 91 | } 92 | 93 | return res.json({loggedIn: false}) 94 | }) 95 | } 96 | -------------------------------------------------------------------------------- /login/strategies/admin-token.js: -------------------------------------------------------------------------------- 1 | module.exports = function (app, db, onLoginSuccess) { 2 | app.use(function (req, res, next) { 3 | const { adminToken } = req.query 4 | if (!adminToken) return next() 5 | 6 | if (adminToken === process.env.ADMIN_TOKEN) { 7 | req.admin = true 8 | } 9 | 10 | next() 11 | }) 12 | } 13 | -------------------------------------------------------------------------------- /login/strategies/github.js: -------------------------------------------------------------------------------- 1 | const passport = require('passport') 2 | const GitHubStrategy = require('passport-github2') 3 | const GitHubAPI = require('github') 4 | 5 | const githubOptions = { 6 | protocol: 'https', 7 | headers: { 8 | 'user-agent': 'Node.js' 9 | }, 10 | Promise 11 | } 12 | 13 | module.exports = function (app, db, onLoginSuccess) { 14 | passport.use(new GitHubStrategy({ 15 | clientID: process.env.GITHUB_CLIENT_ID, 16 | clientSecret: process.env.GITHUB_CLIENT_SECRET, 17 | callbackURL: `${process.env.ROOT_URL}/login/github/callback` 18 | }, 19 | function (accessToken, refreshToken, profile, done) { 20 | // We need to save these stuff in the DB and return the user object. 21 | const id = `github-${profile.username}` 22 | const user = { 23 | _id: id, 24 | 'strategies.github': { 25 | profile, 26 | refreshToken, 27 | accessToken 28 | }, 29 | updatedAt: new Date() 30 | } 31 | 32 | // We need to get the email from GitHub manually. 33 | // It's not come with the profile always. 34 | const github = new GitHubAPI(githubOptions) 35 | github.authenticate({ type: 'oauth', token: accessToken }) 36 | 37 | github.users 38 | // create the user on the DB with the email. 39 | .getEmails({ 40 | user: profile.username 41 | }) 42 | .then((emails) => { 43 | if (emails[0]) { 44 | user.email = emails[0].email 45 | } 46 | 47 | return db.collection('users').update({ _id: id }, { $set: user }, { upsert: true }) 48 | }) 49 | .then(() => done(null, user)) 50 | .catch((ex) => done(ex)) 51 | } 52 | )) 53 | 54 | const loginScopes = [ 55 | 'user:email' 56 | ] 57 | 58 | app.get('/login/github', 59 | passport.authenticate('github', { scope: loginScopes }) 60 | ) 61 | 62 | app.get('/login/github/callback', 63 | passport.authenticate('github'), 64 | function (req, res) { 65 | onLoginSuccess(req, res) 66 | } 67 | ) 68 | } 69 | -------------------------------------------------------------------------------- /login/strategies/index.js: -------------------------------------------------------------------------------- 1 | const github = require('./github') 2 | const loginToken = require('./login-token') 3 | const adminToken = require('./admin-token') 4 | 5 | module.exports = function (app, db, onLoginSuccess) { 6 | github(app, db, onLoginSuccess) 7 | loginToken(app, db, onLoginSuccess) 8 | adminToken(app, db, onLoginSuccess) 9 | } 10 | -------------------------------------------------------------------------------- /login/strategies/login-token.js: -------------------------------------------------------------------------------- 1 | module.exports = function (app, db, onLoginSuccess) { 2 | app.use(function (req, res, next) { 3 | const { loginToken } = req.query 4 | if (!loginToken) return next() 5 | 6 | const query = { 'loginTokens': loginToken } 7 | db.collection('users').findOne(query) 8 | .then((user) => { 9 | req.user = user 10 | next() 11 | }) 12 | .catch((ex) => { 13 | console.error(ex.stack) 14 | res.status(500).send('Internal Error') 15 | }) 16 | }) 17 | } 18 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "coursebook-server", 3 | "version": "0.0.0", 4 | "private": true, 5 | "description": "Backend server for coursebook", 6 | "main": "server.js", 7 | "scripts": { 8 | "lint": "standard", 9 | "test": "npm run lint", 10 | "dev": "sh scripts/devrun.sh", 11 | "start": "node server.js", 12 | "samples": "coursebook-publish http://localhost:3003 admin scripts/samples" 13 | }, 14 | "repository": { 15 | "type": "git", 16 | "url": "git+https://github.com/arunoda/coursebook-server.git" 17 | }, 18 | "author": "", 19 | "license": "MIT", 20 | "bugs": { 21 | "url": "https://github.com/arunoda/coursebook-server/issues" 22 | }, 23 | "homepage": "https://github.com/arunoda/coursebook-server#readme", 24 | "engines": { 25 | "node": "6.x.x" 26 | }, 27 | "dependencies": { 28 | "connect-mongodb-session": "^1.3.0", 29 | "cookie-parser": "^1.4.3", 30 | "cors": "^2.8.1", 31 | "express": "^4.14.0", 32 | "express-graphql": "^0.6.1", 33 | "express-session": "^1.14.2", 34 | "github": "^8.1.1", 35 | "graphql": "^0.8.2", 36 | "mongodb": "^2.2.21", 37 | "passport": "^0.3.2", 38 | "passport-github2": "^0.1.10", 39 | "uuid": "^3.0.1" 40 | }, 41 | "devDependencies": { 42 | "node-fetch": "^1.6.3", 43 | "nodemon": "^1.11.0", 44 | "standard": "^8.6.0", 45 | "coursebook-publish": "^1.0.0" 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /schema/Course.js: -------------------------------------------------------------------------------- 1 | const { 2 | GraphQLObjectType, 3 | GraphQLString, 4 | GraphQLInt, 5 | GraphQLList, 6 | GraphQLNonNull 7 | } = require('graphql') 8 | 9 | const Lesson = require('./Lesson') 10 | 11 | module.exports = new GraphQLObjectType({ 12 | name: 'Course', 13 | fields: () => ({ 14 | id: { 15 | type: new GraphQLNonNull(GraphQLString), 16 | description: 'Unique id assigned to a course', 17 | resolve: (c) => c._id 18 | }, 19 | name: { 20 | type: new GraphQLNonNull(GraphQLString), 21 | description: 'Name of course' 22 | }, 23 | position: { 24 | type: new GraphQLNonNull(GraphQLInt), 25 | description: 'Position of this course when we list all of the courses at once' 26 | }, 27 | lessons: { 28 | type: new GraphQLList(Lesson), 29 | description: 'A list of lessons in this course', 30 | args: { 31 | ids: { 32 | type: new GraphQLList(GraphQLString), 33 | description: 'A list of lession ids to filter' 34 | } 35 | }, 36 | resolve (course, args, context) { 37 | const coll = context.db.collection('lessons') 38 | const query = { courseId: course._id } 39 | const options = { 40 | sort: { position: 1 } 41 | } 42 | 43 | if (args.ids && args.ids.length > 0) { 44 | query.id = { $in: args.ids } 45 | } 46 | 47 | // If the ids === [], then we need to limit for the first lesson. 48 | // This is useful for the /start page. 49 | if (args.ids && args.ids.length === 0) { 50 | options.limit = 1 51 | } 52 | 53 | return coll.find(query, options).toArray() 54 | } 55 | } 56 | }) 57 | }) 58 | -------------------------------------------------------------------------------- /schema/Lesson.js: -------------------------------------------------------------------------------- 1 | const { 2 | GraphQLObjectType, 3 | GraphQLString, 4 | GraphQLInt, 5 | GraphQLList, 6 | GraphQLNonNull 7 | } = require('graphql') 8 | 9 | const Step = require('./Step') 10 | 11 | module.exports = new GraphQLObjectType({ 12 | name: 'Lesson', 13 | fields: () => ({ 14 | id: { 15 | type: new GraphQLNonNull(GraphQLString), 16 | description: 'Id assigned to a lesson. It\' unique inside a course' 17 | }, 18 | name: { 19 | type: new GraphQLNonNull(GraphQLString), 20 | description: 'Name of the lesson.' 21 | }, 22 | position: { 23 | type: new GraphQLNonNull(GraphQLInt), 24 | description: 'Position of this lesson inside a course.' 25 | }, 26 | course: { 27 | type: new GraphQLNonNull(require('./Course')), 28 | description: 'The course related to this lesson.', 29 | resolve (lession) { 30 | return { 31 | _id: lession.courseId, 32 | name: 'The Course Name', 33 | position: 'The course position' 34 | } 35 | } 36 | }, 37 | intro: { 38 | type: new GraphQLNonNull(GraphQLString), 39 | description: 'An introduction for the lesson written in markdown' 40 | }, 41 | steps: { 42 | type: new GraphQLList(Step), 43 | description: 'A list of steps in this lesson.', 44 | resolve (lesson, args, context) { 45 | if (!context.admin && !context.user) { 46 | throw new Error('Unauthorized Access: To view steps in a lesson') 47 | } 48 | 49 | const progressColl = context.db.collection('progress') 50 | 51 | const query = { _id: context.user._id } 52 | const options = { fields: {} } 53 | options.fields[`${lesson.courseId}.${lesson.id}`] = 1 54 | 55 | return progressColl.findOne(query, options) 56 | .then((p) => { 57 | p = p || {} 58 | const courseProgress = p[lesson.courseId] || {} 59 | const lessonProgress = courseProgress[lesson.id] || {} 60 | // Merge progress object for the step into the actual step. 61 | const steps = lesson.steps.map(step => { 62 | return Object.assign(lessonProgress[step.id] || {}, step) 63 | }) 64 | 65 | return steps 66 | }) 67 | } 68 | } 69 | }) 70 | }) 71 | -------------------------------------------------------------------------------- /schema/Mutation.js: -------------------------------------------------------------------------------- 1 | const { 2 | GraphQLObjectType, 3 | GraphQLInt, 4 | GraphQLString, 5 | GraphQLNonNull, 6 | GraphQLBoolean, 7 | GraphQLList 8 | } = require('graphql') 9 | 10 | const Step = require('./Step') 11 | 12 | module.exports = new GraphQLObjectType({ 13 | name: 'RootMutationQuery', 14 | fields: () => ({ 15 | createCourse: { 16 | type: require('./Course'), 17 | args: { 18 | id: { type: new GraphQLNonNull(GraphQLString) }, 19 | name: { type: new GraphQLNonNull(GraphQLString) }, 20 | position: { type: new GraphQLNonNull(GraphQLInt) } 21 | }, 22 | resolve (root, { id, name, position }, context) { 23 | checkForAdmin(context) 24 | const courses = context.db.collection('courses') 25 | 26 | const course = { _id: id, name, position } 27 | return courses.save(course) 28 | .then(() => courses.findOne({ _id: id })) 29 | } 30 | }, 31 | 32 | removeCourse: { 33 | type: GraphQLBoolean, 34 | args: { 35 | id: { type: new GraphQLNonNull(GraphQLString) } 36 | }, 37 | resolve (root, { id }, context) { 38 | checkForAdmin(context) 39 | const courses = context.db.collection('courses') 40 | 41 | return courses.remove({ _id: id }) 42 | .then(() => true) 43 | } 44 | }, 45 | 46 | createLesson: { 47 | type: require('./Lesson'), 48 | args: { 49 | courseId: { type: new GraphQLNonNull(GraphQLString) }, 50 | id: { type: new GraphQLNonNull(GraphQLString) }, 51 | name: { type: new GraphQLNonNull(GraphQLString) }, 52 | intro: { type: new GraphQLNonNull(GraphQLString) }, 53 | position: { type: new GraphQLNonNull(GraphQLInt) }, 54 | steps: { type: new GraphQLList(require('./Step').Input) } 55 | }, 56 | resolve (root, args, context) { 57 | checkForAdmin(context) 58 | const lessons = context.db.collection('lessons') 59 | 60 | const _id = `${args.courseId}--${args.id}` 61 | const lesson = Object.assign({ _id }, args) 62 | return lessons.save(lesson) 63 | .then(() => lessons.findOne({ _id })) 64 | } 65 | }, 66 | 67 | removeLesson: { 68 | type: GraphQLBoolean, 69 | args: { 70 | courseId: { type: new GraphQLNonNull(GraphQLString) }, 71 | id: { type: new GraphQLNonNull(GraphQLString) } 72 | }, 73 | resolve (root, args, context) { 74 | checkForAdmin(context) 75 | const lessons = context.db.collection('lessons') 76 | 77 | const query = { courseId: args.courseId, id: args.id } 78 | return lessons.remove(query) 79 | .then(() => true) 80 | } 81 | }, 82 | 83 | removeAll: { 84 | type: GraphQLBoolean, 85 | resolve (root, args, context) { 86 | checkForAdmin(context) 87 | 88 | return context.db.collection('courses').remove({}) 89 | .then(() => context.db.collection('lessons').remove({})) 90 | } 91 | }, 92 | 93 | markVisited: { 94 | type: GraphQLBoolean, 95 | description: 'Mark a given step in a lesson as visited', 96 | args: { 97 | courseId: { type: new GraphQLNonNull(GraphQLString) }, 98 | lessonId: { type: new GraphQLNonNull(GraphQLString) }, 99 | stepId: { type: new GraphQLNonNull(GraphQLString) } 100 | }, 101 | resolve (root, { courseId, lessonId, stepId }, context) { 102 | if (!context.user) { 103 | throw new Error('Unauthorized Access! - Only for loggedIn users') 104 | } 105 | 106 | const progressColl = context.db.collection('progress') 107 | const lessonsColl = context.db.collection('lessons') 108 | 109 | return lessonsColl.findOne({ courseId, id: lessonId }) 110 | .then((lesson) => { 111 | const step = lesson.steps.find((s) => s.id === stepId) 112 | const query = { 113 | _id: context.user._id 114 | } 115 | const modifier = { 116 | $set: {} 117 | } 118 | modifier['$set'][`${courseId}.${lessonId}.${stepId}.visited`] = true 119 | modifier['$set'][`${courseId}.${lessonId}.${stepId}.visitedAt`] = new Date() 120 | modifier['$set'][`${courseId}.${lessonId}.${stepId}.type`] = step.type 121 | modifier['$set'][`${courseId}.${lessonId}.${stepId}.points`] = step.points 122 | 123 | return progressColl.update(query, modifier, { upsert: true }) 124 | }) 125 | .then(() => true) 126 | } 127 | }, 128 | 129 | submitAnswer: { 130 | type: Step, 131 | description: 'Mark a given step in a lesson as visited', 132 | args: { 133 | courseId: { type: new GraphQLNonNull(GraphQLString) }, 134 | lessonId: { type: new GraphQLNonNull(GraphQLString) }, 135 | stepId: { type: new GraphQLNonNull(GraphQLString) }, 136 | answer: { type: new GraphQLNonNull(GraphQLString) } 137 | }, 138 | resolve (root, { courseId, lessonId, stepId, answer }, context) { 139 | if (!context.user) { 140 | throw new Error('Unauthorized Access! - Only for loggedIn users') 141 | } 142 | 143 | const progressColl = context.db.collection('progress') 144 | const lessonColl = context.db.collection('lessons') 145 | 146 | let step 147 | 148 | // TODO: Prevent checking answer more than once. 149 | return lessonColl.findOne({ courseId, id: lessonId }) 150 | .then((lesson) => { 151 | step = lesson.steps.find((s) => s.id === stepId) 152 | if (step.type !== 'mcq') { 153 | throw new Error(`Step type is not MCQ but ${step.type}`) 154 | } 155 | 156 | const isCorrectAnswer = answer === step.correctAnswer 157 | step.givenAnswer = answer 158 | 159 | // Set the correct answer 160 | const modifier = { $set: {} } 161 | modifier['$set'][`${courseId}.${lessonId}.${stepId}.givenAnswer`] = answer 162 | modifier['$set'][`${courseId}.${lessonId}.${stepId}.isCorrectAnswer`] = isCorrectAnswer 163 | modifier['$set'][`${courseId}.${lessonId}.${stepId}.answeredAt`] = new Date() 164 | modifier['$set'][`${courseId}.${lessonId}.${stepId}.type`] = step.type 165 | modifier['$set'][`${courseId}.${lessonId}.${stepId}.points`] = step.points 166 | 167 | return progressColl.update({ _id: context.user._id }, modifier, { upsert: true }) 168 | }) 169 | .then(() => step) 170 | } 171 | } 172 | }) 173 | }) 174 | 175 | function checkForAdmin (context) { 176 | if (!context.admin) { 177 | throw new Error('Unauthorized Access! - Only for admins') 178 | } 179 | } 180 | -------------------------------------------------------------------------------- /schema/Query.js: -------------------------------------------------------------------------------- 1 | const { 2 | GraphQLObjectType, 3 | GraphQLList, 4 | GraphQLString, 5 | GraphQLNonNull 6 | } = require('graphql') 7 | 8 | const Course = require('./Course') 9 | const User = require('./User') 10 | 11 | module.exports = new GraphQLObjectType({ 12 | name: 'RootQuery', 13 | fields: () => ({ 14 | courses: { 15 | type: new GraphQLNonNull(new GraphQLList(Course)), 16 | description: 'Return a list of all the available courses', 17 | resolve (root, args, context) { 18 | const query = {} 19 | const options = { 20 | sort: { position: 1 } 21 | } 22 | return context.db.collection('courses').find(query, options).toArray() 23 | } 24 | }, 25 | 26 | course: { 27 | args: { 28 | id: { 29 | type: GraphQLString 30 | } 31 | }, 32 | type: Course, 33 | description: 'Return the course by the given id', 34 | resolve (root, args, context) { 35 | const coll = context.db.collection('courses') 36 | if (args.id) { 37 | return coll.findOne({ _id: args.id }) 38 | } else { 39 | // The "id" can be null and then we should send the first course. 40 | // This is to support the /start page of the UI 41 | return coll.findOne({}, { sort: [['position', 1]] }) 42 | } 43 | } 44 | }, 45 | 46 | user: { 47 | type: User, 48 | description: 'Information about the current user', 49 | resolve (root, args, context) { 50 | return context.user 51 | } 52 | } 53 | }) 54 | }) 55 | -------------------------------------------------------------------------------- /schema/Step.js: -------------------------------------------------------------------------------- 1 | const { 2 | GraphQLObjectType, 3 | GraphQLString, 4 | GraphQLInt, 5 | GraphQLBoolean, 6 | GraphQLList, 7 | GraphQLNonNull, 8 | GraphQLInputObjectType 9 | } = require('graphql') 10 | 11 | const commonFields = { 12 | id: { 13 | type: new GraphQLNonNull(GraphQLString), 14 | description: 'id assigned to a step. It\'s unique inside a lesson.' 15 | }, 16 | type: { 17 | type: new GraphQLNonNull(GraphQLString), 18 | description: 'Type of the step.' 19 | }, 20 | points: { 21 | type: new GraphQLNonNull(GraphQLInt), 22 | description: 'Points allocated fot this step.' 23 | }, 24 | text: { 25 | type: new GraphQLNonNull(GraphQLString), 26 | description: 'Text related to this step.' 27 | }, 28 | answers: { 29 | type: new GraphQLList(GraphQLString), 30 | description: 'A list of answers. This is available only if the type = mcq' 31 | } 32 | } 33 | 34 | module.exports = new GraphQLObjectType({ 35 | name: 'Step', 36 | description: 'A single step in the lesson. Usually this is sub-section of a lesson. There is a task assigned it', 37 | fields: () => (Object.assign({ 38 | visited: { 39 | type: new GraphQLNonNull(GraphQLBoolean), 40 | description: 'Indicate whether user visited this step or not.', 41 | resolve (step) { 42 | return step.visited || false 43 | } 44 | }, 45 | 46 | givenAnswer: { 47 | type: GraphQLString, 48 | description: 'The answer given by the user' 49 | }, 50 | 51 | correctAnswer: { 52 | type: GraphQLString, 53 | description: 'The correct answer.', 54 | resolve (step) { 55 | if (!step.givenAnswer) return null 56 | return step.correctAnswer 57 | } 58 | } 59 | }, commonFields)) 60 | }) 61 | 62 | module.exports.Input = new GraphQLInputObjectType({ 63 | name: 'StepInput', 64 | description: 'A single step in the lesson. Usually this is sub-section of a lesson. There is a task assigned it', 65 | fields: () => (Object.assign({ 66 | correctAnswer: { 67 | type: GraphQLString, 68 | description: 'The correct answer.' 69 | } 70 | }, commonFields)) 71 | }) 72 | -------------------------------------------------------------------------------- /schema/User.js: -------------------------------------------------------------------------------- 1 | const { 2 | GraphQLObjectType, 3 | GraphQLInt, 4 | GraphQLString, 5 | GraphQLNonNull 6 | } = require('graphql') 7 | 8 | module.exports = new GraphQLObjectType({ 9 | name: 'User', 10 | fields: () => ({ 11 | name: { 12 | type: new GraphQLNonNull(GraphQLString), 13 | description: 'Name of the user', 14 | resolve (user) { 15 | const { profile } = user.strategies.github 16 | return profile.displayName || profile.username 17 | } 18 | }, 19 | username: { 20 | type: new GraphQLNonNull(GraphQLString), 21 | description: 'Username of the user on GitHub', 22 | resolve (user) { 23 | const { profile } = user.strategies.github 24 | return profile.username 25 | } 26 | }, 27 | points: { 28 | type: new GraphQLNonNull(GraphQLInt), 29 | description: 'Total points for this user', 30 | resolve (user, args, context) { 31 | const progressColl = context.db.collection('progress') 32 | return progressColl 33 | .findOne({ _id: user._id }) 34 | .then((item) => { 35 | if (!item) return 0 36 | 37 | let totalPoints = 0 38 | delete item._id 39 | 40 | Object.keys(item).forEach((courseId) => { 41 | Object.keys(item[courseId]).forEach((lessonId) => { 42 | Object.keys(item[courseId][lessonId]).forEach((stepId) => { 43 | const stepProgress = item[courseId][lessonId][stepId] 44 | if (stepProgress.type === 'text') { 45 | totalPoints += stepProgress.points 46 | return 47 | } 48 | 49 | // For MCQ 50 | if (stepProgress.isCorrectAnswer) { 51 | totalPoints += stepProgress.points 52 | return 53 | } 54 | }) 55 | }) 56 | }) 57 | 58 | return totalPoints 59 | }) 60 | } 61 | } 62 | }) 63 | }) 64 | -------------------------------------------------------------------------------- /schema/index.js: -------------------------------------------------------------------------------- 1 | const { 2 | GraphQLSchema 3 | } = require('graphql') 4 | 5 | const Query = require('./Query') 6 | const Mutation = require('./Mutation') 7 | 8 | module.exports = new GraphQLSchema({ 9 | query: Query, 10 | mutation: Mutation 11 | }) 12 | -------------------------------------------------------------------------------- /scripts/deploy.sh: -------------------------------------------------------------------------------- 1 | if [[ -z $ADMIN_TOKEN ]]; then 2 | echo "Expose the ADMIN_TOKEN" 3 | exit 1 4 | fi 5 | 6 | now \ 7 | -a server.learnnextjs.com \ 8 | -e GITHUB_CLIENT_ID=@learnnextjs-gh-client-id \ 9 | -e GITHUB_CLIENT_SECRET=@learnnextjs-gh-client-secret \ 10 | -e ROOT_URL="https://server.learnnextjs.com" \ 11 | -e MONGO_URL=@learnnextjs-mongo-url \ 12 | -e ADMIN_TOKEN=$ADMIN_TOKEN 13 | -------------------------------------------------------------------------------- /scripts/devrun.sh: -------------------------------------------------------------------------------- 1 | GITHUB_CLIENT_ID=32b6408cf73eb654c217 \ 2 | GITHUB_CLIENT_SECRET=b9cdeab3afeebd938f4313aafce6d8ea53dec9bf \ 3 | ROOT_URL=http://localhost:3003 \ 4 | ADMIN_TOKEN=admin \ 5 | nodemon server.js 6 | -------------------------------------------------------------------------------- /scripts/samples/1-first-course/1-lesson-one.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | name: 'First Lesson', 3 | intro: ` 4 | This is the intro for the lesson. 5 | I hope it'll be pretty great again! 6 | `, 7 | steps: [ 8 | { 9 | id: 'step-one', 10 | type: 'text', 11 | text: 'This is the text for this step', 12 | points: 5 13 | }, 14 | { 15 | id: 'step-two', 16 | text: 'This is the text for this question', 17 | type: 'mcq', 18 | points: 20, 19 | answers: [ 20 | 'One', 'Two', 'Three', 'Four' 21 | ], 22 | correctAnswer: 'One' 23 | } 24 | ] 25 | } 26 | -------------------------------------------------------------------------------- /scripts/samples/2-second-course/1-lesson-one.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | name: 'First Lesson', 3 | intro: ` 4 | This is the intro for the lesson. 5 | I hope it'll be pretty great! 6 | `, 7 | steps: [ 8 | { 9 | id: 'step-one', 10 | type: 'text', 11 | text: 'This is the text for this step', 12 | points: 5 13 | }, 14 | { 15 | id: 'step-two', 16 | text: 'This is the text for this question', 17 | type: 'mcq', 18 | points: 20, 19 | answers: [ 20 | 'One', 'Two', 'Three', 'Four' 21 | ], 22 | correctAnswer: 'One' 23 | } 24 | ] 25 | } 26 | -------------------------------------------------------------------------------- /scripts/samples/2-second-course/2-lesson-two.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | name: 'Second Lesson', 3 | intro: ` 4 | This is the intro for the lesson. 5 | I hope it'll be pretty great! 6 | `, 7 | steps: [ 8 | { 9 | id: 'step-one', 10 | type: 'text', 11 | text: 'This is the text for this step', 12 | points: 5 13 | }, 14 | { 15 | id: 'step-two', 16 | text: 'This is the text for this question', 17 | type: 'mcq', 18 | points: 20, 19 | answers: [ 20 | 'One', 'Two', 'Three', 'Four' 21 | ], 22 | correctAnswer: 'Four' 23 | } 24 | ] 25 | } 26 | -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- 1 | const express = require('express') 2 | const expressGraphql = require('express-graphql') 3 | const cors = require('cors') 4 | const { MongoClient } = require('mongodb') 5 | const expressSession = require('express-session') 6 | const MongoDBSessionStore = require('connect-mongodb-session')(expressSession); 7 | 8 | const schema = require('./schema') 9 | 10 | const app = express() 11 | const port = process.env.PORT || 3003 12 | const mongoUrl = process.env.MONGO_URL || 'mongodb://localhost/coursebook' 13 | const sessionSecret = process.env.SESSION_SECRET || 'secret' 14 | 15 | MongoClient.connect(mongoUrl) 16 | .then((db) => { 17 | initMiddlewares(app, db) 18 | require('./login')(app, db) 19 | 20 | app.use('/graphql', expressGraphql((req) => { 21 | const { user, admin } = req 22 | return { 23 | schema, 24 | graphiql: true, 25 | context: { 26 | user, admin, db 27 | } 28 | } 29 | })) 30 | 31 | app.listen(port, () => { 32 | console.log(`Coursebook Server started on port: ${port}`) 33 | }) 34 | }) 35 | .catch((err) => { 36 | console.error(err.stack) 37 | process.exit(1) 38 | }) 39 | 40 | function initMiddlewares (app, db) { 41 | app.use(cors({ 42 | credentials: true, 43 | origin (origin, callback) { 44 | callback(null, true) 45 | } 46 | })) 47 | 48 | app.use(require('cookie-parser')()) 49 | 50 | app.use(expressSession({ 51 | secret: sessionSecret, 52 | resave: true, 53 | saveUninitialized: true, 54 | store: new MongoDBSessionStore({ uri: mongoUrl, collection: 'sessions' }) 55 | })) 56 | } 57 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.1.0" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 8 | 9 | accepts@^1.3.0, accepts@~1.3.3: 10 | version "1.3.3" 11 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca" 12 | dependencies: 13 | mime-types "~2.1.11" 14 | negotiator "0.6.1" 15 | 16 | acorn-jsx@^3.0.0: 17 | version "3.0.1" 18 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 19 | dependencies: 20 | acorn "^3.0.4" 21 | 22 | acorn@4.0.4: 23 | version "4.0.4" 24 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.4.tgz#17a8d6a7a6c4ef538b814ec9abac2779293bf30a" 25 | 26 | acorn@^3.0.4: 27 | version "3.3.0" 28 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 29 | 30 | agent-base@2: 31 | version "2.0.1" 32 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-2.0.1.tgz#bd8f9e86a8eb221fffa07bd14befd55df142815e" 33 | dependencies: 34 | extend "~3.0.0" 35 | semver "~5.0.1" 36 | 37 | ajv-keywords@^1.0.0: 38 | version "1.5.1" 39 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 40 | 41 | ajv@^4.7.0, ajv@^4.9.1: 42 | version "4.11.5" 43 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.5.tgz#b6ee74657b993a01dce44b7944d56f485828d5bd" 44 | dependencies: 45 | co "^4.6.0" 46 | json-stable-stringify "^1.0.1" 47 | 48 | ansi-escapes@^1.1.0: 49 | version "1.4.0" 50 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 51 | 52 | ansi-regex@^2.0.0: 53 | version "2.1.1" 54 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 55 | 56 | ansi-styles@^2.2.1: 57 | version "2.2.1" 58 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 59 | 60 | anymatch@^1.3.0: 61 | version "1.3.0" 62 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 63 | dependencies: 64 | arrify "^1.0.0" 65 | micromatch "^2.1.5" 66 | 67 | aproba@^1.0.3: 68 | version "1.1.1" 69 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" 70 | 71 | are-we-there-yet@~1.1.2: 72 | version "1.1.2" 73 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 74 | dependencies: 75 | delegates "^1.0.0" 76 | readable-stream "^2.0.0 || ^1.1.13" 77 | 78 | argparse@^1.0.7: 79 | version "1.0.9" 80 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 81 | dependencies: 82 | sprintf-js "~1.0.2" 83 | 84 | arr-diff@^2.0.0: 85 | version "2.0.0" 86 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 87 | dependencies: 88 | arr-flatten "^1.0.1" 89 | 90 | arr-flatten@^1.0.1: 91 | version "1.0.1" 92 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 93 | 94 | array-flatten@1.1.1: 95 | version "1.1.1" 96 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" 97 | 98 | array-union@^1.0.1: 99 | version "1.0.2" 100 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 101 | dependencies: 102 | array-uniq "^1.0.1" 103 | 104 | array-uniq@^1.0.1: 105 | version "1.0.3" 106 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 107 | 108 | array-unique@^0.2.1: 109 | version "0.2.1" 110 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 111 | 112 | arrify@^1.0.0: 113 | version "1.0.1" 114 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 115 | 116 | asn1@~0.2.3: 117 | version "0.2.3" 118 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 119 | 120 | assert-plus@1.0.0, assert-plus@^1.0.0: 121 | version "1.0.0" 122 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 123 | 124 | assert-plus@^0.2.0: 125 | version "0.2.0" 126 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 127 | 128 | async-each@^1.0.0: 129 | version "1.0.1" 130 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 131 | 132 | asynckit@^0.4.0: 133 | version "0.4.0" 134 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 135 | 136 | aws-sign2@~0.6.0: 137 | version "0.6.0" 138 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 139 | 140 | aws4@^1.2.1: 141 | version "1.6.0" 142 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 143 | 144 | babel-code-frame@^6.16.0: 145 | version "6.22.0" 146 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 147 | dependencies: 148 | chalk "^1.1.0" 149 | esutils "^2.0.2" 150 | js-tokens "^3.0.0" 151 | 152 | balanced-match@^0.4.1: 153 | version "0.4.2" 154 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 155 | 156 | bcrypt-pbkdf@^1.0.0: 157 | version "1.0.1" 158 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 159 | dependencies: 160 | tweetnacl "^0.14.3" 161 | 162 | binary-extensions@^1.0.0: 163 | version "1.8.0" 164 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 165 | 166 | block-stream@*: 167 | version "0.0.9" 168 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 169 | dependencies: 170 | inherits "~2.0.0" 171 | 172 | boom@2.x.x: 173 | version "2.10.1" 174 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 175 | dependencies: 176 | hoek "2.x.x" 177 | 178 | brace-expansion@^1.0.0: 179 | version "1.1.6" 180 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 181 | dependencies: 182 | balanced-match "^0.4.1" 183 | concat-map "0.0.1" 184 | 185 | braces@^1.8.2: 186 | version "1.8.5" 187 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 188 | dependencies: 189 | expand-range "^1.8.1" 190 | preserve "^0.2.0" 191 | repeat-element "^1.1.2" 192 | 193 | bson@~1.0.4: 194 | version "1.0.4" 195 | resolved "https://registry.yarnpkg.com/bson/-/bson-1.0.4.tgz#93c10d39eaa5b58415cbc4052f3e53e562b0b72c" 196 | 197 | buffer-shims@^1.0.0: 198 | version "1.0.0" 199 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 200 | 201 | bytes@2.4.0: 202 | version "2.4.0" 203 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.4.0.tgz#7d97196f9d5baf7f6935e25985549edd2a6c2339" 204 | 205 | caller-path@^0.1.0: 206 | version "0.1.0" 207 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 208 | dependencies: 209 | callsites "^0.2.0" 210 | 211 | callsites@^0.2.0: 212 | version "0.2.0" 213 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 214 | 215 | caseless@~0.12.0: 216 | version "0.12.0" 217 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 218 | 219 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 220 | version "1.1.3" 221 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 222 | dependencies: 223 | ansi-styles "^2.2.1" 224 | escape-string-regexp "^1.0.2" 225 | has-ansi "^2.0.0" 226 | strip-ansi "^3.0.0" 227 | supports-color "^2.0.0" 228 | 229 | chokidar@^1.4.3: 230 | version "1.6.1" 231 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 232 | dependencies: 233 | anymatch "^1.3.0" 234 | async-each "^1.0.0" 235 | glob-parent "^2.0.0" 236 | inherits "^2.0.1" 237 | is-binary-path "^1.0.0" 238 | is-glob "^2.0.0" 239 | path-is-absolute "^1.0.0" 240 | readdirp "^2.0.0" 241 | optionalDependencies: 242 | fsevents "^1.0.0" 243 | 244 | circular-json@^0.3.1: 245 | version "0.3.1" 246 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 247 | 248 | cli-cursor@^1.0.1: 249 | version "1.0.2" 250 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 251 | dependencies: 252 | restore-cursor "^1.0.1" 253 | 254 | cli-width@^2.0.0: 255 | version "2.1.0" 256 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 257 | 258 | co@^4.6.0: 259 | version "4.6.0" 260 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 261 | 262 | code-point-at@^1.0.0: 263 | version "1.1.0" 264 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 265 | 266 | combined-stream@^1.0.5, combined-stream@~1.0.5: 267 | version "1.0.5" 268 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 269 | dependencies: 270 | delayed-stream "~1.0.0" 271 | 272 | concat-map@0.0.1: 273 | version "0.0.1" 274 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 275 | 276 | concat-stream@^1.4.6: 277 | version "1.6.0" 278 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 279 | dependencies: 280 | inherits "^2.0.3" 281 | readable-stream "^2.2.2" 282 | typedarray "^0.0.6" 283 | 284 | configstore@^1.0.0: 285 | version "1.4.0" 286 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-1.4.0.tgz#c35781d0501d268c25c54b8b17f6240e8a4fb021" 287 | dependencies: 288 | graceful-fs "^4.1.2" 289 | mkdirp "^0.5.0" 290 | object-assign "^4.0.1" 291 | os-tmpdir "^1.0.0" 292 | osenv "^0.1.0" 293 | uuid "^2.0.1" 294 | write-file-atomic "^1.1.2" 295 | xdg-basedir "^2.0.0" 296 | 297 | connect-mongodb-session@^1.3.0: 298 | version "1.3.0" 299 | resolved "https://registry.yarnpkg.com/connect-mongodb-session/-/connect-mongodb-session-1.3.0.tgz#34e4e0b4157fda81b8d42f2a741ac4d7ef4ee4fa" 300 | dependencies: 301 | mongodb "~2.2.0" 302 | 303 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 304 | version "1.1.0" 305 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 306 | 307 | content-disposition@0.5.2: 308 | version "0.5.2" 309 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" 310 | 311 | content-type@^1.0.2, content-type@~1.0.2: 312 | version "1.0.2" 313 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.2.tgz#b7d113aee7a8dd27bd21133c4dc2529df1721eed" 314 | 315 | cookie-parser@^1.4.3: 316 | version "1.4.3" 317 | resolved "https://registry.yarnpkg.com/cookie-parser/-/cookie-parser-1.4.3.tgz#0fe31fa19d000b95f4aadf1f53fdc2b8a203baa5" 318 | dependencies: 319 | cookie "0.3.1" 320 | cookie-signature "1.0.6" 321 | 322 | cookie-signature@1.0.6: 323 | version "1.0.6" 324 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 325 | 326 | cookie@0.3.1: 327 | version "0.3.1" 328 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" 329 | 330 | core-util-is@~1.0.0: 331 | version "1.0.2" 332 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 333 | 334 | cors@^2.8.1: 335 | version "2.8.1" 336 | resolved "https://registry.yarnpkg.com/cors/-/cors-2.8.1.tgz#6181aa56abb45a2825be3304703747ae4e9d2383" 337 | dependencies: 338 | vary "^1" 339 | 340 | coursebook-publish@^1.0.0: 341 | version "1.0.0" 342 | resolved "https://registry.yarnpkg.com/coursebook-publish/-/coursebook-publish-1.0.0.tgz#da1d6ecd69bb262fc939673116a7bbc6ef30b9d2" 343 | dependencies: 344 | node-fetch "^1.6.3" 345 | 346 | crc@3.4.4: 347 | version "3.4.4" 348 | resolved "https://registry.yarnpkg.com/crc/-/crc-3.4.4.tgz#9da1e980e3bd44fc5c93bf5ab3da3378d85e466b" 349 | 350 | cryptiles@2.x.x: 351 | version "2.0.5" 352 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 353 | dependencies: 354 | boom "2.x.x" 355 | 356 | d@1: 357 | version "1.0.0" 358 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 359 | dependencies: 360 | es5-ext "^0.10.9" 361 | 362 | dashdash@^1.12.0: 363 | version "1.14.1" 364 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 365 | dependencies: 366 | assert-plus "^1.0.0" 367 | 368 | debug-log@^1.0.0: 369 | version "1.0.1" 370 | resolved "https://registry.yarnpkg.com/debug-log/-/debug-log-1.0.1.tgz#2307632d4c04382b8df8a32f70b895046d52745f" 371 | 372 | debug@2, debug@2.6.1, debug@^2.1.1, debug@^2.2.0: 373 | version "2.6.1" 374 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.1.tgz#79855090ba2c4e3115cc7d8769491d58f0491351" 375 | dependencies: 376 | ms "0.7.2" 377 | 378 | deep-extend@~0.4.0: 379 | version "0.4.1" 380 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 381 | 382 | deep-is@~0.1.3: 383 | version "0.1.3" 384 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 385 | 386 | deglob@^2.0.0: 387 | version "2.1.0" 388 | resolved "https://registry.yarnpkg.com/deglob/-/deglob-2.1.0.tgz#4d44abe16ef32c779b4972bd141a80325029a14a" 389 | dependencies: 390 | find-root "^1.0.0" 391 | glob "^7.0.5" 392 | ignore "^3.0.9" 393 | pkg-config "^1.1.0" 394 | run-parallel "^1.1.2" 395 | uniq "^1.0.1" 396 | 397 | del@^2.0.2: 398 | version "2.2.2" 399 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 400 | dependencies: 401 | globby "^5.0.0" 402 | is-path-cwd "^1.0.0" 403 | is-path-in-cwd "^1.0.0" 404 | object-assign "^4.0.1" 405 | pify "^2.0.0" 406 | pinkie-promise "^2.0.0" 407 | rimraf "^2.2.8" 408 | 409 | delayed-stream@~1.0.0: 410 | version "1.0.0" 411 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 412 | 413 | delegates@^1.0.0: 414 | version "1.0.0" 415 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 416 | 417 | depd@1.1.0, depd@~1.1.0: 418 | version "1.1.0" 419 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3" 420 | 421 | destroy@~1.0.4: 422 | version "1.0.4" 423 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 424 | 425 | doctrine@^1.2.2: 426 | version "1.5.0" 427 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 428 | dependencies: 429 | esutils "^2.0.2" 430 | isarray "^1.0.0" 431 | 432 | duplexer@~0.1.1: 433 | version "0.1.1" 434 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 435 | 436 | duplexify@^3.2.0: 437 | version "3.5.0" 438 | resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.5.0.tgz#1aa773002e1578457e9d9d4a50b0ccaaebcbd604" 439 | dependencies: 440 | end-of-stream "1.0.0" 441 | inherits "^2.0.1" 442 | readable-stream "^2.0.0" 443 | stream-shift "^1.0.0" 444 | 445 | ecc-jsbn@~0.1.1: 446 | version "0.1.1" 447 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 448 | dependencies: 449 | jsbn "~0.1.0" 450 | 451 | ee-first@1.1.1: 452 | version "1.1.1" 453 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 454 | 455 | encodeurl@~1.0.1: 456 | version "1.0.1" 457 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" 458 | 459 | encoding@^0.1.11: 460 | version "0.1.12" 461 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 462 | dependencies: 463 | iconv-lite "~0.4.13" 464 | 465 | end-of-stream@1.0.0: 466 | version "1.0.0" 467 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.0.0.tgz#d4596e702734a93e40e9af864319eabd99ff2f0e" 468 | dependencies: 469 | once "~1.3.0" 470 | 471 | es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14: 472 | version "0.10.15" 473 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.15.tgz#c330a5934c1ee21284a7c081a86e5fd937c91ea6" 474 | dependencies: 475 | es6-iterator "2" 476 | es6-symbol "~3.1" 477 | 478 | es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1: 479 | version "2.0.1" 480 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512" 481 | dependencies: 482 | d "1" 483 | es5-ext "^0.10.14" 484 | es6-symbol "^3.1" 485 | 486 | es6-map@^0.1.3: 487 | version "0.1.5" 488 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 489 | dependencies: 490 | d "1" 491 | es5-ext "~0.10.14" 492 | es6-iterator "~2.0.1" 493 | es6-set "~0.1.5" 494 | es6-symbol "~3.1.1" 495 | event-emitter "~0.3.5" 496 | 497 | es6-promise@3.2.1: 498 | version "3.2.1" 499 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-3.2.1.tgz#ec56233868032909207170c39448e24449dd1fc4" 500 | 501 | es6-promise@^3.0.2: 502 | version "3.3.1" 503 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-3.3.1.tgz#a08cdde84ccdbf34d027a1451bc91d4bcd28a613" 504 | 505 | es6-set@~0.1.5: 506 | version "0.1.5" 507 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 508 | dependencies: 509 | d "1" 510 | es5-ext "~0.10.14" 511 | es6-iterator "~2.0.1" 512 | es6-symbol "3.1.1" 513 | event-emitter "~0.3.5" 514 | 515 | es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1: 516 | version "3.1.1" 517 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 518 | dependencies: 519 | d "1" 520 | es5-ext "~0.10.14" 521 | 522 | es6-weak-map@^2.0.1: 523 | version "2.0.2" 524 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 525 | dependencies: 526 | d "1" 527 | es5-ext "^0.10.14" 528 | es6-iterator "^2.0.1" 529 | es6-symbol "^3.1.1" 530 | 531 | escape-html@~1.0.3: 532 | version "1.0.3" 533 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 534 | 535 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 536 | version "1.0.5" 537 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 538 | 539 | escope@^3.6.0: 540 | version "3.6.0" 541 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 542 | dependencies: 543 | es6-map "^0.1.3" 544 | es6-weak-map "^2.0.1" 545 | esrecurse "^4.1.0" 546 | estraverse "^4.1.1" 547 | 548 | eslint-config-standard-jsx@3.2.0: 549 | version "3.2.0" 550 | resolved "https://registry.yarnpkg.com/eslint-config-standard-jsx/-/eslint-config-standard-jsx-3.2.0.tgz#c240e26ed919a11a42aa4de8059472b38268d620" 551 | 552 | eslint-config-standard@6.2.1: 553 | version "6.2.1" 554 | resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-6.2.1.tgz#d3a68aafc7191639e7ee441e7348739026354292" 555 | 556 | eslint-plugin-promise@~3.4.0: 557 | version "3.4.2" 558 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.4.2.tgz#1be2793eafe2d18b5b123b8136c269f804fe7122" 559 | 560 | eslint-plugin-react@~6.7.1: 561 | version "6.7.1" 562 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-6.7.1.tgz#1af96aea545856825157d97c1b50d5a8fb64a5a7" 563 | dependencies: 564 | doctrine "^1.2.2" 565 | jsx-ast-utils "^1.3.3" 566 | 567 | eslint-plugin-standard@~2.0.1: 568 | version "2.0.1" 569 | resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-2.0.1.tgz#3589699ff9c917f2c25f76a916687f641c369ff3" 570 | 571 | eslint@~3.10.2: 572 | version "3.10.2" 573 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.10.2.tgz#c9a10e8bf6e9d65651204778c503341f1eac3ce7" 574 | dependencies: 575 | babel-code-frame "^6.16.0" 576 | chalk "^1.1.3" 577 | concat-stream "^1.4.6" 578 | debug "^2.1.1" 579 | doctrine "^1.2.2" 580 | escope "^3.6.0" 581 | espree "^3.3.1" 582 | estraverse "^4.2.0" 583 | esutils "^2.0.2" 584 | file-entry-cache "^2.0.0" 585 | glob "^7.0.3" 586 | globals "^9.2.0" 587 | ignore "^3.2.0" 588 | imurmurhash "^0.1.4" 589 | inquirer "^0.12.0" 590 | is-my-json-valid "^2.10.0" 591 | is-resolvable "^1.0.0" 592 | js-yaml "^3.5.1" 593 | json-stable-stringify "^1.0.0" 594 | levn "^0.3.0" 595 | lodash "^4.0.0" 596 | mkdirp "^0.5.0" 597 | natural-compare "^1.4.0" 598 | optionator "^0.8.2" 599 | path-is-inside "^1.0.1" 600 | pluralize "^1.2.1" 601 | progress "^1.1.8" 602 | require-uncached "^1.0.2" 603 | shelljs "^0.7.5" 604 | strip-bom "^3.0.0" 605 | strip-json-comments "~1.0.1" 606 | table "^3.7.8" 607 | text-table "~0.2.0" 608 | user-home "^2.0.0" 609 | 610 | espree@^3.3.1: 611 | version "3.4.0" 612 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.0.tgz#41656fa5628e042878025ef467e78f125cb86e1d" 613 | dependencies: 614 | acorn "4.0.4" 615 | acorn-jsx "^3.0.0" 616 | 617 | esprima@^3.1.1: 618 | version "3.1.3" 619 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 620 | 621 | esrecurse@^4.1.0: 622 | version "4.1.0" 623 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 624 | dependencies: 625 | estraverse "~4.1.0" 626 | object-assign "^4.0.1" 627 | 628 | estraverse@^4.1.1, estraverse@^4.2.0: 629 | version "4.2.0" 630 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 631 | 632 | estraverse@~4.1.0: 633 | version "4.1.1" 634 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 635 | 636 | esutils@^2.0.2: 637 | version "2.0.2" 638 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 639 | 640 | etag@~1.8.0: 641 | version "1.8.0" 642 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.0.tgz#6f631aef336d6c46362b51764044ce216be3c051" 643 | 644 | event-emitter@~0.3.5: 645 | version "0.3.5" 646 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 647 | dependencies: 648 | d "1" 649 | es5-ext "~0.10.14" 650 | 651 | event-stream@~3.3.0: 652 | version "3.3.4" 653 | resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" 654 | dependencies: 655 | duplexer "~0.1.1" 656 | from "~0" 657 | map-stream "~0.1.0" 658 | pause-stream "0.0.11" 659 | split "0.3" 660 | stream-combiner "~0.0.4" 661 | through "~2.3.1" 662 | 663 | exit-hook@^1.0.0: 664 | version "1.1.1" 665 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 666 | 667 | expand-brackets@^0.1.4: 668 | version "0.1.5" 669 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 670 | dependencies: 671 | is-posix-bracket "^0.1.0" 672 | 673 | expand-range@^1.8.1: 674 | version "1.8.2" 675 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 676 | dependencies: 677 | fill-range "^2.1.0" 678 | 679 | express-graphql@^0.6.1: 680 | version "0.6.3" 681 | resolved "https://registry.yarnpkg.com/express-graphql/-/express-graphql-0.6.3.tgz#7ad3233b0267de8ba1e4d0b222f6793ed7ae9e8e" 682 | dependencies: 683 | accepts "^1.3.0" 684 | content-type "^1.0.2" 685 | http-errors "^1.3.0" 686 | raw-body "^2.1.0" 687 | 688 | express-session@^1.14.2: 689 | version "1.15.1" 690 | resolved "https://registry.yarnpkg.com/express-session/-/express-session-1.15.1.tgz#9abba15971beea7ad98da5a4d25ed92ba4a2984e" 691 | dependencies: 692 | cookie "0.3.1" 693 | cookie-signature "1.0.6" 694 | crc "3.4.4" 695 | debug "2.6.1" 696 | depd "~1.1.0" 697 | on-headers "~1.0.1" 698 | parseurl "~1.3.1" 699 | uid-safe "~2.1.3" 700 | utils-merge "1.0.0" 701 | 702 | express@^4.14.0: 703 | version "4.15.2" 704 | resolved "https://registry.yarnpkg.com/express/-/express-4.15.2.tgz#af107fc148504457f2dca9a6f2571d7129b97b35" 705 | dependencies: 706 | accepts "~1.3.3" 707 | array-flatten "1.1.1" 708 | content-disposition "0.5.2" 709 | content-type "~1.0.2" 710 | cookie "0.3.1" 711 | cookie-signature "1.0.6" 712 | debug "2.6.1" 713 | depd "~1.1.0" 714 | encodeurl "~1.0.1" 715 | escape-html "~1.0.3" 716 | etag "~1.8.0" 717 | finalhandler "~1.0.0" 718 | fresh "0.5.0" 719 | merge-descriptors "1.0.1" 720 | methods "~1.1.2" 721 | on-finished "~2.3.0" 722 | parseurl "~1.3.1" 723 | path-to-regexp "0.1.7" 724 | proxy-addr "~1.1.3" 725 | qs "6.4.0" 726 | range-parser "~1.2.0" 727 | send "0.15.1" 728 | serve-static "1.12.1" 729 | setprototypeof "1.0.3" 730 | statuses "~1.3.1" 731 | type-is "~1.6.14" 732 | utils-merge "1.0.0" 733 | vary "~1.1.0" 734 | 735 | extend@3, extend@~3.0.0: 736 | version "3.0.0" 737 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 738 | 739 | extglob@^0.3.1: 740 | version "0.3.2" 741 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 742 | dependencies: 743 | is-extglob "^1.0.0" 744 | 745 | extsprintf@1.0.2: 746 | version "1.0.2" 747 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 748 | 749 | fast-levenshtein@~2.0.4: 750 | version "2.0.6" 751 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 752 | 753 | figures@^1.3.5: 754 | version "1.7.0" 755 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 756 | dependencies: 757 | escape-string-regexp "^1.0.5" 758 | object-assign "^4.1.0" 759 | 760 | file-entry-cache@^2.0.0: 761 | version "2.0.0" 762 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 763 | dependencies: 764 | flat-cache "^1.2.1" 765 | object-assign "^4.0.1" 766 | 767 | filename-regex@^2.0.0: 768 | version "2.0.0" 769 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 770 | 771 | fill-range@^2.1.0: 772 | version "2.2.3" 773 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 774 | dependencies: 775 | is-number "^2.1.0" 776 | isobject "^2.0.0" 777 | randomatic "^1.1.3" 778 | repeat-element "^1.1.2" 779 | repeat-string "^1.5.2" 780 | 781 | finalhandler@~1.0.0: 782 | version "1.0.0" 783 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.0.0.tgz#b5691c2c0912092f18ac23e9416bde5cd7dc6755" 784 | dependencies: 785 | debug "2.6.1" 786 | encodeurl "~1.0.1" 787 | escape-html "~1.0.3" 788 | on-finished "~2.3.0" 789 | parseurl "~1.3.1" 790 | statuses "~1.3.1" 791 | unpipe "~1.0.0" 792 | 793 | find-root@^1.0.0: 794 | version "1.0.0" 795 | resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.0.0.tgz#962ff211aab25c6520feeeb8d6287f8f6e95807a" 796 | 797 | flat-cache@^1.2.1: 798 | version "1.2.2" 799 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 800 | dependencies: 801 | circular-json "^0.3.1" 802 | del "^2.0.2" 803 | graceful-fs "^4.1.2" 804 | write "^0.2.1" 805 | 806 | follow-redirects@0.0.7: 807 | version "0.0.7" 808 | resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-0.0.7.tgz#34b90bab2a911aa347571da90f22bd36ecd8a919" 809 | dependencies: 810 | debug "^2.2.0" 811 | stream-consume "^0.1.0" 812 | 813 | for-in@^1.0.1: 814 | version "1.0.2" 815 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 816 | 817 | for-own@^0.1.4: 818 | version "0.1.5" 819 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 820 | dependencies: 821 | for-in "^1.0.1" 822 | 823 | forever-agent@~0.6.1: 824 | version "0.6.1" 825 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 826 | 827 | form-data@~2.1.1: 828 | version "2.1.2" 829 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 830 | dependencies: 831 | asynckit "^0.4.0" 832 | combined-stream "^1.0.5" 833 | mime-types "^2.1.12" 834 | 835 | forwarded@~0.1.0: 836 | version "0.1.0" 837 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.0.tgz#19ef9874c4ae1c297bcf078fde63a09b66a84363" 838 | 839 | fresh@0.5.0: 840 | version "0.5.0" 841 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.0.tgz#f474ca5e6a9246d6fd8e0953cfa9b9c805afa78e" 842 | 843 | from@~0: 844 | version "0.1.7" 845 | resolved "https://registry.yarnpkg.com/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" 846 | 847 | fs.realpath@^1.0.0: 848 | version "1.0.0" 849 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 850 | 851 | fsevents@^1.0.0: 852 | version "1.1.1" 853 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" 854 | dependencies: 855 | nan "^2.3.0" 856 | node-pre-gyp "^0.6.29" 857 | 858 | fstream-ignore@^1.0.5: 859 | version "1.0.5" 860 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 861 | dependencies: 862 | fstream "^1.0.0" 863 | inherits "2" 864 | minimatch "^3.0.0" 865 | 866 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 867 | version "1.0.11" 868 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 869 | dependencies: 870 | graceful-fs "^4.1.2" 871 | inherits "~2.0.0" 872 | mkdirp ">=0.5 0" 873 | rimraf "2" 874 | 875 | gauge@~2.7.1: 876 | version "2.7.3" 877 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.3.tgz#1c23855f962f17b3ad3d0dc7443f304542edfe09" 878 | dependencies: 879 | aproba "^1.0.3" 880 | console-control-strings "^1.0.0" 881 | has-unicode "^2.0.0" 882 | object-assign "^4.1.0" 883 | signal-exit "^3.0.0" 884 | string-width "^1.0.1" 885 | strip-ansi "^3.0.1" 886 | wide-align "^1.1.0" 887 | 888 | generate-function@^2.0.0: 889 | version "2.0.0" 890 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 891 | 892 | generate-object-property@^1.1.0: 893 | version "1.2.0" 894 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 895 | dependencies: 896 | is-property "^1.0.0" 897 | 898 | get-stdin@^5.0.1: 899 | version "5.0.1" 900 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 901 | 902 | getpass@^0.1.1: 903 | version "0.1.6" 904 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 905 | dependencies: 906 | assert-plus "^1.0.0" 907 | 908 | github@^8.1.1: 909 | version "8.2.1" 910 | resolved "https://registry.yarnpkg.com/github/-/github-8.2.1.tgz#616b2211fbcd1cc8631669aed67653e62eb53816" 911 | dependencies: 912 | follow-redirects "0.0.7" 913 | https-proxy-agent "^1.0.0" 914 | mime "^1.2.11" 915 | netrc "^0.1.4" 916 | 917 | glob-base@^0.3.0: 918 | version "0.3.0" 919 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 920 | dependencies: 921 | glob-parent "^2.0.0" 922 | is-glob "^2.0.0" 923 | 924 | glob-parent@^2.0.0: 925 | version "2.0.0" 926 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 927 | dependencies: 928 | is-glob "^2.0.0" 929 | 930 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5: 931 | version "7.1.1" 932 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 933 | dependencies: 934 | fs.realpath "^1.0.0" 935 | inflight "^1.0.4" 936 | inherits "2" 937 | minimatch "^3.0.2" 938 | once "^1.3.0" 939 | path-is-absolute "^1.0.0" 940 | 941 | globals@^9.2.0: 942 | version "9.16.0" 943 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.16.0.tgz#63e903658171ec2d9f51b1d31de5e2b8dc01fb80" 944 | 945 | globby@^5.0.0: 946 | version "5.0.0" 947 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 948 | dependencies: 949 | array-union "^1.0.1" 950 | arrify "^1.0.0" 951 | glob "^7.0.3" 952 | object-assign "^4.0.1" 953 | pify "^2.0.0" 954 | pinkie-promise "^2.0.0" 955 | 956 | got@^3.2.0: 957 | version "3.3.1" 958 | resolved "https://registry.yarnpkg.com/got/-/got-3.3.1.tgz#e5d0ed4af55fc3eef4d56007769d98192bcb2eca" 959 | dependencies: 960 | duplexify "^3.2.0" 961 | infinity-agent "^2.0.0" 962 | is-redirect "^1.0.0" 963 | is-stream "^1.0.0" 964 | lowercase-keys "^1.0.0" 965 | nested-error-stacks "^1.0.0" 966 | object-assign "^3.0.0" 967 | prepend-http "^1.0.0" 968 | read-all-stream "^3.0.0" 969 | timed-out "^2.0.0" 970 | 971 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 972 | version "4.1.11" 973 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 974 | 975 | graphql@^0.8.2: 976 | version "0.8.2" 977 | resolved "https://registry.yarnpkg.com/graphql/-/graphql-0.8.2.tgz#eb1bb524b38104bbf2c9157f9abc67db2feba7d2" 978 | dependencies: 979 | iterall "1.0.2" 980 | 981 | har-schema@^1.0.5: 982 | version "1.0.5" 983 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 984 | 985 | har-validator@~4.2.1: 986 | version "4.2.1" 987 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 988 | dependencies: 989 | ajv "^4.9.1" 990 | har-schema "^1.0.5" 991 | 992 | has-ansi@^2.0.0: 993 | version "2.0.0" 994 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 995 | dependencies: 996 | ansi-regex "^2.0.0" 997 | 998 | has-unicode@^2.0.0: 999 | version "2.0.1" 1000 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1001 | 1002 | hawk@~3.1.3: 1003 | version "3.1.3" 1004 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1005 | dependencies: 1006 | boom "2.x.x" 1007 | cryptiles "2.x.x" 1008 | hoek "2.x.x" 1009 | sntp "1.x.x" 1010 | 1011 | hoek@2.x.x: 1012 | version "2.16.3" 1013 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1014 | 1015 | home-or-tmp@^2.0.0: 1016 | version "2.0.0" 1017 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1018 | dependencies: 1019 | os-homedir "^1.0.0" 1020 | os-tmpdir "^1.0.1" 1021 | 1022 | http-errors@^1.3.0, http-errors@~1.6.1: 1023 | version "1.6.1" 1024 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.1.tgz#5f8b8ed98aca545656bf572997387f904a722257" 1025 | dependencies: 1026 | depd "1.1.0" 1027 | inherits "2.0.3" 1028 | setprototypeof "1.0.3" 1029 | statuses ">= 1.3.1 < 2" 1030 | 1031 | http-signature@~1.1.0: 1032 | version "1.1.1" 1033 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1034 | dependencies: 1035 | assert-plus "^0.2.0" 1036 | jsprim "^1.2.2" 1037 | sshpk "^1.7.0" 1038 | 1039 | https-proxy-agent@^1.0.0: 1040 | version "1.0.0" 1041 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-1.0.0.tgz#35f7da6c48ce4ddbfa264891ac593ee5ff8671e6" 1042 | dependencies: 1043 | agent-base "2" 1044 | debug "2" 1045 | extend "3" 1046 | 1047 | iconv-lite@0.4.15, iconv-lite@~0.4.13: 1048 | version "0.4.15" 1049 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.15.tgz#fe265a218ac6a57cfe854927e9d04c19825eddeb" 1050 | 1051 | ignore-by-default@^1.0.0: 1052 | version "1.0.1" 1053 | resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" 1054 | 1055 | ignore@^3.0.9, ignore@^3.2.0: 1056 | version "3.2.6" 1057 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.6.tgz#26e8da0644be0bb4cb39516f6c79f0e0f4ffe48c" 1058 | 1059 | imurmurhash@^0.1.4: 1060 | version "0.1.4" 1061 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1062 | 1063 | infinity-agent@^2.0.0: 1064 | version "2.0.3" 1065 | resolved "https://registry.yarnpkg.com/infinity-agent/-/infinity-agent-2.0.3.tgz#45e0e2ff7a9eb030b27d62b74b3744b7a7ac4216" 1066 | 1067 | inflight@^1.0.4: 1068 | version "1.0.6" 1069 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1070 | dependencies: 1071 | once "^1.3.0" 1072 | wrappy "1" 1073 | 1074 | inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1: 1075 | version "2.0.3" 1076 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1077 | 1078 | ini@~1.3.0: 1079 | version "1.3.4" 1080 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1081 | 1082 | inquirer@^0.12.0: 1083 | version "0.12.0" 1084 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 1085 | dependencies: 1086 | ansi-escapes "^1.1.0" 1087 | ansi-regex "^2.0.0" 1088 | chalk "^1.0.0" 1089 | cli-cursor "^1.0.1" 1090 | cli-width "^2.0.0" 1091 | figures "^1.3.5" 1092 | lodash "^4.3.0" 1093 | readline2 "^1.0.1" 1094 | run-async "^0.1.0" 1095 | rx-lite "^3.1.2" 1096 | string-width "^1.0.1" 1097 | strip-ansi "^3.0.0" 1098 | through "^2.3.6" 1099 | 1100 | interpret@^1.0.0: 1101 | version "1.0.1" 1102 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.1.tgz#d579fb7f693b858004947af39fa0db49f795602c" 1103 | 1104 | ipaddr.js@1.2.0: 1105 | version "1.2.0" 1106 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.2.0.tgz#8aba49c9192799585bdd643e0ccb50e8ae777ba4" 1107 | 1108 | is-binary-path@^1.0.0: 1109 | version "1.0.1" 1110 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1111 | dependencies: 1112 | binary-extensions "^1.0.0" 1113 | 1114 | is-buffer@^1.0.2: 1115 | version "1.1.5" 1116 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1117 | 1118 | is-dotfile@^1.0.0: 1119 | version "1.0.2" 1120 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1121 | 1122 | is-equal-shallow@^0.1.3: 1123 | version "0.1.3" 1124 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1125 | dependencies: 1126 | is-primitive "^2.0.0" 1127 | 1128 | is-extendable@^0.1.1: 1129 | version "0.1.1" 1130 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1131 | 1132 | is-extglob@^1.0.0: 1133 | version "1.0.0" 1134 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1135 | 1136 | is-finite@^1.0.0: 1137 | version "1.0.2" 1138 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1139 | dependencies: 1140 | number-is-nan "^1.0.0" 1141 | 1142 | is-fullwidth-code-point@^1.0.0: 1143 | version "1.0.0" 1144 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1145 | dependencies: 1146 | number-is-nan "^1.0.0" 1147 | 1148 | is-fullwidth-code-point@^2.0.0: 1149 | version "2.0.0" 1150 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1151 | 1152 | is-glob@^2.0.0, is-glob@^2.0.1: 1153 | version "2.0.1" 1154 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1155 | dependencies: 1156 | is-extglob "^1.0.0" 1157 | 1158 | is-my-json-valid@^2.10.0: 1159 | version "2.16.0" 1160 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" 1161 | dependencies: 1162 | generate-function "^2.0.0" 1163 | generate-object-property "^1.1.0" 1164 | jsonpointer "^4.0.0" 1165 | xtend "^4.0.0" 1166 | 1167 | is-npm@^1.0.0: 1168 | version "1.0.0" 1169 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 1170 | 1171 | is-number@^2.0.2, is-number@^2.1.0: 1172 | version "2.1.0" 1173 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1174 | dependencies: 1175 | kind-of "^3.0.2" 1176 | 1177 | is-path-cwd@^1.0.0: 1178 | version "1.0.0" 1179 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1180 | 1181 | is-path-in-cwd@^1.0.0: 1182 | version "1.0.0" 1183 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1184 | dependencies: 1185 | is-path-inside "^1.0.0" 1186 | 1187 | is-path-inside@^1.0.0: 1188 | version "1.0.0" 1189 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1190 | dependencies: 1191 | path-is-inside "^1.0.1" 1192 | 1193 | is-posix-bracket@^0.1.0: 1194 | version "0.1.1" 1195 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1196 | 1197 | is-primitive@^2.0.0: 1198 | version "2.0.0" 1199 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1200 | 1201 | is-property@^1.0.0: 1202 | version "1.0.2" 1203 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1204 | 1205 | is-redirect@^1.0.0: 1206 | version "1.0.0" 1207 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 1208 | 1209 | is-resolvable@^1.0.0: 1210 | version "1.0.0" 1211 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 1212 | dependencies: 1213 | tryit "^1.0.1" 1214 | 1215 | is-stream@^1.0.0, is-stream@^1.0.1: 1216 | version "1.1.0" 1217 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1218 | 1219 | is-typedarray@~1.0.0: 1220 | version "1.0.0" 1221 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1222 | 1223 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1224 | version "1.0.0" 1225 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1226 | 1227 | isobject@^2.0.0: 1228 | version "2.1.0" 1229 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1230 | dependencies: 1231 | isarray "1.0.0" 1232 | 1233 | isstream@~0.1.2: 1234 | version "0.1.2" 1235 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1236 | 1237 | iterall@1.0.2: 1238 | version "1.0.2" 1239 | resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.0.2.tgz#41a2e96ce9eda5e61c767ee5dc312373bb046e91" 1240 | 1241 | jodid25519@^1.0.0: 1242 | version "1.0.2" 1243 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 1244 | dependencies: 1245 | jsbn "~0.1.0" 1246 | 1247 | js-tokens@^3.0.0: 1248 | version "3.0.1" 1249 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 1250 | 1251 | js-yaml@^3.5.1: 1252 | version "3.8.2" 1253 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.2.tgz#02d3e2c0f6beab20248d412c352203827d786721" 1254 | dependencies: 1255 | argparse "^1.0.7" 1256 | esprima "^3.1.1" 1257 | 1258 | jsbn@~0.1.0: 1259 | version "0.1.1" 1260 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1261 | 1262 | json-schema@0.2.3: 1263 | version "0.2.3" 1264 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1265 | 1266 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 1267 | version "1.0.1" 1268 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1269 | dependencies: 1270 | jsonify "~0.0.0" 1271 | 1272 | json-stringify-safe@~5.0.1: 1273 | version "5.0.1" 1274 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1275 | 1276 | jsonify@~0.0.0: 1277 | version "0.0.0" 1278 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1279 | 1280 | jsonpointer@^4.0.0: 1281 | version "4.0.1" 1282 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 1283 | 1284 | jsprim@^1.2.2: 1285 | version "1.4.0" 1286 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 1287 | dependencies: 1288 | assert-plus "1.0.0" 1289 | extsprintf "1.0.2" 1290 | json-schema "0.2.3" 1291 | verror "1.3.6" 1292 | 1293 | jsx-ast-utils@^1.3.3: 1294 | version "1.4.0" 1295 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.4.0.tgz#5afe38868f56bc8cc7aeaef0100ba8c75bd12591" 1296 | dependencies: 1297 | object-assign "^4.1.0" 1298 | 1299 | kind-of@^3.0.2: 1300 | version "3.1.0" 1301 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 1302 | dependencies: 1303 | is-buffer "^1.0.2" 1304 | 1305 | latest-version@^1.0.0: 1306 | version "1.0.1" 1307 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-1.0.1.tgz#72cfc46e3e8d1be651e1ebb54ea9f6ea96f374bb" 1308 | dependencies: 1309 | package-json "^1.0.0" 1310 | 1311 | levn@^0.3.0, levn@~0.3.0: 1312 | version "0.3.0" 1313 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1314 | dependencies: 1315 | prelude-ls "~1.1.2" 1316 | type-check "~0.3.2" 1317 | 1318 | lodash._baseassign@^3.0.0: 1319 | version "3.2.0" 1320 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 1321 | dependencies: 1322 | lodash._basecopy "^3.0.0" 1323 | lodash.keys "^3.0.0" 1324 | 1325 | lodash._basecopy@^3.0.0: 1326 | version "3.0.1" 1327 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1328 | 1329 | lodash._bindcallback@^3.0.0: 1330 | version "3.0.1" 1331 | resolved "https://registry.yarnpkg.com/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e" 1332 | 1333 | lodash._createassigner@^3.0.0: 1334 | version "3.1.1" 1335 | resolved "https://registry.yarnpkg.com/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz#838a5bae2fdaca63ac22dee8e19fa4e6d6970b11" 1336 | dependencies: 1337 | lodash._bindcallback "^3.0.0" 1338 | lodash._isiterateecall "^3.0.0" 1339 | lodash.restparam "^3.0.0" 1340 | 1341 | lodash._getnative@^3.0.0: 1342 | version "3.9.1" 1343 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1344 | 1345 | lodash._isiterateecall@^3.0.0: 1346 | version "3.0.9" 1347 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 1348 | 1349 | lodash.assign@^3.0.0: 1350 | version "3.2.0" 1351 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-3.2.0.tgz#3ce9f0234b4b2223e296b8fa0ac1fee8ebca64fa" 1352 | dependencies: 1353 | lodash._baseassign "^3.0.0" 1354 | lodash._createassigner "^3.0.0" 1355 | lodash.keys "^3.0.0" 1356 | 1357 | lodash.defaults@^3.1.2: 1358 | version "3.1.2" 1359 | resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-3.1.2.tgz#c7308b18dbf8bc9372d701a73493c61192bd2e2c" 1360 | dependencies: 1361 | lodash.assign "^3.0.0" 1362 | lodash.restparam "^3.0.0" 1363 | 1364 | lodash.isarguments@^3.0.0: 1365 | version "3.1.0" 1366 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 1367 | 1368 | lodash.isarray@^3.0.0: 1369 | version "3.0.4" 1370 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 1371 | 1372 | lodash.keys@^3.0.0: 1373 | version "3.1.2" 1374 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 1375 | dependencies: 1376 | lodash._getnative "^3.0.0" 1377 | lodash.isarguments "^3.0.0" 1378 | lodash.isarray "^3.0.0" 1379 | 1380 | lodash.restparam@^3.0.0: 1381 | version "3.6.1" 1382 | resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" 1383 | 1384 | lodash@^4.0.0, lodash@^4.3.0: 1385 | version "4.17.4" 1386 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1387 | 1388 | lowercase-keys@^1.0.0: 1389 | version "1.0.0" 1390 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 1391 | 1392 | map-stream@~0.1.0: 1393 | version "0.1.0" 1394 | resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" 1395 | 1396 | media-typer@0.3.0: 1397 | version "0.3.0" 1398 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 1399 | 1400 | merge-descriptors@1.0.1: 1401 | version "1.0.1" 1402 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 1403 | 1404 | methods@~1.1.2: 1405 | version "1.1.2" 1406 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 1407 | 1408 | micromatch@^2.1.5: 1409 | version "2.3.11" 1410 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1411 | dependencies: 1412 | arr-diff "^2.0.0" 1413 | array-unique "^0.2.1" 1414 | braces "^1.8.2" 1415 | expand-brackets "^0.1.4" 1416 | extglob "^0.3.1" 1417 | filename-regex "^2.0.0" 1418 | is-extglob "^1.0.0" 1419 | is-glob "^2.0.1" 1420 | kind-of "^3.0.2" 1421 | normalize-path "^2.0.1" 1422 | object.omit "^2.0.0" 1423 | parse-glob "^3.0.4" 1424 | regex-cache "^0.4.2" 1425 | 1426 | mime-db@~1.26.0: 1427 | version "1.26.0" 1428 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.26.0.tgz#eaffcd0e4fc6935cf8134da246e2e6c35305adff" 1429 | 1430 | mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.13, mime-types@~2.1.7: 1431 | version "2.1.14" 1432 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.14.tgz#f7ef7d97583fcaf3b7d282b6f8b5679dab1e94ee" 1433 | dependencies: 1434 | mime-db "~1.26.0" 1435 | 1436 | mime@1.3.4, mime@^1.2.11: 1437 | version "1.3.4" 1438 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" 1439 | 1440 | minimatch@^3.0.0, minimatch@^3.0.2: 1441 | version "3.0.3" 1442 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 1443 | dependencies: 1444 | brace-expansion "^1.0.0" 1445 | 1446 | minimist@0.0.8: 1447 | version "0.0.8" 1448 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1449 | 1450 | minimist@^1.1.0, minimist@^1.2.0: 1451 | version "1.2.0" 1452 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1453 | 1454 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1: 1455 | version "0.5.1" 1456 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1457 | dependencies: 1458 | minimist "0.0.8" 1459 | 1460 | mongodb-core@2.1.9: 1461 | version "2.1.9" 1462 | resolved "https://registry.yarnpkg.com/mongodb-core/-/mongodb-core-2.1.9.tgz#85aa71ee4fb716196e06b787557bf139f801daf5" 1463 | dependencies: 1464 | bson "~1.0.4" 1465 | require_optional "~1.0.0" 1466 | 1467 | mongodb@^2.2.21, mongodb@~2.2.0: 1468 | version "2.2.25" 1469 | resolved "https://registry.yarnpkg.com/mongodb/-/mongodb-2.2.25.tgz#d3b25dad00eda2bdfcbc996210ba082ac686a6b6" 1470 | dependencies: 1471 | es6-promise "3.2.1" 1472 | mongodb-core "2.1.9" 1473 | readable-stream "2.1.5" 1474 | 1475 | ms@0.7.2: 1476 | version "0.7.2" 1477 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 1478 | 1479 | mute-stream@0.0.5: 1480 | version "0.0.5" 1481 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 1482 | 1483 | nan@^2.3.0: 1484 | version "2.5.1" 1485 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.5.1.tgz#d5b01691253326a97a2bbee9e61c55d8d60351e2" 1486 | 1487 | natural-compare@^1.4.0: 1488 | version "1.4.0" 1489 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1490 | 1491 | negotiator@0.6.1: 1492 | version "0.6.1" 1493 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 1494 | 1495 | nested-error-stacks@^1.0.0: 1496 | version "1.0.2" 1497 | resolved "https://registry.yarnpkg.com/nested-error-stacks/-/nested-error-stacks-1.0.2.tgz#19f619591519f096769a5ba9a86e6eeec823c3cf" 1498 | dependencies: 1499 | inherits "~2.0.1" 1500 | 1501 | netrc@^0.1.4: 1502 | version "0.1.4" 1503 | resolved "https://registry.yarnpkg.com/netrc/-/netrc-0.1.4.tgz#6be94fcaca8d77ade0a9670dc460914c94472444" 1504 | 1505 | node-fetch@^1.6.3: 1506 | version "1.6.3" 1507 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.6.3.tgz#dc234edd6489982d58e8f0db4f695029abcd8c04" 1508 | dependencies: 1509 | encoding "^0.1.11" 1510 | is-stream "^1.0.1" 1511 | 1512 | node-pre-gyp@^0.6.29: 1513 | version "0.6.34" 1514 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.34.tgz#94ad1c798a11d7fc67381b50d47f8cc18d9799f7" 1515 | dependencies: 1516 | mkdirp "^0.5.1" 1517 | nopt "^4.0.1" 1518 | npmlog "^4.0.2" 1519 | rc "^1.1.7" 1520 | request "^2.81.0" 1521 | rimraf "^2.6.1" 1522 | semver "^5.3.0" 1523 | tar "^2.2.1" 1524 | tar-pack "^3.4.0" 1525 | 1526 | nodemon@^1.11.0: 1527 | version "1.11.0" 1528 | resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-1.11.0.tgz#226c562bd2a7b13d3d7518b49ad4828a3623d06c" 1529 | dependencies: 1530 | chokidar "^1.4.3" 1531 | debug "^2.2.0" 1532 | es6-promise "^3.0.2" 1533 | ignore-by-default "^1.0.0" 1534 | lodash.defaults "^3.1.2" 1535 | minimatch "^3.0.0" 1536 | ps-tree "^1.0.1" 1537 | touch "1.0.0" 1538 | undefsafe "0.0.3" 1539 | update-notifier "0.5.0" 1540 | 1541 | nopt@^4.0.1: 1542 | version "4.0.1" 1543 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1544 | dependencies: 1545 | abbrev "1" 1546 | osenv "^0.1.4" 1547 | 1548 | nopt@~1.0.10: 1549 | version "1.0.10" 1550 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee" 1551 | dependencies: 1552 | abbrev "1" 1553 | 1554 | normalize-path@^2.0.1: 1555 | version "2.0.1" 1556 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 1557 | 1558 | npmlog@^4.0.2: 1559 | version "4.0.2" 1560 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" 1561 | dependencies: 1562 | are-we-there-yet "~1.1.2" 1563 | console-control-strings "~1.1.0" 1564 | gauge "~2.7.1" 1565 | set-blocking "~2.0.0" 1566 | 1567 | number-is-nan@^1.0.0: 1568 | version "1.0.1" 1569 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1570 | 1571 | oauth-sign@~0.8.1: 1572 | version "0.8.2" 1573 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1574 | 1575 | oauth@0.9.x: 1576 | version "0.9.15" 1577 | resolved "https://registry.yarnpkg.com/oauth/-/oauth-0.9.15.tgz#bd1fefaf686c96b75475aed5196412ff60cfb9c1" 1578 | 1579 | object-assign@^3.0.0: 1580 | version "3.0.0" 1581 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2" 1582 | 1583 | object-assign@^4.0.1, object-assign@^4.1.0: 1584 | version "4.1.1" 1585 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1586 | 1587 | object.omit@^2.0.0: 1588 | version "2.0.1" 1589 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1590 | dependencies: 1591 | for-own "^0.1.4" 1592 | is-extendable "^0.1.1" 1593 | 1594 | on-finished@~2.3.0: 1595 | version "2.3.0" 1596 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 1597 | dependencies: 1598 | ee-first "1.1.1" 1599 | 1600 | on-headers@~1.0.1: 1601 | version "1.0.1" 1602 | resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7" 1603 | 1604 | once@^1.3.0, once@^1.3.3: 1605 | version "1.4.0" 1606 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1607 | dependencies: 1608 | wrappy "1" 1609 | 1610 | once@~1.3.0: 1611 | version "1.3.3" 1612 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 1613 | dependencies: 1614 | wrappy "1" 1615 | 1616 | onetime@^1.0.0: 1617 | version "1.1.0" 1618 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 1619 | 1620 | optionator@^0.8.2: 1621 | version "0.8.2" 1622 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1623 | dependencies: 1624 | deep-is "~0.1.3" 1625 | fast-levenshtein "~2.0.4" 1626 | levn "~0.3.0" 1627 | prelude-ls "~1.1.2" 1628 | type-check "~0.3.2" 1629 | wordwrap "~1.0.0" 1630 | 1631 | os-homedir@^1.0.0: 1632 | version "1.0.2" 1633 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1634 | 1635 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 1636 | version "1.0.2" 1637 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1638 | 1639 | osenv@^0.1.0, osenv@^0.1.4: 1640 | version "0.1.4" 1641 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 1642 | dependencies: 1643 | os-homedir "^1.0.0" 1644 | os-tmpdir "^1.0.0" 1645 | 1646 | package-json@^1.0.0: 1647 | version "1.2.0" 1648 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-1.2.0.tgz#c8ecac094227cdf76a316874ed05e27cc939a0e0" 1649 | dependencies: 1650 | got "^3.2.0" 1651 | registry-url "^3.0.0" 1652 | 1653 | parse-glob@^3.0.4: 1654 | version "3.0.4" 1655 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1656 | dependencies: 1657 | glob-base "^0.3.0" 1658 | is-dotfile "^1.0.0" 1659 | is-extglob "^1.0.0" 1660 | is-glob "^2.0.0" 1661 | 1662 | parseurl@~1.3.1: 1663 | version "1.3.1" 1664 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56" 1665 | 1666 | passport-github2@^0.1.10: 1667 | version "0.1.10" 1668 | resolved "https://registry.yarnpkg.com/passport-github2/-/passport-github2-0.1.10.tgz#50a21c1e95b83113e4da32c81c2c1a64429bb5bd" 1669 | dependencies: 1670 | passport-oauth2 "1.x.x" 1671 | 1672 | passport-oauth2@1.x.x: 1673 | version "1.4.0" 1674 | resolved "https://registry.yarnpkg.com/passport-oauth2/-/passport-oauth2-1.4.0.tgz#f62f81583cbe12609be7ce6f160b9395a27b86ad" 1675 | dependencies: 1676 | oauth "0.9.x" 1677 | passport-strategy "1.x.x" 1678 | uid2 "0.0.x" 1679 | utils-merge "1.x.x" 1680 | 1681 | passport-strategy@1.x.x: 1682 | version "1.0.0" 1683 | resolved "https://registry.yarnpkg.com/passport-strategy/-/passport-strategy-1.0.0.tgz#b5539aa8fc225a3d1ad179476ddf236b440f52e4" 1684 | 1685 | passport@^0.3.2: 1686 | version "0.3.2" 1687 | resolved "https://registry.yarnpkg.com/passport/-/passport-0.3.2.tgz#9dd009f915e8fe095b0124a01b8f82da07510102" 1688 | dependencies: 1689 | passport-strategy "1.x.x" 1690 | pause "0.0.1" 1691 | 1692 | path-is-absolute@^1.0.0: 1693 | version "1.0.1" 1694 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1695 | 1696 | path-is-inside@^1.0.1: 1697 | version "1.0.2" 1698 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 1699 | 1700 | path-parse@^1.0.5: 1701 | version "1.0.5" 1702 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 1703 | 1704 | path-to-regexp@0.1.7: 1705 | version "0.1.7" 1706 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" 1707 | 1708 | pause-stream@0.0.11: 1709 | version "0.0.11" 1710 | resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" 1711 | dependencies: 1712 | through "~2.3" 1713 | 1714 | pause@0.0.1: 1715 | version "0.0.1" 1716 | resolved "https://registry.yarnpkg.com/pause/-/pause-0.0.1.tgz#1d408b3fdb76923b9543d96fb4c9dfd535d9cb5d" 1717 | 1718 | performance-now@^0.2.0: 1719 | version "0.2.0" 1720 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1721 | 1722 | pify@^2.0.0: 1723 | version "2.3.0" 1724 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1725 | 1726 | pinkie-promise@^2.0.0: 1727 | version "2.0.1" 1728 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1729 | dependencies: 1730 | pinkie "^2.0.0" 1731 | 1732 | pinkie@^2.0.0: 1733 | version "2.0.4" 1734 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1735 | 1736 | pkg-config@^1.0.1, pkg-config@^1.1.0: 1737 | version "1.1.1" 1738 | resolved "https://registry.yarnpkg.com/pkg-config/-/pkg-config-1.1.1.tgz#557ef22d73da3c8837107766c52eadabde298fe4" 1739 | dependencies: 1740 | debug-log "^1.0.0" 1741 | find-root "^1.0.0" 1742 | xtend "^4.0.1" 1743 | 1744 | pluralize@^1.2.1: 1745 | version "1.2.1" 1746 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 1747 | 1748 | prelude-ls@~1.1.2: 1749 | version "1.1.2" 1750 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 1751 | 1752 | prepend-http@^1.0.0: 1753 | version "1.0.4" 1754 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 1755 | 1756 | preserve@^0.2.0: 1757 | version "0.2.0" 1758 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1759 | 1760 | process-nextick-args@~1.0.6: 1761 | version "1.0.7" 1762 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1763 | 1764 | progress@^1.1.8: 1765 | version "1.1.8" 1766 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 1767 | 1768 | proxy-addr@~1.1.3: 1769 | version "1.1.3" 1770 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-1.1.3.tgz#dc97502f5722e888467b3fa2297a7b1ff47df074" 1771 | dependencies: 1772 | forwarded "~0.1.0" 1773 | ipaddr.js "1.2.0" 1774 | 1775 | ps-tree@^1.0.1: 1776 | version "1.1.0" 1777 | resolved "https://registry.yarnpkg.com/ps-tree/-/ps-tree-1.1.0.tgz#b421b24140d6203f1ed3c76996b4427b08e8c014" 1778 | dependencies: 1779 | event-stream "~3.3.0" 1780 | 1781 | punycode@^1.4.1: 1782 | version "1.4.1" 1783 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1784 | 1785 | qs@6.4.0, qs@~6.4.0: 1786 | version "6.4.0" 1787 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 1788 | 1789 | random-bytes@~1.0.0: 1790 | version "1.0.0" 1791 | resolved "https://registry.yarnpkg.com/random-bytes/-/random-bytes-1.0.0.tgz#4f68a1dc0ae58bd3fb95848c30324db75d64360b" 1792 | 1793 | randomatic@^1.1.3: 1794 | version "1.1.6" 1795 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 1796 | dependencies: 1797 | is-number "^2.0.2" 1798 | kind-of "^3.0.2" 1799 | 1800 | range-parser@~1.2.0: 1801 | version "1.2.0" 1802 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" 1803 | 1804 | raw-body@^2.1.0: 1805 | version "2.2.0" 1806 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.2.0.tgz#994976cf6a5096a41162840492f0bdc5d6e7fb96" 1807 | dependencies: 1808 | bytes "2.4.0" 1809 | iconv-lite "0.4.15" 1810 | unpipe "1.0.0" 1811 | 1812 | rc@^1.0.1, rc@^1.1.7: 1813 | version "1.1.7" 1814 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.7.tgz#c5ea564bb07aff9fd3a5b32e906c1d3a65940fea" 1815 | dependencies: 1816 | deep-extend "~0.4.0" 1817 | ini "~1.3.0" 1818 | minimist "^1.2.0" 1819 | strip-json-comments "~2.0.1" 1820 | 1821 | read-all-stream@^3.0.0: 1822 | version "3.1.0" 1823 | resolved "https://registry.yarnpkg.com/read-all-stream/-/read-all-stream-3.1.0.tgz#35c3e177f2078ef789ee4bfafa4373074eaef4fa" 1824 | dependencies: 1825 | pinkie-promise "^2.0.0" 1826 | readable-stream "^2.0.0" 1827 | 1828 | readable-stream@2.1.5, readable-stream@^2.0.2: 1829 | version "2.1.5" 1830 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" 1831 | dependencies: 1832 | buffer-shims "^1.0.0" 1833 | core-util-is "~1.0.0" 1834 | inherits "~2.0.1" 1835 | isarray "~1.0.0" 1836 | process-nextick-args "~1.0.6" 1837 | string_decoder "~0.10.x" 1838 | util-deprecate "~1.0.1" 1839 | 1840 | readable-stream@^2.0.0, "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.1.4, readable-stream@^2.2.2: 1841 | version "2.2.6" 1842 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.6.tgz#8b43aed76e71483938d12a8d46c6cf1a00b1f816" 1843 | dependencies: 1844 | buffer-shims "^1.0.0" 1845 | core-util-is "~1.0.0" 1846 | inherits "~2.0.1" 1847 | isarray "~1.0.0" 1848 | process-nextick-args "~1.0.6" 1849 | string_decoder "~0.10.x" 1850 | util-deprecate "~1.0.1" 1851 | 1852 | readdirp@^2.0.0: 1853 | version "2.1.0" 1854 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 1855 | dependencies: 1856 | graceful-fs "^4.1.2" 1857 | minimatch "^3.0.2" 1858 | readable-stream "^2.0.2" 1859 | set-immediate-shim "^1.0.1" 1860 | 1861 | readline2@^1.0.1: 1862 | version "1.0.1" 1863 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 1864 | dependencies: 1865 | code-point-at "^1.0.0" 1866 | is-fullwidth-code-point "^1.0.0" 1867 | mute-stream "0.0.5" 1868 | 1869 | rechoir@^0.6.2: 1870 | version "0.6.2" 1871 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 1872 | dependencies: 1873 | resolve "^1.1.6" 1874 | 1875 | regex-cache@^0.4.2: 1876 | version "0.4.3" 1877 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 1878 | dependencies: 1879 | is-equal-shallow "^0.1.3" 1880 | is-primitive "^2.0.0" 1881 | 1882 | registry-url@^3.0.0: 1883 | version "3.1.0" 1884 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 1885 | dependencies: 1886 | rc "^1.0.1" 1887 | 1888 | repeat-element@^1.1.2: 1889 | version "1.1.2" 1890 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1891 | 1892 | repeat-string@^1.5.2: 1893 | version "1.6.1" 1894 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1895 | 1896 | repeating@^1.1.2: 1897 | version "1.1.3" 1898 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-1.1.3.tgz#3d4114218877537494f97f77f9785fab810fa4ac" 1899 | dependencies: 1900 | is-finite "^1.0.0" 1901 | 1902 | request@^2.81.0: 1903 | version "2.81.0" 1904 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 1905 | dependencies: 1906 | aws-sign2 "~0.6.0" 1907 | aws4 "^1.2.1" 1908 | caseless "~0.12.0" 1909 | combined-stream "~1.0.5" 1910 | extend "~3.0.0" 1911 | forever-agent "~0.6.1" 1912 | form-data "~2.1.1" 1913 | har-validator "~4.2.1" 1914 | hawk "~3.1.3" 1915 | http-signature "~1.1.0" 1916 | is-typedarray "~1.0.0" 1917 | isstream "~0.1.2" 1918 | json-stringify-safe "~5.0.1" 1919 | mime-types "~2.1.7" 1920 | oauth-sign "~0.8.1" 1921 | performance-now "^0.2.0" 1922 | qs "~6.4.0" 1923 | safe-buffer "^5.0.1" 1924 | stringstream "~0.0.4" 1925 | tough-cookie "~2.3.0" 1926 | tunnel-agent "^0.6.0" 1927 | uuid "^3.0.0" 1928 | 1929 | require-uncached@^1.0.2: 1930 | version "1.0.3" 1931 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 1932 | dependencies: 1933 | caller-path "^0.1.0" 1934 | resolve-from "^1.0.0" 1935 | 1936 | require_optional@~1.0.0: 1937 | version "1.0.0" 1938 | resolved "https://registry.yarnpkg.com/require_optional/-/require_optional-1.0.0.tgz#52a86137a849728eb60a55533617f8f914f59abf" 1939 | dependencies: 1940 | resolve-from "^2.0.0" 1941 | semver "^5.1.0" 1942 | 1943 | resolve-from@^1.0.0: 1944 | version "1.0.1" 1945 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 1946 | 1947 | resolve-from@^2.0.0: 1948 | version "2.0.0" 1949 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" 1950 | 1951 | resolve@^1.1.6: 1952 | version "1.3.2" 1953 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.2.tgz#1f0442c9e0cbb8136e87b9305f932f46c7f28235" 1954 | dependencies: 1955 | path-parse "^1.0.5" 1956 | 1957 | restore-cursor@^1.0.1: 1958 | version "1.0.1" 1959 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 1960 | dependencies: 1961 | exit-hook "^1.0.0" 1962 | onetime "^1.0.0" 1963 | 1964 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: 1965 | version "2.6.1" 1966 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 1967 | dependencies: 1968 | glob "^7.0.5" 1969 | 1970 | run-async@^0.1.0: 1971 | version "0.1.0" 1972 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 1973 | dependencies: 1974 | once "^1.3.0" 1975 | 1976 | run-parallel@^1.1.2: 1977 | version "1.1.6" 1978 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.6.tgz#29003c9a2163e01e2d2dfc90575f2c6c1d61a039" 1979 | 1980 | rx-lite@^3.1.2: 1981 | version "3.1.2" 1982 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 1983 | 1984 | safe-buffer@^5.0.1: 1985 | version "5.0.1" 1986 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 1987 | 1988 | semver-diff@^2.0.0: 1989 | version "2.1.0" 1990 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 1991 | dependencies: 1992 | semver "^5.0.3" 1993 | 1994 | semver@^5.0.3, semver@~5.0.1: 1995 | version "5.0.3" 1996 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.0.3.tgz#77466de589cd5d3c95f138aa78bc569a3cb5d27a" 1997 | 1998 | semver@^5.1.0, semver@^5.3.0: 1999 | version "5.3.0" 2000 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2001 | 2002 | send@0.15.1: 2003 | version "0.15.1" 2004 | resolved "https://registry.yarnpkg.com/send/-/send-0.15.1.tgz#8a02354c26e6f5cca700065f5f0cdeba90ec7b5f" 2005 | dependencies: 2006 | debug "2.6.1" 2007 | depd "~1.1.0" 2008 | destroy "~1.0.4" 2009 | encodeurl "~1.0.1" 2010 | escape-html "~1.0.3" 2011 | etag "~1.8.0" 2012 | fresh "0.5.0" 2013 | http-errors "~1.6.1" 2014 | mime "1.3.4" 2015 | ms "0.7.2" 2016 | on-finished "~2.3.0" 2017 | range-parser "~1.2.0" 2018 | statuses "~1.3.1" 2019 | 2020 | serve-static@1.12.1: 2021 | version "1.12.1" 2022 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.12.1.tgz#7443a965e3ced647aceb5639fa06bf4d1bbe0039" 2023 | dependencies: 2024 | encodeurl "~1.0.1" 2025 | escape-html "~1.0.3" 2026 | parseurl "~1.3.1" 2027 | send "0.15.1" 2028 | 2029 | set-blocking@~2.0.0: 2030 | version "2.0.0" 2031 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2032 | 2033 | set-immediate-shim@^1.0.1: 2034 | version "1.0.1" 2035 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2036 | 2037 | setprototypeof@1.0.3: 2038 | version "1.0.3" 2039 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04" 2040 | 2041 | shelljs@^0.7.5: 2042 | version "0.7.7" 2043 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.7.tgz#b2f5c77ef97148f4b4f6e22682e10bba8667cff1" 2044 | dependencies: 2045 | glob "^7.0.0" 2046 | interpret "^1.0.0" 2047 | rechoir "^0.6.2" 2048 | 2049 | signal-exit@^3.0.0: 2050 | version "3.0.2" 2051 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2052 | 2053 | slice-ansi@0.0.4: 2054 | version "0.0.4" 2055 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 2056 | 2057 | slide@^1.1.5: 2058 | version "1.1.6" 2059 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 2060 | 2061 | sntp@1.x.x: 2062 | version "1.0.9" 2063 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2064 | dependencies: 2065 | hoek "2.x.x" 2066 | 2067 | split@0.3: 2068 | version "0.3.3" 2069 | resolved "https://registry.yarnpkg.com/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" 2070 | dependencies: 2071 | through "2" 2072 | 2073 | sprintf-js@~1.0.2: 2074 | version "1.0.3" 2075 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2076 | 2077 | sshpk@^1.7.0: 2078 | version "1.11.0" 2079 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.11.0.tgz#2d8d5ebb4a6fab28ffba37fa62a90f4a3ea59d77" 2080 | dependencies: 2081 | asn1 "~0.2.3" 2082 | assert-plus "^1.0.0" 2083 | dashdash "^1.12.0" 2084 | getpass "^0.1.1" 2085 | optionalDependencies: 2086 | bcrypt-pbkdf "^1.0.0" 2087 | ecc-jsbn "~0.1.1" 2088 | jodid25519 "^1.0.0" 2089 | jsbn "~0.1.0" 2090 | tweetnacl "~0.14.0" 2091 | 2092 | standard-engine@~5.2.0: 2093 | version "5.2.0" 2094 | resolved "https://registry.yarnpkg.com/standard-engine/-/standard-engine-5.2.0.tgz#400660ae5acce8afd4db60ff2214a9190ad790a3" 2095 | dependencies: 2096 | deglob "^2.0.0" 2097 | find-root "^1.0.0" 2098 | get-stdin "^5.0.1" 2099 | home-or-tmp "^2.0.0" 2100 | minimist "^1.1.0" 2101 | pkg-config "^1.0.1" 2102 | 2103 | standard@^8.6.0: 2104 | version "8.6.0" 2105 | resolved "https://registry.yarnpkg.com/standard/-/standard-8.6.0.tgz#635132be7bfb567c2921005f30f9e350e4752aad" 2106 | dependencies: 2107 | eslint "~3.10.2" 2108 | eslint-config-standard "6.2.1" 2109 | eslint-config-standard-jsx "3.2.0" 2110 | eslint-plugin-promise "~3.4.0" 2111 | eslint-plugin-react "~6.7.1" 2112 | eslint-plugin-standard "~2.0.1" 2113 | standard-engine "~5.2.0" 2114 | 2115 | "statuses@>= 1.3.1 < 2", statuses@~1.3.1: 2116 | version "1.3.1" 2117 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" 2118 | 2119 | stream-combiner@~0.0.4: 2120 | version "0.0.4" 2121 | resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" 2122 | dependencies: 2123 | duplexer "~0.1.1" 2124 | 2125 | stream-consume@^0.1.0: 2126 | version "0.1.0" 2127 | resolved "https://registry.yarnpkg.com/stream-consume/-/stream-consume-0.1.0.tgz#a41ead1a6d6081ceb79f65b061901b6d8f3d1d0f" 2128 | 2129 | stream-shift@^1.0.0: 2130 | version "1.0.0" 2131 | resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" 2132 | 2133 | string-length@^1.0.0: 2134 | version "1.0.1" 2135 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 2136 | dependencies: 2137 | strip-ansi "^3.0.0" 2138 | 2139 | string-width@^1.0.1: 2140 | version "1.0.2" 2141 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2142 | dependencies: 2143 | code-point-at "^1.0.0" 2144 | is-fullwidth-code-point "^1.0.0" 2145 | strip-ansi "^3.0.0" 2146 | 2147 | string-width@^2.0.0: 2148 | version "2.0.0" 2149 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 2150 | dependencies: 2151 | is-fullwidth-code-point "^2.0.0" 2152 | strip-ansi "^3.0.0" 2153 | 2154 | string_decoder@~0.10.x: 2155 | version "0.10.31" 2156 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 2157 | 2158 | stringstream@~0.0.4: 2159 | version "0.0.5" 2160 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2161 | 2162 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2163 | version "3.0.1" 2164 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2165 | dependencies: 2166 | ansi-regex "^2.0.0" 2167 | 2168 | strip-bom@^3.0.0: 2169 | version "3.0.0" 2170 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2171 | 2172 | strip-json-comments@~1.0.1: 2173 | version "1.0.4" 2174 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 2175 | 2176 | strip-json-comments@~2.0.1: 2177 | version "2.0.1" 2178 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2179 | 2180 | supports-color@^2.0.0: 2181 | version "2.0.0" 2182 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2183 | 2184 | table@^3.7.8: 2185 | version "3.8.3" 2186 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 2187 | dependencies: 2188 | ajv "^4.7.0" 2189 | ajv-keywords "^1.0.0" 2190 | chalk "^1.1.1" 2191 | lodash "^4.0.0" 2192 | slice-ansi "0.0.4" 2193 | string-width "^2.0.0" 2194 | 2195 | tar-pack@^3.4.0: 2196 | version "3.4.0" 2197 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 2198 | dependencies: 2199 | debug "^2.2.0" 2200 | fstream "^1.0.10" 2201 | fstream-ignore "^1.0.5" 2202 | once "^1.3.3" 2203 | readable-stream "^2.1.4" 2204 | rimraf "^2.5.1" 2205 | tar "^2.2.1" 2206 | uid-number "^0.0.6" 2207 | 2208 | tar@^2.2.1: 2209 | version "2.2.1" 2210 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2211 | dependencies: 2212 | block-stream "*" 2213 | fstream "^1.0.2" 2214 | inherits "2" 2215 | 2216 | text-table@~0.2.0: 2217 | version "0.2.0" 2218 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2219 | 2220 | through@2, through@^2.3.6, through@~2.3, through@~2.3.1: 2221 | version "2.3.8" 2222 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2223 | 2224 | timed-out@^2.0.0: 2225 | version "2.0.0" 2226 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-2.0.0.tgz#f38b0ae81d3747d628001f41dafc652ace671c0a" 2227 | 2228 | touch@1.0.0: 2229 | version "1.0.0" 2230 | resolved "https://registry.yarnpkg.com/touch/-/touch-1.0.0.tgz#449cbe2dbae5a8c8038e30d71fa0ff464947c4de" 2231 | dependencies: 2232 | nopt "~1.0.10" 2233 | 2234 | tough-cookie@~2.3.0: 2235 | version "2.3.2" 2236 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 2237 | dependencies: 2238 | punycode "^1.4.1" 2239 | 2240 | tryit@^1.0.1: 2241 | version "1.0.3" 2242 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 2243 | 2244 | tunnel-agent@^0.6.0: 2245 | version "0.6.0" 2246 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2247 | dependencies: 2248 | safe-buffer "^5.0.1" 2249 | 2250 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2251 | version "0.14.5" 2252 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2253 | 2254 | type-check@~0.3.2: 2255 | version "0.3.2" 2256 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2257 | dependencies: 2258 | prelude-ls "~1.1.2" 2259 | 2260 | type-is@~1.6.14: 2261 | version "1.6.14" 2262 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.14.tgz#e219639c17ded1ca0789092dd54a03826b817cb2" 2263 | dependencies: 2264 | media-typer "0.3.0" 2265 | mime-types "~2.1.13" 2266 | 2267 | typedarray@^0.0.6: 2268 | version "0.0.6" 2269 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 2270 | 2271 | uid-number@^0.0.6: 2272 | version "0.0.6" 2273 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2274 | 2275 | uid-safe@~2.1.3: 2276 | version "2.1.4" 2277 | resolved "https://registry.yarnpkg.com/uid-safe/-/uid-safe-2.1.4.tgz#3ad6f38368c6d4c8c75ec17623fb79aa1d071d81" 2278 | dependencies: 2279 | random-bytes "~1.0.0" 2280 | 2281 | uid2@0.0.x: 2282 | version "0.0.3" 2283 | resolved "https://registry.yarnpkg.com/uid2/-/uid2-0.0.3.tgz#483126e11774df2f71b8b639dcd799c376162b82" 2284 | 2285 | undefsafe@0.0.3: 2286 | version "0.0.3" 2287 | resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-0.0.3.tgz#ecca3a03e56b9af17385baac812ac83b994a962f" 2288 | 2289 | uniq@^1.0.1: 2290 | version "1.0.1" 2291 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" 2292 | 2293 | unpipe@1.0.0, unpipe@~1.0.0: 2294 | version "1.0.0" 2295 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 2296 | 2297 | update-notifier@0.5.0: 2298 | version "0.5.0" 2299 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-0.5.0.tgz#07b5dc2066b3627ab3b4f530130f7eddda07a4cc" 2300 | dependencies: 2301 | chalk "^1.0.0" 2302 | configstore "^1.0.0" 2303 | is-npm "^1.0.0" 2304 | latest-version "^1.0.0" 2305 | repeating "^1.1.2" 2306 | semver-diff "^2.0.0" 2307 | string-length "^1.0.0" 2308 | 2309 | user-home@^2.0.0: 2310 | version "2.0.0" 2311 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 2312 | dependencies: 2313 | os-homedir "^1.0.0" 2314 | 2315 | util-deprecate@~1.0.1: 2316 | version "1.0.2" 2317 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2318 | 2319 | utils-merge@1.0.0, utils-merge@1.x.x: 2320 | version "1.0.0" 2321 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" 2322 | 2323 | uuid@^2.0.1: 2324 | version "2.0.3" 2325 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 2326 | 2327 | uuid@^3.0.0, uuid@^3.0.1: 2328 | version "3.0.1" 2329 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 2330 | 2331 | vary@^1, vary@~1.1.0: 2332 | version "1.1.0" 2333 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.0.tgz#e1e5affbbd16ae768dd2674394b9ad3022653140" 2334 | 2335 | verror@1.3.6: 2336 | version "1.3.6" 2337 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 2338 | dependencies: 2339 | extsprintf "1.0.2" 2340 | 2341 | wide-align@^1.1.0: 2342 | version "1.1.0" 2343 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 2344 | dependencies: 2345 | string-width "^1.0.1" 2346 | 2347 | wordwrap@~1.0.0: 2348 | version "1.0.0" 2349 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2350 | 2351 | wrappy@1: 2352 | version "1.0.2" 2353 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2354 | 2355 | write-file-atomic@^1.1.2: 2356 | version "1.3.1" 2357 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.1.tgz#7d45ba32316328dd1ec7d90f60ebc0d845bb759a" 2358 | dependencies: 2359 | graceful-fs "^4.1.11" 2360 | imurmurhash "^0.1.4" 2361 | slide "^1.1.5" 2362 | 2363 | write@^0.2.1: 2364 | version "0.2.1" 2365 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 2366 | dependencies: 2367 | mkdirp "^0.5.1" 2368 | 2369 | xdg-basedir@^2.0.0: 2370 | version "2.0.0" 2371 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-2.0.0.tgz#edbc903cc385fc04523d966a335504b5504d1bd2" 2372 | dependencies: 2373 | os-homedir "^1.0.0" 2374 | 2375 | xtend@^4.0.0, xtend@^4.0.1: 2376 | version "4.0.1" 2377 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2378 | --------------------------------------------------------------------------------