├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── README.md ├── examples ├── webpack-1 │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.json │ ├── .gitattributes │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package.json │ ├── src │ │ ├── .eslintrc.json │ │ ├── greeting │ │ │ └── index.js │ │ └── index.js │ ├── webpack.config.js │ └── yarn.lock ├── webpack-2 │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.json │ ├── .gitattributes │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package.json │ ├── src │ │ ├── .eslintrc.json │ │ ├── greeting │ │ │ └── index.js │ │ └── index.js │ ├── webpack.config.js │ └── yarn.lock └── webpack-4 │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.json │ ├── .gitattributes │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package.json │ ├── src │ ├── .eslintrc.json │ ├── greeting │ │ └── index.js │ └── index.js │ ├── webpack.config.js │ ├── yarn-error.log │ └── yarn.lock ├── index.js ├── package.json ├── test ├── integration │ ├── cases │ │ ├── contents-async │ │ │ ├── expected │ │ │ │ └── file.txt │ │ │ ├── index.js │ │ │ └── webpack.config.js │ │ ├── contents-function │ │ │ ├── expected │ │ │ │ └── file.txt │ │ │ ├── index.js │ │ │ └── webpack.config.js │ │ ├── contents-object │ │ │ ├── expected │ │ │ │ ├── #file.txt# │ │ │ │ └── file.txt │ │ │ ├── index.js │ │ │ └── webpack.config.js │ │ └── simple │ │ │ ├── expected │ │ │ └── file.txt │ │ │ ├── index.js │ │ │ └── webpack.config.js │ └── index.js └── unit │ ├── populate-filesystem.js │ └── stats.js ├── virtual-stats.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig helps developers define and maintain consistent 2 | # coding styles between different editors and IDEs 3 | # editorconfig.org 4 | 5 | root = true 6 | 7 | 8 | [*] 9 | # We recommend you to keep these unchanged 10 | end_of_line = lf 11 | charset = utf-8 12 | trim_trailing_whitespace = true 13 | insert_final_newline = true 14 | 15 | indent_style = space 16 | indent_size = 2 17 | 18 | [**.js] 19 | indent_style = space 20 | indent_size = 2 21 | trim_trailing_whitespace = true 22 | insert_final_newline = true 23 | 24 | [**.html] 25 | indent_style = space 26 | indent_size = 2 27 | trim_trailing_whitespace = true 28 | insert_final_newline = true 29 | 30 | [**.scss] 31 | indent_style = space 32 | indent_size = 2 33 | trim_trailing_whitespace = true 34 | insert_final_newline = true 35 | 36 | [**.css] 37 | indent_style = space 38 | indent_size = 2 39 | trim_trailing_whitespace = true 40 | insert_final_newline = true 41 | 42 | [**.md] 43 | indent_style = space 44 | indent_size = 2 45 | trim_trailing_whitespace = false 46 | insert_final_newline = true 47 | 48 | [**.txt] 49 | trim_trailing_whitespace = false 50 | insert_final_newline = false 51 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "parser": "babel-eslint", 3 | "extends": "airbnb-base", 4 | "parserOptions": { 5 | "ecmaVersion": 6, 6 | "sourceType": "script" 7 | }, 8 | "env": { 9 | "node": true 10 | }, 11 | "root": true, 12 | "rules": { 13 | "comma-dangle": ["error", { 14 | "arrays": "only-multiline", 15 | "objects": "only-multiline", 16 | "imports": "only-multiline", 17 | "exports": "only-multiline", 18 | "functions": "never" 19 | }], 20 | "indent": ["error", 2], 21 | "no-param-reassign": "off", 22 | "strict": ["error", "global"] 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | .nyc_output 4 | .idea/ 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | example/ 2 | test/ 3 | dist/ 4 | .gitattributes 5 | .nyc_output 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | language: node_js 3 | node_js: 4 | - '6' 5 | - '8' 6 | - '10' 7 | - '12' 8 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | All notable changes to this project will be documented in this file. 3 | 4 | The format is based on [Keep a Changelog](http://keepachangelog.com/) 5 | and this project adheres to [Semantic Versioning](http://semver.org/). 6 | 7 | ## [0.4.1] - 2018-12-12 8 | ### Changed 9 | - Fix deprecation warning in webpack 4. Thanks to @dlmr for pull request #26. 10 | 11 | ## [0.4.0] - 2018-03-04 12 | ### Changed 13 | - Support for webpack 4. 14 | Extra thanks to @brunomacf for pull request #20 and to the community 15 | for reporting the issue. 16 | 17 | ## [0.3.0] - 2017-07-28 18 | ### Changed 19 | - Support for webpack > 2.6.1 and enhanced-resolve > 3.3.0. 20 | Extra thanks to @joaovnogueira for pull request #16 and to the community 21 | for reporting the issue. 22 | 23 | ## [0.2.2] - 2017-07-11 24 | ### Changed 25 | - Fix to enhanced resolve callback chain by always invoking the callback without arguments. 26 | Thanks to @MrHayato for pull request #13. 27 | 28 | ## [0.2.1] - 2017-06-12 29 | ### Added 30 | - README.md and integration test update to demonstrate a way to resolve module 31 | contents asynchronously. Thanks @papandreou and @rangoo94 for the pull requests 32 | attempts at making it built into the plugin. It seems to only be possible 33 | by exporting a Promise for the webpack config and resolving the contents before 34 | resolving the config. 35 | 36 | ## [0.2.0] - 2017-04-01 37 | ### Added 38 | - Function and object support for "contents" from @wujjpp. The value for 39 | the "contents" config can be an object that will be stringified to JSON or 40 | a function that will be called at build time. 41 | - Webpack 2 example. 42 | - This changelog. 43 | 44 | ## [0.1.3] - 2016-11-28 45 | - Fixed issue with tagging the release. Bumped version for publishing to NPM. 46 | 47 | ## [0.1.2] - 2016-11-28 48 | ### Added 49 | - Node 6.x support from @Angelll and nathb2b@gmail.com. 50 | - Syntax highlighting in README from @rmariuzzo 51 | 52 | ## [0.1.1] - 2016-03-29 53 | ### Added 54 | - webpack-dev-server to example. 55 | 56 | ### Changed 57 | - Cleaned up the plugin code slightly to check 58 | `fs._readFileStorage.data` for the virtual module instead of the 59 | `fs._virtual` object I was using. `fs._virtual` was redundant and didn't 60 | verify that the module hadn't been purged from the file system cache. 61 | 62 | ## 0.1.0 - 2016-03-29 63 | ### Added 64 | - Initial version of project. 65 | - My need for the project was around custom extraction of css styles embedded in 66 | javascript source files. However, I ended up solving the problem with a custom 67 | loader in a similar manner to [vue-loader](https://github.com/vuejs/vue-loader). 68 | - I had seen a question on StackOverflow while trying to find an existing 69 | solution and ended up posting this plugin as an answer. 70 | http://stackoverflow.com/a/36294904/304438 71 | 72 | [0.4.1]: https://github.com/rmarscher/virtual-module-webpack-plugin/compare/v0.4.0...v0.4.1 73 | [0.4.0]: https://github.com/rmarscher/virtual-module-webpack-plugin/compare/v0.3.0...v0.4.0 74 | [0.3.0]: https://github.com/rmarscher/virtual-module-webpack-plugin/compare/v0.2.2...v0.3.0 75 | [0.2.2]: https://github.com/rmarscher/virtual-module-webpack-plugin/compare/v0.2.1...v0.2.2 76 | [0.2.1]: https://github.com/rmarscher/virtual-module-webpack-plugin/compare/v0.2.0...v0.2.1 77 | [0.2.0]: https://github.com/rmarscher/virtual-module-webpack-plugin/compare/v0.1.3...v0.2.0 78 | [0.1.3]: https://github.com/rmarscher/virtual-module-webpack-plugin/compare/v0.1.2...v0.1.3 79 | [0.1.2]: https://github.com/rmarscher/virtual-module-webpack-plugin/compare/v0.1.1...v0.1.2 80 | [0.1.1]: https://github.com/rmarscher/virtual-module-webpack-plugin/compare/v0.1.0...v0.1.1 81 | [0.1.0]: initial version 82 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Virtual Module Webpack Plugin [![Build Status](https://travis-ci.org/rmarscher/virtual-module-webpack-plugin.svg?branch=master)](https://travis-ci.org/rmarscher/virtual-module-webpack-plugin) [![codecov.io](https://codecov.io/github/rmarscher/virtual-module-webpack-plugin/coverage.svg?branch=master)](https://codecov.io/github/rmarscher/virtual-module-webpack-plugin?branch=master) [![npm package](https://badge.fury.io/js/virtual-module-webpack-plugin.svg)](https://www.npmjs.com/package/virtual-module-webpack-plugin) 2 | 3 | **2020 Update**: Webpack 5 is out. Instead of adding Webpack 5 support to this project, it seems best to switch to use the [webpack-virtual-modules](https://github.com/sysgears/webpack-virtual-modules) project and deprecate this project. webpack-virtual-modules was inspired by this project and adds hot reloading / file watching and makes it easier to define many virtual modules. 4 | 5 | **Original Readme**: 6 | 7 | This is an experimental plugin that adds the contents of a virtual file to 8 | Webpack's cached file system without writing it to disk. 9 | 10 | This would be used if you generated file contents at build time that needs to 11 | be consumed as a module by your source code, but you don't want to write this 12 | file to disk. 13 | 14 | It uses private APIs of the CachedInputFileSystem of the `enhanced-resolve` 15 | package that Webpack uses as the module resolver. Therefore, it is inherently 16 | fragile and subject to be broken if the CachedInputFileSystem changes. Fortunately, 17 | the changes have not been too extensive between webpack 1.x - 4.x and this plugin 18 | has been updated to be compatible with all. 19 | 20 | See https://github.com/webpack/enhanced-resolve/blob/master/lib/CachedInputFileSystem.js 21 | 22 | If another webpack plugin clears the CachedInputFileSystem without triggering the 23 | resolve event of the resolver plugin lifecycle, the virtual file will no longer be able 24 | to be referenced. Based off the issues received in this plugin's history, this does 25 | not seem to be an issue. 26 | 27 | ## Difference between val-loader 28 | 29 | [val-loader](https://github.com/webpack-contrib/val-loader) is also capable of dynamically 30 | generating module code at build time. val-loader is a "loader" and not a "plugin." Webpack 31 | loaders require a file to exist in webpack's file system cache. Webpack loads the cache 32 | from the files on disk. This virtual-module-webpack-plugin inserts directly into webpack's 33 | file system cache. 34 | 35 | val-loader is better if you have a file you want to load at build time that contains all 36 | of the logic to dynamically fetch and return the source of that file. You also are able 37 | to use watch mode in development since there is a physical file to watch. 38 | 39 | virtual-module-webpack-plugin is better if you have a build script that is collecting 40 | stats, config or other data that you want to be able to reference in the runtime code 41 | without every writing that data to a source file on disk. 42 | 43 | ## Usage 44 | 45 | In your webpack.config.js, require the plugin: 46 | 47 | ```js 48 | const VirtualModulePlugin = require('./virtual-module-webpack-plugin'); 49 | ``` 50 | 51 | Then when defining the config object create an instance of the plugin 52 | passing in the `moduleName` and `contents` and add it to the webpack 53 | config's plugins array. 54 | 55 | The `moduleName` should be relative to your webpack config context 56 | which defaults to the directory holding the webpack.config.js file. 57 | 58 | ```js 59 | plugins: [ 60 | new VirtualModulePlugin({ 61 | moduleName: 'src/mysettings.json', 62 | contents: JSON.stringify({ greeting: 'Hello!' }) 63 | }) 64 | ] 65 | ``` 66 | 67 | Then require the file as you would any other module in your source. 68 | The file contents will be passed through any loaders you setup 69 | that match the moduleName. 70 | 71 | If you pass an object to contents, it will automatically be passed through 72 | `JSON.stringify`. You can also pass a function to contents which will be 73 | invoked at compile time with no arguments. See [pull #10](https://github.com/rmarscher/virtual-module-webpack-plugin/pull/10). 74 | 75 | See the examples directory for a complete working examples with webpack 1.x, 76 | 2.x and 4.x. 77 | 78 | If you need to fetch the contents asynchronously, you need to have your `webpack.config.js` 79 | return a Promise. It should first resolve getting your module contents and then 80 | return the Webpack config. 81 | 82 | A few development attempts were made at letting the plugin resolve the contents 83 | on demand, but we were unable to get Webpack to wait for a callback during the 84 | resolve stage. See pull requests [#11](https://github.com/rmarscher/virtual-module-webpack-plugin/pull/11) 85 | and [#12](https://github.com/rmarscher/virtual-module-webpack-plugin/pull/12). 86 | Pull requests to solve the problem are welcome, but it needs to work even if the 87 | asynchronous content request takes a while. You can uncomment code in 88 | `test/integration/cases/contents-async/webpack.config.js` to test it. 89 | 90 | Here is an example of async content fetching inside webpack.config.js: 91 | 92 | ``` 93 | 'use strict'; 94 | 95 | const VirtualModulePlugin = require('virtual-module-webpack-plugin'); 96 | 97 | function contents() { 98 | return new Promise(resolve => { 99 | setTimeout(() => { 100 | resolve('a'); 101 | }, 1000); 102 | }); 103 | } 104 | 105 | module.exports = contents().then(asyncContents => ({ 106 | entry: './index', 107 | plugins: [ 108 | new VirtualModulePlugin({ 109 | moduleName: './a.txt', 110 | contents: asyncContents, 111 | }), 112 | ], 113 | })); 114 | ``` 115 | -------------------------------------------------------------------------------- /examples/webpack-1/.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig helps developers define and maintain consistent 2 | # coding styles between different editors and IDEs 3 | # editorconfig.org 4 | 5 | root = true 6 | 7 | 8 | [*] 9 | # We recommend you to keep these unchanged 10 | end_of_line = lf 11 | charset = utf-8 12 | trim_trailing_whitespace = true 13 | insert_final_newline = true 14 | 15 | indent_style = space 16 | indent_size = 2 17 | 18 | [**.js] 19 | indent_style = space 20 | indent_size = 2 21 | trim_trailing_whitespace = true 22 | insert_final_newline = true 23 | 24 | [**.html] 25 | indent_style = space 26 | indent_size = 2 27 | trim_trailing_whitespace = true 28 | insert_final_newline = true 29 | 30 | [**.scss] 31 | indent_style = space 32 | indent_size = 2 33 | trim_trailing_whitespace = true 34 | insert_final_newline = true 35 | 36 | [**.css] 37 | indent_style = space 38 | indent_size = 2 39 | trim_trailing_whitespace = true 40 | insert_final_newline = true 41 | 42 | [**.md] 43 | indent_style = space 44 | indent_size = 2 45 | trim_trailing_whitespace = false 46 | insert_final_newline = true 47 | 48 | -------------------------------------------------------------------------------- /examples/webpack-1/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /examples/webpack-1/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "parser": "babel-eslint", 3 | "extends": "airbnb-base", 4 | "parserOptions": { 5 | "ecmaVersion": 6, 6 | "sourceType": "script" 7 | }, 8 | "env": { 9 | "node": true 10 | }, 11 | "root": true, 12 | "rules": { 13 | "indent": ["error", 2], 14 | "strict": ["error", "global"] 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /examples/webpack-1/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /examples/webpack-1/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /examples/webpack-1/README.md: -------------------------------------------------------------------------------- 1 | An example of using the `virtual-module-webpack-plugin` that 2 | demonstrates it can work in a production environment with 3 | the `extract-text-webpack-plugin` and loaders such as the 4 | `json-loader` and `css-loader` with source maps. 5 | 6 | Run `npm install` and then `npm start` or `npm run build` to try it out. 7 | The `npm start` script uses webpack-dev-server and you can view 8 | the page at http://localhost:8080/. 9 | -------------------------------------------------------------------------------- /examples/webpack-1/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /examples/webpack-1/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "virtual-module-webpack-plugin-example", 3 | "version": "1.0.1", 4 | "description": "An example of using the virtual-module-webpack-plugin", 5 | "scripts": { 6 | "start": "webpack-dev-server", 7 | "build": "webpack", 8 | "fix": "npm run lint -- --fix", 9 | "lint": "eslint . ./" 10 | }, 11 | "devDependencies": { 12 | "babel-eslint": "^7.1.1", 13 | "css-loader": "^0.26.0", 14 | "eslint": "^3.11.1", 15 | "eslint-config-airbnb-base": "^10.0.1", 16 | "eslint-plugin-import": "^2.2.0", 17 | "extract-text-webpack-plugin": "^2.0.0-beta.4", 18 | "json-loader": "^0.5.4", 19 | "style-loader": "^0.13.1", 20 | "webpack": "^2.1.0-beta.4", 21 | "webpack-dev-server": "^2.0.0-beta" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /examples/webpack-1/src/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "parserOptions": { 3 | "ecmaVersion": 6, 4 | "sourceType": "module" 5 | }, 6 | "env": { 7 | "browser": true 8 | }, 9 | "rules": { 10 | "no-console": 0 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /examples/webpack-1/src/greeting/index.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable import/no-unresolved, import/extensions, import/no-extraneous-dependencies */ 2 | import settings from 'mysettings'; 3 | 4 | export default settings.greeting; 5 | -------------------------------------------------------------------------------- /examples/webpack-1/src/index.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable import/no-unresolved, import/no-extraneous-dependencies */ 2 | import 'css/generated.css'; 3 | import greeting from './greeting'; 4 | 5 | console.log(greeting); 6 | 7 | if (window) { 8 | const document = window.document; 9 | const body = document.querySelector('body'); 10 | const header = document.createElement('h1'); 11 | header.className = 'greeting'; 12 | header.textContent = greeting; 13 | body.appendChild(header); 14 | } 15 | -------------------------------------------------------------------------------- /examples/webpack-1/webpack.config.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const path = require('path'); 4 | // eslint-disable-next-line import/no-extraneous-dependencies 5 | const ExtractTextPlugin = require('extract-text-webpack-plugin'); 6 | // in actual use, you would `require('virtual-module-webpack-plugin')` here 7 | const VirtualModulePlugin = require('../../index'); 8 | 9 | module.exports = function webpackConfig() { 10 | const runtimeJsonContents = JSON.stringify({ 11 | greeting: 'Hello!', 12 | }); 13 | const runtimeStyleContents = ` 14 | body { background: #000; color: #ccc; } 15 | .greeting { font: 600 40px/50px fantasy; text-align: center; } 16 | `; 17 | 18 | const config = { 19 | context: __dirname, 20 | devtool: 'source-map', 21 | entry: { 22 | index: './src/index', 23 | }, 24 | output: { 25 | filename: '[name].js', 26 | path: 'dist', 27 | publicPath: '/', 28 | devtoolModuleFilenameTemplate: '../[resource-path]', 29 | }, 30 | module: { 31 | loaders: [ 32 | { 33 | test: /\.json$/, 34 | loaders: ['json-loader'], 35 | }, 36 | { 37 | test: /\.css$/, 38 | loader: ExtractTextPlugin.extract({ 39 | fallbackLoader: 'style-loader', 40 | loader: 'css-loader?sourceMap', 41 | }), 42 | }, 43 | ], 44 | }, 45 | plugins: [ 46 | new VirtualModulePlugin({ 47 | moduleName: 'src/mysettings.json', 48 | contents: runtimeJsonContents, 49 | }), 50 | new VirtualModulePlugin({ 51 | moduleName: 'src/css/generated.css', 52 | contents: runtimeStyleContents, 53 | }), 54 | new ExtractTextPlugin({ 55 | filename: '[name].css', 56 | allChunks: true, 57 | }), 58 | ], 59 | resolve: { 60 | modules: [ 61 | path.join(__dirname, 'src'), 62 | 'node_modules', 63 | ], 64 | }, 65 | }; 66 | return config; 67 | }; 68 | -------------------------------------------------------------------------------- /examples/webpack-1/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | abbrev@1: 4 | version "1.0.9" 5 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 6 | 7 | accepts@~1.3.3: 8 | version "1.3.3" 9 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca" 10 | dependencies: 11 | mime-types "~2.1.11" 12 | negotiator "0.6.1" 13 | 14 | acorn-jsx@^3.0.0: 15 | version "3.0.1" 16 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 17 | dependencies: 18 | acorn "^3.0.4" 19 | 20 | acorn@^3.0.4: 21 | version "3.3.0" 22 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 23 | 24 | acorn@^4.0.1, acorn@^4.0.3: 25 | version "4.0.3" 26 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.3.tgz#1a3e850b428e73ba6b09d1cc527f5aaad4d03ef1" 27 | 28 | ajv-keywords@^1.0.0, ajv-keywords@^1.1.1: 29 | version "1.1.1" 30 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.1.1.tgz#02550bc605a3e576041565628af972e06c549d50" 31 | 32 | ajv@^4.7.0: 33 | version "4.9.0" 34 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.9.0.tgz#5a358085747b134eb567d6d15e015f1d7802f45c" 35 | dependencies: 36 | co "^4.6.0" 37 | json-stable-stringify "^1.0.1" 38 | 39 | align-text@^0.1.1, align-text@^0.1.3: 40 | version "0.1.4" 41 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 42 | dependencies: 43 | kind-of "^3.0.2" 44 | longest "^1.0.1" 45 | repeat-string "^1.5.2" 46 | 47 | alphanum-sort@^1.0.1, alphanum-sort@^1.0.2: 48 | version "1.0.2" 49 | resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" 50 | 51 | ansi-escapes@^1.1.0: 52 | version "1.4.0" 53 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 54 | 55 | ansi-regex@^2.0.0: 56 | version "2.0.0" 57 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.0.0.tgz#c5061b6e0ef8a81775e50f5d66151bf6bf371107" 58 | 59 | ansi-styles@^2.2.1: 60 | version "2.2.1" 61 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 62 | 63 | anymatch@^1.3.0: 64 | version "1.3.0" 65 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 66 | dependencies: 67 | arrify "^1.0.0" 68 | micromatch "^2.1.5" 69 | 70 | aproba@^1.0.3: 71 | version "1.0.4" 72 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.0.4.tgz#2713680775e7614c8ba186c065d4e2e52d1072c0" 73 | 74 | are-we-there-yet@~1.1.2: 75 | version "1.1.2" 76 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 77 | dependencies: 78 | delegates "^1.0.0" 79 | readable-stream "^2.0.0 || ^1.1.13" 80 | 81 | argparse@^1.0.7: 82 | version "1.0.9" 83 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 84 | dependencies: 85 | sprintf-js "~1.0.2" 86 | 87 | arr-diff@^2.0.0: 88 | version "2.0.0" 89 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 90 | dependencies: 91 | arr-flatten "^1.0.1" 92 | 93 | arr-flatten@^1.0.1: 94 | version "1.0.1" 95 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 96 | 97 | array-flatten@1.1.1: 98 | version "1.1.1" 99 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" 100 | 101 | array-union@^1.0.1: 102 | version "1.0.2" 103 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 104 | dependencies: 105 | array-uniq "^1.0.1" 106 | 107 | array-uniq@^1.0.1: 108 | version "1.0.3" 109 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 110 | 111 | array-unique@^0.2.1: 112 | version "0.2.1" 113 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 114 | 115 | arrify@^1.0.0: 116 | version "1.0.1" 117 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 118 | 119 | asn1.js@^4.0.0: 120 | version "4.9.0" 121 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.0.tgz#f71a1243f3e79d46d7b07d7fbf4824ee73af054a" 122 | dependencies: 123 | bn.js "^4.0.0" 124 | inherits "^2.0.1" 125 | minimalistic-assert "^1.0.0" 126 | 127 | asn1@~0.2.3: 128 | version "0.2.3" 129 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 130 | 131 | assert-plus@^0.2.0: 132 | version "0.2.0" 133 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 134 | 135 | assert-plus@^1.0.0: 136 | version "1.0.0" 137 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 138 | 139 | assert@^1.1.1: 140 | version "1.4.1" 141 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 142 | dependencies: 143 | util "0.10.3" 144 | 145 | async-each@^1.0.0: 146 | version "1.0.1" 147 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 148 | 149 | async@^1.5.0: 150 | version "1.5.2" 151 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 152 | 153 | async@^2.1.2: 154 | version "2.1.4" 155 | resolved "https://registry.yarnpkg.com/async/-/async-2.1.4.tgz#2d2160c7788032e4dd6cbe2502f1f9a2c8f6cde4" 156 | dependencies: 157 | lodash "^4.14.0" 158 | 159 | async@~0.2.6: 160 | version "0.2.10" 161 | resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" 162 | 163 | async@2.0.0-rc.4: 164 | version "2.0.0-rc.4" 165 | resolved "https://registry.yarnpkg.com/async/-/async-2.0.0-rc.4.tgz#9b7f60724c17962a973f787419e0ebc5571dbad8" 166 | dependencies: 167 | lodash "^4.3.0" 168 | 169 | asynckit@^0.4.0: 170 | version "0.4.0" 171 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 172 | 173 | autoprefixer@^6.3.1: 174 | version "6.5.3" 175 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-6.5.3.tgz#2d853af66d04449fcf50db3066279ab54c3e4b01" 176 | dependencies: 177 | browserslist "~1.4.0" 178 | caniuse-db "^1.0.30000578" 179 | normalize-range "^0.1.2" 180 | num2fraction "^1.2.2" 181 | postcss "^5.2.5" 182 | postcss-value-parser "^3.2.3" 183 | 184 | aws-sign2@~0.6.0: 185 | version "0.6.0" 186 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 187 | 188 | aws4@^1.2.1: 189 | version "1.5.0" 190 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.5.0.tgz#0a29ffb79c31c9e712eeb087e8e7a64b4a56d755" 191 | 192 | babel-code-frame@^6.11.0, babel-code-frame@^6.16.0: 193 | version "6.16.0" 194 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.16.0.tgz#f90e60da0862909d3ce098733b5d3987c97cb8de" 195 | dependencies: 196 | chalk "^1.1.0" 197 | esutils "^2.0.2" 198 | js-tokens "^2.0.0" 199 | 200 | babel-eslint@^7.1.1: 201 | version "7.1.1" 202 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.1.1.tgz#8a6a884f085aa7060af69cfc77341c2f99370fb2" 203 | dependencies: 204 | babel-code-frame "^6.16.0" 205 | babel-traverse "^6.15.0" 206 | babel-types "^6.15.0" 207 | babylon "^6.13.0" 208 | lodash.pickby "^4.6.0" 209 | 210 | babel-messages@^6.8.0: 211 | version "6.8.0" 212 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.8.0.tgz#bf504736ca967e6d65ef0adb5a2a5f947c8e0eb9" 213 | dependencies: 214 | babel-runtime "^6.0.0" 215 | 216 | babel-runtime@^6.0.0, babel-runtime@^6.9.0, babel-runtime@^6.9.1: 217 | version "6.18.0" 218 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.18.0.tgz#0f4177ffd98492ef13b9f823e9994a02584c9078" 219 | dependencies: 220 | core-js "^2.4.0" 221 | regenerator-runtime "^0.9.5" 222 | 223 | babel-traverse@^6.15.0: 224 | version "6.19.0" 225 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.19.0.tgz#68363fb821e26247d52a519a84b2ceab8df4f55a" 226 | dependencies: 227 | babel-code-frame "^6.16.0" 228 | babel-messages "^6.8.0" 229 | babel-runtime "^6.9.0" 230 | babel-types "^6.19.0" 231 | babylon "^6.11.0" 232 | debug "^2.2.0" 233 | globals "^9.0.0" 234 | invariant "^2.2.0" 235 | lodash "^4.2.0" 236 | 237 | babel-types@^6.15.0, babel-types@^6.19.0: 238 | version "6.19.0" 239 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.19.0.tgz#8db2972dbed01f1192a8b602ba1e1e4c516240b9" 240 | dependencies: 241 | babel-runtime "^6.9.1" 242 | esutils "^2.0.2" 243 | lodash "^4.2.0" 244 | to-fast-properties "^1.0.1" 245 | 246 | babylon@^6.11.0, babylon@^6.13.0: 247 | version "6.14.1" 248 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.14.1.tgz#956275fab72753ad9b3435d7afe58f8bf0a29815" 249 | 250 | balanced-match@^0.4.1, balanced-match@^0.4.2: 251 | version "0.4.2" 252 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 253 | 254 | base64-js@^1.0.2: 255 | version "1.2.0" 256 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1" 257 | 258 | batch@0.5.3: 259 | version "0.5.3" 260 | resolved "https://registry.yarnpkg.com/batch/-/batch-0.5.3.tgz#3f3414f380321743bfc1042f9a83ff1d5824d464" 261 | 262 | bcrypt-pbkdf@^1.0.0: 263 | version "1.0.0" 264 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.0.tgz#3ca76b85241c7170bf7d9703e7b9aa74630040d4" 265 | dependencies: 266 | tweetnacl "^0.14.3" 267 | 268 | big.js@^3.1.3: 269 | version "3.1.3" 270 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.1.3.tgz#4cada2193652eb3ca9ec8e55c9015669c9806978" 271 | 272 | binary-extensions@^1.0.0: 273 | version "1.7.0" 274 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.7.0.tgz#6c1610db163abfb34edfe42fa423343a1e01185d" 275 | 276 | block-stream@*: 277 | version "0.0.9" 278 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 279 | dependencies: 280 | inherits "~2.0.0" 281 | 282 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 283 | version "4.11.6" 284 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.6.tgz#53344adb14617a13f6e8dd2ce28905d1c0ba3215" 285 | 286 | boom@2.x.x: 287 | version "2.10.1" 288 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 289 | dependencies: 290 | hoek "2.x.x" 291 | 292 | brace-expansion@^1.0.0: 293 | version "1.1.6" 294 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 295 | dependencies: 296 | balanced-match "^0.4.1" 297 | concat-map "0.0.1" 298 | 299 | braces@^1.8.2: 300 | version "1.8.5" 301 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 302 | dependencies: 303 | expand-range "^1.8.1" 304 | preserve "^0.2.0" 305 | repeat-element "^1.1.2" 306 | 307 | brorand@^1.0.1: 308 | version "1.0.6" 309 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.0.6.tgz#4028706b915f91f7b349a2e0bf3c376039d216e5" 310 | 311 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 312 | version "1.0.6" 313 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.6.tgz#5e7725dbdef1fd5930d4ebab48567ce451c48a0a" 314 | dependencies: 315 | buffer-xor "^1.0.2" 316 | cipher-base "^1.0.0" 317 | create-hash "^1.1.0" 318 | evp_bytestokey "^1.0.0" 319 | inherits "^2.0.1" 320 | 321 | browserify-cipher@^1.0.0: 322 | version "1.0.0" 323 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" 324 | dependencies: 325 | browserify-aes "^1.0.4" 326 | browserify-des "^1.0.0" 327 | evp_bytestokey "^1.0.0" 328 | 329 | browserify-des@^1.0.0: 330 | version "1.0.0" 331 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" 332 | dependencies: 333 | cipher-base "^1.0.1" 334 | des.js "^1.0.0" 335 | inherits "^2.0.1" 336 | 337 | browserify-rsa@^4.0.0: 338 | version "4.0.1" 339 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 340 | dependencies: 341 | bn.js "^4.1.0" 342 | randombytes "^2.0.1" 343 | 344 | browserify-sign@^4.0.0: 345 | version "4.0.0" 346 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.0.tgz#10773910c3c206d5420a46aad8694f820b85968f" 347 | dependencies: 348 | bn.js "^4.1.1" 349 | browserify-rsa "^4.0.0" 350 | create-hash "^1.1.0" 351 | create-hmac "^1.1.2" 352 | elliptic "^6.0.0" 353 | inherits "^2.0.1" 354 | parse-asn1 "^5.0.0" 355 | 356 | browserify-zlib@^0.1.4: 357 | version "0.1.4" 358 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" 359 | dependencies: 360 | pako "~0.2.0" 361 | 362 | browserslist@~1.4.0: 363 | version "1.4.0" 364 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.4.0.tgz#9cfdcf5384d9158f5b70da2aa00b30e8ff019049" 365 | dependencies: 366 | caniuse-db "^1.0.30000539" 367 | 368 | buffer-shims@^1.0.0: 369 | version "1.0.0" 370 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 371 | 372 | buffer-xor@^1.0.2: 373 | version "1.0.3" 374 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 375 | 376 | buffer@^4.3.0: 377 | version "4.9.1" 378 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 379 | dependencies: 380 | base64-js "^1.0.2" 381 | ieee754 "^1.1.4" 382 | isarray "^1.0.0" 383 | 384 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 385 | version "1.1.1" 386 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 387 | 388 | builtin-status-codes@^2.0.0: 389 | version "2.0.0" 390 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-2.0.0.tgz#6f22003baacf003ccd287afe6872151fddc58579" 391 | 392 | bytes@2.3.0: 393 | version "2.3.0" 394 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.3.0.tgz#d5b680a165b6201739acb611542aabc2d8ceb070" 395 | 396 | caller-path@^0.1.0: 397 | version "0.1.0" 398 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 399 | dependencies: 400 | callsites "^0.2.0" 401 | 402 | callsites@^0.2.0: 403 | version "0.2.0" 404 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 405 | 406 | camelcase@^1.0.2: 407 | version "1.2.1" 408 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 409 | 410 | camelcase@^2.0.1: 411 | version "2.1.1" 412 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 413 | 414 | camelcase@^3.0.0: 415 | version "3.0.0" 416 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 417 | 418 | caniuse-db@^1.0.30000539, caniuse-db@^1.0.30000578: 419 | version "1.0.30000588" 420 | resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000588.tgz#20baa051c5bd7e33ae32c7781b5379289c3d39d2" 421 | 422 | caseless@~0.11.0: 423 | version "0.11.0" 424 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 425 | 426 | center-align@^0.1.1: 427 | version "0.1.3" 428 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 429 | dependencies: 430 | align-text "^0.1.3" 431 | lazy-cache "^1.0.3" 432 | 433 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 434 | version "1.1.3" 435 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 436 | dependencies: 437 | ansi-styles "^2.2.1" 438 | escape-string-regexp "^1.0.2" 439 | has-ansi "^2.0.0" 440 | strip-ansi "^3.0.0" 441 | supports-color "^2.0.0" 442 | 443 | chokidar@^1.4.3: 444 | version "1.6.1" 445 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 446 | dependencies: 447 | anymatch "^1.3.0" 448 | async-each "^1.0.0" 449 | glob-parent "^2.0.0" 450 | inherits "^2.0.1" 451 | is-binary-path "^1.0.0" 452 | is-glob "^2.0.0" 453 | path-is-absolute "^1.0.0" 454 | readdirp "^2.0.0" 455 | optionalDependencies: 456 | fsevents "^1.0.0" 457 | 458 | cipher-base@^1.0.0, cipher-base@^1.0.1: 459 | version "1.0.3" 460 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.3.tgz#eeabf194419ce900da3018c207d212f2a6df0a07" 461 | dependencies: 462 | inherits "^2.0.1" 463 | 464 | circular-json@^0.3.0: 465 | version "0.3.1" 466 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 467 | 468 | clap@^1.0.9: 469 | version "1.1.1" 470 | resolved "https://registry.yarnpkg.com/clap/-/clap-1.1.1.tgz#a8a93e0bfb7581ac199c4f001a5525a724ce696d" 471 | dependencies: 472 | chalk "^1.1.3" 473 | 474 | cli-cursor@^1.0.1: 475 | version "1.0.2" 476 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 477 | dependencies: 478 | restore-cursor "^1.0.1" 479 | 480 | cli-width@^2.0.0: 481 | version "2.1.0" 482 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 483 | 484 | cliui@^2.1.0: 485 | version "2.1.0" 486 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 487 | dependencies: 488 | center-align "^0.1.1" 489 | right-align "^0.1.1" 490 | wordwrap "0.0.2" 491 | 492 | cliui@^3.0.3, cliui@^3.2.0: 493 | version "3.2.0" 494 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 495 | dependencies: 496 | string-width "^1.0.1" 497 | strip-ansi "^3.0.1" 498 | wrap-ansi "^2.0.0" 499 | 500 | clone@^1.0.2: 501 | version "1.0.2" 502 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" 503 | 504 | co@^4.6.0: 505 | version "4.6.0" 506 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 507 | 508 | coa@~1.0.1: 509 | version "1.0.1" 510 | resolved "https://registry.yarnpkg.com/coa/-/coa-1.0.1.tgz#7f959346cfc8719e3f7233cd6852854a7c67d8a3" 511 | dependencies: 512 | q "^1.1.2" 513 | 514 | code-point-at@^1.0.0: 515 | version "1.1.0" 516 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 517 | 518 | color-convert@^1.3.0: 519 | version "1.8.2" 520 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.8.2.tgz#be868184d7c8631766d54e7078e2672d7c7e3339" 521 | dependencies: 522 | color-name "^1.1.1" 523 | 524 | color-name@^1.0.0, color-name@^1.1.1: 525 | version "1.1.1" 526 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.1.tgz#4b1415304cf50028ea81643643bd82ea05803689" 527 | 528 | color-string@^0.3.0: 529 | version "0.3.0" 530 | resolved "https://registry.yarnpkg.com/color-string/-/color-string-0.3.0.tgz#27d46fb67025c5c2fa25993bfbf579e47841b991" 531 | dependencies: 532 | color-name "^1.0.0" 533 | 534 | color@^0.11.0: 535 | version "0.11.4" 536 | resolved "https://registry.yarnpkg.com/color/-/color-0.11.4.tgz#6d7b5c74fb65e841cd48792ad1ed5e07b904d764" 537 | dependencies: 538 | clone "^1.0.2" 539 | color-convert "^1.3.0" 540 | color-string "^0.3.0" 541 | 542 | colormin@^1.0.5: 543 | version "1.1.2" 544 | resolved "https://registry.yarnpkg.com/colormin/-/colormin-1.1.2.tgz#ea2f7420a72b96881a38aae59ec124a6f7298133" 545 | dependencies: 546 | color "^0.11.0" 547 | css-color-names "0.0.4" 548 | has "^1.0.1" 549 | 550 | colors@~1.1.2: 551 | version "1.1.2" 552 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" 553 | 554 | combined-stream@^1.0.5, combined-stream@~1.0.5: 555 | version "1.0.5" 556 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 557 | dependencies: 558 | delayed-stream "~1.0.0" 559 | 560 | commander@^2.9.0: 561 | version "2.9.0" 562 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 563 | dependencies: 564 | graceful-readlink ">= 1.0.0" 565 | 566 | compressible@~2.0.8: 567 | version "2.0.9" 568 | resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.9.tgz#6daab4e2b599c2770dd9e21e7a891b1c5a755425" 569 | dependencies: 570 | mime-db ">= 1.24.0 < 2" 571 | 572 | compression@^1.5.2: 573 | version "1.6.2" 574 | resolved "https://registry.yarnpkg.com/compression/-/compression-1.6.2.tgz#cceb121ecc9d09c52d7ad0c3350ea93ddd402bc3" 575 | dependencies: 576 | accepts "~1.3.3" 577 | bytes "2.3.0" 578 | compressible "~2.0.8" 579 | debug "~2.2.0" 580 | on-headers "~1.0.1" 581 | vary "~1.1.0" 582 | 583 | concat-map@0.0.1: 584 | version "0.0.1" 585 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 586 | 587 | concat-stream@^1.4.6: 588 | version "1.5.2" 589 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.2.tgz#708978624d856af41a5a741defdd261da752c266" 590 | dependencies: 591 | inherits "~2.0.1" 592 | readable-stream "~2.0.0" 593 | typedarray "~0.0.5" 594 | 595 | connect-history-api-fallback@1.1.0: 596 | version "1.1.0" 597 | resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.1.0.tgz#5a6dee82d9a648cb29131d3f9dd400ffa4593742" 598 | 599 | console-browserify@^1.1.0: 600 | version "1.1.0" 601 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 602 | dependencies: 603 | date-now "^0.1.4" 604 | 605 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 606 | version "1.1.0" 607 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 608 | 609 | constants-browserify@^1.0.0: 610 | version "1.0.0" 611 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 612 | 613 | contains-path@^0.1.0: 614 | version "0.1.0" 615 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 616 | 617 | content-disposition@0.5.1: 618 | version "0.5.1" 619 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.1.tgz#87476c6a67c8daa87e32e87616df883ba7fb071b" 620 | 621 | content-type@~1.0.2: 622 | version "1.0.2" 623 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.2.tgz#b7d113aee7a8dd27bd21133c4dc2529df1721eed" 624 | 625 | cookie-signature@1.0.6: 626 | version "1.0.6" 627 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 628 | 629 | cookie@0.3.1: 630 | version "0.3.1" 631 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" 632 | 633 | core-js@^2.4.0: 634 | version "2.4.1" 635 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 636 | 637 | core-util-is@~1.0.0: 638 | version "1.0.2" 639 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 640 | 641 | create-ecdh@^4.0.0: 642 | version "4.0.0" 643 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" 644 | dependencies: 645 | bn.js "^4.1.0" 646 | elliptic "^6.0.0" 647 | 648 | create-hash@^1.1.0, create-hash@^1.1.1: 649 | version "1.1.2" 650 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.2.tgz#51210062d7bb7479f6c65bb41a92208b1d61abad" 651 | dependencies: 652 | cipher-base "^1.0.1" 653 | inherits "^2.0.1" 654 | ripemd160 "^1.0.0" 655 | sha.js "^2.3.6" 656 | 657 | create-hmac@^1.1.0, create-hmac@^1.1.2: 658 | version "1.1.4" 659 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.4.tgz#d3fb4ba253eb8b3f56e39ea2fbcb8af747bd3170" 660 | dependencies: 661 | create-hash "^1.1.0" 662 | inherits "^2.0.1" 663 | 664 | cryptiles@2.x.x: 665 | version "2.0.5" 666 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 667 | dependencies: 668 | boom "2.x.x" 669 | 670 | crypto-browserify@^3.11.0: 671 | version "3.11.0" 672 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.0.tgz#3652a0906ab9b2a7e0c3ce66a408e957a2485522" 673 | dependencies: 674 | browserify-cipher "^1.0.0" 675 | browserify-sign "^4.0.0" 676 | create-ecdh "^4.0.0" 677 | create-hash "^1.1.0" 678 | create-hmac "^1.1.0" 679 | diffie-hellman "^5.0.0" 680 | inherits "^2.0.1" 681 | pbkdf2 "^3.0.3" 682 | public-encrypt "^4.0.0" 683 | randombytes "^2.0.0" 684 | 685 | css-color-names@0.0.4: 686 | version "0.0.4" 687 | resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0" 688 | 689 | css-loader@^0.26.0: 690 | version "0.26.0" 691 | resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-0.26.0.tgz#160d378f5b8e0fd4ff6daf4f3580e2219b33025f" 692 | dependencies: 693 | babel-code-frame "^6.11.0" 694 | css-selector-tokenizer "^0.7.0" 695 | cssnano ">=2.6.1 <4" 696 | loader-utils "~0.2.2" 697 | lodash.camelcase "^4.3.0" 698 | object-assign "^4.0.1" 699 | postcss "^5.0.6" 700 | postcss-modules-extract-imports "^1.0.0" 701 | postcss-modules-local-by-default "^1.0.1" 702 | postcss-modules-scope "^1.0.0" 703 | postcss-modules-values "^1.1.0" 704 | source-list-map "^0.1.4" 705 | 706 | css-selector-tokenizer@^0.6.0: 707 | version "0.6.0" 708 | resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.6.0.tgz#6445f582c7930d241dcc5007a43d6fcb8f073152" 709 | dependencies: 710 | cssesc "^0.1.0" 711 | fastparse "^1.1.1" 712 | regexpu-core "^1.0.0" 713 | 714 | css-selector-tokenizer@^0.7.0: 715 | version "0.7.0" 716 | resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.0.tgz#e6988474ae8c953477bf5e7efecfceccd9cf4c86" 717 | dependencies: 718 | cssesc "^0.1.0" 719 | fastparse "^1.1.1" 720 | regexpu-core "^1.0.0" 721 | 722 | cssesc@^0.1.0: 723 | version "0.1.0" 724 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-0.1.0.tgz#c814903e45623371a0477b40109aaafbeeaddbb4" 725 | 726 | "cssnano@>=2.6.1 <4": 727 | version "3.8.1" 728 | resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-3.8.1.tgz#008a482148ee948cf0af2ee6e44bd97c53f886ec" 729 | dependencies: 730 | autoprefixer "^6.3.1" 731 | decamelize "^1.1.2" 732 | defined "^1.0.0" 733 | has "^1.0.1" 734 | object-assign "^4.0.1" 735 | postcss "^5.0.14" 736 | postcss-calc "^5.2.0" 737 | postcss-colormin "^2.1.8" 738 | postcss-convert-values "^2.3.4" 739 | postcss-discard-comments "^2.0.4" 740 | postcss-discard-duplicates "^2.0.1" 741 | postcss-discard-empty "^2.0.1" 742 | postcss-discard-overridden "^0.1.1" 743 | postcss-discard-unused "^2.2.1" 744 | postcss-filter-plugins "^2.0.0" 745 | postcss-merge-idents "^2.1.5" 746 | postcss-merge-longhand "^2.0.1" 747 | postcss-merge-rules "^2.0.3" 748 | postcss-minify-font-values "^1.0.2" 749 | postcss-minify-gradients "^1.0.1" 750 | postcss-minify-params "^1.0.4" 751 | postcss-minify-selectors "^2.0.4" 752 | postcss-normalize-charset "^1.1.0" 753 | postcss-normalize-url "^3.0.7" 754 | postcss-ordered-values "^2.1.0" 755 | postcss-reduce-idents "^2.2.2" 756 | postcss-reduce-initial "^1.0.0" 757 | postcss-reduce-transforms "^1.0.3" 758 | postcss-svgo "^2.1.1" 759 | postcss-unique-selectors "^2.0.2" 760 | postcss-value-parser "^3.2.3" 761 | postcss-zindex "^2.0.1" 762 | 763 | csso@~2.2.1: 764 | version "2.2.1" 765 | resolved "https://registry.yarnpkg.com/csso/-/csso-2.2.1.tgz#51fbb5347e50e81e6ed51668a48490ae6fe2afe2" 766 | dependencies: 767 | clap "^1.0.9" 768 | source-map "^0.5.3" 769 | 770 | d@^0.1.1, d@~0.1.1: 771 | version "0.1.1" 772 | resolved "https://registry.yarnpkg.com/d/-/d-0.1.1.tgz#da184c535d18d8ee7ba2aa229b914009fae11309" 773 | dependencies: 774 | es5-ext "~0.10.2" 775 | 776 | dashdash@^1.12.0: 777 | version "1.14.1" 778 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 779 | dependencies: 780 | assert-plus "^1.0.0" 781 | 782 | date-now@^0.1.4: 783 | version "0.1.4" 784 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 785 | 786 | debug@^2.1.1, debug@^2.2.0: 787 | version "2.3.3" 788 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.3.3.tgz#40c453e67e6e13c901ddec317af8986cda9eff8c" 789 | dependencies: 790 | ms "0.7.2" 791 | 792 | debug@~2.2.0, debug@2.2.0: 793 | version "2.2.0" 794 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 795 | dependencies: 796 | ms "0.7.1" 797 | 798 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: 799 | version "1.2.0" 800 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 801 | 802 | deep-extend@~0.4.0: 803 | version "0.4.1" 804 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 805 | 806 | deep-is@~0.1.3: 807 | version "0.1.3" 808 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 809 | 810 | defined@^1.0.0: 811 | version "1.0.0" 812 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 813 | 814 | del@^2.0.2: 815 | version "2.2.2" 816 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 817 | dependencies: 818 | globby "^5.0.0" 819 | is-path-cwd "^1.0.0" 820 | is-path-in-cwd "^1.0.0" 821 | object-assign "^4.0.1" 822 | pify "^2.0.0" 823 | pinkie-promise "^2.0.0" 824 | rimraf "^2.2.8" 825 | 826 | delayed-stream@~1.0.0: 827 | version "1.0.0" 828 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 829 | 830 | delegates@^1.0.0: 831 | version "1.0.0" 832 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 833 | 834 | depd@~1.1.0: 835 | version "1.1.0" 836 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3" 837 | 838 | des.js@^1.0.0: 839 | version "1.0.0" 840 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 841 | dependencies: 842 | inherits "^2.0.1" 843 | minimalistic-assert "^1.0.0" 844 | 845 | destroy@~1.0.4: 846 | version "1.0.4" 847 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 848 | 849 | diffie-hellman@^5.0.0: 850 | version "5.0.2" 851 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" 852 | dependencies: 853 | bn.js "^4.1.0" 854 | miller-rabin "^4.0.0" 855 | randombytes "^2.0.0" 856 | 857 | doctrine@^1.2.2, doctrine@1.5.0: 858 | version "1.5.0" 859 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 860 | dependencies: 861 | esutils "^2.0.2" 862 | isarray "^1.0.0" 863 | 864 | domain-browser@^1.1.1: 865 | version "1.1.7" 866 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" 867 | 868 | ecc-jsbn@~0.1.1: 869 | version "0.1.1" 870 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 871 | dependencies: 872 | jsbn "~0.1.0" 873 | 874 | ee-first@1.1.1: 875 | version "1.1.1" 876 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 877 | 878 | elliptic@^6.0.0: 879 | version "6.3.2" 880 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.3.2.tgz#e4c81e0829cf0a65ab70e998b8232723b5c1bc48" 881 | dependencies: 882 | bn.js "^4.4.0" 883 | brorand "^1.0.1" 884 | hash.js "^1.0.0" 885 | inherits "^2.0.1" 886 | 887 | emojis-list@^2.0.0: 888 | version "2.1.0" 889 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 890 | 891 | encodeurl@~1.0.1: 892 | version "1.0.1" 893 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" 894 | 895 | enhanced-resolve@^2.2.0: 896 | version "2.3.0" 897 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-2.3.0.tgz#a115c32504b6302e85a76269d7a57ccdd962e359" 898 | dependencies: 899 | graceful-fs "^4.1.2" 900 | memory-fs "^0.3.0" 901 | object-assign "^4.0.1" 902 | tapable "^0.2.3" 903 | 904 | errno@^0.1.3: 905 | version "0.1.4" 906 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 907 | dependencies: 908 | prr "~0.0.0" 909 | 910 | error-ex@^1.2.0: 911 | version "1.3.0" 912 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.0.tgz#e67b43f3e82c96ea3a584ffee0b9fc3325d802d9" 913 | dependencies: 914 | is-arrayish "^0.2.1" 915 | 916 | es5-ext@^0.10.7, es5-ext@^0.10.8, es5-ext@~0.10.11, es5-ext@~0.10.2, es5-ext@~0.10.7: 917 | version "0.10.12" 918 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.12.tgz#aa84641d4db76b62abba5e45fd805ecbab140047" 919 | dependencies: 920 | es6-iterator "2" 921 | es6-symbol "~3.1" 922 | 923 | es6-iterator@2: 924 | version "2.0.0" 925 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.0.tgz#bd968567d61635e33c0b80727613c9cb4b096bac" 926 | dependencies: 927 | d "^0.1.1" 928 | es5-ext "^0.10.7" 929 | es6-symbol "3" 930 | 931 | es6-map@^0.1.3: 932 | version "0.1.4" 933 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.4.tgz#a34b147be224773a4d7da8072794cefa3632b897" 934 | dependencies: 935 | d "~0.1.1" 936 | es5-ext "~0.10.11" 937 | es6-iterator "2" 938 | es6-set "~0.1.3" 939 | es6-symbol "~3.1.0" 940 | event-emitter "~0.3.4" 941 | 942 | es6-set@~0.1.3: 943 | version "0.1.4" 944 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.4.tgz#9516b6761c2964b92ff479456233a247dc707ce8" 945 | dependencies: 946 | d "~0.1.1" 947 | es5-ext "~0.10.11" 948 | es6-iterator "2" 949 | es6-symbol "3" 950 | event-emitter "~0.3.4" 951 | 952 | es6-symbol@~3.1, es6-symbol@~3.1.0, es6-symbol@3: 953 | version "3.1.0" 954 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.0.tgz#94481c655e7a7cad82eba832d97d5433496d7ffa" 955 | dependencies: 956 | d "~0.1.1" 957 | es5-ext "~0.10.11" 958 | 959 | es6-weak-map@^2.0.1: 960 | version "2.0.1" 961 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.1.tgz#0d2bbd8827eb5fb4ba8f97fbfea50d43db21ea81" 962 | dependencies: 963 | d "^0.1.1" 964 | es5-ext "^0.10.8" 965 | es6-iterator "2" 966 | es6-symbol "3" 967 | 968 | escape-html@~1.0.3: 969 | version "1.0.3" 970 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 971 | 972 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 973 | version "1.0.5" 974 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 975 | 976 | escope@^3.6.0: 977 | version "3.6.0" 978 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 979 | dependencies: 980 | es6-map "^0.1.3" 981 | es6-weak-map "^2.0.1" 982 | esrecurse "^4.1.0" 983 | estraverse "^4.1.1" 984 | 985 | eslint-config-airbnb-base@^10.0.1: 986 | version "10.0.1" 987 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-10.0.1.tgz#f17d4e52992c1d45d1b7713efbcd5ecd0e7e0506" 988 | 989 | eslint-import-resolver-node@^0.2.0: 990 | version "0.2.3" 991 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.2.3.tgz#5add8106e8c928db2cba232bcd9efa846e3da16c" 992 | dependencies: 993 | debug "^2.2.0" 994 | object-assign "^4.0.1" 995 | resolve "^1.1.6" 996 | 997 | eslint-module-utils@^2.0.0: 998 | version "2.0.0" 999 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.0.0.tgz#a6f8c21d901358759cdc35dbac1982ae1ee58bce" 1000 | dependencies: 1001 | debug "2.2.0" 1002 | pkg-dir "^1.0.0" 1003 | 1004 | eslint-plugin-import@^2.2.0: 1005 | version "2.2.0" 1006 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.2.0.tgz#72ba306fad305d67c4816348a4699a4229ac8b4e" 1007 | dependencies: 1008 | builtin-modules "^1.1.1" 1009 | contains-path "^0.1.0" 1010 | debug "^2.2.0" 1011 | doctrine "1.5.0" 1012 | eslint-import-resolver-node "^0.2.0" 1013 | eslint-module-utils "^2.0.0" 1014 | has "^1.0.1" 1015 | lodash.cond "^4.3.0" 1016 | minimatch "^3.0.3" 1017 | pkg-up "^1.0.0" 1018 | 1019 | eslint@^3.11.1: 1020 | version "3.11.1" 1021 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.11.1.tgz#408be581041385cba947cd8d1cd2227782b55dbf" 1022 | dependencies: 1023 | babel-code-frame "^6.16.0" 1024 | chalk "^1.1.3" 1025 | concat-stream "^1.4.6" 1026 | debug "^2.1.1" 1027 | doctrine "^1.2.2" 1028 | escope "^3.6.0" 1029 | espree "^3.3.1" 1030 | estraverse "^4.2.0" 1031 | esutils "^2.0.2" 1032 | file-entry-cache "^2.0.0" 1033 | glob "^7.0.3" 1034 | globals "^9.2.0" 1035 | ignore "^3.2.0" 1036 | imurmurhash "^0.1.4" 1037 | inquirer "^0.12.0" 1038 | is-my-json-valid "^2.10.0" 1039 | is-resolvable "^1.0.0" 1040 | js-yaml "^3.5.1" 1041 | json-stable-stringify "^1.0.0" 1042 | levn "^0.3.0" 1043 | lodash "^4.0.0" 1044 | mkdirp "^0.5.0" 1045 | natural-compare "^1.4.0" 1046 | optionator "^0.8.2" 1047 | path-is-inside "^1.0.1" 1048 | pluralize "^1.2.1" 1049 | progress "^1.1.8" 1050 | require-uncached "^1.0.2" 1051 | shelljs "^0.7.5" 1052 | strip-bom "^3.0.0" 1053 | strip-json-comments "~1.0.1" 1054 | table "^3.7.8" 1055 | text-table "~0.2.0" 1056 | user-home "^2.0.0" 1057 | 1058 | espree@^3.3.1: 1059 | version "3.3.2" 1060 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.3.2.tgz#dbf3fadeb4ecb4d4778303e50103b3d36c88b89c" 1061 | dependencies: 1062 | acorn "^4.0.1" 1063 | acorn-jsx "^3.0.0" 1064 | 1065 | esprima@^2.6.0: 1066 | version "2.7.3" 1067 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1068 | 1069 | esrecurse@^4.1.0: 1070 | version "4.1.0" 1071 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 1072 | dependencies: 1073 | estraverse "~4.1.0" 1074 | object-assign "^4.0.1" 1075 | 1076 | estraverse@^4.1.1, estraverse@^4.2.0: 1077 | version "4.2.0" 1078 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1079 | 1080 | estraverse@~4.1.0: 1081 | version "4.1.1" 1082 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 1083 | 1084 | esutils@^2.0.2: 1085 | version "2.0.2" 1086 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1087 | 1088 | etag@~1.7.0: 1089 | version "1.7.0" 1090 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.7.0.tgz#03d30b5f67dd6e632d2945d30d6652731a34d5d8" 1091 | 1092 | event-emitter@~0.3.4: 1093 | version "0.3.4" 1094 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.4.tgz#8d63ddfb4cfe1fae3b32ca265c4c720222080bb5" 1095 | dependencies: 1096 | d "~0.1.1" 1097 | es5-ext "~0.10.7" 1098 | 1099 | eventemitter3@1.x.x: 1100 | version "1.2.0" 1101 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508" 1102 | 1103 | events@^1.0.0: 1104 | version "1.1.1" 1105 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 1106 | 1107 | eventsource@~0.1.6: 1108 | version "0.1.6" 1109 | resolved "https://registry.yarnpkg.com/eventsource/-/eventsource-0.1.6.tgz#0acede849ed7dd1ccc32c811bb11b944d4f29232" 1110 | dependencies: 1111 | original ">=0.0.5" 1112 | 1113 | evp_bytestokey@^1.0.0: 1114 | version "1.0.0" 1115 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz#497b66ad9fef65cd7c08a6180824ba1476b66e53" 1116 | dependencies: 1117 | create-hash "^1.1.1" 1118 | 1119 | exit-hook@^1.0.0: 1120 | version "1.1.1" 1121 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1122 | 1123 | expand-brackets@^0.1.4: 1124 | version "0.1.5" 1125 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1126 | dependencies: 1127 | is-posix-bracket "^0.1.0" 1128 | 1129 | expand-range@^1.8.1: 1130 | version "1.8.2" 1131 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1132 | dependencies: 1133 | fill-range "^2.1.0" 1134 | 1135 | express@^4.13.3: 1136 | version "4.14.0" 1137 | resolved "https://registry.yarnpkg.com/express/-/express-4.14.0.tgz#c1ee3f42cdc891fb3dc650a8922d51ec847d0d66" 1138 | dependencies: 1139 | accepts "~1.3.3" 1140 | array-flatten "1.1.1" 1141 | content-disposition "0.5.1" 1142 | content-type "~1.0.2" 1143 | cookie "0.3.1" 1144 | cookie-signature "1.0.6" 1145 | debug "~2.2.0" 1146 | depd "~1.1.0" 1147 | encodeurl "~1.0.1" 1148 | escape-html "~1.0.3" 1149 | etag "~1.7.0" 1150 | finalhandler "0.5.0" 1151 | fresh "0.3.0" 1152 | merge-descriptors "1.0.1" 1153 | methods "~1.1.2" 1154 | on-finished "~2.3.0" 1155 | parseurl "~1.3.1" 1156 | path-to-regexp "0.1.7" 1157 | proxy-addr "~1.1.2" 1158 | qs "6.2.0" 1159 | range-parser "~1.2.0" 1160 | send "0.14.1" 1161 | serve-static "~1.11.1" 1162 | type-is "~1.6.13" 1163 | utils-merge "1.0.0" 1164 | vary "~1.1.0" 1165 | 1166 | extend@~3.0.0: 1167 | version "3.0.0" 1168 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 1169 | 1170 | extglob@^0.3.1: 1171 | version "0.3.2" 1172 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1173 | dependencies: 1174 | is-extglob "^1.0.0" 1175 | 1176 | extract-text-webpack-plugin@^2.0.0-beta.4: 1177 | version "2.0.0-beta.4" 1178 | resolved "https://registry.yarnpkg.com/extract-text-webpack-plugin/-/extract-text-webpack-plugin-2.0.0-beta.4.tgz#d32393069e7d90c8318d48392302618b56bc1ba9" 1179 | dependencies: 1180 | async "^1.5.0" 1181 | loader-utils "^0.2.3" 1182 | webpack-sources "^0.1.0" 1183 | 1184 | extsprintf@1.0.2: 1185 | version "1.0.2" 1186 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1187 | 1188 | fast-levenshtein@~2.0.4: 1189 | version "2.0.5" 1190 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.5.tgz#bd33145744519ab1c36c3ee9f31f08e9079b67f2" 1191 | 1192 | fastparse@^1.1.1: 1193 | version "1.1.1" 1194 | resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.1.tgz#d1e2643b38a94d7583b479060e6c4affc94071f8" 1195 | 1196 | faye-websocket@^0.10.0: 1197 | version "0.10.0" 1198 | resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4" 1199 | dependencies: 1200 | websocket-driver ">=0.5.1" 1201 | 1202 | faye-websocket@~0.11.0: 1203 | version "0.11.0" 1204 | resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.0.tgz#d9ccf0e789e7db725d74bc4877d23aa42972ac50" 1205 | dependencies: 1206 | websocket-driver ">=0.5.1" 1207 | 1208 | figures@^1.3.5: 1209 | version "1.7.0" 1210 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1211 | dependencies: 1212 | escape-string-regexp "^1.0.5" 1213 | object-assign "^4.1.0" 1214 | 1215 | file-entry-cache@^2.0.0: 1216 | version "2.0.0" 1217 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1218 | dependencies: 1219 | flat-cache "^1.2.1" 1220 | object-assign "^4.0.1" 1221 | 1222 | filename-regex@^2.0.0: 1223 | version "2.0.0" 1224 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 1225 | 1226 | fill-range@^2.1.0: 1227 | version "2.2.3" 1228 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1229 | dependencies: 1230 | is-number "^2.1.0" 1231 | isobject "^2.0.0" 1232 | randomatic "^1.1.3" 1233 | repeat-element "^1.1.2" 1234 | repeat-string "^1.5.2" 1235 | 1236 | finalhandler@0.5.0: 1237 | version "0.5.0" 1238 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-0.5.0.tgz#e9508abece9b6dba871a6942a1d7911b91911ac7" 1239 | dependencies: 1240 | debug "~2.2.0" 1241 | escape-html "~1.0.3" 1242 | on-finished "~2.3.0" 1243 | statuses "~1.3.0" 1244 | unpipe "~1.0.0" 1245 | 1246 | find-up@^1.0.0: 1247 | version "1.1.2" 1248 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1249 | dependencies: 1250 | path-exists "^2.0.0" 1251 | pinkie-promise "^2.0.0" 1252 | 1253 | flat-cache@^1.2.1: 1254 | version "1.2.1" 1255 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.1.tgz#6c837d6225a7de5659323740b36d5361f71691ff" 1256 | dependencies: 1257 | circular-json "^0.3.0" 1258 | del "^2.0.2" 1259 | graceful-fs "^4.1.2" 1260 | write "^0.2.1" 1261 | 1262 | flatten@^1.0.2: 1263 | version "1.0.2" 1264 | resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.2.tgz#dae46a9d78fbe25292258cc1e780a41d95c03782" 1265 | 1266 | for-in@^0.1.5: 1267 | version "0.1.6" 1268 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8" 1269 | 1270 | for-own@^0.1.4: 1271 | version "0.1.4" 1272 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072" 1273 | dependencies: 1274 | for-in "^0.1.5" 1275 | 1276 | forever-agent@~0.6.1: 1277 | version "0.6.1" 1278 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1279 | 1280 | form-data@~2.1.1: 1281 | version "2.1.2" 1282 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 1283 | dependencies: 1284 | asynckit "^0.4.0" 1285 | combined-stream "^1.0.5" 1286 | mime-types "^2.1.12" 1287 | 1288 | forwarded@~0.1.0: 1289 | version "0.1.0" 1290 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.0.tgz#19ef9874c4ae1c297bcf078fde63a09b66a84363" 1291 | 1292 | fresh@0.3.0: 1293 | version "0.3.0" 1294 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.3.0.tgz#651f838e22424e7566de161d8358caa199f83d4f" 1295 | 1296 | fs.realpath@^1.0.0: 1297 | version "1.0.0" 1298 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1299 | 1300 | fsevents@^1.0.0: 1301 | version "1.0.15" 1302 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.0.15.tgz#fa63f590f3c2ad91275e4972a6cea545fb0aae44" 1303 | dependencies: 1304 | nan "^2.3.0" 1305 | node-pre-gyp "^0.6.29" 1306 | 1307 | fstream-ignore@~1.0.5: 1308 | version "1.0.5" 1309 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1310 | dependencies: 1311 | fstream "^1.0.0" 1312 | inherits "2" 1313 | minimatch "^3.0.0" 1314 | 1315 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10: 1316 | version "1.0.10" 1317 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822" 1318 | dependencies: 1319 | graceful-fs "^4.1.2" 1320 | inherits "~2.0.0" 1321 | mkdirp ">=0.5 0" 1322 | rimraf "2" 1323 | 1324 | function-bind@^1.0.2: 1325 | version "1.1.0" 1326 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1327 | 1328 | gauge@~2.7.1: 1329 | version "2.7.1" 1330 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.1.tgz#388473894fe8be5e13ffcdb8b93e4ed0616428c7" 1331 | dependencies: 1332 | aproba "^1.0.3" 1333 | console-control-strings "^1.0.0" 1334 | has-color "^0.1.7" 1335 | has-unicode "^2.0.0" 1336 | object-assign "^4.1.0" 1337 | signal-exit "^3.0.0" 1338 | string-width "^1.0.1" 1339 | strip-ansi "^3.0.1" 1340 | wide-align "^1.1.0" 1341 | 1342 | generate-function@^2.0.0: 1343 | version "2.0.0" 1344 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1345 | 1346 | generate-object-property@^1.1.0: 1347 | version "1.2.0" 1348 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1349 | dependencies: 1350 | is-property "^1.0.0" 1351 | 1352 | get-caller-file@^1.0.1: 1353 | version "1.0.2" 1354 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1355 | 1356 | getpass@^0.1.1: 1357 | version "0.1.6" 1358 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 1359 | dependencies: 1360 | assert-plus "^1.0.0" 1361 | 1362 | glob-base@^0.3.0: 1363 | version "0.3.0" 1364 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1365 | dependencies: 1366 | glob-parent "^2.0.0" 1367 | is-glob "^2.0.0" 1368 | 1369 | glob-parent@^2.0.0: 1370 | version "2.0.0" 1371 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1372 | dependencies: 1373 | is-glob "^2.0.0" 1374 | 1375 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5: 1376 | version "7.1.1" 1377 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1378 | dependencies: 1379 | fs.realpath "^1.0.0" 1380 | inflight "^1.0.4" 1381 | inherits "2" 1382 | minimatch "^3.0.2" 1383 | once "^1.3.0" 1384 | path-is-absolute "^1.0.0" 1385 | 1386 | globals@^9.0.0, globals@^9.2.0: 1387 | version "9.14.0" 1388 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.14.0.tgz#8859936af0038741263053b39d0e76ca241e4034" 1389 | 1390 | globby@^5.0.0: 1391 | version "5.0.0" 1392 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1393 | dependencies: 1394 | array-union "^1.0.1" 1395 | arrify "^1.0.0" 1396 | glob "^7.0.3" 1397 | object-assign "^4.0.1" 1398 | pify "^2.0.0" 1399 | pinkie-promise "^2.0.0" 1400 | 1401 | graceful-fs@^4.1.2: 1402 | version "4.1.11" 1403 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1404 | 1405 | "graceful-readlink@>= 1.0.0": 1406 | version "1.0.1" 1407 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1408 | 1409 | har-validator@~2.0.6: 1410 | version "2.0.6" 1411 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 1412 | dependencies: 1413 | chalk "^1.1.1" 1414 | commander "^2.9.0" 1415 | is-my-json-valid "^2.12.4" 1416 | pinkie-promise "^2.0.0" 1417 | 1418 | has-ansi@^2.0.0: 1419 | version "2.0.0" 1420 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1421 | dependencies: 1422 | ansi-regex "^2.0.0" 1423 | 1424 | has-color@^0.1.7: 1425 | version "0.1.7" 1426 | resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f" 1427 | 1428 | has-flag@^1.0.0: 1429 | version "1.0.0" 1430 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1431 | 1432 | has-unicode@^2.0.0: 1433 | version "2.0.1" 1434 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1435 | 1436 | has@^1.0.1: 1437 | version "1.0.1" 1438 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1439 | dependencies: 1440 | function-bind "^1.0.2" 1441 | 1442 | hash.js@^1.0.0: 1443 | version "1.0.3" 1444 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.0.3.tgz#1332ff00156c0a0ffdd8236013d07b77a0451573" 1445 | dependencies: 1446 | inherits "^2.0.1" 1447 | 1448 | hawk@~3.1.3: 1449 | version "3.1.3" 1450 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1451 | dependencies: 1452 | boom "2.x.x" 1453 | cryptiles "2.x.x" 1454 | hoek "2.x.x" 1455 | sntp "1.x.x" 1456 | 1457 | hoek@2.x.x: 1458 | version "2.16.3" 1459 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1460 | 1461 | hosted-git-info@^2.1.4: 1462 | version "2.1.5" 1463 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.1.5.tgz#0ba81d90da2e25ab34a332e6ec77936e1598118b" 1464 | 1465 | html-comment-regex@^1.1.0: 1466 | version "1.1.1" 1467 | resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.1.tgz#668b93776eaae55ebde8f3ad464b307a4963625e" 1468 | 1469 | http-errors@~1.5.0: 1470 | version "1.5.1" 1471 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.5.1.tgz#788c0d2c1de2c81b9e6e8c01843b6b97eb920750" 1472 | dependencies: 1473 | inherits "2.0.3" 1474 | setprototypeof "1.0.2" 1475 | statuses ">= 1.3.1 < 2" 1476 | 1477 | http-proxy-middleware@~0.9.1: 1478 | version "0.9.1" 1479 | resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.9.1.tgz#f068d8f4b6faf96cf57712f16a5e6eb50731549a" 1480 | dependencies: 1481 | http-proxy "^1.12.0" 1482 | is-glob "^2.0.1" 1483 | lodash "^3.10.1" 1484 | micromatch "^2.3.7" 1485 | 1486 | http-proxy@^1.12.0: 1487 | version "1.15.2" 1488 | resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.15.2.tgz#642fdcaffe52d3448d2bda3b0079e9409064da31" 1489 | dependencies: 1490 | eventemitter3 "1.x.x" 1491 | requires-port "1.x.x" 1492 | 1493 | http-signature@~1.1.0: 1494 | version "1.1.1" 1495 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1496 | dependencies: 1497 | assert-plus "^0.2.0" 1498 | jsprim "^1.2.2" 1499 | sshpk "^1.7.0" 1500 | 1501 | https-browserify@0.0.1: 1502 | version "0.0.1" 1503 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82" 1504 | 1505 | icss-replace-symbols@^1.0.2: 1506 | version "1.0.2" 1507 | resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.0.2.tgz#cb0b6054eb3af6edc9ab1d62d01933e2d4c8bfa5" 1508 | 1509 | ieee754@^1.1.4: 1510 | version "1.1.8" 1511 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 1512 | 1513 | ignore@^3.2.0: 1514 | version "3.2.0" 1515 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.0.tgz#8d88f03c3002a0ac52114db25d2c673b0bf1e435" 1516 | 1517 | imurmurhash@^0.1.4: 1518 | version "0.1.4" 1519 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1520 | 1521 | indexes-of@^1.0.1: 1522 | version "1.0.1" 1523 | resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" 1524 | 1525 | indexof@0.0.1: 1526 | version "0.0.1" 1527 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 1528 | 1529 | inflight@^1.0.4: 1530 | version "1.0.6" 1531 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1532 | dependencies: 1533 | once "^1.3.0" 1534 | wrappy "1" 1535 | 1536 | inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1, inherits@2, inherits@2.0.3: 1537 | version "2.0.3" 1538 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1539 | 1540 | inherits@2.0.1: 1541 | version "2.0.1" 1542 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1543 | 1544 | ini@~1.3.0: 1545 | version "1.3.4" 1546 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1547 | 1548 | inquirer@^0.12.0: 1549 | version "0.12.0" 1550 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 1551 | dependencies: 1552 | ansi-escapes "^1.1.0" 1553 | ansi-regex "^2.0.0" 1554 | chalk "^1.0.0" 1555 | cli-cursor "^1.0.1" 1556 | cli-width "^2.0.0" 1557 | figures "^1.3.5" 1558 | lodash "^4.3.0" 1559 | readline2 "^1.0.1" 1560 | run-async "^0.1.0" 1561 | rx-lite "^3.1.2" 1562 | string-width "^1.0.1" 1563 | strip-ansi "^3.0.0" 1564 | through "^2.3.6" 1565 | 1566 | interpret@^1.0.0: 1567 | version "1.0.1" 1568 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.1.tgz#d579fb7f693b858004947af39fa0db49f795602c" 1569 | 1570 | invariant@^2.2.0: 1571 | version "2.2.2" 1572 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1573 | dependencies: 1574 | loose-envify "^1.0.0" 1575 | 1576 | invert-kv@^1.0.0: 1577 | version "1.0.0" 1578 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1579 | 1580 | ipaddr.js@1.1.1: 1581 | version "1.1.1" 1582 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.1.1.tgz#c791d95f52b29c1247d5df80ada39b8a73647230" 1583 | 1584 | is-absolute-url@^2.0.0: 1585 | version "2.0.0" 1586 | resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.0.0.tgz#9c4b20b0e5c0cbef9a479a367ede6f991679f359" 1587 | 1588 | is-arrayish@^0.2.1: 1589 | version "0.2.1" 1590 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1591 | 1592 | is-binary-path@^1.0.0: 1593 | version "1.0.1" 1594 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1595 | dependencies: 1596 | binary-extensions "^1.0.0" 1597 | 1598 | is-buffer@^1.0.2: 1599 | version "1.1.4" 1600 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" 1601 | 1602 | is-builtin-module@^1.0.0: 1603 | version "1.0.0" 1604 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1605 | dependencies: 1606 | builtin-modules "^1.0.0" 1607 | 1608 | is-dotfile@^1.0.0: 1609 | version "1.0.2" 1610 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1611 | 1612 | is-equal-shallow@^0.1.3: 1613 | version "0.1.3" 1614 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1615 | dependencies: 1616 | is-primitive "^2.0.0" 1617 | 1618 | is-extendable@^0.1.1: 1619 | version "0.1.1" 1620 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1621 | 1622 | is-extglob@^1.0.0: 1623 | version "1.0.0" 1624 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1625 | 1626 | is-fullwidth-code-point@^1.0.0: 1627 | version "1.0.0" 1628 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1629 | dependencies: 1630 | number-is-nan "^1.0.0" 1631 | 1632 | is-fullwidth-code-point@^2.0.0: 1633 | version "2.0.0" 1634 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1635 | 1636 | is-glob@^2.0.0, is-glob@^2.0.1: 1637 | version "2.0.1" 1638 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1639 | dependencies: 1640 | is-extglob "^1.0.0" 1641 | 1642 | is-my-json-valid@^2.10.0, is-my-json-valid@^2.12.4: 1643 | version "2.15.0" 1644 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b" 1645 | dependencies: 1646 | generate-function "^2.0.0" 1647 | generate-object-property "^1.1.0" 1648 | jsonpointer "^4.0.0" 1649 | xtend "^4.0.0" 1650 | 1651 | is-number@^2.0.2, is-number@^2.1.0: 1652 | version "2.1.0" 1653 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1654 | dependencies: 1655 | kind-of "^3.0.2" 1656 | 1657 | is-path-cwd@^1.0.0: 1658 | version "1.0.0" 1659 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1660 | 1661 | is-path-in-cwd@^1.0.0: 1662 | version "1.0.0" 1663 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1664 | dependencies: 1665 | is-path-inside "^1.0.0" 1666 | 1667 | is-path-inside@^1.0.0: 1668 | version "1.0.0" 1669 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1670 | dependencies: 1671 | path-is-inside "^1.0.1" 1672 | 1673 | is-plain-obj@^1.0.0: 1674 | version "1.1.0" 1675 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 1676 | 1677 | is-posix-bracket@^0.1.0: 1678 | version "0.1.1" 1679 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1680 | 1681 | is-primitive@^2.0.0: 1682 | version "2.0.0" 1683 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1684 | 1685 | is-property@^1.0.0: 1686 | version "1.0.2" 1687 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1688 | 1689 | is-resolvable@^1.0.0: 1690 | version "1.0.0" 1691 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 1692 | dependencies: 1693 | tryit "^1.0.1" 1694 | 1695 | is-svg@^2.0.0: 1696 | version "2.1.0" 1697 | resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-2.1.0.tgz#cf61090da0d9efbcab8722deba6f032208dbb0e9" 1698 | dependencies: 1699 | html-comment-regex "^1.1.0" 1700 | 1701 | is-typedarray@~1.0.0: 1702 | version "1.0.0" 1703 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1704 | 1705 | is-utf8@^0.2.0: 1706 | version "0.2.1" 1707 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1708 | 1709 | isarray@^1.0.0, isarray@~1.0.0, isarray@1.0.0: 1710 | version "1.0.0" 1711 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1712 | 1713 | isobject@^2.0.0: 1714 | version "2.1.0" 1715 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1716 | dependencies: 1717 | isarray "1.0.0" 1718 | 1719 | isstream@~0.1.2: 1720 | version "0.1.2" 1721 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1722 | 1723 | jodid25519@^1.0.0: 1724 | version "1.0.2" 1725 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 1726 | dependencies: 1727 | jsbn "~0.1.0" 1728 | 1729 | js-base64@^2.1.9: 1730 | version "2.1.9" 1731 | resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.1.9.tgz#f0e80ae039a4bd654b5f281fc93f04a914a7fcce" 1732 | 1733 | js-tokens@^2.0.0: 1734 | version "2.0.0" 1735 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-2.0.0.tgz#79903f5563ee778cc1162e6dcf1a0027c97f9cb5" 1736 | 1737 | js-yaml@^3.5.1: 1738 | version "3.7.0" 1739 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80" 1740 | dependencies: 1741 | argparse "^1.0.7" 1742 | esprima "^2.6.0" 1743 | 1744 | js-yaml@~3.6.1: 1745 | version "3.6.1" 1746 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.6.1.tgz#6e5fe67d8b205ce4d22fad05b7781e8dadcc4b30" 1747 | dependencies: 1748 | argparse "^1.0.7" 1749 | esprima "^2.6.0" 1750 | 1751 | jsbn@~0.1.0: 1752 | version "0.1.0" 1753 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd" 1754 | 1755 | jsesc@~0.5.0: 1756 | version "0.5.0" 1757 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1758 | 1759 | json-loader@^0.5.4: 1760 | version "0.5.4" 1761 | resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.4.tgz#8baa1365a632f58a3c46d20175fc6002c96e37de" 1762 | 1763 | json-schema@0.2.3: 1764 | version "0.2.3" 1765 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1766 | 1767 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 1768 | version "1.0.1" 1769 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1770 | dependencies: 1771 | jsonify "~0.0.0" 1772 | 1773 | json-stringify-safe@~5.0.1: 1774 | version "5.0.1" 1775 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1776 | 1777 | json3@^3.3.2: 1778 | version "3.3.2" 1779 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 1780 | 1781 | json5@^0.5.0: 1782 | version "0.5.1" 1783 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1784 | 1785 | jsonify@~0.0.0: 1786 | version "0.0.0" 1787 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1788 | 1789 | jsonpointer@^4.0.0: 1790 | version "4.0.0" 1791 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.0.tgz#6661e161d2fc445f19f98430231343722e1fcbd5" 1792 | 1793 | jsprim@^1.2.2: 1794 | version "1.3.1" 1795 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252" 1796 | dependencies: 1797 | extsprintf "1.0.2" 1798 | json-schema "0.2.3" 1799 | verror "1.3.6" 1800 | 1801 | kind-of@^3.0.2: 1802 | version "3.0.4" 1803 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.0.4.tgz#7b8ecf18a4e17f8269d73b501c9f232c96887a74" 1804 | dependencies: 1805 | is-buffer "^1.0.2" 1806 | 1807 | lazy-cache@^1.0.3: 1808 | version "1.0.4" 1809 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1810 | 1811 | lcid@^1.0.0: 1812 | version "1.0.0" 1813 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1814 | dependencies: 1815 | invert-kv "^1.0.0" 1816 | 1817 | levn@^0.3.0, levn@~0.3.0: 1818 | version "0.3.0" 1819 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1820 | dependencies: 1821 | prelude-ls "~1.1.2" 1822 | type-check "~0.3.2" 1823 | 1824 | load-json-file@^1.0.0: 1825 | version "1.1.0" 1826 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1827 | dependencies: 1828 | graceful-fs "^4.1.2" 1829 | parse-json "^2.2.0" 1830 | pify "^2.0.0" 1831 | pinkie-promise "^2.0.0" 1832 | strip-bom "^2.0.0" 1833 | 1834 | loader-runner@^2.2.0: 1835 | version "2.2.0" 1836 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.2.0.tgz#824c1b699c4e7a2b6501b85902d5b862bf45b3fa" 1837 | 1838 | loader-utils@^0.2.16, loader-utils@^0.2.3, loader-utils@^0.2.7, loader-utils@~0.2.2: 1839 | version "0.2.16" 1840 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.16.tgz#f08632066ed8282835dff88dfb52704765adee6d" 1841 | dependencies: 1842 | big.js "^3.1.3" 1843 | emojis-list "^2.0.0" 1844 | json5 "^0.5.0" 1845 | object-assign "^4.0.1" 1846 | 1847 | lodash.camelcase@^4.3.0: 1848 | version "4.3.0" 1849 | resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" 1850 | 1851 | lodash.cond@^4.3.0: 1852 | version "4.5.2" 1853 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 1854 | 1855 | lodash.indexof@^4.0.5: 1856 | version "4.0.5" 1857 | resolved "https://registry.yarnpkg.com/lodash.indexof/-/lodash.indexof-4.0.5.tgz#53714adc2cddd6ed87638f893aa9b6c24e31ef3c" 1858 | 1859 | lodash.pickby@^4.6.0: 1860 | version "4.6.0" 1861 | resolved "https://registry.yarnpkg.com/lodash.pickby/-/lodash.pickby-4.6.0.tgz#7dea21d8c18d7703a27c704c15d3b84a67e33aff" 1862 | 1863 | lodash@^3.10.1: 1864 | version "3.10.1" 1865 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" 1866 | 1867 | lodash@^4.0.0, lodash@^4.14.0, lodash@^4.2.0, lodash@^4.3.0: 1868 | version "4.17.2" 1869 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.2.tgz#34a3055babe04ce42467b607d700072c7ff6bf42" 1870 | 1871 | longest@^1.0.1: 1872 | version "1.0.1" 1873 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1874 | 1875 | loose-envify@^1.0.0: 1876 | version "1.3.0" 1877 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.0.tgz#6b26248c42f6d4fa4b0d8542f78edfcde35642a8" 1878 | dependencies: 1879 | js-tokens "^2.0.0" 1880 | 1881 | macaddress@^0.2.8: 1882 | version "0.2.8" 1883 | resolved "https://registry.yarnpkg.com/macaddress/-/macaddress-0.2.8.tgz#5904dc537c39ec6dbefeae902327135fa8511f12" 1884 | 1885 | math-expression-evaluator@^1.2.14: 1886 | version "1.2.14" 1887 | resolved "https://registry.yarnpkg.com/math-expression-evaluator/-/math-expression-evaluator-1.2.14.tgz#39511771ed9602405fba9affff17eb4d2a3843ab" 1888 | dependencies: 1889 | lodash.indexof "^4.0.5" 1890 | 1891 | media-typer@0.3.0: 1892 | version "0.3.0" 1893 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 1894 | 1895 | memory-fs@^0.3.0, memory-fs@~0.3.0: 1896 | version "0.3.0" 1897 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.3.0.tgz#7bcc6b629e3a43e871d7e29aca6ae8a7f15cbb20" 1898 | dependencies: 1899 | errno "^0.1.3" 1900 | readable-stream "^2.0.1" 1901 | 1902 | merge-descriptors@1.0.1: 1903 | version "1.0.1" 1904 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 1905 | 1906 | methods@~1.1.2: 1907 | version "1.1.2" 1908 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 1909 | 1910 | micromatch@^2.1.5, micromatch@^2.3.7: 1911 | version "2.3.11" 1912 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1913 | dependencies: 1914 | arr-diff "^2.0.0" 1915 | array-unique "^0.2.1" 1916 | braces "^1.8.2" 1917 | expand-brackets "^0.1.4" 1918 | extglob "^0.3.1" 1919 | filename-regex "^2.0.0" 1920 | is-extglob "^1.0.0" 1921 | is-glob "^2.0.1" 1922 | kind-of "^3.0.2" 1923 | normalize-path "^2.0.1" 1924 | object.omit "^2.0.0" 1925 | parse-glob "^3.0.4" 1926 | regex-cache "^0.4.2" 1927 | 1928 | miller-rabin@^4.0.0: 1929 | version "4.0.0" 1930 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d" 1931 | dependencies: 1932 | bn.js "^4.0.0" 1933 | brorand "^1.0.1" 1934 | 1935 | "mime-db@>= 1.24.0 < 2", mime-db@~1.25.0: 1936 | version "1.25.0" 1937 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.25.0.tgz#c18dbd7c73a5dbf6f44a024dc0d165a1e7b1c392" 1938 | 1939 | mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.13, mime-types@~2.1.7: 1940 | version "2.1.13" 1941 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.13.tgz#e07aaa9c6c6b9a7ca3012c69003ad25a39e92a88" 1942 | dependencies: 1943 | mime-db "~1.25.0" 1944 | 1945 | mime@^1.3.4, mime@1.3.4: 1946 | version "1.3.4" 1947 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" 1948 | 1949 | minimalistic-assert@^1.0.0: 1950 | version "1.0.0" 1951 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" 1952 | 1953 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3: 1954 | version "3.0.3" 1955 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 1956 | dependencies: 1957 | brace-expansion "^1.0.0" 1958 | 1959 | minimist@^1.2.0: 1960 | version "1.2.0" 1961 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1962 | 1963 | minimist@0.0.8: 1964 | version "0.0.8" 1965 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1966 | 1967 | mkdirp@^0.5.0, mkdirp@^0.5.1, "mkdirp@>=0.5 0", mkdirp@~0.5.0, mkdirp@~0.5.1: 1968 | version "0.5.1" 1969 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1970 | dependencies: 1971 | minimist "0.0.8" 1972 | 1973 | ms@0.7.1: 1974 | version "0.7.1" 1975 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 1976 | 1977 | ms@0.7.2: 1978 | version "0.7.2" 1979 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 1980 | 1981 | mute-stream@0.0.5: 1982 | version "0.0.5" 1983 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 1984 | 1985 | nan@^2.3.0: 1986 | version "2.4.0" 1987 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.4.0.tgz#fb3c59d45fe4effe215f0b890f8adf6eb32d2232" 1988 | 1989 | natural-compare@^1.4.0: 1990 | version "1.4.0" 1991 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1992 | 1993 | negotiator@0.6.1: 1994 | version "0.6.1" 1995 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 1996 | 1997 | node-libs-browser@^1.0.0: 1998 | version "1.1.1" 1999 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-1.1.1.tgz#2a38243abedd7dffcd07a97c9aca5668975a6fea" 2000 | dependencies: 2001 | assert "^1.1.1" 2002 | browserify-zlib "^0.1.4" 2003 | buffer "^4.3.0" 2004 | console-browserify "^1.1.0" 2005 | constants-browserify "^1.0.0" 2006 | crypto-browserify "^3.11.0" 2007 | domain-browser "^1.1.1" 2008 | events "^1.0.0" 2009 | https-browserify "0.0.1" 2010 | os-browserify "^0.2.0" 2011 | path-browserify "0.0.0" 2012 | process "^0.11.0" 2013 | punycode "^1.2.4" 2014 | querystring-es3 "^0.2.0" 2015 | readable-stream "^2.0.5" 2016 | stream-browserify "^2.0.1" 2017 | stream-http "^2.3.1" 2018 | string_decoder "^0.10.25" 2019 | timers-browserify "^1.4.2" 2020 | tty-browserify "0.0.0" 2021 | url "^0.11.0" 2022 | util "^0.10.3" 2023 | vm-browserify "0.0.4" 2024 | 2025 | node-pre-gyp@^0.6.29: 2026 | version "0.6.31" 2027 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.31.tgz#d8a00ddaa301a940615dbcc8caad4024d58f6017" 2028 | dependencies: 2029 | mkdirp "~0.5.1" 2030 | nopt "~3.0.6" 2031 | npmlog "^4.0.0" 2032 | rc "~1.1.6" 2033 | request "^2.75.0" 2034 | rimraf "~2.5.4" 2035 | semver "~5.3.0" 2036 | tar "~2.2.1" 2037 | tar-pack "~3.3.0" 2038 | 2039 | nopt@~3.0.6: 2040 | version "3.0.6" 2041 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 2042 | dependencies: 2043 | abbrev "1" 2044 | 2045 | normalize-package-data@^2.3.2: 2046 | version "2.3.5" 2047 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.5.tgz#8d924f142960e1777e7ffe170543631cc7cb02df" 2048 | dependencies: 2049 | hosted-git-info "^2.1.4" 2050 | is-builtin-module "^1.0.0" 2051 | semver "2 || 3 || 4 || 5" 2052 | validate-npm-package-license "^3.0.1" 2053 | 2054 | normalize-path@^2.0.1: 2055 | version "2.0.1" 2056 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 2057 | 2058 | normalize-range@^0.1.2: 2059 | version "0.1.2" 2060 | resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" 2061 | 2062 | normalize-url@^1.4.0: 2063 | version "1.8.0" 2064 | resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.8.0.tgz#a9550b079aa3523c85d78df24eef1959fce359ab" 2065 | dependencies: 2066 | object-assign "^4.0.1" 2067 | prepend-http "^1.0.0" 2068 | query-string "^4.1.0" 2069 | sort-keys "^1.0.0" 2070 | 2071 | npmlog@^4.0.0: 2072 | version "4.0.1" 2073 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.1.tgz#d14f503b4cd79710375553004ba96e6662fbc0b8" 2074 | dependencies: 2075 | are-we-there-yet "~1.1.2" 2076 | console-control-strings "~1.1.0" 2077 | gauge "~2.7.1" 2078 | set-blocking "~2.0.0" 2079 | 2080 | num2fraction@^1.2.2: 2081 | version "1.2.2" 2082 | resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" 2083 | 2084 | number-is-nan@^1.0.0: 2085 | version "1.0.1" 2086 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2087 | 2088 | oauth-sign@~0.8.1: 2089 | version "0.8.2" 2090 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2091 | 2092 | object-assign@^4.0.1, object-assign@^4.1.0: 2093 | version "4.1.0" 2094 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0" 2095 | 2096 | object.omit@^2.0.0: 2097 | version "2.0.1" 2098 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2099 | dependencies: 2100 | for-own "^0.1.4" 2101 | is-extendable "^0.1.1" 2102 | 2103 | on-finished@~2.3.0: 2104 | version "2.3.0" 2105 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 2106 | dependencies: 2107 | ee-first "1.1.1" 2108 | 2109 | on-headers@~1.0.1: 2110 | version "1.0.1" 2111 | resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7" 2112 | 2113 | once@^1.3.0: 2114 | version "1.4.0" 2115 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2116 | dependencies: 2117 | wrappy "1" 2118 | 2119 | once@~1.3.3: 2120 | version "1.3.3" 2121 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 2122 | dependencies: 2123 | wrappy "1" 2124 | 2125 | onetime@^1.0.0: 2126 | version "1.1.0" 2127 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2128 | 2129 | open@0.0.5: 2130 | version "0.0.5" 2131 | resolved "https://registry.yarnpkg.com/open/-/open-0.0.5.tgz#42c3e18ec95466b6bf0dc42f3a2945c3f0cad8fc" 2132 | 2133 | optionator@^0.8.2: 2134 | version "0.8.2" 2135 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2136 | dependencies: 2137 | deep-is "~0.1.3" 2138 | fast-levenshtein "~2.0.4" 2139 | levn "~0.3.0" 2140 | prelude-ls "~1.1.2" 2141 | type-check "~0.3.2" 2142 | wordwrap "~1.0.0" 2143 | 2144 | original@>=0.0.5: 2145 | version "1.0.0" 2146 | resolved "https://registry.yarnpkg.com/original/-/original-1.0.0.tgz#9147f93fa1696d04be61e01bd50baeaca656bd3b" 2147 | dependencies: 2148 | url-parse "1.0.x" 2149 | 2150 | os-browserify@^0.2.0: 2151 | version "0.2.1" 2152 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f" 2153 | 2154 | os-homedir@^1.0.0: 2155 | version "1.0.2" 2156 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2157 | 2158 | os-locale@^1.4.0: 2159 | version "1.4.0" 2160 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2161 | dependencies: 2162 | lcid "^1.0.0" 2163 | 2164 | pako@~0.2.0: 2165 | version "0.2.9" 2166 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" 2167 | 2168 | parse-asn1@^5.0.0: 2169 | version "5.0.0" 2170 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.0.0.tgz#35060f6d5015d37628c770f4e091a0b5a278bc23" 2171 | dependencies: 2172 | asn1.js "^4.0.0" 2173 | browserify-aes "^1.0.0" 2174 | create-hash "^1.1.0" 2175 | evp_bytestokey "^1.0.0" 2176 | pbkdf2 "^3.0.3" 2177 | 2178 | parse-glob@^3.0.4: 2179 | version "3.0.4" 2180 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2181 | dependencies: 2182 | glob-base "^0.3.0" 2183 | is-dotfile "^1.0.0" 2184 | is-extglob "^1.0.0" 2185 | is-glob "^2.0.0" 2186 | 2187 | parse-json@^2.2.0: 2188 | version "2.2.0" 2189 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2190 | dependencies: 2191 | error-ex "^1.2.0" 2192 | 2193 | parseurl@~1.3.1: 2194 | version "1.3.1" 2195 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56" 2196 | 2197 | path-browserify@0.0.0: 2198 | version "0.0.0" 2199 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 2200 | 2201 | path-exists@^2.0.0: 2202 | version "2.1.0" 2203 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2204 | dependencies: 2205 | pinkie-promise "^2.0.0" 2206 | 2207 | path-is-absolute@^1.0.0: 2208 | version "1.0.1" 2209 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2210 | 2211 | path-is-inside@^1.0.1: 2212 | version "1.0.2" 2213 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2214 | 2215 | path-to-regexp@0.1.7: 2216 | version "0.1.7" 2217 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" 2218 | 2219 | path-type@^1.0.0: 2220 | version "1.1.0" 2221 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2222 | dependencies: 2223 | graceful-fs "^4.1.2" 2224 | pify "^2.0.0" 2225 | pinkie-promise "^2.0.0" 2226 | 2227 | pbkdf2@^3.0.3: 2228 | version "3.0.9" 2229 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.9.tgz#f2c4b25a600058b3c3773c086c37dbbee1ffe693" 2230 | dependencies: 2231 | create-hmac "^1.1.2" 2232 | 2233 | pify@^2.0.0: 2234 | version "2.3.0" 2235 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2236 | 2237 | pinkie-promise@^2.0.0: 2238 | version "2.0.1" 2239 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2240 | dependencies: 2241 | pinkie "^2.0.0" 2242 | 2243 | pinkie@^2.0.0: 2244 | version "2.0.4" 2245 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2246 | 2247 | pkg-dir@^1.0.0: 2248 | version "1.0.0" 2249 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 2250 | dependencies: 2251 | find-up "^1.0.0" 2252 | 2253 | pkg-up@^1.0.0: 2254 | version "1.0.0" 2255 | resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-1.0.0.tgz#3e08fb461525c4421624a33b9f7e6d0af5b05a26" 2256 | dependencies: 2257 | find-up "^1.0.0" 2258 | 2259 | pluralize@^1.2.1: 2260 | version "1.2.1" 2261 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 2262 | 2263 | postcss-calc@^5.2.0: 2264 | version "5.3.1" 2265 | resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-5.3.1.tgz#77bae7ca928ad85716e2fda42f261bf7c1d65b5e" 2266 | dependencies: 2267 | postcss "^5.0.2" 2268 | postcss-message-helpers "^2.0.0" 2269 | reduce-css-calc "^1.2.6" 2270 | 2271 | postcss-colormin@^2.1.8: 2272 | version "2.2.1" 2273 | resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-2.2.1.tgz#dc5421b6ae6f779ef6bfd47352b94abe59d0316b" 2274 | dependencies: 2275 | colormin "^1.0.5" 2276 | postcss "^5.0.13" 2277 | postcss-value-parser "^3.2.3" 2278 | 2279 | postcss-convert-values@^2.3.4: 2280 | version "2.5.0" 2281 | resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-2.5.0.tgz#570aceb04b3061fb25f6f46bd0329e7ab6263c0b" 2282 | dependencies: 2283 | postcss "^5.0.11" 2284 | postcss-value-parser "^3.1.2" 2285 | 2286 | postcss-discard-comments@^2.0.4: 2287 | version "2.0.4" 2288 | resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz#befe89fafd5b3dace5ccce51b76b81514be00e3d" 2289 | dependencies: 2290 | postcss "^5.0.14" 2291 | 2292 | postcss-discard-duplicates@^2.0.1: 2293 | version "2.0.2" 2294 | resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-2.0.2.tgz#02be520e91571ffb10738766a981d5770989bb32" 2295 | dependencies: 2296 | postcss "^5.0.4" 2297 | 2298 | postcss-discard-empty@^2.0.1: 2299 | version "2.1.0" 2300 | resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz#d2b4bd9d5ced5ebd8dcade7640c7d7cd7f4f92b5" 2301 | dependencies: 2302 | postcss "^5.0.14" 2303 | 2304 | postcss-discard-overridden@^0.1.1: 2305 | version "0.1.1" 2306 | resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz#8b1eaf554f686fb288cd874c55667b0aa3668d58" 2307 | dependencies: 2308 | postcss "^5.0.16" 2309 | 2310 | postcss-discard-unused@^2.2.1: 2311 | version "2.2.3" 2312 | resolved "https://registry.yarnpkg.com/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz#bce30b2cc591ffc634322b5fb3464b6d934f4433" 2313 | dependencies: 2314 | postcss "^5.0.14" 2315 | uniqs "^2.0.0" 2316 | 2317 | postcss-filter-plugins@^2.0.0: 2318 | version "2.0.2" 2319 | resolved "https://registry.yarnpkg.com/postcss-filter-plugins/-/postcss-filter-plugins-2.0.2.tgz#6d85862534d735ac420e4a85806e1f5d4286d84c" 2320 | dependencies: 2321 | postcss "^5.0.4" 2322 | uniqid "^4.0.0" 2323 | 2324 | postcss-merge-idents@^2.1.5: 2325 | version "2.1.7" 2326 | resolved "https://registry.yarnpkg.com/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz#4c5530313c08e1d5b3bbf3d2bbc747e278eea270" 2327 | dependencies: 2328 | has "^1.0.1" 2329 | postcss "^5.0.10" 2330 | postcss-value-parser "^3.1.1" 2331 | 2332 | postcss-merge-longhand@^2.0.1: 2333 | version "2.0.1" 2334 | resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-2.0.1.tgz#ff59b5dec6d586ce2cea183138f55c5876fa9cdc" 2335 | dependencies: 2336 | postcss "^5.0.4" 2337 | 2338 | postcss-merge-rules@^2.0.3: 2339 | version "2.0.10" 2340 | resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-2.0.10.tgz#54b360be804e7e69a5c7222635247b92a3569e9b" 2341 | dependencies: 2342 | postcss "^5.0.4" 2343 | vendors "^1.0.0" 2344 | 2345 | postcss-message-helpers@^2.0.0: 2346 | version "2.0.0" 2347 | resolved "https://registry.yarnpkg.com/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz#a4f2f4fab6e4fe002f0aed000478cdf52f9ba60e" 2348 | 2349 | postcss-minify-font-values@^1.0.2: 2350 | version "1.0.5" 2351 | resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz#4b58edb56641eba7c8474ab3526cafd7bbdecb69" 2352 | dependencies: 2353 | object-assign "^4.0.1" 2354 | postcss "^5.0.4" 2355 | postcss-value-parser "^3.0.2" 2356 | 2357 | postcss-minify-gradients@^1.0.1: 2358 | version "1.0.5" 2359 | resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz#5dbda11373703f83cfb4a3ea3881d8d75ff5e6e1" 2360 | dependencies: 2361 | postcss "^5.0.12" 2362 | postcss-value-parser "^3.3.0" 2363 | 2364 | postcss-minify-params@^1.0.4: 2365 | version "1.0.5" 2366 | resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-1.0.5.tgz#82d602643b8616a61fb3634d7ede0289836d67f9" 2367 | dependencies: 2368 | alphanum-sort "^1.0.1" 2369 | postcss "^5.0.2" 2370 | postcss-value-parser "^3.0.2" 2371 | uniqs "^2.0.0" 2372 | 2373 | postcss-minify-selectors@^2.0.4: 2374 | version "2.0.7" 2375 | resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-2.0.7.tgz#bfb9248fe14db33770f036572de6b4897c48d81c" 2376 | dependencies: 2377 | alphanum-sort "^1.0.2" 2378 | has "^1.0.1" 2379 | postcss "^5.0.14" 2380 | postcss-selector-parser "^2.0.0" 2381 | 2382 | postcss-modules-extract-imports@^1.0.0: 2383 | version "1.0.1" 2384 | resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.0.1.tgz#8fb3fef9a6dd0420d3f6d4353cf1ff73f2b2a341" 2385 | dependencies: 2386 | postcss "^5.0.4" 2387 | 2388 | postcss-modules-local-by-default@^1.0.1: 2389 | version "1.1.1" 2390 | resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.1.1.tgz#29a10673fa37d19251265ca2ba3150d9040eb4ce" 2391 | dependencies: 2392 | css-selector-tokenizer "^0.6.0" 2393 | postcss "^5.0.4" 2394 | 2395 | postcss-modules-scope@^1.0.0: 2396 | version "1.0.2" 2397 | resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-1.0.2.tgz#ff977395e5e06202d7362290b88b1e8cd049de29" 2398 | dependencies: 2399 | css-selector-tokenizer "^0.6.0" 2400 | postcss "^5.0.4" 2401 | 2402 | postcss-modules-values@^1.1.0: 2403 | version "1.2.2" 2404 | resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-1.2.2.tgz#f0e7d476fe1ed88c5e4c7f97533a3e772ad94ca1" 2405 | dependencies: 2406 | icss-replace-symbols "^1.0.2" 2407 | postcss "^5.0.14" 2408 | 2409 | postcss-normalize-charset@^1.1.0: 2410 | version "1.1.1" 2411 | resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz#ef9ee71212d7fe759c78ed162f61ed62b5cb93f1" 2412 | dependencies: 2413 | postcss "^5.0.5" 2414 | 2415 | postcss-normalize-url@^3.0.7: 2416 | version "3.0.7" 2417 | resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-3.0.7.tgz#6bd90d0a4bc5a1df22c26ea65c53257dc3829f4e" 2418 | dependencies: 2419 | is-absolute-url "^2.0.0" 2420 | normalize-url "^1.4.0" 2421 | postcss "^5.0.14" 2422 | postcss-value-parser "^3.2.3" 2423 | 2424 | postcss-ordered-values@^2.1.0: 2425 | version "2.2.2" 2426 | resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-2.2.2.tgz#be8b511741fab2dac8e614a2302e9d10267b0771" 2427 | dependencies: 2428 | postcss "^5.0.4" 2429 | postcss-value-parser "^3.0.1" 2430 | 2431 | postcss-reduce-idents@^2.2.2: 2432 | version "2.3.1" 2433 | resolved "https://registry.yarnpkg.com/postcss-reduce-idents/-/postcss-reduce-idents-2.3.1.tgz#024e8e219f52773313408573db9645ba62d2d2fe" 2434 | dependencies: 2435 | postcss "^5.0.4" 2436 | postcss-value-parser "^3.0.2" 2437 | 2438 | postcss-reduce-initial@^1.0.0: 2439 | version "1.0.0" 2440 | resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-1.0.0.tgz#8f739b938289ef2e48936d7101783e4741ca9bbb" 2441 | dependencies: 2442 | postcss "^5.0.4" 2443 | 2444 | postcss-reduce-transforms@^1.0.3: 2445 | version "1.0.4" 2446 | resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz#ff76f4d8212437b31c298a42d2e1444025771ae1" 2447 | dependencies: 2448 | has "^1.0.1" 2449 | postcss "^5.0.8" 2450 | postcss-value-parser "^3.0.1" 2451 | 2452 | postcss-selector-parser@^2.0.0: 2453 | version "2.2.2" 2454 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-2.2.2.tgz#3d70f5adda130da51c7c0c2fc023f56b1374fe08" 2455 | dependencies: 2456 | flatten "^1.0.2" 2457 | indexes-of "^1.0.1" 2458 | uniq "^1.0.1" 2459 | 2460 | postcss-svgo@^2.1.1: 2461 | version "2.1.5" 2462 | resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-2.1.5.tgz#46fc0363f01bab6a36a9abb01c229fcc45363094" 2463 | dependencies: 2464 | is-svg "^2.0.0" 2465 | postcss "^5.0.14" 2466 | postcss-value-parser "^3.2.3" 2467 | svgo "^0.7.0" 2468 | 2469 | postcss-unique-selectors@^2.0.2: 2470 | version "2.0.2" 2471 | resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz#981d57d29ddcb33e7b1dfe1fd43b8649f933ca1d" 2472 | dependencies: 2473 | alphanum-sort "^1.0.1" 2474 | postcss "^5.0.4" 2475 | uniqs "^2.0.0" 2476 | 2477 | 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: 2478 | version "3.3.0" 2479 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15" 2480 | 2481 | postcss-zindex@^2.0.1: 2482 | version "2.2.0" 2483 | resolved "https://registry.yarnpkg.com/postcss-zindex/-/postcss-zindex-2.2.0.tgz#d2109ddc055b91af67fc4cb3b025946639d2af22" 2484 | dependencies: 2485 | has "^1.0.1" 2486 | postcss "^5.0.4" 2487 | uniqs "^2.0.0" 2488 | 2489 | 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.5: 2490 | version "5.2.6" 2491 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.6.tgz#a252cd67cd52585035f17e9ad12b35137a7bdd9e" 2492 | dependencies: 2493 | chalk "^1.1.3" 2494 | js-base64 "^2.1.9" 2495 | source-map "^0.5.6" 2496 | supports-color "^3.1.2" 2497 | 2498 | prelude-ls@~1.1.2: 2499 | version "1.1.2" 2500 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2501 | 2502 | prepend-http@^1.0.0: 2503 | version "1.0.4" 2504 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 2505 | 2506 | preserve@^0.2.0: 2507 | version "0.2.0" 2508 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2509 | 2510 | process-nextick-args@~1.0.6: 2511 | version "1.0.7" 2512 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2513 | 2514 | process@^0.11.0, process@~0.11.0: 2515 | version "0.11.9" 2516 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.9.tgz#7bd5ad21aa6253e7da8682264f1e11d11c0318c1" 2517 | 2518 | progress@^1.1.8: 2519 | version "1.1.8" 2520 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 2521 | 2522 | proxy-addr@~1.1.2: 2523 | version "1.1.2" 2524 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-1.1.2.tgz#b4cc5f22610d9535824c123aef9d3cf73c40ba37" 2525 | dependencies: 2526 | forwarded "~0.1.0" 2527 | ipaddr.js "1.1.1" 2528 | 2529 | prr@~0.0.0: 2530 | version "0.0.0" 2531 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 2532 | 2533 | public-encrypt@^4.0.0: 2534 | version "4.0.0" 2535 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" 2536 | dependencies: 2537 | bn.js "^4.1.0" 2538 | browserify-rsa "^4.0.0" 2539 | create-hash "^1.1.0" 2540 | parse-asn1 "^5.0.0" 2541 | randombytes "^2.0.1" 2542 | 2543 | punycode@^1.2.4, punycode@^1.4.1: 2544 | version "1.4.1" 2545 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2546 | 2547 | punycode@1.3.2: 2548 | version "1.3.2" 2549 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 2550 | 2551 | q@^1.1.2: 2552 | version "1.4.1" 2553 | resolved "https://registry.yarnpkg.com/q/-/q-1.4.1.tgz#55705bcd93c5f3673530c2c2cbc0c2b3addc286e" 2554 | 2555 | qs@~6.3.0: 2556 | version "6.3.0" 2557 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442" 2558 | 2559 | qs@6.2.0: 2560 | version "6.2.0" 2561 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.0.tgz#3b7848c03c2dece69a9522b0fae8c4126d745f3b" 2562 | 2563 | query-string@^4.1.0: 2564 | version "4.2.3" 2565 | resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.2.3.tgz#9f27273d207a25a8ee4c7b8c74dcd45d556db822" 2566 | dependencies: 2567 | object-assign "^4.1.0" 2568 | strict-uri-encode "^1.0.0" 2569 | 2570 | querystring-es3@^0.2.0: 2571 | version "0.2.1" 2572 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 2573 | 2574 | querystring@0.2.0: 2575 | version "0.2.0" 2576 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 2577 | 2578 | querystringify@0.0.x: 2579 | version "0.0.4" 2580 | resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-0.0.4.tgz#0cf7f84f9463ff0ae51c4c4b142d95be37724d9c" 2581 | 2582 | randomatic@^1.1.3: 2583 | version "1.1.6" 2584 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 2585 | dependencies: 2586 | is-number "^2.0.2" 2587 | kind-of "^3.0.2" 2588 | 2589 | randombytes@^2.0.0, randombytes@^2.0.1: 2590 | version "2.0.3" 2591 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.3.tgz#674c99760901c3c4112771a31e521dc349cc09ec" 2592 | 2593 | range-parser@^1.0.3, range-parser@~1.2.0: 2594 | version "1.2.0" 2595 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" 2596 | 2597 | rc@~1.1.6: 2598 | version "1.1.6" 2599 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.6.tgz#43651b76b6ae53b5c802f1151fa3fc3b059969c9" 2600 | dependencies: 2601 | deep-extend "~0.4.0" 2602 | ini "~1.3.0" 2603 | minimist "^1.2.0" 2604 | strip-json-comments "~1.0.4" 2605 | 2606 | read-pkg-up@^1.0.1: 2607 | version "1.0.1" 2608 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2609 | dependencies: 2610 | find-up "^1.0.0" 2611 | read-pkg "^1.0.0" 2612 | 2613 | read-pkg@^1.0.0: 2614 | version "1.1.0" 2615 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2616 | dependencies: 2617 | load-json-file "^1.0.0" 2618 | normalize-package-data "^2.3.2" 2619 | path-type "^1.0.0" 2620 | 2621 | "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: 2622 | version "2.2.2" 2623 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.2.tgz#a9e6fec3c7dda85f8bb1b3ba7028604556fc825e" 2624 | dependencies: 2625 | buffer-shims "^1.0.0" 2626 | core-util-is "~1.0.0" 2627 | inherits "~2.0.1" 2628 | isarray "~1.0.0" 2629 | process-nextick-args "~1.0.6" 2630 | string_decoder "~0.10.x" 2631 | util-deprecate "~1.0.1" 2632 | 2633 | readable-stream@~2.0.0: 2634 | version "2.0.6" 2635 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" 2636 | dependencies: 2637 | core-util-is "~1.0.0" 2638 | inherits "~2.0.1" 2639 | isarray "~1.0.0" 2640 | process-nextick-args "~1.0.6" 2641 | string_decoder "~0.10.x" 2642 | util-deprecate "~1.0.1" 2643 | 2644 | readable-stream@~2.1.4: 2645 | version "2.1.5" 2646 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" 2647 | dependencies: 2648 | buffer-shims "^1.0.0" 2649 | core-util-is "~1.0.0" 2650 | inherits "~2.0.1" 2651 | isarray "~1.0.0" 2652 | process-nextick-args "~1.0.6" 2653 | string_decoder "~0.10.x" 2654 | util-deprecate "~1.0.1" 2655 | 2656 | readdirp@^2.0.0: 2657 | version "2.1.0" 2658 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2659 | dependencies: 2660 | graceful-fs "^4.1.2" 2661 | minimatch "^3.0.2" 2662 | readable-stream "^2.0.2" 2663 | set-immediate-shim "^1.0.1" 2664 | 2665 | readline2@^1.0.1: 2666 | version "1.0.1" 2667 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 2668 | dependencies: 2669 | code-point-at "^1.0.0" 2670 | is-fullwidth-code-point "^1.0.0" 2671 | mute-stream "0.0.5" 2672 | 2673 | rechoir@^0.6.2: 2674 | version "0.6.2" 2675 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 2676 | dependencies: 2677 | resolve "^1.1.6" 2678 | 2679 | reduce-css-calc@^1.2.6: 2680 | version "1.3.0" 2681 | resolved "https://registry.yarnpkg.com/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz#747c914e049614a4c9cfbba629871ad1d2927716" 2682 | dependencies: 2683 | balanced-match "^0.4.2" 2684 | math-expression-evaluator "^1.2.14" 2685 | reduce-function-call "^1.0.1" 2686 | 2687 | reduce-function-call@^1.0.1: 2688 | version "1.0.2" 2689 | resolved "https://registry.yarnpkg.com/reduce-function-call/-/reduce-function-call-1.0.2.tgz#5a200bf92e0e37751752fe45b0ab330fd4b6be99" 2690 | dependencies: 2691 | balanced-match "^0.4.2" 2692 | 2693 | regenerate@^1.2.1: 2694 | version "1.3.2" 2695 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 2696 | 2697 | regenerator-runtime@^0.9.5: 2698 | version "0.9.6" 2699 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.9.6.tgz#d33eb95d0d2001a4be39659707c51b0cb71ce029" 2700 | 2701 | regex-cache@^0.4.2: 2702 | version "0.4.3" 2703 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2704 | dependencies: 2705 | is-equal-shallow "^0.1.3" 2706 | is-primitive "^2.0.0" 2707 | 2708 | regexpu-core@^1.0.0: 2709 | version "1.0.0" 2710 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-1.0.0.tgz#86a763f58ee4d7c2f6b102e4764050de7ed90c6b" 2711 | dependencies: 2712 | regenerate "^1.2.1" 2713 | regjsgen "^0.2.0" 2714 | regjsparser "^0.1.4" 2715 | 2716 | regjsgen@^0.2.0: 2717 | version "0.2.0" 2718 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2719 | 2720 | regjsparser@^0.1.4: 2721 | version "0.1.5" 2722 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2723 | dependencies: 2724 | jsesc "~0.5.0" 2725 | 2726 | repeat-element@^1.1.2: 2727 | version "1.1.2" 2728 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2729 | 2730 | repeat-string@^1.5.2: 2731 | version "1.6.1" 2732 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2733 | 2734 | request@^2.75.0: 2735 | version "2.79.0" 2736 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 2737 | dependencies: 2738 | aws-sign2 "~0.6.0" 2739 | aws4 "^1.2.1" 2740 | caseless "~0.11.0" 2741 | combined-stream "~1.0.5" 2742 | extend "~3.0.0" 2743 | forever-agent "~0.6.1" 2744 | form-data "~2.1.1" 2745 | har-validator "~2.0.6" 2746 | hawk "~3.1.3" 2747 | http-signature "~1.1.0" 2748 | is-typedarray "~1.0.0" 2749 | isstream "~0.1.2" 2750 | json-stringify-safe "~5.0.1" 2751 | mime-types "~2.1.7" 2752 | oauth-sign "~0.8.1" 2753 | qs "~6.3.0" 2754 | stringstream "~0.0.4" 2755 | tough-cookie "~2.3.0" 2756 | tunnel-agent "~0.4.1" 2757 | uuid "^3.0.0" 2758 | 2759 | require-directory@^2.1.1: 2760 | version "2.1.1" 2761 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2762 | 2763 | require-main-filename@^1.0.1: 2764 | version "1.0.1" 2765 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2766 | 2767 | require-uncached@^1.0.2: 2768 | version "1.0.3" 2769 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 2770 | dependencies: 2771 | caller-path "^0.1.0" 2772 | resolve-from "^1.0.0" 2773 | 2774 | requires-port@1.0.x, requires-port@1.x.x: 2775 | version "1.0.0" 2776 | resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" 2777 | 2778 | resolve-from@^1.0.0: 2779 | version "1.0.1" 2780 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 2781 | 2782 | resolve@^1.1.6: 2783 | version "1.1.7" 2784 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2785 | 2786 | restore-cursor@^1.0.1: 2787 | version "1.0.1" 2788 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 2789 | dependencies: 2790 | exit-hook "^1.0.0" 2791 | onetime "^1.0.0" 2792 | 2793 | right-align@^0.1.1: 2794 | version "0.1.3" 2795 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2796 | dependencies: 2797 | align-text "^0.1.1" 2798 | 2799 | rimraf@^2.2.8, rimraf@~2.5.1, rimraf@~2.5.4, rimraf@2: 2800 | version "2.5.4" 2801 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 2802 | dependencies: 2803 | glob "^7.0.5" 2804 | 2805 | ripemd160@^1.0.0: 2806 | version "1.0.1" 2807 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-1.0.1.tgz#93a4bbd4942bc574b69a8fa57c71de10ecca7d6e" 2808 | 2809 | run-async@^0.1.0: 2810 | version "0.1.0" 2811 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 2812 | dependencies: 2813 | once "^1.3.0" 2814 | 2815 | rx-lite@^3.1.2: 2816 | version "3.1.2" 2817 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 2818 | 2819 | sax@~1.2.1: 2820 | version "1.2.1" 2821 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.1.tgz#7b8e656190b228e81a66aea748480d828cd2d37a" 2822 | 2823 | semver@~5.3.0, "semver@2 || 3 || 4 || 5": 2824 | version "5.3.0" 2825 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2826 | 2827 | send@0.14.1: 2828 | version "0.14.1" 2829 | resolved "https://registry.yarnpkg.com/send/-/send-0.14.1.tgz#a954984325392f51532a7760760e459598c89f7a" 2830 | dependencies: 2831 | debug "~2.2.0" 2832 | depd "~1.1.0" 2833 | destroy "~1.0.4" 2834 | encodeurl "~1.0.1" 2835 | escape-html "~1.0.3" 2836 | etag "~1.7.0" 2837 | fresh "0.3.0" 2838 | http-errors "~1.5.0" 2839 | mime "1.3.4" 2840 | ms "0.7.1" 2841 | on-finished "~2.3.0" 2842 | range-parser "~1.2.0" 2843 | statuses "~1.3.0" 2844 | 2845 | serve-index@^1.7.2: 2846 | version "1.8.0" 2847 | resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.8.0.tgz#7c5d96c13fb131101f93c1c5774f8516a1e78d3b" 2848 | dependencies: 2849 | accepts "~1.3.3" 2850 | batch "0.5.3" 2851 | debug "~2.2.0" 2852 | escape-html "~1.0.3" 2853 | http-errors "~1.5.0" 2854 | mime-types "~2.1.11" 2855 | parseurl "~1.3.1" 2856 | 2857 | serve-static@~1.11.1: 2858 | version "1.11.1" 2859 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.11.1.tgz#d6cce7693505f733c759de57befc1af76c0f0805" 2860 | dependencies: 2861 | encodeurl "~1.0.1" 2862 | escape-html "~1.0.3" 2863 | parseurl "~1.3.1" 2864 | send "0.14.1" 2865 | 2866 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2867 | version "2.0.0" 2868 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2869 | 2870 | set-immediate-shim@^1.0.1: 2871 | version "1.0.1" 2872 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2873 | 2874 | setprototypeof@1.0.2: 2875 | version "1.0.2" 2876 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.2.tgz#81a552141ec104b88e89ce383103ad5c66564d08" 2877 | 2878 | sha.js@^2.3.6: 2879 | version "2.4.8" 2880 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.8.tgz#37068c2c476b6baf402d14a49c67f597921f634f" 2881 | dependencies: 2882 | inherits "^2.0.1" 2883 | 2884 | shelljs@^0.7.5: 2885 | version "0.7.5" 2886 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.5.tgz#2eef7a50a21e1ccf37da00df767ec69e30ad0675" 2887 | dependencies: 2888 | glob "^7.0.0" 2889 | interpret "^1.0.0" 2890 | rechoir "^0.6.2" 2891 | 2892 | signal-exit@^3.0.0: 2893 | version "3.0.1" 2894 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.1.tgz#5a4c884992b63a7acd9badb7894c3ee9cfccad81" 2895 | 2896 | slice-ansi@0.0.4: 2897 | version "0.0.4" 2898 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 2899 | 2900 | sntp@1.x.x: 2901 | version "1.0.9" 2902 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2903 | dependencies: 2904 | hoek "2.x.x" 2905 | 2906 | sockjs-client@^1.0.3: 2907 | version "1.1.1" 2908 | resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.1.1.tgz#284843e9a9784d7c474b1571b3240fca9dda4bb0" 2909 | dependencies: 2910 | debug "^2.2.0" 2911 | eventsource "~0.1.6" 2912 | faye-websocket "~0.11.0" 2913 | inherits "^2.0.1" 2914 | json3 "^3.3.2" 2915 | url-parse "^1.1.1" 2916 | 2917 | sockjs@^0.3.15: 2918 | version "0.3.18" 2919 | resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.18.tgz#d9b289316ca7df77595ef299e075f0f937eb4207" 2920 | dependencies: 2921 | faye-websocket "^0.10.0" 2922 | uuid "^2.0.2" 2923 | 2924 | sort-keys@^1.0.0: 2925 | version "1.1.2" 2926 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" 2927 | dependencies: 2928 | is-plain-obj "^1.0.0" 2929 | 2930 | source-list-map@^0.1.4, source-list-map@~0.1.0: 2931 | version "0.1.6" 2932 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-0.1.6.tgz#e1e6f94f0b40c4d28dcf8f5b8766e0e45636877f" 2933 | 2934 | source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.3: 2935 | version "0.5.6" 2936 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 2937 | 2938 | spdx-correct@~1.0.0: 2939 | version "1.0.2" 2940 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2941 | dependencies: 2942 | spdx-license-ids "^1.0.2" 2943 | 2944 | spdx-expression-parse@~1.0.0: 2945 | version "1.0.4" 2946 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2947 | 2948 | spdx-license-ids@^1.0.2: 2949 | version "1.2.2" 2950 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2951 | 2952 | sprintf-js@~1.0.2: 2953 | version "1.0.3" 2954 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2955 | 2956 | sshpk@^1.7.0: 2957 | version "1.10.1" 2958 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.1.tgz#30e1a5d329244974a1af61511339d595af6638b0" 2959 | dependencies: 2960 | asn1 "~0.2.3" 2961 | assert-plus "^1.0.0" 2962 | dashdash "^1.12.0" 2963 | getpass "^0.1.1" 2964 | optionalDependencies: 2965 | bcrypt-pbkdf "^1.0.0" 2966 | ecc-jsbn "~0.1.1" 2967 | jodid25519 "^1.0.0" 2968 | jsbn "~0.1.0" 2969 | tweetnacl "~0.14.0" 2970 | 2971 | "statuses@>= 1.3.1 < 2", statuses@~1.3.0: 2972 | version "1.3.1" 2973 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" 2974 | 2975 | stream-browserify@^2.0.1: 2976 | version "2.0.1" 2977 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 2978 | dependencies: 2979 | inherits "~2.0.1" 2980 | readable-stream "^2.0.2" 2981 | 2982 | stream-cache@~0.0.1: 2983 | version "0.0.2" 2984 | resolved "https://registry.yarnpkg.com/stream-cache/-/stream-cache-0.0.2.tgz#1ac5ad6832428ca55667dbdee395dad4e6db118f" 2985 | 2986 | stream-http@^2.3.1: 2987 | version "2.5.0" 2988 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.5.0.tgz#585eee513217ed98fe199817e7313b6f772a6802" 2989 | dependencies: 2990 | builtin-status-codes "^2.0.0" 2991 | inherits "^2.0.1" 2992 | readable-stream "^2.1.0" 2993 | to-arraybuffer "^1.0.0" 2994 | xtend "^4.0.0" 2995 | 2996 | strict-uri-encode@^1.0.0: 2997 | version "1.1.0" 2998 | resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" 2999 | 3000 | string_decoder@^0.10.25, string_decoder@~0.10.x: 3001 | version "0.10.31" 3002 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3003 | 3004 | string-width@^1.0.1, string-width@^1.0.2: 3005 | version "1.0.2" 3006 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3007 | dependencies: 3008 | code-point-at "^1.0.0" 3009 | is-fullwidth-code-point "^1.0.0" 3010 | strip-ansi "^3.0.0" 3011 | 3012 | string-width@^2.0.0: 3013 | version "2.0.0" 3014 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 3015 | dependencies: 3016 | is-fullwidth-code-point "^2.0.0" 3017 | strip-ansi "^3.0.0" 3018 | 3019 | stringstream@~0.0.4: 3020 | version "0.0.5" 3021 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3022 | 3023 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3024 | version "3.0.1" 3025 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3026 | dependencies: 3027 | ansi-regex "^2.0.0" 3028 | 3029 | strip-bom@^2.0.0: 3030 | version "2.0.0" 3031 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3032 | dependencies: 3033 | is-utf8 "^0.2.0" 3034 | 3035 | strip-bom@^3.0.0: 3036 | version "3.0.0" 3037 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3038 | 3039 | strip-json-comments@~1.0.1, strip-json-comments@~1.0.4: 3040 | version "1.0.4" 3041 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 3042 | 3043 | style-loader@^0.13.1: 3044 | version "0.13.1" 3045 | resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-0.13.1.tgz#468280efbc0473023cd3a6cd56e33b5a1d7fc3a9" 3046 | dependencies: 3047 | loader-utils "^0.2.7" 3048 | 3049 | supports-color@^2.0.0: 3050 | version "2.0.0" 3051 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3052 | 3053 | supports-color@^3.1.0, supports-color@^3.1.1, supports-color@^3.1.2: 3054 | version "3.1.2" 3055 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 3056 | dependencies: 3057 | has-flag "^1.0.0" 3058 | 3059 | svgo@^0.7.0: 3060 | version "0.7.1" 3061 | resolved "https://registry.yarnpkg.com/svgo/-/svgo-0.7.1.tgz#287320fed972cb097e72c2bb1685f96fe08f8034" 3062 | dependencies: 3063 | coa "~1.0.1" 3064 | colors "~1.1.2" 3065 | csso "~2.2.1" 3066 | js-yaml "~3.6.1" 3067 | mkdirp "~0.5.1" 3068 | sax "~1.2.1" 3069 | whet.extend "~0.9.9" 3070 | 3071 | table@^3.7.8: 3072 | version "3.8.3" 3073 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 3074 | dependencies: 3075 | ajv "^4.7.0" 3076 | ajv-keywords "^1.0.0" 3077 | chalk "^1.1.1" 3078 | lodash "^4.0.0" 3079 | slice-ansi "0.0.4" 3080 | string-width "^2.0.0" 3081 | 3082 | tapable@^0.2.3, tapable@~0.2.3: 3083 | version "0.2.4" 3084 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.4.tgz#a7814605089d4ba896c33c7e3566e13dcd194aa5" 3085 | 3086 | tar-pack@~3.3.0: 3087 | version "3.3.0" 3088 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae" 3089 | dependencies: 3090 | debug "~2.2.0" 3091 | fstream "~1.0.10" 3092 | fstream-ignore "~1.0.5" 3093 | once "~1.3.3" 3094 | readable-stream "~2.1.4" 3095 | rimraf "~2.5.1" 3096 | tar "~2.2.1" 3097 | uid-number "~0.0.6" 3098 | 3099 | tar@~2.2.1: 3100 | version "2.2.1" 3101 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3102 | dependencies: 3103 | block-stream "*" 3104 | fstream "^1.0.2" 3105 | inherits "2" 3106 | 3107 | text-table@~0.2.0: 3108 | version "0.2.0" 3109 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3110 | 3111 | through@^2.3.6: 3112 | version "2.3.8" 3113 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3114 | 3115 | timers-browserify@^1.4.2: 3116 | version "1.4.2" 3117 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-1.4.2.tgz#c9c58b575be8407375cb5e2462dacee74359f41d" 3118 | dependencies: 3119 | process "~0.11.0" 3120 | 3121 | to-arraybuffer@^1.0.0: 3122 | version "1.0.1" 3123 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 3124 | 3125 | to-fast-properties@^1.0.1: 3126 | version "1.0.2" 3127 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 3128 | 3129 | tough-cookie@~2.3.0: 3130 | version "2.3.2" 3131 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3132 | dependencies: 3133 | punycode "^1.4.1" 3134 | 3135 | tryit@^1.0.1: 3136 | version "1.0.3" 3137 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3138 | 3139 | tty-browserify@0.0.0: 3140 | version "0.0.0" 3141 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 3142 | 3143 | tunnel-agent@~0.4.1: 3144 | version "0.4.3" 3145 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 3146 | 3147 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3148 | version "0.14.3" 3149 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.3.tgz#3da382f670f25ded78d7b3d1792119bca0b7132d" 3150 | 3151 | type-check@~0.3.2: 3152 | version "0.3.2" 3153 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3154 | dependencies: 3155 | prelude-ls "~1.1.2" 3156 | 3157 | type-is@~1.6.13: 3158 | version "1.6.14" 3159 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.14.tgz#e219639c17ded1ca0789092dd54a03826b817cb2" 3160 | dependencies: 3161 | media-typer "0.3.0" 3162 | mime-types "~2.1.13" 3163 | 3164 | typedarray@~0.0.5: 3165 | version "0.0.6" 3166 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3167 | 3168 | uglify-js@~2.7.3: 3169 | version "2.7.4" 3170 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.7.4.tgz#a295a0de12b6a650c031c40deb0dc40b14568bd2" 3171 | dependencies: 3172 | async "~0.2.6" 3173 | source-map "~0.5.1" 3174 | uglify-to-browserify "~1.0.0" 3175 | yargs "~3.10.0" 3176 | 3177 | uglify-to-browserify@~1.0.0: 3178 | version "1.0.2" 3179 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3180 | 3181 | uid-number@~0.0.6: 3182 | version "0.0.6" 3183 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3184 | 3185 | uniq@^1.0.1: 3186 | version "1.0.1" 3187 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" 3188 | 3189 | uniqid@^4.0.0: 3190 | version "4.1.0" 3191 | resolved "https://registry.yarnpkg.com/uniqid/-/uniqid-4.1.0.tgz#33d9679f65022f48988a03fd24e7dcaf8f109eca" 3192 | dependencies: 3193 | macaddress "^0.2.8" 3194 | 3195 | uniqs@^2.0.0: 3196 | version "2.0.0" 3197 | resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" 3198 | 3199 | unpipe@~1.0.0: 3200 | version "1.0.0" 3201 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 3202 | 3203 | url-parse@^1.1.1: 3204 | version "1.1.7" 3205 | resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.1.7.tgz#025cff999653a459ab34232147d89514cc87d74a" 3206 | dependencies: 3207 | querystringify "0.0.x" 3208 | requires-port "1.0.x" 3209 | 3210 | url-parse@1.0.x: 3211 | version "1.0.5" 3212 | resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.0.5.tgz#0854860422afdcfefeb6c965c662d4800169927b" 3213 | dependencies: 3214 | querystringify "0.0.x" 3215 | requires-port "1.0.x" 3216 | 3217 | url@^0.11.0: 3218 | version "0.11.0" 3219 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 3220 | dependencies: 3221 | punycode "1.3.2" 3222 | querystring "0.2.0" 3223 | 3224 | user-home@^2.0.0: 3225 | version "2.0.0" 3226 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 3227 | dependencies: 3228 | os-homedir "^1.0.0" 3229 | 3230 | util-deprecate@~1.0.1: 3231 | version "1.0.2" 3232 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3233 | 3234 | util@^0.10.3, util@0.10.3: 3235 | version "0.10.3" 3236 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 3237 | dependencies: 3238 | inherits "2.0.1" 3239 | 3240 | utils-merge@1.0.0: 3241 | version "1.0.0" 3242 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" 3243 | 3244 | uuid@^2.0.2: 3245 | version "2.0.3" 3246 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 3247 | 3248 | uuid@^3.0.0: 3249 | version "3.0.0" 3250 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.0.tgz#6728fc0459c450d796a99c31837569bdf672d728" 3251 | 3252 | validate-npm-package-license@^3.0.1: 3253 | version "3.0.1" 3254 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3255 | dependencies: 3256 | spdx-correct "~1.0.0" 3257 | spdx-expression-parse "~1.0.0" 3258 | 3259 | vary@~1.1.0: 3260 | version "1.1.0" 3261 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.0.tgz#e1e5affbbd16ae768dd2674394b9ad3022653140" 3262 | 3263 | vendors@^1.0.0: 3264 | version "1.0.1" 3265 | resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.1.tgz#37ad73c8ee417fb3d580e785312307d274847f22" 3266 | 3267 | verror@1.3.6: 3268 | version "1.3.6" 3269 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3270 | dependencies: 3271 | extsprintf "1.0.2" 3272 | 3273 | vm-browserify@0.0.4: 3274 | version "0.0.4" 3275 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 3276 | dependencies: 3277 | indexof "0.0.1" 3278 | 3279 | watchpack@^1.0.0: 3280 | version "1.1.0" 3281 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.1.0.tgz#42d44627464a2fadffc9308c0f7562cfde795f24" 3282 | dependencies: 3283 | async "2.0.0-rc.4" 3284 | chokidar "^1.4.3" 3285 | graceful-fs "^4.1.2" 3286 | 3287 | webpack-dev-middleware@^1.4.0: 3288 | version "1.8.4" 3289 | resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-1.8.4.tgz#e8765c9122887ce9e3abd4cc9c3eb31b61e0948d" 3290 | dependencies: 3291 | memory-fs "~0.3.0" 3292 | mime "^1.3.4" 3293 | path-is-absolute "^1.0.0" 3294 | range-parser "^1.0.3" 3295 | 3296 | webpack-dev-server@^2.0.0-beta: 3297 | version "2.0.0-beta" 3298 | resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-2.0.0-beta.tgz#1973bc18a71601280170150b076b55f46e9fcf20" 3299 | dependencies: 3300 | compression "^1.5.2" 3301 | connect-history-api-fallback "1.1.0" 3302 | express "^4.13.3" 3303 | http-proxy-middleware "~0.9.1" 3304 | open "0.0.5" 3305 | serve-index "^1.7.2" 3306 | sockjs "^0.3.15" 3307 | sockjs-client "^1.0.3" 3308 | stream-cache "~0.0.1" 3309 | strip-ansi "^3.0.0" 3310 | supports-color "^3.1.1" 3311 | webpack-dev-middleware "^1.4.0" 3312 | yargs "^3.32.0" 3313 | 3314 | webpack-sources@^0.1.0: 3315 | version "0.1.3" 3316 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-0.1.3.tgz#15ce2fb79d0a1da727444ba7c757bf164294f310" 3317 | dependencies: 3318 | source-list-map "~0.1.0" 3319 | source-map "~0.5.3" 3320 | 3321 | webpack@^2.1.0-beta.4: 3322 | version "2.1.0-beta.27" 3323 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-2.1.0-beta.27.tgz#06cb802e44118159e46b7533ae76b0d84c8c89d8" 3324 | dependencies: 3325 | acorn "^4.0.3" 3326 | ajv "^4.7.0" 3327 | ajv-keywords "^1.1.1" 3328 | async "^2.1.2" 3329 | enhanced-resolve "^2.2.0" 3330 | interpret "^1.0.0" 3331 | loader-runner "^2.2.0" 3332 | loader-utils "^0.2.16" 3333 | memory-fs "~0.3.0" 3334 | mkdirp "~0.5.0" 3335 | node-libs-browser "^1.0.0" 3336 | object-assign "^4.0.1" 3337 | source-map "^0.5.3" 3338 | supports-color "^3.1.0" 3339 | tapable "~0.2.3" 3340 | uglify-js "~2.7.3" 3341 | watchpack "^1.0.0" 3342 | webpack-sources "^0.1.0" 3343 | yargs "^6.0.0" 3344 | 3345 | websocket-driver@>=0.5.1: 3346 | version "0.6.5" 3347 | resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.6.5.tgz#5cb2556ceb85f4373c6d8238aa691c8454e13a36" 3348 | dependencies: 3349 | websocket-extensions ">=0.1.1" 3350 | 3351 | websocket-extensions@>=0.1.1: 3352 | version "0.1.1" 3353 | resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.1.tgz#76899499c184b6ef754377c2dbb0cd6cb55d29e7" 3354 | 3355 | whet.extend@~0.9.9: 3356 | version "0.9.9" 3357 | resolved "https://registry.yarnpkg.com/whet.extend/-/whet.extend-0.9.9.tgz#f877d5bf648c97e5aa542fadc16d6a259b9c11a1" 3358 | 3359 | which-module@^1.0.0: 3360 | version "1.0.0" 3361 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3362 | 3363 | wide-align@^1.1.0: 3364 | version "1.1.0" 3365 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 3366 | dependencies: 3367 | string-width "^1.0.1" 3368 | 3369 | window-size@^0.1.4: 3370 | version "0.1.4" 3371 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.4.tgz#f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876" 3372 | 3373 | window-size@^0.2.0: 3374 | version "0.2.0" 3375 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.2.0.tgz#b4315bb4214a3d7058ebeee892e13fa24d98b075" 3376 | 3377 | window-size@0.1.0: 3378 | version "0.1.0" 3379 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3380 | 3381 | wordwrap@~1.0.0: 3382 | version "1.0.0" 3383 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3384 | 3385 | wordwrap@0.0.2: 3386 | version "0.0.2" 3387 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3388 | 3389 | wrap-ansi@^2.0.0: 3390 | version "2.0.0" 3391 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.0.0.tgz#7d30f8f873f9a5bbc3a64dabc8d177e071ae426f" 3392 | dependencies: 3393 | string-width "^1.0.1" 3394 | 3395 | wrappy@1: 3396 | version "1.0.2" 3397 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3398 | 3399 | write@^0.2.1: 3400 | version "0.2.1" 3401 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3402 | dependencies: 3403 | mkdirp "^0.5.1" 3404 | 3405 | xtend@^4.0.0: 3406 | version "4.0.1" 3407 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3408 | 3409 | y18n@^3.2.0, y18n@^3.2.1: 3410 | version "3.2.1" 3411 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3412 | 3413 | yargs-parser@^4.1.0: 3414 | version "4.1.0" 3415 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.1.0.tgz#313df030f20124124aeae8fbab2da53ec28c56d7" 3416 | dependencies: 3417 | camelcase "^3.0.0" 3418 | 3419 | yargs@^3.32.0: 3420 | version "3.32.0" 3421 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.32.0.tgz#03088e9ebf9e756b69751611d2a5ef591482c995" 3422 | dependencies: 3423 | camelcase "^2.0.1" 3424 | cliui "^3.0.3" 3425 | decamelize "^1.1.1" 3426 | os-locale "^1.4.0" 3427 | string-width "^1.0.1" 3428 | window-size "^0.1.4" 3429 | y18n "^3.2.0" 3430 | 3431 | yargs@^6.0.0: 3432 | version "6.4.0" 3433 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.4.0.tgz#816e1a866d5598ccf34e5596ddce22d92da490d4" 3434 | dependencies: 3435 | camelcase "^3.0.0" 3436 | cliui "^3.2.0" 3437 | decamelize "^1.1.1" 3438 | get-caller-file "^1.0.1" 3439 | os-locale "^1.4.0" 3440 | read-pkg-up "^1.0.1" 3441 | require-directory "^2.1.1" 3442 | require-main-filename "^1.0.1" 3443 | set-blocking "^2.0.0" 3444 | string-width "^1.0.2" 3445 | which-module "^1.0.0" 3446 | window-size "^0.2.0" 3447 | y18n "^3.2.1" 3448 | yargs-parser "^4.1.0" 3449 | 3450 | yargs@~3.10.0: 3451 | version "3.10.0" 3452 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3453 | dependencies: 3454 | camelcase "^1.0.2" 3455 | cliui "^2.1.0" 3456 | decamelize "^1.0.0" 3457 | window-size "0.1.0" 3458 | 3459 | -------------------------------------------------------------------------------- /examples/webpack-2/.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig helps developers define and maintain consistent 2 | # coding styles between different editors and IDEs 3 | # editorconfig.org 4 | 5 | root = true 6 | 7 | 8 | [*] 9 | # We recommend you to keep these unchanged 10 | end_of_line = lf 11 | charset = utf-8 12 | trim_trailing_whitespace = true 13 | insert_final_newline = true 14 | 15 | indent_style = space 16 | indent_size = 2 17 | 18 | [**.js] 19 | indent_style = space 20 | indent_size = 2 21 | trim_trailing_whitespace = true 22 | insert_final_newline = true 23 | 24 | [**.html] 25 | indent_style = space 26 | indent_size = 2 27 | trim_trailing_whitespace = true 28 | insert_final_newline = true 29 | 30 | [**.scss] 31 | indent_style = space 32 | indent_size = 2 33 | trim_trailing_whitespace = true 34 | insert_final_newline = true 35 | 36 | [**.css] 37 | indent_style = space 38 | indent_size = 2 39 | trim_trailing_whitespace = true 40 | insert_final_newline = true 41 | 42 | [**.md] 43 | indent_style = space 44 | indent_size = 2 45 | trim_trailing_whitespace = false 46 | insert_final_newline = true 47 | 48 | -------------------------------------------------------------------------------- /examples/webpack-2/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /examples/webpack-2/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "parser": "babel-eslint", 3 | "extends": "airbnb-base", 4 | "parserOptions": { 5 | "ecmaVersion": 6, 6 | "sourceType": "script" 7 | }, 8 | "env": { 9 | "node": true 10 | }, 11 | "root": true, 12 | "rules": { 13 | "indent": ["error", 2], 14 | "strict": ["error", "global"] 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /examples/webpack-2/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /examples/webpack-2/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /examples/webpack-2/README.md: -------------------------------------------------------------------------------- 1 | An example of using the `virtual-module-webpack-plugin` with webpack 2 2 | that demonstrates it can work in a production environment with 3 | the `extract-text-webpack-plugin` and loaders such as the 4 | `json-loader` and `css-loader` with source maps. 5 | 6 | Run `npm install` and then `npm start` or `npm run build` to try it out. 7 | The `npm start` script uses webpack-dev-server and you can view 8 | the page at http://localhost:8080/. 9 | -------------------------------------------------------------------------------- /examples/webpack-2/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /examples/webpack-2/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "virtual-module-webpack-2-plugin-example", 3 | "version": "1.0.0", 4 | "description": "An example of using the virtual-module-webpack-plugin with webpack 2", 5 | "scripts": { 6 | "start": "webpack-dev-server", 7 | "build": "webpack", 8 | "fix": "npm run lint -- --fix", 9 | "lint": "eslint . ./" 10 | }, 11 | "devDependencies": { 12 | "babel-eslint": "^7.2.1", 13 | "css-loader": "^0.28.0", 14 | "eslint": "^3.19.0", 15 | "eslint-config-airbnb-base": "^11.1.2", 16 | "eslint-plugin-import": "^2.2.0", 17 | "extract-text-webpack-plugin": "^2.1.0", 18 | "json-loader": "^0.5.4", 19 | "style-loader": "^0.16.1", 20 | "webpack": "^2.3.2", 21 | "webpack-dev-server": "^2.4.2" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /examples/webpack-2/src/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "parserOptions": { 3 | "ecmaVersion": 6, 4 | "sourceType": "module" 5 | }, 6 | "env": { 7 | "browser": true 8 | }, 9 | "rules": { 10 | "no-console": 0 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /examples/webpack-2/src/greeting/index.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable import/no-unresolved, import/extensions, import/no-extraneous-dependencies */ 2 | import settings from 'mysettings'; 3 | 4 | export default settings.greeting; 5 | -------------------------------------------------------------------------------- /examples/webpack-2/src/index.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable import/no-unresolved, import/no-extraneous-dependencies */ 2 | import 'css/generated.css'; 3 | import greeting from './greeting'; 4 | 5 | console.log(greeting); 6 | 7 | if (window) { 8 | const document = window.document; 9 | const body = document.querySelector('body'); 10 | const header = document.createElement('h1'); 11 | header.className = 'greeting'; 12 | header.textContent = greeting; 13 | body.appendChild(header); 14 | } 15 | -------------------------------------------------------------------------------- /examples/webpack-2/webpack.config.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const path = require('path'); 4 | // eslint-disable-next-line import/no-extraneous-dependencies 5 | const ExtractTextPlugin = require('extract-text-webpack-plugin'); 6 | // in actual use, you would `require('virtual-module-webpack-plugin')` here 7 | const VirtualModulePlugin = require('../../index'); 8 | 9 | module.exports = function webpackConfig() { 10 | const runtimeJsonContents = { 11 | // eslint-disable-next-line quotes, quote-props 12 | "greeting": "Hello!", 13 | }; 14 | const runtimeStyleContents = ` 15 | body { background: #000; color: #ccc; } 16 | .greeting { font: 600 40px/50px fantasy; text-align: center; } 17 | `; 18 | 19 | const config = { 20 | context: __dirname, 21 | devtool: 'source-map', 22 | entry: { 23 | index: './src/index', 24 | }, 25 | output: { 26 | filename: '[name].js', 27 | path: path.join(__dirname, 'dist'), 28 | publicPath: '/', 29 | devtoolModuleFilenameTemplate: '../[resource-path]', 30 | }, 31 | module: { 32 | rules: [ 33 | { 34 | test: /\.json$/, 35 | use: [ 36 | { 37 | loader: 'json-loader', 38 | }, 39 | ], 40 | }, 41 | { 42 | test: /\.css$/, 43 | loader: ExtractTextPlugin.extract({ 44 | fallback: 'style-loader', 45 | loader: 'css-loader?sourceMap', 46 | }), 47 | }, 48 | ], 49 | }, 50 | plugins: [ 51 | new VirtualModulePlugin({ 52 | moduleName: 'src/mysettings.json', 53 | contents: runtimeJsonContents, 54 | }), 55 | new VirtualModulePlugin({ 56 | moduleName: 'src/css/generated.css', 57 | contents: runtimeStyleContents, 58 | }), 59 | new ExtractTextPlugin({ 60 | filename: '[name].css', 61 | allChunks: true, 62 | }), 63 | ], 64 | resolve: { 65 | modules: [ 66 | path.join(__dirname, 'src'), 67 | 'node_modules', 68 | ], 69 | }, 70 | }; 71 | return config; 72 | }; 73 | -------------------------------------------------------------------------------- /examples/webpack-4/.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig helps developers define and maintain consistent 2 | # coding styles between different editors and IDEs 3 | # editorconfig.org 4 | 5 | root = true 6 | 7 | 8 | [*] 9 | # We recommend you to keep these unchanged 10 | end_of_line = lf 11 | charset = utf-8 12 | trim_trailing_whitespace = true 13 | insert_final_newline = true 14 | 15 | indent_style = space 16 | indent_size = 2 17 | 18 | [**.js] 19 | indent_style = space 20 | indent_size = 2 21 | trim_trailing_whitespace = true 22 | insert_final_newline = true 23 | 24 | [**.html] 25 | indent_style = space 26 | indent_size = 2 27 | trim_trailing_whitespace = true 28 | insert_final_newline = true 29 | 30 | [**.scss] 31 | indent_style = space 32 | indent_size = 2 33 | trim_trailing_whitespace = true 34 | insert_final_newline = true 35 | 36 | [**.css] 37 | indent_style = space 38 | indent_size = 2 39 | trim_trailing_whitespace = true 40 | insert_final_newline = true 41 | 42 | [**.md] 43 | indent_style = space 44 | indent_size = 2 45 | trim_trailing_whitespace = false 46 | insert_final_newline = true 47 | 48 | -------------------------------------------------------------------------------- /examples/webpack-4/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /examples/webpack-4/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "parser": "babel-eslint", 3 | "extends": "airbnb-base", 4 | "parserOptions": { 5 | "ecmaVersion": 6, 6 | "sourceType": "script" 7 | }, 8 | "env": { 9 | "node": true 10 | }, 11 | "root": true, 12 | "rules": { 13 | "indent": ["error", 2], 14 | "strict": ["error", "global"] 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /examples/webpack-4/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /examples/webpack-4/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /examples/webpack-4/README.md: -------------------------------------------------------------------------------- 1 | An example of using the `virtual-module-webpack-plugin` with webpack 2 2 | that demonstrates it can work in a production environment with 3 | the `extract-text-webpack-plugin` and loaders such as the 4 | `json-loader` and `css-loader` with source maps. 5 | 6 | Run `npm install` and then `npm start` or `npm run build` to try it out. 7 | The `npm start` script uses webpack-dev-server and you can view 8 | the page at http://localhost:8080/. 9 | -------------------------------------------------------------------------------- /examples/webpack-4/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /examples/webpack-4/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "virtual-module-webpack-4-plugin-example", 3 | "version": "1.0.0", 4 | "description": "An example of using the virtual-module-webpack-plugin with webpack 2", 5 | "scripts": { 6 | "start": "webpack-dev-server", 7 | "build": "webpack", 8 | "fix": "npm run lint -- --fix", 9 | "lint": "eslint . ./" 10 | }, 11 | "devDependencies": { 12 | "babel-eslint": "^7.2.1", 13 | "css-loader": "^0.28.10", 14 | "eslint": "^3.19.0", 15 | "eslint-config-airbnb-base": "^11.1.2", 16 | "eslint-plugin-import": "^2.2.0", 17 | "extract-text-webpack-plugin": "^3.0.2", 18 | "json-loader": "^0.5.6", 19 | "style-loader": "^0.20.2", 20 | "webpack": "^4.1.0", 21 | "webpack-dev-server": "^3.1.0" 22 | }, 23 | "dependencies": { 24 | "webpack-cli": "^2.0.10" 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /examples/webpack-4/src/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "parserOptions": { 3 | "ecmaVersion": 6, 4 | "sourceType": "module" 5 | }, 6 | "env": { 7 | "browser": true 8 | }, 9 | "rules": { 10 | "no-console": 0 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /examples/webpack-4/src/greeting/index.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable import/no-unresolved, import/extensions, import/no-extraneous-dependencies */ 2 | import settings from 'mysettings'; 3 | 4 | export default settings.greeting; 5 | -------------------------------------------------------------------------------- /examples/webpack-4/src/index.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable import/no-unresolved, import/no-extraneous-dependencies */ 2 | import 'css/generated.css'; 3 | import greeting from './greeting'; 4 | 5 | console.log(greeting); 6 | 7 | if (window) { 8 | const document = window.document; 9 | const body = document.querySelector('body'); 10 | const header = document.createElement('h1'); 11 | header.className = 'greeting'; 12 | header.textContent = greeting; 13 | body.appendChild(header); 14 | } 15 | -------------------------------------------------------------------------------- /examples/webpack-4/webpack.config.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const path = require('path'); 4 | // eslint-disable-next-line import/no-extraneous-dependencies 5 | 6 | // Not using extract-text in webpack 4 demo because at this time, there is 7 | // no compatible version. 8 | // const ExtractTextPlugin = require('extract-text-webpack-plugin'); 9 | 10 | // in actual use, you would `require('virtual-module-webpack-plugin')` here 11 | const VirtualModulePlugin = require('../../index'); 12 | 13 | module.exports = function webpackConfig() { 14 | // eslint-disable-next-line quotes, quote-props 15 | const runtimeJsonContents = ` 16 | module.exports = { 17 | greeting: 'Hello!', 18 | }; 19 | `; 20 | const runtimeStyleContents = ` 21 | body { background: #000; color: #ccc; } 22 | .greeting { font: 600 40px/50px fantasy; text-align: center; } 23 | `; 24 | 25 | const config = { 26 | context: __dirname, 27 | devtool: 'source-map', 28 | mode: 'development', 29 | entry: { 30 | index: './src/index', 31 | }, 32 | output: { 33 | filename: '[name].js', 34 | path: path.join(__dirname, 'dist'), 35 | publicPath: '/', 36 | devtoolModuleFilenameTemplate: '../[resource-path]', 37 | }, 38 | module: { 39 | rules: [ 40 | { 41 | test: /\.json$/, 42 | use: [ 43 | { 44 | loader: 'json-loader', 45 | }, 46 | ], 47 | }, 48 | { 49 | test: /\.css$/, 50 | use: [ 51 | { 52 | // fallback: 'style-loader', 53 | loader: 'css-loader?sourceMap', 54 | }, 55 | ], 56 | // loader: ExtractTextPlugin.extract({ 57 | // fallback: 'style-loader', 58 | // loader: 'css-loader?sourceMap', 59 | // }), 60 | }, 61 | ], 62 | }, 63 | plugins: [ 64 | new VirtualModulePlugin({ 65 | moduleName: 'src/mysettings.js', 66 | contents: runtimeJsonContents, 67 | }), 68 | new VirtualModulePlugin({ 69 | moduleName: 'src/css/generated.css', 70 | contents: runtimeStyleContents, 71 | }), 72 | // new ExtractTextPlugin({ 73 | // filename: '[name].css', 74 | // allChunks: true, 75 | // }), 76 | ], 77 | resolve: { 78 | modules: [ 79 | path.join(__dirname, 'src'), 80 | 'node_modules', 81 | ], 82 | }, 83 | }; 84 | return config; 85 | }; 86 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable no-underscore-dangle */ 2 | 3 | 'use strict'; 4 | 5 | const path = require('path'); 6 | const VirtualStats = require('./virtual-stats'); 7 | 8 | class VirtualModulePlugin { 9 | constructor(options) { 10 | this.options = options; 11 | } 12 | 13 | apply(compiler) { 14 | const moduleName = this.options.moduleName; 15 | const ctime = VirtualModulePlugin.statsDate(); 16 | let modulePath = this.options.path; 17 | 18 | let contents; 19 | if (typeof this.options.contents === 'string') { 20 | contents = this.options.contents; 21 | } 22 | if (typeof this.options.contents === 'object') { 23 | if (typeof this.options.contents.then !== 'function') { 24 | contents = JSON.stringify(this.options.contents); 25 | } 26 | } 27 | if (typeof this.options.contents === 'function') { 28 | contents = this.options.contents(); 29 | } 30 | if (typeof contents === 'string') { 31 | contents = Promise.resolve(contents); 32 | } 33 | 34 | function resolverPlugin(request, cb) { 35 | // populate the file system cache with the virtual module 36 | const fs = (this && this.fileSystem) || compiler.inputFileSystem; 37 | const join = (this && this.join) || path.join; 38 | 39 | // webpack 1.x compatibility 40 | if (typeof request === 'string') { 41 | request = cb; 42 | cb = null; 43 | } 44 | 45 | if (!modulePath) { 46 | modulePath = join(compiler.context, moduleName); 47 | } 48 | 49 | const resolve = (data) => { 50 | VirtualModulePlugin.populateFilesystem({ fs, modulePath, contents: data, ctime }); 51 | }; 52 | 53 | const resolved = contents.then(resolve); 54 | if (!cb) { 55 | return; 56 | } 57 | 58 | resolved.then(() => cb()); 59 | } 60 | 61 | const waitForResolvers = !compiler.resolvers.normal; 62 | function addPlugin() { 63 | const useModuleFactory = !compiler.resolvers.normal.plugin; 64 | if (useModuleFactory) { 65 | if (compiler.hooks) { 66 | compiler.hooks.normalModuleFactory.tap('VirtualModulePlugin', (nmf) => { 67 | nmf.hooks.beforeResolve.tap('VirtualModulePlugin', resolverPlugin); 68 | }); 69 | } else { 70 | compiler.plugin('normal-module-factory', (nmf) => { 71 | nmf.plugin('before-resolve', resolverPlugin); 72 | }); 73 | } 74 | } else { 75 | compiler.resolvers.normal.plugin('before-resolve', resolverPlugin); 76 | } 77 | } 78 | if (waitForResolvers) { 79 | compiler.plugin('after-resolvers', addPlugin); 80 | } else { 81 | addPlugin(); 82 | } 83 | } 84 | 85 | static populateFilesystem(options) { 86 | const fs = options.fs; 87 | const modulePath = options.modulePath; 88 | const contents = options.contents; 89 | const mapIsAvailable = typeof Map !== 'undefined'; 90 | const statStorageIsMap = mapIsAvailable && fs._statStorage.data instanceof Map; 91 | const readFileStorageIsMap = mapIsAvailable && fs._readFileStorage.data instanceof Map; 92 | 93 | if (readFileStorageIsMap) { // enhanced-resolve@3.4.0 or greater 94 | if (fs._readFileStorage.data.has(modulePath)) { 95 | return; 96 | } 97 | } else if (fs._readFileStorage.data[modulePath]) { // enhanced-resolve@3.3.0 or lower 98 | return; 99 | } 100 | const stats = VirtualModulePlugin.createStats(options); 101 | if (statStorageIsMap) { // enhanced-resolve@3.4.0 or greater 102 | fs._statStorage.data.set(modulePath, [null, stats]); 103 | } else { // enhanced-resolve@3.3.0 or lower 104 | fs._statStorage.data[modulePath] = [null, stats]; 105 | } 106 | if (readFileStorageIsMap) { // enhanced-resolve@3.4.0 or greater 107 | fs._readFileStorage.data.set(modulePath, [null, contents]); 108 | } else { // enhanced-resolve@3.3.0 or lower 109 | fs._readFileStorage.data[modulePath] = [null, contents]; 110 | } 111 | } 112 | 113 | static statsDate(inputDate) { 114 | if (!inputDate) { 115 | inputDate = new Date(); 116 | } 117 | return inputDate.toString(); 118 | } 119 | 120 | static createStats(options) { 121 | if (!options) { 122 | options = {}; 123 | } 124 | if (!options.ctime) { 125 | options.ctime = VirtualModulePlugin.statsDate(); 126 | } 127 | if (!options.mtime) { 128 | options.mtime = VirtualModulePlugin.statsDate(); 129 | } 130 | if (!options.size) { 131 | options.size = 0; 132 | } 133 | if (!options.size && options.contents) { 134 | options.size = options.contents.length; 135 | } 136 | return new VirtualStats({ 137 | dev: 8675309, 138 | nlink: 1, 139 | uid: 501, 140 | gid: 20, 141 | rdev: 0, 142 | blksize: 4096, 143 | ino: 44700000, 144 | mode: 33188, 145 | size: options.size, 146 | atime: options.mtime, 147 | mtime: options.mtime, 148 | ctime: options.ctime, 149 | birthtime: options.ctime, 150 | }); 151 | } 152 | } 153 | 154 | module.exports = VirtualModulePlugin; 155 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "virtual-module-webpack-plugin", 3 | "version": "0.4.1", 4 | "author": "Rob Marscher @rmarscher", 5 | "description": "Adds the contents of a virtual file to webpack's cached file system without writing it to disk", 6 | "engines": { 7 | "node": ">= 4.0.0" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/rmarscher/virtual-module-webpack-plugin.git" 12 | }, 13 | "keywords": [ 14 | "webpack", 15 | "plugin" 16 | ], 17 | "bugs": { 18 | "url": "https://github.com/rmarscher/virtual-module-webpack-plugin/issues" 19 | }, 20 | "homepage": "https://github.com/rmarscher/virtual-module-webpack-plugin", 21 | "license": "MIT", 22 | "scripts": { 23 | "fix": "npm run lint -- --fix", 24 | "lint": "eslint . ./", 25 | "publish-patch": "npm run test && npm version patch && git push && git push --tags && npm publish", 26 | "test": "tap test/unit/*.* test/integration/*.* --coverage" 27 | }, 28 | "devDependencies": { 29 | "babel-eslint": "^7.1.1", 30 | "css-loader": "^0.26.1", 31 | "enhanced-resolve": "^3.0.3", 32 | "eslint": "^3.11.1", 33 | "eslint-config-airbnb-base": "^10.0.1", 34 | "eslint-plugin-import": "^2.2.0", 35 | "extract-text-webpack-plugin": "v2.0.0-beta.5", 36 | "json-loader": "^0.5.4", 37 | "raw-loader": "^0.5.1", 38 | "style-loader": "^0.13.1", 39 | "tap": "^8.0.1", 40 | "webpack": "^2.2.0" 41 | }, 42 | "config": { 43 | "nyc": { 44 | "exclude": [ 45 | "node_modules/**", 46 | "test/**" 47 | ] 48 | } 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /test/integration/cases/contents-async/expected/file.txt: -------------------------------------------------------------------------------- 1 | a -------------------------------------------------------------------------------- /test/integration/cases/contents-async/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | // eslint-disable-next-line import/no-unresolved 4 | require('./a.txt'); 5 | -------------------------------------------------------------------------------- /test/integration/cases/contents-async/webpack.config.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const ExtractTextPlugin = require('extract-text-webpack-plugin'); 4 | const VirtualModulePlugin = require('../../../../index'); 5 | 6 | function contents() { 7 | // Uncomment the following Promise to test async contents that take a while 8 | // to resolve. It is commented to keep the tests from taking long to run. 9 | // return new Promise(resolve => { 10 | // setTimeout(() => { 11 | // resolve('a'); 12 | // }, 1000); 13 | // }); 14 | return Promise.resolve('a'); 15 | } 16 | 17 | // If we could figure out how to get webpack to delay the resolve until a 18 | // callback is called, this would work. But unfortunately, that doesn't 19 | // seem to be happening. More investigation of webpack internals would be 20 | // necessary to figure out if there's a way. 21 | // module.exports = function webpackConfig() { 22 | // return { 23 | // entry: './index', 24 | // plugins: [ 25 | // new VirtualModulePlugin({ 26 | // moduleName: './a.txt', 27 | // contents, 28 | // }), 29 | // new ExtractTextPlugin('file.txt'), 30 | // ], 31 | // }; 32 | // }; 33 | 34 | // For now, this is the recommended way to deal with async contents. Have the 35 | // webpack config return a Promise and resolve the async contents first before 36 | // resolving the webpack config. Latest versions of Webpack 1 and 2 should support 37 | // a Promise-based config. If you call webpack API directly (as done in the 38 | // integration tests here in test/integration/index.js), you need to resolve 39 | // the Promise before calling webpack. 40 | module.exports = contents().then(asyncContents => ({ 41 | entry: './index', 42 | plugins: [ 43 | new VirtualModulePlugin({ 44 | moduleName: './a.txt', 45 | contents: asyncContents, 46 | }), 47 | new ExtractTextPlugin('file.txt'), 48 | ], 49 | })); 50 | -------------------------------------------------------------------------------- /test/integration/cases/contents-function/expected/file.txt: -------------------------------------------------------------------------------- 1 | a -------------------------------------------------------------------------------- /test/integration/cases/contents-function/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | // eslint-disable-next-line import/no-unresolved 4 | require('./a.txt'); 5 | -------------------------------------------------------------------------------- /test/integration/cases/contents-function/webpack.config.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const ExtractTextPlugin = require('extract-text-webpack-plugin'); 4 | const VirtualModulePlugin = require('../../../../index'); 5 | 6 | function contents() { 7 | return 'a'; 8 | } 9 | 10 | module.exports = function webpackConfig() { 11 | return { 12 | entry: './index', 13 | plugins: [ 14 | new VirtualModulePlugin({ 15 | moduleName: './a.txt', 16 | contents, 17 | }), 18 | new ExtractTextPlugin('file.txt'), 19 | ], 20 | }; 21 | }; 22 | -------------------------------------------------------------------------------- /test/integration/cases/contents-object/expected/#file.txt#: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmarscher/virtual-module-webpack-plugin/c26f193575833df60aec36455a31d20037f7a37e/test/integration/cases/contents-object/expected/#file.txt# -------------------------------------------------------------------------------- /test/integration/cases/contents-object/expected/file.txt: -------------------------------------------------------------------------------- 1 | {"a":"a"} -------------------------------------------------------------------------------- /test/integration/cases/contents-object/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | // eslint-disable-next-line import/no-unresolved 4 | require('./a.txt'); 5 | -------------------------------------------------------------------------------- /test/integration/cases/contents-object/webpack.config.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const ExtractTextPlugin = require('extract-text-webpack-plugin'); 4 | const VirtualModulePlugin = require('../../../../index'); 5 | 6 | module.exports = function webpackConfig() { 7 | return { 8 | entry: './index', 9 | plugins: [ 10 | new VirtualModulePlugin({ 11 | moduleName: './a.txt', 12 | contents: { a: 'a' }, 13 | }), 14 | new ExtractTextPlugin('file.txt'), 15 | ], 16 | }; 17 | }; 18 | -------------------------------------------------------------------------------- /test/integration/cases/simple/expected/file.txt: -------------------------------------------------------------------------------- 1 | a -------------------------------------------------------------------------------- /test/integration/cases/simple/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | // eslint-disable-next-line import/no-unresolved 4 | require('./a.txt'); 5 | -------------------------------------------------------------------------------- /test/integration/cases/simple/webpack.config.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const ExtractTextPlugin = require('extract-text-webpack-plugin'); 4 | const VirtualModulePlugin = require('../../../../index'); 5 | 6 | module.exports = function webpackConfig() { 7 | return { 8 | entry: './index', 9 | plugins: [ 10 | new VirtualModulePlugin({ 11 | moduleName: './a.txt', 12 | contents: 'a', 13 | }), 14 | new ExtractTextPlugin('file.txt'), 15 | ], 16 | }; 17 | }; 18 | -------------------------------------------------------------------------------- /test/integration/index.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable no-underscore-dangle */ 2 | 3 | 'use strict'; 4 | 5 | const tap = require('tap'); 6 | const ExtractTextPlugin = require('extract-text-webpack-plugin'); 7 | 8 | const fs = require('fs'); 9 | const path = require('path'); 10 | const webpack = require('webpack'); 11 | 12 | const cases = fs.readdirSync(path.join(__dirname, 'cases')); 13 | 14 | function readFileOrEmpty(filePath) { 15 | try { 16 | return fs.readFileSync(filePath, 'utf-8'); 17 | } catch (e) { 18 | return ''; 19 | } 20 | } 21 | 22 | function runTestCase(testCase) { 23 | return (t) => { 24 | const testDirectory = path.join(__dirname, 'cases', testCase); 25 | const outputDirectory = path.join(__dirname, 'dist', testCase); 26 | let webpackConfig = { entry: { test: './index.js' } }; 27 | 28 | const configFile = path.join(testDirectory, 'webpack.config.js'); 29 | if (fs.existsSync(configFile)) { 30 | // eslint-disable-next-line import/no-dynamic-require, global-require 31 | webpackConfig = require(configFile); 32 | if (typeof webpackConfig === 'function') { 33 | webpackConfig = webpackConfig(); 34 | } 35 | } 36 | if (typeof webpackConfig.then !== 'function') { 37 | webpackConfig = Promise.resolve(webpackConfig); 38 | } 39 | webpackConfig.then((options) => { 40 | options.context = testDirectory; 41 | if (!options.module) { 42 | options.module = {}; 43 | } 44 | if (!options.module.loaders) { 45 | options.module.loaders = [ 46 | { test: /\.txt$/, loader: ExtractTextPlugin.extract('raw-loader') }, 47 | ]; 48 | } 49 | if (!options.output) { 50 | options.output = { filename: '[name].js' }; 51 | } 52 | if (!options.output.path) { 53 | options.output.path = outputDirectory; 54 | } 55 | 56 | webpack(options, (err, stats) => { 57 | if (err) { 58 | t.threw(err); 59 | return; 60 | } 61 | if (stats.hasErrors()) { 62 | t.threw(new Error(stats.toString())); 63 | return; 64 | } 65 | const testFile = path.join(outputDirectory, 'test.js'); 66 | if (fs.existsSync(testFile)) { 67 | // eslint-disable-next-line import/no-dynamic-require, global-require 68 | require(testFile)(t); 69 | } 70 | const expectedDirectory = path.join(testDirectory, 'expected'); 71 | fs.readdirSync(expectedDirectory).forEach((file) => { 72 | const filePath = path.join(expectedDirectory, file); 73 | const actualPath = path.join(outputDirectory, file); 74 | t.equal( 75 | readFileOrEmpty(actualPath), 76 | readFileOrEmpty(filePath), 77 | `${file} should be correct` 78 | ); 79 | }); 80 | t.end(); 81 | }); 82 | }); 83 | }; 84 | } 85 | 86 | tap.test('integration', (t) => { 87 | t.plan(cases.length); 88 | cases.forEach((testCase) => { 89 | t.test(testCase, runTestCase(testCase)); 90 | }); 91 | }); 92 | -------------------------------------------------------------------------------- /test/unit/populate-filesystem.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const tap = require('tap'); 4 | const path = require('path'); 5 | const CachedInputFileSystem = require('enhanced-resolve/lib/CachedInputFileSystem'); 6 | const NodeJsInputFileSystem = require('enhanced-resolve/lib/NodeJsInputFileSystem'); 7 | const VirtualModulePlugin = require('../../'); 8 | 9 | tap.test('stats', (t) => { 10 | t.plan(4); 11 | const fs = new NodeJsInputFileSystem(); 12 | const cachedFs = new CachedInputFileSystem(fs, 60); 13 | const modulePath = path.join(__dirname, 'test.js'); 14 | const contents = '12345'; 15 | VirtualModulePlugin.populateFilesystem({ 16 | fs: cachedFs, 17 | modulePath, 18 | contents, 19 | }); 20 | cachedFs.stat(modulePath, (err, stats) => { 21 | t.equal(err, null); 22 | t.equal(stats.isFile(), true); 23 | }); 24 | cachedFs.readFile(modulePath, (err, readFile) => { 25 | t.equal(err, null); 26 | t.equal(readFile, contents); 27 | }); 28 | }); 29 | -------------------------------------------------------------------------------- /test/unit/stats.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const tap = require('tap'); 4 | const VirtualModulePlugin = require('../../'); 5 | 6 | tap.test('stats', (t) => { 7 | const stats = VirtualModulePlugin.createStats({ 8 | contents: '12345', 9 | }); 10 | t.equal(stats.isFile(), true); 11 | t.equal(stats.isDirectory(), false); 12 | t.equal(stats.isBlockDevice(), false); 13 | t.equal(stats.isCharacterDevice(), false); 14 | t.equal(stats.isSymbolicLink(), false); 15 | t.equal(stats.isFIFO(), false); 16 | t.equal(stats.isSocket(), false); 17 | t.equal(stats.size, 5); 18 | t.end(); 19 | }); 20 | 21 | tap.test('stats-empty', (t) => { 22 | const stats = VirtualModulePlugin.createStats(); 23 | t.equal(stats.isFile(), true); 24 | t.equal(stats.isDirectory(), false); 25 | t.equal(stats.isBlockDevice(), false); 26 | t.equal(stats.isCharacterDevice(), false); 27 | t.equal(stats.isSymbolicLink(), false); 28 | t.equal(stats.isFIFO(), false); 29 | t.equal(stats.isSocket(), false); 30 | t.equal(stats.size, 0); 31 | t.end(); 32 | }); 33 | 34 | -------------------------------------------------------------------------------- /virtual-stats.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Used to cache a stats object for the virtual file. 3 | * Extracted from the `mock-fs` package. 4 | * 5 | * @author Tim Schaub http://tschaub.net/ 6 | * @link https://github.com/tschaub/mock-fs/blob/master/lib/binding.js 7 | * @link https://github.com/tschaub/mock-fs/blob/master/license.md 8 | */ 9 | 10 | /* eslint-disable no-restricted-syntax, no-prototype-builtins, no-continue */ 11 | /* eslint-disable no-bitwise, no-underscore-dangle */ 12 | 13 | 'use strict'; 14 | 15 | const constants = require('constants'); 16 | 17 | class VirtualStats { 18 | /** 19 | * Create a new stats object. 20 | * @param {Object} config Stats properties. 21 | * @constructor 22 | */ 23 | constructor(config) { 24 | for (const key in config) { 25 | if (!config.hasOwnProperty(key)) { 26 | continue; 27 | } 28 | this[key] = config[key]; 29 | } 30 | } 31 | 32 | /** 33 | * Check if mode indicates property. 34 | * @param {number} property Property to check. 35 | * @return {boolean} Property matches mode. 36 | */ 37 | _checkModeProperty(property) { 38 | return ((this.mode & constants.S_IFMT) === property); 39 | } 40 | 41 | 42 | /** 43 | * @return {Boolean} Is a directory. 44 | */ 45 | isDirectory() { 46 | return this._checkModeProperty(constants.S_IFDIR); 47 | } 48 | 49 | 50 | /** 51 | * @return {Boolean} Is a regular file. 52 | */ 53 | isFile() { 54 | return this._checkModeProperty(constants.S_IFREG); 55 | } 56 | 57 | 58 | /** 59 | * @return {Boolean} Is a block device. 60 | */ 61 | isBlockDevice() { 62 | return this._checkModeProperty(constants.S_IFBLK); 63 | } 64 | 65 | 66 | /** 67 | * @return {Boolean} Is a character device. 68 | */ 69 | isCharacterDevice() { 70 | return this._checkModeProperty(constants.S_IFCHR); 71 | } 72 | 73 | 74 | /** 75 | * @return {Boolean} Is a symbolic link. 76 | */ 77 | isSymbolicLink() { 78 | return this._checkModeProperty(constants.S_IFLNK); 79 | } 80 | 81 | 82 | /** 83 | * @return {Boolean} Is a named pipe. 84 | */ 85 | isFIFO() { 86 | return this._checkModeProperty(constants.S_IFIFO); 87 | } 88 | 89 | 90 | /** 91 | * @return {Boolean} Is a socket. 92 | */ 93 | isSocket() { 94 | return this._checkModeProperty(constants.S_IFSOCK); 95 | } 96 | } 97 | 98 | module.exports = VirtualStats; 99 | --------------------------------------------------------------------------------