├── README.md ├── outdated └── subscriptions-with-apollo │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── angular-cli.json │ ├── package.json │ ├── src │ ├── app │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── client.ts │ │ ├── feed.component.ts │ │ ├── index.ts │ │ ├── new-post.component.ts │ │ └── routes.ts │ ├── assets │ │ └── .gitignore │ ├── environments │ │ ├── environment.dev.ts │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ ├── tsconfig.json │ └── typings.d.ts │ ├── tslint.json │ └── yarn.lock └── quickstart-with-apollo ├── .angular-cli.json ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src ├── app │ ├── app.component.ts │ ├── app.module.ts │ ├── client.ts │ ├── feed.component.ts │ ├── index.ts │ ├── new-post.component.ts │ └── routes.ts ├── assets │ └── .gitignore ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.css └── tsconfig.app.json ├── tsconfig.json ├── tslint.json └── yarn.lock /README.md: -------------------------------------------------------------------------------- 1 | # Angular & GraphQL examples 2 | 3 | Code examples & starter kits to see how Angular works with GraphQL and other technologies. 4 | 5 |
6 | 7 | **

Select an example** from the list above to get started ⤴️

8 | 9 |
10 | 11 |

12 | 13 | The examples above cover the following technologies: 14 | 15 | * [GraphQL](http://graphql.org/) 16 | * [Apollo Client](http://dev.apollodata.com/react/) 17 | * [GraphQL subscriptions](https://www.graph.cool/docs/reference/simple-api/subscriptions-aip7oojeiv/) 18 | * ... 19 | 20 | > Are you looking for another example? [Request it here](https://github.com/graphcool-examples/react-graphql/issues/new). 21 | 22 | ## Tutorials 23 | 24 | * [How to use `create-react-app` with GraphQL & Apollo](https://www.graph.cool/docs/tutorials/create-react-apps-with-apollo-client-aidae4aeg5/) 25 | * [Freecom: Building Intercom with GraphQL and Apollo](https://www.graph.cool/docs/tutorials/freecom-overview-intercom-tutorial-e8a6ajt8ax/) 26 | * [User Authentication with Auth0 for React and Apollo](https://www.graph.cool/docs/tutorials/react-apollo-auth0-pheiph4ooj/) 27 | * [Learn Relay](https://www.learnrelay.org/) / [Learn Apollo](https://www.learnapollo.com/) 28 | 29 | ## Contributors 30 | 31 | A big thank you to all contributors and supporters of this repository 💚 32 | 33 | 34 | nikolasburk 35 | 36 | 37 | schickling 38 | 39 | 40 | marktani 41 | 42 | 43 | kamilkisiela 44 | 45 | 46 | gsans 47 | 48 | 49 | sorenbs 50 | 51 | 52 | ## Help & Community [![Slack Status](https://slack.graph.cool/badge.svg)](https://slack.graph.cool) 53 | 54 | Say hello in our [Slack](http://slack.graph.cool/) or visit the [Graphcool Forum](https://www.graph.cool/forum) if you run into issues or have questions. We love talking to you! 55 | 56 | ![](http://i.imgur.com/5RHR6Ku.png) 57 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/.gitignore: -------------------------------------------------------------------------------- 1 | # See http://help.github.com/ignore-files/ for more about ignoring files. 2 | 3 | dev.sqlite3 4 | 5 | # compiled output 6 | /dist 7 | /tmp 8 | 9 | # dependencies 10 | /node_modules 11 | /bower_components 12 | 13 | # IDEs and editors 14 | /.idea 15 | .project 16 | .classpath 17 | *.launch 18 | .settings/ 19 | 20 | # misc 21 | /.sass-cache 22 | /connect.lock 23 | /coverage/* 24 | /libpeerconnection.log 25 | npm-debug.log 26 | testem.log 27 | /typings 28 | 29 | # e2e 30 | /e2e/*.js 31 | /e2e/*.map 32 | 33 | #System Files 34 | .DS_Store 35 | Thumbs.db 36 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2016 Graphcool Examples 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/README.md: -------------------------------------------------------------------------------- 1 | # Subscriptions Example (with Angular & Apollo) 2 | 3 | * [Angular](https://github.com/angular/angular): Frontend framework for building mobile and desktop web applications 4 | * [Apollo Client](https://github.com/apollographql/apollo-client): Fully-featured, production ready caching GraphQL client 5 | * [Graphcool](https://www.graph.cool): Flexible backend platform combining GraphQL + AWS Lambda 6 | 7 | ## Getting Started 8 | 9 | Subscriptions allow you to bring realtime functionality into your app. You can learn more about subscriptions in our [docs](https://www.graph.cool/docs/reference/simple-api/subscriptions-aip7oojeiv/). 10 | 11 | ### 1. Clone example repository 12 | 13 | ```sh 14 | git clone https://github.com/graphcool-examples/angular-graphql.git 15 | cd angular-graphql/subscriptions-with-apollo 16 | ``` 17 | 18 | ### 2. Create GraphQL API with [`graphcool`](https://www.npmjs.com/package/graphcool) 19 | 20 | ```sh 21 | # Install Graphcool CLI 22 | npm install -g graphcool 23 | 24 | # Create a new project based on the Instagram schema 25 | graphcool init --schema https://graphqlbin.com/instagram.graphql 26 | ``` 27 | 28 | This creates a GraphQL API for the following schema: 29 | 30 | ```graphql 31 | type Post { 32 | description: String! 33 | imageUrl: String! 34 | } 35 | ``` 36 | 37 | 38 | ### 2. Configure app data endpoint 39 | 40 | #### 3.1. Simple API 41 | 42 | Copy the `Simple API` endpoint to `./src/app/client.ts` as the `uri` argument in the `createNetworkInterface` call: 43 | 44 | ```js 45 | const networkInterface = createNetworkInterface({ uri: '__SIMPLE_API_ENDPOINT__' }) 46 | ``` 47 | 48 | #### 3.1. Susbcriptions API 49 | 50 | Copy the `Susbcriptions API` endpoint to `src/app/feed.component.ts` in `ngOnInit` as the argument for the constructor of the `SubscriptionClient`: 51 | 52 | ```js 53 | const wsClient = new Client('__SUBSCRIPTIONS_API_ENDPOINT__') 54 | ``` 55 | 56 | 57 | ### 4. Install dedendencies & run locally 58 | 59 | You're done configuring the example application. Please run the following command and open [localhost:3000](http://localhost:3000) in your browser. 60 | 61 | ```sh 62 | yarn install 63 | yarn start 64 | ``` 65 | 66 | Make sure to open two or more tabs with the page to see subscriptions in action. Have fun exploring! 🎉 67 | 68 | ### 5. Subscriptions Debugger 69 | 70 | You can use the Graphcool Playground to test subscriptions. 71 | 72 | ![](http://graphcool-random.s3.amazonaws.com/images/subscriptions.gif) 73 | 74 | Simply run a subscription query to subscribe in one tab: 75 | 76 | ```graphql 77 | subscription { 78 | Post(filter: { 79 | mutation_in: [CREATED] 80 | }) { 81 | node { 82 | id 83 | imageUrl 84 | description 85 | } 86 | } 87 | } 88 | ``` 89 | 90 | Then, in a different tab you can send a mutation to trigger the mutation: 91 | 92 | ```graphql 93 | mutation { 94 | createPost( 95 | description: "Giraffe", 96 | imageUrl: "http://www.nationalgeographic.com/content/dam/animals/thumbs/rights-exempt/mammals/g/giraffe_thumb.JPG", 97 | ) { 98 | id 99 | } 100 | } 101 | ``` 102 | 103 | 104 | ## Help & Community [![Slack Status](https://slack.graph.cool/badge.svg)](https://slack.graph.cool) 105 | 106 | Say hello in our [Slack](http://slack.graph.cool/) or visit the [Graphcool Forum](https://www.graph.cool/forum) if you run into issues or have questions. We love talking to you! 107 | 108 | ![](http://i.imgur.com/5RHR6Ku.png) 109 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/angular-cli.json: -------------------------------------------------------------------------------- 1 | { 2 | "project": { 3 | "version": "1.0.0-beta.19-3", 4 | "name": "ss" 5 | }, 6 | "apps": [ 7 | { 8 | "root": "src", 9 | "outDir": "dist", 10 | "assets": "assets", 11 | "index": "index.html", 12 | "main": "main.ts", 13 | "test": "test.ts", 14 | "tsconfig": "tsconfig.json", 15 | "prefix": "app", 16 | "mobile": false, 17 | "styles": [ 18 | "styles.css" 19 | ], 20 | "scripts": [], 21 | "environments": { 22 | "source": "environments/environment.ts", 23 | "prod": "environments/environment.prod.ts", 24 | "dev": "environments/environment.dev.ts" 25 | } 26 | } 27 | ], 28 | "addons": [], 29 | "packages": [], 30 | "defaults": { 31 | "styleExt": "css", 32 | "prefixInterfaces": false, 33 | "lazyRoutePrefix": "+" 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-apollo-instagram-example", 3 | "license": "MIT", 4 | "angular-cli": {}, 5 | "scripts": { 6 | "start": "ng serve --port 3000", 7 | "lint": "tslint \"src/**/*.ts\"", 8 | "test": "npm run lint" 9 | }, 10 | "graphql": { 11 | "request": { 12 | "url": "https://api.graph.cool/simple/v1/__PROJECT_ID__" 13 | } 14 | }, 15 | "private": true, 16 | "dependencies": { 17 | "@angular/common": "2.1.2", 18 | "@angular/compiler": "2.1.2", 19 | "@angular/core": "2.1.2", 20 | "@angular/forms": "2.1.2", 21 | "@angular/http": "2.1.2", 22 | "@angular/platform-browser": "2.1.2", 23 | "@angular/platform-browser-dynamic": "2.1.2", 24 | "@angular/router": "3.1.2", 25 | "angular2-apollo": "~0.8.0", 26 | "angular2-moment": "^1.0.0-beta.6", 27 | "apollo-client": "~0.5.1", 28 | "core-js": "^2.4.1", 29 | "graphql-config-parser": "^1.1.3", 30 | "graphql-tag": "^0.1.15", 31 | "rxjs": "5.0.0-beta.12", 32 | "subscriptions-transport-ws": "^0.3.1", 33 | "ts-helpers": "^1.1.2", 34 | "zone.js": "^0.6.26" 35 | }, 36 | "devDependencies": { 37 | "@types/chai": "^3.4.34", 38 | "@types/isomorphic-fetch": "0.0.31", 39 | "@types/node": "^6.0.46", 40 | "angular-cli": "1.0.0-beta.19-3", 41 | "codelyzer": "~0.0.26", 42 | "ts-node": "1.2.1", 43 | "tslint": "3.13.0", 44 | "typed-graphql": "^1.0.2", 45 | "typescript": "^2.0.6" 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/src/app/app.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'app-root', 5 | template: ` 6 |
7 | 8 |
9 | ` 10 | }) 11 | export class AppComponent {} 12 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/src/app/app.module.ts: -------------------------------------------------------------------------------- 1 | import { NgModule } from '@angular/core'; 2 | import { BrowserModule } from '@angular/platform-browser'; 3 | import { FormsModule, ReactiveFormsModule } from '@angular/forms'; 4 | import { RouterModule } from '@angular/router'; 5 | import { ApolloModule } from 'angular2-apollo'; 6 | 7 | import { AppComponent } from './app.component'; 8 | import { FeedComponent } from './feed.component'; 9 | import { NewPostComponent } from './new-post.component'; 10 | import { routes } from './routes'; 11 | import { client } from './client'; 12 | 13 | @NgModule({ 14 | declarations: [ 15 | AppComponent, 16 | FeedComponent, 17 | NewPostComponent, 18 | ], 19 | entryComponents: [ 20 | AppComponent 21 | ], 22 | imports: [ 23 | BrowserModule, 24 | FormsModule, 25 | ReactiveFormsModule, 26 | RouterModule.forRoot(routes), 27 | ApolloModule.withClient(client) 28 | ], 29 | bootstrap: [ AppComponent ], 30 | }) 31 | export class AppModule {} 32 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/src/app/client.ts: -------------------------------------------------------------------------------- 1 | import { ApolloClient, createNetworkInterface } from 'apollo-client'; 2 | 3 | // Polyfill fetch 4 | import 'whatwg-fetch'; 5 | 6 | // __SIMPLE_API_ENDPOINT_ looks similar to: `https://api.graph.cool/simple/v1/` 7 | const networkInterface = createNetworkInterface({ uri: '__SIMPLE_API_ENDPOINT_' }); 8 | 9 | export const client = new ApolloClient({ networkInterface }); 10 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/src/app/feed.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit, OnDestroy } from '@angular/core'; 2 | import { Angular2Apollo } from 'angular2-apollo'; 3 | import { Subscription } from 'rxjs/Subscription'; 4 | import {Client} from 'subscriptions-transport-ws' 5 | 6 | import gql from 'graphql-tag'; 7 | 8 | import 'rxjs/add/operator/toPromise'; 9 | 10 | const AllPostsQuery = gql` 11 | query allPosts { 12 | allPosts { 13 | id 14 | description 15 | imageUrl 16 | } 17 | } 18 | `; 19 | 20 | @Component({ 21 | selector: 'feed', 22 | template: ` 23 | + New Post 24 |
25 |
26 |
27 |
28 | {{post.description}}  29 | Delete 30 |
31 |
32 |
33 | `, 34 | host: {'style': 'width: 100%; display: flex; justify-content: center;'} 35 | }) 36 | 37 | export class FeedComponent implements OnInit, OnDestroy { 38 | 39 | loading: boolean = true; 40 | allPosts: any; 41 | allPostsSub: Subscription; 42 | 43 | constructor( 44 | private apollo: Angular2Apollo 45 | ) {} 46 | 47 | setImage(url: string) { 48 | const styles = { 49 | 'background-image': `url(${url})`, 50 | 'background-size': 'cover', 51 | 'padding-bottom': '100%', 52 | }; 53 | return styles; 54 | } 55 | 56 | handleDelete(id: string) { 57 | this.apollo.mutate({ 58 | mutation: gql` 59 | mutation ($id: ID!) { 60 | deletePost(id: $id) { 61 | id 62 | } 63 | } 64 | `, 65 | variables: { 66 | id: id, 67 | }, 68 | }).toPromise(); 69 | } 70 | 71 | ngOnInit() { 72 | const queryObservable = this.apollo.watchQuery({ 73 | query: AllPostsQuery 74 | }) 75 | this.allPostsSub = queryObservable.subscribe(({data, loading}) => { 76 | this.allPosts = data.allPosts.reverse(); 77 | this.loading = loading; 78 | }); 79 | 80 | // __SUBSCRIPTIONS_API_ENDPOINT_ looks similar to: `wss://subscriptions.graph.cool/v1/` 81 | const wsClient = new Client('__SUBSCRIPTIONS_API_ENDPOINT_', { 82 | timeout: 10000, 83 | reconnect: true 84 | }) 85 | 86 | wsClient.subscribe({ 87 | query: `subscription { 88 | Post(filter: { 89 | mutation_in: [CREATED, UPDATED, DELETED] 90 | }) { 91 | node { 92 | id 93 | imageUrl 94 | description 95 | } 96 | } 97 | }`, 98 | variables: null 99 | }, (err, res) => { 100 | queryObservable.refetch() 101 | }) 102 | } 103 | 104 | ngOnDestroy() { 105 | this.allPostsSub.unsubscribe(); 106 | } 107 | } 108 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/src/app/index.ts: -------------------------------------------------------------------------------- 1 | export * from './app.component'; 2 | export * from './app.module'; 3 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/src/app/new-post.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | import { Router } from '@angular/router'; 3 | import { Angular2Apollo } from 'angular2-apollo'; 4 | 5 | import gql from 'graphql-tag'; 6 | 7 | @Component({ 8 | selector: 'new-post', 9 | template: ` 10 |
11 | 20 | 28 | 33 |
34 | ` 35 | }) 36 | export class NewPostComponent { 37 | description: string; 38 | imageUrl: string; 39 | 40 | constructor( 41 | private router: Router, 42 | private apollo: Angular2Apollo 43 | ) { } 44 | 45 | postImage(): void { 46 | 47 | this.apollo.mutate({ 48 | mutation: gql` 49 | mutation ($description: String!, $imageUrl: String!){ 50 | createPost(description: $description, imageUrl: $imageUrl) { 51 | id 52 | } 53 | } 54 | `, 55 | variables: { 56 | description: this.description, 57 | imageUrl: this.imageUrl, 58 | }, 59 | }) 60 | .toPromise() 61 | .then(() => { 62 | this.router.navigate(['/']); 63 | }); 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/src/app/routes.ts: -------------------------------------------------------------------------------- 1 | import { Routes } from '@angular/router'; 2 | 3 | import { FeedComponent } from './feed.component' 4 | import { NewPostComponent } from './new-post.component'; 5 | 6 | export const routes: Routes = [ 7 | { path: '', component: FeedComponent }, 8 | { path: 'create', component: NewPostComponent } 9 | ]; 10 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/src/assets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/angular-graphql/1c3f493fc12eec77918c405a09458d0caf3a410b/outdated/subscriptions-with-apollo/src/assets/.gitignore -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/src/environments/environment.dev.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: false 3 | }; 4 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/src/environments/environment.ts: -------------------------------------------------------------------------------- 1 | // The file for the current environment will overwrite this one during build. 2 | // Different environments can be found in ./environment.{dev|prod}.ts, and 3 | // you can create your own and use it with the --env flag. 4 | // The build system defaults to the dev environment. 5 | 6 | export const environment = { 7 | production: false 8 | }; 9 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/angular-graphql/1c3f493fc12eec77918c405a09458d0caf3a410b/outdated/subscriptions-with-apollo/src/favicon.ico -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Instacat 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/src/main.ts: -------------------------------------------------------------------------------- 1 | import './polyfills'; 2 | 3 | import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; 4 | import { enableProdMode } from '@angular/core'; 5 | import { environment } from './environments/environment'; 6 | import { AppModule } from './app/'; 7 | 8 | if (environment.production) { 9 | enableProdMode(); 10 | } 11 | 12 | platformBrowserDynamic().bootstrapModule(AppModule); 13 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/src/polyfills.ts: -------------------------------------------------------------------------------- 1 | // This file includes polyfills needed by Angular 2 and is loaded before 2 | // the app. You can add your own extra polyfills to this file. 3 | import 'core-js/es6/symbol'; 4 | import 'core-js/es6/object'; 5 | import 'core-js/es6/function'; 6 | import 'core-js/es6/parse-int'; 7 | import 'core-js/es6/parse-float'; 8 | import 'core-js/es6/number'; 9 | import 'core-js/es6/math'; 10 | import 'core-js/es6/string'; 11 | import 'core-js/es6/date'; 12 | import 'core-js/es6/array'; 13 | import 'core-js/es6/regexp'; 14 | import 'core-js/es6/map'; 15 | import 'core-js/es6/set'; 16 | import 'core-js/es6/reflect'; 17 | 18 | import 'core-js/es7/reflect'; 19 | import 'zone.js/dist/zone'; 20 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/src/styles.css: -------------------------------------------------------------------------------- 1 | .media-vote { 2 | display: table-cell; 3 | vertical-align: top; 4 | padding-right: 10px; 5 | } 6 | .media-vote .btn-score { 7 | border: none; 8 | background-color: transparent; 9 | font-size: 1.3em; 10 | padding: 3px 12px; 11 | line-height: 0; 12 | color: rgba(91, 192, 222, 0.52); 13 | } 14 | .media-vote .btn-score:hover, .media-vote .btn-score.active { 15 | color: #5bc0de; 16 | box-shadow: none; 17 | } 18 | .media-vote .btn-score:active { 19 | color: #5BA2DE; 20 | box-shadow: none; 21 | } 22 | .media-vote .btn-score:focus { 23 | outline: none; 24 | } 25 | .media-vote .vote-score { 26 | text-align: center; 27 | font-size: 1.2em; 28 | } 29 | 30 | .invisible { 31 | visibility: hidden; 32 | } 33 | 34 | body { 35 | padding-bottom: 60px; 36 | } 37 | 38 | .comment-box { 39 | border-top:1px solid black; 40 | padding: 5px; 41 | } 42 | 43 | #footer { 44 | position: fixed; 45 | bottom: 0px; 46 | text-align: center; 47 | width: 100%; 48 | background-color: #f0f0f0; 49 | border-top: 1px solid #c4c4c4; 50 | padding-top: 10px; 51 | } 52 | 53 | #footer li { 54 | display: inline; 55 | margin: 40px 10px; 56 | color: #999; 57 | font-size: 13px; 58 | } 59 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/src/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "declaration": false, 4 | "emitDecoratorMetadata": true, 5 | "experimentalDecorators": true, 6 | "lib": ["es6", "dom", "esnext" ], 7 | "mapRoot": "./", 8 | "module": "es6", 9 | "moduleResolution": "node", 10 | "outDir": "../dist/out-tsc", 11 | "sourceMap": true, 12 | "target": "es5", 13 | "noStrictGenericChecks": true, 14 | "typeRoots": [ 15 | "../node_modules/@types" 16 | ] 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/src/typings.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "rulesDirectory": [ 3 | "node_modules/codelyzer" 4 | ], 5 | "rules": { 6 | "class-name": true, 7 | "comment-format": [ 8 | true, 9 | "check-space" 10 | ], 11 | "curly": true, 12 | "eofline": true, 13 | "forin": true, 14 | "indent": [ 15 | true, 16 | "spaces" 17 | ], 18 | "label-position": true, 19 | "label-undefined": true, 20 | "max-line-length": [ 21 | true, 22 | 140 23 | ], 24 | "member-access": false, 25 | "member-ordering": [ 26 | true, 27 | "static-before-instance", 28 | "variables-before-functions" 29 | ], 30 | "no-arg": true, 31 | "no-bitwise": true, 32 | "no-console": [ 33 | true, 34 | "debug", 35 | "info", 36 | "time", 37 | "timeEnd", 38 | "trace" 39 | ], 40 | "no-construct": true, 41 | "no-debugger": true, 42 | "no-duplicate-key": true, 43 | "no-duplicate-variable": true, 44 | "no-empty": false, 45 | "no-eval": true, 46 | "no-inferrable-types": true, 47 | "no-shadowed-variable": true, 48 | "no-string-literal": false, 49 | "no-switch-case-fall-through": true, 50 | "no-trailing-whitespace": true, 51 | "no-unused-expression": true, 52 | "no-unused-variable": true, 53 | "no-unreachable": true, 54 | "no-use-before-declare": true, 55 | "no-var-keyword": true, 56 | "object-literal-sort-keys": false, 57 | "one-line": [ 58 | true, 59 | "check-open-brace", 60 | "check-catch", 61 | "check-else", 62 | "check-whitespace" 63 | ], 64 | "quotemark": [ 65 | true, 66 | "single" 67 | ], 68 | "radix": true, 69 | "semicolon": [ 70 | "always" 71 | ], 72 | "triple-equals": [ 73 | true, 74 | "allow-null-check" 75 | ], 76 | "typedef-whitespace": [ 77 | true, 78 | { 79 | "call-signature": "nospace", 80 | "index-signature": "nospace", 81 | "parameter": "nospace", 82 | "property-declaration": "nospace", 83 | "variable-declaration": "nospace" 84 | } 85 | ], 86 | "variable-name": false, 87 | "whitespace": [ 88 | true, 89 | "check-branch", 90 | "check-decl", 91 | "check-operator", 92 | "check-separator", 93 | "check-type" 94 | ], 95 | "directive-selector-name": [true, "camelCase"], 96 | "directive-selector-type": [true, "attribute"], 97 | "component-selector-type": [true, "element"], 98 | "use-input-property-decorator": true, 99 | "use-output-property-decorator": true, 100 | "use-host-property-decorator": true, 101 | "no-input-rename": true, 102 | "no-output-rename": true, 103 | "use-life-cycle-interface": true, 104 | "use-pipe-transform-interface": true, 105 | "component-class-suffix": true, 106 | "directive-class-suffix": true 107 | } 108 | } 109 | -------------------------------------------------------------------------------- /quickstart-with-apollo/.angular-cli.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "./node_modules/@angular/cli/lib/config/schema.json", 3 | "project": { 4 | "name": "Instagram" 5 | }, 6 | "apps": [ 7 | { 8 | "root": "src", 9 | "outDir": "dist", 10 | "assets": [ 11 | "assets", 12 | "favicon.ico" 13 | ], 14 | "index": "index.html", 15 | "main": "main.ts", 16 | "polyfills": "polyfills.ts", 17 | "test": "test.ts", 18 | "tsconfig": "tsconfig.app.json", 19 | "prefix": "app", 20 | "styles": [ 21 | "styles.css" 22 | ], 23 | "scripts": [], 24 | "environmentSource": "environments/environment.ts", 25 | "environments": { 26 | "prod": "environments/environment.prod.ts", 27 | "dev": "environments/environment.ts" 28 | } 29 | } 30 | ], 31 | "lint": [{ 32 | "project": "src/tsconfig.app.json" 33 | }], 34 | "defaults": { 35 | "styleExt": "css", 36 | "component": {} 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /quickstart-with-apollo/.gitignore: -------------------------------------------------------------------------------- 1 | # See http://help.github.com/ignore-files/ for more about ignoring files. 2 | 3 | # compiled output 4 | /dist 5 | /tmp 6 | 7 | # dependencies 8 | /node_modules 9 | /bower_components 10 | 11 | # IDEs and editors 12 | /.idea 13 | .project 14 | .classpath 15 | *.launch 16 | .settings/ 17 | 18 | # misc 19 | /.sass-cache 20 | /connect.lock 21 | /coverage/* 22 | /libpeerconnection.log 23 | npm-debug.log 24 | testem.log 25 | /typings 26 | 27 | # e2e 28 | /e2e/*.js 29 | /e2e/*.map 30 | 31 | #System Files 32 | .DS_Store 33 | Thumbs.db 34 | 35 | # Deploy 36 | .netlify 37 | -------------------------------------------------------------------------------- /quickstart-with-apollo/LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2016 Graphcool Examples 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /quickstart-with-apollo/README.md: -------------------------------------------------------------------------------- 1 | # Angular & Apollo Quickstart 2 | 3 | * [Angular](https://github.com/angular/angular): Frontend framework for building mobile and desktop web applications 4 | * [Apollo Client](https://github.com/apollographql/apollo-client): Fully-featured, production ready caching GraphQL client 5 | * [Graphcool](https://www.graph.cool): Flexible backend platform combining GraphQL + AWS Lambda 6 | 7 | ## Example ([GraphQL Playground](https://api.graph.cool/simple/v1/instagram-example)) 8 | 9 | ![](http://imgur.com/3S6fUeI.gif) 10 | 11 | ## Quickstart 12 | 13 | 16 | 17 | ### 1. Clone example repository 18 | 19 | ```sh 20 | git clone https://github.com/graphcool-examples/angular-graphql.git 21 | cd angular-graphql/quickstart-with-apollo 22 | ``` 23 | 24 | ### 2. Create Graphcool service with the [Graphcool CLI](https://docs-next.graph.cool/reference/graphcool-cli/overview-zboghez5go) 25 | 26 | ```sh 27 | # Install Graphcool Framework CLI 28 | npm install -g graphcool 29 | 30 | # Create a new service inside a directory called `server` 31 | graphcool init server 32 | ``` 33 | 34 | This created the following file structure in the current directory: 35 | 36 | ``` 37 | . 38 | └── server 39 | ├── graphcool.yml 40 | ├── types.graphql 41 | └── src 42 | ├── hello.graphql 43 | └── hello.js 44 | ``` 45 | 46 | ### 3. Define data model 47 | 48 | Next, you need to define your data model inside the newly created `types.graphql`-file. 49 | 50 | Replace the current contents in `types.graphql` with the following type definition (you can delete the predefined `User` type): 51 | 52 | ```graphql 53 | type Post @model { 54 | # Required system field 55 | id: ID! @isUnique # read-only (managed by Graphcool) 56 | 57 | # Optional system fields (remove if not needed) 58 | createdAt: DateTime! # read-only (managed by Graphcool) 59 | updatedAt: DateTime! # read-only (managed by Graphcool) 60 | 61 | description: String! 62 | imageUrl: String! 63 | } 64 | ``` 65 | 66 | ### 4. Deploy the GraphQL server 67 | 68 | You're now ready to put your Graphcool service into production! Navigate into the `server` directory and [deploy](https://docs-next.graph.cool/reference/graphcool-cli/commands-aiteerae6l#graphcool-deploy) the service: 69 | 70 | ```sh 71 | cd server 72 | graphcool deploy 73 | ``` 74 | 75 | When prompted which cluster you want to deploy to, choose any of the **Backend-as-a-Service** options (`shared-eu-west-1`, `shared-ap-northeast-1` or `shared-us-west-2`). 76 | 77 | Save the HTTP endpoint for the `Simple API` from the output, you'll need it in the next step. 78 | 79 | > **Note**: You can now test your GraphQL API inside a GraphQL playground. Simply type the `graphcool playground` command and start sending queries and mutations. 80 | 81 | 82 | ### 5. Connect the app with your GraphQL API 83 | 84 | Paste the `Simple API` endpoint to `./src/app/client.ts` as the `uri` argument in the `createNetworkInterface` call: 85 | 86 | ```js 87 | // replace `__SIMPLE_API_ENDPOINT__` with the endpoint from the previous step 88 | const networkInterface = createNetworkInterface({ uri: '__SIMPLE_API_ENDPOINT__' }) 89 | ``` 90 | 91 | ### 4. Install dependencies & run locally 92 | 93 | ```sh 94 | cd .. 95 | yarn install 96 | yarn start # open http://localhost:3000 in your browser 97 | ``` 98 | 99 | ## Next steps 100 | 101 | * [Documentation](https://docs-next.graph.cool) 102 | * [Advanced GraphQL features](https://www.graph.cool/docs/tutorials/advanced-features-eath7duf7d/) 103 | * [Authentication & Permissions](https://www.graph.cool/docs/reference/authorization/overview-iegoo0heez/) 104 | * [Implementing business logic with serverless functions](https://www.graph.cool/docs/reference/functions/overview-boo6uteemo/) 105 | 106 | 107 | ## Help & Community [![Slack Status](https://slack.graph.cool/badge.svg)](https://slack.graph.cool) 108 | 109 | Join our [Slack community](http://slack.graph.cool/) if you run into issues or have questions. We love talking to you! 110 | 111 | ![](http://i.imgur.com/5RHR6Ku.png) 112 | -------------------------------------------------------------------------------- /quickstart-with-apollo/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-apollo-instagram-example", 3 | "license": "MIT", 4 | "scripts": { 5 | "start": "ng serve --port 3000", 6 | "lint": "tslint \"src/**/*.ts\"", 7 | "build": "ng build --prod --aot", 8 | "test": "npm run lint" 9 | }, 10 | "graphql": { 11 | "request": { 12 | "url": "https://api.graph.cool/simple/v1/__PROJECT_ID__" 13 | } 14 | }, 15 | "private": true, 16 | "dependencies": { 17 | "@angular/common": "^4.0.0", 18 | "@angular/compiler": "^4.0.0", 19 | "@angular/core": "^4.0.0", 20 | "@angular/forms": "^4.0.0", 21 | "@angular/http": "^4.0.0", 22 | "@angular/platform-browser": "^4.0.0", 23 | "@angular/platform-browser-dynamic": "^4.0.0", 24 | "@angular/router": "^4.0.0", 25 | "angular2-moment": "^1.3.3", 26 | "apollo-angular": "^0.13.0", 27 | "apollo-client": "^1.0.0", 28 | "core-js": "^2.4.1", 29 | "graphql-config-parser": "^1.2.0", 30 | "graphql-tag": "^1.3.2", 31 | "rxjs": "^5.1.0", 32 | "ts-helpers": "^1.1.1", 33 | "zone.js": "^0.8.4" 34 | }, 35 | "devDependencies": { 36 | "@angular/cli": "^1.0.0", 37 | "@angular/compiler-cli": "^4.0.0", 38 | "codelyzer": "~2.0.0", 39 | "tslint": "~4.5.0", 40 | "typescript": "^2.2.1" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /quickstart-with-apollo/src/app/app.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'app-root', 5 | template: ` 6 |
7 | 8 |
9 | ` 10 | }) 11 | export class AppComponent {} 12 | -------------------------------------------------------------------------------- /quickstart-with-apollo/src/app/app.module.ts: -------------------------------------------------------------------------------- 1 | import { NgModule } from '@angular/core'; 2 | import { BrowserModule } from '@angular/platform-browser'; 3 | import { FormsModule, ReactiveFormsModule } from '@angular/forms'; 4 | import { RouterModule } from '@angular/router'; 5 | import { ApolloModule } from 'apollo-angular'; 6 | 7 | import { AppComponent } from './app.component'; 8 | import { FeedComponent } from './feed.component'; 9 | import { NewPostComponent } from './new-post.component'; 10 | import { routes } from './routes'; 11 | import { provideClient } from './client'; 12 | 13 | @NgModule({ 14 | declarations: [ 15 | AppComponent, 16 | FeedComponent, 17 | NewPostComponent, 18 | ], 19 | entryComponents: [ 20 | AppComponent 21 | ], 22 | imports: [ 23 | BrowserModule, 24 | FormsModule, 25 | ReactiveFormsModule, 26 | RouterModule.forRoot(routes), 27 | ApolloModule.forRoot(provideClient) 28 | ], 29 | bootstrap: [ AppComponent ], 30 | }) 31 | export class AppModule {} 32 | -------------------------------------------------------------------------------- /quickstart-with-apollo/src/app/client.ts: -------------------------------------------------------------------------------- 1 | import { ApolloClient, createNetworkInterface } from 'apollo-client'; 2 | 3 | // Paste your endpoint for the Simple API here. 4 | // Info: https://github.com/graphcool-examples/angular-apollo-instagram-example#2-create-graphql-api-with-graphcool 5 | const networkInterface = createNetworkInterface({ uri: '__SIMPLE_API_ENDPOINT__' }) 6 | 7 | const client = new ApolloClient({ networkInterface }); 8 | 9 | export function provideClient(): ApolloClient { 10 | return client; 11 | } 12 | -------------------------------------------------------------------------------- /quickstart-with-apollo/src/app/feed.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit, OnDestroy } from '@angular/core'; 2 | import { Apollo } from 'apollo-angular'; 3 | import { Subscription } from 'rxjs/Subscription'; 4 | 5 | import gql from 'graphql-tag'; 6 | 7 | import 'rxjs/add/operator/toPromise'; 8 | 9 | const AllPostsQuery = gql` 10 | query allPosts { 11 | allPosts { 12 | id 13 | description 14 | imageUrl 15 | } 16 | } 17 | `; 18 | 19 | @Component({ 20 | selector: 'app-feed', 21 | template: ` 22 | + New Post 23 |
24 |
25 |
26 |
27 | {{post.description}}  28 | Delete 29 |
30 |
31 |
32 | `, 33 | host: {'style': 'width: 100%; display: flex; justify-content: center;'} 34 | }) 35 | export class FeedComponent implements OnInit, OnDestroy { 36 | 37 | loading = true; 38 | allPosts: any; 39 | allPostsSub: Subscription; 40 | 41 | constructor( 42 | private apollo: Apollo 43 | ) {} 44 | 45 | setImage(url: string) { 46 | const styles = { 47 | 'background-image': `url(${url})`, 48 | 'background-size': 'cover', 49 | 'padding-bottom': '100%', 50 | }; 51 | return styles; 52 | } 53 | 54 | handleDelete(id: string) { 55 | this.apollo.mutate({ 56 | mutation: gql` 57 | mutation ($id: ID!) { 58 | deletePost(id: $id) { 59 | id 60 | } 61 | } 62 | `, 63 | variables: { 64 | id: id, 65 | }, 66 | updateQueries: { 67 | allPosts: (prev: any) => { 68 | const allPosts = prev.allPosts.filter(post => post.id !== id); 69 | 70 | return { 71 | allPosts: [...allPosts] 72 | }; 73 | } 74 | } 75 | }).toPromise(); 76 | } 77 | 78 | ngOnInit() { 79 | this.allPostsSub = this.apollo.watchQuery({ 80 | query: AllPostsQuery 81 | }).subscribe(({data, loading}: any) => { 82 | this.allPosts = data.allPosts; 83 | this.loading = loading; 84 | }); 85 | } 86 | 87 | ngOnDestroy() { 88 | this.allPostsSub.unsubscribe(); 89 | } 90 | } 91 | -------------------------------------------------------------------------------- /quickstart-with-apollo/src/app/index.ts: -------------------------------------------------------------------------------- 1 | export * from './app.component'; 2 | export * from './app.module'; 3 | -------------------------------------------------------------------------------- /quickstart-with-apollo/src/app/new-post.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | import { Router } from '@angular/router'; 3 | import { Apollo } from 'apollo-angular'; 4 | 5 | import gql from 'graphql-tag'; 6 | 7 | @Component({ 8 | selector: 'app-new-post', 9 | template: ` 10 |
11 | 20 | 28 | 33 |
34 | ` 35 | }) 36 | export class NewPostComponent { 37 | description: string; 38 | imageUrl: string; 39 | 40 | constructor( 41 | private router: Router, 42 | private apollo: Apollo 43 | ) { } 44 | 45 | postImage(): void { 46 | 47 | this.apollo.mutate({ 48 | mutation: gql` 49 | mutation ($description: String!, $imageUrl: String!){ 50 | createPost(description: $description, imageUrl: $imageUrl) { 51 | id 52 | } 53 | } 54 | `, 55 | variables: { 56 | description: this.description, 57 | imageUrl: this.imageUrl, 58 | }, 59 | }) 60 | .toPromise() 61 | .then(() => { 62 | this.router.navigate(['/']); 63 | }); 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /quickstart-with-apollo/src/app/routes.ts: -------------------------------------------------------------------------------- 1 | import { Routes } from '@angular/router'; 2 | 3 | import { FeedComponent } from './feed.component'; 4 | import { NewPostComponent } from './new-post.component'; 5 | 6 | export const routes: Routes = [ 7 | { path: '', component: FeedComponent }, 8 | { path: 'create', component: NewPostComponent } 9 | ]; 10 | -------------------------------------------------------------------------------- /quickstart-with-apollo/src/assets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/angular-graphql/1c3f493fc12eec77918c405a09458d0caf3a410b/quickstart-with-apollo/src/assets/.gitignore -------------------------------------------------------------------------------- /quickstart-with-apollo/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /quickstart-with-apollo/src/environments/environment.ts: -------------------------------------------------------------------------------- 1 | // The file for the current environment will overwrite this one during build. 2 | // Different environments can be found in ./environment.{dev|prod}.ts, and 3 | // you can create your own and use it with the --env flag. 4 | // The build system defaults to the dev environment. 5 | 6 | export const environment = { 7 | production: false 8 | }; 9 | -------------------------------------------------------------------------------- /quickstart-with-apollo/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/angular-graphql/1c3f493fc12eec77918c405a09458d0caf3a410b/quickstart-with-apollo/src/favicon.ico -------------------------------------------------------------------------------- /quickstart-with-apollo/src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Instacat 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /quickstart-with-apollo/src/main.ts: -------------------------------------------------------------------------------- 1 | import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; 2 | import { enableProdMode } from '@angular/core'; 3 | import { environment } from './environments/environment'; 4 | import { AppModule } from './app/'; 5 | 6 | if (environment.production) { 7 | enableProdMode(); 8 | } 9 | 10 | platformBrowserDynamic().bootstrapModule(AppModule); 11 | -------------------------------------------------------------------------------- /quickstart-with-apollo/src/polyfills.ts: -------------------------------------------------------------------------------- 1 | // This file includes polyfills needed by Angular 2 and is loaded before 2 | // the app. You can add your own extra polyfills to this file. 3 | import 'core-js/es6/symbol'; 4 | import 'core-js/es6/object'; 5 | import 'core-js/es6/function'; 6 | import 'core-js/es6/parse-int'; 7 | import 'core-js/es6/parse-float'; 8 | import 'core-js/es6/number'; 9 | import 'core-js/es6/math'; 10 | import 'core-js/es6/string'; 11 | import 'core-js/es6/date'; 12 | import 'core-js/es6/array'; 13 | import 'core-js/es6/regexp'; 14 | import 'core-js/es6/map'; 15 | import 'core-js/es6/set'; 16 | import 'core-js/es6/reflect'; 17 | 18 | import 'core-js/es7/reflect'; 19 | import 'zone.js/dist/zone'; 20 | 21 | // Polyfill fetch 22 | import 'whatwg-fetch'; 23 | -------------------------------------------------------------------------------- /quickstart-with-apollo/src/styles.css: -------------------------------------------------------------------------------- 1 | .media-vote { 2 | display: table-cell; 3 | vertical-align: top; 4 | padding-right: 10px; 5 | } 6 | .media-vote .btn-score { 7 | border: none; 8 | background-color: transparent; 9 | font-size: 1.3em; 10 | padding: 3px 12px; 11 | line-height: 0; 12 | color: rgba(91, 192, 222, 0.52); 13 | } 14 | .media-vote .btn-score:hover, .media-vote .btn-score.active { 15 | color: #5bc0de; 16 | box-shadow: none; 17 | } 18 | .media-vote .btn-score:active { 19 | color: #5BA2DE; 20 | box-shadow: none; 21 | } 22 | .media-vote .btn-score:focus { 23 | outline: none; 24 | } 25 | .media-vote .vote-score { 26 | text-align: center; 27 | font-size: 1.2em; 28 | } 29 | 30 | .invisible { 31 | visibility: hidden; 32 | } 33 | 34 | body { 35 | padding-bottom: 60px; 36 | } 37 | 38 | .comment-box { 39 | border-top:1px solid black; 40 | padding: 5px; 41 | } 42 | 43 | #footer { 44 | position: fixed; 45 | bottom: 0px; 46 | text-align: center; 47 | width: 100%; 48 | background-color: #f0f0f0; 49 | border-top: 1px solid #c4c4c4; 50 | padding-top: 10px; 51 | } 52 | 53 | #footer li { 54 | display: inline; 55 | margin: 40px 10px; 56 | color: #999; 57 | font-size: 13px; 58 | } 59 | -------------------------------------------------------------------------------- /quickstart-with-apollo/src/tsconfig.app.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "declaration": false, 4 | "emitDecoratorMetadata": true, 5 | "experimentalDecorators": true, 6 | "lib": ["es6", "dom", "esnext"], 7 | "mapRoot": "./", 8 | "module": "es6", 9 | "moduleResolution": "node", 10 | "outDir": "../dist/out-tsc", 11 | "sourceMap": true, 12 | "target": "es5", 13 | "noStrictGenericChecks": true, 14 | "typeRoots": [ 15 | "../node_modules/@types" 16 | ] 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /quickstart-with-apollo/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compileOnSave": false, 3 | "compilerOptions": { 4 | "outDir": "./dist/out-tsc", 5 | "baseUrl": "src", 6 | "sourceMap": true, 7 | "declaration": false, 8 | "moduleResolution": "node", 9 | "emitDecoratorMetadata": true, 10 | "experimentalDecorators": true, 11 | "target": "es5", 12 | "typeRoots": [ 13 | "node_modules/@types" 14 | ], 15 | "lib": [ 16 | "es2016", 17 | "dom" 18 | ] 19 | } 20 | } -------------------------------------------------------------------------------- /quickstart-with-apollo/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "rulesDirectory": [ 3 | "node_modules/codelyzer" 4 | ], 5 | "rules": { 6 | "callable-types": true, 7 | "class-name": true, 8 | "comment-format": [ 9 | true, 10 | "check-space" 11 | ], 12 | "curly": true, 13 | "eofline": true, 14 | "forin": true, 15 | "import-blacklist": [true, "rxjs"], 16 | "import-spacing": true, 17 | "indent": [ 18 | true, 19 | "spaces" 20 | ], 21 | "interface-over-type-literal": true, 22 | "label-position": true, 23 | "max-line-length": [ 24 | true, 25 | 140 26 | ], 27 | "member-access": false, 28 | "member-ordering": [ 29 | true, 30 | "static-before-instance", 31 | "variables-before-functions" 32 | ], 33 | "no-arg": true, 34 | "no-bitwise": true, 35 | "no-console": [ 36 | true, 37 | "debug", 38 | "info", 39 | "time", 40 | "timeEnd", 41 | "trace" 42 | ], 43 | "no-construct": true, 44 | "no-debugger": true, 45 | "no-duplicate-variable": true, 46 | "no-empty": false, 47 | "no-empty-interface": true, 48 | "no-eval": true, 49 | "no-inferrable-types": [true, "ignore-params"], 50 | "no-shadowed-variable": true, 51 | "no-string-literal": false, 52 | "no-string-throw": true, 53 | "no-switch-case-fall-through": true, 54 | "no-trailing-whitespace": true, 55 | "no-unused-expression": true, 56 | "no-use-before-declare": true, 57 | "no-var-keyword": true, 58 | "object-literal-sort-keys": false, 59 | "one-line": [ 60 | true, 61 | "check-open-brace", 62 | "check-catch", 63 | "check-else", 64 | "check-whitespace" 65 | ], 66 | "prefer-const": true, 67 | "quotemark": [ 68 | true, 69 | "single" 70 | ], 71 | "radix": true, 72 | "semicolon": [ 73 | "always" 74 | ], 75 | "triple-equals": [ 76 | true, 77 | "allow-null-check" 78 | ], 79 | "typedef-whitespace": [ 80 | true, 81 | { 82 | "call-signature": "nospace", 83 | "index-signature": "nospace", 84 | "parameter": "nospace", 85 | "property-declaration": "nospace", 86 | "variable-declaration": "nospace" 87 | } 88 | ], 89 | "typeof-compare": true, 90 | "unified-signatures": true, 91 | "variable-name": false, 92 | "whitespace": [ 93 | true, 94 | "check-branch", 95 | "check-decl", 96 | "check-operator", 97 | "check-separator", 98 | "check-type" 99 | ], 100 | 101 | "directive-selector": [true, "attribute", "app", "camelCase"], 102 | "component-selector": [true, "element", "app", "kebab-case"], 103 | "use-input-property-decorator": true, 104 | "use-output-property-decorator": true, 105 | "use-host-property-decorator": false, 106 | "no-input-rename": true, 107 | "no-output-rename": true, 108 | "use-life-cycle-interface": true, 109 | "use-pipe-transform-interface": true, 110 | "component-class-suffix": true, 111 | "directive-class-suffix": true, 112 | "no-access-missing-member": true, 113 | "templates-use-public": true, 114 | "invoke-injectable": true 115 | } 116 | } 117 | -------------------------------------------------------------------------------- /quickstart-with-apollo/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@angular/cli@^1.0.0": 6 | version "1.0.0" 7 | resolved "https://registry.yarnpkg.com/@angular/cli/-/cli-1.0.0.tgz#7bfde1e7c5f28bf5bed4dda1352ee67ee887302f" 8 | dependencies: 9 | "@ngtools/json-schema" "1.0.5" 10 | "@ngtools/webpack" "1.3.0" 11 | autoprefixer "^6.5.3" 12 | chalk "^1.1.3" 13 | common-tags "^1.3.1" 14 | css-loader "^0.26.1" 15 | cssnano "^3.10.0" 16 | debug "^2.1.3" 17 | denodeify "^1.2.1" 18 | diff "^3.1.0" 19 | ember-cli-normalize-entity-name "^1.0.0" 20 | ember-cli-string-utils "^1.0.0" 21 | exports-loader "^0.6.3" 22 | extract-text-webpack-plugin "~2.0.0" 23 | file-loader "^0.10.0" 24 | fs-extra "^2.0.0" 25 | get-caller-file "^1.0.0" 26 | glob "^7.0.3" 27 | html-webpack-plugin "^2.19.0" 28 | inflection "^1.7.0" 29 | inquirer "^3.0.0" 30 | isbinaryfile "^3.0.0" 31 | istanbul-instrumenter-loader "^2.0.0" 32 | json-loader "^0.5.4" 33 | karma-sourcemap-loader "^0.3.7" 34 | karma-webpack "^2.0.0" 35 | less "^2.7.2" 36 | less-loader "^2.2.3" 37 | lodash "^4.11.1" 38 | minimatch "^3.0.3" 39 | node-modules-path "^1.0.0" 40 | nopt "^4.0.1" 41 | opn "4.0.2" 42 | portfinder "~1.0.12" 43 | postcss-loader "^0.13.0" 44 | postcss-url "^5.1.2" 45 | raw-loader "^0.5.1" 46 | resolve "^1.1.7" 47 | rimraf "^2.5.3" 48 | rsvp "^3.0.17" 49 | rxjs "^5.0.1" 50 | sass-loader "^4.1.1" 51 | script-loader "^0.7.0" 52 | semver "^5.1.0" 53 | silent-error "^1.0.0" 54 | source-map-loader "^0.1.5" 55 | style-loader "^0.13.1" 56 | stylus "^0.54.5" 57 | stylus-loader "^2.4.0" 58 | temp "0.8.3" 59 | typescript ">=2.0.0 <2.3.0" 60 | url-loader "^0.5.7" 61 | walk-sync "^0.3.1" 62 | webpack "~2.2.0" 63 | webpack-dev-server "~2.3.0" 64 | webpack-merge "^2.4.0" 65 | zone.js "^0.7.2" 66 | optionalDependencies: 67 | node-sass "^4.3.0" 68 | 69 | "@angular/common@^4.0.0": 70 | version "4.0.2" 71 | resolved "https://registry.yarnpkg.com/@angular/common/-/common-4.0.2.tgz#092b272f193d3ac9549b53792657e48e96f39f5d" 72 | 73 | "@angular/compiler-cli@^4.0.0": 74 | version "4.0.2" 75 | resolved "https://registry.yarnpkg.com/@angular/compiler-cli/-/compiler-cli-4.0.2.tgz#007c05728c836be15f99530e45effa1cd7c96284" 76 | dependencies: 77 | "@angular/tsc-wrapped" "4.0.2" 78 | minimist "^1.2.0" 79 | reflect-metadata "^0.1.2" 80 | 81 | "@angular/compiler@^4.0.0": 82 | version "4.0.2" 83 | resolved "https://registry.yarnpkg.com/@angular/compiler/-/compiler-4.0.2.tgz#729e0ead261232698678bbdd09d3d360dcd6f889" 84 | 85 | "@angular/core@^4.0.0": 86 | version "4.0.2" 87 | resolved "https://registry.yarnpkg.com/@angular/core/-/core-4.0.2.tgz#195153f8623b59f07c30b3b8954e14842c3959c3" 88 | 89 | "@angular/forms@^4.0.0": 90 | version "4.0.2" 91 | resolved "https://registry.yarnpkg.com/@angular/forms/-/forms-4.0.2.tgz#9094f46983298681bbaf0dcc17dcf8f7be6f35a3" 92 | 93 | "@angular/http@^4.0.0": 94 | version "4.0.2" 95 | resolved "https://registry.yarnpkg.com/@angular/http/-/http-4.0.2.tgz#8c61b9ff52748c5dcb52b57046829d34d66662ec" 96 | 97 | "@angular/platform-browser-dynamic@^4.0.0": 98 | version "4.0.2" 99 | resolved "https://registry.yarnpkg.com/@angular/platform-browser-dynamic/-/platform-browser-dynamic-4.0.2.tgz#5a26f9a3e9f7eaf3cc7c02836cfae2e88cf1862f" 100 | 101 | "@angular/platform-browser@^4.0.0": 102 | version "4.0.2" 103 | resolved "https://registry.yarnpkg.com/@angular/platform-browser/-/platform-browser-4.0.2.tgz#bce01526917a5b49606fc7e81600af85b15846ea" 104 | 105 | "@angular/router@^4.0.0": 106 | version "4.0.2" 107 | resolved "https://registry.yarnpkg.com/@angular/router/-/router-4.0.2.tgz#e574ee2ce31035c6e574acf28ed9a28bfe1179ef" 108 | 109 | "@angular/tsc-wrapped@4.0.2": 110 | version "4.0.2" 111 | resolved "https://registry.yarnpkg.com/@angular/tsc-wrapped/-/tsc-wrapped-4.0.2.tgz#38f584082897946b011d293ce662e0178d07ac41" 112 | dependencies: 113 | tsickle "^0.21.0" 114 | 115 | "@ngtools/json-schema@1.0.5": 116 | version "1.0.5" 117 | resolved "https://registry.yarnpkg.com/@ngtools/json-schema/-/json-schema-1.0.5.tgz#ad39037c70c88b245ac7267a71777646b6063d77" 118 | 119 | "@ngtools/webpack@1.3.0": 120 | version "1.3.0" 121 | resolved "https://registry.yarnpkg.com/@ngtools/webpack/-/webpack-1.3.0.tgz#a1071230985358ecdf87b2fa9879ae6cc6355e83" 122 | dependencies: 123 | enhanced-resolve "^3.1.0" 124 | loader-utils "^1.0.2" 125 | magic-string "^0.19.0" 126 | source-map "^0.5.6" 127 | 128 | "@types/async@^2.0.31": 129 | version "2.0.38" 130 | resolved "https://registry.yarnpkg.com/@types/async/-/async-2.0.38.tgz#5c369dcb14788da0621daafa8594a053b0edcb21" 131 | 132 | "@types/graphql@^0.9.0": 133 | version "0.9.0" 134 | resolved "https://registry.yarnpkg.com/@types/graphql/-/graphql-0.9.0.tgz#fccf859f0d2817687f210737dc3be48a18b1d754" 135 | 136 | "@types/isomorphic-fetch@0.0.33": 137 | version "0.0.33" 138 | resolved "https://registry.yarnpkg.com/@types/isomorphic-fetch/-/isomorphic-fetch-0.0.33.tgz#3ea1b86f8b73e6a7430d01d4dbd5b1f63fd72718" 139 | 140 | abbrev@1: 141 | version "1.0.9" 142 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 143 | 144 | accepts@~1.3.3: 145 | version "1.3.3" 146 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca" 147 | dependencies: 148 | mime-types "~2.1.11" 149 | negotiator "0.6.1" 150 | 151 | acorn-dynamic-import@^2.0.0: 152 | version "2.0.1" 153 | resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.1.tgz#23f671eb6e650dab277fef477c321b1178a8cca2" 154 | dependencies: 155 | acorn "^4.0.3" 156 | 157 | acorn@^4.0.3, acorn@^4.0.4: 158 | version "4.0.11" 159 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.11.tgz#edcda3bd937e7556410d42ed5860f67399c794c0" 160 | 161 | ajv-keywords@^1.1.1: 162 | version "1.5.1" 163 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 164 | 165 | ajv@^4.11.2, ajv@^4.7.0: 166 | version "4.11.2" 167 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.2.tgz#f166c3c11cbc6cb9dcc102a5bcfe5b72c95287e6" 168 | dependencies: 169 | co "^4.6.0" 170 | json-stable-stringify "^1.0.1" 171 | 172 | align-text@^0.1.1, align-text@^0.1.3: 173 | version "0.1.4" 174 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 175 | dependencies: 176 | kind-of "^3.0.2" 177 | longest "^1.0.1" 178 | repeat-string "^1.5.2" 179 | 180 | alphanum-sort@^1.0.1, alphanum-sort@^1.0.2: 181 | version "1.0.2" 182 | resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" 183 | 184 | amdefine@>=0.0.4: 185 | version "1.0.0" 186 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.0.tgz#fd17474700cb5cc9c2b709f0be9d23ce3c198c33" 187 | 188 | angular2-moment@^1.3.3: 189 | version "1.3.3" 190 | resolved "https://registry.yarnpkg.com/angular2-moment/-/angular2-moment-1.3.3.tgz#569c433bbfa2448d5424f0e10dce6f8c8c9533eb" 191 | dependencies: 192 | moment "^2.16.0" 193 | 194 | ansi-align@^1.1.0: 195 | version "1.1.0" 196 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-1.1.0.tgz#2f0c1658829739add5ebb15e6b0c6e3423f016ba" 197 | dependencies: 198 | string-width "^1.0.1" 199 | 200 | ansi-escapes@^1.1.0: 201 | version "1.4.0" 202 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 203 | 204 | ansi-html@0.0.7: 205 | version "0.0.7" 206 | resolved "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e" 207 | 208 | ansi-regex@^2.0.0: 209 | version "2.1.1" 210 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 211 | 212 | ansi-styles@^2.2.1: 213 | version "2.2.1" 214 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 215 | 216 | anymatch@^1.3.0: 217 | version "1.3.0" 218 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 219 | dependencies: 220 | arrify "^1.0.0" 221 | micromatch "^2.1.5" 222 | 223 | apollo-angular@^0.13.0: 224 | version "0.13.0" 225 | resolved "https://registry.yarnpkg.com/apollo-angular/-/apollo-angular-0.13.0.tgz#a274a177c8dcc98180cda4026a2515889f5246be" 226 | dependencies: 227 | apollo-client-rxjs "~0.5.2" 228 | 229 | apollo-client-rxjs@~0.5.2: 230 | version "0.5.2" 231 | resolved "https://registry.yarnpkg.com/apollo-client-rxjs/-/apollo-client-rxjs-0.5.2.tgz#396604b5cd6e9ce0ba4e91ca2af59df35fe92856" 232 | 233 | apollo-client@^1.0.0: 234 | version "1.0.2" 235 | resolved "https://registry.yarnpkg.com/apollo-client/-/apollo-client-1.0.2.tgz#4355bd49d53a1489bc91d9f56d5b3d0ffe33fb3c" 236 | dependencies: 237 | graphql "^0.9.1" 238 | graphql-anywhere "^3.0.1" 239 | graphql-tag "^2.0.0" 240 | redux "^3.4.0" 241 | symbol-observable "^1.0.2" 242 | whatwg-fetch "^2.0.0" 243 | optionalDependencies: 244 | "@types/async" "^2.0.31" 245 | "@types/graphql" "^0.9.0" 246 | "@types/isomorphic-fetch" "0.0.33" 247 | 248 | app-root-path@^2.0.1: 249 | version "2.0.1" 250 | resolved "https://registry.yarnpkg.com/app-root-path/-/app-root-path-2.0.1.tgz#cd62dcf8e4fd5a417efc664d2e5b10653c651b46" 251 | 252 | aproba@^1.0.3: 253 | version "1.1.1" 254 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" 255 | 256 | are-we-there-yet@~1.1.2: 257 | version "1.1.2" 258 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 259 | dependencies: 260 | delegates "^1.0.0" 261 | readable-stream "^2.0.0 || ^1.1.13" 262 | 263 | argparse@^1.0.7: 264 | version "1.0.9" 265 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 266 | dependencies: 267 | sprintf-js "~1.0.2" 268 | 269 | arr-diff@^2.0.0: 270 | version "2.0.0" 271 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 272 | dependencies: 273 | arr-flatten "^1.0.1" 274 | 275 | arr-flatten@^1.0.1: 276 | version "1.0.1" 277 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 278 | 279 | array-find-index@^1.0.1: 280 | version "1.0.2" 281 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 282 | 283 | array-flatten@1.1.1: 284 | version "1.1.1" 285 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" 286 | 287 | array-unique@^0.2.1: 288 | version "0.2.1" 289 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 290 | 291 | arrify@^1.0.0: 292 | version "1.0.1" 293 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 294 | 295 | asap@~2.0.3: 296 | version "2.0.5" 297 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f" 298 | 299 | asn1.js@^4.0.0: 300 | version "4.9.1" 301 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.1.tgz#48ba240b45a9280e94748990ba597d216617fd40" 302 | dependencies: 303 | bn.js "^4.0.0" 304 | inherits "^2.0.1" 305 | minimalistic-assert "^1.0.0" 306 | 307 | asn1@~0.2.3: 308 | version "0.2.3" 309 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 310 | 311 | assert-plus@^0.2.0: 312 | version "0.2.0" 313 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 314 | 315 | assert-plus@^1.0.0: 316 | version "1.0.0" 317 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 318 | 319 | assert@^1.1.1: 320 | version "1.4.1" 321 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 322 | dependencies: 323 | util "0.10.3" 324 | 325 | async-each@^1.0.0: 326 | version "1.0.1" 327 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 328 | 329 | async-foreach@^0.1.3: 330 | version "0.1.3" 331 | resolved "https://registry.yarnpkg.com/async-foreach/-/async-foreach-0.1.3.tgz#36121f845c0578172de419a97dbeb1d16ec34542" 332 | 333 | async@^0.9.0, async@~0.9.0: 334 | version "0.9.2" 335 | resolved "https://registry.yarnpkg.com/async/-/async-0.9.2.tgz#aea74d5e61c1f899613bf64bda66d4c78f2fd17d" 336 | 337 | async@^1.5.2: 338 | version "1.5.2" 339 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 340 | 341 | async@^2.0.1, async@^2.1.2: 342 | version "2.1.4" 343 | resolved "https://registry.yarnpkg.com/async/-/async-2.1.4.tgz#2d2160c7788032e4dd6cbe2502f1f9a2c8f6cde4" 344 | dependencies: 345 | lodash "^4.14.0" 346 | 347 | async@~0.2.6: 348 | version "0.2.10" 349 | resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" 350 | 351 | asynckit@^0.4.0: 352 | version "0.4.0" 353 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 354 | 355 | autoprefixer@^6.3.1, autoprefixer@^6.5.3: 356 | version "6.7.2" 357 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-6.7.2.tgz#172ab07b998ae9b957530928a59a40be54a45023" 358 | dependencies: 359 | browserslist "^1.7.1" 360 | caniuse-db "^1.0.30000618" 361 | normalize-range "^0.1.2" 362 | num2fraction "^1.2.2" 363 | postcss "^5.2.11" 364 | postcss-value-parser "^3.2.3" 365 | 366 | aws-sign2@~0.6.0: 367 | version "0.6.0" 368 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 369 | 370 | aws4@^1.2.1: 371 | version "1.6.0" 372 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 373 | 374 | babel-code-frame@^6.11.0, babel-code-frame@^6.20.0, babel-code-frame@^6.22.0: 375 | version "6.22.0" 376 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 377 | dependencies: 378 | chalk "^1.1.0" 379 | esutils "^2.0.2" 380 | js-tokens "^3.0.0" 381 | 382 | babel-generator@^6.18.0: 383 | version "6.24.1" 384 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" 385 | dependencies: 386 | babel-messages "^6.23.0" 387 | babel-runtime "^6.22.0" 388 | babel-types "^6.24.1" 389 | detect-indent "^4.0.0" 390 | jsesc "^1.3.0" 391 | lodash "^4.2.0" 392 | source-map "^0.5.0" 393 | trim-right "^1.0.1" 394 | 395 | babel-messages@^6.23.0: 396 | version "6.23.0" 397 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 398 | dependencies: 399 | babel-runtime "^6.22.0" 400 | 401 | babel-runtime@^6.18.0, babel-runtime@^6.22.0: 402 | version "6.22.0" 403 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.22.0.tgz#1cf8b4ac67c77a4ddb0db2ae1f74de52ac4ca611" 404 | dependencies: 405 | core-js "^2.4.0" 406 | regenerator-runtime "^0.10.0" 407 | 408 | babel-template@^6.16.0: 409 | version "6.24.1" 410 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" 411 | dependencies: 412 | babel-runtime "^6.22.0" 413 | babel-traverse "^6.24.1" 414 | babel-types "^6.24.1" 415 | babylon "^6.11.0" 416 | lodash "^4.2.0" 417 | 418 | babel-traverse@^6.18.0, babel-traverse@^6.24.1: 419 | version "6.24.1" 420 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" 421 | dependencies: 422 | babel-code-frame "^6.22.0" 423 | babel-messages "^6.23.0" 424 | babel-runtime "^6.22.0" 425 | babel-types "^6.24.1" 426 | babylon "^6.15.0" 427 | debug "^2.2.0" 428 | globals "^9.0.0" 429 | invariant "^2.2.0" 430 | lodash "^4.2.0" 431 | 432 | babel-types@^6.18.0, babel-types@^6.24.1: 433 | version "6.24.1" 434 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" 435 | dependencies: 436 | babel-runtime "^6.22.0" 437 | esutils "^2.0.2" 438 | lodash "^4.2.0" 439 | to-fast-properties "^1.0.1" 440 | 441 | babylon@^6.11.0, babylon@^6.13.0, babylon@^6.15.0: 442 | version "6.16.1" 443 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.16.1.tgz#30c5a22f481978a9e7f8cdfdf496b11d94b404d3" 444 | 445 | balanced-match@^0.4.1, balanced-match@^0.4.2: 446 | version "0.4.2" 447 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 448 | 449 | base64-js@^1.0.2: 450 | version "1.2.0" 451 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1" 452 | 453 | batch@0.5.3: 454 | version "0.5.3" 455 | resolved "https://registry.yarnpkg.com/batch/-/batch-0.5.3.tgz#3f3414f380321743bfc1042f9a83ff1d5824d464" 456 | 457 | bcrypt-pbkdf@^1.0.0: 458 | version "1.0.1" 459 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 460 | dependencies: 461 | tweetnacl "^0.14.3" 462 | 463 | big.js@^3.1.3: 464 | version "3.1.3" 465 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.1.3.tgz#4cada2193652eb3ca9ec8e55c9015669c9806978" 466 | 467 | binary-extensions@^1.0.0: 468 | version "1.8.0" 469 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 470 | 471 | block-stream@*: 472 | version "0.0.9" 473 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 474 | dependencies: 475 | inherits "~2.0.0" 476 | 477 | bluebird@^3.4.7: 478 | version "3.4.7" 479 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.4.7.tgz#f72d760be09b7f76d08ed8fae98b289a8d05fab3" 480 | 481 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 482 | version "4.11.6" 483 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.6.tgz#53344adb14617a13f6e8dd2ce28905d1c0ba3215" 484 | 485 | boolbase@~1.0.0: 486 | version "1.0.0" 487 | resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" 488 | 489 | boom@2.x.x: 490 | version "2.10.1" 491 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 492 | dependencies: 493 | hoek "2.x.x" 494 | 495 | boxen@^1.0.0: 496 | version "1.0.0" 497 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.0.0.tgz#b2694baf1f605f708ff0177c12193b22f29aaaab" 498 | dependencies: 499 | ansi-align "^1.1.0" 500 | camelcase "^4.0.0" 501 | chalk "^1.1.1" 502 | cli-boxes "^1.0.0" 503 | string-width "^2.0.0" 504 | term-size "^0.1.0" 505 | widest-line "^1.0.0" 506 | 507 | brace-expansion@^1.0.0: 508 | version "1.1.6" 509 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 510 | dependencies: 511 | balanced-match "^0.4.1" 512 | concat-map "0.0.1" 513 | 514 | braces@^1.8.2: 515 | version "1.8.5" 516 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 517 | dependencies: 518 | expand-range "^1.8.1" 519 | preserve "^0.2.0" 520 | repeat-element "^1.1.2" 521 | 522 | brorand@^1.0.1: 523 | version "1.0.7" 524 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.0.7.tgz#6677fa5e4901bdbf9c9ec2a748e28dca407a9bfc" 525 | 526 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 527 | version "1.0.6" 528 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.6.tgz#5e7725dbdef1fd5930d4ebab48567ce451c48a0a" 529 | dependencies: 530 | buffer-xor "^1.0.2" 531 | cipher-base "^1.0.0" 532 | create-hash "^1.1.0" 533 | evp_bytestokey "^1.0.0" 534 | inherits "^2.0.1" 535 | 536 | browserify-cipher@^1.0.0: 537 | version "1.0.0" 538 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" 539 | dependencies: 540 | browserify-aes "^1.0.4" 541 | browserify-des "^1.0.0" 542 | evp_bytestokey "^1.0.0" 543 | 544 | browserify-des@^1.0.0: 545 | version "1.0.0" 546 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" 547 | dependencies: 548 | cipher-base "^1.0.1" 549 | des.js "^1.0.0" 550 | inherits "^2.0.1" 551 | 552 | browserify-rsa@^4.0.0: 553 | version "4.0.1" 554 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 555 | dependencies: 556 | bn.js "^4.1.0" 557 | randombytes "^2.0.1" 558 | 559 | browserify-sign@^4.0.0: 560 | version "4.0.0" 561 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.0.tgz#10773910c3c206d5420a46aad8694f820b85968f" 562 | dependencies: 563 | bn.js "^4.1.1" 564 | browserify-rsa "^4.0.0" 565 | create-hash "^1.1.0" 566 | create-hmac "^1.1.2" 567 | elliptic "^6.0.0" 568 | inherits "^2.0.1" 569 | parse-asn1 "^5.0.0" 570 | 571 | browserify-zlib@^0.1.4: 572 | version "0.1.4" 573 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" 574 | dependencies: 575 | pako "~0.2.0" 576 | 577 | browserslist@^1.0.1, browserslist@^1.5.2, browserslist@^1.7.1: 578 | version "1.7.1" 579 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.7.1.tgz#cc9bd193979a2a4b09fdb3df6003fefe48ccefe1" 580 | dependencies: 581 | caniuse-db "^1.0.30000617" 582 | electron-to-chromium "^1.2.1" 583 | 584 | buffer-shims@^1.0.0: 585 | version "1.0.0" 586 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 587 | 588 | buffer-xor@^1.0.2: 589 | version "1.0.3" 590 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 591 | 592 | buffer@^4.3.0: 593 | version "4.9.1" 594 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 595 | dependencies: 596 | base64-js "^1.0.2" 597 | ieee754 "^1.1.4" 598 | isarray "^1.0.0" 599 | 600 | builtin-modules@^1.0.0: 601 | version "1.1.1" 602 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 603 | 604 | builtin-status-codes@^3.0.0: 605 | version "3.0.0" 606 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 607 | 608 | bytes@2.3.0: 609 | version "2.3.0" 610 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.3.0.tgz#d5b680a165b6201739acb611542aabc2d8ceb070" 611 | 612 | camel-case@3.0.x: 613 | version "3.0.0" 614 | resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-3.0.0.tgz#ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73" 615 | dependencies: 616 | no-case "^2.2.0" 617 | upper-case "^1.1.1" 618 | 619 | camelcase-keys@^2.0.0: 620 | version "2.1.0" 621 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 622 | dependencies: 623 | camelcase "^2.0.0" 624 | map-obj "^1.0.0" 625 | 626 | camelcase@^1.0.2: 627 | version "1.2.1" 628 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 629 | 630 | camelcase@^2.0.0: 631 | version "2.1.1" 632 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 633 | 634 | camelcase@^3.0.0: 635 | version "3.0.0" 636 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 637 | 638 | camelcase@^4.0.0: 639 | version "4.1.0" 640 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 641 | 642 | caniuse-api@^1.5.2: 643 | version "1.5.3" 644 | resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-1.5.3.tgz#5018e674b51c393e4d50614275dc017e27c4a2a2" 645 | dependencies: 646 | browserslist "^1.0.1" 647 | caniuse-db "^1.0.30000346" 648 | lodash.memoize "^4.1.0" 649 | lodash.uniq "^4.3.0" 650 | 651 | caniuse-db@^1.0.30000346, caniuse-db@^1.0.30000617, caniuse-db@^1.0.30000618: 652 | version "1.0.30000622" 653 | resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000622.tgz#9d9690b577384990a58e33ebb903a14da735e5fd" 654 | 655 | capture-stack-trace@^1.0.0: 656 | version "1.0.0" 657 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 658 | 659 | caseless@~0.11.0: 660 | version "0.11.0" 661 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 662 | 663 | center-align@^0.1.1: 664 | version "0.1.3" 665 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 666 | dependencies: 667 | align-text "^0.1.3" 668 | lazy-cache "^1.0.3" 669 | 670 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 671 | version "1.1.3" 672 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 673 | dependencies: 674 | ansi-styles "^2.2.1" 675 | escape-string-regexp "^1.0.2" 676 | has-ansi "^2.0.0" 677 | strip-ansi "^3.0.0" 678 | supports-color "^2.0.0" 679 | 680 | chokidar@^1.4.3, chokidar@^1.6.0: 681 | version "1.6.1" 682 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 683 | dependencies: 684 | anymatch "^1.3.0" 685 | async-each "^1.0.0" 686 | glob-parent "^2.0.0" 687 | inherits "^2.0.1" 688 | is-binary-path "^1.0.0" 689 | is-glob "^2.0.0" 690 | path-is-absolute "^1.0.0" 691 | readdirp "^2.0.0" 692 | optionalDependencies: 693 | fsevents "^1.0.0" 694 | 695 | cipher-base@^1.0.0, cipher-base@^1.0.1: 696 | version "1.0.3" 697 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.3.tgz#eeabf194419ce900da3018c207d212f2a6df0a07" 698 | dependencies: 699 | inherits "^2.0.1" 700 | 701 | clap@^1.0.9: 702 | version "1.1.2" 703 | resolved "https://registry.yarnpkg.com/clap/-/clap-1.1.2.tgz#316545bf22229225a2cecaa6824cd2f56a9709ed" 704 | dependencies: 705 | chalk "^1.1.3" 706 | 707 | clean-css@4.0.x: 708 | version "4.0.6" 709 | resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.0.6.tgz#992cf37c1064dafbca7f42b522837b411b87cab5" 710 | dependencies: 711 | source-map "0.5.x" 712 | 713 | cli-boxes@^1.0.0: 714 | version "1.0.0" 715 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 716 | 717 | cli-cursor@^2.1.0: 718 | version "2.1.0" 719 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 720 | dependencies: 721 | restore-cursor "^2.0.0" 722 | 723 | cli-width@^2.0.0: 724 | version "2.1.0" 725 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 726 | 727 | cliui@^2.1.0: 728 | version "2.1.0" 729 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 730 | dependencies: 731 | center-align "^0.1.1" 732 | right-align "^0.1.1" 733 | wordwrap "0.0.2" 734 | 735 | cliui@^3.2.0: 736 | version "3.2.0" 737 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 738 | dependencies: 739 | string-width "^1.0.1" 740 | strip-ansi "^3.0.1" 741 | wrap-ansi "^2.0.0" 742 | 743 | clone@^1.0.2: 744 | version "1.0.2" 745 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" 746 | 747 | co@^4.6.0: 748 | version "4.6.0" 749 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 750 | 751 | coa@~1.0.1: 752 | version "1.0.1" 753 | resolved "https://registry.yarnpkg.com/coa/-/coa-1.0.1.tgz#7f959346cfc8719e3f7233cd6852854a7c67d8a3" 754 | dependencies: 755 | q "^1.1.2" 756 | 757 | code-point-at@^1.0.0: 758 | version "1.1.0" 759 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 760 | 761 | codelyzer@~2.0.0: 762 | version "2.0.1" 763 | resolved "https://registry.yarnpkg.com/codelyzer/-/codelyzer-2.0.1.tgz#d0f7121f67a8424c92d21d3b31f3640b83def9ed" 764 | dependencies: 765 | app-root-path "^2.0.1" 766 | css-selector-tokenizer "^0.7.0" 767 | cssauron "^1.4.0" 768 | semver-dsl "^1.0.1" 769 | source-map "^0.5.6" 770 | sprintf-js "^1.0.3" 771 | 772 | color-convert@^1.3.0: 773 | version "1.9.0" 774 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 775 | dependencies: 776 | color-name "^1.1.1" 777 | 778 | color-name@^1.0.0, color-name@^1.1.1: 779 | version "1.1.1" 780 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.1.tgz#4b1415304cf50028ea81643643bd82ea05803689" 781 | 782 | color-string@^0.3.0: 783 | version "0.3.0" 784 | resolved "https://registry.yarnpkg.com/color-string/-/color-string-0.3.0.tgz#27d46fb67025c5c2fa25993bfbf579e47841b991" 785 | dependencies: 786 | color-name "^1.0.0" 787 | 788 | color@^0.11.0: 789 | version "0.11.4" 790 | resolved "https://registry.yarnpkg.com/color/-/color-0.11.4.tgz#6d7b5c74fb65e841cd48792ad1ed5e07b904d764" 791 | dependencies: 792 | clone "^1.0.2" 793 | color-convert "^1.3.0" 794 | color-string "^0.3.0" 795 | 796 | colormin@^1.0.5: 797 | version "1.1.2" 798 | resolved "https://registry.yarnpkg.com/colormin/-/colormin-1.1.2.tgz#ea2f7420a72b96881a38aae59ec124a6f7298133" 799 | dependencies: 800 | color "^0.11.0" 801 | css-color-names "0.0.4" 802 | has "^1.0.1" 803 | 804 | colors@^1.1.2, colors@~1.1.2: 805 | version "1.1.2" 806 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" 807 | 808 | combined-stream@^1.0.5, combined-stream@~1.0.5: 809 | version "1.0.5" 810 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 811 | dependencies: 812 | delayed-stream "~1.0.0" 813 | 814 | commander@2.9.x, commander@^2.9.0: 815 | version "2.9.0" 816 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 817 | dependencies: 818 | graceful-readlink ">= 1.0.0" 819 | 820 | common-tags@^1.3.1: 821 | version "1.4.0" 822 | resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.4.0.tgz#1187be4f3d4cf0c0427d43f74eef1f73501614c0" 823 | dependencies: 824 | babel-runtime "^6.18.0" 825 | 826 | compressible@~2.0.8: 827 | version "2.0.9" 828 | resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.9.tgz#6daab4e2b599c2770dd9e21e7a891b1c5a755425" 829 | dependencies: 830 | mime-db ">= 1.24.0 < 2" 831 | 832 | compression@^1.5.2: 833 | version "1.6.2" 834 | resolved "https://registry.yarnpkg.com/compression/-/compression-1.6.2.tgz#cceb121ecc9d09c52d7ad0c3350ea93ddd402bc3" 835 | dependencies: 836 | accepts "~1.3.3" 837 | bytes "2.3.0" 838 | compressible "~2.0.8" 839 | debug "~2.2.0" 840 | on-headers "~1.0.1" 841 | vary "~1.1.0" 842 | 843 | concat-map@0.0.1: 844 | version "0.0.1" 845 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 846 | 847 | configstore@^3.0.0: 848 | version "3.0.0" 849 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.0.0.tgz#e1b8669c1803ccc50b545e92f8e6e79aa80e0196" 850 | dependencies: 851 | dot-prop "^4.1.0" 852 | graceful-fs "^4.1.2" 853 | mkdirp "^0.5.0" 854 | unique-string "^1.0.0" 855 | write-file-atomic "^1.1.2" 856 | xdg-basedir "^3.0.0" 857 | 858 | connect-history-api-fallback@^1.3.0: 859 | version "1.3.0" 860 | resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.3.0.tgz#e51d17f8f0ef0db90a64fdb47de3051556e9f169" 861 | 862 | console-browserify@^1.1.0: 863 | version "1.1.0" 864 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 865 | dependencies: 866 | date-now "^0.1.4" 867 | 868 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 869 | version "1.1.0" 870 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 871 | 872 | constants-browserify@^1.0.0: 873 | version "1.0.0" 874 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 875 | 876 | content-disposition@0.5.2: 877 | version "0.5.2" 878 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" 879 | 880 | content-type@~1.0.2: 881 | version "1.0.2" 882 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.2.tgz#b7d113aee7a8dd27bd21133c4dc2529df1721eed" 883 | 884 | convert-source-map@^1.3.0: 885 | version "1.5.0" 886 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 887 | 888 | cookie-signature@1.0.6: 889 | version "1.0.6" 890 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 891 | 892 | cookie@0.3.1: 893 | version "0.3.1" 894 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" 895 | 896 | core-js@^2.4.0, core-js@^2.4.1: 897 | version "2.4.1" 898 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 899 | 900 | core-util-is@~1.0.0: 901 | version "1.0.2" 902 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 903 | 904 | create-ecdh@^4.0.0: 905 | version "4.0.0" 906 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" 907 | dependencies: 908 | bn.js "^4.1.0" 909 | elliptic "^6.0.0" 910 | 911 | create-error-class@^3.0.0: 912 | version "3.0.2" 913 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 914 | dependencies: 915 | capture-stack-trace "^1.0.0" 916 | 917 | create-hash@^1.1.0, create-hash@^1.1.1: 918 | version "1.1.2" 919 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.2.tgz#51210062d7bb7479f6c65bb41a92208b1d61abad" 920 | dependencies: 921 | cipher-base "^1.0.1" 922 | inherits "^2.0.1" 923 | ripemd160 "^1.0.0" 924 | sha.js "^2.3.6" 925 | 926 | create-hmac@^1.1.0, create-hmac@^1.1.2: 927 | version "1.1.4" 928 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.4.tgz#d3fb4ba253eb8b3f56e39ea2fbcb8af747bd3170" 929 | dependencies: 930 | create-hash "^1.1.0" 931 | inherits "^2.0.1" 932 | 933 | cross-spawn-async@^2.1.1: 934 | version "2.2.5" 935 | resolved "https://registry.yarnpkg.com/cross-spawn-async/-/cross-spawn-async-2.2.5.tgz#845ff0c0834a3ded9d160daca6d390906bb288cc" 936 | dependencies: 937 | lru-cache "^4.0.0" 938 | which "^1.2.8" 939 | 940 | cross-spawn@^3.0.0: 941 | version "3.0.1" 942 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-3.0.1.tgz#1256037ecb9f0c5f79e3d6ef135e30770184b982" 943 | dependencies: 944 | lru-cache "^4.0.1" 945 | which "^1.2.9" 946 | 947 | cryptiles@2.x.x: 948 | version "2.0.5" 949 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 950 | dependencies: 951 | boom "2.x.x" 952 | 953 | crypto-browserify@^3.11.0: 954 | version "3.11.0" 955 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.0.tgz#3652a0906ab9b2a7e0c3ce66a408e957a2485522" 956 | dependencies: 957 | browserify-cipher "^1.0.0" 958 | browserify-sign "^4.0.0" 959 | create-ecdh "^4.0.0" 960 | create-hash "^1.1.0" 961 | create-hmac "^1.1.0" 962 | diffie-hellman "^5.0.0" 963 | inherits "^2.0.1" 964 | pbkdf2 "^3.0.3" 965 | public-encrypt "^4.0.0" 966 | randombytes "^2.0.0" 967 | 968 | crypto-random-string@^1.0.0: 969 | version "1.0.0" 970 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" 971 | 972 | css-color-names@0.0.4: 973 | version "0.0.4" 974 | resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0" 975 | 976 | css-loader@^0.26.1: 977 | version "0.26.1" 978 | resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-0.26.1.tgz#2ba7f20131b93597496b3e9bb500785a49cd29ea" 979 | dependencies: 980 | babel-code-frame "^6.11.0" 981 | css-selector-tokenizer "^0.7.0" 982 | cssnano ">=2.6.1 <4" 983 | loader-utils "~0.2.2" 984 | lodash.camelcase "^4.3.0" 985 | object-assign "^4.0.1" 986 | postcss "^5.0.6" 987 | postcss-modules-extract-imports "^1.0.0" 988 | postcss-modules-local-by-default "^1.0.1" 989 | postcss-modules-scope "^1.0.0" 990 | postcss-modules-values "^1.1.0" 991 | source-list-map "^0.1.4" 992 | 993 | css-parse@1.7.x: 994 | version "1.7.0" 995 | resolved "https://registry.yarnpkg.com/css-parse/-/css-parse-1.7.0.tgz#321f6cf73782a6ff751111390fc05e2c657d8c9b" 996 | 997 | css-select@^1.1.0: 998 | version "1.2.0" 999 | resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" 1000 | dependencies: 1001 | boolbase "~1.0.0" 1002 | css-what "2.1" 1003 | domutils "1.5.1" 1004 | nth-check "~1.0.1" 1005 | 1006 | css-selector-tokenizer@^0.6.0: 1007 | version "0.6.0" 1008 | resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.6.0.tgz#6445f582c7930d241dcc5007a43d6fcb8f073152" 1009 | dependencies: 1010 | cssesc "^0.1.0" 1011 | fastparse "^1.1.1" 1012 | regexpu-core "^1.0.0" 1013 | 1014 | css-selector-tokenizer@^0.7.0: 1015 | version "0.7.0" 1016 | resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.0.tgz#e6988474ae8c953477bf5e7efecfceccd9cf4c86" 1017 | dependencies: 1018 | cssesc "^0.1.0" 1019 | fastparse "^1.1.1" 1020 | regexpu-core "^1.0.0" 1021 | 1022 | css-what@2.1: 1023 | version "2.1.0" 1024 | resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.0.tgz#9467d032c38cfaefb9f2d79501253062f87fa1bd" 1025 | 1026 | cssauron@^1.4.0: 1027 | version "1.4.0" 1028 | resolved "https://registry.yarnpkg.com/cssauron/-/cssauron-1.4.0.tgz#a6602dff7e04a8306dc0db9a551e92e8b5662ad8" 1029 | dependencies: 1030 | through X.X.X 1031 | 1032 | cssesc@^0.1.0: 1033 | version "0.1.0" 1034 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-0.1.0.tgz#c814903e45623371a0477b40109aaafbeeaddbb4" 1035 | 1036 | "cssnano@>=2.6.1 <4", cssnano@^3.10.0: 1037 | version "3.10.0" 1038 | resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-3.10.0.tgz#4f38f6cea2b9b17fa01490f23f1dc68ea65c1c38" 1039 | dependencies: 1040 | autoprefixer "^6.3.1" 1041 | decamelize "^1.1.2" 1042 | defined "^1.0.0" 1043 | has "^1.0.1" 1044 | object-assign "^4.0.1" 1045 | postcss "^5.0.14" 1046 | postcss-calc "^5.2.0" 1047 | postcss-colormin "^2.1.8" 1048 | postcss-convert-values "^2.3.4" 1049 | postcss-discard-comments "^2.0.4" 1050 | postcss-discard-duplicates "^2.0.1" 1051 | postcss-discard-empty "^2.0.1" 1052 | postcss-discard-overridden "^0.1.1" 1053 | postcss-discard-unused "^2.2.1" 1054 | postcss-filter-plugins "^2.0.0" 1055 | postcss-merge-idents "^2.1.5" 1056 | postcss-merge-longhand "^2.0.1" 1057 | postcss-merge-rules "^2.0.3" 1058 | postcss-minify-font-values "^1.0.2" 1059 | postcss-minify-gradients "^1.0.1" 1060 | postcss-minify-params "^1.0.4" 1061 | postcss-minify-selectors "^2.0.4" 1062 | postcss-normalize-charset "^1.1.0" 1063 | postcss-normalize-url "^3.0.7" 1064 | postcss-ordered-values "^2.1.0" 1065 | postcss-reduce-idents "^2.2.2" 1066 | postcss-reduce-initial "^1.0.0" 1067 | postcss-reduce-transforms "^1.0.3" 1068 | postcss-svgo "^2.1.1" 1069 | postcss-unique-selectors "^2.0.2" 1070 | postcss-value-parser "^3.2.3" 1071 | postcss-zindex "^2.0.1" 1072 | 1073 | csso@~2.3.1: 1074 | version "2.3.1" 1075 | resolved "https://registry.yarnpkg.com/csso/-/csso-2.3.1.tgz#4f8d91a156f2f1c2aebb40b8fb1b5eb83d94d3b9" 1076 | dependencies: 1077 | clap "^1.0.9" 1078 | source-map "^0.5.3" 1079 | 1080 | currently-unhandled@^0.4.1: 1081 | version "0.4.1" 1082 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 1083 | dependencies: 1084 | array-find-index "^1.0.1" 1085 | 1086 | dashdash@^1.12.0: 1087 | version "1.14.1" 1088 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1089 | dependencies: 1090 | assert-plus "^1.0.0" 1091 | 1092 | date-now@^0.1.4: 1093 | version "0.1.4" 1094 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 1095 | 1096 | debug@*, debug@^2.1.3, debug@^2.2.0: 1097 | version "2.6.1" 1098 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.1.tgz#79855090ba2c4e3115cc7d8769491d58f0491351" 1099 | dependencies: 1100 | ms "0.7.2" 1101 | 1102 | debug@~2.2.0: 1103 | version "2.2.0" 1104 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 1105 | dependencies: 1106 | ms "0.7.1" 1107 | 1108 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: 1109 | version "1.2.0" 1110 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1111 | 1112 | deep-extend@~0.4.0: 1113 | version "0.4.1" 1114 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 1115 | 1116 | defined@^1.0.0: 1117 | version "1.0.0" 1118 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 1119 | 1120 | delayed-stream@~1.0.0: 1121 | version "1.0.0" 1122 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1123 | 1124 | delegates@^1.0.0: 1125 | version "1.0.0" 1126 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1127 | 1128 | denodeify@^1.2.1: 1129 | version "1.2.1" 1130 | resolved "https://registry.yarnpkg.com/denodeify/-/denodeify-1.2.1.tgz#3a36287f5034e699e7577901052c2e6c94251631" 1131 | 1132 | depd@~1.1.0: 1133 | version "1.1.0" 1134 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3" 1135 | 1136 | des.js@^1.0.0: 1137 | version "1.0.0" 1138 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 1139 | dependencies: 1140 | inherits "^2.0.1" 1141 | minimalistic-assert "^1.0.0" 1142 | 1143 | destroy@~1.0.4: 1144 | version "1.0.4" 1145 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 1146 | 1147 | detect-indent@^4.0.0: 1148 | version "4.0.0" 1149 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1150 | dependencies: 1151 | repeating "^2.0.0" 1152 | 1153 | diff@^3.0.1, diff@^3.1.0: 1154 | version "3.2.0" 1155 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 1156 | 1157 | diffie-hellman@^5.0.0: 1158 | version "5.0.2" 1159 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" 1160 | dependencies: 1161 | bn.js "^4.1.0" 1162 | miller-rabin "^4.0.0" 1163 | randombytes "^2.0.0" 1164 | 1165 | directory-encoder@^0.7.2: 1166 | version "0.7.2" 1167 | resolved "https://registry.yarnpkg.com/directory-encoder/-/directory-encoder-0.7.2.tgz#59b4e2aa4f25422f6c63b527b462f5e2d0dd2c58" 1168 | dependencies: 1169 | fs-extra "^0.23.1" 1170 | handlebars "^1.3.0" 1171 | img-stats "^0.5.2" 1172 | 1173 | dom-converter@~0.1: 1174 | version "0.1.4" 1175 | resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.1.4.tgz#a45ef5727b890c9bffe6d7c876e7b19cb0e17f3b" 1176 | dependencies: 1177 | utila "~0.3" 1178 | 1179 | dom-serializer@0: 1180 | version "0.1.0" 1181 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82" 1182 | dependencies: 1183 | domelementtype "~1.1.1" 1184 | entities "~1.1.1" 1185 | 1186 | domain-browser@^1.1.1: 1187 | version "1.1.7" 1188 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" 1189 | 1190 | domelementtype@1: 1191 | version "1.3.0" 1192 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2" 1193 | 1194 | domelementtype@~1.1.1: 1195 | version "1.1.3" 1196 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b" 1197 | 1198 | domhandler@2.1: 1199 | version "2.1.0" 1200 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.1.0.tgz#d2646f5e57f6c3bab11cf6cb05d3c0acf7412594" 1201 | dependencies: 1202 | domelementtype "1" 1203 | 1204 | domutils@1.1: 1205 | version "1.1.6" 1206 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.1.6.tgz#bddc3de099b9a2efacc51c623f28f416ecc57485" 1207 | dependencies: 1208 | domelementtype "1" 1209 | 1210 | domutils@1.5.1: 1211 | version "1.5.1" 1212 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" 1213 | dependencies: 1214 | dom-serializer "0" 1215 | domelementtype "1" 1216 | 1217 | dot-prop@^4.1.0: 1218 | version "4.1.1" 1219 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.1.1.tgz#a8493f0b7b5eeec82525b5c7587fa7de7ca859c1" 1220 | dependencies: 1221 | is-obj "^1.0.0" 1222 | 1223 | duplexer3@^0.1.4: 1224 | version "0.1.4" 1225 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 1226 | 1227 | ecc-jsbn@~0.1.1: 1228 | version "0.1.1" 1229 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1230 | dependencies: 1231 | jsbn "~0.1.0" 1232 | 1233 | ee-first@1.1.1: 1234 | version "1.1.1" 1235 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 1236 | 1237 | electron-to-chromium@^1.2.1: 1238 | version "1.2.2" 1239 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.2.2.tgz#e41bc9488c88e3cfa1e94bde28e8420d7d47c47c" 1240 | 1241 | elliptic@^6.0.0: 1242 | version "6.3.3" 1243 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.3.3.tgz#5482d9646d54bcb89fd7d994fc9e2e9568876e3f" 1244 | dependencies: 1245 | bn.js "^4.4.0" 1246 | brorand "^1.0.1" 1247 | hash.js "^1.0.0" 1248 | inherits "^2.0.1" 1249 | 1250 | ember-cli-normalize-entity-name@^1.0.0: 1251 | version "1.0.0" 1252 | resolved "https://registry.yarnpkg.com/ember-cli-normalize-entity-name/-/ember-cli-normalize-entity-name-1.0.0.tgz#0b14f7bcbc599aa117b5fddc81e4fd03c4bad5b7" 1253 | dependencies: 1254 | silent-error "^1.0.0" 1255 | 1256 | ember-cli-string-utils@^1.0.0: 1257 | version "1.1.0" 1258 | resolved "https://registry.yarnpkg.com/ember-cli-string-utils/-/ember-cli-string-utils-1.1.0.tgz#39b677fc2805f55173735376fcef278eaa4452a1" 1259 | 1260 | emojis-list@^2.0.0: 1261 | version "2.1.0" 1262 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 1263 | 1264 | encodeurl@~1.0.1: 1265 | version "1.0.1" 1266 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" 1267 | 1268 | encoding@^0.1.11: 1269 | version "0.1.12" 1270 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 1271 | dependencies: 1272 | iconv-lite "~0.4.13" 1273 | 1274 | enhanced-resolve@^3.0.0, enhanced-resolve@^3.1.0: 1275 | version "3.1.0" 1276 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.1.0.tgz#9f4b626f577245edcf4b2ad83d86e17f4f421dec" 1277 | dependencies: 1278 | graceful-fs "^4.1.2" 1279 | memory-fs "^0.4.0" 1280 | object-assign "^4.0.1" 1281 | tapable "^0.2.5" 1282 | 1283 | ensure-posix-path@^1.0.0: 1284 | version "1.0.2" 1285 | resolved "https://registry.yarnpkg.com/ensure-posix-path/-/ensure-posix-path-1.0.2.tgz#a65b3e42d0b71cfc585eb774f9943c8d9b91b0c2" 1286 | 1287 | entities@~1.1.1: 1288 | version "1.1.1" 1289 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0" 1290 | 1291 | errno@^0.1.1, errno@^0.1.3: 1292 | version "0.1.4" 1293 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 1294 | dependencies: 1295 | prr "~0.0.0" 1296 | 1297 | error-ex@^1.2.0: 1298 | version "1.3.0" 1299 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.0.tgz#e67b43f3e82c96ea3a584ffee0b9fc3325d802d9" 1300 | dependencies: 1301 | is-arrayish "^0.2.1" 1302 | 1303 | escape-html@~1.0.3: 1304 | version "1.0.3" 1305 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 1306 | 1307 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1308 | version "1.0.5" 1309 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1310 | 1311 | esprima@^2.6.0: 1312 | version "2.7.3" 1313 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1314 | 1315 | esutils@^2.0.2: 1316 | version "2.0.2" 1317 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1318 | 1319 | etag@~1.7.0: 1320 | version "1.7.0" 1321 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.7.0.tgz#03d30b5f67dd6e632d2945d30d6652731a34d5d8" 1322 | 1323 | eventemitter3@1.x.x: 1324 | version "1.2.0" 1325 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508" 1326 | 1327 | events@^1.0.0: 1328 | version "1.1.1" 1329 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 1330 | 1331 | eventsource@~0.1.6: 1332 | version "0.1.6" 1333 | resolved "https://registry.yarnpkg.com/eventsource/-/eventsource-0.1.6.tgz#0acede849ed7dd1ccc32c811bb11b944d4f29232" 1334 | dependencies: 1335 | original ">=0.0.5" 1336 | 1337 | evp_bytestokey@^1.0.0: 1338 | version "1.0.0" 1339 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz#497b66ad9fef65cd7c08a6180824ba1476b66e53" 1340 | dependencies: 1341 | create-hash "^1.1.1" 1342 | 1343 | execa@^0.4.0: 1344 | version "0.4.0" 1345 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.4.0.tgz#4eb6467a36a095fabb2970ff9d5e3fb7bce6ebc3" 1346 | dependencies: 1347 | cross-spawn-async "^2.1.1" 1348 | is-stream "^1.1.0" 1349 | npm-run-path "^1.0.0" 1350 | object-assign "^4.0.1" 1351 | path-key "^1.0.0" 1352 | strip-eof "^1.0.0" 1353 | 1354 | expand-brackets@^0.1.4: 1355 | version "0.1.5" 1356 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1357 | dependencies: 1358 | is-posix-bracket "^0.1.0" 1359 | 1360 | expand-range@^1.8.1: 1361 | version "1.8.2" 1362 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1363 | dependencies: 1364 | fill-range "^2.1.0" 1365 | 1366 | exports-loader@^0.6.3: 1367 | version "0.6.4" 1368 | resolved "https://registry.yarnpkg.com/exports-loader/-/exports-loader-0.6.4.tgz#d70fc6121975b35fc12830cf52754be2740fc886" 1369 | dependencies: 1370 | loader-utils "^1.0.2" 1371 | source-map "0.5.x" 1372 | 1373 | express@^4.13.3: 1374 | version "4.14.1" 1375 | resolved "https://registry.yarnpkg.com/express/-/express-4.14.1.tgz#646c237f766f148c2120aff073817b9e4d7e0d33" 1376 | dependencies: 1377 | accepts "~1.3.3" 1378 | array-flatten "1.1.1" 1379 | content-disposition "0.5.2" 1380 | content-type "~1.0.2" 1381 | cookie "0.3.1" 1382 | cookie-signature "1.0.6" 1383 | debug "~2.2.0" 1384 | depd "~1.1.0" 1385 | encodeurl "~1.0.1" 1386 | escape-html "~1.0.3" 1387 | etag "~1.7.0" 1388 | finalhandler "0.5.1" 1389 | fresh "0.3.0" 1390 | merge-descriptors "1.0.1" 1391 | methods "~1.1.2" 1392 | on-finished "~2.3.0" 1393 | parseurl "~1.3.1" 1394 | path-to-regexp "0.1.7" 1395 | proxy-addr "~1.1.3" 1396 | qs "6.2.0" 1397 | range-parser "~1.2.0" 1398 | send "0.14.2" 1399 | serve-static "~1.11.2" 1400 | type-is "~1.6.14" 1401 | utils-merge "1.0.0" 1402 | vary "~1.1.0" 1403 | 1404 | extend@~3.0.0: 1405 | version "3.0.0" 1406 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 1407 | 1408 | external-editor@^2.0.1: 1409 | version "2.0.1" 1410 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.1.tgz#4c597c6c88fa6410e41dbbaa7b1be2336aa31095" 1411 | dependencies: 1412 | tmp "^0.0.31" 1413 | 1414 | extglob@^0.3.1: 1415 | version "0.3.2" 1416 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1417 | dependencies: 1418 | is-extglob "^1.0.0" 1419 | 1420 | extract-text-webpack-plugin@~2.0.0: 1421 | version "2.0.0" 1422 | resolved "https://registry.yarnpkg.com/extract-text-webpack-plugin/-/extract-text-webpack-plugin-2.0.0.tgz#8640f72609800a3528f13a2a9634d566a5c1ae60" 1423 | dependencies: 1424 | ajv "^4.11.2" 1425 | async "^2.1.2" 1426 | loader-utils "^1.0.2" 1427 | webpack-sources "^0.1.0" 1428 | 1429 | extsprintf@1.0.2: 1430 | version "1.0.2" 1431 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1432 | 1433 | fastparse@^1.1.1: 1434 | version "1.1.1" 1435 | resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.1.tgz#d1e2643b38a94d7583b479060e6c4affc94071f8" 1436 | 1437 | faye-websocket@^0.10.0: 1438 | version "0.10.0" 1439 | resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4" 1440 | dependencies: 1441 | websocket-driver ">=0.5.1" 1442 | 1443 | faye-websocket@~0.11.0: 1444 | version "0.11.1" 1445 | resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.1.tgz#f0efe18c4f56e4f40afc7e06c719fd5ee6188f38" 1446 | dependencies: 1447 | websocket-driver ">=0.5.1" 1448 | 1449 | figures@^2.0.0: 1450 | version "2.0.0" 1451 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1452 | dependencies: 1453 | escape-string-regexp "^1.0.5" 1454 | 1455 | file-loader@^0.10.0: 1456 | version "0.10.1" 1457 | resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-0.10.1.tgz#815034119891fc6441fb5a64c11bc93c22ddd842" 1458 | dependencies: 1459 | loader-utils "^1.0.2" 1460 | 1461 | filename-regex@^2.0.0: 1462 | version "2.0.0" 1463 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 1464 | 1465 | fill-range@^2.1.0: 1466 | version "2.2.3" 1467 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1468 | dependencies: 1469 | is-number "^2.1.0" 1470 | isobject "^2.0.0" 1471 | randomatic "^1.1.3" 1472 | repeat-element "^1.1.2" 1473 | repeat-string "^1.5.2" 1474 | 1475 | finalhandler@0.5.1: 1476 | version "0.5.1" 1477 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-0.5.1.tgz#2c400d8d4530935bc232549c5fa385ec07de6fcd" 1478 | dependencies: 1479 | debug "~2.2.0" 1480 | escape-html "~1.0.3" 1481 | on-finished "~2.3.0" 1482 | statuses "~1.3.1" 1483 | unpipe "~1.0.0" 1484 | 1485 | find-up@^1.0.0: 1486 | version "1.1.2" 1487 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1488 | dependencies: 1489 | path-exists "^2.0.0" 1490 | pinkie-promise "^2.0.0" 1491 | 1492 | findup-sync@~0.3.0: 1493 | version "0.3.0" 1494 | resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-0.3.0.tgz#37930aa5d816b777c03445e1966cc6790a4c0b16" 1495 | dependencies: 1496 | glob "~5.0.0" 1497 | 1498 | flatten@^1.0.2: 1499 | version "1.0.2" 1500 | resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.2.tgz#dae46a9d78fbe25292258cc1e780a41d95c03782" 1501 | 1502 | for-in@^0.1.5: 1503 | version "0.1.6" 1504 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8" 1505 | 1506 | for-own@^0.1.4: 1507 | version "0.1.4" 1508 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072" 1509 | dependencies: 1510 | for-in "^0.1.5" 1511 | 1512 | forever-agent@~0.6.1: 1513 | version "0.6.1" 1514 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1515 | 1516 | form-data@~2.1.1: 1517 | version "2.1.2" 1518 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 1519 | dependencies: 1520 | asynckit "^0.4.0" 1521 | combined-stream "^1.0.5" 1522 | mime-types "^2.1.12" 1523 | 1524 | forwarded@~0.1.0: 1525 | version "0.1.0" 1526 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.0.tgz#19ef9874c4ae1c297bcf078fde63a09b66a84363" 1527 | 1528 | fresh@0.3.0: 1529 | version "0.3.0" 1530 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.3.0.tgz#651f838e22424e7566de161d8358caa199f83d4f" 1531 | 1532 | fs-extra@^0.23.1: 1533 | version "0.23.1" 1534 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.23.1.tgz#6611dba6adf2ab8dc9c69fab37cddf8818157e3d" 1535 | dependencies: 1536 | graceful-fs "^4.1.2" 1537 | jsonfile "^2.1.0" 1538 | path-is-absolute "^1.0.0" 1539 | rimraf "^2.2.8" 1540 | 1541 | fs-extra@^2.0.0: 1542 | version "2.1.2" 1543 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-2.1.2.tgz#046c70163cef9aad46b0e4a7fa467fb22d71de35" 1544 | dependencies: 1545 | graceful-fs "^4.1.2" 1546 | jsonfile "^2.1.0" 1547 | 1548 | fs.realpath@^1.0.0: 1549 | version "1.0.0" 1550 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1551 | 1552 | fsevents@^1.0.0: 1553 | version "1.0.17" 1554 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.0.17.tgz#8537f3f12272678765b4fd6528c0f1f66f8f4558" 1555 | dependencies: 1556 | nan "^2.3.0" 1557 | node-pre-gyp "^0.6.29" 1558 | 1559 | fstream-ignore@~1.0.5: 1560 | version "1.0.5" 1561 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1562 | dependencies: 1563 | fstream "^1.0.0" 1564 | inherits "2" 1565 | minimatch "^3.0.0" 1566 | 1567 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10: 1568 | version "1.0.10" 1569 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822" 1570 | dependencies: 1571 | graceful-fs "^4.1.2" 1572 | inherits "~2.0.0" 1573 | mkdirp ">=0.5 0" 1574 | rimraf "2" 1575 | 1576 | function-bind@^1.0.2: 1577 | version "1.1.0" 1578 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1579 | 1580 | gauge@~2.7.1: 1581 | version "2.7.3" 1582 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.3.tgz#1c23855f962f17b3ad3d0dc7443f304542edfe09" 1583 | dependencies: 1584 | aproba "^1.0.3" 1585 | console-control-strings "^1.0.0" 1586 | has-unicode "^2.0.0" 1587 | object-assign "^4.1.0" 1588 | signal-exit "^3.0.0" 1589 | string-width "^1.0.1" 1590 | strip-ansi "^3.0.1" 1591 | wide-align "^1.1.0" 1592 | 1593 | gaze@^1.0.0: 1594 | version "1.1.2" 1595 | resolved "https://registry.yarnpkg.com/gaze/-/gaze-1.1.2.tgz#847224677adb8870d679257ed3388fdb61e40105" 1596 | dependencies: 1597 | globule "^1.0.0" 1598 | 1599 | generate-function@^2.0.0: 1600 | version "2.0.0" 1601 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1602 | 1603 | generate-object-property@^1.1.0: 1604 | version "1.2.0" 1605 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1606 | dependencies: 1607 | is-property "^1.0.0" 1608 | 1609 | get-caller-file@^1.0.0, get-caller-file@^1.0.1: 1610 | version "1.0.2" 1611 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1612 | 1613 | get-stdin@^4.0.1: 1614 | version "4.0.1" 1615 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1616 | 1617 | get-stream@^3.0.0: 1618 | version "3.0.0" 1619 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1620 | 1621 | getpass@^0.1.1: 1622 | version "0.1.6" 1623 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 1624 | dependencies: 1625 | assert-plus "^1.0.0" 1626 | 1627 | glob-base@^0.3.0: 1628 | version "0.3.0" 1629 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1630 | dependencies: 1631 | glob-parent "^2.0.0" 1632 | is-glob "^2.0.0" 1633 | 1634 | glob-parent@^2.0.0: 1635 | version "2.0.0" 1636 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1637 | dependencies: 1638 | is-glob "^2.0.0" 1639 | 1640 | glob@7.0.x: 1641 | version "7.0.6" 1642 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.6.tgz#211bafaf49e525b8cd93260d14ab136152b3f57a" 1643 | dependencies: 1644 | fs.realpath "^1.0.0" 1645 | inflight "^1.0.4" 1646 | inherits "2" 1647 | minimatch "^3.0.2" 1648 | once "^1.3.0" 1649 | path-is-absolute "^1.0.0" 1650 | 1651 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@~7.1.1: 1652 | version "7.1.1" 1653 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1654 | dependencies: 1655 | fs.realpath "^1.0.0" 1656 | inflight "^1.0.4" 1657 | inherits "2" 1658 | minimatch "^3.0.2" 1659 | once "^1.3.0" 1660 | path-is-absolute "^1.0.0" 1661 | 1662 | glob@~5.0.0: 1663 | version "5.0.15" 1664 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 1665 | dependencies: 1666 | inflight "^1.0.4" 1667 | inherits "2" 1668 | minimatch "2 || 3" 1669 | once "^1.3.0" 1670 | path-is-absolute "^1.0.0" 1671 | 1672 | globals@^9.0.0: 1673 | version "9.17.0" 1674 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 1675 | 1676 | globule@^1.0.0: 1677 | version "1.1.0" 1678 | resolved "https://registry.yarnpkg.com/globule/-/globule-1.1.0.tgz#c49352e4dc183d85893ee825385eb994bb6df45f" 1679 | dependencies: 1680 | glob "~7.1.1" 1681 | lodash "~4.16.4" 1682 | minimatch "~3.0.2" 1683 | 1684 | got@^6.7.1: 1685 | version "6.7.1" 1686 | resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" 1687 | dependencies: 1688 | create-error-class "^3.0.0" 1689 | duplexer3 "^0.1.4" 1690 | get-stream "^3.0.0" 1691 | is-redirect "^1.0.0" 1692 | is-retry-allowed "^1.0.0" 1693 | is-stream "^1.0.0" 1694 | lowercase-keys "^1.0.0" 1695 | safe-buffer "^5.0.1" 1696 | timed-out "^4.0.0" 1697 | unzip-response "^2.0.1" 1698 | url-parse-lax "^1.0.0" 1699 | 1700 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6: 1701 | version "4.1.11" 1702 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1703 | 1704 | "graceful-readlink@>= 1.0.0": 1705 | version "1.0.1" 1706 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1707 | 1708 | graphql-anywhere@^3.0.1: 1709 | version "3.0.1" 1710 | resolved "https://registry.yarnpkg.com/graphql-anywhere/-/graphql-anywhere-3.0.1.tgz#73531db861174c8f212eafb9f8e84944b38b4e5a" 1711 | 1712 | graphql-config-parser@^1.2.0: 1713 | version "1.2.1" 1714 | resolved "https://registry.yarnpkg.com/graphql-config-parser/-/graphql-config-parser-1.2.1.tgz#74be9f930d2018afc1c78cd74069e04f69f964d7" 1715 | dependencies: 1716 | graphql "0.7.1 - 1.0.0" 1717 | node-fetch "^1.6.3" 1718 | valid-url "^1.0.9" 1719 | 1720 | graphql-tag@^1.3.2: 1721 | version "1.3.2" 1722 | resolved "https://registry.yarnpkg.com/graphql-tag/-/graphql-tag-1.3.2.tgz#7abb3a8fd9f3415d07163314ed237061c785b759" 1723 | 1724 | graphql-tag@^2.0.0: 1725 | version "2.0.0" 1726 | resolved "https://registry.yarnpkg.com/graphql-tag/-/graphql-tag-2.0.0.tgz#f3efe3b4d64f33bfe8479ae06a461c9d72f2a6fe" 1727 | 1728 | "graphql@0.7.1 - 1.0.0", graphql@^0.9.1: 1729 | version "0.9.1" 1730 | resolved "https://registry.yarnpkg.com/graphql/-/graphql-0.9.1.tgz#f4d154cbec054d4a5d3b1be95f23435c09aa86c8" 1731 | dependencies: 1732 | iterall "1.0.3" 1733 | 1734 | handle-thing@^1.2.4: 1735 | version "1.2.5" 1736 | resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-1.2.5.tgz#fd7aad726bf1a5fd16dfc29b2f7a6601d27139c4" 1737 | 1738 | handlebars@^1.3.0: 1739 | version "1.3.0" 1740 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-1.3.0.tgz#9e9b130a93e389491322d975cf3ec1818c37ce34" 1741 | dependencies: 1742 | optimist "~0.3" 1743 | optionalDependencies: 1744 | uglify-js "~2.3" 1745 | 1746 | har-validator@~2.0.6: 1747 | version "2.0.6" 1748 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 1749 | dependencies: 1750 | chalk "^1.1.1" 1751 | commander "^2.9.0" 1752 | is-my-json-valid "^2.12.4" 1753 | pinkie-promise "^2.0.0" 1754 | 1755 | has-ansi@^2.0.0: 1756 | version "2.0.0" 1757 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1758 | dependencies: 1759 | ansi-regex "^2.0.0" 1760 | 1761 | has-flag@^1.0.0: 1762 | version "1.0.0" 1763 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1764 | 1765 | has-unicode@^2.0.0: 1766 | version "2.0.1" 1767 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1768 | 1769 | has@^1.0.1: 1770 | version "1.0.1" 1771 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1772 | dependencies: 1773 | function-bind "^1.0.2" 1774 | 1775 | hash.js@^1.0.0: 1776 | version "1.0.3" 1777 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.0.3.tgz#1332ff00156c0a0ffdd8236013d07b77a0451573" 1778 | dependencies: 1779 | inherits "^2.0.1" 1780 | 1781 | hawk@~3.1.3: 1782 | version "3.1.3" 1783 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1784 | dependencies: 1785 | boom "2.x.x" 1786 | cryptiles "2.x.x" 1787 | hoek "2.x.x" 1788 | sntp "1.x.x" 1789 | 1790 | he@1.1.x: 1791 | version "1.1.1" 1792 | resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" 1793 | 1794 | hoek@2.x.x: 1795 | version "2.16.3" 1796 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1797 | 1798 | hosted-git-info@^2.1.4: 1799 | version "2.2.0" 1800 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.2.0.tgz#7a0d097863d886c0fabbdcd37bf1758d8becf8a5" 1801 | 1802 | hpack.js@^2.1.6: 1803 | version "2.1.6" 1804 | resolved "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2" 1805 | dependencies: 1806 | inherits "^2.0.1" 1807 | obuf "^1.0.0" 1808 | readable-stream "^2.0.1" 1809 | wbuf "^1.1.0" 1810 | 1811 | html-comment-regex@^1.1.0: 1812 | version "1.1.1" 1813 | resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.1.tgz#668b93776eaae55ebde8f3ad464b307a4963625e" 1814 | 1815 | html-entities@^1.2.0: 1816 | version "1.2.0" 1817 | resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.2.0.tgz#41948caf85ce82fed36e4e6a0ed371a6664379e2" 1818 | 1819 | html-minifier@^3.2.3: 1820 | version "3.3.1" 1821 | resolved "https://registry.yarnpkg.com/html-minifier/-/html-minifier-3.3.1.tgz#dd38e60571537bf34a8171889c64fce73c45edad" 1822 | dependencies: 1823 | camel-case "3.0.x" 1824 | clean-css "4.0.x" 1825 | commander "2.9.x" 1826 | he "1.1.x" 1827 | ncname "1.0.x" 1828 | param-case "2.1.x" 1829 | relateurl "0.2.x" 1830 | uglify-js "2.7.x" 1831 | 1832 | html-webpack-plugin@^2.19.0: 1833 | version "2.28.0" 1834 | resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-2.28.0.tgz#2e7863b57e5fd48fe263303e2ffc934c3064d009" 1835 | dependencies: 1836 | bluebird "^3.4.7" 1837 | html-minifier "^3.2.3" 1838 | loader-utils "^0.2.16" 1839 | lodash "^4.17.3" 1840 | pretty-error "^2.0.2" 1841 | toposort "^1.0.0" 1842 | 1843 | htmlparser2@~3.3.0: 1844 | version "3.3.0" 1845 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.3.0.tgz#cc70d05a59f6542e43f0e685c982e14c924a9efe" 1846 | dependencies: 1847 | domelementtype "1" 1848 | domhandler "2.1" 1849 | domutils "1.1" 1850 | readable-stream "1.0" 1851 | 1852 | http-deceiver@^1.2.4: 1853 | version "1.2.7" 1854 | resolved "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87" 1855 | 1856 | http-errors@~1.5.0, http-errors@~1.5.1: 1857 | version "1.5.1" 1858 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.5.1.tgz#788c0d2c1de2c81b9e6e8c01843b6b97eb920750" 1859 | dependencies: 1860 | inherits "2.0.3" 1861 | setprototypeof "1.0.2" 1862 | statuses ">= 1.3.1 < 2" 1863 | 1864 | http-proxy-middleware@~0.17.1: 1865 | version "0.17.3" 1866 | resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.17.3.tgz#940382147149b856084f5534752d5b5a8168cd1d" 1867 | dependencies: 1868 | http-proxy "^1.16.2" 1869 | is-glob "^3.1.0" 1870 | lodash "^4.17.2" 1871 | micromatch "^2.3.11" 1872 | 1873 | http-proxy@^1.16.2: 1874 | version "1.16.2" 1875 | resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.16.2.tgz#06dff292952bf64dbe8471fa9df73066d4f37742" 1876 | dependencies: 1877 | eventemitter3 "1.x.x" 1878 | requires-port "1.x.x" 1879 | 1880 | http-signature@~1.1.0: 1881 | version "1.1.1" 1882 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1883 | dependencies: 1884 | assert-plus "^0.2.0" 1885 | jsprim "^1.2.2" 1886 | sshpk "^1.7.0" 1887 | 1888 | https-browserify@0.0.1: 1889 | version "0.0.1" 1890 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82" 1891 | 1892 | iconv-lite@~0.4.13: 1893 | version "0.4.15" 1894 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.15.tgz#fe265a218ac6a57cfe854927e9d04c19825eddeb" 1895 | 1896 | icss-replace-symbols@^1.0.2: 1897 | version "1.0.2" 1898 | resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.0.2.tgz#cb0b6054eb3af6edc9ab1d62d01933e2d4c8bfa5" 1899 | 1900 | ieee754@^1.1.4: 1901 | version "1.1.8" 1902 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 1903 | 1904 | image-size@~0.5.0: 1905 | version "0.5.1" 1906 | resolved "https://registry.yarnpkg.com/image-size/-/image-size-0.5.1.tgz#28eea8548a4b1443480ddddc1e083ae54652439f" 1907 | 1908 | img-stats@^0.5.2: 1909 | version "0.5.2" 1910 | resolved "https://registry.yarnpkg.com/img-stats/-/img-stats-0.5.2.tgz#c203496c42f2d9eb2e5ab8232fa756bab32c9e2b" 1911 | dependencies: 1912 | xmldom "^0.1.19" 1913 | 1914 | imurmurhash@^0.1.4: 1915 | version "0.1.4" 1916 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1917 | 1918 | in-publish@^2.0.0: 1919 | version "2.0.0" 1920 | resolved "https://registry.yarnpkg.com/in-publish/-/in-publish-2.0.0.tgz#e20ff5e3a2afc2690320b6dc552682a9c7fadf51" 1921 | 1922 | indent-string@^2.1.0: 1923 | version "2.1.0" 1924 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1925 | dependencies: 1926 | repeating "^2.0.0" 1927 | 1928 | indexes-of@^1.0.1: 1929 | version "1.0.1" 1930 | resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" 1931 | 1932 | indexof@0.0.1: 1933 | version "0.0.1" 1934 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 1935 | 1936 | inflection@^1.7.0: 1937 | version "1.12.0" 1938 | resolved "https://registry.yarnpkg.com/inflection/-/inflection-1.12.0.tgz#a200935656d6f5f6bc4dc7502e1aecb703228416" 1939 | 1940 | inflight@^1.0.4: 1941 | version "1.0.6" 1942 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1943 | dependencies: 1944 | once "^1.3.0" 1945 | wrappy "1" 1946 | 1947 | inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1: 1948 | version "2.0.3" 1949 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1950 | 1951 | inherits@2.0.1: 1952 | version "2.0.1" 1953 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1954 | 1955 | ini@~1.3.0: 1956 | version "1.3.4" 1957 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1958 | 1959 | inquirer@^3.0.0: 1960 | version "3.0.6" 1961 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.0.6.tgz#e04aaa9d05b7a3cb9b0f407d04375f0447190347" 1962 | dependencies: 1963 | ansi-escapes "^1.1.0" 1964 | chalk "^1.0.0" 1965 | cli-cursor "^2.1.0" 1966 | cli-width "^2.0.0" 1967 | external-editor "^2.0.1" 1968 | figures "^2.0.0" 1969 | lodash "^4.3.0" 1970 | mute-stream "0.0.7" 1971 | run-async "^2.2.0" 1972 | rx "^4.1.0" 1973 | string-width "^2.0.0" 1974 | strip-ansi "^3.0.0" 1975 | through "^2.3.6" 1976 | 1977 | interpret@^1.0.0: 1978 | version "1.0.1" 1979 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.1.tgz#d579fb7f693b858004947af39fa0db49f795602c" 1980 | 1981 | invariant@^2.2.0: 1982 | version "2.2.2" 1983 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1984 | dependencies: 1985 | loose-envify "^1.0.0" 1986 | 1987 | invert-kv@^1.0.0: 1988 | version "1.0.0" 1989 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1990 | 1991 | ipaddr.js@1.2.0: 1992 | version "1.2.0" 1993 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.2.0.tgz#8aba49c9192799585bdd643e0ccb50e8ae777ba4" 1994 | 1995 | is-absolute-url@^2.0.0: 1996 | version "2.1.0" 1997 | resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" 1998 | 1999 | is-arrayish@^0.2.1: 2000 | version "0.2.1" 2001 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 2002 | 2003 | is-binary-path@^1.0.0: 2004 | version "1.0.1" 2005 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 2006 | dependencies: 2007 | binary-extensions "^1.0.0" 2008 | 2009 | is-buffer@^1.0.2: 2010 | version "1.1.4" 2011 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" 2012 | 2013 | is-builtin-module@^1.0.0: 2014 | version "1.0.0" 2015 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 2016 | dependencies: 2017 | builtin-modules "^1.0.0" 2018 | 2019 | is-dotfile@^1.0.0: 2020 | version "1.0.2" 2021 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 2022 | 2023 | is-equal-shallow@^0.1.3: 2024 | version "0.1.3" 2025 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 2026 | dependencies: 2027 | is-primitive "^2.0.0" 2028 | 2029 | is-extendable@^0.1.1: 2030 | version "0.1.1" 2031 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2032 | 2033 | is-extglob@^1.0.0: 2034 | version "1.0.0" 2035 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 2036 | 2037 | is-extglob@^2.1.0: 2038 | version "2.1.1" 2039 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 2040 | 2041 | is-finite@^1.0.0: 2042 | version "1.0.2" 2043 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 2044 | dependencies: 2045 | number-is-nan "^1.0.0" 2046 | 2047 | is-fullwidth-code-point@^1.0.0: 2048 | version "1.0.0" 2049 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2050 | dependencies: 2051 | number-is-nan "^1.0.0" 2052 | 2053 | is-fullwidth-code-point@^2.0.0: 2054 | version "2.0.0" 2055 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 2056 | 2057 | is-glob@^2.0.0, is-glob@^2.0.1: 2058 | version "2.0.1" 2059 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 2060 | dependencies: 2061 | is-extglob "^1.0.0" 2062 | 2063 | is-glob@^3.1.0: 2064 | version "3.1.0" 2065 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 2066 | dependencies: 2067 | is-extglob "^2.1.0" 2068 | 2069 | is-my-json-valid@^2.12.4: 2070 | version "2.15.0" 2071 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b" 2072 | dependencies: 2073 | generate-function "^2.0.0" 2074 | generate-object-property "^1.1.0" 2075 | jsonpointer "^4.0.0" 2076 | xtend "^4.0.0" 2077 | 2078 | is-npm@^1.0.0: 2079 | version "1.0.0" 2080 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 2081 | 2082 | is-number@^2.0.2, is-number@^2.1.0: 2083 | version "2.1.0" 2084 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2085 | dependencies: 2086 | kind-of "^3.0.2" 2087 | 2088 | is-obj@^1.0.0: 2089 | version "1.0.1" 2090 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 2091 | 2092 | is-plain-obj@^1.0.0: 2093 | version "1.1.0" 2094 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 2095 | 2096 | is-posix-bracket@^0.1.0: 2097 | version "0.1.1" 2098 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2099 | 2100 | is-primitive@^2.0.0: 2101 | version "2.0.0" 2102 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2103 | 2104 | is-promise@^2.1.0: 2105 | version "2.1.0" 2106 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 2107 | 2108 | is-property@^1.0.0: 2109 | version "1.0.2" 2110 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 2111 | 2112 | is-redirect@^1.0.0: 2113 | version "1.0.0" 2114 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 2115 | 2116 | is-retry-allowed@^1.0.0: 2117 | version "1.1.0" 2118 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 2119 | 2120 | is-stream@^1.0.0, is-stream@^1.0.1, is-stream@^1.1.0: 2121 | version "1.1.0" 2122 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2123 | 2124 | is-svg@^2.0.0: 2125 | version "2.1.0" 2126 | resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-2.1.0.tgz#cf61090da0d9efbcab8722deba6f032208dbb0e9" 2127 | dependencies: 2128 | html-comment-regex "^1.1.0" 2129 | 2130 | is-typedarray@~1.0.0: 2131 | version "1.0.0" 2132 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2133 | 2134 | is-utf8@^0.2.0: 2135 | version "0.2.1" 2136 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2137 | 2138 | isarray@0.0.1: 2139 | version "0.0.1" 2140 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 2141 | 2142 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2143 | version "1.0.0" 2144 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2145 | 2146 | isbinaryfile@^3.0.0: 2147 | version "3.0.2" 2148 | resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-3.0.2.tgz#4a3e974ec0cba9004d3fc6cde7209ea69368a621" 2149 | 2150 | isexe@^1.1.1: 2151 | version "1.1.2" 2152 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-1.1.2.tgz#36f3e22e60750920f5e7241a476a8c6a42275ad0" 2153 | 2154 | isobject@^2.0.0: 2155 | version "2.1.0" 2156 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2157 | dependencies: 2158 | isarray "1.0.0" 2159 | 2160 | isstream@~0.1.2: 2161 | version "0.1.2" 2162 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2163 | 2164 | istanbul-instrumenter-loader@^2.0.0: 2165 | version "2.0.0" 2166 | resolved "https://registry.yarnpkg.com/istanbul-instrumenter-loader/-/istanbul-instrumenter-loader-2.0.0.tgz#e5492900ab0bba835efa8024cb00be9b3eea2700" 2167 | dependencies: 2168 | convert-source-map "^1.3.0" 2169 | istanbul-lib-instrument "^1.1.3" 2170 | loader-utils "^0.2.16" 2171 | object-assign "^4.1.0" 2172 | 2173 | istanbul-lib-coverage@^1.0.2: 2174 | version "1.0.2" 2175 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.0.2.tgz#87a0c015b6910651cb3b184814dfb339337e25e1" 2176 | 2177 | istanbul-lib-instrument@^1.1.3: 2178 | version "1.7.0" 2179 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.0.tgz#b8e0dc25709bb44e17336ab47b7bb5c97c23f659" 2180 | dependencies: 2181 | babel-generator "^6.18.0" 2182 | babel-template "^6.16.0" 2183 | babel-traverse "^6.18.0" 2184 | babel-types "^6.18.0" 2185 | babylon "^6.13.0" 2186 | istanbul-lib-coverage "^1.0.2" 2187 | semver "^5.3.0" 2188 | 2189 | iterall@1.0.3: 2190 | version "1.0.3" 2191 | resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.0.3.tgz#e0b31958f835013c323ff0b10943829ac69aa4b7" 2192 | 2193 | jodid25519@^1.0.0: 2194 | version "1.0.2" 2195 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 2196 | dependencies: 2197 | jsbn "~0.1.0" 2198 | 2199 | js-base64@^2.1.5, js-base64@^2.1.9: 2200 | version "2.1.9" 2201 | resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.1.9.tgz#f0e80ae039a4bd654b5f281fc93f04a914a7fcce" 2202 | 2203 | js-tokens@^3.0.0: 2204 | version "3.0.1" 2205 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 2206 | 2207 | js-yaml@~3.7.0: 2208 | version "3.7.0" 2209 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80" 2210 | dependencies: 2211 | argparse "^1.0.7" 2212 | esprima "^2.6.0" 2213 | 2214 | jsbn@~0.1.0: 2215 | version "0.1.0" 2216 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd" 2217 | 2218 | jsesc@^1.3.0: 2219 | version "1.3.0" 2220 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2221 | 2222 | jsesc@~0.5.0: 2223 | version "0.5.0" 2224 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2225 | 2226 | json-loader@^0.5.4: 2227 | version "0.5.4" 2228 | resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.4.tgz#8baa1365a632f58a3c46d20175fc6002c96e37de" 2229 | 2230 | json-schema@0.2.3: 2231 | version "0.2.3" 2232 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2233 | 2234 | json-stable-stringify@^1.0.1: 2235 | version "1.0.1" 2236 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2237 | dependencies: 2238 | jsonify "~0.0.0" 2239 | 2240 | json-stringify-safe@~5.0.1: 2241 | version "5.0.1" 2242 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2243 | 2244 | json3@^3.3.2: 2245 | version "3.3.2" 2246 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 2247 | 2248 | json5@^0.5.0: 2249 | version "0.5.1" 2250 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2251 | 2252 | jsonfile@^2.1.0: 2253 | version "2.4.0" 2254 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" 2255 | optionalDependencies: 2256 | graceful-fs "^4.1.6" 2257 | 2258 | jsonify@~0.0.0: 2259 | version "0.0.0" 2260 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2261 | 2262 | jsonpointer@^4.0.0: 2263 | version "4.0.1" 2264 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 2265 | 2266 | jsprim@^1.2.2: 2267 | version "1.3.1" 2268 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252" 2269 | dependencies: 2270 | extsprintf "1.0.2" 2271 | json-schema "0.2.3" 2272 | verror "1.3.6" 2273 | 2274 | karma-sourcemap-loader@^0.3.7: 2275 | version "0.3.7" 2276 | resolved "https://registry.yarnpkg.com/karma-sourcemap-loader/-/karma-sourcemap-loader-0.3.7.tgz#91322c77f8f13d46fed062b042e1009d4c4505d8" 2277 | dependencies: 2278 | graceful-fs "^4.1.2" 2279 | 2280 | karma-webpack@^2.0.0: 2281 | version "2.0.3" 2282 | resolved "https://registry.yarnpkg.com/karma-webpack/-/karma-webpack-2.0.3.tgz#39cebf5ca2580139b27f9ae69b78816b9c82fae6" 2283 | dependencies: 2284 | async "~0.9.0" 2285 | loader-utils "^0.2.5" 2286 | lodash "^3.8.0" 2287 | source-map "^0.1.41" 2288 | webpack-dev-middleware "^1.0.11" 2289 | 2290 | kind-of@^3.0.2: 2291 | version "3.1.0" 2292 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 2293 | dependencies: 2294 | is-buffer "^1.0.2" 2295 | 2296 | latest-version@^3.0.0: 2297 | version "3.1.0" 2298 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" 2299 | dependencies: 2300 | package-json "^4.0.0" 2301 | 2302 | lazy-cache@^1.0.3: 2303 | version "1.0.4" 2304 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2305 | 2306 | lazy-req@^2.0.0: 2307 | version "2.0.0" 2308 | resolved "https://registry.yarnpkg.com/lazy-req/-/lazy-req-2.0.0.tgz#c9450a363ecdda2e6f0c70132ad4f37f8f06f2b4" 2309 | 2310 | lcid@^1.0.0: 2311 | version "1.0.0" 2312 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2313 | dependencies: 2314 | invert-kv "^1.0.0" 2315 | 2316 | less-loader@^2.2.3: 2317 | version "2.2.3" 2318 | resolved "https://registry.yarnpkg.com/less-loader/-/less-loader-2.2.3.tgz#b6d8f8139c8493df09d992a93a00734b08f84528" 2319 | dependencies: 2320 | loader-utils "^0.2.5" 2321 | 2322 | less@^2.7.2: 2323 | version "2.7.2" 2324 | resolved "https://registry.yarnpkg.com/less/-/less-2.7.2.tgz#368d6cc73e1fb03981183280918743c5dcf9b3df" 2325 | optionalDependencies: 2326 | errno "^0.1.1" 2327 | graceful-fs "^4.1.2" 2328 | image-size "~0.5.0" 2329 | mime "^1.2.11" 2330 | mkdirp "^0.5.0" 2331 | promise "^7.1.1" 2332 | request "^2.72.0" 2333 | source-map "^0.5.3" 2334 | 2335 | load-json-file@^1.0.0: 2336 | version "1.1.0" 2337 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2338 | dependencies: 2339 | graceful-fs "^4.1.2" 2340 | parse-json "^2.2.0" 2341 | pify "^2.0.0" 2342 | pinkie-promise "^2.0.0" 2343 | strip-bom "^2.0.0" 2344 | 2345 | loader-runner@^2.3.0: 2346 | version "2.3.0" 2347 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2" 2348 | 2349 | loader-utils@0.2.x, loader-utils@^0.2.15, loader-utils@^0.2.16, loader-utils@^0.2.5, loader-utils@^0.2.7, loader-utils@^0.2.9, loader-utils@~0.2.2: 2350 | version "0.2.16" 2351 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.16.tgz#f08632066ed8282835dff88dfb52704765adee6d" 2352 | dependencies: 2353 | big.js "^3.1.3" 2354 | emojis-list "^2.0.0" 2355 | json5 "^0.5.0" 2356 | object-assign "^4.0.1" 2357 | 2358 | loader-utils@^1.0.2: 2359 | version "1.1.0" 2360 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" 2361 | dependencies: 2362 | big.js "^3.1.3" 2363 | emojis-list "^2.0.0" 2364 | json5 "^0.5.0" 2365 | 2366 | lodash-es@^4.2.1: 2367 | version "4.17.4" 2368 | resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.4.tgz#dcc1d7552e150a0640073ba9cb31d70f032950e7" 2369 | 2370 | lodash.assign@^4.0.3, lodash.assign@^4.0.6, lodash.assign@^4.2.0: 2371 | version "4.2.0" 2372 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" 2373 | 2374 | lodash.camelcase@^4.3.0: 2375 | version "4.3.0" 2376 | resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" 2377 | 2378 | lodash.clonedeep@^4.3.2: 2379 | version "4.5.0" 2380 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" 2381 | 2382 | lodash.memoize@^4.1.0: 2383 | version "4.1.2" 2384 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" 2385 | 2386 | lodash.mergewith@^4.6.0: 2387 | version "4.6.0" 2388 | resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.0.tgz#150cf0a16791f5903b8891eab154609274bdea55" 2389 | 2390 | lodash.uniq@^4.3.0: 2391 | version "4.5.0" 2392 | resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" 2393 | 2394 | lodash@^3.8.0: 2395 | version "3.10.1" 2396 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" 2397 | 2398 | lodash@^4.0.0, lodash@^4.11.1, lodash@^4.14.0, lodash@^4.17.2, lodash@^4.17.3, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.2.1, lodash@^4.3.0: 2399 | version "4.17.4" 2400 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2401 | 2402 | lodash@~4.16.4: 2403 | version "4.16.6" 2404 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.16.6.tgz#d22c9ac660288f3843e16ba7d2b5d06cca27d777" 2405 | 2406 | longest@^1.0.1: 2407 | version "1.0.1" 2408 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2409 | 2410 | loose-envify@^1.0.0, loose-envify@^1.1.0: 2411 | version "1.3.1" 2412 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2413 | dependencies: 2414 | js-tokens "^3.0.0" 2415 | 2416 | loud-rejection@^1.0.0: 2417 | version "1.6.0" 2418 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 2419 | dependencies: 2420 | currently-unhandled "^0.4.1" 2421 | signal-exit "^3.0.0" 2422 | 2423 | lower-case@^1.1.1: 2424 | version "1.1.3" 2425 | resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.3.tgz#c92393d976793eee5ba4edb583cf8eae35bd9bfb" 2426 | 2427 | lowercase-keys@^1.0.0: 2428 | version "1.0.0" 2429 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 2430 | 2431 | lru-cache@^4.0.0, lru-cache@^4.0.1: 2432 | version "4.0.2" 2433 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e" 2434 | dependencies: 2435 | pseudomap "^1.0.1" 2436 | yallist "^2.0.0" 2437 | 2438 | macaddress@^0.2.8: 2439 | version "0.2.8" 2440 | resolved "https://registry.yarnpkg.com/macaddress/-/macaddress-0.2.8.tgz#5904dc537c39ec6dbefeae902327135fa8511f12" 2441 | 2442 | magic-string@^0.19.0: 2443 | version "0.19.0" 2444 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.19.0.tgz#198948217254e3e0b93080e01146b7c73b2a06b2" 2445 | dependencies: 2446 | vlq "^0.2.1" 2447 | 2448 | map-obj@^1.0.0, map-obj@^1.0.1: 2449 | version "1.0.1" 2450 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 2451 | 2452 | matcher-collection@^1.0.0: 2453 | version "1.0.4" 2454 | resolved "https://registry.yarnpkg.com/matcher-collection/-/matcher-collection-1.0.4.tgz#2f66ae0869996f29e43d0b62c83dd1d43e581755" 2455 | dependencies: 2456 | minimatch "^3.0.2" 2457 | 2458 | math-expression-evaluator@^1.2.14: 2459 | version "1.2.16" 2460 | resolved "https://registry.yarnpkg.com/math-expression-evaluator/-/math-expression-evaluator-1.2.16.tgz#b357fa1ca9faefb8e48d10c14ef2bcb2d9f0a7c9" 2461 | 2462 | media-typer@0.3.0: 2463 | version "0.3.0" 2464 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 2465 | 2466 | memory-fs@^0.4.0, memory-fs@~0.4.1: 2467 | version "0.4.1" 2468 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" 2469 | dependencies: 2470 | errno "^0.1.3" 2471 | readable-stream "^2.0.1" 2472 | 2473 | meow@^3.7.0: 2474 | version "3.7.0" 2475 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 2476 | dependencies: 2477 | camelcase-keys "^2.0.0" 2478 | decamelize "^1.1.2" 2479 | loud-rejection "^1.0.0" 2480 | map-obj "^1.0.1" 2481 | minimist "^1.1.3" 2482 | normalize-package-data "^2.3.4" 2483 | object-assign "^4.0.1" 2484 | read-pkg-up "^1.0.1" 2485 | redent "^1.0.0" 2486 | trim-newlines "^1.0.0" 2487 | 2488 | merge-descriptors@1.0.1: 2489 | version "1.0.1" 2490 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 2491 | 2492 | methods@~1.1.2: 2493 | version "1.1.2" 2494 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 2495 | 2496 | micromatch@^2.1.5, micromatch@^2.3.11: 2497 | version "2.3.11" 2498 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2499 | dependencies: 2500 | arr-diff "^2.0.0" 2501 | array-unique "^0.2.1" 2502 | braces "^1.8.2" 2503 | expand-brackets "^0.1.4" 2504 | extglob "^0.3.1" 2505 | filename-regex "^2.0.0" 2506 | is-extglob "^1.0.0" 2507 | is-glob "^2.0.1" 2508 | kind-of "^3.0.2" 2509 | normalize-path "^2.0.1" 2510 | object.omit "^2.0.0" 2511 | parse-glob "^3.0.4" 2512 | regex-cache "^0.4.2" 2513 | 2514 | miller-rabin@^4.0.0: 2515 | version "4.0.0" 2516 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d" 2517 | dependencies: 2518 | bn.js "^4.0.0" 2519 | brorand "^1.0.1" 2520 | 2521 | "mime-db@>= 1.24.0 < 2", mime-db@~1.26.0: 2522 | version "1.26.0" 2523 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.26.0.tgz#eaffcd0e4fc6935cf8134da246e2e6c35305adff" 2524 | 2525 | mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.13, mime-types@~2.1.7: 2526 | version "2.1.14" 2527 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.14.tgz#f7ef7d97583fcaf3b7d282b6f8b5679dab1e94ee" 2528 | dependencies: 2529 | mime-db "~1.26.0" 2530 | 2531 | mime@1.2.x: 2532 | version "1.2.11" 2533 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.2.11.tgz#58203eed86e3a5ef17aed2b7d9ebd47f0a60dd10" 2534 | 2535 | mime@1.3.4, mime@^1.2.11, mime@^1.3.4: 2536 | version "1.3.4" 2537 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" 2538 | 2539 | mimic-fn@^1.0.0: 2540 | version "1.1.0" 2541 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 2542 | 2543 | minimalistic-assert@^1.0.0: 2544 | version "1.0.0" 2545 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" 2546 | 2547 | "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@~3.0.2: 2548 | version "3.0.3" 2549 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 2550 | dependencies: 2551 | brace-expansion "^1.0.0" 2552 | 2553 | minimist@0.0.8, minimist@~0.0.1: 2554 | version "0.0.8" 2555 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2556 | 2557 | minimist@^1.1.3, minimist@^1.2.0: 2558 | version "1.2.0" 2559 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2560 | 2561 | mkdirp@0.5.x, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1: 2562 | version "0.5.1" 2563 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2564 | dependencies: 2565 | minimist "0.0.8" 2566 | 2567 | moment@^2.16.0: 2568 | version "2.17.1" 2569 | resolved "https://registry.yarnpkg.com/moment/-/moment-2.17.1.tgz#fed9506063f36b10f066c8b59a144d7faebe1d82" 2570 | 2571 | ms@0.7.1: 2572 | version "0.7.1" 2573 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2574 | 2575 | ms@0.7.2: 2576 | version "0.7.2" 2577 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 2578 | 2579 | mute-stream@0.0.7: 2580 | version "0.0.7" 2581 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2582 | 2583 | nan@^2.3.0, nan@^2.3.2: 2584 | version "2.5.1" 2585 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.5.1.tgz#d5b01691253326a97a2bbee9e61c55d8d60351e2" 2586 | 2587 | ncname@1.0.x: 2588 | version "1.0.0" 2589 | resolved "https://registry.yarnpkg.com/ncname/-/ncname-1.0.0.tgz#5b57ad18b1ca092864ef62b0b1ed8194f383b71c" 2590 | dependencies: 2591 | xml-char-classes "^1.0.0" 2592 | 2593 | negotiator@0.6.1: 2594 | version "0.6.1" 2595 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 2596 | 2597 | no-case@^2.2.0: 2598 | version "2.3.1" 2599 | resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.1.tgz#7aeba1c73a52184265554b7dc03baf720df80081" 2600 | dependencies: 2601 | lower-case "^1.1.1" 2602 | 2603 | node-fetch@^1.6.3: 2604 | version "1.6.3" 2605 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.6.3.tgz#dc234edd6489982d58e8f0db4f695029abcd8c04" 2606 | dependencies: 2607 | encoding "^0.1.11" 2608 | is-stream "^1.0.1" 2609 | 2610 | node-gyp@^3.3.1: 2611 | version "3.5.0" 2612 | resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.5.0.tgz#a8fe5e611d079ec16348a3eb960e78e11c85274a" 2613 | dependencies: 2614 | fstream "^1.0.0" 2615 | glob "^7.0.3" 2616 | graceful-fs "^4.1.2" 2617 | minimatch "^3.0.2" 2618 | mkdirp "^0.5.0" 2619 | nopt "2 || 3" 2620 | npmlog "0 || 1 || 2 || 3 || 4" 2621 | osenv "0" 2622 | request "2" 2623 | rimraf "2" 2624 | semver "2.x || 3.x || 4 || 5" 2625 | tar "^2.0.0" 2626 | which "1" 2627 | 2628 | node-libs-browser@^2.0.0: 2629 | version "2.0.0" 2630 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.0.0.tgz#a3a59ec97024985b46e958379646f96c4b616646" 2631 | dependencies: 2632 | assert "^1.1.1" 2633 | browserify-zlib "^0.1.4" 2634 | buffer "^4.3.0" 2635 | console-browserify "^1.1.0" 2636 | constants-browserify "^1.0.0" 2637 | crypto-browserify "^3.11.0" 2638 | domain-browser "^1.1.1" 2639 | events "^1.0.0" 2640 | https-browserify "0.0.1" 2641 | os-browserify "^0.2.0" 2642 | path-browserify "0.0.0" 2643 | process "^0.11.0" 2644 | punycode "^1.2.4" 2645 | querystring-es3 "^0.2.0" 2646 | readable-stream "^2.0.5" 2647 | stream-browserify "^2.0.1" 2648 | stream-http "^2.3.1" 2649 | string_decoder "^0.10.25" 2650 | timers-browserify "^2.0.2" 2651 | tty-browserify "0.0.0" 2652 | url "^0.11.0" 2653 | util "^0.10.3" 2654 | vm-browserify "0.0.4" 2655 | 2656 | node-modules-path@^1.0.0: 2657 | version "1.0.1" 2658 | resolved "https://registry.yarnpkg.com/node-modules-path/-/node-modules-path-1.0.1.tgz#40096b08ce7ad0ea14680863af449c7c75a5d1c8" 2659 | 2660 | node-pre-gyp@^0.6.29: 2661 | version "0.6.33" 2662 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.33.tgz#640ac55198f6a925972e0c16c4ac26a034d5ecc9" 2663 | dependencies: 2664 | mkdirp "~0.5.1" 2665 | nopt "~3.0.6" 2666 | npmlog "^4.0.1" 2667 | rc "~1.1.6" 2668 | request "^2.79.0" 2669 | rimraf "~2.5.4" 2670 | semver "~5.3.0" 2671 | tar "~2.2.1" 2672 | tar-pack "~3.3.0" 2673 | 2674 | node-sass@^4.3.0: 2675 | version "4.5.0" 2676 | resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.5.0.tgz#532e37bad0ce587348c831535dbc98ea4289508b" 2677 | dependencies: 2678 | async-foreach "^0.1.3" 2679 | chalk "^1.1.1" 2680 | cross-spawn "^3.0.0" 2681 | gaze "^1.0.0" 2682 | get-stdin "^4.0.1" 2683 | glob "^7.0.3" 2684 | in-publish "^2.0.0" 2685 | lodash.assign "^4.2.0" 2686 | lodash.clonedeep "^4.3.2" 2687 | lodash.mergewith "^4.6.0" 2688 | meow "^3.7.0" 2689 | mkdirp "^0.5.1" 2690 | nan "^2.3.2" 2691 | node-gyp "^3.3.1" 2692 | npmlog "^4.0.0" 2693 | request "^2.61.0" 2694 | sass-graph "^2.1.1" 2695 | stdout-stream "^1.4.0" 2696 | 2697 | "nopt@2 || 3", nopt@~3.0.6: 2698 | version "3.0.6" 2699 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 2700 | dependencies: 2701 | abbrev "1" 2702 | 2703 | nopt@^4.0.1: 2704 | version "4.0.1" 2705 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2706 | dependencies: 2707 | abbrev "1" 2708 | osenv "^0.1.4" 2709 | 2710 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 2711 | version "2.3.5" 2712 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.5.tgz#8d924f142960e1777e7ffe170543631cc7cb02df" 2713 | dependencies: 2714 | hosted-git-info "^2.1.4" 2715 | is-builtin-module "^1.0.0" 2716 | semver "2 || 3 || 4 || 5" 2717 | validate-npm-package-license "^3.0.1" 2718 | 2719 | normalize-path@^2.0.1: 2720 | version "2.0.1" 2721 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 2722 | 2723 | normalize-range@^0.1.2: 2724 | version "0.1.2" 2725 | resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" 2726 | 2727 | normalize-url@^1.4.0: 2728 | version "1.9.0" 2729 | resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.0.tgz#c2bb50035edee62cd81edb2d45da68dc25e3423e" 2730 | dependencies: 2731 | object-assign "^4.0.1" 2732 | prepend-http "^1.0.0" 2733 | query-string "^4.1.0" 2734 | sort-keys "^1.0.0" 2735 | 2736 | npm-run-path@^1.0.0: 2737 | version "1.0.0" 2738 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-1.0.0.tgz#f5c32bf595fe81ae927daec52e82f8b000ac3c8f" 2739 | dependencies: 2740 | path-key "^1.0.0" 2741 | 2742 | "npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.0, npmlog@^4.0.1: 2743 | version "4.0.2" 2744 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" 2745 | dependencies: 2746 | are-we-there-yet "~1.1.2" 2747 | console-control-strings "~1.1.0" 2748 | gauge "~2.7.1" 2749 | set-blocking "~2.0.0" 2750 | 2751 | nth-check@~1.0.1: 2752 | version "1.0.1" 2753 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.1.tgz#9929acdf628fc2c41098deab82ac580cf149aae4" 2754 | dependencies: 2755 | boolbase "~1.0.0" 2756 | 2757 | num2fraction@^1.2.2: 2758 | version "1.2.2" 2759 | resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" 2760 | 2761 | number-is-nan@^1.0.0: 2762 | version "1.0.1" 2763 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2764 | 2765 | oauth-sign@~0.8.1: 2766 | version "0.8.2" 2767 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2768 | 2769 | object-assign@^4.0.1, object-assign@^4.1.0: 2770 | version "4.1.1" 2771 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2772 | 2773 | object.omit@^2.0.0: 2774 | version "2.0.1" 2775 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2776 | dependencies: 2777 | for-own "^0.1.4" 2778 | is-extendable "^0.1.1" 2779 | 2780 | obuf@^1.0.0, obuf@^1.1.0: 2781 | version "1.1.1" 2782 | resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.1.tgz#104124b6c602c6796881a042541d36db43a5264e" 2783 | 2784 | on-finished@~2.3.0: 2785 | version "2.3.0" 2786 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 2787 | dependencies: 2788 | ee-first "1.1.1" 2789 | 2790 | on-headers@~1.0.1: 2791 | version "1.0.1" 2792 | resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7" 2793 | 2794 | once@^1.3.0: 2795 | version "1.4.0" 2796 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2797 | dependencies: 2798 | wrappy "1" 2799 | 2800 | once@~1.3.3: 2801 | version "1.3.3" 2802 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 2803 | dependencies: 2804 | wrappy "1" 2805 | 2806 | onetime@^2.0.0: 2807 | version "2.0.1" 2808 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2809 | dependencies: 2810 | mimic-fn "^1.0.0" 2811 | 2812 | opn@4.0.2: 2813 | version "4.0.2" 2814 | resolved "https://registry.yarnpkg.com/opn/-/opn-4.0.2.tgz#7abc22e644dff63b0a96d5ab7f2790c0f01abc95" 2815 | dependencies: 2816 | object-assign "^4.0.1" 2817 | pinkie-promise "^2.0.0" 2818 | 2819 | optimist@~0.3, optimist@~0.3.5: 2820 | version "0.3.7" 2821 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.3.7.tgz#c90941ad59e4273328923074d2cf2e7cbc6ec0d9" 2822 | dependencies: 2823 | wordwrap "~0.0.2" 2824 | 2825 | optimist@~0.6.0: 2826 | version "0.6.1" 2827 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2828 | dependencies: 2829 | minimist "~0.0.1" 2830 | wordwrap "~0.0.2" 2831 | 2832 | original@>=0.0.5: 2833 | version "1.0.0" 2834 | resolved "https://registry.yarnpkg.com/original/-/original-1.0.0.tgz#9147f93fa1696d04be61e01bd50baeaca656bd3b" 2835 | dependencies: 2836 | url-parse "1.0.x" 2837 | 2838 | os-browserify@^0.2.0: 2839 | version "0.2.1" 2840 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f" 2841 | 2842 | os-homedir@^1.0.0: 2843 | version "1.0.2" 2844 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2845 | 2846 | os-locale@^1.4.0: 2847 | version "1.4.0" 2848 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2849 | dependencies: 2850 | lcid "^1.0.0" 2851 | 2852 | os-tmpdir@^1.0.0, os-tmpdir@~1.0.1: 2853 | version "1.0.2" 2854 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2855 | 2856 | osenv@0, osenv@^0.1.4: 2857 | version "0.1.4" 2858 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2859 | dependencies: 2860 | os-homedir "^1.0.0" 2861 | os-tmpdir "^1.0.0" 2862 | 2863 | package-json@^4.0.0: 2864 | version "4.0.0" 2865 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.0.tgz#f3c9dc8738f5b59304d54d2cfb3f91d08fdd7998" 2866 | dependencies: 2867 | got "^6.7.1" 2868 | registry-auth-token "^3.0.1" 2869 | registry-url "^3.0.3" 2870 | semver "^5.1.0" 2871 | 2872 | pako@~0.2.0: 2873 | version "0.2.9" 2874 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" 2875 | 2876 | param-case@2.1.x: 2877 | version "2.1.0" 2878 | resolved "https://registry.yarnpkg.com/param-case/-/param-case-2.1.0.tgz#2619f90fd6c829ed0b958f1c84ed03a745a6d70a" 2879 | dependencies: 2880 | no-case "^2.2.0" 2881 | 2882 | parse-asn1@^5.0.0: 2883 | version "5.0.0" 2884 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.0.0.tgz#35060f6d5015d37628c770f4e091a0b5a278bc23" 2885 | dependencies: 2886 | asn1.js "^4.0.0" 2887 | browserify-aes "^1.0.0" 2888 | create-hash "^1.1.0" 2889 | evp_bytestokey "^1.0.0" 2890 | pbkdf2 "^3.0.3" 2891 | 2892 | parse-glob@^3.0.4: 2893 | version "3.0.4" 2894 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2895 | dependencies: 2896 | glob-base "^0.3.0" 2897 | is-dotfile "^1.0.0" 2898 | is-extglob "^1.0.0" 2899 | is-glob "^2.0.0" 2900 | 2901 | parse-json@^2.2.0: 2902 | version "2.2.0" 2903 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2904 | dependencies: 2905 | error-ex "^1.2.0" 2906 | 2907 | parseurl@~1.3.1: 2908 | version "1.3.1" 2909 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56" 2910 | 2911 | path-browserify@0.0.0: 2912 | version "0.0.0" 2913 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 2914 | 2915 | path-exists@^2.0.0: 2916 | version "2.1.0" 2917 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2918 | dependencies: 2919 | pinkie-promise "^2.0.0" 2920 | 2921 | path-is-absolute@^1.0.0: 2922 | version "1.0.1" 2923 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2924 | 2925 | path-key@^1.0.0: 2926 | version "1.0.0" 2927 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-1.0.0.tgz#5d53d578019646c0d68800db4e146e6bdc2ac7af" 2928 | 2929 | path-to-regexp@0.1.7: 2930 | version "0.1.7" 2931 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" 2932 | 2933 | path-type@^1.0.0: 2934 | version "1.1.0" 2935 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2936 | dependencies: 2937 | graceful-fs "^4.1.2" 2938 | pify "^2.0.0" 2939 | pinkie-promise "^2.0.0" 2940 | 2941 | pbkdf2@^3.0.3: 2942 | version "3.0.9" 2943 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.9.tgz#f2c4b25a600058b3c3773c086c37dbbee1ffe693" 2944 | dependencies: 2945 | create-hmac "^1.1.2" 2946 | 2947 | pify@^2.0.0: 2948 | version "2.3.0" 2949 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2950 | 2951 | pinkie-promise@^2.0.0: 2952 | version "2.0.1" 2953 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2954 | dependencies: 2955 | pinkie "^2.0.0" 2956 | 2957 | pinkie@^2.0.0: 2958 | version "2.0.4" 2959 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2960 | 2961 | portfinder@^1.0.9, portfinder@~1.0.12: 2962 | version "1.0.13" 2963 | resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.13.tgz#bb32ecd87c27104ae6ee44b5a3ccbf0ebb1aede9" 2964 | dependencies: 2965 | async "^1.5.2" 2966 | debug "^2.2.0" 2967 | mkdirp "0.5.x" 2968 | 2969 | postcss-calc@^5.2.0: 2970 | version "5.3.1" 2971 | resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-5.3.1.tgz#77bae7ca928ad85716e2fda42f261bf7c1d65b5e" 2972 | dependencies: 2973 | postcss "^5.0.2" 2974 | postcss-message-helpers "^2.0.0" 2975 | reduce-css-calc "^1.2.6" 2976 | 2977 | postcss-colormin@^2.1.8: 2978 | version "2.2.2" 2979 | resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-2.2.2.tgz#6631417d5f0e909a3d7ec26b24c8a8d1e4f96e4b" 2980 | dependencies: 2981 | colormin "^1.0.5" 2982 | postcss "^5.0.13" 2983 | postcss-value-parser "^3.2.3" 2984 | 2985 | postcss-convert-values@^2.3.4: 2986 | version "2.6.1" 2987 | resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz#bbd8593c5c1fd2e3d1c322bb925dcae8dae4d62d" 2988 | dependencies: 2989 | postcss "^5.0.11" 2990 | postcss-value-parser "^3.1.2" 2991 | 2992 | postcss-discard-comments@^2.0.4: 2993 | version "2.0.4" 2994 | resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz#befe89fafd5b3dace5ccce51b76b81514be00e3d" 2995 | dependencies: 2996 | postcss "^5.0.14" 2997 | 2998 | postcss-discard-duplicates@^2.0.1: 2999 | version "2.0.2" 3000 | resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-2.0.2.tgz#02be520e91571ffb10738766a981d5770989bb32" 3001 | dependencies: 3002 | postcss "^5.0.4" 3003 | 3004 | postcss-discard-empty@^2.0.1: 3005 | version "2.1.0" 3006 | resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz#d2b4bd9d5ced5ebd8dcade7640c7d7cd7f4f92b5" 3007 | dependencies: 3008 | postcss "^5.0.14" 3009 | 3010 | postcss-discard-overridden@^0.1.1: 3011 | version "0.1.1" 3012 | resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz#8b1eaf554f686fb288cd874c55667b0aa3668d58" 3013 | dependencies: 3014 | postcss "^5.0.16" 3015 | 3016 | postcss-discard-unused@^2.2.1: 3017 | version "2.2.3" 3018 | resolved "https://registry.yarnpkg.com/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz#bce30b2cc591ffc634322b5fb3464b6d934f4433" 3019 | dependencies: 3020 | postcss "^5.0.14" 3021 | uniqs "^2.0.0" 3022 | 3023 | postcss-filter-plugins@^2.0.0: 3024 | version "2.0.2" 3025 | resolved "https://registry.yarnpkg.com/postcss-filter-plugins/-/postcss-filter-plugins-2.0.2.tgz#6d85862534d735ac420e4a85806e1f5d4286d84c" 3026 | dependencies: 3027 | postcss "^5.0.4" 3028 | uniqid "^4.0.0" 3029 | 3030 | postcss-loader@^0.13.0: 3031 | version "0.13.0" 3032 | resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-0.13.0.tgz#72fdaf0d29444df77d3751ce4e69dc40bc99ed85" 3033 | dependencies: 3034 | loader-utils "^0.2.15" 3035 | postcss "^5.2.0" 3036 | 3037 | postcss-merge-idents@^2.1.5: 3038 | version "2.1.7" 3039 | resolved "https://registry.yarnpkg.com/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz#4c5530313c08e1d5b3bbf3d2bbc747e278eea270" 3040 | dependencies: 3041 | has "^1.0.1" 3042 | postcss "^5.0.10" 3043 | postcss-value-parser "^3.1.1" 3044 | 3045 | postcss-merge-longhand@^2.0.1: 3046 | version "2.0.2" 3047 | resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz#23d90cd127b0a77994915332739034a1a4f3d658" 3048 | dependencies: 3049 | postcss "^5.0.4" 3050 | 3051 | postcss-merge-rules@^2.0.3: 3052 | version "2.1.1" 3053 | resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-2.1.1.tgz#5e5640020ce43cddd343c73bba91c9a358d1fe0f" 3054 | dependencies: 3055 | browserslist "^1.5.2" 3056 | caniuse-api "^1.5.2" 3057 | postcss "^5.0.4" 3058 | postcss-selector-parser "^2.2.2" 3059 | vendors "^1.0.0" 3060 | 3061 | postcss-message-helpers@^2.0.0: 3062 | version "2.0.0" 3063 | resolved "https://registry.yarnpkg.com/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz#a4f2f4fab6e4fe002f0aed000478cdf52f9ba60e" 3064 | 3065 | postcss-minify-font-values@^1.0.2: 3066 | version "1.0.5" 3067 | resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz#4b58edb56641eba7c8474ab3526cafd7bbdecb69" 3068 | dependencies: 3069 | object-assign "^4.0.1" 3070 | postcss "^5.0.4" 3071 | postcss-value-parser "^3.0.2" 3072 | 3073 | postcss-minify-gradients@^1.0.1: 3074 | version "1.0.5" 3075 | resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz#5dbda11373703f83cfb4a3ea3881d8d75ff5e6e1" 3076 | dependencies: 3077 | postcss "^5.0.12" 3078 | postcss-value-parser "^3.3.0" 3079 | 3080 | postcss-minify-params@^1.0.4: 3081 | version "1.2.2" 3082 | resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz#ad2ce071373b943b3d930a3fa59a358c28d6f1f3" 3083 | dependencies: 3084 | alphanum-sort "^1.0.1" 3085 | postcss "^5.0.2" 3086 | postcss-value-parser "^3.0.2" 3087 | uniqs "^2.0.0" 3088 | 3089 | postcss-minify-selectors@^2.0.4: 3090 | version "2.1.1" 3091 | resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz#b2c6a98c0072cf91b932d1a496508114311735bf" 3092 | dependencies: 3093 | alphanum-sort "^1.0.2" 3094 | has "^1.0.1" 3095 | postcss "^5.0.14" 3096 | postcss-selector-parser "^2.0.0" 3097 | 3098 | postcss-modules-extract-imports@^1.0.0: 3099 | version "1.0.1" 3100 | resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.0.1.tgz#8fb3fef9a6dd0420d3f6d4353cf1ff73f2b2a341" 3101 | dependencies: 3102 | postcss "^5.0.4" 3103 | 3104 | postcss-modules-local-by-default@^1.0.1: 3105 | version "1.1.1" 3106 | resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.1.1.tgz#29a10673fa37d19251265ca2ba3150d9040eb4ce" 3107 | dependencies: 3108 | css-selector-tokenizer "^0.6.0" 3109 | postcss "^5.0.4" 3110 | 3111 | postcss-modules-scope@^1.0.0: 3112 | version "1.0.2" 3113 | resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-1.0.2.tgz#ff977395e5e06202d7362290b88b1e8cd049de29" 3114 | dependencies: 3115 | css-selector-tokenizer "^0.6.0" 3116 | postcss "^5.0.4" 3117 | 3118 | postcss-modules-values@^1.1.0: 3119 | version "1.2.2" 3120 | resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-1.2.2.tgz#f0e7d476fe1ed88c5e4c7f97533a3e772ad94ca1" 3121 | dependencies: 3122 | icss-replace-symbols "^1.0.2" 3123 | postcss "^5.0.14" 3124 | 3125 | postcss-normalize-charset@^1.1.0: 3126 | version "1.1.1" 3127 | resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz#ef9ee71212d7fe759c78ed162f61ed62b5cb93f1" 3128 | dependencies: 3129 | postcss "^5.0.5" 3130 | 3131 | postcss-normalize-url@^3.0.7: 3132 | version "3.0.8" 3133 | resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz#108f74b3f2fcdaf891a2ffa3ea4592279fc78222" 3134 | dependencies: 3135 | is-absolute-url "^2.0.0" 3136 | normalize-url "^1.4.0" 3137 | postcss "^5.0.14" 3138 | postcss-value-parser "^3.2.3" 3139 | 3140 | postcss-ordered-values@^2.1.0: 3141 | version "2.2.3" 3142 | resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz#eec6c2a67b6c412a8db2042e77fe8da43f95c11d" 3143 | dependencies: 3144 | postcss "^5.0.4" 3145 | postcss-value-parser "^3.0.1" 3146 | 3147 | postcss-reduce-idents@^2.2.2: 3148 | version "2.4.0" 3149 | resolved "https://registry.yarnpkg.com/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz#c2c6d20cc958284f6abfbe63f7609bf409059ad3" 3150 | dependencies: 3151 | postcss "^5.0.4" 3152 | postcss-value-parser "^3.0.2" 3153 | 3154 | postcss-reduce-initial@^1.0.0: 3155 | version "1.0.1" 3156 | resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz#68f80695f045d08263a879ad240df8dd64f644ea" 3157 | dependencies: 3158 | postcss "^5.0.4" 3159 | 3160 | postcss-reduce-transforms@^1.0.3: 3161 | version "1.0.4" 3162 | resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz#ff76f4d8212437b31c298a42d2e1444025771ae1" 3163 | dependencies: 3164 | has "^1.0.1" 3165 | postcss "^5.0.8" 3166 | postcss-value-parser "^3.0.1" 3167 | 3168 | postcss-selector-parser@^2.0.0, postcss-selector-parser@^2.2.2: 3169 | version "2.2.2" 3170 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-2.2.2.tgz#3d70f5adda130da51c7c0c2fc023f56b1374fe08" 3171 | dependencies: 3172 | flatten "^1.0.2" 3173 | indexes-of "^1.0.1" 3174 | uniq "^1.0.1" 3175 | 3176 | postcss-svgo@^2.1.1: 3177 | version "2.1.6" 3178 | resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-2.1.6.tgz#b6df18aa613b666e133f08adb5219c2684ac108d" 3179 | dependencies: 3180 | is-svg "^2.0.0" 3181 | postcss "^5.0.14" 3182 | postcss-value-parser "^3.2.3" 3183 | svgo "^0.7.0" 3184 | 3185 | postcss-unique-selectors@^2.0.2: 3186 | version "2.0.2" 3187 | resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz#981d57d29ddcb33e7b1dfe1fd43b8649f933ca1d" 3188 | dependencies: 3189 | alphanum-sort "^1.0.1" 3190 | postcss "^5.0.4" 3191 | uniqs "^2.0.0" 3192 | 3193 | postcss-url@^5.1.2: 3194 | version "5.1.2" 3195 | resolved "https://registry.yarnpkg.com/postcss-url/-/postcss-url-5.1.2.tgz#98b3165be8d592471cb0caadde2c0d1f832f133e" 3196 | dependencies: 3197 | directory-encoder "^0.7.2" 3198 | js-base64 "^2.1.5" 3199 | mime "^1.2.11" 3200 | minimatch "^3.0.0" 3201 | mkdirp "^0.5.0" 3202 | path-is-absolute "^1.0.0" 3203 | postcss "^5.0.0" 3204 | 3205 | postcss-value-parser@^3.0.1, postcss-value-parser@^3.0.2, postcss-value-parser@^3.1.1, postcss-value-parser@^3.1.2, postcss-value-parser@^3.2.3, postcss-value-parser@^3.3.0: 3206 | version "3.3.0" 3207 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15" 3208 | 3209 | postcss-zindex@^2.0.1: 3210 | version "2.2.0" 3211 | resolved "https://registry.yarnpkg.com/postcss-zindex/-/postcss-zindex-2.2.0.tgz#d2109ddc055b91af67fc4cb3b025946639d2af22" 3212 | dependencies: 3213 | has "^1.0.1" 3214 | postcss "^5.0.4" 3215 | uniqs "^2.0.0" 3216 | 3217 | postcss@^5.0.0, postcss@^5.0.10, postcss@^5.0.11, postcss@^5.0.12, postcss@^5.0.13, postcss@^5.0.14, postcss@^5.0.16, postcss@^5.0.2, postcss@^5.0.4, postcss@^5.0.5, postcss@^5.0.6, postcss@^5.0.8, postcss@^5.2.0, postcss@^5.2.11: 3218 | version "5.2.12" 3219 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.12.tgz#6a2b15e35dd65634441bb0961fa796904c7890e0" 3220 | dependencies: 3221 | chalk "^1.1.3" 3222 | js-base64 "^2.1.9" 3223 | source-map "^0.5.6" 3224 | supports-color "^3.2.3" 3225 | 3226 | prepend-http@^1.0.0, prepend-http@^1.0.1: 3227 | version "1.0.4" 3228 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 3229 | 3230 | preserve@^0.2.0: 3231 | version "0.2.0" 3232 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 3233 | 3234 | pretty-error@^2.0.2: 3235 | version "2.0.2" 3236 | resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-2.0.2.tgz#a7db19cbb529ca9f0af3d3a2f77d5caf8e5dec23" 3237 | dependencies: 3238 | renderkid "~2.0.0" 3239 | utila "~0.4" 3240 | 3241 | process-nextick-args@~1.0.6: 3242 | version "1.0.7" 3243 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 3244 | 3245 | process@^0.11.0: 3246 | version "0.11.9" 3247 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.9.tgz#7bd5ad21aa6253e7da8682264f1e11d11c0318c1" 3248 | 3249 | promise@^7.1.1: 3250 | version "7.1.1" 3251 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.1.1.tgz#489654c692616b8aa55b0724fa809bb7db49c5bf" 3252 | dependencies: 3253 | asap "~2.0.3" 3254 | 3255 | proxy-addr@~1.1.3: 3256 | version "1.1.3" 3257 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-1.1.3.tgz#dc97502f5722e888467b3fa2297a7b1ff47df074" 3258 | dependencies: 3259 | forwarded "~0.1.0" 3260 | ipaddr.js "1.2.0" 3261 | 3262 | prr@~0.0.0: 3263 | version "0.0.0" 3264 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 3265 | 3266 | pseudomap@^1.0.1: 3267 | version "1.0.2" 3268 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 3269 | 3270 | public-encrypt@^4.0.0: 3271 | version "4.0.0" 3272 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" 3273 | dependencies: 3274 | bn.js "^4.1.0" 3275 | browserify-rsa "^4.0.0" 3276 | create-hash "^1.1.0" 3277 | parse-asn1 "^5.0.0" 3278 | randombytes "^2.0.1" 3279 | 3280 | punycode@1.3.2: 3281 | version "1.3.2" 3282 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 3283 | 3284 | punycode@^1.2.4, punycode@^1.4.1: 3285 | version "1.4.1" 3286 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 3287 | 3288 | q@^1.1.2: 3289 | version "1.4.1" 3290 | resolved "https://registry.yarnpkg.com/q/-/q-1.4.1.tgz#55705bcd93c5f3673530c2c2cbc0c2b3addc286e" 3291 | 3292 | qs@6.2.0: 3293 | version "6.2.0" 3294 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.0.tgz#3b7848c03c2dece69a9522b0fae8c4126d745f3b" 3295 | 3296 | qs@~6.3.0: 3297 | version "6.3.0" 3298 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442" 3299 | 3300 | query-string@^4.1.0: 3301 | version "4.3.1" 3302 | resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.1.tgz#54baada6713eafc92be75c47a731f2ebd09cd11d" 3303 | dependencies: 3304 | object-assign "^4.1.0" 3305 | strict-uri-encode "^1.0.0" 3306 | 3307 | querystring-es3@^0.2.0: 3308 | version "0.2.1" 3309 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 3310 | 3311 | querystring@0.2.0: 3312 | version "0.2.0" 3313 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 3314 | 3315 | querystringify@0.0.x: 3316 | version "0.0.4" 3317 | resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-0.0.4.tgz#0cf7f84f9463ff0ae51c4c4b142d95be37724d9c" 3318 | 3319 | randomatic@^1.1.3: 3320 | version "1.1.6" 3321 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 3322 | dependencies: 3323 | is-number "^2.0.2" 3324 | kind-of "^3.0.2" 3325 | 3326 | randombytes@^2.0.0, randombytes@^2.0.1: 3327 | version "2.0.3" 3328 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.3.tgz#674c99760901c3c4112771a31e521dc349cc09ec" 3329 | 3330 | range-parser@^1.0.3, range-parser@~1.2.0: 3331 | version "1.2.0" 3332 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" 3333 | 3334 | raw-loader@^0.5.1, raw-loader@~0.5.1: 3335 | version "0.5.1" 3336 | resolved "https://registry.yarnpkg.com/raw-loader/-/raw-loader-0.5.1.tgz#0c3d0beaed8a01c966d9787bf778281252a979aa" 3337 | 3338 | rc@^1.0.1, rc@^1.1.6, rc@~1.1.6: 3339 | version "1.1.6" 3340 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.6.tgz#43651b76b6ae53b5c802f1151fa3fc3b059969c9" 3341 | dependencies: 3342 | deep-extend "~0.4.0" 3343 | ini "~1.3.0" 3344 | minimist "^1.2.0" 3345 | strip-json-comments "~1.0.4" 3346 | 3347 | read-pkg-up@^1.0.1: 3348 | version "1.0.1" 3349 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 3350 | dependencies: 3351 | find-up "^1.0.0" 3352 | read-pkg "^1.0.0" 3353 | 3354 | read-pkg@^1.0.0: 3355 | version "1.1.0" 3356 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 3357 | dependencies: 3358 | load-json-file "^1.0.0" 3359 | normalize-package-data "^2.3.2" 3360 | path-type "^1.0.0" 3361 | 3362 | readable-stream@1.0: 3363 | version "1.0.34" 3364 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" 3365 | dependencies: 3366 | core-util-is "~1.0.0" 3367 | inherits "~2.0.1" 3368 | isarray "0.0.1" 3369 | string_decoder "~0.10.x" 3370 | 3371 | "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.1.0: 3372 | version "2.2.2" 3373 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.2.tgz#a9e6fec3c7dda85f8bb1b3ba7028604556fc825e" 3374 | dependencies: 3375 | buffer-shims "^1.0.0" 3376 | core-util-is "~1.0.0" 3377 | inherits "~2.0.1" 3378 | isarray "~1.0.0" 3379 | process-nextick-args "~1.0.6" 3380 | string_decoder "~0.10.x" 3381 | util-deprecate "~1.0.1" 3382 | 3383 | readable-stream@~2.1.4: 3384 | version "2.1.5" 3385 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" 3386 | dependencies: 3387 | buffer-shims "^1.0.0" 3388 | core-util-is "~1.0.0" 3389 | inherits "~2.0.1" 3390 | isarray "~1.0.0" 3391 | process-nextick-args "~1.0.6" 3392 | string_decoder "~0.10.x" 3393 | util-deprecate "~1.0.1" 3394 | 3395 | readdirp@^2.0.0: 3396 | version "2.1.0" 3397 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 3398 | dependencies: 3399 | graceful-fs "^4.1.2" 3400 | minimatch "^3.0.2" 3401 | readable-stream "^2.0.2" 3402 | set-immediate-shim "^1.0.1" 3403 | 3404 | redent@^1.0.0: 3405 | version "1.0.0" 3406 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 3407 | dependencies: 3408 | indent-string "^2.1.0" 3409 | strip-indent "^1.0.1" 3410 | 3411 | reduce-css-calc@^1.2.6: 3412 | version "1.3.0" 3413 | resolved "https://registry.yarnpkg.com/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz#747c914e049614a4c9cfbba629871ad1d2927716" 3414 | dependencies: 3415 | balanced-match "^0.4.2" 3416 | math-expression-evaluator "^1.2.14" 3417 | reduce-function-call "^1.0.1" 3418 | 3419 | reduce-function-call@^1.0.1: 3420 | version "1.0.2" 3421 | resolved "https://registry.yarnpkg.com/reduce-function-call/-/reduce-function-call-1.0.2.tgz#5a200bf92e0e37751752fe45b0ab330fd4b6be99" 3422 | dependencies: 3423 | balanced-match "^0.4.2" 3424 | 3425 | redux@^3.4.0: 3426 | version "3.6.0" 3427 | resolved "https://registry.yarnpkg.com/redux/-/redux-3.6.0.tgz#887c2b3d0b9bd86eca2be70571c27654c19e188d" 3428 | dependencies: 3429 | lodash "^4.2.1" 3430 | lodash-es "^4.2.1" 3431 | loose-envify "^1.1.0" 3432 | symbol-observable "^1.0.2" 3433 | 3434 | reflect-metadata@^0.1.2: 3435 | version "0.1.9" 3436 | resolved "https://registry.yarnpkg.com/reflect-metadata/-/reflect-metadata-0.1.9.tgz#987238dc87a516895fe457f130435ffbd763a4d4" 3437 | 3438 | regenerate@^1.2.1: 3439 | version "1.3.2" 3440 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 3441 | 3442 | regenerator-runtime@^0.10.0: 3443 | version "0.10.1" 3444 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.1.tgz#257f41961ce44558b18f7814af48c17559f9faeb" 3445 | 3446 | regex-cache@^0.4.2: 3447 | version "0.4.3" 3448 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 3449 | dependencies: 3450 | is-equal-shallow "^0.1.3" 3451 | is-primitive "^2.0.0" 3452 | 3453 | regexpu-core@^1.0.0: 3454 | version "1.0.0" 3455 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-1.0.0.tgz#86a763f58ee4d7c2f6b102e4764050de7ed90c6b" 3456 | dependencies: 3457 | regenerate "^1.2.1" 3458 | regjsgen "^0.2.0" 3459 | regjsparser "^0.1.4" 3460 | 3461 | registry-auth-token@^3.0.1: 3462 | version "3.1.0" 3463 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.1.0.tgz#997c08256e0c7999837b90e944db39d8a790276b" 3464 | dependencies: 3465 | rc "^1.1.6" 3466 | 3467 | registry-url@^3.0.3: 3468 | version "3.1.0" 3469 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 3470 | dependencies: 3471 | rc "^1.0.1" 3472 | 3473 | regjsgen@^0.2.0: 3474 | version "0.2.0" 3475 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 3476 | 3477 | regjsparser@^0.1.4: 3478 | version "0.1.5" 3479 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 3480 | dependencies: 3481 | jsesc "~0.5.0" 3482 | 3483 | relateurl@0.2.x: 3484 | version "0.2.7" 3485 | resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" 3486 | 3487 | renderkid@~2.0.0: 3488 | version "2.0.0" 3489 | resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.0.tgz#1859753e7a5adbf35443aba0d4e4579e78abee85" 3490 | dependencies: 3491 | css-select "^1.1.0" 3492 | dom-converter "~0.1" 3493 | htmlparser2 "~3.3.0" 3494 | strip-ansi "^3.0.0" 3495 | utila "~0.3" 3496 | 3497 | repeat-element@^1.1.2: 3498 | version "1.1.2" 3499 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3500 | 3501 | repeat-string@^1.5.2: 3502 | version "1.6.1" 3503 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3504 | 3505 | repeating@^2.0.0: 3506 | version "2.0.1" 3507 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3508 | dependencies: 3509 | is-finite "^1.0.0" 3510 | 3511 | request@2, request@^2.61.0, request@^2.72.0, request@^2.79.0: 3512 | version "2.79.0" 3513 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 3514 | dependencies: 3515 | aws-sign2 "~0.6.0" 3516 | aws4 "^1.2.1" 3517 | caseless "~0.11.0" 3518 | combined-stream "~1.0.5" 3519 | extend "~3.0.0" 3520 | forever-agent "~0.6.1" 3521 | form-data "~2.1.1" 3522 | har-validator "~2.0.6" 3523 | hawk "~3.1.3" 3524 | http-signature "~1.1.0" 3525 | is-typedarray "~1.0.0" 3526 | isstream "~0.1.2" 3527 | json-stringify-safe "~5.0.1" 3528 | mime-types "~2.1.7" 3529 | oauth-sign "~0.8.1" 3530 | qs "~6.3.0" 3531 | stringstream "~0.0.4" 3532 | tough-cookie "~2.3.0" 3533 | tunnel-agent "~0.4.1" 3534 | uuid "^3.0.0" 3535 | 3536 | require-directory@^2.1.1: 3537 | version "2.1.1" 3538 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3539 | 3540 | require-main-filename@^1.0.1: 3541 | version "1.0.1" 3542 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3543 | 3544 | requires-port@1.0.x, requires-port@1.x.x: 3545 | version "1.0.0" 3546 | resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" 3547 | 3548 | resolve@^1.1.7: 3549 | version "1.2.0" 3550 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.2.0.tgz#9589c3f2f6149d1417a40becc1663db6ec6bc26c" 3551 | 3552 | restore-cursor@^2.0.0: 3553 | version "2.0.0" 3554 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 3555 | dependencies: 3556 | onetime "^2.0.0" 3557 | signal-exit "^3.0.2" 3558 | 3559 | right-align@^0.1.1: 3560 | version "0.1.3" 3561 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3562 | dependencies: 3563 | align-text "^0.1.1" 3564 | 3565 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.3, rimraf@~2.5.1, rimraf@~2.5.4: 3566 | version "2.5.4" 3567 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 3568 | dependencies: 3569 | glob "^7.0.5" 3570 | 3571 | rimraf@~2.2.6: 3572 | version "2.2.8" 3573 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.2.8.tgz#e439be2aaee327321952730f99a8929e4fc50582" 3574 | 3575 | ripemd160@^1.0.0: 3576 | version "1.0.1" 3577 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-1.0.1.tgz#93a4bbd4942bc574b69a8fa57c71de10ecca7d6e" 3578 | 3579 | rsvp@^3.0.17: 3580 | version "3.3.3" 3581 | resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-3.3.3.tgz#34633caaf8bc66ceff4be3c2e1dffd032538a813" 3582 | 3583 | run-async@^2.2.0: 3584 | version "2.3.0" 3585 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 3586 | dependencies: 3587 | is-promise "^2.1.0" 3588 | 3589 | rx@^4.1.0: 3590 | version "4.1.0" 3591 | resolved "https://registry.yarnpkg.com/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782" 3592 | 3593 | rxjs@^5.0.1, rxjs@^5.1.0: 3594 | version "5.3.0" 3595 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.3.0.tgz#d88ccbdd46af290cbdb97d5d8055e52453fabe2d" 3596 | dependencies: 3597 | symbol-observable "^1.0.1" 3598 | 3599 | safe-buffer@^5.0.1: 3600 | version "5.0.1" 3601 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 3602 | 3603 | sass-graph@^2.1.1: 3604 | version "2.1.2" 3605 | resolved "https://registry.yarnpkg.com/sass-graph/-/sass-graph-2.1.2.tgz#965104be23e8103cb7e5f710df65935b317da57b" 3606 | dependencies: 3607 | glob "^7.0.0" 3608 | lodash "^4.0.0" 3609 | yargs "^4.7.1" 3610 | 3611 | sass-loader@^4.1.1: 3612 | version "4.1.1" 3613 | resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-4.1.1.tgz#79ef9468cf0bf646c29529e1f2cba6bd6e51c7bc" 3614 | dependencies: 3615 | async "^2.0.1" 3616 | loader-utils "^0.2.15" 3617 | object-assign "^4.1.0" 3618 | 3619 | sax@0.5.x: 3620 | version "0.5.8" 3621 | resolved "https://registry.yarnpkg.com/sax/-/sax-0.5.8.tgz#d472db228eb331c2506b0e8c15524adb939d12c1" 3622 | 3623 | sax@~1.2.1: 3624 | version "1.2.2" 3625 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.2.tgz#fd8631a23bc7826bef5d871bdb87378c95647828" 3626 | 3627 | script-loader@^0.7.0: 3628 | version "0.7.0" 3629 | resolved "https://registry.yarnpkg.com/script-loader/-/script-loader-0.7.0.tgz#685dc7e7069e0dee7a92674f0ebc5b0f55baa5ec" 3630 | dependencies: 3631 | raw-loader "~0.5.1" 3632 | 3633 | select-hose@^2.0.0: 3634 | version "2.0.0" 3635 | resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca" 3636 | 3637 | semver-diff@^2.0.0: 3638 | version "2.1.0" 3639 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 3640 | dependencies: 3641 | semver "^5.0.3" 3642 | 3643 | semver-dsl@^1.0.1: 3644 | version "1.0.1" 3645 | resolved "https://registry.yarnpkg.com/semver-dsl/-/semver-dsl-1.0.1.tgz#d3678de5555e8a61f629eed025366ae5f27340a0" 3646 | dependencies: 3647 | semver "^5.3.0" 3648 | 3649 | "semver@2 || 3 || 4 || 5", "semver@2.x || 3.x || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@~5.3.0: 3650 | version "5.3.0" 3651 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3652 | 3653 | send@0.14.2: 3654 | version "0.14.2" 3655 | resolved "https://registry.yarnpkg.com/send/-/send-0.14.2.tgz#39b0438b3f510be5dc6f667a11f71689368cdeef" 3656 | dependencies: 3657 | debug "~2.2.0" 3658 | depd "~1.1.0" 3659 | destroy "~1.0.4" 3660 | encodeurl "~1.0.1" 3661 | escape-html "~1.0.3" 3662 | etag "~1.7.0" 3663 | fresh "0.3.0" 3664 | http-errors "~1.5.1" 3665 | mime "1.3.4" 3666 | ms "0.7.2" 3667 | on-finished "~2.3.0" 3668 | range-parser "~1.2.0" 3669 | statuses "~1.3.1" 3670 | 3671 | serve-index@^1.7.2: 3672 | version "1.8.0" 3673 | resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.8.0.tgz#7c5d96c13fb131101f93c1c5774f8516a1e78d3b" 3674 | dependencies: 3675 | accepts "~1.3.3" 3676 | batch "0.5.3" 3677 | debug "~2.2.0" 3678 | escape-html "~1.0.3" 3679 | http-errors "~1.5.0" 3680 | mime-types "~2.1.11" 3681 | parseurl "~1.3.1" 3682 | 3683 | serve-static@~1.11.2: 3684 | version "1.11.2" 3685 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.11.2.tgz#2cf9889bd4435a320cc36895c9aa57bd662e6ac7" 3686 | dependencies: 3687 | encodeurl "~1.0.1" 3688 | escape-html "~1.0.3" 3689 | parseurl "~1.3.1" 3690 | send "0.14.2" 3691 | 3692 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3693 | version "2.0.0" 3694 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3695 | 3696 | set-immediate-shim@^1.0.1: 3697 | version "1.0.1" 3698 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3699 | 3700 | setimmediate@^1.0.4: 3701 | version "1.0.5" 3702 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 3703 | 3704 | setprototypeof@1.0.2: 3705 | version "1.0.2" 3706 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.2.tgz#81a552141ec104b88e89ce383103ad5c66564d08" 3707 | 3708 | sha.js@^2.3.6: 3709 | version "2.4.8" 3710 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.8.tgz#37068c2c476b6baf402d14a49c67f597921f634f" 3711 | dependencies: 3712 | inherits "^2.0.1" 3713 | 3714 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3715 | version "3.0.2" 3716 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3717 | 3718 | silent-error@^1.0.0: 3719 | version "1.0.1" 3720 | resolved "https://registry.yarnpkg.com/silent-error/-/silent-error-1.0.1.tgz#71b7d503d1c6f94882b51b56be879b113cb4822c" 3721 | dependencies: 3722 | debug "^2.2.0" 3723 | 3724 | slide@^1.1.5: 3725 | version "1.1.6" 3726 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 3727 | 3728 | sntp@1.x.x: 3729 | version "1.0.9" 3730 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3731 | dependencies: 3732 | hoek "2.x.x" 3733 | 3734 | sockjs-client@1.1.1: 3735 | version "1.1.1" 3736 | resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.1.1.tgz#284843e9a9784d7c474b1571b3240fca9dda4bb0" 3737 | dependencies: 3738 | debug "^2.2.0" 3739 | eventsource "~0.1.6" 3740 | faye-websocket "~0.11.0" 3741 | inherits "^2.0.1" 3742 | json3 "^3.3.2" 3743 | url-parse "^1.1.1" 3744 | 3745 | sockjs@0.3.18: 3746 | version "0.3.18" 3747 | resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.18.tgz#d9b289316ca7df77595ef299e075f0f937eb4207" 3748 | dependencies: 3749 | faye-websocket "^0.10.0" 3750 | uuid "^2.0.2" 3751 | 3752 | sort-keys@^1.0.0: 3753 | version "1.1.2" 3754 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" 3755 | dependencies: 3756 | is-plain-obj "^1.0.0" 3757 | 3758 | source-list-map@^0.1.4, source-list-map@~0.1.7: 3759 | version "0.1.8" 3760 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-0.1.8.tgz#c550b2ab5427f6b3f21f5afead88c4f5587b2106" 3761 | 3762 | source-map-loader@^0.1.5: 3763 | version "0.1.6" 3764 | resolved "https://registry.yarnpkg.com/source-map-loader/-/source-map-loader-0.1.6.tgz#c09903da6d73b9e53b7ed8ee5245597051e98e91" 3765 | dependencies: 3766 | async "^0.9.0" 3767 | loader-utils "~0.2.2" 3768 | source-map "~0.1.33" 3769 | 3770 | source-map-support@^0.4.2: 3771 | version "0.4.11" 3772 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.11.tgz#647f939978b38535909530885303daf23279f322" 3773 | dependencies: 3774 | source-map "^0.5.3" 3775 | 3776 | source-map@0.1.x, source-map@^0.1.41, source-map@~0.1.33, source-map@~0.1.7: 3777 | version "0.1.43" 3778 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.43.tgz#c24bc146ca517c1471f5dacbe2571b2b7f9e3346" 3779 | dependencies: 3780 | amdefine ">=0.0.4" 3781 | 3782 | source-map@0.5.x, source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.3: 3783 | version "0.5.6" 3784 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3785 | 3786 | spdx-correct@~1.0.0: 3787 | version "1.0.2" 3788 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3789 | dependencies: 3790 | spdx-license-ids "^1.0.2" 3791 | 3792 | spdx-expression-parse@~1.0.0: 3793 | version "1.0.4" 3794 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3795 | 3796 | spdx-license-ids@^1.0.2: 3797 | version "1.2.2" 3798 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3799 | 3800 | spdy-transport@^2.0.15: 3801 | version "2.0.18" 3802 | resolved "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-2.0.18.tgz#43fc9c56be2cccc12bb3e2754aa971154e836ea6" 3803 | dependencies: 3804 | debug "^2.2.0" 3805 | hpack.js "^2.1.6" 3806 | obuf "^1.1.0" 3807 | readable-stream "^2.0.1" 3808 | wbuf "^1.4.0" 3809 | 3810 | spdy@^3.4.1: 3811 | version "3.4.4" 3812 | resolved "https://registry.yarnpkg.com/spdy/-/spdy-3.4.4.tgz#e0406407ca90ff01b553eb013505442649f5a819" 3813 | dependencies: 3814 | debug "^2.2.0" 3815 | handle-thing "^1.2.4" 3816 | http-deceiver "^1.2.4" 3817 | select-hose "^2.0.0" 3818 | spdy-transport "^2.0.15" 3819 | 3820 | sprintf-js@^1.0.3, sprintf-js@~1.0.2: 3821 | version "1.0.3" 3822 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3823 | 3824 | sshpk@^1.7.0: 3825 | version "1.10.2" 3826 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.2.tgz#d5a804ce22695515638e798dbe23273de070a5fa" 3827 | dependencies: 3828 | asn1 "~0.2.3" 3829 | assert-plus "^1.0.0" 3830 | dashdash "^1.12.0" 3831 | getpass "^0.1.1" 3832 | optionalDependencies: 3833 | bcrypt-pbkdf "^1.0.0" 3834 | ecc-jsbn "~0.1.1" 3835 | jodid25519 "^1.0.0" 3836 | jsbn "~0.1.0" 3837 | tweetnacl "~0.14.0" 3838 | 3839 | "statuses@>= 1.3.1 < 2", statuses@~1.3.1: 3840 | version "1.3.1" 3841 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" 3842 | 3843 | stdout-stream@^1.4.0: 3844 | version "1.4.0" 3845 | resolved "https://registry.yarnpkg.com/stdout-stream/-/stdout-stream-1.4.0.tgz#a2c7c8587e54d9427ea9edb3ac3f2cd522df378b" 3846 | dependencies: 3847 | readable-stream "^2.0.1" 3848 | 3849 | stream-browserify@^2.0.1: 3850 | version "2.0.1" 3851 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 3852 | dependencies: 3853 | inherits "~2.0.1" 3854 | readable-stream "^2.0.2" 3855 | 3856 | stream-http@^2.3.1: 3857 | version "2.6.3" 3858 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.6.3.tgz#4c3ddbf9635968ea2cfd4e48d43de5def2625ac3" 3859 | dependencies: 3860 | builtin-status-codes "^3.0.0" 3861 | inherits "^2.0.1" 3862 | readable-stream "^2.1.0" 3863 | to-arraybuffer "^1.0.0" 3864 | xtend "^4.0.0" 3865 | 3866 | strict-uri-encode@^1.0.0: 3867 | version "1.1.0" 3868 | resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" 3869 | 3870 | string-width@^1.0.1, string-width@^1.0.2: 3871 | version "1.0.2" 3872 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3873 | dependencies: 3874 | code-point-at "^1.0.0" 3875 | is-fullwidth-code-point "^1.0.0" 3876 | strip-ansi "^3.0.0" 3877 | 3878 | string-width@^2.0.0: 3879 | version "2.0.0" 3880 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 3881 | dependencies: 3882 | is-fullwidth-code-point "^2.0.0" 3883 | strip-ansi "^3.0.0" 3884 | 3885 | string_decoder@^0.10.25, string_decoder@~0.10.x: 3886 | version "0.10.31" 3887 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3888 | 3889 | stringstream@~0.0.4: 3890 | version "0.0.5" 3891 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3892 | 3893 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3894 | version "3.0.1" 3895 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3896 | dependencies: 3897 | ansi-regex "^2.0.0" 3898 | 3899 | strip-bom@^2.0.0: 3900 | version "2.0.0" 3901 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3902 | dependencies: 3903 | is-utf8 "^0.2.0" 3904 | 3905 | strip-eof@^1.0.0: 3906 | version "1.0.0" 3907 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3908 | 3909 | strip-indent@^1.0.1: 3910 | version "1.0.1" 3911 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 3912 | dependencies: 3913 | get-stdin "^4.0.1" 3914 | 3915 | strip-json-comments@~1.0.4: 3916 | version "1.0.4" 3917 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 3918 | 3919 | style-loader@^0.13.1: 3920 | version "0.13.1" 3921 | resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-0.13.1.tgz#468280efbc0473023cd3a6cd56e33b5a1d7fc3a9" 3922 | dependencies: 3923 | loader-utils "^0.2.7" 3924 | 3925 | stylus-loader@^2.4.0: 3926 | version "2.5.0" 3927 | resolved "https://registry.yarnpkg.com/stylus-loader/-/stylus-loader-2.5.0.tgz#4f921afc99f7a3d2f89d45ebcbc145822bf3fe71" 3928 | dependencies: 3929 | loader-utils "^0.2.9" 3930 | when "~3.6.x" 3931 | 3932 | stylus@^0.54.5: 3933 | version "0.54.5" 3934 | resolved "https://registry.yarnpkg.com/stylus/-/stylus-0.54.5.tgz#42b9560931ca7090ce8515a798ba9e6aa3d6dc79" 3935 | dependencies: 3936 | css-parse "1.7.x" 3937 | debug "*" 3938 | glob "7.0.x" 3939 | mkdirp "0.5.x" 3940 | sax "0.5.x" 3941 | source-map "0.1.x" 3942 | 3943 | supports-color@^2.0.0: 3944 | version "2.0.0" 3945 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3946 | 3947 | supports-color@^3.1.0, supports-color@^3.1.1, supports-color@^3.2.3: 3948 | version "3.2.3" 3949 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3950 | dependencies: 3951 | has-flag "^1.0.0" 3952 | 3953 | svgo@^0.7.0: 3954 | version "0.7.2" 3955 | resolved "https://registry.yarnpkg.com/svgo/-/svgo-0.7.2.tgz#9f5772413952135c6fefbf40afe6a4faa88b4bb5" 3956 | dependencies: 3957 | coa "~1.0.1" 3958 | colors "~1.1.2" 3959 | csso "~2.3.1" 3960 | js-yaml "~3.7.0" 3961 | mkdirp "~0.5.1" 3962 | sax "~1.2.1" 3963 | whet.extend "~0.9.9" 3964 | 3965 | symbol-observable@^1.0.1, symbol-observable@^1.0.2: 3966 | version "1.0.4" 3967 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" 3968 | 3969 | tapable@^0.2.5, tapable@~0.2.5: 3970 | version "0.2.6" 3971 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.6.tgz#206be8e188860b514425375e6f1ae89bfb01fd8d" 3972 | 3973 | tar-pack@~3.3.0: 3974 | version "3.3.0" 3975 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae" 3976 | dependencies: 3977 | debug "~2.2.0" 3978 | fstream "~1.0.10" 3979 | fstream-ignore "~1.0.5" 3980 | once "~1.3.3" 3981 | readable-stream "~2.1.4" 3982 | rimraf "~2.5.1" 3983 | tar "~2.2.1" 3984 | uid-number "~0.0.6" 3985 | 3986 | tar@^2.0.0, tar@~2.2.1: 3987 | version "2.2.1" 3988 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3989 | dependencies: 3990 | block-stream "*" 3991 | fstream "^1.0.2" 3992 | inherits "2" 3993 | 3994 | temp@0.8.3: 3995 | version "0.8.3" 3996 | resolved "https://registry.yarnpkg.com/temp/-/temp-0.8.3.tgz#e0c6bc4d26b903124410e4fed81103014dfc1f59" 3997 | dependencies: 3998 | os-tmpdir "^1.0.0" 3999 | rimraf "~2.2.6" 4000 | 4001 | term-size@^0.1.0: 4002 | version "0.1.1" 4003 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-0.1.1.tgz#87360b96396cab5760963714cda0d0cbeecad9ca" 4004 | dependencies: 4005 | execa "^0.4.0" 4006 | 4007 | through@X.X.X, through@^2.3.6: 4008 | version "2.3.8" 4009 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 4010 | 4011 | timed-out@^4.0.0: 4012 | version "4.0.1" 4013 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" 4014 | 4015 | timers-browserify@^2.0.2: 4016 | version "2.0.2" 4017 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.2.tgz#ab4883cf597dcd50af211349a00fbca56ac86b86" 4018 | dependencies: 4019 | setimmediate "^1.0.4" 4020 | 4021 | tmp@^0.0.31: 4022 | version "0.0.31" 4023 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.31.tgz#8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7" 4024 | dependencies: 4025 | os-tmpdir "~1.0.1" 4026 | 4027 | to-arraybuffer@^1.0.0: 4028 | version "1.0.1" 4029 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 4030 | 4031 | to-fast-properties@^1.0.1: 4032 | version "1.0.2" 4033 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 4034 | 4035 | toposort@^1.0.0: 4036 | version "1.0.2" 4037 | resolved "https://registry.yarnpkg.com/toposort/-/toposort-1.0.2.tgz#be1de72431320fcefe35a7b539c1c336cbcfd32c" 4038 | 4039 | tough-cookie@~2.3.0: 4040 | version "2.3.2" 4041 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 4042 | dependencies: 4043 | punycode "^1.4.1" 4044 | 4045 | trim-newlines@^1.0.0: 4046 | version "1.0.0" 4047 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 4048 | 4049 | trim-right@^1.0.1: 4050 | version "1.0.1" 4051 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 4052 | 4053 | ts-helpers@^1.1.1: 4054 | version "1.1.2" 4055 | resolved "https://registry.yarnpkg.com/ts-helpers/-/ts-helpers-1.1.2.tgz#fc69be9f1f3baed01fb1a0ef8d4cfe748814d835" 4056 | 4057 | tsickle@^0.21.0: 4058 | version "0.21.6" 4059 | resolved "https://registry.yarnpkg.com/tsickle/-/tsickle-0.21.6.tgz#53b01b979c5c13fdb13afb3fb958177e5991588d" 4060 | dependencies: 4061 | minimist "^1.2.0" 4062 | mkdirp "^0.5.1" 4063 | source-map "^0.5.6" 4064 | source-map-support "^0.4.2" 4065 | 4066 | tslint@~4.5.0: 4067 | version "4.5.1" 4068 | resolved "https://registry.yarnpkg.com/tslint/-/tslint-4.5.1.tgz#05356871bef23a434906734006fc188336ba824b" 4069 | dependencies: 4070 | babel-code-frame "^6.20.0" 4071 | colors "^1.1.2" 4072 | diff "^3.0.1" 4073 | findup-sync "~0.3.0" 4074 | glob "^7.1.1" 4075 | optimist "~0.6.0" 4076 | resolve "^1.1.7" 4077 | tsutils "^1.1.0" 4078 | update-notifier "^2.0.0" 4079 | 4080 | tsutils@^1.1.0: 4081 | version "1.6.0" 4082 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-1.6.0.tgz#1fd7fac2a61369ed99cd3997f0fbb437128850f2" 4083 | 4084 | tty-browserify@0.0.0: 4085 | version "0.0.0" 4086 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 4087 | 4088 | tunnel-agent@~0.4.1: 4089 | version "0.4.3" 4090 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 4091 | 4092 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 4093 | version "0.14.5" 4094 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 4095 | 4096 | type-is@~1.6.14: 4097 | version "1.6.14" 4098 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.14.tgz#e219639c17ded1ca0789092dd54a03826b817cb2" 4099 | dependencies: 4100 | media-typer "0.3.0" 4101 | mime-types "~2.1.13" 4102 | 4103 | "typescript@>=2.0.0 <2.3.0", typescript@^2.2.1: 4104 | version "2.2.1" 4105 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.2.1.tgz#4862b662b988a4c8ff691cc7969622d24db76ae9" 4106 | 4107 | uglify-js@2.7.x, uglify-js@^2.7.5: 4108 | version "2.7.5" 4109 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.7.5.tgz#4612c0c7baaee2ba7c487de4904ae122079f2ca8" 4110 | dependencies: 4111 | async "~0.2.6" 4112 | source-map "~0.5.1" 4113 | uglify-to-browserify "~1.0.0" 4114 | yargs "~3.10.0" 4115 | 4116 | uglify-js@~2.3: 4117 | version "2.3.6" 4118 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.3.6.tgz#fa0984770b428b7a9b2a8058f46355d14fef211a" 4119 | dependencies: 4120 | async "~0.2.6" 4121 | optimist "~0.3.5" 4122 | source-map "~0.1.7" 4123 | 4124 | uglify-to-browserify@~1.0.0: 4125 | version "1.0.2" 4126 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 4127 | 4128 | uid-number@~0.0.6: 4129 | version "0.0.6" 4130 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 4131 | 4132 | uniq@^1.0.1: 4133 | version "1.0.1" 4134 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" 4135 | 4136 | uniqid@^4.0.0: 4137 | version "4.1.1" 4138 | resolved "https://registry.yarnpkg.com/uniqid/-/uniqid-4.1.1.tgz#89220ddf6b751ae52b5f72484863528596bb84c1" 4139 | dependencies: 4140 | macaddress "^0.2.8" 4141 | 4142 | uniqs@^2.0.0: 4143 | version "2.0.0" 4144 | resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" 4145 | 4146 | unique-string@^1.0.0: 4147 | version "1.0.0" 4148 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" 4149 | dependencies: 4150 | crypto-random-string "^1.0.0" 4151 | 4152 | unpipe@~1.0.0: 4153 | version "1.0.0" 4154 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 4155 | 4156 | unzip-response@^2.0.1: 4157 | version "2.0.1" 4158 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" 4159 | 4160 | update-notifier@^2.0.0: 4161 | version "2.1.0" 4162 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.1.0.tgz#ec0c1e53536b76647a24b77cb83966d9315123d9" 4163 | dependencies: 4164 | boxen "^1.0.0" 4165 | chalk "^1.0.0" 4166 | configstore "^3.0.0" 4167 | is-npm "^1.0.0" 4168 | latest-version "^3.0.0" 4169 | lazy-req "^2.0.0" 4170 | semver-diff "^2.0.0" 4171 | xdg-basedir "^3.0.0" 4172 | 4173 | upper-case@^1.1.1: 4174 | version "1.1.3" 4175 | resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598" 4176 | 4177 | url-loader@^0.5.7: 4178 | version "0.5.7" 4179 | resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-0.5.7.tgz#67e8779759f8000da74994906680c943a9b0925d" 4180 | dependencies: 4181 | loader-utils "0.2.x" 4182 | mime "1.2.x" 4183 | 4184 | url-parse-lax@^1.0.0: 4185 | version "1.0.0" 4186 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 4187 | dependencies: 4188 | prepend-http "^1.0.1" 4189 | 4190 | url-parse@1.0.x: 4191 | version "1.0.5" 4192 | resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.0.5.tgz#0854860422afdcfefeb6c965c662d4800169927b" 4193 | dependencies: 4194 | querystringify "0.0.x" 4195 | requires-port "1.0.x" 4196 | 4197 | url-parse@^1.1.1: 4198 | version "1.1.7" 4199 | resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.1.7.tgz#025cff999653a459ab34232147d89514cc87d74a" 4200 | dependencies: 4201 | querystringify "0.0.x" 4202 | requires-port "1.0.x" 4203 | 4204 | url@^0.11.0: 4205 | version "0.11.0" 4206 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 4207 | dependencies: 4208 | punycode "1.3.2" 4209 | querystring "0.2.0" 4210 | 4211 | util-deprecate@~1.0.1: 4212 | version "1.0.2" 4213 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 4214 | 4215 | util@0.10.3, util@^0.10.3: 4216 | version "0.10.3" 4217 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 4218 | dependencies: 4219 | inherits "2.0.1" 4220 | 4221 | utila@~0.3: 4222 | version "0.3.3" 4223 | resolved "https://registry.yarnpkg.com/utila/-/utila-0.3.3.tgz#d7e8e7d7e309107092b05f8d9688824d633a4226" 4224 | 4225 | utila@~0.4: 4226 | version "0.4.0" 4227 | resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c" 4228 | 4229 | utils-merge@1.0.0: 4230 | version "1.0.0" 4231 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" 4232 | 4233 | uuid@^2.0.2: 4234 | version "2.0.3" 4235 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 4236 | 4237 | uuid@^3.0.0: 4238 | version "3.0.1" 4239 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 4240 | 4241 | valid-url@^1.0.9: 4242 | version "1.0.9" 4243 | resolved "https://registry.yarnpkg.com/valid-url/-/valid-url-1.0.9.tgz#1c14479b40f1397a75782f115e4086447433a200" 4244 | 4245 | validate-npm-package-license@^3.0.1: 4246 | version "3.0.1" 4247 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 4248 | dependencies: 4249 | spdx-correct "~1.0.0" 4250 | spdx-expression-parse "~1.0.0" 4251 | 4252 | vary@~1.1.0: 4253 | version "1.1.0" 4254 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.0.tgz#e1e5affbbd16ae768dd2674394b9ad3022653140" 4255 | 4256 | vendors@^1.0.0: 4257 | version "1.0.1" 4258 | resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.1.tgz#37ad73c8ee417fb3d580e785312307d274847f22" 4259 | 4260 | verror@1.3.6: 4261 | version "1.3.6" 4262 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 4263 | dependencies: 4264 | extsprintf "1.0.2" 4265 | 4266 | vlq@^0.2.1: 4267 | version "0.2.1" 4268 | resolved "https://registry.yarnpkg.com/vlq/-/vlq-0.2.1.tgz#14439d711891e682535467f8587c5630e4222a6c" 4269 | 4270 | vm-browserify@0.0.4: 4271 | version "0.0.4" 4272 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 4273 | dependencies: 4274 | indexof "0.0.1" 4275 | 4276 | walk-sync@^0.3.1: 4277 | version "0.3.1" 4278 | resolved "https://registry.yarnpkg.com/walk-sync/-/walk-sync-0.3.1.tgz#558a16aeac8c0db59c028b73c66f397684ece465" 4279 | dependencies: 4280 | ensure-posix-path "^1.0.0" 4281 | matcher-collection "^1.0.0" 4282 | 4283 | watchpack@^1.2.0: 4284 | version "1.2.0" 4285 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.2.0.tgz#15d4620f1e7471f13fcb551d5c030d2c3eb42dbb" 4286 | dependencies: 4287 | async "^2.1.2" 4288 | chokidar "^1.4.3" 4289 | graceful-fs "^4.1.2" 4290 | 4291 | wbuf@^1.1.0, wbuf@^1.4.0: 4292 | version "1.7.2" 4293 | resolved "https://registry.yarnpkg.com/wbuf/-/wbuf-1.7.2.tgz#d697b99f1f59512df2751be42769c1580b5801fe" 4294 | dependencies: 4295 | minimalistic-assert "^1.0.0" 4296 | 4297 | webpack-dev-middleware@^1.0.11, webpack-dev-middleware@^1.9.0: 4298 | version "1.10.0" 4299 | resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-1.10.0.tgz#7d5be2651e692fddfafd8aaed177c16ff51f0eb8" 4300 | dependencies: 4301 | memory-fs "~0.4.1" 4302 | mime "^1.3.4" 4303 | path-is-absolute "^1.0.0" 4304 | range-parser "^1.0.3" 4305 | 4306 | webpack-dev-server@~2.3.0: 4307 | version "2.3.0" 4308 | resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-2.3.0.tgz#0437704bbd4d941a6e4c061eb3cc232ed7d06101" 4309 | dependencies: 4310 | ansi-html "0.0.7" 4311 | chokidar "^1.6.0" 4312 | compression "^1.5.2" 4313 | connect-history-api-fallback "^1.3.0" 4314 | express "^4.13.3" 4315 | html-entities "^1.2.0" 4316 | http-proxy-middleware "~0.17.1" 4317 | opn "4.0.2" 4318 | portfinder "^1.0.9" 4319 | serve-index "^1.7.2" 4320 | sockjs "0.3.18" 4321 | sockjs-client "1.1.1" 4322 | spdy "^3.4.1" 4323 | strip-ansi "^3.0.0" 4324 | supports-color "^3.1.1" 4325 | webpack-dev-middleware "^1.9.0" 4326 | yargs "^6.0.0" 4327 | 4328 | webpack-merge@^2.4.0: 4329 | version "2.6.1" 4330 | resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-2.6.1.tgz#f1d801d2c5d39f83ffec9f119240b3e3be994a1c" 4331 | dependencies: 4332 | lodash "^4.17.4" 4333 | 4334 | webpack-sources@^0.1.0, webpack-sources@^0.1.4: 4335 | version "0.1.4" 4336 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-0.1.4.tgz#ccc2c817e08e5fa393239412690bb481821393cd" 4337 | dependencies: 4338 | source-list-map "~0.1.7" 4339 | source-map "~0.5.3" 4340 | 4341 | webpack@~2.2.0: 4342 | version "2.2.1" 4343 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-2.2.1.tgz#7bb1d72ae2087dd1a4af526afec15eed17dda475" 4344 | dependencies: 4345 | acorn "^4.0.4" 4346 | acorn-dynamic-import "^2.0.0" 4347 | ajv "^4.7.0" 4348 | ajv-keywords "^1.1.1" 4349 | async "^2.1.2" 4350 | enhanced-resolve "^3.0.0" 4351 | interpret "^1.0.0" 4352 | json-loader "^0.5.4" 4353 | loader-runner "^2.3.0" 4354 | loader-utils "^0.2.16" 4355 | memory-fs "~0.4.1" 4356 | mkdirp "~0.5.0" 4357 | node-libs-browser "^2.0.0" 4358 | source-map "^0.5.3" 4359 | supports-color "^3.1.0" 4360 | tapable "~0.2.5" 4361 | uglify-js "^2.7.5" 4362 | watchpack "^1.2.0" 4363 | webpack-sources "^0.1.4" 4364 | yargs "^6.0.0" 4365 | 4366 | websocket-driver@>=0.5.1: 4367 | version "0.6.5" 4368 | resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.6.5.tgz#5cb2556ceb85f4373c6d8238aa691c8454e13a36" 4369 | dependencies: 4370 | websocket-extensions ">=0.1.1" 4371 | 4372 | websocket-extensions@>=0.1.1: 4373 | version "0.1.1" 4374 | resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.1.tgz#76899499c184b6ef754377c2dbb0cd6cb55d29e7" 4375 | 4376 | whatwg-fetch@^2.0.0: 4377 | version "2.0.2" 4378 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.2.tgz#fe294d1d89e36c5be8b3195057f2e4bc74fc980e" 4379 | 4380 | when@~3.6.x: 4381 | version "3.6.4" 4382 | resolved "https://registry.yarnpkg.com/when/-/when-3.6.4.tgz#473b517ec159e2b85005497a13983f095412e34e" 4383 | 4384 | whet.extend@~0.9.9: 4385 | version "0.9.9" 4386 | resolved "https://registry.yarnpkg.com/whet.extend/-/whet.extend-0.9.9.tgz#f877d5bf648c97e5aa542fadc16d6a259b9c11a1" 4387 | 4388 | which-module@^1.0.0: 4389 | version "1.0.0" 4390 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 4391 | 4392 | which@1, which@^1.2.8, which@^1.2.9: 4393 | version "1.2.12" 4394 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.12.tgz#de67b5e450269f194909ef23ece4ebe416fa1192" 4395 | dependencies: 4396 | isexe "^1.1.1" 4397 | 4398 | wide-align@^1.1.0: 4399 | version "1.1.0" 4400 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 4401 | dependencies: 4402 | string-width "^1.0.1" 4403 | 4404 | widest-line@^1.0.0: 4405 | version "1.0.0" 4406 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-1.0.0.tgz#0c09c85c2a94683d0d7eaf8ee097d564bf0e105c" 4407 | dependencies: 4408 | string-width "^1.0.1" 4409 | 4410 | window-size@0.1.0: 4411 | version "0.1.0" 4412 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 4413 | 4414 | window-size@^0.2.0: 4415 | version "0.2.0" 4416 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.2.0.tgz#b4315bb4214a3d7058ebeee892e13fa24d98b075" 4417 | 4418 | wordwrap@0.0.2: 4419 | version "0.0.2" 4420 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 4421 | 4422 | wordwrap@~0.0.2: 4423 | version "0.0.3" 4424 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 4425 | 4426 | wrap-ansi@^2.0.0: 4427 | version "2.1.0" 4428 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 4429 | dependencies: 4430 | string-width "^1.0.1" 4431 | strip-ansi "^3.0.1" 4432 | 4433 | wrappy@1: 4434 | version "1.0.2" 4435 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 4436 | 4437 | write-file-atomic@^1.1.2: 4438 | version "1.3.1" 4439 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.1.tgz#7d45ba32316328dd1ec7d90f60ebc0d845bb759a" 4440 | dependencies: 4441 | graceful-fs "^4.1.11" 4442 | imurmurhash "^0.1.4" 4443 | slide "^1.1.5" 4444 | 4445 | xdg-basedir@^3.0.0: 4446 | version "3.0.0" 4447 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" 4448 | 4449 | xml-char-classes@^1.0.0: 4450 | version "1.0.0" 4451 | resolved "https://registry.yarnpkg.com/xml-char-classes/-/xml-char-classes-1.0.0.tgz#64657848a20ffc5df583a42ad8a277b4512bbc4d" 4452 | 4453 | xmldom@^0.1.19: 4454 | version "0.1.27" 4455 | resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.27.tgz#d501f97b3bdb403af8ef9ecc20573187aadac0e9" 4456 | 4457 | xtend@^4.0.0: 4458 | version "4.0.1" 4459 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 4460 | 4461 | y18n@^3.2.1: 4462 | version "3.2.1" 4463 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 4464 | 4465 | yallist@^2.0.0: 4466 | version "2.0.0" 4467 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.0.0.tgz#306c543835f09ee1a4cb23b7bce9ab341c91cdd4" 4468 | 4469 | yargs-parser@^2.4.1: 4470 | version "2.4.1" 4471 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-2.4.1.tgz#85568de3cf150ff49fa51825f03a8c880ddcc5c4" 4472 | dependencies: 4473 | camelcase "^3.0.0" 4474 | lodash.assign "^4.0.6" 4475 | 4476 | yargs-parser@^4.2.0: 4477 | version "4.2.1" 4478 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" 4479 | dependencies: 4480 | camelcase "^3.0.0" 4481 | 4482 | yargs@^4.7.1: 4483 | version "4.8.1" 4484 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-4.8.1.tgz#c0c42924ca4aaa6b0e6da1739dfb216439f9ddc0" 4485 | dependencies: 4486 | cliui "^3.2.0" 4487 | decamelize "^1.1.1" 4488 | get-caller-file "^1.0.1" 4489 | lodash.assign "^4.0.3" 4490 | os-locale "^1.4.0" 4491 | read-pkg-up "^1.0.1" 4492 | require-directory "^2.1.1" 4493 | require-main-filename "^1.0.1" 4494 | set-blocking "^2.0.0" 4495 | string-width "^1.0.1" 4496 | which-module "^1.0.0" 4497 | window-size "^0.2.0" 4498 | y18n "^3.2.1" 4499 | yargs-parser "^2.4.1" 4500 | 4501 | yargs@^6.0.0: 4502 | version "6.6.0" 4503 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" 4504 | dependencies: 4505 | camelcase "^3.0.0" 4506 | cliui "^3.2.0" 4507 | decamelize "^1.1.1" 4508 | get-caller-file "^1.0.1" 4509 | os-locale "^1.4.0" 4510 | read-pkg-up "^1.0.1" 4511 | require-directory "^2.1.1" 4512 | require-main-filename "^1.0.1" 4513 | set-blocking "^2.0.0" 4514 | string-width "^1.0.2" 4515 | which-module "^1.0.0" 4516 | y18n "^3.2.1" 4517 | yargs-parser "^4.2.0" 4518 | 4519 | yargs@~3.10.0: 4520 | version "3.10.0" 4521 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 4522 | dependencies: 4523 | camelcase "^1.0.2" 4524 | cliui "^2.1.0" 4525 | decamelize "^1.0.0" 4526 | window-size "0.1.0" 4527 | 4528 | zone.js@^0.7.2: 4529 | version "0.7.7" 4530 | resolved "https://registry.yarnpkg.com/zone.js/-/zone.js-0.7.7.tgz#0d7b7ae7f68012d03438b8a18f5763441bbf9620" 4531 | 4532 | zone.js@^0.8.4: 4533 | version "0.8.5" 4534 | resolved "https://registry.yarnpkg.com/zone.js/-/zone.js-0.8.5.tgz#7906e017482cbff4c3f079c5c34305ce941f5ba2" 4535 | --------------------------------------------------------------------------------