├── .gitignore ├── .firebaserc ├── firebase.json ├── src ├── hello-world.module.ts └── hello-world.ts ├── lib └── src │ ├── hello-world.module.js │ └── hello-world.js ├── public └── index.html ├── README.md ├── rollup.config.js ├── package.json ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /lib/ 3 | -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- 1 | { 2 | "projects": { 3 | "default": "ng-ivy-demo" 4 | } 5 | } -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- 1 | { 2 | "hosting": { 3 | "public": "public", 4 | "ignore": [ 5 | "firebase.json", 6 | "**/.*", 7 | "**/node_modules/**" 8 | ] 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/hello-world.module.ts: -------------------------------------------------------------------------------- 1 | import { NgModule } from '@angular/core'; 2 | 3 | 4 | import { HelloWorld } from './hello-world'; 5 | 6 | 7 | @NgModule({ 8 | declarations: [ 9 | HelloWorld 10 | ] 11 | }) 12 | export class HelloWorldModule { } 13 | -------------------------------------------------------------------------------- /src/hello-world.ts: -------------------------------------------------------------------------------- 1 | import { 2 | Component, 3 | ɵrenderComponent as renderComponent, 4 | ɵComponentType as ComponentType 5 | } from '@angular/core' 6 | 7 | 8 | @Component({ 9 | selector: 'hello-world', 10 | template: ` 11 |

Hello {{name}}

12 | ` 13 | }) 14 | export class HelloWorld { 15 | name = 'World!' 16 | } 17 | 18 | 19 | renderComponent(HelloWorld as ComponentType); 20 | -------------------------------------------------------------------------------- /lib/src/hello-world.module.js: -------------------------------------------------------------------------------- 1 | import { NgModule } from '@angular/core'; 2 | import { HelloWorld } from './hello-world'; 3 | export class HelloWorldModule { 4 | } 5 | HelloWorldModule.decorators = [ 6 | { type: NgModule, args: [{ 7 | declarations: [ 8 | HelloWorld 9 | ] 10 | },] }, 11 | ]; 12 | /** @nocollapse */ 13 | HelloWorldModule.ctorParameters = () => []; 14 | -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Ivy Demo 7 | 8 | 9 | 10 | GitHub | Implementation Status 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ### Angular Ivy Demo 2 | 3 | "Ivy" is the experimental, not-yet-feature-complete upcoming view engine for the Angular framework. The main focus of Ivy is drastically reduced code size and increased flexibility. 4 | 5 | See live demo here - https://ng-ivy-demo.firebaseapp.com/ 6 | 7 | ### FAQ 8 | 9 | #### When can I have it? 10 | 11 | When it's done. 12 | 13 | #### When will it be done? 14 | 15 | Watch https://github.com/angular/angular/issues/21706 to track the progress. 16 | 17 | #### ____ doesn't work!!! 18 | 19 | That's why it's not done - please don't file issues. 20 | -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- 1 | import buildOptimizer from 'rollup-plugin-angular-optimizer' 2 | import nodeResolve from 'rollup-plugin-node-resolve'; 3 | import paths from 'rollup-plugin-paths'; 4 | import pathMapping from 'rxjs/_esm5/path-mapping'; 5 | import uglify from 'rollup-plugin-uglify'; 6 | 7 | export default { 8 | input: `./lib/src/hello-world.js`, 9 | output: { 10 | name: 'hw', 11 | file: `public/bundle.js`, 12 | format: 'iife', 13 | sourcemap: true 14 | }, 15 | plugins: [ 16 | paths(pathMapping()), 17 | nodeResolve({jsnext: true, module: true}), 18 | buildOptimizer(), 19 | uglify({ 20 | mangle: true, 21 | compress: { 22 | global_defs: { 23 | 'ngDevMode': false, 24 | }, 25 | keep_fargs: false, 26 | passes: 3, 27 | pure_getters: true, 28 | unsafe: true, 29 | } 30 | }) 31 | ], 32 | external: [] 33 | } 34 | -------------------------------------------------------------------------------- /lib/src/hello-world.js: -------------------------------------------------------------------------------- 1 | import { Component, ɵrenderComponent as renderComponent } from '@angular/core'; 2 | import * as i0 from "@angular/core"; 3 | export class HelloWorld { 4 | constructor() { 5 | this.name = 'World!'; 6 | } 7 | } 8 | HelloWorld.decorators = [ 9 | { type: Component, args: [{ 10 | selector: 'hello-world', 11 | template: ` 12 |

Hello {{name}}

13 | ` 14 | },] }, 15 | ]; 16 | /** @nocollapse */ 17 | HelloWorld.ctorParameters = () => []; 18 | HelloWorld.ngComponentDef = i0.ɵdefineComponent({ type: HelloWorld, tag: "hello-world", factory: function HelloWorld_Factory() { return new HelloWorld(); }, template: function HelloWorld_Template(ctx, cm) { if (cm) { 19 | i0.ɵT(0, "\n "); 20 | i0.ɵE(1, "h3"); 21 | i0.ɵT(2); 22 | i0.ɵe(); 23 | i0.ɵT(3, "\n "); 24 | } i0.ɵt(2, i0.ɵb1("Hello ", ctx.name, "")); } }); 25 | renderComponent(HelloWorld); 26 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ivy-code-size", 3 | "version": "1.0.0", 4 | "main": "index.js", 5 | "license": "MIT", 6 | "dependencies": { 7 | "@angular/animations": "angular/animations-builds", 8 | "@angular/common": "angular/common-builds", 9 | "@angular/compiler": "angular/compiler-builds", 10 | "@angular/compiler-cli": "angular/compiler-cli-builds", 11 | "@angular/core": "angular/core-builds", 12 | "@angular/platform-browser": "angular/platform-browser-builds", 13 | "@angular/platform-server": "angular/platform-server-builds", 14 | "http-server": "^0.11.1", 15 | "rollup": "^0.55.3", 16 | "rollup-plugin-angular-optimizer": "^0.2.0", 17 | "rollup-plugin-node-resolve": "^3.0.2", 18 | "rollup-plugin-paths": "^0.0.3", 19 | "rollup-plugin-uglify": "^3.0.0", 20 | "rxjs": "^5.5.6", 21 | "typescript": "^2.7.1" 22 | }, 23 | "scripts": { 24 | "build": "ngc", 25 | "bundle": "rollup -c rollup.config.js", 26 | "serve": "http-server public", 27 | "start": "npm run build && npm run bundle && npm run serve" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | /* Basic Options */ 4 | "target": "es2015", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */ 5 | "module": "esnext", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */ 6 | // "lib": [], /* Specify library files to be included in the compilation. */ 7 | // "allowJs": true, /* Allow javascript files to be compiled. */ 8 | // "checkJs": true, /* Report errors in .js files. */ 9 | // "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */ 10 | // "declaration": true, /* Generates corresponding '.d.ts' file. */ 11 | // "sourceMap": true, /* Generates corresponding '.map' file. */ 12 | // "outFile": "./", /* Concatenate and emit output to single file. */ 13 | "outDir": "./lib", /* Redirect output structure to the directory. */ 14 | // "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */ 15 | // "removeComments": true, /* Do not emit comments to output. */ 16 | // "noEmit": true, /* Do not emit outputs. */ 17 | // "importHelpers": true, /* Import emit helpers from 'tslib'. */ 18 | // "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */ 19 | // "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */ 20 | 21 | /* Strict Type-Checking Options */ 22 | "strict": true, /* Enable all strict type-checking options. */ 23 | // "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */ 24 | // "strictNullChecks": true, /* Enable strict null checks. */ 25 | // "strictFunctionTypes": true, /* Enable strict checking of function types. */ 26 | // "strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */ 27 | // "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */ 28 | // "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */ 29 | 30 | /* Additional Checks */ 31 | // "noUnusedLocals": true, /* Report errors on unused locals. */ 32 | // "noUnusedParameters": true, /* Report errors on unused parameters. */ 33 | // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ 34 | // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ 35 | 36 | /* Module Resolution Options */ 37 | "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */ 38 | // "baseUrl": "./", /* Base directory to resolve non-absolute module names. */ 39 | // "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */ 40 | // "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */ 41 | // "typeRoots": [], /* List of folders to include type definitions from. */ 42 | // "types": [], /* Type declaration files to be included in compilation. */ 43 | // "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */ 44 | "esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ 45 | // "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */ 46 | 47 | /* Source Map Options */ 48 | // "sourceRoot": "./", /* Specify the location where debugger should locate TypeScript files instead of source locations. */ 49 | // "mapRoot": "./", /* Specify the location where debugger should locate map files instead of generated locations. */ 50 | // "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */ 51 | // "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */ 52 | 53 | /* Experimental Options */ 54 | "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */ 55 | "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */ 56 | }, 57 | "angularCompilerOptions": { 58 | "enableIvy": true 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@angular-devkit/build-optimizer@^0.0.32": 6 | version "0.0.32" 7 | resolved "https://registry.yarnpkg.com/@angular-devkit/build-optimizer/-/build-optimizer-0.0.32.tgz#1bf32332d8a7c84043059e3d265a52f9d11726fd" 8 | dependencies: 9 | loader-utils "^1.1.0" 10 | source-map "^0.5.6" 11 | typescript "^2.3.3" 12 | webpack-sources "^1.0.1" 13 | 14 | "@angular/animations@angular/animations-builds": 15 | version "6.0.0-beta.3-67cf712" 16 | resolved "https://codeload.github.com/angular/animations-builds/tar.gz/e2973901696a6e3b8860e3894ae3e35d7072f7e8" 17 | dependencies: 18 | tslib "^1.7.1" 19 | 20 | "@angular/common@angular/common-builds": 21 | version "6.0.0-beta.3-67cf712" 22 | resolved "https://codeload.github.com/angular/common-builds/tar.gz/27db5ac060995c6cfab6eb92871c76075149db18" 23 | dependencies: 24 | tslib "^1.7.1" 25 | 26 | "@angular/compiler-cli@angular/compiler-cli-builds": 27 | version "6.0.0-beta.3-67cf712" 28 | resolved "https://codeload.github.com/angular/compiler-cli-builds/tar.gz/ae396ebd03985a808a349e4b0f541cbf9a16bb87" 29 | dependencies: 30 | chokidar "^1.4.2" 31 | minimist "^1.2.0" 32 | reflect-metadata "^0.1.2" 33 | tsickle "^0.26.0" 34 | 35 | "@angular/compiler@angular/compiler-builds": 36 | version "6.0.0-beta.3-67cf712" 37 | resolved "https://codeload.github.com/angular/compiler-builds/tar.gz/5f16cfe2ea6de50013fef4df27aae9b486f466da" 38 | dependencies: 39 | tslib "^1.7.1" 40 | 41 | "@angular/core@angular/core-builds": 42 | version "6.0.0-beta.3-67cf712" 43 | resolved "https://codeload.github.com/angular/core-builds/tar.gz/44710a42cdbe662c9d5d4553c2b91ad178f37300" 44 | dependencies: 45 | tslib "^1.7.1" 46 | 47 | "@angular/platform-browser@angular/platform-browser-builds": 48 | version "6.0.0-beta.3-67cf712" 49 | resolved "https://codeload.github.com/angular/platform-browser-builds/tar.gz/2ce7a0e867632e727995db12b05786bc02053359" 50 | dependencies: 51 | tslib "^1.7.1" 52 | 53 | "@angular/platform-server@angular/platform-server-builds": 54 | version "6.0.0-beta.3-67cf712" 55 | resolved "https://codeload.github.com/angular/platform-server-builds/tar.gz/904e70ace0459693b7c40766d90f0e5924d823ed" 56 | dependencies: 57 | domino "^1.0.29" 58 | tslib "^1.7.1" 59 | xhr2 "^0.1.4" 60 | 61 | abbrev@1: 62 | version "1.1.1" 63 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 64 | 65 | ajv@^4.9.1: 66 | version "4.11.8" 67 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 68 | dependencies: 69 | co "^4.6.0" 70 | json-stable-stringify "^1.0.1" 71 | 72 | ansi-regex@^2.0.0: 73 | version "2.1.1" 74 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 75 | 76 | anymatch@^1.3.0: 77 | version "1.3.2" 78 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 79 | dependencies: 80 | micromatch "^2.1.5" 81 | normalize-path "^2.0.0" 82 | 83 | aproba@^1.0.3: 84 | version "1.2.0" 85 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 86 | 87 | are-we-there-yet@~1.1.2: 88 | version "1.1.4" 89 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 90 | dependencies: 91 | delegates "^1.0.0" 92 | readable-stream "^2.0.6" 93 | 94 | arr-diff@^2.0.0: 95 | version "2.0.0" 96 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 97 | dependencies: 98 | arr-flatten "^1.0.1" 99 | 100 | arr-flatten@^1.0.1: 101 | version "1.1.0" 102 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 103 | 104 | array-unique@^0.2.1: 105 | version "0.2.1" 106 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 107 | 108 | asn1@~0.2.3: 109 | version "0.2.3" 110 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 111 | 112 | assert-plus@1.0.0, assert-plus@^1.0.0: 113 | version "1.0.0" 114 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 115 | 116 | assert-plus@^0.2.0: 117 | version "0.2.0" 118 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 119 | 120 | async-each@^1.0.0: 121 | version "1.0.1" 122 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 123 | 124 | async@^1.5.2: 125 | version "1.5.2" 126 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 127 | 128 | asynckit@^0.4.0: 129 | version "0.4.0" 130 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 131 | 132 | aws-sign2@~0.6.0: 133 | version "0.6.0" 134 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 135 | 136 | aws4@^1.2.1: 137 | version "1.6.0" 138 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 139 | 140 | balanced-match@^1.0.0: 141 | version "1.0.0" 142 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 143 | 144 | bcrypt-pbkdf@^1.0.0: 145 | version "1.0.1" 146 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 147 | dependencies: 148 | tweetnacl "^0.14.3" 149 | 150 | big.js@^3.1.3: 151 | version "3.2.0" 152 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e" 153 | 154 | binary-extensions@^1.0.0: 155 | version "1.11.0" 156 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 157 | 158 | block-stream@*: 159 | version "0.0.9" 160 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 161 | dependencies: 162 | inherits "~2.0.0" 163 | 164 | boom@2.x.x: 165 | version "2.10.1" 166 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 167 | dependencies: 168 | hoek "2.x.x" 169 | 170 | brace-expansion@^1.1.7: 171 | version "1.1.8" 172 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 173 | dependencies: 174 | balanced-match "^1.0.0" 175 | concat-map "0.0.1" 176 | 177 | braces@^1.8.2: 178 | version "1.8.5" 179 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 180 | dependencies: 181 | expand-range "^1.8.1" 182 | preserve "^0.2.0" 183 | repeat-element "^1.1.2" 184 | 185 | builtin-modules@^1.1.0: 186 | version "1.1.1" 187 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 188 | 189 | caseless@~0.12.0: 190 | version "0.12.0" 191 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 192 | 193 | chokidar@^1.4.2: 194 | version "1.7.0" 195 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 196 | dependencies: 197 | anymatch "^1.3.0" 198 | async-each "^1.0.0" 199 | glob-parent "^2.0.0" 200 | inherits "^2.0.1" 201 | is-binary-path "^1.0.0" 202 | is-glob "^2.0.0" 203 | path-is-absolute "^1.0.0" 204 | readdirp "^2.0.0" 205 | optionalDependencies: 206 | fsevents "^1.0.0" 207 | 208 | co@^4.6.0: 209 | version "4.6.0" 210 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 211 | 212 | code-point-at@^1.0.0: 213 | version "1.1.0" 214 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 215 | 216 | colors@1.0.3: 217 | version "1.0.3" 218 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b" 219 | 220 | combined-stream@^1.0.5, combined-stream@~1.0.5: 221 | version "1.0.5" 222 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 223 | dependencies: 224 | delayed-stream "~1.0.0" 225 | 226 | commander@~2.13.0: 227 | version "2.13.0" 228 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c" 229 | 230 | concat-map@0.0.1: 231 | version "0.0.1" 232 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 233 | 234 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 235 | version "1.1.0" 236 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 237 | 238 | core-util-is@1.0.2, core-util-is@~1.0.0: 239 | version "1.0.2" 240 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 241 | 242 | corser@~2.0.0: 243 | version "2.0.1" 244 | resolved "https://registry.yarnpkg.com/corser/-/corser-2.0.1.tgz#8eda252ecaab5840dcd975ceb90d9370c819ff87" 245 | 246 | cryptiles@2.x.x: 247 | version "2.0.5" 248 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 249 | dependencies: 250 | boom "2.x.x" 251 | 252 | dashdash@^1.12.0: 253 | version "1.14.1" 254 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 255 | dependencies: 256 | assert-plus "^1.0.0" 257 | 258 | debug@^2.2.0: 259 | version "2.6.9" 260 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 261 | dependencies: 262 | ms "2.0.0" 263 | 264 | deep-extend@~0.4.0: 265 | version "0.4.2" 266 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 267 | 268 | delayed-stream@~1.0.0: 269 | version "1.0.0" 270 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 271 | 272 | delegates@^1.0.0: 273 | version "1.0.0" 274 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 275 | 276 | detect-libc@^1.0.2: 277 | version "1.0.3" 278 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 279 | 280 | domino@^1.0.29: 281 | version "1.0.30" 282 | resolved "https://registry.yarnpkg.com/domino/-/domino-1.0.30.tgz#54a4154ecae968616680f8feba3cedff355c71f4" 283 | 284 | ecc-jsbn@~0.1.1: 285 | version "0.1.1" 286 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 287 | dependencies: 288 | jsbn "~0.1.0" 289 | 290 | ecstatic@^3.0.0: 291 | version "3.2.0" 292 | resolved "https://registry.yarnpkg.com/ecstatic/-/ecstatic-3.2.0.tgz#1b1aee1ca7c6b99cfb5cf6c9b26b481b90c4409f" 293 | dependencies: 294 | he "^1.1.1" 295 | mime "^1.4.1" 296 | minimist "^1.1.0" 297 | url-join "^2.0.2" 298 | 299 | emojis-list@^2.0.0: 300 | version "2.1.0" 301 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 302 | 303 | eventemitter3@1.x.x: 304 | version "1.2.0" 305 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508" 306 | 307 | expand-brackets@^0.1.4: 308 | version "0.1.5" 309 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 310 | dependencies: 311 | is-posix-bracket "^0.1.0" 312 | 313 | expand-range@^1.8.1: 314 | version "1.8.2" 315 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 316 | dependencies: 317 | fill-range "^2.1.0" 318 | 319 | extend@~3.0.0: 320 | version "3.0.1" 321 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 322 | 323 | extglob@^0.3.1: 324 | version "0.3.2" 325 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 326 | dependencies: 327 | is-extglob "^1.0.0" 328 | 329 | extsprintf@1.3.0: 330 | version "1.3.0" 331 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 332 | 333 | extsprintf@^1.2.0: 334 | version "1.4.0" 335 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 336 | 337 | filename-regex@^2.0.0: 338 | version "2.0.1" 339 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 340 | 341 | fill-range@^2.1.0: 342 | version "2.2.3" 343 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 344 | dependencies: 345 | is-number "^2.1.0" 346 | isobject "^2.0.0" 347 | randomatic "^1.1.3" 348 | repeat-element "^1.1.2" 349 | repeat-string "^1.5.2" 350 | 351 | for-in@^1.0.1: 352 | version "1.0.2" 353 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 354 | 355 | for-own@^0.1.4: 356 | version "0.1.5" 357 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 358 | dependencies: 359 | for-in "^1.0.1" 360 | 361 | forever-agent@~0.6.1: 362 | version "0.6.1" 363 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 364 | 365 | form-data@~2.1.1: 366 | version "2.1.4" 367 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 368 | dependencies: 369 | asynckit "^0.4.0" 370 | combined-stream "^1.0.5" 371 | mime-types "^2.1.12" 372 | 373 | fs.realpath@^1.0.0: 374 | version "1.0.0" 375 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 376 | 377 | fsevents@^1.0.0: 378 | version "1.1.3" 379 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" 380 | dependencies: 381 | nan "^2.3.0" 382 | node-pre-gyp "^0.6.39" 383 | 384 | fstream-ignore@^1.0.5: 385 | version "1.0.5" 386 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 387 | dependencies: 388 | fstream "^1.0.0" 389 | inherits "2" 390 | minimatch "^3.0.0" 391 | 392 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 393 | version "1.0.11" 394 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 395 | dependencies: 396 | graceful-fs "^4.1.2" 397 | inherits "~2.0.0" 398 | mkdirp ">=0.5 0" 399 | rimraf "2" 400 | 401 | gauge@~2.7.3: 402 | version "2.7.4" 403 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 404 | dependencies: 405 | aproba "^1.0.3" 406 | console-control-strings "^1.0.0" 407 | has-unicode "^2.0.0" 408 | object-assign "^4.1.0" 409 | signal-exit "^3.0.0" 410 | string-width "^1.0.1" 411 | strip-ansi "^3.0.1" 412 | wide-align "^1.1.0" 413 | 414 | getpass@^0.1.1: 415 | version "0.1.7" 416 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 417 | dependencies: 418 | assert-plus "^1.0.0" 419 | 420 | glob-base@^0.3.0: 421 | version "0.3.0" 422 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 423 | dependencies: 424 | glob-parent "^2.0.0" 425 | is-glob "^2.0.0" 426 | 427 | glob-parent@^2.0.0: 428 | version "2.0.0" 429 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 430 | dependencies: 431 | is-glob "^2.0.0" 432 | 433 | glob@^7.0.5: 434 | version "7.1.2" 435 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 436 | dependencies: 437 | fs.realpath "^1.0.0" 438 | inflight "^1.0.4" 439 | inherits "2" 440 | minimatch "^3.0.4" 441 | once "^1.3.0" 442 | path-is-absolute "^1.0.0" 443 | 444 | graceful-fs@^4.1.2: 445 | version "4.1.11" 446 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 447 | 448 | har-schema@^1.0.5: 449 | version "1.0.5" 450 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 451 | 452 | har-validator@~4.2.1: 453 | version "4.2.1" 454 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 455 | dependencies: 456 | ajv "^4.9.1" 457 | har-schema "^1.0.5" 458 | 459 | has-unicode@^2.0.0: 460 | version "2.0.1" 461 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 462 | 463 | hawk@3.1.3, hawk@~3.1.3: 464 | version "3.1.3" 465 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 466 | dependencies: 467 | boom "2.x.x" 468 | cryptiles "2.x.x" 469 | hoek "2.x.x" 470 | sntp "1.x.x" 471 | 472 | he@^1.1.1: 473 | version "1.1.1" 474 | resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" 475 | 476 | hoek@2.x.x: 477 | version "2.16.3" 478 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 479 | 480 | http-proxy@^1.8.1: 481 | version "1.16.2" 482 | resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.16.2.tgz#06dff292952bf64dbe8471fa9df73066d4f37742" 483 | dependencies: 484 | eventemitter3 "1.x.x" 485 | requires-port "1.x.x" 486 | 487 | http-server@^0.11.1: 488 | version "0.11.1" 489 | resolved "https://registry.yarnpkg.com/http-server/-/http-server-0.11.1.tgz#2302a56a6ffef7f9abea0147d838a5e9b6b6a79b" 490 | dependencies: 491 | colors "1.0.3" 492 | corser "~2.0.0" 493 | ecstatic "^3.0.0" 494 | http-proxy "^1.8.1" 495 | opener "~1.4.0" 496 | optimist "0.6.x" 497 | portfinder "^1.0.13" 498 | union "~0.4.3" 499 | 500 | http-signature@~1.1.0: 501 | version "1.1.1" 502 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 503 | dependencies: 504 | assert-plus "^0.2.0" 505 | jsprim "^1.2.2" 506 | sshpk "^1.7.0" 507 | 508 | inflight@^1.0.4: 509 | version "1.0.6" 510 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 511 | dependencies: 512 | once "^1.3.0" 513 | wrappy "1" 514 | 515 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.3: 516 | version "2.0.3" 517 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 518 | 519 | ini@~1.3.0: 520 | version "1.3.5" 521 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 522 | 523 | is-binary-path@^1.0.0: 524 | version "1.0.1" 525 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 526 | dependencies: 527 | binary-extensions "^1.0.0" 528 | 529 | is-buffer@^1.1.5: 530 | version "1.1.6" 531 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 532 | 533 | is-dotfile@^1.0.0: 534 | version "1.0.3" 535 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 536 | 537 | is-equal-shallow@^0.1.3: 538 | version "0.1.3" 539 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 540 | dependencies: 541 | is-primitive "^2.0.0" 542 | 543 | is-extendable@^0.1.1: 544 | version "0.1.1" 545 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 546 | 547 | is-extglob@^1.0.0: 548 | version "1.0.0" 549 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 550 | 551 | is-fullwidth-code-point@^1.0.0: 552 | version "1.0.0" 553 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 554 | dependencies: 555 | number-is-nan "^1.0.0" 556 | 557 | is-glob@^2.0.0, is-glob@^2.0.1: 558 | version "2.0.1" 559 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 560 | dependencies: 561 | is-extglob "^1.0.0" 562 | 563 | is-module@^1.0.0: 564 | version "1.0.0" 565 | resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591" 566 | 567 | is-number@^2.1.0: 568 | version "2.1.0" 569 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 570 | dependencies: 571 | kind-of "^3.0.2" 572 | 573 | is-number@^3.0.0: 574 | version "3.0.0" 575 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 576 | dependencies: 577 | kind-of "^3.0.2" 578 | 579 | is-posix-bracket@^0.1.0: 580 | version "0.1.1" 581 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 582 | 583 | is-primitive@^2.0.0: 584 | version "2.0.0" 585 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 586 | 587 | is-typedarray@~1.0.0: 588 | version "1.0.0" 589 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 590 | 591 | isarray@1.0.0, isarray@~1.0.0: 592 | version "1.0.0" 593 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 594 | 595 | isobject@^2.0.0: 596 | version "2.1.0" 597 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 598 | dependencies: 599 | isarray "1.0.0" 600 | 601 | isstream@~0.1.2: 602 | version "0.1.2" 603 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 604 | 605 | jsbn@~0.1.0: 606 | version "0.1.1" 607 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 608 | 609 | json-schema@0.2.3: 610 | version "0.2.3" 611 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 612 | 613 | json-stable-stringify@^1.0.1: 614 | version "1.0.1" 615 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 616 | dependencies: 617 | jsonify "~0.0.0" 618 | 619 | json-stringify-safe@~5.0.1: 620 | version "5.0.1" 621 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 622 | 623 | json5@^0.5.0: 624 | version "0.5.1" 625 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 626 | 627 | jsonify@~0.0.0: 628 | version "0.0.0" 629 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 630 | 631 | jsprim@^1.2.2: 632 | version "1.4.1" 633 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 634 | dependencies: 635 | assert-plus "1.0.0" 636 | extsprintf "1.3.0" 637 | json-schema "0.2.3" 638 | verror "1.10.0" 639 | 640 | kind-of@^3.0.2: 641 | version "3.2.2" 642 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 643 | dependencies: 644 | is-buffer "^1.1.5" 645 | 646 | kind-of@^4.0.0: 647 | version "4.0.0" 648 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 649 | dependencies: 650 | is-buffer "^1.1.5" 651 | 652 | loader-utils@^1.1.0: 653 | version "1.1.0" 654 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" 655 | dependencies: 656 | big.js "^3.1.3" 657 | emojis-list "^2.0.0" 658 | json5 "^0.5.0" 659 | 660 | micromatch@^2.1.5: 661 | version "2.3.11" 662 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 663 | dependencies: 664 | arr-diff "^2.0.0" 665 | array-unique "^0.2.1" 666 | braces "^1.8.2" 667 | expand-brackets "^0.1.4" 668 | extglob "^0.3.1" 669 | filename-regex "^2.0.0" 670 | is-extglob "^1.0.0" 671 | is-glob "^2.0.1" 672 | kind-of "^3.0.2" 673 | normalize-path "^2.0.1" 674 | object.omit "^2.0.0" 675 | parse-glob "^3.0.4" 676 | regex-cache "^0.4.2" 677 | 678 | mime-db@~1.30.0: 679 | version "1.30.0" 680 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 681 | 682 | mime-types@^2.1.12, mime-types@~2.1.7: 683 | version "2.1.17" 684 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 685 | dependencies: 686 | mime-db "~1.30.0" 687 | 688 | mime@^1.4.1: 689 | version "1.6.0" 690 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" 691 | 692 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 693 | version "3.0.4" 694 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 695 | dependencies: 696 | brace-expansion "^1.1.7" 697 | 698 | minimist@0.0.8: 699 | version "0.0.8" 700 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 701 | 702 | minimist@^1.1.0, minimist@^1.2.0: 703 | version "1.2.0" 704 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 705 | 706 | minimist@~0.0.1: 707 | version "0.0.10" 708 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 709 | 710 | mkdirp@0.5.x, "mkdirp@>=0.5 0", mkdirp@^0.5.1: 711 | version "0.5.1" 712 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 713 | dependencies: 714 | minimist "0.0.8" 715 | 716 | ms@2.0.0: 717 | version "2.0.0" 718 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 719 | 720 | nan@^2.3.0: 721 | version "2.8.0" 722 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a" 723 | 724 | node-pre-gyp@^0.6.39: 725 | version "0.6.39" 726 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 727 | dependencies: 728 | detect-libc "^1.0.2" 729 | hawk "3.1.3" 730 | mkdirp "^0.5.1" 731 | nopt "^4.0.1" 732 | npmlog "^4.0.2" 733 | rc "^1.1.7" 734 | request "2.81.0" 735 | rimraf "^2.6.1" 736 | semver "^5.3.0" 737 | tar "^2.2.1" 738 | tar-pack "^3.4.0" 739 | 740 | nopt@^4.0.1: 741 | version "4.0.1" 742 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 743 | dependencies: 744 | abbrev "1" 745 | osenv "^0.1.4" 746 | 747 | normalize-path@^2.0.0, normalize-path@^2.0.1: 748 | version "2.1.1" 749 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 750 | dependencies: 751 | remove-trailing-separator "^1.0.1" 752 | 753 | npmlog@^4.0.2: 754 | version "4.1.2" 755 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 756 | dependencies: 757 | are-we-there-yet "~1.1.2" 758 | console-control-strings "~1.1.0" 759 | gauge "~2.7.3" 760 | set-blocking "~2.0.0" 761 | 762 | number-is-nan@^1.0.0: 763 | version "1.0.1" 764 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 765 | 766 | oauth-sign@~0.8.1: 767 | version "0.8.2" 768 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 769 | 770 | object-assign@^4.1.0: 771 | version "4.1.1" 772 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 773 | 774 | object.omit@^2.0.0: 775 | version "2.0.1" 776 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 777 | dependencies: 778 | for-own "^0.1.4" 779 | is-extendable "^0.1.1" 780 | 781 | once@^1.3.0, once@^1.3.3: 782 | version "1.4.0" 783 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 784 | dependencies: 785 | wrappy "1" 786 | 787 | opener@~1.4.0: 788 | version "1.4.3" 789 | resolved "https://registry.yarnpkg.com/opener/-/opener-1.4.3.tgz#5c6da2c5d7e5831e8ffa3964950f8d6674ac90b8" 790 | 791 | optimist@0.6.x: 792 | version "0.6.1" 793 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 794 | dependencies: 795 | minimist "~0.0.1" 796 | wordwrap "~0.0.2" 797 | 798 | os-homedir@^1.0.0: 799 | version "1.0.2" 800 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 801 | 802 | os-tmpdir@^1.0.0: 803 | version "1.0.2" 804 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 805 | 806 | osenv@^0.1.4: 807 | version "0.1.4" 808 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 809 | dependencies: 810 | os-homedir "^1.0.0" 811 | os-tmpdir "^1.0.0" 812 | 813 | parse-glob@^3.0.4: 814 | version "3.0.4" 815 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 816 | dependencies: 817 | glob-base "^0.3.0" 818 | is-dotfile "^1.0.0" 819 | is-extglob "^1.0.0" 820 | is-glob "^2.0.0" 821 | 822 | path-is-absolute@^1.0.0: 823 | version "1.0.1" 824 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 825 | 826 | path-parse@^1.0.5: 827 | version "1.0.5" 828 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 829 | 830 | performance-now@^0.2.0: 831 | version "0.2.0" 832 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 833 | 834 | portfinder@^1.0.13: 835 | version "1.0.13" 836 | resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.13.tgz#bb32ecd87c27104ae6ee44b5a3ccbf0ebb1aede9" 837 | dependencies: 838 | async "^1.5.2" 839 | debug "^2.2.0" 840 | mkdirp "0.5.x" 841 | 842 | preserve@^0.2.0: 843 | version "0.2.0" 844 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 845 | 846 | process-nextick-args@~1.0.6: 847 | version "1.0.7" 848 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 849 | 850 | punycode@^1.4.1: 851 | version "1.4.1" 852 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 853 | 854 | qs@~2.3.3: 855 | version "2.3.3" 856 | resolved "https://registry.yarnpkg.com/qs/-/qs-2.3.3.tgz#e9e85adbe75da0bbe4c8e0476a086290f863b404" 857 | 858 | qs@~6.4.0: 859 | version "6.4.0" 860 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 861 | 862 | randomatic@^1.1.3: 863 | version "1.1.7" 864 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 865 | dependencies: 866 | is-number "^3.0.0" 867 | kind-of "^4.0.0" 868 | 869 | rc@^1.1.7: 870 | version "1.2.5" 871 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.5.tgz#275cd687f6e3b36cc756baa26dfee80a790301fd" 872 | dependencies: 873 | deep-extend "~0.4.0" 874 | ini "~1.3.0" 875 | minimist "^1.2.0" 876 | strip-json-comments "~2.0.1" 877 | 878 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4: 879 | version "2.3.3" 880 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 881 | dependencies: 882 | core-util-is "~1.0.0" 883 | inherits "~2.0.3" 884 | isarray "~1.0.0" 885 | process-nextick-args "~1.0.6" 886 | safe-buffer "~5.1.1" 887 | string_decoder "~1.0.3" 888 | util-deprecate "~1.0.1" 889 | 890 | readdirp@^2.0.0: 891 | version "2.1.0" 892 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 893 | dependencies: 894 | graceful-fs "^4.1.2" 895 | minimatch "^3.0.2" 896 | readable-stream "^2.0.2" 897 | set-immediate-shim "^1.0.1" 898 | 899 | reflect-metadata@^0.1.2: 900 | version "0.1.12" 901 | resolved "https://registry.yarnpkg.com/reflect-metadata/-/reflect-metadata-0.1.12.tgz#311bf0c6b63cd782f228a81abe146a2bfa9c56f2" 902 | 903 | regex-cache@^0.4.2: 904 | version "0.4.4" 905 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 906 | dependencies: 907 | is-equal-shallow "^0.1.3" 908 | 909 | remove-trailing-separator@^1.0.1: 910 | version "1.1.0" 911 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 912 | 913 | repeat-element@^1.1.2: 914 | version "1.1.2" 915 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 916 | 917 | repeat-string@^1.5.2: 918 | version "1.6.1" 919 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 920 | 921 | request@2.81.0: 922 | version "2.81.0" 923 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 924 | dependencies: 925 | aws-sign2 "~0.6.0" 926 | aws4 "^1.2.1" 927 | caseless "~0.12.0" 928 | combined-stream "~1.0.5" 929 | extend "~3.0.0" 930 | forever-agent "~0.6.1" 931 | form-data "~2.1.1" 932 | har-validator "~4.2.1" 933 | hawk "~3.1.3" 934 | http-signature "~1.1.0" 935 | is-typedarray "~1.0.0" 936 | isstream "~0.1.2" 937 | json-stringify-safe "~5.0.1" 938 | mime-types "~2.1.7" 939 | oauth-sign "~0.8.1" 940 | performance-now "^0.2.0" 941 | qs "~6.4.0" 942 | safe-buffer "^5.0.1" 943 | stringstream "~0.0.4" 944 | tough-cookie "~2.3.0" 945 | tunnel-agent "^0.6.0" 946 | uuid "^3.0.0" 947 | 948 | requires-port@1.x.x: 949 | version "1.0.0" 950 | resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" 951 | 952 | resolve@^1.1.6: 953 | version "1.5.0" 954 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36" 955 | dependencies: 956 | path-parse "^1.0.5" 957 | 958 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: 959 | version "2.6.2" 960 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 961 | dependencies: 962 | glob "^7.0.5" 963 | 964 | rollup-plugin-angular-optimizer@^0.2.0: 965 | version "0.2.0" 966 | resolved "https://registry.yarnpkg.com/rollup-plugin-angular-optimizer/-/rollup-plugin-angular-optimizer-0.2.0.tgz#f417ae0d8ab8fe09f90b0d152034d252fa1d231f" 967 | dependencies: 968 | "@angular-devkit/build-optimizer" "^0.0.32" 969 | 970 | rollup-plugin-node-resolve@^3.0.2: 971 | version "3.0.2" 972 | resolved "https://registry.yarnpkg.com/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-3.0.2.tgz#38babc12fd404cc2ba1ff68648fe43fa3ffee6b0" 973 | dependencies: 974 | builtin-modules "^1.1.0" 975 | is-module "^1.0.0" 976 | resolve "^1.1.6" 977 | 978 | rollup-plugin-paths@^0.0.3: 979 | version "0.0.3" 980 | resolved "https://registry.yarnpkg.com/rollup-plugin-paths/-/rollup-plugin-paths-0.0.3.tgz#a68c8516252a941e773405ad05a0d1a02b5fa394" 981 | 982 | rollup-plugin-uglify@^3.0.0: 983 | version "3.0.0" 984 | resolved "https://registry.yarnpkg.com/rollup-plugin-uglify/-/rollup-plugin-uglify-3.0.0.tgz#a34eca24617709c6bf1778e9653baafa06099b86" 985 | dependencies: 986 | uglify-es "^3.3.7" 987 | 988 | rollup@^0.55.3: 989 | version "0.55.3" 990 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.55.3.tgz#0af082a766d51c3058430c8372442ff5207d8736" 991 | 992 | rxjs@^5.5.6: 993 | version "5.5.6" 994 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.5.6.tgz#e31fb96d6fd2ff1fd84bcea8ae9c02d007179c02" 995 | dependencies: 996 | symbol-observable "1.0.1" 997 | 998 | safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 999 | version "5.1.1" 1000 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 1001 | 1002 | semver@^5.3.0: 1003 | version "5.5.0" 1004 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 1005 | 1006 | set-blocking@~2.0.0: 1007 | version "2.0.0" 1008 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1009 | 1010 | set-immediate-shim@^1.0.1: 1011 | version "1.0.1" 1012 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 1013 | 1014 | signal-exit@^3.0.0: 1015 | version "3.0.2" 1016 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1017 | 1018 | sntp@1.x.x: 1019 | version "1.0.9" 1020 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 1021 | dependencies: 1022 | hoek "2.x.x" 1023 | 1024 | source-list-map@^2.0.0: 1025 | version "2.0.0" 1026 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.0.tgz#aaa47403f7b245a92fbc97ea08f250d6087ed085" 1027 | 1028 | source-map-support@^0.4.2: 1029 | version "0.4.18" 1030 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 1031 | dependencies: 1032 | source-map "^0.5.6" 1033 | 1034 | source-map@^0.5.6: 1035 | version "0.5.7" 1036 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 1037 | 1038 | source-map@~0.6.1: 1039 | version "0.6.1" 1040 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 1041 | 1042 | sshpk@^1.7.0: 1043 | version "1.13.1" 1044 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 1045 | dependencies: 1046 | asn1 "~0.2.3" 1047 | assert-plus "^1.0.0" 1048 | dashdash "^1.12.0" 1049 | getpass "^0.1.1" 1050 | optionalDependencies: 1051 | bcrypt-pbkdf "^1.0.0" 1052 | ecc-jsbn "~0.1.1" 1053 | jsbn "~0.1.0" 1054 | tweetnacl "~0.14.0" 1055 | 1056 | string-width@^1.0.1, string-width@^1.0.2: 1057 | version "1.0.2" 1058 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1059 | dependencies: 1060 | code-point-at "^1.0.0" 1061 | is-fullwidth-code-point "^1.0.0" 1062 | strip-ansi "^3.0.0" 1063 | 1064 | string_decoder@~1.0.3: 1065 | version "1.0.3" 1066 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 1067 | dependencies: 1068 | safe-buffer "~5.1.0" 1069 | 1070 | stringstream@~0.0.4: 1071 | version "0.0.5" 1072 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 1073 | 1074 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1075 | version "3.0.1" 1076 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1077 | dependencies: 1078 | ansi-regex "^2.0.0" 1079 | 1080 | strip-json-comments@~2.0.1: 1081 | version "2.0.1" 1082 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1083 | 1084 | symbol-observable@1.0.1: 1085 | version "1.0.1" 1086 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.1.tgz#8340fc4702c3122df5d22288f88283f513d3fdd4" 1087 | 1088 | tar-pack@^3.4.0: 1089 | version "3.4.1" 1090 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 1091 | dependencies: 1092 | debug "^2.2.0" 1093 | fstream "^1.0.10" 1094 | fstream-ignore "^1.0.5" 1095 | once "^1.3.3" 1096 | readable-stream "^2.1.4" 1097 | rimraf "^2.5.1" 1098 | tar "^2.2.1" 1099 | uid-number "^0.0.6" 1100 | 1101 | tar@^2.2.1: 1102 | version "2.2.1" 1103 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 1104 | dependencies: 1105 | block-stream "*" 1106 | fstream "^1.0.2" 1107 | inherits "2" 1108 | 1109 | tough-cookie@~2.3.0: 1110 | version "2.3.3" 1111 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 1112 | dependencies: 1113 | punycode "^1.4.1" 1114 | 1115 | tsickle@^0.26.0: 1116 | version "0.26.0" 1117 | resolved "https://registry.yarnpkg.com/tsickle/-/tsickle-0.26.0.tgz#40b30a2dd6abcb33b182e37596674bd1cfe4039c" 1118 | dependencies: 1119 | minimist "^1.2.0" 1120 | mkdirp "^0.5.1" 1121 | source-map "^0.5.6" 1122 | source-map-support "^0.4.2" 1123 | 1124 | tslib@^1.7.1: 1125 | version "1.9.0" 1126 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.0.tgz#e37a86fda8cbbaf23a057f473c9f4dc64e5fc2e8" 1127 | 1128 | tunnel-agent@^0.6.0: 1129 | version "0.6.0" 1130 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 1131 | dependencies: 1132 | safe-buffer "^5.0.1" 1133 | 1134 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1135 | version "0.14.5" 1136 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1137 | 1138 | typescript@^2.3.3, typescript@^2.7.1: 1139 | version "2.7.1" 1140 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.7.1.tgz#bb3682c2c791ac90e7c6210b26478a8da085c359" 1141 | 1142 | uglify-es@^3.3.7: 1143 | version "3.3.9" 1144 | resolved "https://registry.yarnpkg.com/uglify-es/-/uglify-es-3.3.9.tgz#0c1c4f0700bed8dbc124cdb304d2592ca203e677" 1145 | dependencies: 1146 | commander "~2.13.0" 1147 | source-map "~0.6.1" 1148 | 1149 | uid-number@^0.0.6: 1150 | version "0.0.6" 1151 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 1152 | 1153 | union@~0.4.3: 1154 | version "0.4.6" 1155 | resolved "https://registry.yarnpkg.com/union/-/union-0.4.6.tgz#198fbdaeba254e788b0efcb630bc11f24a2959e0" 1156 | dependencies: 1157 | qs "~2.3.3" 1158 | 1159 | url-join@^2.0.2: 1160 | version "2.0.5" 1161 | resolved "https://registry.yarnpkg.com/url-join/-/url-join-2.0.5.tgz#5af22f18c052a000a48d7b82c5e9c2e2feeda728" 1162 | 1163 | util-deprecate@~1.0.1: 1164 | version "1.0.2" 1165 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1166 | 1167 | uuid@^3.0.0: 1168 | version "3.2.1" 1169 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" 1170 | 1171 | verror@1.10.0: 1172 | version "1.10.0" 1173 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 1174 | dependencies: 1175 | assert-plus "^1.0.0" 1176 | core-util-is "1.0.2" 1177 | extsprintf "^1.2.0" 1178 | 1179 | webpack-sources@^1.0.1: 1180 | version "1.1.0" 1181 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.1.0.tgz#a101ebae59d6507354d71d8013950a3a8b7a5a54" 1182 | dependencies: 1183 | source-list-map "^2.0.0" 1184 | source-map "~0.6.1" 1185 | 1186 | wide-align@^1.1.0: 1187 | version "1.1.2" 1188 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 1189 | dependencies: 1190 | string-width "^1.0.2" 1191 | 1192 | wordwrap@~0.0.2: 1193 | version "0.0.3" 1194 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 1195 | 1196 | wrappy@1: 1197 | version "1.0.2" 1198 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1199 | 1200 | xhr2@^0.1.4: 1201 | version "0.1.4" 1202 | resolved "https://registry.yarnpkg.com/xhr2/-/xhr2-0.1.4.tgz#7f87658847716db5026323812f818cadab387a5f" 1203 | --------------------------------------------------------------------------------