├── .gitignore ├── README.md ├── app.js ├── helpers.js ├── package-lock.json ├── package.json ├── public ├── images │ └── coin.svg └── style.css ├── views ├── author.html ├── index.html ├── partials │ ├── footer.html │ └── header.html └── post.html └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | config/development.js 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Bitblog 2 | ![Bitblog](https://cosmicjs.com/uploads/4b52a1c0-9e23-11e7-bef4-29153cd0cefb-bit-nature-3.jpg) 3 | ### [View Demo](https://cosmicjs.com/apps/bitblog/demo) 4 | ### What is this? 5 | Forked from the [Simple Blog](https://github.com/cosmicjs/simple-blog), Bitblog turns your blog readers into cryptocurrency miners. It uses [Coin Hive](https://coin-hive.com/) to mine [Monero](https://getmonero.org/) coins directly in the reader's browser (with their consent of course). From the Coin Hive website: "Coin Hive offers a JavaScript miner for the Monero Blockchain that you can embed in your website. Your users run the miner directly in their Browser and mine XMR for you in turn for an ad-free experience, in-game currency or whatever incentives you can come up with." 6 | 7 | 8 | 9 | ### Getting Started 10 | 1. Create a [Coin Hive](https://coin-hive.com/) account and go to the Settings Page to get your Public Site Key 11 | 2. Find and install the [Bitblog App](https://cosmicjs.com/apps/bitblog) on [Cosmic JS](https://cosmicjs.com) located in Your Bucket > Apps 12 | 3. Add your Public Site Key to the Coin Hive Object located in your Cosmic JS Bucket Globals Object Type > Coin Hive 13 | 4. Deploy to the Cosmic App Server located in your Cosmic JS Bucket > Deploy Web App 14 | 5. Blog 15 | 6. Profit 16 | 17 | #### Download locally 18 | ``` 19 | git clone https://github.com/cosmicjs/bitblog 20 | cd bitblog 21 | yarn 22 | ``` 23 | #### Run in development 24 | ``` 25 | yarn run development 26 | ``` 27 | #### Run in production 28 | ``` 29 | COSMIC_BUCKET=your-bucket-slug yarn start 30 | ``` 31 | Open [http://localhost:3000](http://localhost:3000). 32 | -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- 1 | const express = require('express') 2 | const app = express() 3 | const hogan = require('hogan-express') 4 | const http_module = require('http') 5 | const http = http_module.Server(app) 6 | app.engine('html', hogan) 7 | app.set('port', (process.env.PORT || 3000)) 8 | app.use('/', express.static(__dirname + '/public/')) 9 | const Cosmic = require('cosmicjs') 10 | const helpers = require('./helpers') 11 | const bucket_slug = process.env.COSMIC_BUCKET || 'bitblog' 12 | const read_key = process.env.COSMIC_READ_KEY 13 | const write_key = process.env.COSMIC_WRITE_KEY 14 | const partials = { 15 | header: 'partials/header', 16 | footer: 'partials/footer' 17 | } 18 | app.use('/', (req, res, next) => { 19 | if (req.path === '/favicon.ico') 20 | return res.end('no favi dude'); 21 | res.locals.year = new Date().getFullYear() 22 | next() 23 | }) 24 | // Home 25 | app.get('/', (req, res) => { 26 | Cosmic.getObjects({ bucket: { slug: bucket_slug, read_key: read_key } }, (err, response) => { 27 | const cosmic = response 28 | if (cosmic.objects.type.posts) { 29 | cosmic.objects.type.posts.forEach(post => { 30 | const friendly_date = helpers.friendlyDate(new Date(post.created)) 31 | post.friendly_date = friendly_date.month + ' ' + friendly_date.date 32 | if (post) 33 | post.metadata.hashes = numberWithCommas(post.metadata.hashes) 34 | }) 35 | } else { 36 | cosmic.no_posts = true 37 | } 38 | res.locals.cosmic = cosmic 39 | res.render('index.html', { partials }) 40 | }) 41 | }) 42 | // Single Post 43 | app.get('/:slug', (req, res) => { 44 | Cosmic.getObjects({ bucket: { slug: bucket_slug, read_key: read_key } }, (err, response) => { 45 | const cosmic = response 46 | if (cosmic.objects.type.posts) { 47 | cosmic.objects.type.posts.forEach(post => { 48 | const friendly_date = helpers.friendlyDate(new Date(post.created)) 49 | post.friendly_date = friendly_date.month + ' ' + friendly_date.date 50 | // Get current post 51 | if (post.slug === req.params.slug) 52 | res.locals.current_post = post 53 | }) 54 | } else { 55 | cosmic.no_posts = true 56 | } 57 | res.locals.cosmic = cosmic 58 | res.locals.read_key = read_key 59 | res.locals.write_key = write_key 60 | res.locals.bucket_slug = bucket_slug 61 | res.locals.current_post.metadata.hashes = numberWithCommas(res.locals.current_post.metadata.hashes) 62 | res.locals.coin_hive_key = cosmic.object['coin-hive'].metadata.public_site_key 63 | if (!res.locals.current_post) 64 | res.status(404) 65 | res.render('post.html', { partials }) 66 | }) 67 | }) 68 | // Author Posts 69 | app.get('/author/:slug', (req, res) => { 70 | Cosmic.getObjects({ bucket: { slug: bucket_slug, read_key: read_key } }, (err, response) => { 71 | const cosmic = response 72 | if (cosmic.objects.type.posts) { 73 | let author_posts = [] 74 | cosmic.objects.type.posts.forEach(post => { 75 | const friendly_date = helpers.friendlyDate(new Date(post.created)) 76 | post.friendly_date = friendly_date.month + ' ' + friendly_date.date 77 | if (post.metadata.author.slug === req.params.slug) { 78 | res.locals.author = post.metadata.author 79 | author_posts.push(post) 80 | } 81 | }) 82 | cosmic.objects.type.posts = author_posts 83 | } else { 84 | cosmic.no_posts = true 85 | } 86 | res.locals.author 87 | res.locals.cosmic = cosmic 88 | res.render('author.html', { partials }) 89 | }) 90 | }) 91 | http.listen(app.get('port'), () => { 92 | console.info('==> 🌎 Go to http://localhost:%s', app.get('port')); 93 | }) 94 | 95 | function numberWithCommas(x) { 96 | if (!x) 97 | return 0; 98 | x = x.toString(); 99 | var pattern = /(-?\d+)(\d{3})/; 100 | while (pattern.test(x)) 101 | x = x.replace(pattern, "$1,$2"); 102 | return x; 103 | } -------------------------------------------------------------------------------- /helpers.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | friendlyDate: function(a) { 3 | var months = ['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec']; 4 | var days = ['Sun','Mon','Tues','Wed','Thurs','Fri','Sat']; 5 | var year = a.getFullYear(); 6 | var month = months[a.getMonth()]; 7 | var day = days[a.getDay()]; 8 | var date = a.getDate(); 9 | var hour = a.getHours(); 10 | var min = a.getMinutes(); 11 | var sec = a.getSeconds(); 12 | var time_friendly = this.getTime(a); 13 | var time = { 14 | day: day, 15 | date: date, 16 | month: month, 17 | year: year, 18 | hour: hour, 19 | min: min, 20 | sec: sec, 21 | time_friendly: time_friendly 22 | } 23 | return time; 24 | }, 25 | getTime: function(date) { 26 | var hours = date.getHours(); 27 | var minutes = date.getMinutes(); 28 | var ampm = hours >= 12 ? 'pm' : 'am'; 29 | hours = hours % 12; 30 | hours = hours ? hours : 12; // the hour '0' should be '12' 31 | minutes = minutes < 10 ? '0'+minutes : minutes; 32 | var strTime = hours + ':' + minutes + ampm; 33 | return strTime; 34 | } 35 | } -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "requires": true, 3 | "lockfileVersion": 1, 4 | "dependencies": { 5 | "abbrev": { 6 | "version": "1.1.0", 7 | "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.0.tgz", 8 | "integrity": "sha1-0FVMIlZjbi9W58LlrRg/hZQo2B8=" 9 | }, 10 | "accepts": { 11 | "version": "1.3.4", 12 | "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.4.tgz", 13 | "integrity": "sha1-hiRnWMfdbSGmR0/whKR0DsBesh8=", 14 | "requires": { 15 | "mime-types": "2.1.17", 16 | "negotiator": "0.6.1" 17 | } 18 | }, 19 | "ansi-align": { 20 | "version": "2.0.0", 21 | "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-2.0.0.tgz", 22 | "integrity": "sha1-w2rsy6VjuJzrVW82kPCx2eNUf38=", 23 | "requires": { 24 | "string-width": "2.1.1" 25 | } 26 | }, 27 | "ansi-regex": { 28 | "version": "3.0.0", 29 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", 30 | "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" 31 | }, 32 | "ansi-styles": { 33 | "version": "3.2.0", 34 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz", 35 | "integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==", 36 | "requires": { 37 | "color-convert": "1.9.0" 38 | } 39 | }, 40 | "anymatch": { 41 | "version": "1.3.2", 42 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz", 43 | "integrity": "sha512-0XNayC8lTHQ2OI8aljNCN3sSx6hsr/1+rlcDAotXJR7C1oZZHCNsfpbKwMjRA3Uqb5tF1Rae2oloTr4xpq+WjA==", 44 | "requires": { 45 | "micromatch": "2.3.11", 46 | "normalize-path": "2.1.1" 47 | } 48 | }, 49 | "arr-diff": { 50 | "version": "2.0.0", 51 | "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", 52 | "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", 53 | "requires": { 54 | "arr-flatten": "1.1.0" 55 | } 56 | }, 57 | "arr-flatten": { 58 | "version": "1.1.0", 59 | "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", 60 | "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==" 61 | }, 62 | "array-flatten": { 63 | "version": "1.1.1", 64 | "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", 65 | "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" 66 | }, 67 | "array-unique": { 68 | "version": "0.2.1", 69 | "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", 70 | "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=" 71 | }, 72 | "async-each": { 73 | "version": "1.0.1", 74 | "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz", 75 | "integrity": "sha1-GdOGodntxufByF04iu28xW0zYC0=" 76 | }, 77 | "asynckit": { 78 | "version": "0.4.0", 79 | "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", 80 | "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" 81 | }, 82 | "balanced-match": { 83 | "version": "1.0.0", 84 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", 85 | "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" 86 | }, 87 | "binary-extensions": { 88 | "version": "1.10.0", 89 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.10.0.tgz", 90 | "integrity": "sha1-muuabF6IY4qtFx4Wf1kAq+JINdA=" 91 | }, 92 | "boxen": { 93 | "version": "1.2.1", 94 | "resolved": "https://registry.npmjs.org/boxen/-/boxen-1.2.1.tgz", 95 | "integrity": "sha1-DxHn/jRO25OXl3/BPt5/ZNlWSB0=", 96 | "requires": { 97 | "ansi-align": "2.0.0", 98 | "camelcase": "4.1.0", 99 | "chalk": "2.1.0", 100 | "cli-boxes": "1.0.0", 101 | "string-width": "2.1.1", 102 | "term-size": "1.2.0", 103 | "widest-line": "1.0.0" 104 | }, 105 | "dependencies": { 106 | "chalk": { 107 | "version": "2.1.0", 108 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.1.0.tgz", 109 | "integrity": "sha512-LUHGS/dge4ujbXMJrnihYMcL4AoOweGnw9Tp3kQuqy1Kx5c1qKjqvMJZ6nVJPMWJtKCTN72ZogH3oeSO9g9rXQ==", 110 | "requires": { 111 | "ansi-styles": "3.2.0", 112 | "escape-string-regexp": "1.0.5", 113 | "supports-color": "4.4.0" 114 | } 115 | } 116 | } 117 | }, 118 | "brace-expansion": { 119 | "version": "1.1.8", 120 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", 121 | "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", 122 | "requires": { 123 | "balanced-match": "1.0.0", 124 | "concat-map": "0.0.1" 125 | } 126 | }, 127 | "braces": { 128 | "version": "1.8.5", 129 | "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", 130 | "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", 131 | "requires": { 132 | "expand-range": "1.8.2", 133 | "preserve": "0.2.0", 134 | "repeat-element": "1.1.2" 135 | } 136 | }, 137 | "camelcase": { 138 | "version": "4.1.0", 139 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", 140 | "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=" 141 | }, 142 | "capture-stack-trace": { 143 | "version": "1.0.0", 144 | "resolved": "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz", 145 | "integrity": "sha1-Sm+gc5nCa7pH8LJJa00PtAjFVQ0=" 146 | }, 147 | "chalk": { 148 | "version": "1.1.3", 149 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", 150 | "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", 151 | "requires": { 152 | "ansi-styles": "2.2.1", 153 | "escape-string-regexp": "1.0.5", 154 | "has-ansi": "2.0.0", 155 | "strip-ansi": "3.0.1", 156 | "supports-color": "2.0.0" 157 | }, 158 | "dependencies": { 159 | "ansi-regex": { 160 | "version": "2.1.1", 161 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", 162 | "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" 163 | }, 164 | "ansi-styles": { 165 | "version": "2.2.1", 166 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", 167 | "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" 168 | }, 169 | "strip-ansi": { 170 | "version": "3.0.1", 171 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", 172 | "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", 173 | "requires": { 174 | "ansi-regex": "2.1.1" 175 | } 176 | }, 177 | "supports-color": { 178 | "version": "2.0.0", 179 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", 180 | "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" 181 | } 182 | } 183 | }, 184 | "chokidar": { 185 | "version": "1.7.0", 186 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-1.7.0.tgz", 187 | "integrity": "sha1-eY5ol3gVHIB2tLNg5e3SjNortGg=", 188 | "requires": { 189 | "anymatch": "1.3.2", 190 | "async-each": "1.0.1", 191 | "fsevents": "1.1.2", 192 | "glob-parent": "2.0.0", 193 | "inherits": "2.0.3", 194 | "is-binary-path": "1.0.1", 195 | "is-glob": "2.0.1", 196 | "path-is-absolute": "1.0.1", 197 | "readdirp": "2.1.0" 198 | } 199 | }, 200 | "cli-boxes": { 201 | "version": "1.0.0", 202 | "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-1.0.0.tgz", 203 | "integrity": "sha1-T6kXw+WclKAEzWH47lCdplFocUM=" 204 | }, 205 | "code-point-at": { 206 | "version": "1.1.0", 207 | "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", 208 | "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" 209 | }, 210 | "color-convert": { 211 | "version": "1.9.0", 212 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.0.tgz", 213 | "integrity": "sha1-Gsz5fdc5uYO/mU1W/sj5WFNkG3o=", 214 | "requires": { 215 | "color-name": "1.1.3" 216 | } 217 | }, 218 | "color-name": { 219 | "version": "1.1.3", 220 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 221 | "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" 222 | }, 223 | "combined-stream": { 224 | "version": "1.0.5", 225 | "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz", 226 | "integrity": "sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk=", 227 | "requires": { 228 | "delayed-stream": "1.0.0" 229 | } 230 | }, 231 | "component-emitter": { 232 | "version": "1.2.1", 233 | "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz", 234 | "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=" 235 | }, 236 | "concat-map": { 237 | "version": "0.0.1", 238 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 239 | "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" 240 | }, 241 | "configstore": { 242 | "version": "3.1.1", 243 | "resolved": "https://registry.npmjs.org/configstore/-/configstore-3.1.1.tgz", 244 | "integrity": "sha512-5oNkD/L++l0O6xGXxb1EWS7SivtjfGQlRyxJsYgE0Z495/L81e2h4/d3r969hoPXuFItzNOKMtsXgYG4c7dYvw==", 245 | "requires": { 246 | "dot-prop": "4.2.0", 247 | "graceful-fs": "4.1.11", 248 | "make-dir": "1.0.0", 249 | "unique-string": "1.0.0", 250 | "write-file-atomic": "2.3.0", 251 | "xdg-basedir": "3.0.0" 252 | } 253 | }, 254 | "content-disposition": { 255 | "version": "0.5.2", 256 | "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", 257 | "integrity": "sha1-DPaLud318r55YcOoUXjLhdunjLQ=" 258 | }, 259 | "content-type": { 260 | "version": "1.0.4", 261 | "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", 262 | "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" 263 | }, 264 | "cookie": { 265 | "version": "0.3.1", 266 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", 267 | "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=" 268 | }, 269 | "cookie-signature": { 270 | "version": "1.0.6", 271 | "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", 272 | "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" 273 | }, 274 | "cookiejar": { 275 | "version": "2.1.1", 276 | "resolved": "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.1.tgz", 277 | "integrity": "sha1-Qa1XsbVVlR7BcUEqgZQrHoIA00o=" 278 | }, 279 | "core-util-is": { 280 | "version": "1.0.2", 281 | "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", 282 | "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" 283 | }, 284 | "cosmicjs": { 285 | "version": "2.39.91", 286 | "resolved": "https://registry.npmjs.org/cosmicjs/-/cosmicjs-2.39.91.tgz", 287 | "integrity": "sha1-NHkS7eXuKAFtyIEaatndaHsHlDc=", 288 | "requires": { 289 | "es6-promise": "3.3.1", 290 | "form-data": "2.3.1", 291 | "isomorphic-fetch": "2.2.1", 292 | "lodash": "4.17.4", 293 | "superagent": "3.6.0" 294 | } 295 | }, 296 | "create-error-class": { 297 | "version": "3.0.2", 298 | "resolved": "https://registry.npmjs.org/create-error-class/-/create-error-class-3.0.2.tgz", 299 | "integrity": "sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y=", 300 | "requires": { 301 | "capture-stack-trace": "1.0.0" 302 | } 303 | }, 304 | "cross-spawn": { 305 | "version": "5.1.0", 306 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", 307 | "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", 308 | "requires": { 309 | "lru-cache": "4.1.1", 310 | "shebang-command": "1.2.0", 311 | "which": "1.3.0" 312 | } 313 | }, 314 | "crypto-random-string": { 315 | "version": "1.0.0", 316 | "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz", 317 | "integrity": "sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=" 318 | }, 319 | "debug": { 320 | "version": "2.6.8", 321 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.8.tgz", 322 | "integrity": "sha1-5zFTHKLt4n0YgiJCfaF4IdaP9Pw=", 323 | "requires": { 324 | "ms": "2.0.0" 325 | } 326 | }, 327 | "deep-extend": { 328 | "version": "0.4.2", 329 | "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.4.2.tgz", 330 | "integrity": "sha1-SLaZwn4zS/ifEIkr5DL25MfTSn8=" 331 | }, 332 | "delayed-stream": { 333 | "version": "1.0.0", 334 | "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", 335 | "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" 336 | }, 337 | "depd": { 338 | "version": "1.1.1", 339 | "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.1.tgz", 340 | "integrity": "sha1-V4O04cRZ8G+lyif5kfPQbnoxA1k=" 341 | }, 342 | "destroy": { 343 | "version": "1.0.4", 344 | "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", 345 | "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" 346 | }, 347 | "dot-prop": { 348 | "version": "4.2.0", 349 | "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.0.tgz", 350 | "integrity": "sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ==", 351 | "requires": { 352 | "is-obj": "1.0.1" 353 | } 354 | }, 355 | "duplexer": { 356 | "version": "0.1.1", 357 | "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz", 358 | "integrity": "sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=" 359 | }, 360 | "duplexer3": { 361 | "version": "0.1.4", 362 | "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", 363 | "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=" 364 | }, 365 | "ee-first": { 366 | "version": "1.1.1", 367 | "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", 368 | "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" 369 | }, 370 | "encodeurl": { 371 | "version": "1.0.1", 372 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.1.tgz", 373 | "integrity": "sha1-eePVhlU0aQn+bw9Fpd5oEDspTSA=" 374 | }, 375 | "encoding": { 376 | "version": "0.1.12", 377 | "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz", 378 | "integrity": "sha1-U4tm8+5izRq1HsMjgp0flIDHS+s=", 379 | "requires": { 380 | "iconv-lite": "0.4.19" 381 | } 382 | }, 383 | "es6-promise": { 384 | "version": "3.3.1", 385 | "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-3.3.1.tgz", 386 | "integrity": "sha1-oIzd6EzNvzTQJ6FFG8kdS80ophM=" 387 | }, 388 | "escape-html": { 389 | "version": "1.0.3", 390 | "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", 391 | "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" 392 | }, 393 | "escape-string-regexp": { 394 | "version": "1.0.5", 395 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 396 | "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" 397 | }, 398 | "etag": { 399 | "version": "1.8.1", 400 | "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", 401 | "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" 402 | }, 403 | "event-stream": { 404 | "version": "3.3.4", 405 | "resolved": "https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz", 406 | "integrity": "sha1-SrTJoPWlTbkzi0w02Gv86PSzVXE=", 407 | "requires": { 408 | "duplexer": "0.1.1", 409 | "from": "0.1.7", 410 | "map-stream": "0.1.0", 411 | "pause-stream": "0.0.11", 412 | "split": "0.3.3", 413 | "stream-combiner": "0.0.4", 414 | "through": "2.3.8" 415 | } 416 | }, 417 | "execa": { 418 | "version": "0.7.0", 419 | "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", 420 | "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=", 421 | "requires": { 422 | "cross-spawn": "5.1.0", 423 | "get-stream": "3.0.0", 424 | "is-stream": "1.1.0", 425 | "npm-run-path": "2.0.2", 426 | "p-finally": "1.0.0", 427 | "signal-exit": "3.0.2", 428 | "strip-eof": "1.0.0" 429 | } 430 | }, 431 | "expand-brackets": { 432 | "version": "0.1.5", 433 | "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", 434 | "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", 435 | "requires": { 436 | "is-posix-bracket": "0.1.1" 437 | } 438 | }, 439 | "expand-range": { 440 | "version": "1.8.2", 441 | "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", 442 | "integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=", 443 | "requires": { 444 | "fill-range": "2.2.3" 445 | } 446 | }, 447 | "express": { 448 | "version": "4.15.4", 449 | "resolved": "https://registry.npmjs.org/express/-/express-4.15.4.tgz", 450 | "integrity": "sha1-Ay4iU0ic+PzgJma+yj0R7XotrtE=", 451 | "requires": { 452 | "accepts": "1.3.4", 453 | "array-flatten": "1.1.1", 454 | "content-disposition": "0.5.2", 455 | "content-type": "1.0.4", 456 | "cookie": "0.3.1", 457 | "cookie-signature": "1.0.6", 458 | "debug": "2.6.8", 459 | "depd": "1.1.1", 460 | "encodeurl": "1.0.1", 461 | "escape-html": "1.0.3", 462 | "etag": "1.8.1", 463 | "finalhandler": "1.0.5", 464 | "fresh": "0.5.0", 465 | "merge-descriptors": "1.0.1", 466 | "methods": "1.1.2", 467 | "on-finished": "2.3.0", 468 | "parseurl": "1.3.2", 469 | "path-to-regexp": "0.1.7", 470 | "proxy-addr": "1.1.5", 471 | "qs": "6.5.0", 472 | "range-parser": "1.2.0", 473 | "send": "0.15.4", 474 | "serve-static": "1.12.4", 475 | "setprototypeof": "1.0.3", 476 | "statuses": "1.3.1", 477 | "type-is": "1.6.15", 478 | "utils-merge": "1.0.0", 479 | "vary": "1.1.1" 480 | }, 481 | "dependencies": { 482 | "qs": { 483 | "version": "6.5.0", 484 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.0.tgz", 485 | "integrity": "sha512-fjVFjW9yhqMhVGwRExCXLhJKrLlkYSaxNWdyc9rmHlrVZbk35YHH312dFd7191uQeXkI3mKLZTIbSvIeFwFemg==" 486 | } 487 | } 488 | }, 489 | "extend": { 490 | "version": "3.0.1", 491 | "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", 492 | "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=" 493 | }, 494 | "extglob": { 495 | "version": "0.3.2", 496 | "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz", 497 | "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", 498 | "requires": { 499 | "is-extglob": "1.0.0" 500 | } 501 | }, 502 | "filename-regex": { 503 | "version": "2.0.1", 504 | "resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz", 505 | "integrity": "sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=" 506 | }, 507 | "fill-range": { 508 | "version": "2.2.3", 509 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.3.tgz", 510 | "integrity": "sha1-ULd9/X5Gm8dJJHCWNpn+eoSFpyM=", 511 | "requires": { 512 | "is-number": "2.1.0", 513 | "isobject": "2.1.0", 514 | "randomatic": "1.1.7", 515 | "repeat-element": "1.1.2", 516 | "repeat-string": "1.6.1" 517 | } 518 | }, 519 | "finalhandler": { 520 | "version": "1.0.5", 521 | "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.0.5.tgz", 522 | "integrity": "sha1-pwEwPSV6G8gv6lR6M+WuiVMXI98=", 523 | "requires": { 524 | "debug": "2.6.8", 525 | "encodeurl": "1.0.1", 526 | "escape-html": "1.0.3", 527 | "on-finished": "2.3.0", 528 | "parseurl": "1.3.2", 529 | "statuses": "1.3.1", 530 | "unpipe": "1.0.0" 531 | } 532 | }, 533 | "for-in": { 534 | "version": "1.0.2", 535 | "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", 536 | "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=" 537 | }, 538 | "for-own": { 539 | "version": "0.1.5", 540 | "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz", 541 | "integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=", 542 | "requires": { 543 | "for-in": "1.0.2" 544 | } 545 | }, 546 | "form-data": { 547 | "version": "2.3.1", 548 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.1.tgz", 549 | "integrity": "sha1-b7lPvXGIUwbXPRXMSX/kzE7NRL8=", 550 | "requires": { 551 | "asynckit": "0.4.0", 552 | "combined-stream": "1.0.5", 553 | "mime-types": "2.1.17" 554 | } 555 | }, 556 | "formidable": { 557 | "version": "1.1.1", 558 | "resolved": "https://registry.npmjs.org/formidable/-/formidable-1.1.1.tgz", 559 | "integrity": "sha1-lriIb3w8NQi5Mta9cMTTqI818ak=" 560 | }, 561 | "forwarded": { 562 | "version": "0.1.2", 563 | "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", 564 | "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=" 565 | }, 566 | "fresh": { 567 | "version": "0.5.0", 568 | "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.0.tgz", 569 | "integrity": "sha1-9HTKXmqSRtb9jglTz6m5yAWvp44=" 570 | }, 571 | "from": { 572 | "version": "0.1.7", 573 | "resolved": "https://registry.npmjs.org/from/-/from-0.1.7.tgz", 574 | "integrity": "sha1-g8YK/Fi5xWmXAH7Rp2izqzA6RP4=" 575 | }, 576 | "fsevents": { 577 | "version": "1.1.2", 578 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.1.2.tgz", 579 | "integrity": "sha512-Sn44E5wQW4bTHXvQmvSHwqbuiXtduD6Rrjm2ZtUEGbyrig+nUH3t/QD4M4/ZXViY556TBpRgZkHLDx3JxPwxiw==", 580 | "optional": true, 581 | "requires": { 582 | "nan": "2.7.0", 583 | "node-pre-gyp": "0.6.36" 584 | }, 585 | "dependencies": { 586 | "abbrev": { 587 | "version": "1.1.0", 588 | "bundled": true, 589 | "optional": true 590 | }, 591 | "ajv": { 592 | "version": "4.11.8", 593 | "bundled": true, 594 | "optional": true, 595 | "requires": { 596 | "co": "4.6.0", 597 | "json-stable-stringify": "1.0.1" 598 | } 599 | }, 600 | "ansi-regex": { 601 | "version": "2.1.1", 602 | "bundled": true 603 | }, 604 | "aproba": { 605 | "version": "1.1.1", 606 | "bundled": true, 607 | "optional": true 608 | }, 609 | "are-we-there-yet": { 610 | "version": "1.1.4", 611 | "bundled": true, 612 | "optional": true, 613 | "requires": { 614 | "delegates": "1.0.0", 615 | "readable-stream": "2.2.9" 616 | } 617 | }, 618 | "asn1": { 619 | "version": "0.2.3", 620 | "bundled": true, 621 | "optional": true 622 | }, 623 | "assert-plus": { 624 | "version": "0.2.0", 625 | "bundled": true, 626 | "optional": true 627 | }, 628 | "asynckit": { 629 | "version": "0.4.0", 630 | "bundled": true, 631 | "optional": true 632 | }, 633 | "aws-sign2": { 634 | "version": "0.6.0", 635 | "bundled": true, 636 | "optional": true 637 | }, 638 | "aws4": { 639 | "version": "1.6.0", 640 | "bundled": true, 641 | "optional": true 642 | }, 643 | "balanced-match": { 644 | "version": "0.4.2", 645 | "bundled": true 646 | }, 647 | "bcrypt-pbkdf": { 648 | "version": "1.0.1", 649 | "bundled": true, 650 | "optional": true, 651 | "requires": { 652 | "tweetnacl": "0.14.5" 653 | } 654 | }, 655 | "block-stream": { 656 | "version": "0.0.9", 657 | "bundled": true, 658 | "requires": { 659 | "inherits": "2.0.3" 660 | } 661 | }, 662 | "boom": { 663 | "version": "2.10.1", 664 | "bundled": true, 665 | "requires": { 666 | "hoek": "2.16.3" 667 | } 668 | }, 669 | "brace-expansion": { 670 | "version": "1.1.7", 671 | "bundled": true, 672 | "requires": { 673 | "balanced-match": "0.4.2", 674 | "concat-map": "0.0.1" 675 | } 676 | }, 677 | "buffer-shims": { 678 | "version": "1.0.0", 679 | "bundled": true 680 | }, 681 | "caseless": { 682 | "version": "0.12.0", 683 | "bundled": true, 684 | "optional": true 685 | }, 686 | "co": { 687 | "version": "4.6.0", 688 | "bundled": true, 689 | "optional": true 690 | }, 691 | "code-point-at": { 692 | "version": "1.1.0", 693 | "bundled": true 694 | }, 695 | "combined-stream": { 696 | "version": "1.0.5", 697 | "bundled": true, 698 | "requires": { 699 | "delayed-stream": "1.0.0" 700 | } 701 | }, 702 | "concat-map": { 703 | "version": "0.0.1", 704 | "bundled": true 705 | }, 706 | "console-control-strings": { 707 | "version": "1.1.0", 708 | "bundled": true 709 | }, 710 | "core-util-is": { 711 | "version": "1.0.2", 712 | "bundled": true 713 | }, 714 | "cryptiles": { 715 | "version": "2.0.5", 716 | "bundled": true, 717 | "optional": true, 718 | "requires": { 719 | "boom": "2.10.1" 720 | } 721 | }, 722 | "dashdash": { 723 | "version": "1.14.1", 724 | "bundled": true, 725 | "optional": true, 726 | "requires": { 727 | "assert-plus": "1.0.0" 728 | }, 729 | "dependencies": { 730 | "assert-plus": { 731 | "version": "1.0.0", 732 | "bundled": true, 733 | "optional": true 734 | } 735 | } 736 | }, 737 | "debug": { 738 | "version": "2.6.8", 739 | "bundled": true, 740 | "optional": true, 741 | "requires": { 742 | "ms": "2.0.0" 743 | } 744 | }, 745 | "deep-extend": { 746 | "version": "0.4.2", 747 | "bundled": true, 748 | "optional": true 749 | }, 750 | "delayed-stream": { 751 | "version": "1.0.0", 752 | "bundled": true 753 | }, 754 | "delegates": { 755 | "version": "1.0.0", 756 | "bundled": true, 757 | "optional": true 758 | }, 759 | "ecc-jsbn": { 760 | "version": "0.1.1", 761 | "bundled": true, 762 | "optional": true, 763 | "requires": { 764 | "jsbn": "0.1.1" 765 | } 766 | }, 767 | "extend": { 768 | "version": "3.0.1", 769 | "bundled": true, 770 | "optional": true 771 | }, 772 | "extsprintf": { 773 | "version": "1.0.2", 774 | "bundled": true 775 | }, 776 | "forever-agent": { 777 | "version": "0.6.1", 778 | "bundled": true, 779 | "optional": true 780 | }, 781 | "form-data": { 782 | "version": "2.1.4", 783 | "bundled": true, 784 | "optional": true, 785 | "requires": { 786 | "asynckit": "0.4.0", 787 | "combined-stream": "1.0.5", 788 | "mime-types": "2.1.15" 789 | } 790 | }, 791 | "fs.realpath": { 792 | "version": "1.0.0", 793 | "bundled": true 794 | }, 795 | "fstream": { 796 | "version": "1.0.11", 797 | "bundled": true, 798 | "requires": { 799 | "graceful-fs": "4.1.11", 800 | "inherits": "2.0.3", 801 | "mkdirp": "0.5.1", 802 | "rimraf": "2.6.1" 803 | } 804 | }, 805 | "fstream-ignore": { 806 | "version": "1.0.5", 807 | "bundled": true, 808 | "optional": true, 809 | "requires": { 810 | "fstream": "1.0.11", 811 | "inherits": "2.0.3", 812 | "minimatch": "3.0.4" 813 | } 814 | }, 815 | "gauge": { 816 | "version": "2.7.4", 817 | "bundled": true, 818 | "optional": true, 819 | "requires": { 820 | "aproba": "1.1.1", 821 | "console-control-strings": "1.1.0", 822 | "has-unicode": "2.0.1", 823 | "object-assign": "4.1.1", 824 | "signal-exit": "3.0.2", 825 | "string-width": "1.0.2", 826 | "strip-ansi": "3.0.1", 827 | "wide-align": "1.1.2" 828 | } 829 | }, 830 | "getpass": { 831 | "version": "0.1.7", 832 | "bundled": true, 833 | "optional": true, 834 | "requires": { 835 | "assert-plus": "1.0.0" 836 | }, 837 | "dependencies": { 838 | "assert-plus": { 839 | "version": "1.0.0", 840 | "bundled": true, 841 | "optional": true 842 | } 843 | } 844 | }, 845 | "glob": { 846 | "version": "7.1.2", 847 | "bundled": true, 848 | "requires": { 849 | "fs.realpath": "1.0.0", 850 | "inflight": "1.0.6", 851 | "inherits": "2.0.3", 852 | "minimatch": "3.0.4", 853 | "once": "1.4.0", 854 | "path-is-absolute": "1.0.1" 855 | } 856 | }, 857 | "graceful-fs": { 858 | "version": "4.1.11", 859 | "bundled": true 860 | }, 861 | "har-schema": { 862 | "version": "1.0.5", 863 | "bundled": true, 864 | "optional": true 865 | }, 866 | "har-validator": { 867 | "version": "4.2.1", 868 | "bundled": true, 869 | "optional": true, 870 | "requires": { 871 | "ajv": "4.11.8", 872 | "har-schema": "1.0.5" 873 | } 874 | }, 875 | "has-unicode": { 876 | "version": "2.0.1", 877 | "bundled": true, 878 | "optional": true 879 | }, 880 | "hawk": { 881 | "version": "3.1.3", 882 | "bundled": true, 883 | "optional": true, 884 | "requires": { 885 | "boom": "2.10.1", 886 | "cryptiles": "2.0.5", 887 | "hoek": "2.16.3", 888 | "sntp": "1.0.9" 889 | } 890 | }, 891 | "hoek": { 892 | "version": "2.16.3", 893 | "bundled": true 894 | }, 895 | "http-signature": { 896 | "version": "1.1.1", 897 | "bundled": true, 898 | "optional": true, 899 | "requires": { 900 | "assert-plus": "0.2.0", 901 | "jsprim": "1.4.0", 902 | "sshpk": "1.13.0" 903 | } 904 | }, 905 | "inflight": { 906 | "version": "1.0.6", 907 | "bundled": true, 908 | "requires": { 909 | "once": "1.4.0", 910 | "wrappy": "1.0.2" 911 | } 912 | }, 913 | "inherits": { 914 | "version": "2.0.3", 915 | "bundled": true 916 | }, 917 | "ini": { 918 | "version": "1.3.4", 919 | "bundled": true, 920 | "optional": true 921 | }, 922 | "is-fullwidth-code-point": { 923 | "version": "1.0.0", 924 | "bundled": true, 925 | "requires": { 926 | "number-is-nan": "1.0.1" 927 | } 928 | }, 929 | "is-typedarray": { 930 | "version": "1.0.0", 931 | "bundled": true, 932 | "optional": true 933 | }, 934 | "isarray": { 935 | "version": "1.0.0", 936 | "bundled": true 937 | }, 938 | "isstream": { 939 | "version": "0.1.2", 940 | "bundled": true, 941 | "optional": true 942 | }, 943 | "jodid25519": { 944 | "version": "1.0.2", 945 | "bundled": true, 946 | "optional": true, 947 | "requires": { 948 | "jsbn": "0.1.1" 949 | } 950 | }, 951 | "jsbn": { 952 | "version": "0.1.1", 953 | "bundled": true, 954 | "optional": true 955 | }, 956 | "json-schema": { 957 | "version": "0.2.3", 958 | "bundled": true, 959 | "optional": true 960 | }, 961 | "json-stable-stringify": { 962 | "version": "1.0.1", 963 | "bundled": true, 964 | "optional": true, 965 | "requires": { 966 | "jsonify": "0.0.0" 967 | } 968 | }, 969 | "json-stringify-safe": { 970 | "version": "5.0.1", 971 | "bundled": true, 972 | "optional": true 973 | }, 974 | "jsonify": { 975 | "version": "0.0.0", 976 | "bundled": true, 977 | "optional": true 978 | }, 979 | "jsprim": { 980 | "version": "1.4.0", 981 | "bundled": true, 982 | "optional": true, 983 | "requires": { 984 | "assert-plus": "1.0.0", 985 | "extsprintf": "1.0.2", 986 | "json-schema": "0.2.3", 987 | "verror": "1.3.6" 988 | }, 989 | "dependencies": { 990 | "assert-plus": { 991 | "version": "1.0.0", 992 | "bundled": true, 993 | "optional": true 994 | } 995 | } 996 | }, 997 | "mime-db": { 998 | "version": "1.27.0", 999 | "bundled": true 1000 | }, 1001 | "mime-types": { 1002 | "version": "2.1.15", 1003 | "bundled": true, 1004 | "requires": { 1005 | "mime-db": "1.27.0" 1006 | } 1007 | }, 1008 | "minimatch": { 1009 | "version": "3.0.4", 1010 | "bundled": true, 1011 | "requires": { 1012 | "brace-expansion": "1.1.7" 1013 | } 1014 | }, 1015 | "minimist": { 1016 | "version": "0.0.8", 1017 | "bundled": true 1018 | }, 1019 | "mkdirp": { 1020 | "version": "0.5.1", 1021 | "bundled": true, 1022 | "requires": { 1023 | "minimist": "0.0.8" 1024 | } 1025 | }, 1026 | "ms": { 1027 | "version": "2.0.0", 1028 | "bundled": true, 1029 | "optional": true 1030 | }, 1031 | "node-pre-gyp": { 1032 | "version": "0.6.36", 1033 | "bundled": true, 1034 | "optional": true, 1035 | "requires": { 1036 | "mkdirp": "0.5.1", 1037 | "nopt": "4.0.1", 1038 | "npmlog": "4.1.0", 1039 | "rc": "1.2.1", 1040 | "request": "2.81.0", 1041 | "rimraf": "2.6.1", 1042 | "semver": "5.3.0", 1043 | "tar": "2.2.1", 1044 | "tar-pack": "3.4.0" 1045 | } 1046 | }, 1047 | "nopt": { 1048 | "version": "4.0.1", 1049 | "bundled": true, 1050 | "optional": true, 1051 | "requires": { 1052 | "abbrev": "1.1.0", 1053 | "osenv": "0.1.4" 1054 | } 1055 | }, 1056 | "npmlog": { 1057 | "version": "4.1.0", 1058 | "bundled": true, 1059 | "optional": true, 1060 | "requires": { 1061 | "are-we-there-yet": "1.1.4", 1062 | "console-control-strings": "1.1.0", 1063 | "gauge": "2.7.4", 1064 | "set-blocking": "2.0.0" 1065 | } 1066 | }, 1067 | "number-is-nan": { 1068 | "version": "1.0.1", 1069 | "bundled": true 1070 | }, 1071 | "oauth-sign": { 1072 | "version": "0.8.2", 1073 | "bundled": true, 1074 | "optional": true 1075 | }, 1076 | "object-assign": { 1077 | "version": "4.1.1", 1078 | "bundled": true, 1079 | "optional": true 1080 | }, 1081 | "once": { 1082 | "version": "1.4.0", 1083 | "bundled": true, 1084 | "requires": { 1085 | "wrappy": "1.0.2" 1086 | } 1087 | }, 1088 | "os-homedir": { 1089 | "version": "1.0.2", 1090 | "bundled": true, 1091 | "optional": true 1092 | }, 1093 | "os-tmpdir": { 1094 | "version": "1.0.2", 1095 | "bundled": true, 1096 | "optional": true 1097 | }, 1098 | "osenv": { 1099 | "version": "0.1.4", 1100 | "bundled": true, 1101 | "optional": true, 1102 | "requires": { 1103 | "os-homedir": "1.0.2", 1104 | "os-tmpdir": "1.0.2" 1105 | } 1106 | }, 1107 | "path-is-absolute": { 1108 | "version": "1.0.1", 1109 | "bundled": true 1110 | }, 1111 | "performance-now": { 1112 | "version": "0.2.0", 1113 | "bundled": true, 1114 | "optional": true 1115 | }, 1116 | "process-nextick-args": { 1117 | "version": "1.0.7", 1118 | "bundled": true 1119 | }, 1120 | "punycode": { 1121 | "version": "1.4.1", 1122 | "bundled": true, 1123 | "optional": true 1124 | }, 1125 | "qs": { 1126 | "version": "6.4.0", 1127 | "bundled": true, 1128 | "optional": true 1129 | }, 1130 | "rc": { 1131 | "version": "1.2.1", 1132 | "bundled": true, 1133 | "optional": true, 1134 | "requires": { 1135 | "deep-extend": "0.4.2", 1136 | "ini": "1.3.4", 1137 | "minimist": "1.2.0", 1138 | "strip-json-comments": "2.0.1" 1139 | }, 1140 | "dependencies": { 1141 | "minimist": { 1142 | "version": "1.2.0", 1143 | "bundled": true, 1144 | "optional": true 1145 | } 1146 | } 1147 | }, 1148 | "readable-stream": { 1149 | "version": "2.2.9", 1150 | "bundled": true, 1151 | "requires": { 1152 | "buffer-shims": "1.0.0", 1153 | "core-util-is": "1.0.2", 1154 | "inherits": "2.0.3", 1155 | "isarray": "1.0.0", 1156 | "process-nextick-args": "1.0.7", 1157 | "string_decoder": "1.0.1", 1158 | "util-deprecate": "1.0.2" 1159 | } 1160 | }, 1161 | "request": { 1162 | "version": "2.81.0", 1163 | "bundled": true, 1164 | "optional": true, 1165 | "requires": { 1166 | "aws-sign2": "0.6.0", 1167 | "aws4": "1.6.0", 1168 | "caseless": "0.12.0", 1169 | "combined-stream": "1.0.5", 1170 | "extend": "3.0.1", 1171 | "forever-agent": "0.6.1", 1172 | "form-data": "2.1.4", 1173 | "har-validator": "4.2.1", 1174 | "hawk": "3.1.3", 1175 | "http-signature": "1.1.1", 1176 | "is-typedarray": "1.0.0", 1177 | "isstream": "0.1.2", 1178 | "json-stringify-safe": "5.0.1", 1179 | "mime-types": "2.1.15", 1180 | "oauth-sign": "0.8.2", 1181 | "performance-now": "0.2.0", 1182 | "qs": "6.4.0", 1183 | "safe-buffer": "5.0.1", 1184 | "stringstream": "0.0.5", 1185 | "tough-cookie": "2.3.2", 1186 | "tunnel-agent": "0.6.0", 1187 | "uuid": "3.0.1" 1188 | } 1189 | }, 1190 | "rimraf": { 1191 | "version": "2.6.1", 1192 | "bundled": true, 1193 | "requires": { 1194 | "glob": "7.1.2" 1195 | } 1196 | }, 1197 | "safe-buffer": { 1198 | "version": "5.0.1", 1199 | "bundled": true 1200 | }, 1201 | "semver": { 1202 | "version": "5.3.0", 1203 | "bundled": true, 1204 | "optional": true 1205 | }, 1206 | "set-blocking": { 1207 | "version": "2.0.0", 1208 | "bundled": true, 1209 | "optional": true 1210 | }, 1211 | "signal-exit": { 1212 | "version": "3.0.2", 1213 | "bundled": true, 1214 | "optional": true 1215 | }, 1216 | "sntp": { 1217 | "version": "1.0.9", 1218 | "bundled": true, 1219 | "optional": true, 1220 | "requires": { 1221 | "hoek": "2.16.3" 1222 | } 1223 | }, 1224 | "sshpk": { 1225 | "version": "1.13.0", 1226 | "bundled": true, 1227 | "optional": true, 1228 | "requires": { 1229 | "asn1": "0.2.3", 1230 | "assert-plus": "1.0.0", 1231 | "bcrypt-pbkdf": "1.0.1", 1232 | "dashdash": "1.14.1", 1233 | "ecc-jsbn": "0.1.1", 1234 | "getpass": "0.1.7", 1235 | "jodid25519": "1.0.2", 1236 | "jsbn": "0.1.1", 1237 | "tweetnacl": "0.14.5" 1238 | }, 1239 | "dependencies": { 1240 | "assert-plus": { 1241 | "version": "1.0.0", 1242 | "bundled": true, 1243 | "optional": true 1244 | } 1245 | } 1246 | }, 1247 | "string_decoder": { 1248 | "version": "1.0.1", 1249 | "bundled": true, 1250 | "requires": { 1251 | "safe-buffer": "5.0.1" 1252 | } 1253 | }, 1254 | "string-width": { 1255 | "version": "1.0.2", 1256 | "bundled": true, 1257 | "requires": { 1258 | "code-point-at": "1.1.0", 1259 | "is-fullwidth-code-point": "1.0.0", 1260 | "strip-ansi": "3.0.1" 1261 | } 1262 | }, 1263 | "stringstream": { 1264 | "version": "0.0.5", 1265 | "bundled": true, 1266 | "optional": true 1267 | }, 1268 | "strip-ansi": { 1269 | "version": "3.0.1", 1270 | "bundled": true, 1271 | "requires": { 1272 | "ansi-regex": "2.1.1" 1273 | } 1274 | }, 1275 | "strip-json-comments": { 1276 | "version": "2.0.1", 1277 | "bundled": true, 1278 | "optional": true 1279 | }, 1280 | "tar": { 1281 | "version": "2.2.1", 1282 | "bundled": true, 1283 | "requires": { 1284 | "block-stream": "0.0.9", 1285 | "fstream": "1.0.11", 1286 | "inherits": "2.0.3" 1287 | } 1288 | }, 1289 | "tar-pack": { 1290 | "version": "3.4.0", 1291 | "bundled": true, 1292 | "optional": true, 1293 | "requires": { 1294 | "debug": "2.6.8", 1295 | "fstream": "1.0.11", 1296 | "fstream-ignore": "1.0.5", 1297 | "once": "1.4.0", 1298 | "readable-stream": "2.2.9", 1299 | "rimraf": "2.6.1", 1300 | "tar": "2.2.1", 1301 | "uid-number": "0.0.6" 1302 | } 1303 | }, 1304 | "tough-cookie": { 1305 | "version": "2.3.2", 1306 | "bundled": true, 1307 | "optional": true, 1308 | "requires": { 1309 | "punycode": "1.4.1" 1310 | } 1311 | }, 1312 | "tunnel-agent": { 1313 | "version": "0.6.0", 1314 | "bundled": true, 1315 | "optional": true, 1316 | "requires": { 1317 | "safe-buffer": "5.0.1" 1318 | } 1319 | }, 1320 | "tweetnacl": { 1321 | "version": "0.14.5", 1322 | "bundled": true, 1323 | "optional": true 1324 | }, 1325 | "uid-number": { 1326 | "version": "0.0.6", 1327 | "bundled": true, 1328 | "optional": true 1329 | }, 1330 | "util-deprecate": { 1331 | "version": "1.0.2", 1332 | "bundled": true 1333 | }, 1334 | "uuid": { 1335 | "version": "3.0.1", 1336 | "bundled": true, 1337 | "optional": true 1338 | }, 1339 | "verror": { 1340 | "version": "1.3.6", 1341 | "bundled": true, 1342 | "optional": true, 1343 | "requires": { 1344 | "extsprintf": "1.0.2" 1345 | } 1346 | }, 1347 | "wide-align": { 1348 | "version": "1.1.2", 1349 | "bundled": true, 1350 | "optional": true, 1351 | "requires": { 1352 | "string-width": "1.0.2" 1353 | } 1354 | }, 1355 | "wrappy": { 1356 | "version": "1.0.2", 1357 | "bundled": true 1358 | } 1359 | } 1360 | }, 1361 | "get-stream": { 1362 | "version": "3.0.0", 1363 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", 1364 | "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=" 1365 | }, 1366 | "glob-base": { 1367 | "version": "0.3.0", 1368 | "resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz", 1369 | "integrity": "sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=", 1370 | "requires": { 1371 | "glob-parent": "2.0.0", 1372 | "is-glob": "2.0.1" 1373 | } 1374 | }, 1375 | "glob-parent": { 1376 | "version": "2.0.0", 1377 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz", 1378 | "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=", 1379 | "requires": { 1380 | "is-glob": "2.0.1" 1381 | } 1382 | }, 1383 | "got": { 1384 | "version": "6.7.1", 1385 | "resolved": "https://registry.npmjs.org/got/-/got-6.7.1.tgz", 1386 | "integrity": "sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA=", 1387 | "requires": { 1388 | "create-error-class": "3.0.2", 1389 | "duplexer3": "0.1.4", 1390 | "get-stream": "3.0.0", 1391 | "is-redirect": "1.0.0", 1392 | "is-retry-allowed": "1.1.0", 1393 | "is-stream": "1.1.0", 1394 | "lowercase-keys": "1.0.0", 1395 | "safe-buffer": "5.1.1", 1396 | "timed-out": "4.0.1", 1397 | "unzip-response": "2.0.1", 1398 | "url-parse-lax": "1.0.0" 1399 | } 1400 | }, 1401 | "graceful-fs": { 1402 | "version": "4.1.11", 1403 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", 1404 | "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=" 1405 | }, 1406 | "has-ansi": { 1407 | "version": "2.0.0", 1408 | "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", 1409 | "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", 1410 | "requires": { 1411 | "ansi-regex": "2.1.1" 1412 | }, 1413 | "dependencies": { 1414 | "ansi-regex": { 1415 | "version": "2.1.1", 1416 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", 1417 | "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" 1418 | } 1419 | } 1420 | }, 1421 | "has-flag": { 1422 | "version": "2.0.0", 1423 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz", 1424 | "integrity": "sha1-6CB68cx7MNRGzHC3NLXovhj4jVE=" 1425 | }, 1426 | "hogan-express": { 1427 | "version": "0.5.2", 1428 | "resolved": "https://registry.npmjs.org/hogan-express/-/hogan-express-0.5.2.tgz", 1429 | "integrity": "sha1-UplKyEKkI9ThB1GBuaMkfeNpUOs=", 1430 | "requires": { 1431 | "hogan.js": "3.0.2" 1432 | } 1433 | }, 1434 | "hogan.js": { 1435 | "version": "3.0.2", 1436 | "resolved": "https://registry.npmjs.org/hogan.js/-/hogan.js-3.0.2.tgz", 1437 | "integrity": "sha1-TNnhq9QpQUbnZ55B14mHMrAse/0=", 1438 | "requires": { 1439 | "mkdirp": "0.3.0", 1440 | "nopt": "1.0.10" 1441 | } 1442 | }, 1443 | "http-errors": { 1444 | "version": "1.6.2", 1445 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.2.tgz", 1446 | "integrity": "sha1-CgAsyFcHGSp+eUbO7cERVfYOxzY=", 1447 | "requires": { 1448 | "depd": "1.1.1", 1449 | "inherits": "2.0.3", 1450 | "setprototypeof": "1.0.3", 1451 | "statuses": "1.3.1" 1452 | } 1453 | }, 1454 | "iconv-lite": { 1455 | "version": "0.4.19", 1456 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz", 1457 | "integrity": "sha512-oTZqweIP51xaGPI4uPa56/Pri/480R+mo7SeU+YETByQNhDG55ycFyNLIgta9vXhILrxXDmF7ZGhqZIcuN0gJQ==" 1458 | }, 1459 | "ignore-by-default": { 1460 | "version": "1.0.1", 1461 | "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", 1462 | "integrity": "sha1-SMptcvbGo68Aqa1K5odr44ieKwk=" 1463 | }, 1464 | "import-lazy": { 1465 | "version": "2.1.0", 1466 | "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", 1467 | "integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=" 1468 | }, 1469 | "imurmurhash": { 1470 | "version": "0.1.4", 1471 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 1472 | "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" 1473 | }, 1474 | "inherits": { 1475 | "version": "2.0.3", 1476 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", 1477 | "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" 1478 | }, 1479 | "ini": { 1480 | "version": "1.3.4", 1481 | "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.4.tgz", 1482 | "integrity": "sha1-BTfLedr1m1mhpRff9wbIbsA5Fi4=" 1483 | }, 1484 | "ipaddr.js": { 1485 | "version": "1.4.0", 1486 | "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.4.0.tgz", 1487 | "integrity": "sha1-KWrKh4qCGBbluF0KKFqZvP9FgvA=" 1488 | }, 1489 | "is-binary-path": { 1490 | "version": "1.0.1", 1491 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", 1492 | "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", 1493 | "requires": { 1494 | "binary-extensions": "1.10.0" 1495 | } 1496 | }, 1497 | "is-buffer": { 1498 | "version": "1.1.5", 1499 | "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz", 1500 | "integrity": "sha1-Hzsm72E7IUuIy8ojzGwB2Hlh7sw=" 1501 | }, 1502 | "is-dotfile": { 1503 | "version": "1.0.3", 1504 | "resolved": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz", 1505 | "integrity": "sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE=" 1506 | }, 1507 | "is-equal-shallow": { 1508 | "version": "0.1.3", 1509 | "resolved": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz", 1510 | "integrity": "sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=", 1511 | "requires": { 1512 | "is-primitive": "2.0.0" 1513 | } 1514 | }, 1515 | "is-extendable": { 1516 | "version": "0.1.1", 1517 | "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", 1518 | "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" 1519 | }, 1520 | "is-extglob": { 1521 | "version": "1.0.0", 1522 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", 1523 | "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=" 1524 | }, 1525 | "is-fullwidth-code-point": { 1526 | "version": "2.0.0", 1527 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", 1528 | "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" 1529 | }, 1530 | "is-glob": { 1531 | "version": "2.0.1", 1532 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", 1533 | "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", 1534 | "requires": { 1535 | "is-extglob": "1.0.0" 1536 | } 1537 | }, 1538 | "is-npm": { 1539 | "version": "1.0.0", 1540 | "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-1.0.0.tgz", 1541 | "integrity": "sha1-8vtjpl5JBbQGyGBydloaTceTufQ=" 1542 | }, 1543 | "is-number": { 1544 | "version": "2.1.0", 1545 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", 1546 | "integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=", 1547 | "requires": { 1548 | "kind-of": "3.2.2" 1549 | } 1550 | }, 1551 | "is-obj": { 1552 | "version": "1.0.1", 1553 | "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", 1554 | "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=" 1555 | }, 1556 | "is-posix-bracket": { 1557 | "version": "0.1.1", 1558 | "resolved": "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz", 1559 | "integrity": "sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q=" 1560 | }, 1561 | "is-primitive": { 1562 | "version": "2.0.0", 1563 | "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz", 1564 | "integrity": "sha1-IHurkWOEmcB7Kt8kCkGochADRXU=" 1565 | }, 1566 | "is-redirect": { 1567 | "version": "1.0.0", 1568 | "resolved": "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz", 1569 | "integrity": "sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ=" 1570 | }, 1571 | "is-retry-allowed": { 1572 | "version": "1.1.0", 1573 | "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz", 1574 | "integrity": "sha1-EaBgVotnM5REAz0BJaYaINVk+zQ=" 1575 | }, 1576 | "is-stream": { 1577 | "version": "1.1.0", 1578 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", 1579 | "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" 1580 | }, 1581 | "isarray": { 1582 | "version": "1.0.0", 1583 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", 1584 | "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" 1585 | }, 1586 | "isexe": { 1587 | "version": "2.0.0", 1588 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 1589 | "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" 1590 | }, 1591 | "isobject": { 1592 | "version": "2.1.0", 1593 | "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", 1594 | "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", 1595 | "requires": { 1596 | "isarray": "1.0.0" 1597 | } 1598 | }, 1599 | "isomorphic-fetch": { 1600 | "version": "2.2.1", 1601 | "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz", 1602 | "integrity": "sha1-YRrhrPFPXoH3KVB0coGf6XM1WKk=", 1603 | "requires": { 1604 | "node-fetch": "1.7.3", 1605 | "whatwg-fetch": "2.0.3" 1606 | } 1607 | }, 1608 | "kind-of": { 1609 | "version": "3.2.2", 1610 | "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", 1611 | "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", 1612 | "requires": { 1613 | "is-buffer": "1.1.5" 1614 | } 1615 | }, 1616 | "latest-version": { 1617 | "version": "3.1.0", 1618 | "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-3.1.0.tgz", 1619 | "integrity": "sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU=", 1620 | "requires": { 1621 | "package-json": "4.0.1" 1622 | } 1623 | }, 1624 | "lodash": { 1625 | "version": "4.17.4", 1626 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz", 1627 | "integrity": "sha1-eCA6TRwyiuHYbcpkYONptX9AVa4=" 1628 | }, 1629 | "lodash._baseassign": { 1630 | "version": "3.2.0", 1631 | "resolved": "https://registry.npmjs.org/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz", 1632 | "integrity": "sha1-jDigmVAPIVrQnlnxci/QxSv+Ck4=", 1633 | "requires": { 1634 | "lodash._basecopy": "3.0.1", 1635 | "lodash.keys": "3.1.2" 1636 | } 1637 | }, 1638 | "lodash._basecopy": { 1639 | "version": "3.0.1", 1640 | "resolved": "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz", 1641 | "integrity": "sha1-jaDmqHbPNEwK2KVIghEd08XHyjY=" 1642 | }, 1643 | "lodash._bindcallback": { 1644 | "version": "3.0.1", 1645 | "resolved": "https://registry.npmjs.org/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz", 1646 | "integrity": "sha1-5THCdkTPi1epnhftlbNcdIeJOS4=" 1647 | }, 1648 | "lodash._createassigner": { 1649 | "version": "3.1.1", 1650 | "resolved": "https://registry.npmjs.org/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz", 1651 | "integrity": "sha1-g4pbri/aymOsIt7o4Z+k5taXCxE=", 1652 | "requires": { 1653 | "lodash._bindcallback": "3.0.1", 1654 | "lodash._isiterateecall": "3.0.9", 1655 | "lodash.restparam": "3.6.1" 1656 | } 1657 | }, 1658 | "lodash._getnative": { 1659 | "version": "3.9.1", 1660 | "resolved": "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz", 1661 | "integrity": "sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U=" 1662 | }, 1663 | "lodash._isiterateecall": { 1664 | "version": "3.0.9", 1665 | "resolved": "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz", 1666 | "integrity": "sha1-UgOte6Ql+uhCRg5pbbnPPmqsBXw=" 1667 | }, 1668 | "lodash.assign": { 1669 | "version": "3.2.0", 1670 | "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-3.2.0.tgz", 1671 | "integrity": "sha1-POnwI0tLIiPilrj6CsH+6OvKZPo=", 1672 | "requires": { 1673 | "lodash._baseassign": "3.2.0", 1674 | "lodash._createassigner": "3.1.1", 1675 | "lodash.keys": "3.1.2" 1676 | } 1677 | }, 1678 | "lodash.defaults": { 1679 | "version": "3.1.2", 1680 | "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-3.1.2.tgz", 1681 | "integrity": "sha1-xzCLGNv4vJNy1wGnNJPGEZK9Liw=", 1682 | "requires": { 1683 | "lodash.assign": "3.2.0", 1684 | "lodash.restparam": "3.6.1" 1685 | } 1686 | }, 1687 | "lodash.isarguments": { 1688 | "version": "3.1.0", 1689 | "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz", 1690 | "integrity": "sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo=" 1691 | }, 1692 | "lodash.isarray": { 1693 | "version": "3.0.4", 1694 | "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz", 1695 | "integrity": "sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=" 1696 | }, 1697 | "lodash.keys": { 1698 | "version": "3.1.2", 1699 | "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz", 1700 | "integrity": "sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo=", 1701 | "requires": { 1702 | "lodash._getnative": "3.9.1", 1703 | "lodash.isarguments": "3.1.0", 1704 | "lodash.isarray": "3.0.4" 1705 | } 1706 | }, 1707 | "lodash.restparam": { 1708 | "version": "3.6.1", 1709 | "resolved": "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz", 1710 | "integrity": "sha1-k2pOMJ7zMKdkXtQUWYbIWuWyCAU=" 1711 | }, 1712 | "lowercase-keys": { 1713 | "version": "1.0.0", 1714 | "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz", 1715 | "integrity": "sha1-TjNms55/VFfjXxMkvfb4jQv8cwY=" 1716 | }, 1717 | "lru-cache": { 1718 | "version": "4.1.1", 1719 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.1.tgz", 1720 | "integrity": "sha512-q4spe4KTfsAS1SUHLO0wz8Qiyf1+vMIAgpRYioFYDMNqKfHQbg+AVDH3i4fvpl71/P1L0dBl+fQi+P37UYf0ew==", 1721 | "requires": { 1722 | "pseudomap": "1.0.2", 1723 | "yallist": "2.1.2" 1724 | } 1725 | }, 1726 | "make-dir": { 1727 | "version": "1.0.0", 1728 | "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.0.0.tgz", 1729 | "integrity": "sha1-l6ARdR6R3YfPre9Ygy67BJNt6Xg=", 1730 | "requires": { 1731 | "pify": "2.3.0" 1732 | } 1733 | }, 1734 | "map-stream": { 1735 | "version": "0.1.0", 1736 | "resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz", 1737 | "integrity": "sha1-5WqpTEyAVaFkBKBnS3jyFffI4ZQ=" 1738 | }, 1739 | "media-typer": { 1740 | "version": "0.3.0", 1741 | "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", 1742 | "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" 1743 | }, 1744 | "merge-descriptors": { 1745 | "version": "1.0.1", 1746 | "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", 1747 | "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" 1748 | }, 1749 | "methods": { 1750 | "version": "1.1.2", 1751 | "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", 1752 | "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" 1753 | }, 1754 | "micromatch": { 1755 | "version": "2.3.11", 1756 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", 1757 | "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", 1758 | "requires": { 1759 | "arr-diff": "2.0.0", 1760 | "array-unique": "0.2.1", 1761 | "braces": "1.8.5", 1762 | "expand-brackets": "0.1.5", 1763 | "extglob": "0.3.2", 1764 | "filename-regex": "2.0.1", 1765 | "is-extglob": "1.0.0", 1766 | "is-glob": "2.0.1", 1767 | "kind-of": "3.2.2", 1768 | "normalize-path": "2.1.1", 1769 | "object.omit": "2.0.1", 1770 | "parse-glob": "3.0.4", 1771 | "regex-cache": "0.4.4" 1772 | } 1773 | }, 1774 | "mime": { 1775 | "version": "1.4.0", 1776 | "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.0.tgz", 1777 | "integrity": "sha512-n9ChLv77+QQEapYz8lV+rIZAW3HhAPW2CXnzb1GN5uMkuczshwvkW7XPsbzU0ZQN3sP47Er2KVkp2p3KyqZKSQ==" 1778 | }, 1779 | "mime-db": { 1780 | "version": "1.30.0", 1781 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz", 1782 | "integrity": "sha1-dMZD2i3Z1qRTmZY0ZbJtXKfXHwE=" 1783 | }, 1784 | "mime-types": { 1785 | "version": "2.1.17", 1786 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz", 1787 | "integrity": "sha1-Cdejk/A+mVp5+K+Fe3Cp4KsWVXo=", 1788 | "requires": { 1789 | "mime-db": "1.30.0" 1790 | } 1791 | }, 1792 | "minimatch": { 1793 | "version": "3.0.4", 1794 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", 1795 | "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", 1796 | "requires": { 1797 | "brace-expansion": "1.1.8" 1798 | } 1799 | }, 1800 | "minimist": { 1801 | "version": "1.2.0", 1802 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", 1803 | "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" 1804 | }, 1805 | "mkdirp": { 1806 | "version": "0.3.0", 1807 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.0.tgz", 1808 | "integrity": "sha1-G79asbqCevI1dRQ0kEJkVfSB/h4=" 1809 | }, 1810 | "ms": { 1811 | "version": "2.0.0", 1812 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 1813 | "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" 1814 | }, 1815 | "nan": { 1816 | "version": "2.7.0", 1817 | "resolved": "https://registry.npmjs.org/nan/-/nan-2.7.0.tgz", 1818 | "integrity": "sha1-2Vv3IeyHfgjbJ27T/G63j5CDrUY=", 1819 | "optional": true 1820 | }, 1821 | "negotiator": { 1822 | "version": "0.6.1", 1823 | "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz", 1824 | "integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=" 1825 | }, 1826 | "node-fetch": { 1827 | "version": "1.7.3", 1828 | "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz", 1829 | "integrity": "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==", 1830 | "requires": { 1831 | "encoding": "0.1.12", 1832 | "is-stream": "1.1.0" 1833 | } 1834 | }, 1835 | "nodemon": { 1836 | "version": "1.12.1", 1837 | "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-1.12.1.tgz", 1838 | "integrity": "sha1-mWpW3EnZ8Wu/G3ik3gjxNjSzh40=", 1839 | "requires": { 1840 | "chokidar": "1.7.0", 1841 | "debug": "2.6.8", 1842 | "es6-promise": "3.3.1", 1843 | "ignore-by-default": "1.0.1", 1844 | "lodash.defaults": "3.1.2", 1845 | "minimatch": "3.0.4", 1846 | "ps-tree": "1.1.0", 1847 | "touch": "3.1.0", 1848 | "undefsafe": "0.0.3", 1849 | "update-notifier": "2.2.0" 1850 | } 1851 | }, 1852 | "nopt": { 1853 | "version": "1.0.10", 1854 | "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", 1855 | "integrity": "sha1-bd0hvSoxQXuScn3Vhfim83YI6+4=", 1856 | "requires": { 1857 | "abbrev": "1.1.0" 1858 | } 1859 | }, 1860 | "normalize-path": { 1861 | "version": "2.1.1", 1862 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", 1863 | "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", 1864 | "requires": { 1865 | "remove-trailing-separator": "1.1.0" 1866 | } 1867 | }, 1868 | "npm-run-path": { 1869 | "version": "2.0.2", 1870 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", 1871 | "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", 1872 | "requires": { 1873 | "path-key": "2.0.1" 1874 | } 1875 | }, 1876 | "number-is-nan": { 1877 | "version": "1.0.1", 1878 | "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", 1879 | "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" 1880 | }, 1881 | "object.omit": { 1882 | "version": "2.0.1", 1883 | "resolved": "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz", 1884 | "integrity": "sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=", 1885 | "requires": { 1886 | "for-own": "0.1.5", 1887 | "is-extendable": "0.1.1" 1888 | } 1889 | }, 1890 | "on-finished": { 1891 | "version": "2.3.0", 1892 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", 1893 | "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", 1894 | "requires": { 1895 | "ee-first": "1.1.1" 1896 | } 1897 | }, 1898 | "p-finally": { 1899 | "version": "1.0.0", 1900 | "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", 1901 | "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=" 1902 | }, 1903 | "package-json": { 1904 | "version": "4.0.1", 1905 | "resolved": "https://registry.npmjs.org/package-json/-/package-json-4.0.1.tgz", 1906 | "integrity": "sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0=", 1907 | "requires": { 1908 | "got": "6.7.1", 1909 | "registry-auth-token": "3.3.1", 1910 | "registry-url": "3.1.0", 1911 | "semver": "5.4.1" 1912 | } 1913 | }, 1914 | "parse-glob": { 1915 | "version": "3.0.4", 1916 | "resolved": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz", 1917 | "integrity": "sha1-ssN2z7EfNVE7rdFz7wu246OIORw=", 1918 | "requires": { 1919 | "glob-base": "0.3.0", 1920 | "is-dotfile": "1.0.3", 1921 | "is-extglob": "1.0.0", 1922 | "is-glob": "2.0.1" 1923 | } 1924 | }, 1925 | "parseurl": { 1926 | "version": "1.3.2", 1927 | "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz", 1928 | "integrity": "sha1-/CidTtiZMRlGDBViUyYs3I3mW/M=" 1929 | }, 1930 | "path-is-absolute": { 1931 | "version": "1.0.1", 1932 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 1933 | "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" 1934 | }, 1935 | "path-key": { 1936 | "version": "2.0.1", 1937 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", 1938 | "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=" 1939 | }, 1940 | "path-to-regexp": { 1941 | "version": "0.1.7", 1942 | "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", 1943 | "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" 1944 | }, 1945 | "pause-stream": { 1946 | "version": "0.0.11", 1947 | "resolved": "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz", 1948 | "integrity": "sha1-/lo0sMvOErWqaitAPuLnO2AvFEU=", 1949 | "requires": { 1950 | "through": "2.3.8" 1951 | } 1952 | }, 1953 | "pify": { 1954 | "version": "2.3.0", 1955 | "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", 1956 | "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" 1957 | }, 1958 | "prepend-http": { 1959 | "version": "1.0.4", 1960 | "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", 1961 | "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=" 1962 | }, 1963 | "preserve": { 1964 | "version": "0.2.0", 1965 | "resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz", 1966 | "integrity": "sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=" 1967 | }, 1968 | "process-nextick-args": { 1969 | "version": "1.0.7", 1970 | "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", 1971 | "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=" 1972 | }, 1973 | "proxy-addr": { 1974 | "version": "1.1.5", 1975 | "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-1.1.5.tgz", 1976 | "integrity": "sha1-ccDuOxAt4/IC87ZPYI0XP8uhqRg=", 1977 | "requires": { 1978 | "forwarded": "0.1.2", 1979 | "ipaddr.js": "1.4.0" 1980 | } 1981 | }, 1982 | "ps-tree": { 1983 | "version": "1.1.0", 1984 | "resolved": "https://registry.npmjs.org/ps-tree/-/ps-tree-1.1.0.tgz", 1985 | "integrity": "sha1-tCGyQUDWID8e08dplrRCewjowBQ=", 1986 | "requires": { 1987 | "event-stream": "3.3.4" 1988 | } 1989 | }, 1990 | "pseudomap": { 1991 | "version": "1.0.2", 1992 | "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", 1993 | "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=" 1994 | }, 1995 | "qs": { 1996 | "version": "6.5.1", 1997 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz", 1998 | "integrity": "sha512-eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A==" 1999 | }, 2000 | "randomatic": { 2001 | "version": "1.1.7", 2002 | "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-1.1.7.tgz", 2003 | "integrity": "sha512-D5JUjPyJbaJDkuAazpVnSfVkLlpeO3wDlPROTMLGKG1zMFNFRgrciKo1ltz/AzNTkqE0HzDx655QOL51N06how==", 2004 | "requires": { 2005 | "is-number": "3.0.0", 2006 | "kind-of": "4.0.0" 2007 | }, 2008 | "dependencies": { 2009 | "is-number": { 2010 | "version": "3.0.0", 2011 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", 2012 | "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", 2013 | "requires": { 2014 | "kind-of": "3.2.2" 2015 | }, 2016 | "dependencies": { 2017 | "kind-of": { 2018 | "version": "3.2.2", 2019 | "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", 2020 | "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", 2021 | "requires": { 2022 | "is-buffer": "1.1.5" 2023 | } 2024 | } 2025 | } 2026 | }, 2027 | "kind-of": { 2028 | "version": "4.0.0", 2029 | "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", 2030 | "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", 2031 | "requires": { 2032 | "is-buffer": "1.1.5" 2033 | } 2034 | } 2035 | } 2036 | }, 2037 | "range-parser": { 2038 | "version": "1.2.0", 2039 | "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz", 2040 | "integrity": "sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=" 2041 | }, 2042 | "rc": { 2043 | "version": "1.2.1", 2044 | "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.1.tgz", 2045 | "integrity": "sha1-LgPo5C7kULjLPc5lvhv4l04d/ZU=", 2046 | "requires": { 2047 | "deep-extend": "0.4.2", 2048 | "ini": "1.3.4", 2049 | "minimist": "1.2.0", 2050 | "strip-json-comments": "2.0.1" 2051 | } 2052 | }, 2053 | "readable-stream": { 2054 | "version": "2.3.3", 2055 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", 2056 | "integrity": "sha512-m+qzzcn7KUxEmd1gMbchF+Y2eIUbieUaxkWtptyHywrX0rE8QEYqPC07Vuy4Wm32/xE16NcdBctb8S0Xe/5IeQ==", 2057 | "requires": { 2058 | "core-util-is": "1.0.2", 2059 | "inherits": "2.0.3", 2060 | "isarray": "1.0.0", 2061 | "process-nextick-args": "1.0.7", 2062 | "safe-buffer": "5.1.1", 2063 | "string_decoder": "1.0.3", 2064 | "util-deprecate": "1.0.2" 2065 | } 2066 | }, 2067 | "readdirp": { 2068 | "version": "2.1.0", 2069 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.1.0.tgz", 2070 | "integrity": "sha1-TtCtBg3zBzMAxIRANz9y0cxkLXg=", 2071 | "requires": { 2072 | "graceful-fs": "4.1.11", 2073 | "minimatch": "3.0.4", 2074 | "readable-stream": "2.3.3", 2075 | "set-immediate-shim": "1.0.1" 2076 | } 2077 | }, 2078 | "regex-cache": { 2079 | "version": "0.4.4", 2080 | "resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz", 2081 | "integrity": "sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ==", 2082 | "requires": { 2083 | "is-equal-shallow": "0.1.3" 2084 | } 2085 | }, 2086 | "registry-auth-token": { 2087 | "version": "3.3.1", 2088 | "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.3.1.tgz", 2089 | "integrity": "sha1-+w0yie4Nmtosu1KvXf5mywcNMAY=", 2090 | "requires": { 2091 | "rc": "1.2.1", 2092 | "safe-buffer": "5.1.1" 2093 | } 2094 | }, 2095 | "registry-url": { 2096 | "version": "3.1.0", 2097 | "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz", 2098 | "integrity": "sha1-PU74cPc93h138M+aOBQyRE4XSUI=", 2099 | "requires": { 2100 | "rc": "1.2.1" 2101 | } 2102 | }, 2103 | "remove-trailing-separator": { 2104 | "version": "1.1.0", 2105 | "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", 2106 | "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=" 2107 | }, 2108 | "repeat-element": { 2109 | "version": "1.1.2", 2110 | "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz", 2111 | "integrity": "sha1-7wiaF40Ug7quTZPrmLT55OEdmQo=" 2112 | }, 2113 | "repeat-string": { 2114 | "version": "1.6.1", 2115 | "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", 2116 | "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" 2117 | }, 2118 | "safe-buffer": { 2119 | "version": "5.1.1", 2120 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", 2121 | "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==" 2122 | }, 2123 | "semver": { 2124 | "version": "5.4.1", 2125 | "resolved": "https://registry.npmjs.org/semver/-/semver-5.4.1.tgz", 2126 | "integrity": "sha512-WfG/X9+oATh81XtllIo/I8gOiY9EXRdv1cQdyykeXK17YcUW3EXUAi2To4pcH6nZtJPr7ZOpM5OMyWJZm+8Rsg==" 2127 | }, 2128 | "semver-diff": { 2129 | "version": "2.1.0", 2130 | "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz", 2131 | "integrity": "sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY=", 2132 | "requires": { 2133 | "semver": "5.4.1" 2134 | } 2135 | }, 2136 | "send": { 2137 | "version": "0.15.4", 2138 | "resolved": "https://registry.npmjs.org/send/-/send-0.15.4.tgz", 2139 | "integrity": "sha1-mF+qPihLAnPHkzZKNcZze9k5Bbk=", 2140 | "requires": { 2141 | "debug": "2.6.8", 2142 | "depd": "1.1.1", 2143 | "destroy": "1.0.4", 2144 | "encodeurl": "1.0.1", 2145 | "escape-html": "1.0.3", 2146 | "etag": "1.8.1", 2147 | "fresh": "0.5.0", 2148 | "http-errors": "1.6.2", 2149 | "mime": "1.3.4", 2150 | "ms": "2.0.0", 2151 | "on-finished": "2.3.0", 2152 | "range-parser": "1.2.0", 2153 | "statuses": "1.3.1" 2154 | }, 2155 | "dependencies": { 2156 | "mime": { 2157 | "version": "1.3.4", 2158 | "resolved": "https://registry.npmjs.org/mime/-/mime-1.3.4.tgz", 2159 | "integrity": "sha1-EV+eO2s9rylZmDyzjxSaLUDrXVM=" 2160 | } 2161 | } 2162 | }, 2163 | "serve-static": { 2164 | "version": "1.12.4", 2165 | "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.12.4.tgz", 2166 | "integrity": "sha1-m2qpjutyU8Tu3Ewfb9vKYJkBqWE=", 2167 | "requires": { 2168 | "encodeurl": "1.0.1", 2169 | "escape-html": "1.0.3", 2170 | "parseurl": "1.3.2", 2171 | "send": "0.15.4" 2172 | } 2173 | }, 2174 | "set-immediate-shim": { 2175 | "version": "1.0.1", 2176 | "resolved": "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz", 2177 | "integrity": "sha1-SysbJ+uAip+NzEgaWOXlb1mfP2E=" 2178 | }, 2179 | "setprototypeof": { 2180 | "version": "1.0.3", 2181 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz", 2182 | "integrity": "sha1-ZlZ+NwQ+608E2RvWWMDL77VbjgQ=" 2183 | }, 2184 | "shebang-command": { 2185 | "version": "1.2.0", 2186 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", 2187 | "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", 2188 | "requires": { 2189 | "shebang-regex": "1.0.0" 2190 | } 2191 | }, 2192 | "shebang-regex": { 2193 | "version": "1.0.0", 2194 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", 2195 | "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=" 2196 | }, 2197 | "signal-exit": { 2198 | "version": "3.0.2", 2199 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", 2200 | "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=" 2201 | }, 2202 | "split": { 2203 | "version": "0.3.3", 2204 | "resolved": "https://registry.npmjs.org/split/-/split-0.3.3.tgz", 2205 | "integrity": "sha1-zQ7qXmOiEd//frDwkcQTPi0N0o8=", 2206 | "requires": { 2207 | "through": "2.3.8" 2208 | } 2209 | }, 2210 | "statuses": { 2211 | "version": "1.3.1", 2212 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz", 2213 | "integrity": "sha1-+vUbnrdKrvOzrPStX2Gr8ky3uT4=" 2214 | }, 2215 | "stream-combiner": { 2216 | "version": "0.0.4", 2217 | "resolved": "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz", 2218 | "integrity": "sha1-TV5DPBhSYd3mI8o/RMWGvPXErRQ=", 2219 | "requires": { 2220 | "duplexer": "0.1.1" 2221 | } 2222 | }, 2223 | "string_decoder": { 2224 | "version": "1.0.3", 2225 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", 2226 | "integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==", 2227 | "requires": { 2228 | "safe-buffer": "5.1.1" 2229 | } 2230 | }, 2231 | "string-width": { 2232 | "version": "2.1.1", 2233 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", 2234 | "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", 2235 | "requires": { 2236 | "is-fullwidth-code-point": "2.0.0", 2237 | "strip-ansi": "4.0.0" 2238 | } 2239 | }, 2240 | "strip-ansi": { 2241 | "version": "4.0.0", 2242 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", 2243 | "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", 2244 | "requires": { 2245 | "ansi-regex": "3.0.0" 2246 | } 2247 | }, 2248 | "strip-eof": { 2249 | "version": "1.0.0", 2250 | "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", 2251 | "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=" 2252 | }, 2253 | "strip-json-comments": { 2254 | "version": "2.0.1", 2255 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", 2256 | "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=" 2257 | }, 2258 | "superagent": { 2259 | "version": "3.6.0", 2260 | "resolved": "https://registry.npmjs.org/superagent/-/superagent-3.6.0.tgz", 2261 | "integrity": "sha512-oWsu4mboo8sVxagp4bNwZIR1rUmypeAJDmNIwT9mF4k06hSu6P92aOjEWLaIj7vsX3fOUp+cRH/04tao+q5Q7A==", 2262 | "requires": { 2263 | "component-emitter": "1.2.1", 2264 | "cookiejar": "2.1.1", 2265 | "debug": "2.6.8", 2266 | "extend": "3.0.1", 2267 | "form-data": "2.3.1", 2268 | "formidable": "1.1.1", 2269 | "methods": "1.1.2", 2270 | "mime": "1.4.0", 2271 | "qs": "6.5.1", 2272 | "readable-stream": "2.3.3" 2273 | } 2274 | }, 2275 | "supports-color": { 2276 | "version": "4.4.0", 2277 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.4.0.tgz", 2278 | "integrity": "sha512-rKC3+DyXWgK0ZLKwmRsrkyHVZAjNkfzeehuFWdGGcqGDTZFH73+RH6S/RDAAxl9GusSjZSUWYLmT9N5pzXFOXQ==", 2279 | "requires": { 2280 | "has-flag": "2.0.0" 2281 | } 2282 | }, 2283 | "term-size": { 2284 | "version": "1.2.0", 2285 | "resolved": "https://registry.npmjs.org/term-size/-/term-size-1.2.0.tgz", 2286 | "integrity": "sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk=", 2287 | "requires": { 2288 | "execa": "0.7.0" 2289 | } 2290 | }, 2291 | "through": { 2292 | "version": "2.3.8", 2293 | "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", 2294 | "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" 2295 | }, 2296 | "timed-out": { 2297 | "version": "4.0.1", 2298 | "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", 2299 | "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=" 2300 | }, 2301 | "touch": { 2302 | "version": "3.1.0", 2303 | "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz", 2304 | "integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==", 2305 | "requires": { 2306 | "nopt": "1.0.10" 2307 | } 2308 | }, 2309 | "type-is": { 2310 | "version": "1.6.15", 2311 | "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.15.tgz", 2312 | "integrity": "sha1-yrEPtJCeRByChC6v4a1kbIGARBA=", 2313 | "requires": { 2314 | "media-typer": "0.3.0", 2315 | "mime-types": "2.1.17" 2316 | } 2317 | }, 2318 | "undefsafe": { 2319 | "version": "0.0.3", 2320 | "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-0.0.3.tgz", 2321 | "integrity": "sha1-7Mo6A+VrmvFzhbqsgSrIO5lKli8=" 2322 | }, 2323 | "unique-string": { 2324 | "version": "1.0.0", 2325 | "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz", 2326 | "integrity": "sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=", 2327 | "requires": { 2328 | "crypto-random-string": "1.0.0" 2329 | } 2330 | }, 2331 | "unpipe": { 2332 | "version": "1.0.0", 2333 | "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", 2334 | "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" 2335 | }, 2336 | "unzip-response": { 2337 | "version": "2.0.1", 2338 | "resolved": "https://registry.npmjs.org/unzip-response/-/unzip-response-2.0.1.tgz", 2339 | "integrity": "sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c=" 2340 | }, 2341 | "update-notifier": { 2342 | "version": "2.2.0", 2343 | "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-2.2.0.tgz", 2344 | "integrity": "sha1-G1g3z5DAc22IYncytmHBOPht5y8=", 2345 | "requires": { 2346 | "boxen": "1.2.1", 2347 | "chalk": "1.1.3", 2348 | "configstore": "3.1.1", 2349 | "import-lazy": "2.1.0", 2350 | "is-npm": "1.0.0", 2351 | "latest-version": "3.1.0", 2352 | "semver-diff": "2.1.0", 2353 | "xdg-basedir": "3.0.0" 2354 | } 2355 | }, 2356 | "url-parse-lax": { 2357 | "version": "1.0.0", 2358 | "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", 2359 | "integrity": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=", 2360 | "requires": { 2361 | "prepend-http": "1.0.4" 2362 | } 2363 | }, 2364 | "util-deprecate": { 2365 | "version": "1.0.2", 2366 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 2367 | "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" 2368 | }, 2369 | "utils-merge": { 2370 | "version": "1.0.0", 2371 | "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.0.tgz", 2372 | "integrity": "sha1-ApT7kiu5N1FTVBxPcJYjHyh8ivg=" 2373 | }, 2374 | "vary": { 2375 | "version": "1.1.1", 2376 | "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.1.tgz", 2377 | "integrity": "sha1-Z1Neu2lMHVIldFeYRmUyP1h+jTc=" 2378 | }, 2379 | "whatwg-fetch": { 2380 | "version": "2.0.3", 2381 | "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz", 2382 | "integrity": "sha1-nITsLc9oGH/wC8ZOEnS0QhduHIQ=" 2383 | }, 2384 | "which": { 2385 | "version": "1.3.0", 2386 | "resolved": "https://registry.npmjs.org/which/-/which-1.3.0.tgz", 2387 | "integrity": "sha512-xcJpopdamTuY5duC/KnTTNBraPK54YwpenP4lzxU8H91GudWpFv38u0CKjclE1Wi2EH2EDz5LRcHcKbCIzqGyg==", 2388 | "requires": { 2389 | "isexe": "2.0.0" 2390 | } 2391 | }, 2392 | "widest-line": { 2393 | "version": "1.0.0", 2394 | "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-1.0.0.tgz", 2395 | "integrity": "sha1-DAnIXCqUaD0Nfq+O4JfVZL8OEFw=", 2396 | "requires": { 2397 | "string-width": "1.0.2" 2398 | }, 2399 | "dependencies": { 2400 | "ansi-regex": { 2401 | "version": "2.1.1", 2402 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", 2403 | "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" 2404 | }, 2405 | "is-fullwidth-code-point": { 2406 | "version": "1.0.0", 2407 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", 2408 | "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", 2409 | "requires": { 2410 | "number-is-nan": "1.0.1" 2411 | } 2412 | }, 2413 | "string-width": { 2414 | "version": "1.0.2", 2415 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", 2416 | "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", 2417 | "requires": { 2418 | "code-point-at": "1.1.0", 2419 | "is-fullwidth-code-point": "1.0.0", 2420 | "strip-ansi": "3.0.1" 2421 | } 2422 | }, 2423 | "strip-ansi": { 2424 | "version": "3.0.1", 2425 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", 2426 | "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", 2427 | "requires": { 2428 | "ansi-regex": "2.1.1" 2429 | } 2430 | } 2431 | } 2432 | }, 2433 | "write-file-atomic": { 2434 | "version": "2.3.0", 2435 | "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.3.0.tgz", 2436 | "integrity": "sha512-xuPeK4OdjWqtfi59ylvVL0Yn35SF3zgcAcv7rBPFHVaEapaDr4GdGgm3j7ckTwH9wHL7fGmgfAnb0+THrHb8tA==", 2437 | "requires": { 2438 | "graceful-fs": "4.1.11", 2439 | "imurmurhash": "0.1.4", 2440 | "signal-exit": "3.0.2" 2441 | } 2442 | }, 2443 | "xdg-basedir": { 2444 | "version": "3.0.0", 2445 | "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz", 2446 | "integrity": "sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ=" 2447 | }, 2448 | "yallist": { 2449 | "version": "2.1.2", 2450 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", 2451 | "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=" 2452 | } 2453 | } 2454 | } 2455 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "cosmicjs": "^2.39.0", 4 | "express": "^4.15.2", 5 | "hogan-express": "^0.5.2", 6 | "nodemon": "^1.11.0" 7 | }, 8 | "scripts": { 9 | "start": "node app.js", 10 | "development": "nodemon app.js" 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /public/images/coin.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 9 | 11 | 18 | 19 | 22 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /public/style.css: -------------------------------------------------------------------------------- 1 | /* Global */ 2 | body { 3 | background: #fafafa; 4 | margin: 0; 5 | font-family: 'Lato', sans-serif; 6 | color: rgba(0,0,0,.8); 7 | } 8 | h1, h2 { 9 | margin: 0; 10 | } 11 | a { 12 | color: #00ab6b; 13 | text-decoration: none; 14 | } 15 | /* helpers */ 16 | .clearfix:after { 17 | content:""; 18 | display:block; 19 | clear:both; 20 | } 21 | /* Fonts */ 22 | .droid { 23 | font-family: 'Droid Serif', serif; 24 | } 25 | /* Components */ 26 | .container { 27 | max-width: 740px; 28 | margin: 0 auto; 29 | padding: 0 15px; 30 | } 31 | .header { 32 | padding: 20px 20px 0 20px; 33 | margin-bottom: 30px; 34 | } 35 | .footer { 36 | margin-top: 60px; 37 | margin-bottom: 60px; 38 | padding: 0 20px; 39 | } 40 | .copyright { 41 | float: right; 42 | } 43 | .site-title { 44 | margin-bottom: 20px; 45 | } 46 | .site-title a { 47 | color: rgba(0,0,0,.8); 48 | } 49 | .site-title__tag { 50 | float: right; 51 | color: #aaa; 52 | font-size: 14px; 53 | margin-top: 10px; 54 | } 55 | .card { 56 | margin-bottom: 40px; 57 | background: #fff; 58 | box-shadow: 0 1px 4px rgba(0,0,0,.04); 59 | border: 1px solid rgba(0,0,0,.09); 60 | border-radius: 3px; 61 | cursor: pointer; 62 | } 63 | .card-padding { 64 | padding: 20px; 65 | } 66 | .no-link { 67 | cursor: default; 68 | } 69 | /* Blog page */ 70 | .blog__title { 71 | margin-bottom: 20px; 72 | font-size: 40px; 73 | } 74 | .blog__title--small { 75 | font-size: 29px; 76 | } 77 | .blog__title a { 78 | color: rgba(0,0,0,.8); 79 | } 80 | .blog__teaser, 81 | .blog__content { 82 | margin-bottom: 30px; 83 | --x-height-multiplier: 0.35; 84 | --baseline-multiplier: 0.179; 85 | letter-spacing: .01rem; 86 | font-weight: 400; 87 | font-style: normal; 88 | font-size: 21px; 89 | line-height: 1.58; 90 | letter-spacing: -.003em; 91 | } 92 | .blog__author { 93 | margin-bottom: 20px; 94 | } 95 | .blog__author-title { 96 | position: relative; 97 | top: 7px; 98 | float: left; 99 | color: #666; 100 | } 101 | .blog__author-image { 102 | float: left; 103 | background-size: cover; 104 | background-repeat: no-repeat; 105 | background-position: center; 106 | width: 36px; 107 | height: 36px; 108 | border-radius: 100px; 109 | margin-right: 10px; 110 | } 111 | .blog__hashes-earned { 112 | position: relative; 113 | top: 3px; 114 | float: left; 115 | color: #666; 116 | margin-left: 20px; 117 | } 118 | .blog__hashes-earned img { 119 | position: relative; 120 | top: 3px; 121 | } 122 | .blog__tags { 123 | margin-bottom: 20px; 124 | } 125 | .tag-pill { 126 | border: none; 127 | color: rgba(0,0,0,.6); 128 | background: rgba(0,0,0,.05); 129 | margin-right: 10px; 130 | padding: 8px 10px 10px 10px; 131 | font-size: 13px; 132 | } 133 | .blog-post-hero { 134 | width: 100%; 135 | height: 500px; 136 | background-size: cover; 137 | background-repeat: no-repeat; 138 | background-position: center; 139 | margin-bottom: 20px; 140 | } 141 | .blog-post-hero--short { 142 | height: 250px; 143 | border-top-right-radius: 3px; 144 | border-top-left-radius: 3px; 145 | margin-bottom: 0; 146 | } 147 | /* Author page */ 148 | .author-page-title { 149 | margin-bottom: 15px; 150 | } 151 | /* The Modal (background) */ 152 | .modal { 153 | display: none; /* Hidden by default */ 154 | position: fixed; /* Stay in place */ 155 | z-index: 1; /* Sit on top */ 156 | padding-top: 60px; /* Location of the box */ 157 | left: 0; 158 | top: 0; 159 | width: 100%; /* Full width */ 160 | height: 100%; /* Full height */ 161 | overflow: auto; /* Enable scroll if needed */ 162 | background-color: rgb(0,0,0); /* Fallback color */ 163 | background-color: rgba(0,0,0,0.4); /* Black w/ opacity */ 164 | } 165 | 166 | /* Modal Content */ 167 | .modal-content { 168 | background-color: #fefefe; 169 | margin: auto; 170 | padding: 40px 40px 60px; 171 | border: 1px solid #888; 172 | width: 60%; 173 | line-height: 30px; 174 | } 175 | 176 | /* The Close Button */ 177 | .close { 178 | color: #aaaaaa; 179 | float: right; 180 | font-size: 28px; 181 | font-weight: bold; 182 | margin-top: -25px; 183 | margin-right: -20px; 184 | } 185 | 186 | .close:hover, 187 | .close:focus { 188 | color: #000; 189 | text-decoration: none; 190 | cursor: pointer; 191 | } 192 | .modal-image { 193 | width: 150px; 194 | float: left; 195 | margin-right: 40px; 196 | } -------------------------------------------------------------------------------- /views/author.html: -------------------------------------------------------------------------------- 1 | {{> header }} 2 |
3 |

Posts by {{ author.title }}

4 | {{# cosmic.objects.type.posts }} 5 |
6 | {{# metadata.hero.imgix_url }} 7 |
8 | {{/ metadata.hero.imgix_url }} 9 |
10 |

11 | {{ title }} 12 |

13 |
14 | 15 |
16 |
17 |
by {{ metadata.author.title }} on {{ friendly_date }}
18 |
  {{ metadata.hashes }} hashes earned
19 |
20 |
21 |
{{{ metadata.teaser }}}
22 |
23 | Read more... 24 |
25 |
26 |
27 | {{/ cosmic.objects.type.posts }} 28 |
29 | {{> footer }} -------------------------------------------------------------------------------- /views/index.html: -------------------------------------------------------------------------------- 1 | {{> header }} 2 |
3 | {{# cosmic.objects.type.posts }} 4 |
5 | {{# metadata.hero.imgix_url }} 6 |
7 | {{/ metadata.hero.imgix_url }} 8 |
9 |

10 | {{ title }} 11 |

12 |
13 | 14 |
15 |
16 |
by {{ metadata.author.title }} on {{ friendly_date }}
17 |
  {{ metadata.hashes }} hashes earned
18 |
19 |
20 |
{{{ metadata.teaser }}}
21 |
22 | Read more... 23 |
24 |
25 |
26 | {{/ cosmic.objects.type.posts }} 27 |
28 | {{> footer }} -------------------------------------------------------------------------------- /views/partials/footer.html: -------------------------------------------------------------------------------- 1 | 22 | 23 | 31 | 54 | 55 | -------------------------------------------------------------------------------- /views/partials/header.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {{# current_post }}{{ current_post.title }}{{/ current_post }} 6 | {{^ current_post }}{{ cosmic.object.header.metadata.site_title }}{{/ current_post }} 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 |

19 | {{ cosmic.object.header.metadata.site_title }} 20 | {{ cosmic.object.header.metadata.site_tag }} 21 |

22 |
23 | {{^ cosmic.objects.type.posts }} 24 | You must add at least one Post to your Bucket. 25 | {{/ cosmic.objects.type.posts }} 26 |
27 |
-------------------------------------------------------------------------------- /views/post.html: -------------------------------------------------------------------------------- 1 | {{> header }} 2 |
3 | {{^ current_post }} 4 |
5 |

Page not found

6 |
7 | {{/ current_post }} 8 | {{# current_post }} 9 | {{# metadata.hero.imgix_url }} 10 |
11 | {{/ metadata.hero.imgix_url }} 12 |
13 |

14 | {{ title }} 15 |

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