├── .gitignore
├── components
├── vanilla
│ ├── .babelrc
│ ├── src
│ │ ├── hello-world.html
│ │ └── hello-world.js
│ ├── README.md
│ ├── package.json
│ ├── webpack.config.js
│ ├── dist
│ │ ├── hello-world.js
│ │ └── hello-world.html
│ └── yarn.lock
├── react
│ ├── .babelrc
│ ├── README.md
│ ├── package.json
│ ├── webpack.config.js
│ ├── src
│ │ └── hello-world.js
│ └── dist
│ │ └── hello-world.js
└── vue
│ ├── babel.config.js
│ ├── README.md
│ ├── dist
│ ├── demo.html
│ ├── vue-hello-world.min.js
│ ├── vue-hello-world.js.map
│ ├── vue-hello-world.js
│ └── vue-hello-world.min.js.map
│ ├── .gitignore
│ ├── src
│ └── HelloWorld.vue
│ └── package.json
├── demo.gif
├── elm-package.json
├── package.json
├── index.html
├── README.md
├── webpack.config.js
├── index.js
└── elm-src
└── Main.elm
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | elm-stuff
3 | .idea
4 | build
--------------------------------------------------------------------------------
/components/vanilla/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": ["es2015"]
3 | }
4 |
--------------------------------------------------------------------------------
/components/react/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": ["es2015", "react"]
3 | }
4 |
--------------------------------------------------------------------------------
/components/vanilla/src/hello-world.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/demo.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/err0r500/microfrontends/HEAD/demo.gif
--------------------------------------------------------------------------------
/components/vue/babel.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | presets: [
3 | '@vue/app'
4 | ]
5 | }
6 |
--------------------------------------------------------------------------------
/components/vue/README.md:
--------------------------------------------------------------------------------
1 | # vue-web-component-project
2 |
3 | ## build for web component
4 | ```bash
5 | ./node_modules/.bin/vue-cli-service build --target wc --name vue-hello-world ./src/HelloWorld.vue
6 | ```
--------------------------------------------------------------------------------
/components/vue/dist/demo.html:
--------------------------------------------------------------------------------
1 |
2 |
vue-hello-world demo
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/components/vue/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | node_modules
3 |
4 | # local env files
5 | .env.local
6 | .env.*.local
7 |
8 | # Log files
9 | npm-debug.log*
10 | yarn-debug.log*
11 | yarn-error.log*
12 |
13 | # Editor directories and files
14 | .idea
15 | .vscode
16 | *.suo
17 | *.ntvs*
18 | *.njsproj
19 | *.sln
20 | *.sw*
21 |
--------------------------------------------------------------------------------
/components/react/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | from https://codeburst.io/web-components-by-example-part-6-6c4c1225c43a
4 |
5 | https://github.com/larkintuckerllc/hello-webcomponents/tree/master/webpack
6 |
7 | ## install
8 | ```bash
9 | npm install
10 | ```
11 | ## build
12 | ```bash
13 | ./node_modules/.bin/webpack -p --env.NODE_ENV=production
14 | ```
--------------------------------------------------------------------------------
/components/vanilla/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | from https://codeburst.io/web-components-by-example-part-6-6c4c1225c43a
4 |
5 | https://github.com/larkintuckerllc/hello-webcomponents/tree/master/webpack
6 |
7 | ## install
8 | ```bash
9 | npm install
10 | ```
11 | ## build
12 | ```bash
13 | ./node_modules/.bin/webpack -p --env.NODE_ENV=production
14 | ```
--------------------------------------------------------------------------------
/components/vanilla/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "webpack",
3 | "version": "1.0.0",
4 | "main": "index.js",
5 | "license": "MIT",
6 | "devDependencies": {
7 | "babel-core": "^6.26.0",
8 | "babel-loader": "^7.1.2",
9 | "babel-preset-es2015": "^6.24.1",
10 | "html-webpack-inline-source-plugin": "^0.0.9",
11 | "html-webpack-plugin": "^2.30.1",
12 | "uglifyjs-webpack-plugin": "^0.4.6",
13 | "webpack": "^3.6.0"
14 | },
15 | "dependencies": {}
16 | }
17 |
--------------------------------------------------------------------------------
/elm-package.json:
--------------------------------------------------------------------------------
1 | {
2 | "version": "1.0.0",
3 | "summary": "microfrontends for fun and profit",
4 | "repository": "https://github.com/user/project.git",
5 | "license": "BSD3",
6 | "source-directories": [
7 | "elm-src/"
8 | ],
9 | "exposed-modules": [],
10 | "dependencies": {
11 | "elm-lang/core": "5.1.1 <= v < 6.0.0",
12 | "elm-lang/dom": "1.1.1 <= v < 2.0.0",
13 | "elm-lang/html": "2.0.0 <= v < 3.0.0"
14 | },
15 | "elm-version": "0.18.0 <= v < 0.19.0"
16 | }
17 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "realworld-microfrontends",
3 | "scripts": {
4 | "start": "webpack-dev-server"
5 | },
6 | "dependencies": {
7 | "@webcomponents/webcomponentsjs": "^2.0.4"
8 | },
9 | "devDependencies": {
10 | "copy-webpack-plugin": "^4.5.2",
11 | "elm": "^0.18.0",
12 | "elm-webpack-loader": "^4.5.0",
13 | "file-loader": "^1.1.11",
14 | "html-webpack-plugin": "^3.2.0",
15 | "webpack": "^4.6.0",
16 | "webpack-cli": "^2.0.14",
17 | "webpack-dev-server": "^3.1.3"
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/components/react/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "webpack",
3 | "version": "1.0.0",
4 | "main": "index.js",
5 | "license": "MIT",
6 | "dependencies": {
7 | "web-react-components": "^1.4.1"
8 | },
9 | "peerDependencies": {
10 | "react": ">=15.0.1",
11 | "react-dom": ">=15.0.1"
12 | },
13 | "devDependencies": {
14 | "babel-core": "^6.26.0",
15 | "babel-loader": "^7.1.2",
16 | "babel-preset-es2015": "^6.24.1",
17 | "babel-preset-react": "^6.24.1",
18 | "react": ">=15.0.1",
19 | "react-dom": ">=15.0.1",
20 | "webpack": "^3.6.0"
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/components/vue/src/HelloWorld.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
Vue
4 |
5 | -
6 | {{ item }}
7 |
8 |
9 |
10 |
Counter = {{ countervalue }}
11 |
12 |
13 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Microfrontends with Elm and webcomponents
2 |
3 | ## Demo
4 | 
5 |
6 | 3 webcomponents (vanilla, React & Vue) are managed by a main Elm logic (providing data and event Handlers)
7 |
8 | ## Test the app
9 | ```bash
10 | git clone git@github.com:err0r500/microfrontends.git
11 | cd microfrontends
12 | npm install
13 | npm run start
14 | ```
15 |
16 | ## Motivation
17 | Build dumb components in whatever framework you're comfortable with and let Elm shine with the app's logic
18 |
19 | ## Notes
20 | - the detail field in the dispatchEvent methods is an array for every component because it's enforced with the Vue wrapper
21 | so we don't have to provide different event decoders in Elm.
22 | - injects dynamically scripts in head (html imports are deprecated)
--------------------------------------------------------------------------------
/components/react/webpack.config.js:
--------------------------------------------------------------------------------
1 | const webpack = require('webpack');
2 | const path = require('path');
3 |
4 | module.exports = env => {
5 | return ({
6 | entry: './src/hello-world.js',
7 | output: {
8 | path: path.resolve(__dirname, 'dist'),
9 | filename: 'hello-world.js',
10 | },
11 | module: {
12 | rules: [
13 | {
14 | test: /\.js$/,
15 | exclude: /node_modules/,
16 | loader: 'babel-loader',
17 | },
18 | ],
19 | },
20 | plugins: [
21 | new webpack.DefinePlugin({
22 | 'process.env.NODE_ENV': JSON.stringify(env.NODE_ENV),
23 | }),
24 | ],
25 | externals: {
26 | "react": "React",
27 | "react-dom": "ReactDOM"
28 | }
29 | });
30 | };
31 |
--------------------------------------------------------------------------------
/webpack.config.js:
--------------------------------------------------------------------------------
1 | let path = require("path");
2 | // const CopyWebpackPlugin = require('copy-webpack-plugin')
3 |
4 | module.exports = () => ({
5 | entry: {
6 | app: [
7 | './index.js'
8 | ]
9 | },
10 | mode: "development",
11 | output: {
12 | path: path.resolve(__dirname + '/build'),
13 | filename: 'elm-app.js',
14 | },
15 | module: {
16 | rules: [
17 | {
18 | test: /\.html$/,
19 | exclude: [/node_modules/, /bower_components/],
20 | loader: 'file-loader?name=[name].[ext]',
21 | },
22 | {
23 | test: /\.elm$/,
24 | exclude: [/elm-stuff/, /node_modules/],
25 | loader: 'elm-webpack-loader?verbose=true&warn=true',
26 | }
27 | ],
28 | noParse: /\.elm$/,
29 | },
30 | devServer: {
31 | inline: true,
32 | stats: {colors: true},
33 | },
34 | });
--------------------------------------------------------------------------------
/components/vue/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "vue-web-component-project",
3 | "version": "0.1.0",
4 | "private": true,
5 | "scripts": {
6 | "serve": "vue-cli-service serve",
7 | "build": "vue-cli-service build",
8 | "lint": "vue-cli-service lint"
9 | },
10 | "dependencies": {
11 | "vue": "^2.5.17"
12 | },
13 | "devDependencies": {
14 | "@vue/cli-plugin-babel": "^3.0.1",
15 | "@vue/cli-plugin-eslint": "^3.0.1",
16 | "@vue/cli-service": "^3.0.1",
17 | "vue-template-compiler": "^2.5.17"
18 | },
19 | "eslintConfig": {
20 | "root": true,
21 | "env": {
22 | "node": true
23 | },
24 | "extends": [
25 | "plugin:vue/essential",
26 | "eslint:recommended"
27 | ],
28 | "rules": {},
29 | "parserOptions": {
30 | "parser": "babel-eslint"
31 | }
32 | },
33 | "postcss": {
34 | "plugins": {
35 | "autoprefixer": {}
36 | }
37 | },
38 | "browserslist": [
39 | "> 1%",
40 | "last 2 versions",
41 | "not ie <= 8"
42 | ]
43 | }
44 |
--------------------------------------------------------------------------------
/components/vanilla/webpack.config.js:
--------------------------------------------------------------------------------
1 | const webpack = require('webpack');
2 | const path = require('path');
3 | const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
4 | const HtmlWebpackPlugin = require('html-webpack-plugin');
5 | const HtmlWebpackInlineSourcePlugin = require('html-webpack-inline-source-plugin');
6 |
7 | module.exports = env => {
8 | return ({
9 | entry: './src/hello-world.js',
10 | output: {
11 | path: path.resolve(__dirname, 'dist'),
12 | filename: 'hello-world.js',
13 | },
14 | module: {
15 | rules: [
16 | {
17 | test: /\.js$/,
18 | exclude: /node_modules/,
19 | loader: 'babel-loader',
20 | },
21 | ],
22 | },
23 | plugins: [
24 | new UglifyJSPlugin(),
25 | new HtmlWebpackPlugin({
26 | template: path.join(__dirname, 'src', 'hello-world.html'),
27 | filename: 'hello-world.html',
28 | inlineSource: '.js$',
29 | }),
30 | new HtmlWebpackInlineSourcePlugin(),
31 | new webpack.DefinePlugin({
32 | 'process.env.NODE_ENV': JSON.stringify(env.NODE_ENV),
33 | }),
34 | ],
35 | });
36 | };
37 |
--------------------------------------------------------------------------------
/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 |
4 | // Require index.html so it gets copied to dist (for local dev only)
5 | require('./index.html');
6 | let Elm = require('./elm-src/Main.elm');
7 |
8 | let mountNode = document.createElement("DIV");
9 | mountNode.id = "app";
10 | document.body.appendChild(mountNode);
11 |
12 | let app = Elm.Main.embed(mountNode, {env: process.env.NODE_ENV});
13 |
14 |
15 | function appendScript(src) {
16 | let link = document.createElement('script');
17 | link.setAttribute('type', 'module');
18 | link.setAttribute('src', src);
19 | document.head.appendChild(link);
20 | }
21 |
22 | // subscription to the load out port from elm
23 | app.ports.loadWebComponent.subscribe(function (componentToLoad) {
24 | switch (componentToLoad) {
25 | case "vanilla-hello-world":
26 | appendScript("components/vanilla/dist/hello-world.js");
27 | break;
28 | case "react-hello-world":
29 | appendScript("components/react/dist/hello-world.js");
30 | break;
31 | case "vue-hello-world":
32 | appendScript("components/vue/dist/vue-hello-world.js");
33 | break;
34 | }
35 | });
--------------------------------------------------------------------------------
/components/react/src/hello-world.js:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import {register} from 'web-react-components';
3 |
4 | class App extends React.Component {
5 | constructor(props) {
6 | super(props);
7 | }
8 |
9 | render() {
10 | const checklist = this.props.checklistvalue.map((item, index) =>
11 | this.props.deleteItem(index)}>
12 | {item}
13 |
14 | );
15 |
16 | return (
17 |
React
18 |
19 |
20 |
Counter = {this.props.countervalue}
21 |
)
22 | }
23 | }
24 |
25 | register(
26 | App,
27 | 'react-hello-world',
28 | ['countervalue', 'checklistvalue'],
29 | {
30 | customEvent: () => new Event('custom-event', {bubbles: true}),
31 | deleteItem: (indexToDelete) => new CustomEvent('delete-item', {bubbles: true, detail: [indexToDelete]}) // as an array, just in order to use the same event format as Vue (totally optional)
32 | }
33 | );
--------------------------------------------------------------------------------
/components/vanilla/src/hello-world.js:
--------------------------------------------------------------------------------
1 | // this code looks pretty ugly and subject to memory leaks (events not removed)
2 |
3 | class HelloWorld extends HTMLElement {
4 | constructor() {
5 | super();
6 |
7 | const shadowRootEl = this.attachShadow({mode: 'open'});
8 | shadowRootEl.innerHTML = `
9 |
10 |
Vanilla
11 |
12 |
13 |
Counter =
14 |
`;
15 | }
16 |
17 | static get observedAttributes() {
18 | return ['counter-value', 'checklist-value'];
19 | }
20 |
21 | connectedCallback() {
22 | let _this = this;
23 |
24 | this.shadowRoot.querySelector('#increment').addEventListener('click', function () {
25 | _this.dispatchEvent(new CustomEvent("counter-event", {
26 | bubbles: true,
27 | cancelable: false,
28 | }));
29 | });
30 | }
31 |
32 | attributeChangedCallback(name, oldValue, newValue) {
33 | let _this = this;
34 | if (newValue === oldValue) {
35 | return
36 | }
37 |
38 | switch (name) {
39 | case 'counter-value':
40 | this.shadowRoot.querySelector('.status').innerHTML = newValue;
41 | break;
42 | case 'checklist-value':
43 | this.shadowRoot.querySelector('#list').innerHTML = '';
44 | let list = JSON.parse(newValue);
45 | list.forEach((e, i) => {
46 | const listE = document.createElement("li");
47 | listE.innerHTML = e;
48 | listE.addEventListener('click', function () {
49 | _this.dispatchEvent(new CustomEvent("delete-item", {
50 | bubbles: true,
51 | cancelable: false,
52 | detail:[i],
53 | }));
54 | });
55 |
56 | this.shadowRoot.querySelector('#list').appendChild(listE);
57 | }
58 | );
59 | break;
60 | }
61 | }
62 | }
63 |
64 | window.customElements.define('vanilla-hello-world', HelloWorld);
65 |
--------------------------------------------------------------------------------
/components/vanilla/dist/hello-world.js:
--------------------------------------------------------------------------------
1 | !function(e){function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var n={};t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=0)}([function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function i(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var c=function(){function e(e,t){for(var n=0;n\n Vanilla
\n \n \n Counter =
\n ',e}return i(t,e),c(t,[{key:"connectedCallback",value:function(){var e=this;this.shadowRoot.querySelector("#increment").addEventListener("click",function(){e.dispatchEvent(new CustomEvent("counter-event",{bubbles:!0,cancelable:!1}))})}},{key:"attributeChangedCallback",value:function(e,t,n){var r=this,o=this;if(n!==t)switch(e){case"counter-value":this.shadowRoot.querySelector(".status").innerHTML=n;break;case"checklist-value":this.shadowRoot.querySelector("#list").innerHTML="",JSON.parse(n).forEach(function(e,t){var n=document.createElement("li");n.innerHTML=e,n.addEventListener("click",function(){o.dispatchEvent(new CustomEvent("delete-item",{bubbles:!0,cancelable:!1,detail:[t]}))}),r.shadowRoot.querySelector("#list").appendChild(n)})}}}],[{key:"observedAttributes",get:function(){return["counter-value","checklist-value"]}}]),t}(HTMLElement);window.customElements.define("vanilla-hello-world",u)}]);
--------------------------------------------------------------------------------
/components/vanilla/dist/hello-world.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/elm-src/Main.elm:
--------------------------------------------------------------------------------
1 | port module Main exposing (..)
2 |
3 | import Html exposing (..)
4 | import Html.Attributes
5 | import Html.Events
6 | import Json.Decode as JD exposing (..)
7 |
8 |
9 | main : Program JD.Value Model Msg
10 | main =
11 | Html.programWithFlags
12 | { init = initialState
13 | , update = update
14 | , view = view
15 | , subscriptions = \_ -> Sub.none
16 | }
17 |
18 |
19 | type alias Model =
20 | { count : Int
21 | , checkList : List String
22 | }
23 |
24 |
25 | initialState : JD.Value -> ( Model, Cmd Msg )
26 | initialState attrs =
27 | ( { count = 0
28 | , checkList = [ "item0", "item1", "item2", "item3" ]
29 | }
30 | , Cmd.batch
31 | [ loadWebComponent "vue-hello-world"
32 | , loadWebComponent "react-hello-world"
33 | , loadWebComponent "vanilla-hello-world"
34 | ]
35 | )
36 |
37 |
38 | type Msg
39 | = UpdateCounter Int
40 | | LoadComponent String
41 | | AppendToChecklist String
42 | | DeleteFromCheckList EventPayload
43 |
44 |
45 | port loadWebComponent : String -> Cmd msg
46 |
47 |
48 | update : Msg -> Model -> ( Model, Cmd Msg )
49 | update msg model =
50 | case msg of
51 | LoadComponent str ->
52 | ( model, loadWebComponent str )
53 |
54 | UpdateCounter by ->
55 | { model | count = model.count + by } ! []
56 |
57 | AppendToChecklist str ->
58 | { model | checkList = model.checkList ++ [ str ] } ! []
59 |
60 | DeleteFromCheckList indexList ->
61 | let
62 | firstIndex =
63 | List.head indexList.detail
64 | in
65 | case firstIndex of
66 | Nothing ->
67 | ( model, Cmd.none )
68 |
69 | Just index ->
70 | { model | checkList = (List.take (index) model.checkList) ++ (List.drop (index + 1) model.checkList) } ! []
71 |
72 |
73 | vanillaComponent : List (Html.Attribute a) -> List (Html a) -> Html a
74 | vanillaComponent =
75 | Html.node "vanilla-hello-world"
76 |
77 |
78 | reactComponent : List (Html.Attribute a) -> List (Html a) -> Html a
79 | reactComponent =
80 | Html.node "react-hello-world"
81 |
82 |
83 | vueComponent : List (Html.Attribute a) -> List (Html a) -> Html a
84 | vueComponent =
85 | Html.node "vue-hello-world"
86 |
87 |
88 | view : Model -> Html Msg
89 | view model =
90 | Html.div
91 | [ Html.Attributes.style
92 | [ ( "font-size", "30px" )
93 | , ( "text-align", "center" )
94 | ]
95 | ]
96 | [ Html.div [ floatLeftCol ]
97 | [ elmDiv model
98 | ]
99 | , Html.div [ floatLeftCol ]
100 | [ vanillaComponent
101 | [ Html.Attributes.attribute "counter-value" (toString model.count)
102 | , Html.Attributes.attribute "checklist-value" (toString model.checkList)
103 | , Html.Events.on "counter-event" (JD.succeed <| UpdateCounter 1)
104 | , Html.Events.on "delete-item" (JD.map DeleteFromCheckList eventDecoder)
105 | ]
106 | []
107 | ]
108 | , Html.div [ floatLeftCol ]
109 | [ reactComponent
110 | [ Html.Attributes.attribute "countervalue" (toString model.count)
111 | , Html.Attributes.attribute "checklistvalue" (toString model.checkList)
112 | , Html.Events.on "custom-event" (JD.succeed <| UpdateCounter 100)
113 | , Html.Events.on "delete-item" (JD.map DeleteFromCheckList eventDecoder)
114 | ]
115 | []
116 | ]
117 | , Html.div [ floatLeftCol ]
118 | [ vueComponent
119 | [ Html.Attributes.attribute "countervalue" (toString model.count)
120 | , Html.Attributes.attribute "checklistvalue" (toString model.checkList)
121 | , Html.Events.on "counter-event" (JD.succeed <| UpdateCounter -5)
122 | , Html.Events.on "delete-item" (JD.map DeleteFromCheckList eventDecoder)
123 | ]
124 | []
125 | ]
126 | ]
127 |
128 |
129 | type alias EventPayload =
130 | { detail : List Int -- Vue passes an array in the detail field, so in order to don't be too complex, all the other events use this format
131 | }
132 |
133 |
134 | eventDecoder : Decoder EventPayload
135 | eventDecoder =
136 | JD.map EventPayload (field "detail" (list int))
137 |
138 |
139 | floatLeftCol : Html.Attribute Msg
140 | floatLeftCol =
141 | Html.Attributes.style
142 | [ ( "float", "left" )
143 | , ( "width", "25%" )
144 | ]
145 |
146 |
147 | elmDiv : Model -> Html Msg
148 | elmDiv model =
149 | Html.div
150 | [ Html.Attributes.style
151 | [ ( "background-color", "#BE6C84" )
152 | ]
153 | ]
154 | [ h2 [] [ Html.text "elm" ]
155 | , ul []
156 | (List.indexedMap
157 | (\index str -> li [ Html.Events.onClick <| DeleteFromCheckList (EventPayload [ index ]) ] [ text str ])
158 | model.checkList
159 | )
160 | , button [ Html.Events.onClick <| UpdateCounter 5 ] [ Html.text "Click me to increment by 5" ]
161 | , p [] [ Html.text "Counter = ", span [] [ Html.text <| toString model.count ] ]
162 | ]
163 |
--------------------------------------------------------------------------------
/components/vue/dist/vue-hello-world.min.js:
--------------------------------------------------------------------------------
1 | (function(t){var e={};function n(r){if(e[r])return e[r].exports;var o=e[r]={i:r,l:!1,exports:{}};return t[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=t,n.c=e,n.d=function(t,e,r){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:r})},n.r=function(t){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"===typeof t&&t&&t.__esModule)return t;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var o in t)n.d(r,o,function(e){return t[e]}.bind(null,o));return r},n.n=function(t){var e=t&&t.__esModule?function(){return t["default"]}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s="5a74")})({"1eb2":function(t,e,n){var r;"undefined"!==typeof window&&((r=window.document.currentScript)&&(r=r.src.match(/(.+\/)[^/]+\.js$/))&&(n.p=r[1]))},2350:function(t,e){function n(t,e){var n=t[1]||"",o=t[3];if(!o)return n;if(e&&"function"===typeof btoa){var i=r(o),s=o.sources.map(function(t){return"/*# sourceURL="+o.sourceRoot+t+" */"});return[n].concat(s).concat([i]).join("\n")}return[n].join("\n")}function r(t){var e=btoa(unescape(encodeURIComponent(JSON.stringify(t)))),n="sourceMappingURL=data:application/json;charset=utf-8;base64,"+e;return"/*# "+n+" */"}t.exports=function(t){var e=[];return e.toString=function(){return this.map(function(e){var r=n(e,t);return e[2]?"@media "+e[2]+"{"+r+"}":r}).join("")},e.i=function(t,n){"string"===typeof t&&(t=[[null,t,""]]);for(var r={},o=0;o{return t.replace(i,(t,e)=>e?e.toUpperCase():"")},u=/\B([A-Z])/g,c=t=>{return t.replace(u,"-$1").toLowerCase()};function a(t){const e={};return t.forEach(t=>{e[t]=void 0}),e}function l(t,e,n){t[e]=[].concat(t[e]||[]),t[e].unshift(n)}function p(t,e){if(t){const n=t.$options[e]||[];n.forEach(e=>{e.call(t)})}}function f(t,e){return new CustomEvent(t,{bubbles:!1,cancelable:!1,detail:e})}const d=t=>/function Boolean/.test(String(t)),h=t=>/function Number/.test(String(t));function b(t,e,{type:n}={}){if(d(n))return"true"===t||"false"===t?"true"===t:""===t||t===e||null!=t;if(h(n)){const e=parseFloat(t,10);return isNaN(e)?t:e}return t}function v(t,e){const n=[];for(let r=0,o=e.length;r{return t[e]=a[n[r]],t},{}),l(e,"beforeCreate",function(){const t=this.$emit;this.$emit=((e,...n)=>{return this.$root.$options.customElement.dispatchEvent(f(e,n)),t.call(this,e,...n)})}),l(e,"created",function(){o.forEach(t=>{this.$root.props[t]=this[t]})}),o.forEach(t=>{Object.defineProperty(m.prototype,t,{get(){return this._wrapper.props[t]},set(e){this._wrapper.props[t]=e},enumerable:!1,configurable:!0})}),u=!0}function h(t,e){const n=s(e),r=t.hasAttribute(e)?t.getAttribute(e):void 0;t._wrapper.props[n]=b(r,e,i[n])}class m extends HTMLElement{constructor(){super(),this.attachShadow({mode:"open"});const n=this._wrapper=new t({name:"shadow-root",customElement:this,shadowRoot:this.shadowRoot,data(){return{props:{},slotChildren:[]}},render(t){return t(e,{ref:"inner",props:this.props},this.slotChildren)}}),r=new MutationObserver(t=>{let e=!1;for(let n=0;n{t.props=a(o),r.forEach(t=>{h(this,t)})};u?n():e().then(t=>{(t.__esModule||"Module"===t[Symbol.toStringTag])&&(t=t.default),d(t),n()}),t.slotChildren=Object.freeze(v(t.$createElement,this.childNodes)),t.$mount(),this.shadowRoot.appendChild(t.$el)}}disconnectedCallback(){p(this.vueComponent,"deactivated")}}return n||d(e),m}var g=y;n("2350");function w(t,e,n,r,o,i,s,u){var c,a="function"===typeof t?t.options:t;if(e&&(a.render=e,a.staticRenderFns=n,a._compiled=!0),r&&(a.functional=!0),i&&(a._scopeId="data-v-"+i),s?(c=function(t){t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,t||"undefined"===typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),o&&o.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(s)},a._ssrRegister=c):o&&(c=u?function(){o.call(this,this.$root.$options.shadowRoot)}:o),c)if(a.functional){a._injectStyles=c;var l=a.render;a.render=function(t,e){return c.call(e),l(t,e)}}else{var p=a.beforeCreate;a.beforeCreate=p?[].concat(p,c):[c]}return{exports:t,options:a}}var C=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticStyle:{"background-color":"#F0747F"}},[n("h2",[t._v("Vue")]),n("ul",t._l(t.checklist,function(e,r){return n("li",{key:r,on:{click:function(e){t.$emit("delete-item",r)}}},[t._v("\n "+t._s(e)+"\n ")])})),n("button",{on:{click:function(e){t.$emit("counter-event")}}},[t._v("Click me to decrement by 5")]),n("p",[t._v("Counter = "+t._s(t.countervalue))])])},$=[],S={props:["countervalue","checklistvalue"],computed:{checklist:function(){return JSON.parse(this.checklistvalue||[])}}},E=S,j=w(E,C,$,!1,null,null,null,!0);j.options.__file="HelloWorld.vue";var O=j.exports;window.customElements.define("vue-hello-world",g(o.a,O))},"8bbf":function(t,e){t.exports=Vue}});
2 | //# sourceMappingURL=vue-hello-world.min.js.map
--------------------------------------------------------------------------------
/components/react/dist/hello-world.js:
--------------------------------------------------------------------------------
1 | !function(e){function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var n={};t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=1)}([function(e,t){e.exports=React},function(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function u(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var i=function(){function e(e,t){for(var n=0;n1&&void 0!==arguments[1]?arguments[1]:[],n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{useShadowDOM:!0},c=function(e){return(0,d.objectFromArray)(w,e)},a=function(e){return(0,d.mapObjectKeys)(d.sanitizeAttributeName,e)},s=(0,d.pipe)(c,a)(t),b=Object.keys(s).map(function(e){return e.toLowerCase()}),h=function(e){return function(t){return function(){var n=t.apply(void 0,arguments);n&&e.dispatchEvent(n)}}},y=function(t){var o=f({},O(t,s),(0,d.mapObject)(h(t),n)),u=r.useShadowDOM?t.shadowRoot:t;v.default.render(p.default.createElement(e,o,p.default.createElement("slot")),u)},m=function(e){function t(){o(this,t);var e=u(this,(t.__proto__||Object.getPrototypeOf(t)).call(this));return r.useShadowDOM&&e.attachShadow({mode:"open"}),e}return i(t,e),l(t,null,[{key:"observedAttributes",get:function(){return b}}]),l(t,[{key:"connectedCallback",value:function(){y(this)}},{key:"attributeChangedCallback",value:function(){y(this)}},{key:"disconnectedCallback",value:function(){var e=r.useShadowDOM?this.shadowRoot:this;v.default.unmountComponentAtNode(e)}}]),t}(HTMLElement);return j(m,s),m}function a(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{useShadowDOM:!0};return customElements.define(t,c(e,n,r,o))}Object.defineProperty(t,"__esModule",{value:!0}),t.convert=t.register=void 0;var l=function(){function e(e,t){for(var n=0;n {\n return str.replace(camelizeRE, (_, c) => c ? c.toUpperCase() : '')\n};\n\nconst hyphenateRE = /\\B([A-Z])/g;\nconst hyphenate = str => {\n return str.replace(hyphenateRE, '-$1').toLowerCase()\n};\n\nfunction getInitialProps (propsList) {\n const res = {};\n propsList.forEach(key => {\n res[key] = undefined;\n });\n return res\n}\n\nfunction injectHook (options, key, hook) {\n options[key] = [].concat(options[key] || []);\n options[key].unshift(hook);\n}\n\nfunction callHooks (vm, hook) {\n if (vm) {\n const hooks = vm.$options[hook] || [];\n hooks.forEach(hook => {\n hook.call(vm);\n });\n }\n}\n\nfunction createCustomEvent (name, args) {\n return new CustomEvent(name, {\n bubbles: false,\n cancelable: false,\n detail: args\n })\n}\n\nconst isBoolean = val => /function Boolean/.test(String(val));\nconst isNumber = val => /function Number/.test(String(val));\n\nfunction convertAttributeValue (value, name, { type } = {}) {\n if (isBoolean(type)) {\n if (value === 'true' || value === 'false') {\n return value === 'true'\n }\n if (value === '' || value === name) {\n return true\n }\n return value != null\n } else if (isNumber(type)) {\n const parsed = parseFloat(value, 10);\n return isNaN(parsed) ? value : parsed\n } else {\n return value\n }\n}\n\nfunction toVNodes (h, children) {\n const res = [];\n for (let i = 0, l = children.length; i < l; i++) {\n res.push(toVNode(h, children[i]));\n }\n return res\n}\n\nfunction toVNode (h, node) {\n if (node.nodeType === 3) {\n return node.data.trim() ? node.data : null\n } else if (node.nodeType === 1) {\n const data = {\n attrs: getAttributes(node),\n domProps: {\n innerHTML: node.innerHTML\n }\n };\n if (data.attrs.slot) {\n data.slot = data.attrs.slot;\n delete data.attrs.slot;\n }\n return h(node.tagName, data)\n } else {\n return null\n }\n}\n\nfunction getAttributes (node) {\n const res = {};\n for (let i = 0, l = node.attributes.length; i < l; i++) {\n const attr = node.attributes[i];\n res[attr.nodeName] = attr.nodeValue;\n }\n return res\n}\n\nfunction wrap (Vue, Component) {\n const isAsync = typeof Component === 'function' && !Component.cid;\n let isInitialized = false;\n let hyphenatedPropsList;\n let camelizedPropsList;\n let camelizedPropsMap;\n\n function initialize (Component) {\n if (isInitialized) return\n\n const options = typeof Component === 'function'\n ? Component.options\n : Component;\n\n // extract props info\n const propsList = Array.isArray(options.props)\n ? options.props\n : Object.keys(options.props || {});\n hyphenatedPropsList = propsList.map(hyphenate);\n camelizedPropsList = propsList.map(camelize);\n const originalPropsAsObject = Array.isArray(options.props) ? {} : options.props || {};\n camelizedPropsMap = camelizedPropsList.reduce((map, key, i) => {\n map[key] = originalPropsAsObject[propsList[i]];\n return map\n }, {});\n\n // proxy $emit to native DOM events\n injectHook(options, 'beforeCreate', function () {\n const emit = this.$emit;\n this.$emit = (name, ...args) => {\n this.$root.$options.customElement.dispatchEvent(createCustomEvent(name, args));\n return emit.call(this, name, ...args)\n };\n });\n\n injectHook(options, 'created', function () {\n // sync default props values to wrapper on created\n camelizedPropsList.forEach(key => {\n this.$root.props[key] = this[key];\n });\n });\n\n // proxy props as Element properties\n camelizedPropsList.forEach(key => {\n Object.defineProperty(CustomElement.prototype, key, {\n get () {\n return this._wrapper.props[key]\n },\n set (newVal) {\n this._wrapper.props[key] = newVal;\n },\n enumerable: false,\n configurable: true\n });\n });\n\n isInitialized = true;\n }\n\n function syncAttribute (el, key) {\n const camelized = camelize(key);\n const value = el.hasAttribute(key) ? el.getAttribute(key) : undefined;\n el._wrapper.props[camelized] = convertAttributeValue(\n value,\n key,\n camelizedPropsMap[camelized]\n );\n }\n\n class CustomElement extends HTMLElement {\n constructor () {\n super();\n this.attachShadow({ mode: 'open' });\n\n const wrapper = this._wrapper = new Vue({\n name: 'shadow-root',\n customElement: this,\n shadowRoot: this.shadowRoot,\n data () {\n return {\n props: {},\n slotChildren: []\n }\n },\n render (h) {\n return h(Component, {\n ref: 'inner',\n props: this.props\n }, this.slotChildren)\n }\n });\n\n // Use MutationObserver to react to future attribute & slot content change\n const observer = new MutationObserver(mutations => {\n let hasChildrenChange = false;\n for (let i = 0; i < mutations.length; i++) {\n const m = mutations[i];\n if (isInitialized && m.type === 'attributes' && m.target === this) {\n syncAttribute(this, m.attributeName);\n } else {\n hasChildrenChange = true;\n }\n }\n if (hasChildrenChange) {\n wrapper.slotChildren = Object.freeze(toVNodes(\n wrapper.$createElement,\n this.childNodes\n ));\n }\n });\n observer.observe(this, {\n childList: true,\n subtree: true,\n characterData: true,\n attributes: true\n });\n }\n\n get vueComponent () {\n return this._wrapper.$refs.inner\n }\n\n connectedCallback () {\n const wrapper = this._wrapper;\n if (!wrapper._isMounted) {\n // initialize attributes\n const syncInitialAttributes = () => {\n wrapper.props = getInitialProps(camelizedPropsList);\n hyphenatedPropsList.forEach(key => {\n syncAttribute(this, key);\n });\n };\n\n if (isInitialized) {\n syncInitialAttributes();\n } else {\n // async & unresolved\n Component().then(resolved => {\n if (resolved.__esModule || resolved[Symbol.toStringTag] === 'Module') {\n resolved = resolved.default;\n }\n initialize(resolved);\n syncInitialAttributes();\n });\n }\n // initialize children\n wrapper.slotChildren = Object.freeze(toVNodes(\n wrapper.$createElement,\n this.childNodes\n ));\n wrapper.$mount();\n this.shadowRoot.appendChild(wrapper.$el);\n } else {\n callHooks(this.vueComponent, 'activated');\n }\n }\n\n disconnectedCallback () {\n callHooks(this.vueComponent, 'deactivated');\n }\n }\n\n if (!isAsync) {\n initialize(Component);\n }\n\n return CustomElement\n}\n\nexport default wrap;\n","/**\n * Translates the list format produced by css-loader into something\n * easier to manipulate.\n */\nexport default function listToStyles (parentId, list) {\n var styles = []\n var newStyles = {}\n for (var i = 0; i < list.length; i++) {\n var item = list[i]\n var id = item[0]\n var css = item[1]\n var media = item[2]\n var sourceMap = item[3]\n var part = {\n id: parentId + ':' + i,\n css: css,\n media: media,\n sourceMap: sourceMap\n }\n if (!newStyles[id]) {\n styles.push(newStyles[id] = { id: id, parts: [part] })\n } else {\n newStyles[id].parts.push(part)\n }\n }\n return styles\n}\n","import listToStyles from './listToStyles'\n\nexport default function addStylesToShadowDOM (parentId, list, shadowRoot) {\n var styles = listToStyles(parentId, list)\n addStyles(styles, shadowRoot)\n}\n\n/*\ntype StyleObject = {\n id: number;\n parts: Array\n}\n\ntype StyleObjectPart = {\n css: string;\n media: string;\n sourceMap: ?string\n}\n*/\n\nfunction addStyles (styles /* Array */, shadowRoot) {\n const injectedStyles =\n shadowRoot._injectedStyles ||\n (shadowRoot._injectedStyles = {})\n for (var i = 0; i < styles.length; i++) {\n var item = styles[i]\n var style = injectedStyles[item.id]\n if (!style) {\n for (var j = 0; j < item.parts.length; j++) {\n addStyle(item.parts[j], shadowRoot)\n }\n injectedStyles[item.id] = true\n }\n }\n}\n\nfunction createStyleElement (shadowRoot) {\n var styleElement = document.createElement('style')\n styleElement.type = 'text/css'\n shadowRoot.appendChild(styleElement)\n return styleElement\n}\n\nfunction addStyle (obj /* StyleObjectPart */, shadowRoot) {\n var styleElement = createStyleElement(shadowRoot)\n var css = obj.css\n var media = obj.media\n var sourceMap = obj.sourceMap\n\n if (media) {\n styleElement.setAttribute('media', media)\n }\n\n if (sourceMap) {\n // https://developer.chrome.com/devtools/docs/javascript-debugging\n // this makes source maps inside style tags work properly in Chrome\n css += '\\n/*# sourceURL=' + sourceMap.sources[0] + ' */'\n // http://stackoverflow.com/a/26603875\n css += '\\n/*# sourceMappingURL=data:application/json;base64,' + btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))) + ' */'\n }\n\n if (styleElement.styleSheet) {\n styleElement.styleSheet.cssText = css\n } else {\n while (styleElement.firstChild) {\n styleElement.removeChild(styleElement.firstChild)\n }\n styleElement.appendChild(document.createTextNode(css))\n }\n}\n","/* globals __VUE_SSR_CONTEXT__ */\n\n// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).\n// This module is a runtime utility for cleaner component module output and will\n// be included in the final webpack user bundle.\n\nexport default function normalizeComponent (\n scriptExports,\n render,\n staticRenderFns,\n functionalTemplate,\n injectStyles,\n scopeId,\n moduleIdentifier, /* server only */\n shadowMode /* vue-cli only */\n) {\n // Vue.extend constructor export interop\n var options = typeof scriptExports === 'function'\n ? scriptExports.options\n : scriptExports\n\n // render functions\n if (render) {\n options.render = render\n options.staticRenderFns = staticRenderFns\n options._compiled = true\n }\n\n // functional template\n if (functionalTemplate) {\n options.functional = true\n }\n\n // scopedId\n if (scopeId) {\n options._scopeId = 'data-v-' + scopeId\n }\n\n var hook\n if (moduleIdentifier) { // server build\n hook = function (context) {\n // 2.3 injection\n context =\n context || // cached call\n (this.$vnode && this.$vnode.ssrContext) || // stateful\n (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional\n // 2.2 with runInNewContext: true\n if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {\n context = __VUE_SSR_CONTEXT__\n }\n // inject component styles\n if (injectStyles) {\n injectStyles.call(this, context)\n }\n // register component module identifier for async chunk inferrence\n if (context && context._registeredComponents) {\n context._registeredComponents.add(moduleIdentifier)\n }\n }\n // used by ssr in case component is cached and beforeCreate\n // never gets called\n options._ssrRegister = hook\n } else if (injectStyles) {\n hook = shadowMode\n ? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }\n : injectStyles\n }\n\n if (hook) {\n if (options.functional) {\n // for template-only hot-reload because in that case the render fn doesn't\n // go through the normalizer\n options._injectStyles = hook\n // register for functioal component in vue file\n var originalRender = options.render\n options.render = function renderWithStyleInjection (h, context) {\n hook.call(context)\n return originalRender(h, context)\n }\n } else {\n // inject component registration as beforeCreate hook\n var existing = options.beforeCreate\n options.beforeCreate = existing\n ? [].concat(existing, hook)\n : [hook]\n }\n }\n\n return {\n exports: scriptExports,\n options: options\n }\n}\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticStyle:{\"background-color\":\"#F0747F\"}},[_c('h2',[_vm._v(\"Vue\")]),_c('ul',_vm._l((_vm.checklist),function(item,index){return _c('li',{key:index,on:{\"click\":function($event){_vm.$emit('delete-item', index)}}},[_vm._v(\"\\n \"+_vm._s(item)+\"\\n \")])})),_c('button',{on:{\"click\":function($event){_vm.$emit('counter-event')}}},[_vm._v(\"Click me to decrement by 5\")]),_c('p',[_vm._v(\"Counter = \"+_vm._s(_vm.countervalue))])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n \n
Vue
\n
\n
\n
Counter = {{ countervalue }}
\n
\n\n","import mod from \"-!../node_modules/cache-loader/dist/cjs.js??ref--12-0!../node_modules/thread-loader/dist/cjs.js!../node_modules/babel-loader/lib/index.js!../node_modules/vue-loader/lib/index.js??vue-loader-options!./HelloWorld.vue?vue&type=script&lang=js&shadow\"; export default mod; export * from \"-!../node_modules/cache-loader/dist/cjs.js??ref--12-0!../node_modules/thread-loader/dist/cjs.js!../node_modules/babel-loader/lib/index.js!../node_modules/vue-loader/lib/index.js??vue-loader-options!./HelloWorld.vue?vue&type=script&lang=js&shadow\"","import { render, staticRenderFns } from \"./HelloWorld.vue?vue&type=template&id=59312410&shadow\"\nimport script from \"./HelloWorld.vue?vue&type=script&lang=js&shadow\"\nexport * from \"./HelloWorld.vue?vue&type=script&lang=js&shadow\"\n\n\n/* normalize component */\nimport normalizer from \"!../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n ,true\n)\n\ncomponent.options.__file = \"HelloWorld.vue\"\nexport default component.exports","import './setPublicPath'\nimport Vue from 'vue'\nimport wrap from '@vue/web-component-wrapper'\n\n// runtime shared by every component chunk\nimport 'css-loader/lib/css-base'\nimport 'vue-style-loader/lib/addStylesShadow'\nimport 'vue-loader/lib/runtime/componentNormalizer'\n\nimport vueHelloWorld from '~root/./src/HelloWorld.vue?shadow'\nwindow.customElements.define('vue-hello-world', wrap(Vue, vueHelloWorld))","module.exports = Vue;"],"sourceRoot":""}
--------------------------------------------------------------------------------
/components/vue/dist/vue-hello-world.js:
--------------------------------------------------------------------------------
1 | /******/ (function(modules) { // webpackBootstrap
2 | /******/ // The module cache
3 | /******/ var installedModules = {};
4 | /******/
5 | /******/ // The require function
6 | /******/ function __webpack_require__(moduleId) {
7 | /******/
8 | /******/ // Check if module is in cache
9 | /******/ if(installedModules[moduleId]) {
10 | /******/ return installedModules[moduleId].exports;
11 | /******/ }
12 | /******/ // Create a new module (and put it into the cache)
13 | /******/ var module = installedModules[moduleId] = {
14 | /******/ i: moduleId,
15 | /******/ l: false,
16 | /******/ exports: {}
17 | /******/ };
18 | /******/
19 | /******/ // Execute the module function
20 | /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
21 | /******/
22 | /******/ // Flag the module as loaded
23 | /******/ module.l = true;
24 | /******/
25 | /******/ // Return the exports of the module
26 | /******/ return module.exports;
27 | /******/ }
28 | /******/
29 | /******/
30 | /******/ // expose the modules object (__webpack_modules__)
31 | /******/ __webpack_require__.m = modules;
32 | /******/
33 | /******/ // expose the module cache
34 | /******/ __webpack_require__.c = installedModules;
35 | /******/
36 | /******/ // define getter function for harmony exports
37 | /******/ __webpack_require__.d = function(exports, name, getter) {
38 | /******/ if(!__webpack_require__.o(exports, name)) {
39 | /******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
40 | /******/ }
41 | /******/ };
42 | /******/
43 | /******/ // define __esModule on exports
44 | /******/ __webpack_require__.r = function(exports) {
45 | /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
46 | /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
47 | /******/ }
48 | /******/ Object.defineProperty(exports, '__esModule', { value: true });
49 | /******/ };
50 | /******/
51 | /******/ // create a fake namespace object
52 | /******/ // mode & 1: value is a module id, require it
53 | /******/ // mode & 2: merge all properties of value into the ns
54 | /******/ // mode & 4: return value when already ns object
55 | /******/ // mode & 8|1: behave like require
56 | /******/ __webpack_require__.t = function(value, mode) {
57 | /******/ if(mode & 1) value = __webpack_require__(value);
58 | /******/ if(mode & 8) return value;
59 | /******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
60 | /******/ var ns = Object.create(null);
61 | /******/ __webpack_require__.r(ns);
62 | /******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
63 | /******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
64 | /******/ return ns;
65 | /******/ };
66 | /******/
67 | /******/ // getDefaultExport function for compatibility with non-harmony modules
68 | /******/ __webpack_require__.n = function(module) {
69 | /******/ var getter = module && module.__esModule ?
70 | /******/ function getDefault() { return module['default']; } :
71 | /******/ function getModuleExports() { return module; };
72 | /******/ __webpack_require__.d(getter, 'a', getter);
73 | /******/ return getter;
74 | /******/ };
75 | /******/
76 | /******/ // Object.prototype.hasOwnProperty.call
77 | /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
78 | /******/
79 | /******/ // __webpack_public_path__
80 | /******/ __webpack_require__.p = "";
81 | /******/
82 | /******/
83 | /******/ // Load entry module and return exports
84 | /******/ return __webpack_require__(__webpack_require__.s = "5a74");
85 | /******/ })
86 | /************************************************************************/
87 | /******/ ({
88 |
89 | /***/ "1eb2":
90 | /***/ (function(module, exports, __webpack_require__) {
91 |
92 | // This file is imported into lib/wc client bundles.
93 |
94 | if (typeof window !== 'undefined') {
95 | var i
96 | if ((i = window.document.currentScript) && (i = i.src.match(/(.+\/)[^/]+\.js$/))) {
97 | __webpack_require__.p = i[1] // eslint-disable-line
98 | }
99 | }
100 |
101 |
102 | /***/ }),
103 |
104 | /***/ "2350":
105 | /***/ (function(module, exports) {
106 |
107 | /*
108 | MIT License http://www.opensource.org/licenses/mit-license.php
109 | Author Tobias Koppers @sokra
110 | */
111 | // css base code, injected by the css-loader
112 | module.exports = function(useSourceMap) {
113 | var list = [];
114 |
115 | // return the list of modules as css string
116 | list.toString = function toString() {
117 | return this.map(function (item) {
118 | var content = cssWithMappingToString(item, useSourceMap);
119 | if(item[2]) {
120 | return "@media " + item[2] + "{" + content + "}";
121 | } else {
122 | return content;
123 | }
124 | }).join("");
125 | };
126 |
127 | // import a list of modules into the list
128 | list.i = function(modules, mediaQuery) {
129 | if(typeof modules === "string")
130 | modules = [[null, modules, ""]];
131 | var alreadyImportedModules = {};
132 | for(var i = 0; i < this.length; i++) {
133 | var id = this[i][0];
134 | if(typeof id === "number")
135 | alreadyImportedModules[id] = true;
136 | }
137 | for(i = 0; i < modules.length; i++) {
138 | var item = modules[i];
139 | // skip already imported module
140 | // this implementation is not 100% perfect for weird media query combinations
141 | // when a module is imported multiple times with different media queries.
142 | // I hope this will never occur (Hey this way we have smaller bundles)
143 | if(typeof item[0] !== "number" || !alreadyImportedModules[item[0]]) {
144 | if(mediaQuery && !item[2]) {
145 | item[2] = mediaQuery;
146 | } else if(mediaQuery) {
147 | item[2] = "(" + item[2] + ") and (" + mediaQuery + ")";
148 | }
149 | list.push(item);
150 | }
151 | }
152 | };
153 | return list;
154 | };
155 |
156 | function cssWithMappingToString(item, useSourceMap) {
157 | var content = item[1] || '';
158 | var cssMapping = item[3];
159 | if (!cssMapping) {
160 | return content;
161 | }
162 |
163 | if (useSourceMap && typeof btoa === 'function') {
164 | var sourceMapping = toComment(cssMapping);
165 | var sourceURLs = cssMapping.sources.map(function (source) {
166 | return '/*# sourceURL=' + cssMapping.sourceRoot + source + ' */'
167 | });
168 |
169 | return [content].concat(sourceURLs).concat([sourceMapping]).join('\n');
170 | }
171 |
172 | return [content].join('\n');
173 | }
174 |
175 | // Adapted from convert-source-map (MIT)
176 | function toComment(sourceMap) {
177 | // eslint-disable-next-line no-undef
178 | var base64 = btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap))));
179 | var data = 'sourceMappingURL=data:application/json;charset=utf-8;base64,' + base64;
180 |
181 | return '/*# ' + data + ' */';
182 | }
183 |
184 |
185 | /***/ }),
186 |
187 | /***/ "5a74":
188 | /***/ (function(module, __webpack_exports__, __webpack_require__) {
189 |
190 | "use strict";
191 | __webpack_require__.r(__webpack_exports__);
192 |
193 | // EXTERNAL MODULE: ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js
194 | var setPublicPath = __webpack_require__("1eb2");
195 |
196 | // EXTERNAL MODULE: external "Vue"
197 | var external_Vue_ = __webpack_require__("8bbf");
198 | var external_Vue_default = /*#__PURE__*/__webpack_require__.n(external_Vue_);
199 |
200 | // CONCATENATED MODULE: ./node_modules/@vue/web-component-wrapper/dist/vue-wc-wrapper.js
201 | const camelizeRE = /-(\w)/g;
202 | const camelize = str => {
203 | return str.replace(camelizeRE, (_, c) => c ? c.toUpperCase() : '')
204 | };
205 |
206 | const hyphenateRE = /\B([A-Z])/g;
207 | const hyphenate = str => {
208 | return str.replace(hyphenateRE, '-$1').toLowerCase()
209 | };
210 |
211 | function getInitialProps (propsList) {
212 | const res = {};
213 | propsList.forEach(key => {
214 | res[key] = undefined;
215 | });
216 | return res
217 | }
218 |
219 | function injectHook (options, key, hook) {
220 | options[key] = [].concat(options[key] || []);
221 | options[key].unshift(hook);
222 | }
223 |
224 | function callHooks (vm, hook) {
225 | if (vm) {
226 | const hooks = vm.$options[hook] || [];
227 | hooks.forEach(hook => {
228 | hook.call(vm);
229 | });
230 | }
231 | }
232 |
233 | function createCustomEvent (name, args) {
234 | return new CustomEvent(name, {
235 | bubbles: false,
236 | cancelable: false,
237 | detail: args
238 | })
239 | }
240 |
241 | const isBoolean = val => /function Boolean/.test(String(val));
242 | const isNumber = val => /function Number/.test(String(val));
243 |
244 | function convertAttributeValue (value, name, { type } = {}) {
245 | if (isBoolean(type)) {
246 | if (value === 'true' || value === 'false') {
247 | return value === 'true'
248 | }
249 | if (value === '' || value === name) {
250 | return true
251 | }
252 | return value != null
253 | } else if (isNumber(type)) {
254 | const parsed = parseFloat(value, 10);
255 | return isNaN(parsed) ? value : parsed
256 | } else {
257 | return value
258 | }
259 | }
260 |
261 | function toVNodes (h, children) {
262 | const res = [];
263 | for (let i = 0, l = children.length; i < l; i++) {
264 | res.push(toVNode(h, children[i]));
265 | }
266 | return res
267 | }
268 |
269 | function toVNode (h, node) {
270 | if (node.nodeType === 3) {
271 | return node.data.trim() ? node.data : null
272 | } else if (node.nodeType === 1) {
273 | const data = {
274 | attrs: getAttributes(node),
275 | domProps: {
276 | innerHTML: node.innerHTML
277 | }
278 | };
279 | if (data.attrs.slot) {
280 | data.slot = data.attrs.slot;
281 | delete data.attrs.slot;
282 | }
283 | return h(node.tagName, data)
284 | } else {
285 | return null
286 | }
287 | }
288 |
289 | function getAttributes (node) {
290 | const res = {};
291 | for (let i = 0, l = node.attributes.length; i < l; i++) {
292 | const attr = node.attributes[i];
293 | res[attr.nodeName] = attr.nodeValue;
294 | }
295 | return res
296 | }
297 |
298 | function wrap (Vue, Component) {
299 | const isAsync = typeof Component === 'function' && !Component.cid;
300 | let isInitialized = false;
301 | let hyphenatedPropsList;
302 | let camelizedPropsList;
303 | let camelizedPropsMap;
304 |
305 | function initialize (Component) {
306 | if (isInitialized) return
307 |
308 | const options = typeof Component === 'function'
309 | ? Component.options
310 | : Component;
311 |
312 | // extract props info
313 | const propsList = Array.isArray(options.props)
314 | ? options.props
315 | : Object.keys(options.props || {});
316 | hyphenatedPropsList = propsList.map(hyphenate);
317 | camelizedPropsList = propsList.map(camelize);
318 | const originalPropsAsObject = Array.isArray(options.props) ? {} : options.props || {};
319 | camelizedPropsMap = camelizedPropsList.reduce((map, key, i) => {
320 | map[key] = originalPropsAsObject[propsList[i]];
321 | return map
322 | }, {});
323 |
324 | // proxy $emit to native DOM events
325 | injectHook(options, 'beforeCreate', function () {
326 | const emit = this.$emit;
327 | this.$emit = (name, ...args) => {
328 | this.$root.$options.customElement.dispatchEvent(createCustomEvent(name, args));
329 | return emit.call(this, name, ...args)
330 | };
331 | });
332 |
333 | injectHook(options, 'created', function () {
334 | // sync default props values to wrapper on created
335 | camelizedPropsList.forEach(key => {
336 | this.$root.props[key] = this[key];
337 | });
338 | });
339 |
340 | // proxy props as Element properties
341 | camelizedPropsList.forEach(key => {
342 | Object.defineProperty(CustomElement.prototype, key, {
343 | get () {
344 | return this._wrapper.props[key]
345 | },
346 | set (newVal) {
347 | this._wrapper.props[key] = newVal;
348 | },
349 | enumerable: false,
350 | configurable: true
351 | });
352 | });
353 |
354 | isInitialized = true;
355 | }
356 |
357 | function syncAttribute (el, key) {
358 | const camelized = camelize(key);
359 | const value = el.hasAttribute(key) ? el.getAttribute(key) : undefined;
360 | el._wrapper.props[camelized] = convertAttributeValue(
361 | value,
362 | key,
363 | camelizedPropsMap[camelized]
364 | );
365 | }
366 |
367 | class CustomElement extends HTMLElement {
368 | constructor () {
369 | super();
370 | this.attachShadow({ mode: 'open' });
371 |
372 | const wrapper = this._wrapper = new Vue({
373 | name: 'shadow-root',
374 | customElement: this,
375 | shadowRoot: this.shadowRoot,
376 | data () {
377 | return {
378 | props: {},
379 | slotChildren: []
380 | }
381 | },
382 | render (h) {
383 | return h(Component, {
384 | ref: 'inner',
385 | props: this.props
386 | }, this.slotChildren)
387 | }
388 | });
389 |
390 | // Use MutationObserver to react to future attribute & slot content change
391 | const observer = new MutationObserver(mutations => {
392 | let hasChildrenChange = false;
393 | for (let i = 0; i < mutations.length; i++) {
394 | const m = mutations[i];
395 | if (isInitialized && m.type === 'attributes' && m.target === this) {
396 | syncAttribute(this, m.attributeName);
397 | } else {
398 | hasChildrenChange = true;
399 | }
400 | }
401 | if (hasChildrenChange) {
402 | wrapper.slotChildren = Object.freeze(toVNodes(
403 | wrapper.$createElement,
404 | this.childNodes
405 | ));
406 | }
407 | });
408 | observer.observe(this, {
409 | childList: true,
410 | subtree: true,
411 | characterData: true,
412 | attributes: true
413 | });
414 | }
415 |
416 | get vueComponent () {
417 | return this._wrapper.$refs.inner
418 | }
419 |
420 | connectedCallback () {
421 | const wrapper = this._wrapper;
422 | if (!wrapper._isMounted) {
423 | // initialize attributes
424 | const syncInitialAttributes = () => {
425 | wrapper.props = getInitialProps(camelizedPropsList);
426 | hyphenatedPropsList.forEach(key => {
427 | syncAttribute(this, key);
428 | });
429 | };
430 |
431 | if (isInitialized) {
432 | syncInitialAttributes();
433 | } else {
434 | // async & unresolved
435 | Component().then(resolved => {
436 | if (resolved.__esModule || resolved[Symbol.toStringTag] === 'Module') {
437 | resolved = resolved.default;
438 | }
439 | initialize(resolved);
440 | syncInitialAttributes();
441 | });
442 | }
443 | // initialize children
444 | wrapper.slotChildren = Object.freeze(toVNodes(
445 | wrapper.$createElement,
446 | this.childNodes
447 | ));
448 | wrapper.$mount();
449 | this.shadowRoot.appendChild(wrapper.$el);
450 | } else {
451 | callHooks(this.vueComponent, 'activated');
452 | }
453 | }
454 |
455 | disconnectedCallback () {
456 | callHooks(this.vueComponent, 'deactivated');
457 | }
458 | }
459 |
460 | if (!isAsync) {
461 | initialize(Component);
462 | }
463 |
464 | return CustomElement
465 | }
466 |
467 | /* harmony default export */ var vue_wc_wrapper = (wrap);
468 |
469 | // EXTERNAL MODULE: ./node_modules/css-loader/lib/css-base.js
470 | var css_base = __webpack_require__("2350");
471 |
472 | // CONCATENATED MODULE: ./node_modules/vue-style-loader/lib/listToStyles.js
473 | /**
474 | * Translates the list format produced by css-loader into something
475 | * easier to manipulate.
476 | */
477 | function listToStyles (parentId, list) {
478 | var styles = []
479 | var newStyles = {}
480 | for (var i = 0; i < list.length; i++) {
481 | var item = list[i]
482 | var id = item[0]
483 | var css = item[1]
484 | var media = item[2]
485 | var sourceMap = item[3]
486 | var part = {
487 | id: parentId + ':' + i,
488 | css: css,
489 | media: media,
490 | sourceMap: sourceMap
491 | }
492 | if (!newStyles[id]) {
493 | styles.push(newStyles[id] = { id: id, parts: [part] })
494 | } else {
495 | newStyles[id].parts.push(part)
496 | }
497 | }
498 | return styles
499 | }
500 |
501 | // CONCATENATED MODULE: ./node_modules/vue-style-loader/lib/addStylesShadow.js
502 |
503 |
504 | function addStylesToShadowDOM (parentId, list, shadowRoot) {
505 | var styles = listToStyles(parentId, list)
506 | addStyles(styles, shadowRoot)
507 | }
508 |
509 | /*
510 | type StyleObject = {
511 | id: number;
512 | parts: Array
513 | }
514 |
515 | type StyleObjectPart = {
516 | css: string;
517 | media: string;
518 | sourceMap: ?string
519 | }
520 | */
521 |
522 | function addStyles (styles /* Array */, shadowRoot) {
523 | const injectedStyles =
524 | shadowRoot._injectedStyles ||
525 | (shadowRoot._injectedStyles = {})
526 | for (var i = 0; i < styles.length; i++) {
527 | var item = styles[i]
528 | var style = injectedStyles[item.id]
529 | if (!style) {
530 | for (var j = 0; j < item.parts.length; j++) {
531 | addStyle(item.parts[j], shadowRoot)
532 | }
533 | injectedStyles[item.id] = true
534 | }
535 | }
536 | }
537 |
538 | function createStyleElement (shadowRoot) {
539 | var styleElement = document.createElement('style')
540 | styleElement.type = 'text/css'
541 | shadowRoot.appendChild(styleElement)
542 | return styleElement
543 | }
544 |
545 | function addStyle (obj /* StyleObjectPart */, shadowRoot) {
546 | var styleElement = createStyleElement(shadowRoot)
547 | var css = obj.css
548 | var media = obj.media
549 | var sourceMap = obj.sourceMap
550 |
551 | if (media) {
552 | styleElement.setAttribute('media', media)
553 | }
554 |
555 | if (sourceMap) {
556 | // https://developer.chrome.com/devtools/docs/javascript-debugging
557 | // this makes source maps inside style tags work properly in Chrome
558 | css += '\n/*# sourceURL=' + sourceMap.sources[0] + ' */'
559 | // http://stackoverflow.com/a/26603875
560 | css += '\n/*# sourceMappingURL=data:application/json;base64,' + btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))) + ' */'
561 | }
562 |
563 | if (styleElement.styleSheet) {
564 | styleElement.styleSheet.cssText = css
565 | } else {
566 | while (styleElement.firstChild) {
567 | styleElement.removeChild(styleElement.firstChild)
568 | }
569 | styleElement.appendChild(document.createTextNode(css))
570 | }
571 | }
572 |
573 | // CONCATENATED MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
574 | /* globals __VUE_SSR_CONTEXT__ */
575 |
576 | // IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
577 | // This module is a runtime utility for cleaner component module output and will
578 | // be included in the final webpack user bundle.
579 |
580 | function normalizeComponent (
581 | scriptExports,
582 | render,
583 | staticRenderFns,
584 | functionalTemplate,
585 | injectStyles,
586 | scopeId,
587 | moduleIdentifier, /* server only */
588 | shadowMode /* vue-cli only */
589 | ) {
590 | // Vue.extend constructor export interop
591 | var options = typeof scriptExports === 'function'
592 | ? scriptExports.options
593 | : scriptExports
594 |
595 | // render functions
596 | if (render) {
597 | options.render = render
598 | options.staticRenderFns = staticRenderFns
599 | options._compiled = true
600 | }
601 |
602 | // functional template
603 | if (functionalTemplate) {
604 | options.functional = true
605 | }
606 |
607 | // scopedId
608 | if (scopeId) {
609 | options._scopeId = 'data-v-' + scopeId
610 | }
611 |
612 | var hook
613 | if (moduleIdentifier) { // server build
614 | hook = function (context) {
615 | // 2.3 injection
616 | context =
617 | context || // cached call
618 | (this.$vnode && this.$vnode.ssrContext) || // stateful
619 | (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
620 | // 2.2 with runInNewContext: true
621 | if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
622 | context = __VUE_SSR_CONTEXT__
623 | }
624 | // inject component styles
625 | if (injectStyles) {
626 | injectStyles.call(this, context)
627 | }
628 | // register component module identifier for async chunk inferrence
629 | if (context && context._registeredComponents) {
630 | context._registeredComponents.add(moduleIdentifier)
631 | }
632 | }
633 | // used by ssr in case component is cached and beforeCreate
634 | // never gets called
635 | options._ssrRegister = hook
636 | } else if (injectStyles) {
637 | hook = shadowMode
638 | ? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }
639 | : injectStyles
640 | }
641 |
642 | if (hook) {
643 | if (options.functional) {
644 | // for template-only hot-reload because in that case the render fn doesn't
645 | // go through the normalizer
646 | options._injectStyles = hook
647 | // register for functioal component in vue file
648 | var originalRender = options.render
649 | options.render = function renderWithStyleInjection (h, context) {
650 | hook.call(context)
651 | return originalRender(h, context)
652 | }
653 | } else {
654 | // inject component registration as beforeCreate hook
655 | var existing = options.beforeCreate
656 | options.beforeCreate = existing
657 | ? [].concat(existing, hook)
658 | : [hook]
659 | }
660 | }
661 |
662 | return {
663 | exports: scriptExports,
664 | options: options
665 | }
666 | }
667 |
668 | // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"0595ba96-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/HelloWorld.vue?vue&type=template&id=59312410&shadow
669 | var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticStyle:{"background-color":"#F0747F"}},[_c('h2',[_vm._v("Vue")]),_c('ul',_vm._l((_vm.checklist),function(item,index){return _c('li',{key:index,on:{"click":function($event){_vm.$emit('delete-item', index)}}},[_vm._v("\n "+_vm._s(item)+"\n ")])})),_c('button',{on:{"click":function($event){_vm.$emit('counter-event')}}},[_vm._v("Click me to decrement by 5")]),_c('p',[_vm._v("Counter = "+_vm._s(_vm.countervalue))])])}
670 | var staticRenderFns = []
671 |
672 |
673 | // CONCATENATED MODULE: ./src/HelloWorld.vue?vue&type=template&id=59312410&shadow
674 |
675 | // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./src/HelloWorld.vue?vue&type=script&lang=js&shadow
676 | //
677 | //
678 | //
679 | //
680 | //
681 | //
682 | //
683 | //
684 | //
685 | //
686 | //
687 | //
688 | /* harmony default export */ var HelloWorldvue_type_script_lang_js_shadow = ({
689 | props: ['countervalue', 'checklistvalue'],
690 | computed: {
691 | checklist: function checklist() {
692 | return JSON.parse(this.checklistvalue || []);
693 | }
694 | }
695 | });
696 | // CONCATENATED MODULE: ./src/HelloWorld.vue?vue&type=script&lang=js&shadow
697 | /* harmony default export */ var src_HelloWorldvue_type_script_lang_js_shadow = (HelloWorldvue_type_script_lang_js_shadow);
698 | // CONCATENATED MODULE: ./src/HelloWorld.vue?shadow
699 |
700 |
701 |
702 |
703 |
704 | /* normalize component */
705 |
706 | var component = normalizeComponent(
707 | src_HelloWorldvue_type_script_lang_js_shadow,
708 | render,
709 | staticRenderFns,
710 | false,
711 | null,
712 | null,
713 | null
714 | ,true
715 | )
716 |
717 | component.options.__file = "HelloWorld.vue"
718 | /* harmony default export */ var HelloWorldshadow = (component.exports);
719 | // CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/entry-wc.js
720 |
721 |
722 |
723 |
724 | // runtime shared by every component chunk
725 |
726 |
727 |
728 |
729 |
730 | window.customElements.define('vue-hello-world', vue_wc_wrapper(external_Vue_default.a, HelloWorldshadow))
731 |
732 | /***/ }),
733 |
734 | /***/ "8bbf":
735 | /***/ (function(module, exports) {
736 |
737 | module.exports = Vue;
738 |
739 | /***/ })
740 |
741 | /******/ });
742 | //# sourceMappingURL=vue-hello-world.js.map
--------------------------------------------------------------------------------
/components/vue/dist/vue-hello-world.min.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":["webpack:///webpack/bootstrap","webpack:///./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js","webpack:///./node_modules/css-loader/lib/css-base.js","webpack:///./node_modules/@vue/web-component-wrapper/dist/vue-wc-wrapper.js","webpack:///./node_modules/vue-loader/lib/runtime/componentNormalizer.js","webpack:///./src/HelloWorld.vue?abba","webpack:///src/HelloWorld.vue","webpack:///./src/HelloWorld.vue?3e79","webpack:///./src/HelloWorld.vue","webpack:///./node_modules/@vue/cli-service/lib/commands/build/entry-wc.js","webpack:///external \"Vue\""],"names":["installedModules","__webpack_require__","moduleId","exports","module","i","l","modules","call","m","c","d","name","getter","o","Object","defineProperty","enumerable","get","r","Symbol","toStringTag","value","t","mode","__esModule","ns","create","key","bind","n","object","property","prototype","hasOwnProperty","p","s","window","document","currentScript","src","match","cssWithMappingToString","item","useSourceMap","content","cssMapping","btoa","sourceMapping","toComment","sourceURLs","sources","map","source","sourceRoot","concat","join","sourceMap","base64","unescape","encodeURIComponent","JSON","stringify","data","list","toString","this","mediaQuery","alreadyImportedModules","length","id","push","camelizeRE","camelize","str","replace","_","toUpperCase","hyphenateRE","hyphenate","toLowerCase","getInitialProps","propsList","res","forEach","undefined","injectHook","options","hook","unshift","callHooks","vm","hooks","$options","createCustomEvent","args","CustomEvent","bubbles","cancelable","detail","isBoolean","val","test","String","isNumber","convertAttributeValue","type","parsed","parseFloat","isNaN","toVNodes","h","children","toVNode","node","nodeType","trim","attrs","getAttributes","domProps","innerHTML","slot","tagName","attributes","attr","nodeName","nodeValue","wrap","Vue","Component","isAsync","cid","hyphenatedPropsList","camelizedPropsList","camelizedPropsMap","isInitialized","initialize","Array","isArray","props","keys","originalPropsAsObject","reduce","emit","$emit","$root","customElement","dispatchEvent","CustomElement","[object Object]","_wrapper","newVal","configurable","syncAttribute","el","camelized","hasAttribute","getAttribute","HTMLElement","super","attachShadow","wrapper","shadowRoot","slotChildren","ref","observer","MutationObserver","mutations","hasChildrenChange","target","attributeName","freeze","$createElement","childNodes","observe","childList","subtree","characterData","vueComponent","$refs","inner","_isMounted","syncInitialAttributes","then","resolved","default","$mount","appendChild","$el","vue_wc_wrapper","normalizeComponent","scriptExports","render","staticRenderFns","functionalTemplate","injectStyles","scopeId","moduleIdentifier","shadowMode","_compiled","functional","_scopeId","context","$vnode","ssrContext","parent","__VUE_SSR_CONTEXT__","_registeredComponents","add","_ssrRegister","_injectStyles","originalRender","existing","beforeCreate","_vm","_h","_c","_self","staticStyle","background-color","_v","_l","index","on","click","$event","_s","countervalue","HelloWorldvue_type_script_lang_js_shadow","computed","checklist","parse","checklistvalue","src_HelloWorldvue_type_script_lang_js_shadow","component","__file","HelloWorldshadow","customElements","define","external_Vue_default","a"],"mappings":"aACA,IAAAA,KAGA,SAAAC,EAAAC,GAGA,GAAAF,EAAAE,GACA,OAAAF,EAAAE,GAAAC,QAGA,IAAAC,EAAAJ,EAAAE,IACAG,EAAAH,EACAI,GAAA,EACAH,YAUA,OANAI,EAAAL,GAAAM,KAAAJ,EAAAD,QAAAC,IAAAD,QAAAF,GAGAG,EAAAE,GAAA,EAGAF,EAAAD,QAKAF,EAAAQ,EAAAF,EAGAN,EAAAS,EAAAV,EAGAC,EAAAU,EAAA,SAAAR,EAAAS,EAAAC,GACAZ,EAAAa,EAAAX,EAAAS,IACAG,OAAAC,eAAAb,EAAAS,GAA0CK,YAAA,EAAAC,IAAAL,KAK1CZ,EAAAkB,EAAA,SAAAhB,GACA,qBAAAiB,eAAAC,aACAN,OAAAC,eAAAb,EAAAiB,OAAAC,aAAwDC,MAAA,WAExDP,OAAAC,eAAAb,EAAA,cAAiDmB,OAAA,KAQjDrB,EAAAsB,EAAA,SAAAD,EAAAE,GAEA,GADA,EAAAA,IAAAF,EAAArB,EAAAqB,IACA,EAAAE,EAAA,OAAAF,EACA,KAAAE,GAAA,kBAAAF,QAAAG,WAAA,OAAAH,EACA,IAAAI,EAAAX,OAAAY,OAAA,MAGA,GAFA1B,EAAAkB,EAAAO,GACAX,OAAAC,eAAAU,EAAA,WAAyCT,YAAA,EAAAK,UACzC,EAAAE,GAAA,iBAAAF,EAAA,QAAAM,KAAAN,EAAArB,EAAAU,EAAAe,EAAAE,EAAA,SAAAA,GAAgH,OAAAN,EAAAM,IAAqBC,KAAA,KAAAD,IACrI,OAAAF,GAIAzB,EAAA6B,EAAA,SAAA1B,GACA,IAAAS,EAAAT,KAAAqB,WACA,WAA2B,OAAArB,EAAA,YAC3B,WAAiC,OAAAA,GAEjC,OADAH,EAAAU,EAAAE,EAAA,IAAAA,GACAA,GAIAZ,EAAAa,EAAA,SAAAiB,EAAAC,GAAsD,OAAAjB,OAAAkB,UAAAC,eAAA1B,KAAAuB,EAAAC,IAGtD/B,EAAAkC,EAAA,GAIAlC,IAAAmC,EAAA,kCC/EA,IAAA/B,EADA,qBAAAgC,UAEAhC,EAAAgC,OAAAC,SAAAC,iBAAAlC,IAAAmC,IAAAC,MAAA,uBACIxC,EAAAkC,EAAuB9B,EAAA,yBC4C3B,SAAAqC,EAAAC,EAAAC,GACA,IAAAC,EAAAF,EAAA,OACAG,EAAAH,EAAA,GACA,IAAAG,EACA,OAAAD,EAGA,GAAAD,GAAA,oBAAAG,KAAA,CACA,IAAAC,EAAAC,EAAAH,GACAI,EAAAJ,EAAAK,QAAAC,IAAA,SAAAC,GACA,uBAAAP,EAAAQ,WAAAD,EAAA,QAGA,OAAAR,GAAAU,OAAAL,GAAAK,QAAAP,IAAAQ,KAAA,MAGA,OAAAX,GAAAW,KAAA,MAIA,SAAAP,EAAAQ,GAEA,IAAAC,EAAAX,KAAAY,SAAAC,mBAAAC,KAAAC,UAAAL,MACAM,EAAA,+DAAkEL,EAElE,aAAAK,EAAA,MArEA3D,EAAAD,QAAA,SAAAyC,GACA,IAAAoB,KAwCA,OArCAA,EAAAC,SAAA,WACA,OAAAC,KAAAd,IAAA,SAAAT,GACA,IAAAE,EAAAH,EAAAC,EAAAC,GACA,OAAAD,EAAA,GACA,UAAAA,EAAA,OAAmCE,EAAA,IAEnCA,IAEGW,KAAA,KAIHQ,EAAA3D,EAAA,SAAAE,EAAA4D,GACA,kBAAA5D,IACAA,IAAA,KAAAA,EAAA,MAEA,IADA,IAAA6D,KACA/D,EAAA,EAAgBA,EAAA6D,KAAAG,OAAiBhE,IAAA,CACjC,IAAAiE,EAAAJ,KAAA7D,GAAA,GACA,kBAAAiE,IACAF,EAAAE,IAAA,GAEA,IAAAjE,EAAA,EAAYA,EAAAE,EAAA8D,OAAoBhE,IAAA,CAChC,IAAAsC,EAAApC,EAAAF,GAKA,kBAAAsC,EAAA,IAAAyB,EAAAzB,EAAA,MACAwB,IAAAxB,EAAA,GACAA,EAAA,GAAAwB,EACKA,IACLxB,EAAA,OAAAA,EAAA,aAAAwB,EAAA,KAEAH,EAAAO,KAAA5B,MAIAqB,kFC9CA,MAAAQ,EAAA,SACAC,EAAAC,IACA,OAAAA,EAAAC,QAAAH,EAAA,CAAAI,EAAAlE,QAAAmE,cAAA,KAGAC,EAAA,aACAC,EAAAL,IACA,OAAAA,EAAAC,QAAAG,EAAA,OAAAE,eAGA,SAAAC,EAAAC,GACA,MAAAC,KAIA,OAHAD,EAAAE,QAAAxD,IACAuD,EAAAvD,QAAAyD,IAEAF,EAGA,SAAAG,EAAAC,EAAA3D,EAAA4D,GACAD,EAAA3D,MAAA2B,OAAAgC,EAAA3D,QACA2D,EAAA3D,GAAA6D,QAAAD,GAGA,SAAAE,EAAAC,EAAAH,GACA,GAAAG,EAAA,CACA,MAAAC,EAAAD,EAAAE,SAAAL,OACAI,EAAAR,QAAAI,IACAA,EAAAhF,KAAAmF,MAKA,SAAAG,EAAAlF,EAAAmF,GACA,WAAAC,YAAApF,GACAqF,SAAA,EACAC,YAAA,EACAC,OAAAJ,IAIA,MAAAK,EAAAC,GAAA,mBAAAC,KAAAC,OAAAF,IACAG,EAAAH,GAAA,kBAAAC,KAAAC,OAAAF,IAEA,SAAAI,EAAAnF,EAAAV,GAAA8F,KAA8CA,OAC9C,GAAAN,EAAAM,GACA,eAAApF,GAAA,UAAAA,EACA,SAAAA,EAEA,KAAAA,OAAAV,GAGA,MAAAU,EACG,GAAAkF,EAAAE,GAAA,CACH,MAAAC,EAAAC,WAAAtF,EAAA,IACA,OAAAuF,MAAAF,GAAArF,EAAAqF,EAEA,OAAArF,EAIA,SAAAwF,EAAAC,EAAAC,GACA,MAAA7B,KACA,QAAA9E,EAAA,EAAAC,EAAA0G,EAAA3C,OAAsChE,EAAAC,EAAOD,IAC7C8E,EAAAZ,KAAA0C,EAAAF,EAAAC,EAAA3G,KAEA,OAAA8E,EAGA,SAAA8B,EAAAF,EAAAG,GACA,OAAAA,EAAAC,SACA,OAAAD,EAAAnD,KAAAqD,OAAAF,EAAAnD,KAAA,KACG,OAAAmD,EAAAC,SAAA,CACH,MAAApD,GACAsD,MAAAC,EAAAJ,GACAK,UACAC,UAAAN,EAAAM,YAOA,OAJAzD,EAAAsD,MAAAI,OACA1D,EAAA0D,KAAA1D,EAAAsD,MAAAI,YACA1D,EAAAsD,MAAAI,MAEAV,EAAAG,EAAAQ,QAAA3D,GAEA,YAIA,SAAAuD,EAAAJ,GACA,MAAA/B,KACA,QAAA9E,EAAA,EAAAC,EAAA4G,EAAAS,WAAAtD,OAA6ChE,EAAAC,EAAOD,IAAA,CACpD,MAAAuH,EAAAV,EAAAS,WAAAtH,GACA8E,EAAAyC,EAAAC,UAAAD,EAAAE,UAEA,OAAA3C,EAGA,SAAA4C,EAAAC,EAAAC,GACA,MAAAC,EAAA,oBAAAD,MAAAE,IACA,IACAC,EACAC,EACAC,EAHAC,GAAA,EAKA,SAAAC,EAAAP,GACA,GAAAM,EAAA,OAEA,MAAAhD,EAAA,oBAAA0C,EACAA,EAAA1C,QACA0C,EAGA/C,EAAAuD,MAAAC,QAAAnD,EAAAoD,OACApD,EAAAoD,MACA5H,OAAA6H,KAAArD,EAAAoD,WACAP,EAAAlD,EAAA9B,IAAA2B,GACAsD,EAAAnD,EAAA9B,IAAAqB,GACA,MAAAoE,EAAAJ,MAAAC,QAAAnD,EAAAoD,UAAmEpD,EAAAoD,UACnEL,EAAAD,EAAAS,OAAA,CAAA1F,EAAAxB,EAAAvB,KAEA,OADA+C,EAAAxB,GAAAiH,EAAA3D,EAAA7E,IACA+C,OAIAkC,EAAAC,EAAA,0BACA,MAAAwD,EAAA7E,KAAA8E,MACA9E,KAAA8E,MAAA,EAAApI,KAAAmF,KAEA,OADA7B,KAAA+E,MAAApD,SAAAqD,cAAAC,cAAArD,EAAAlF,EAAAmF,IACAgD,EAAAvI,KAAA0D,KAAAtD,KAAAmF,OAIAT,EAAAC,EAAA,qBAEA8C,EAAAjD,QAAAxD,IACAsC,KAAA+E,MAAAN,MAAA/G,GAAAsC,KAAAtC,OAKAyG,EAAAjD,QAAAxD,IACAb,OAAAC,eAAAoI,EAAAnH,UAAAL,GACAyH,MACA,OAAAnF,KAAAoF,SAAAX,MAAA/G,IAEAyH,IAAAE,GACArF,KAAAoF,SAAAX,MAAA/G,GAAA2H,GAEAtI,YAAA,EACAuI,cAAA,MAIAjB,GAAA,EAGA,SAAAkB,EAAAC,EAAA9H,GACA,MAAA+H,EAAAlF,EAAA7C,GACAN,EAAAoI,EAAAE,aAAAhI,GAAA8H,EAAAG,aAAAjI,QAAAyD,EACAqE,EAAAJ,SAAAX,MAAAgB,GAAAlD,EACAnF,EACAM,EACA0G,EAAAqB,UAIAP,UAAAU,YACAT,cACAU,QACA7F,KAAA8F,cAAyBxI,KAAA,SAEzB,MAAAyI,EAAA/F,KAAAoF,SAAA,IAAAtB,GACApH,KAAA,cACAsI,cAAAhF,KACAgG,WAAAhG,KAAAgG,WACAb,OACA,OACAV,SACAwB,kBAGAd,OAAAtC,GACA,OAAAA,EAAAkB,GACAmC,IAAA,QACAzB,MAAAzE,KAAAyE,OACWzE,KAAAiG,iBAKXE,EAAA,IAAAC,iBAAAC,IACA,IAAAC,GAAA,EACA,QAAAnK,EAAA,EAAuBA,EAAAkK,EAAAlG,OAAsBhE,IAAA,CAC7C,MAAAI,EAAA8J,EAAAlK,GACAkI,GAAA,eAAA9H,EAAAiG,MAAAjG,EAAAgK,SAAAvG,KACAuF,EAAAvF,KAAAzD,EAAAiK,eAEAF,GAAA,EAGAA,IACAP,EAAAE,aAAApJ,OAAA4J,OAAA7D,EACAmD,EAAAW,eACA1G,KAAA2G,gBAIAR,EAAAS,QAAA5G,MACA6G,WAAA,EACAC,SAAA,EACAC,eAAA,EACAtD,YAAA,IAIAuD,mBACA,OAAAhH,KAAAoF,SAAA6B,MAAAC,MAGA/B,oBACA,MAAAY,EAAA/F,KAAAoF,SACA,GAAAW,EAAAoB,WA6BA3F,EAAAxB,KAAAgH,aAAA,iBA7BA,CAEA,MAAAI,EAAA,KACArB,EAAAtB,MAAA1D,EAAAoD,GACAD,EAAAhD,QAAAxD,IACA6H,EAAAvF,KAAAtC,MAIA2G,EACA+C,IAGArD,IAAAsD,KAAAC,KACAA,EAAA/J,YAAA,WAAA+J,EAAApK,OAAAC,gBACAmK,IAAAC,SAEAjD,EAAAgD,GACAF,MAIArB,EAAAE,aAAApJ,OAAA4J,OAAA7D,EACAmD,EAAAW,eACA1G,KAAA2G,aAEAZ,EAAAyB,SACAxH,KAAAgG,WAAAyB,YAAA1B,EAAA2B,MAMAvC,uBACA3D,EAAAxB,KAAAgH,aAAA,gBAQA,OAJAhD,GACAM,EAAAP,GAGAmB,EAGe,IAAAyC,EAAA,YCpQA,SAAAC,EACfC,EACAC,EACAC,EACAC,EACAC,EACAC,EACAC,EACAC,GAGA,IAqBA9G,EArBAD,EAAA,oBAAAwG,EACAA,EAAAxG,QACAwG,EAiDA,GA9CAC,IACAzG,EAAAyG,SACAzG,EAAA0G,kBACA1G,EAAAgH,WAAA,GAIAL,IACA3G,EAAAiH,YAAA,GAIAJ,IACA7G,EAAAkH,SAAA,UAAAL,GAIAC,GACA7G,EAAA,SAAAkH,GAEAA,EACAA,GACAxI,KAAAyI,QAAAzI,KAAAyI,OAAAC,YACA1I,KAAA2I,QAAA3I,KAAA2I,OAAAF,QAAAzI,KAAA2I,OAAAF,OAAAC,WAEAF,GAAA,qBAAAI,sBACAJ,EAAAI,qBAGAX,GACAA,EAAA3L,KAAA0D,KAAAwI,GAGAA,KAAAK,uBACAL,EAAAK,sBAAAC,IAAAX,IAKA9G,EAAA0H,aAAAzH,GACG2G,IACH3G,EAAA8G,EACA,WAAqBH,EAAA3L,KAAA0D,UAAA+E,MAAApD,SAAAqE,aACrBiC,GAGA3G,EACA,GAAAD,EAAAiH,WAAA,CAGAjH,EAAA2H,cAAA1H,EAEA,IAAA2H,EAAA5H,EAAAyG,OACAzG,EAAAyG,OAAA,SAAAjF,EAAA2F,GAEA,OADAlH,EAAAhF,KAAAkM,GACAS,EAAApG,EAAA2F,QAEK,CAEL,IAAAU,EAAA7H,EAAA8H,aACA9H,EAAA8H,aAAAD,KACA7J,OAAA6J,EAAA5H,IACAA,GAIA,OACArF,QAAA4L,EACAxG,WC1FA,IAAAyG,EAAA,WAA0B,IAAAsB,EAAApJ,KAAaqJ,EAAAD,EAAA1C,eAA0B4C,EAAAF,EAAAG,MAAAD,IAAAD,EAAwB,OAAAC,EAAA,OAAiBE,aAAaC,mBAAA,aAA8BH,EAAA,MAAAF,EAAAM,GAAA,SAAAJ,EAAA,KAAAF,EAAAO,GAAAP,EAAA,mBAAA3K,EAAAmL,GAA+E,OAAAN,EAAA,MAAgB5L,IAAAkM,EAAAC,IAAcC,MAAA,SAAAC,GAAyBX,EAAAtE,MAAA,cAAA8E,OAAkCR,EAAAM,GAAA,iBAAAN,EAAAY,GAAAvL,GAAA,mBAAuD6K,EAAA,UAAgBO,IAAIC,MAAA,SAAAC,GAAyBX,EAAAtE,MAAA,qBAA6BsE,EAAAM,GAAA,gCAAAJ,EAAA,KAAAF,EAAAM,GAAA,aAAAN,EAAAY,GAAAZ,EAAAa,oBAC9blC,KCYAmC,GACAzF,OAAA,iCACA0F,UACAC,UAAA,WACA,OAAAzK,KAAA0K,MAAArK,KAAAsK,uBCjBwRC,EAAA,ECOxRC,EAAgB5C,EACd2C,EACAzC,EACAC,GACF,EACA,KACA,KACA,MACA,GAGAyC,EAAAnJ,QAAAoJ,OAAA,iBACe,IAAAC,EAAAF,UCTfrM,OAAAwM,eAAAC,OAAA,kBAAgDjD,EAAKkD,EAAAC,EAAKJ,0BCV1DxO,EAAAD,QAAA6H","file":"vue-hello-world.min.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = \"5a74\");\n","// This file is imported into lib/wc client bundles.\n\nif (typeof window !== 'undefined') {\n var i\n if ((i = window.document.currentScript) && (i = i.src.match(/(.+\\/)[^/]+\\.js$/))) {\n __webpack_public_path__ = i[1] // eslint-disable-line\n }\n}\n","/*\n\tMIT License http://www.opensource.org/licenses/mit-license.php\n\tAuthor Tobias Koppers @sokra\n*/\n// css base code, injected by the css-loader\nmodule.exports = function(useSourceMap) {\n\tvar list = [];\n\n\t// return the list of modules as css string\n\tlist.toString = function toString() {\n\t\treturn this.map(function (item) {\n\t\t\tvar content = cssWithMappingToString(item, useSourceMap);\n\t\t\tif(item[2]) {\n\t\t\t\treturn \"@media \" + item[2] + \"{\" + content + \"}\";\n\t\t\t} else {\n\t\t\t\treturn content;\n\t\t\t}\n\t\t}).join(\"\");\n\t};\n\n\t// import a list of modules into the list\n\tlist.i = function(modules, mediaQuery) {\n\t\tif(typeof modules === \"string\")\n\t\t\tmodules = [[null, modules, \"\"]];\n\t\tvar alreadyImportedModules = {};\n\t\tfor(var i = 0; i < this.length; i++) {\n\t\t\tvar id = this[i][0];\n\t\t\tif(typeof id === \"number\")\n\t\t\t\talreadyImportedModules[id] = true;\n\t\t}\n\t\tfor(i = 0; i < modules.length; i++) {\n\t\t\tvar item = modules[i];\n\t\t\t// skip already imported module\n\t\t\t// this implementation is not 100% perfect for weird media query combinations\n\t\t\t// when a module is imported multiple times with different media queries.\n\t\t\t// I hope this will never occur (Hey this way we have smaller bundles)\n\t\t\tif(typeof item[0] !== \"number\" || !alreadyImportedModules[item[0]]) {\n\t\t\t\tif(mediaQuery && !item[2]) {\n\t\t\t\t\titem[2] = mediaQuery;\n\t\t\t\t} else if(mediaQuery) {\n\t\t\t\t\titem[2] = \"(\" + item[2] + \") and (\" + mediaQuery + \")\";\n\t\t\t\t}\n\t\t\t\tlist.push(item);\n\t\t\t}\n\t\t}\n\t};\n\treturn list;\n};\n\nfunction cssWithMappingToString(item, useSourceMap) {\n\tvar content = item[1] || '';\n\tvar cssMapping = item[3];\n\tif (!cssMapping) {\n\t\treturn content;\n\t}\n\n\tif (useSourceMap && typeof btoa === 'function') {\n\t\tvar sourceMapping = toComment(cssMapping);\n\t\tvar sourceURLs = cssMapping.sources.map(function (source) {\n\t\t\treturn '/*# sourceURL=' + cssMapping.sourceRoot + source + ' */'\n\t\t});\n\n\t\treturn [content].concat(sourceURLs).concat([sourceMapping]).join('\\n');\n\t}\n\n\treturn [content].join('\\n');\n}\n\n// Adapted from convert-source-map (MIT)\nfunction toComment(sourceMap) {\n\t// eslint-disable-next-line no-undef\n\tvar base64 = btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap))));\n\tvar data = 'sourceMappingURL=data:application/json;charset=utf-8;base64,' + base64;\n\n\treturn '/*# ' + data + ' */';\n}\n","const camelizeRE = /-(\\w)/g;\nconst camelize = str => {\n return str.replace(camelizeRE, (_, c) => c ? c.toUpperCase() : '')\n};\n\nconst hyphenateRE = /\\B([A-Z])/g;\nconst hyphenate = str => {\n return str.replace(hyphenateRE, '-$1').toLowerCase()\n};\n\nfunction getInitialProps (propsList) {\n const res = {};\n propsList.forEach(key => {\n res[key] = undefined;\n });\n return res\n}\n\nfunction injectHook (options, key, hook) {\n options[key] = [].concat(options[key] || []);\n options[key].unshift(hook);\n}\n\nfunction callHooks (vm, hook) {\n if (vm) {\n const hooks = vm.$options[hook] || [];\n hooks.forEach(hook => {\n hook.call(vm);\n });\n }\n}\n\nfunction createCustomEvent (name, args) {\n return new CustomEvent(name, {\n bubbles: false,\n cancelable: false,\n detail: args\n })\n}\n\nconst isBoolean = val => /function Boolean/.test(String(val));\nconst isNumber = val => /function Number/.test(String(val));\n\nfunction convertAttributeValue (value, name, { type } = {}) {\n if (isBoolean(type)) {\n if (value === 'true' || value === 'false') {\n return value === 'true'\n }\n if (value === '' || value === name) {\n return true\n }\n return value != null\n } else if (isNumber(type)) {\n const parsed = parseFloat(value, 10);\n return isNaN(parsed) ? value : parsed\n } else {\n return value\n }\n}\n\nfunction toVNodes (h, children) {\n const res = [];\n for (let i = 0, l = children.length; i < l; i++) {\n res.push(toVNode(h, children[i]));\n }\n return res\n}\n\nfunction toVNode (h, node) {\n if (node.nodeType === 3) {\n return node.data.trim() ? node.data : null\n } else if (node.nodeType === 1) {\n const data = {\n attrs: getAttributes(node),\n domProps: {\n innerHTML: node.innerHTML\n }\n };\n if (data.attrs.slot) {\n data.slot = data.attrs.slot;\n delete data.attrs.slot;\n }\n return h(node.tagName, data)\n } else {\n return null\n }\n}\n\nfunction getAttributes (node) {\n const res = {};\n for (let i = 0, l = node.attributes.length; i < l; i++) {\n const attr = node.attributes[i];\n res[attr.nodeName] = attr.nodeValue;\n }\n return res\n}\n\nfunction wrap (Vue, Component) {\n const isAsync = typeof Component === 'function' && !Component.cid;\n let isInitialized = false;\n let hyphenatedPropsList;\n let camelizedPropsList;\n let camelizedPropsMap;\n\n function initialize (Component) {\n if (isInitialized) return\n\n const options = typeof Component === 'function'\n ? Component.options\n : Component;\n\n // extract props info\n const propsList = Array.isArray(options.props)\n ? options.props\n : Object.keys(options.props || {});\n hyphenatedPropsList = propsList.map(hyphenate);\n camelizedPropsList = propsList.map(camelize);\n const originalPropsAsObject = Array.isArray(options.props) ? {} : options.props || {};\n camelizedPropsMap = camelizedPropsList.reduce((map, key, i) => {\n map[key] = originalPropsAsObject[propsList[i]];\n return map\n }, {});\n\n // proxy $emit to native DOM events\n injectHook(options, 'beforeCreate', function () {\n const emit = this.$emit;\n this.$emit = (name, ...args) => {\n this.$root.$options.customElement.dispatchEvent(createCustomEvent(name, args));\n return emit.call(this, name, ...args)\n };\n });\n\n injectHook(options, 'created', function () {\n // sync default props values to wrapper on created\n camelizedPropsList.forEach(key => {\n this.$root.props[key] = this[key];\n });\n });\n\n // proxy props as Element properties\n camelizedPropsList.forEach(key => {\n Object.defineProperty(CustomElement.prototype, key, {\n get () {\n return this._wrapper.props[key]\n },\n set (newVal) {\n this._wrapper.props[key] = newVal;\n },\n enumerable: false,\n configurable: true\n });\n });\n\n isInitialized = true;\n }\n\n function syncAttribute (el, key) {\n const camelized = camelize(key);\n const value = el.hasAttribute(key) ? el.getAttribute(key) : undefined;\n el._wrapper.props[camelized] = convertAttributeValue(\n value,\n key,\n camelizedPropsMap[camelized]\n );\n }\n\n class CustomElement extends HTMLElement {\n constructor () {\n super();\n this.attachShadow({ mode: 'open' });\n\n const wrapper = this._wrapper = new Vue({\n name: 'shadow-root',\n customElement: this,\n shadowRoot: this.shadowRoot,\n data () {\n return {\n props: {},\n slotChildren: []\n }\n },\n render (h) {\n return h(Component, {\n ref: 'inner',\n props: this.props\n }, this.slotChildren)\n }\n });\n\n // Use MutationObserver to react to future attribute & slot content change\n const observer = new MutationObserver(mutations => {\n let hasChildrenChange = false;\n for (let i = 0; i < mutations.length; i++) {\n const m = mutations[i];\n if (isInitialized && m.type === 'attributes' && m.target === this) {\n syncAttribute(this, m.attributeName);\n } else {\n hasChildrenChange = true;\n }\n }\n if (hasChildrenChange) {\n wrapper.slotChildren = Object.freeze(toVNodes(\n wrapper.$createElement,\n this.childNodes\n ));\n }\n });\n observer.observe(this, {\n childList: true,\n subtree: true,\n characterData: true,\n attributes: true\n });\n }\n\n get vueComponent () {\n return this._wrapper.$refs.inner\n }\n\n connectedCallback () {\n const wrapper = this._wrapper;\n if (!wrapper._isMounted) {\n // initialize attributes\n const syncInitialAttributes = () => {\n wrapper.props = getInitialProps(camelizedPropsList);\n hyphenatedPropsList.forEach(key => {\n syncAttribute(this, key);\n });\n };\n\n if (isInitialized) {\n syncInitialAttributes();\n } else {\n // async & unresolved\n Component().then(resolved => {\n if (resolved.__esModule || resolved[Symbol.toStringTag] === 'Module') {\n resolved = resolved.default;\n }\n initialize(resolved);\n syncInitialAttributes();\n });\n }\n // initialize children\n wrapper.slotChildren = Object.freeze(toVNodes(\n wrapper.$createElement,\n this.childNodes\n ));\n wrapper.$mount();\n this.shadowRoot.appendChild(wrapper.$el);\n } else {\n callHooks(this.vueComponent, 'activated');\n }\n }\n\n disconnectedCallback () {\n callHooks(this.vueComponent, 'deactivated');\n }\n }\n\n if (!isAsync) {\n initialize(Component);\n }\n\n return CustomElement\n}\n\nexport default wrap;\n","/* globals __VUE_SSR_CONTEXT__ */\n\n// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).\n// This module is a runtime utility for cleaner component module output and will\n// be included in the final webpack user bundle.\n\nexport default function normalizeComponent (\n scriptExports,\n render,\n staticRenderFns,\n functionalTemplate,\n injectStyles,\n scopeId,\n moduleIdentifier, /* server only */\n shadowMode /* vue-cli only */\n) {\n // Vue.extend constructor export interop\n var options = typeof scriptExports === 'function'\n ? scriptExports.options\n : scriptExports\n\n // render functions\n if (render) {\n options.render = render\n options.staticRenderFns = staticRenderFns\n options._compiled = true\n }\n\n // functional template\n if (functionalTemplate) {\n options.functional = true\n }\n\n // scopedId\n if (scopeId) {\n options._scopeId = 'data-v-' + scopeId\n }\n\n var hook\n if (moduleIdentifier) { // server build\n hook = function (context) {\n // 2.3 injection\n context =\n context || // cached call\n (this.$vnode && this.$vnode.ssrContext) || // stateful\n (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional\n // 2.2 with runInNewContext: true\n if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {\n context = __VUE_SSR_CONTEXT__\n }\n // inject component styles\n if (injectStyles) {\n injectStyles.call(this, context)\n }\n // register component module identifier for async chunk inferrence\n if (context && context._registeredComponents) {\n context._registeredComponents.add(moduleIdentifier)\n }\n }\n // used by ssr in case component is cached and beforeCreate\n // never gets called\n options._ssrRegister = hook\n } else if (injectStyles) {\n hook = shadowMode\n ? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }\n : injectStyles\n }\n\n if (hook) {\n if (options.functional) {\n // for template-only hot-reload because in that case the render fn doesn't\n // go through the normalizer\n options._injectStyles = hook\n // register for functioal component in vue file\n var originalRender = options.render\n options.render = function renderWithStyleInjection (h, context) {\n hook.call(context)\n return originalRender(h, context)\n }\n } else {\n // inject component registration as beforeCreate hook\n var existing = options.beforeCreate\n options.beforeCreate = existing\n ? [].concat(existing, hook)\n : [hook]\n }\n }\n\n return {\n exports: scriptExports,\n options: options\n }\n}\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticStyle:{\"background-color\":\"#F0747F\"}},[_c('h2',[_vm._v(\"Vue\")]),_c('ul',_vm._l((_vm.checklist),function(item,index){return _c('li',{key:index,on:{\"click\":function($event){_vm.$emit('delete-item', index)}}},[_vm._v(\"\\n \"+_vm._s(item)+\"\\n \")])})),_c('button',{on:{\"click\":function($event){_vm.$emit('counter-event')}}},[_vm._v(\"Click me to decrement by 5\")]),_c('p',[_vm._v(\"Counter = \"+_vm._s(_vm.countervalue))])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n \n
Vue
\n
\n
\n
Counter = {{ countervalue }}
\n
\n\n","import mod from \"-!../node_modules/cache-loader/dist/cjs.js??ref--12-0!../node_modules/thread-loader/dist/cjs.js!../node_modules/babel-loader/lib/index.js!../node_modules/vue-loader/lib/index.js??vue-loader-options!./HelloWorld.vue?vue&type=script&lang=js&shadow\"; export default mod; export * from \"-!../node_modules/cache-loader/dist/cjs.js??ref--12-0!../node_modules/thread-loader/dist/cjs.js!../node_modules/babel-loader/lib/index.js!../node_modules/vue-loader/lib/index.js??vue-loader-options!./HelloWorld.vue?vue&type=script&lang=js&shadow\"","import { render, staticRenderFns } from \"./HelloWorld.vue?vue&type=template&id=59312410&shadow\"\nimport script from \"./HelloWorld.vue?vue&type=script&lang=js&shadow\"\nexport * from \"./HelloWorld.vue?vue&type=script&lang=js&shadow\"\n\n\n/* normalize component */\nimport normalizer from \"!../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n ,true\n)\n\ncomponent.options.__file = \"HelloWorld.vue\"\nexport default component.exports","import './setPublicPath'\nimport Vue from 'vue'\nimport wrap from '@vue/web-component-wrapper'\n\n// runtime shared by every component chunk\nimport 'css-loader/lib/css-base'\nimport 'vue-style-loader/lib/addStylesShadow'\nimport 'vue-loader/lib/runtime/componentNormalizer'\n\nimport vueHelloWorld from '~root/./src/HelloWorld.vue?shadow'\nwindow.customElements.define('vue-hello-world', wrap(Vue, vueHelloWorld))","module.exports = Vue;"],"sourceRoot":""}
--------------------------------------------------------------------------------
/components/vanilla/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | abbrev@1:
6 | version "1.1.1"
7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
8 |
9 | acorn-dynamic-import@^2.0.0:
10 | version "2.0.2"
11 | resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4"
12 | dependencies:
13 | acorn "^4.0.3"
14 |
15 | acorn@^4.0.3:
16 | version "4.0.13"
17 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787"
18 |
19 | acorn@^5.0.0:
20 | version "5.1.2"
21 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.2.tgz#911cb53e036807cf0fa778dc5d370fbd864246d7"
22 |
23 | ajv-keywords@^2.0.0:
24 | version "2.1.0"
25 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.0.tgz#a296e17f7bfae7c1ce4f7e0de53d29cb32162df0"
26 |
27 | ajv@^4.9.1:
28 | version "4.11.8"
29 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536"
30 | dependencies:
31 | co "^4.6.0"
32 | json-stable-stringify "^1.0.1"
33 |
34 | ajv@^5.1.5:
35 | version "5.2.3"
36 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.2.3.tgz#c06f598778c44c6b161abafe3466b81ad1814ed2"
37 | dependencies:
38 | co "^4.6.0"
39 | fast-deep-equal "^1.0.0"
40 | json-schema-traverse "^0.3.0"
41 | json-stable-stringify "^1.0.1"
42 |
43 | align-text@^0.1.1, align-text@^0.1.3:
44 | version "0.1.4"
45 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
46 | dependencies:
47 | kind-of "^3.0.2"
48 | longest "^1.0.1"
49 | repeat-string "^1.5.2"
50 |
51 | ansi-regex@^2.0.0:
52 | version "2.1.1"
53 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
54 |
55 | ansi-regex@^3.0.0:
56 | version "3.0.0"
57 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
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.2"
65 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a"
66 | dependencies:
67 | micromatch "^2.1.5"
68 | normalize-path "^2.0.0"
69 |
70 | aproba@^1.0.3:
71 | version "1.2.0"
72 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
73 |
74 | are-we-there-yet@~1.1.2:
75 | version "1.1.4"
76 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d"
77 | dependencies:
78 | delegates "^1.0.0"
79 | readable-stream "^2.0.6"
80 |
81 | arr-diff@^2.0.0:
82 | version "2.0.0"
83 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
84 | dependencies:
85 | arr-flatten "^1.0.1"
86 |
87 | arr-flatten@^1.0.1:
88 | version "1.1.0"
89 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
90 |
91 | array-unique@^0.2.1:
92 | version "0.2.1"
93 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
94 |
95 | asn1.js@^4.0.0:
96 | version "4.9.1"
97 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.1.tgz#48ba240b45a9280e94748990ba597d216617fd40"
98 | dependencies:
99 | bn.js "^4.0.0"
100 | inherits "^2.0.1"
101 | minimalistic-assert "^1.0.0"
102 |
103 | asn1@~0.2.3:
104 | version "0.2.3"
105 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
106 |
107 | assert-plus@1.0.0, assert-plus@^1.0.0:
108 | version "1.0.0"
109 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
110 |
111 | assert-plus@^0.2.0:
112 | version "0.2.0"
113 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
114 |
115 | assert@^1.1.1:
116 | version "1.4.1"
117 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91"
118 | dependencies:
119 | util "0.10.3"
120 |
121 | async-each@^1.0.0:
122 | version "1.0.1"
123 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
124 |
125 | async@^2.1.2:
126 | version "2.5.0"
127 | resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d"
128 | dependencies:
129 | lodash "^4.14.0"
130 |
131 | asynckit@^0.4.0:
132 | version "0.4.0"
133 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
134 |
135 | aws-sign2@~0.6.0:
136 | version "0.6.0"
137 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
138 |
139 | aws4@^1.2.1:
140 | version "1.6.0"
141 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
142 |
143 | babel-code-frame@^6.26.0:
144 | version "6.26.0"
145 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
146 | dependencies:
147 | chalk "^1.1.3"
148 | esutils "^2.0.2"
149 | js-tokens "^3.0.2"
150 |
151 | babel-core@^6.26.0:
152 | version "6.26.0"
153 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8"
154 | dependencies:
155 | babel-code-frame "^6.26.0"
156 | babel-generator "^6.26.0"
157 | babel-helpers "^6.24.1"
158 | babel-messages "^6.23.0"
159 | babel-register "^6.26.0"
160 | babel-runtime "^6.26.0"
161 | babel-template "^6.26.0"
162 | babel-traverse "^6.26.0"
163 | babel-types "^6.26.0"
164 | babylon "^6.18.0"
165 | convert-source-map "^1.5.0"
166 | debug "^2.6.8"
167 | json5 "^0.5.1"
168 | lodash "^4.17.4"
169 | minimatch "^3.0.4"
170 | path-is-absolute "^1.0.1"
171 | private "^0.1.7"
172 | slash "^1.0.0"
173 | source-map "^0.5.6"
174 |
175 | babel-generator@^6.26.0:
176 | version "6.26.0"
177 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5"
178 | dependencies:
179 | babel-messages "^6.23.0"
180 | babel-runtime "^6.26.0"
181 | babel-types "^6.26.0"
182 | detect-indent "^4.0.0"
183 | jsesc "^1.3.0"
184 | lodash "^4.17.4"
185 | source-map "^0.5.6"
186 | trim-right "^1.0.1"
187 |
188 | babel-helper-call-delegate@^6.24.1:
189 | version "6.24.1"
190 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d"
191 | dependencies:
192 | babel-helper-hoist-variables "^6.24.1"
193 | babel-runtime "^6.22.0"
194 | babel-traverse "^6.24.1"
195 | babel-types "^6.24.1"
196 |
197 | babel-helper-define-map@^6.24.1:
198 | version "6.26.0"
199 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f"
200 | dependencies:
201 | babel-helper-function-name "^6.24.1"
202 | babel-runtime "^6.26.0"
203 | babel-types "^6.26.0"
204 | lodash "^4.17.4"
205 |
206 | babel-helper-function-name@^6.24.1:
207 | version "6.24.1"
208 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9"
209 | dependencies:
210 | babel-helper-get-function-arity "^6.24.1"
211 | babel-runtime "^6.22.0"
212 | babel-template "^6.24.1"
213 | babel-traverse "^6.24.1"
214 | babel-types "^6.24.1"
215 |
216 | babel-helper-get-function-arity@^6.24.1:
217 | version "6.24.1"
218 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d"
219 | dependencies:
220 | babel-runtime "^6.22.0"
221 | babel-types "^6.24.1"
222 |
223 | babel-helper-hoist-variables@^6.24.1:
224 | version "6.24.1"
225 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76"
226 | dependencies:
227 | babel-runtime "^6.22.0"
228 | babel-types "^6.24.1"
229 |
230 | babel-helper-optimise-call-expression@^6.24.1:
231 | version "6.24.1"
232 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257"
233 | dependencies:
234 | babel-runtime "^6.22.0"
235 | babel-types "^6.24.1"
236 |
237 | babel-helper-regex@^6.24.1:
238 | version "6.26.0"
239 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72"
240 | dependencies:
241 | babel-runtime "^6.26.0"
242 | babel-types "^6.26.0"
243 | lodash "^4.17.4"
244 |
245 | babel-helper-replace-supers@^6.24.1:
246 | version "6.24.1"
247 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a"
248 | dependencies:
249 | babel-helper-optimise-call-expression "^6.24.1"
250 | babel-messages "^6.23.0"
251 | babel-runtime "^6.22.0"
252 | babel-template "^6.24.1"
253 | babel-traverse "^6.24.1"
254 | babel-types "^6.24.1"
255 |
256 | babel-helpers@^6.24.1:
257 | version "6.24.1"
258 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2"
259 | dependencies:
260 | babel-runtime "^6.22.0"
261 | babel-template "^6.24.1"
262 |
263 | babel-loader@^7.1.2:
264 | version "7.1.2"
265 | resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-7.1.2.tgz#f6cbe122710f1aa2af4d881c6d5b54358ca24126"
266 | dependencies:
267 | find-cache-dir "^1.0.0"
268 | loader-utils "^1.0.2"
269 | mkdirp "^0.5.1"
270 |
271 | babel-messages@^6.23.0:
272 | version "6.23.0"
273 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
274 | dependencies:
275 | babel-runtime "^6.22.0"
276 |
277 | babel-plugin-check-es2015-constants@^6.22.0:
278 | version "6.22.0"
279 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a"
280 | dependencies:
281 | babel-runtime "^6.22.0"
282 |
283 | babel-plugin-transform-es2015-arrow-functions@^6.22.0:
284 | version "6.22.0"
285 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221"
286 | dependencies:
287 | babel-runtime "^6.22.0"
288 |
289 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0:
290 | version "6.22.0"
291 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141"
292 | dependencies:
293 | babel-runtime "^6.22.0"
294 |
295 | babel-plugin-transform-es2015-block-scoping@^6.24.1:
296 | version "6.26.0"
297 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f"
298 | dependencies:
299 | babel-runtime "^6.26.0"
300 | babel-template "^6.26.0"
301 | babel-traverse "^6.26.0"
302 | babel-types "^6.26.0"
303 | lodash "^4.17.4"
304 |
305 | babel-plugin-transform-es2015-classes@^6.24.1:
306 | version "6.24.1"
307 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db"
308 | dependencies:
309 | babel-helper-define-map "^6.24.1"
310 | babel-helper-function-name "^6.24.1"
311 | babel-helper-optimise-call-expression "^6.24.1"
312 | babel-helper-replace-supers "^6.24.1"
313 | babel-messages "^6.23.0"
314 | babel-runtime "^6.22.0"
315 | babel-template "^6.24.1"
316 | babel-traverse "^6.24.1"
317 | babel-types "^6.24.1"
318 |
319 | babel-plugin-transform-es2015-computed-properties@^6.24.1:
320 | version "6.24.1"
321 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3"
322 | dependencies:
323 | babel-runtime "^6.22.0"
324 | babel-template "^6.24.1"
325 |
326 | babel-plugin-transform-es2015-destructuring@^6.22.0:
327 | version "6.23.0"
328 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d"
329 | dependencies:
330 | babel-runtime "^6.22.0"
331 |
332 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1:
333 | version "6.24.1"
334 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e"
335 | dependencies:
336 | babel-runtime "^6.22.0"
337 | babel-types "^6.24.1"
338 |
339 | babel-plugin-transform-es2015-for-of@^6.22.0:
340 | version "6.23.0"
341 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691"
342 | dependencies:
343 | babel-runtime "^6.22.0"
344 |
345 | babel-plugin-transform-es2015-function-name@^6.24.1:
346 | version "6.24.1"
347 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b"
348 | dependencies:
349 | babel-helper-function-name "^6.24.1"
350 | babel-runtime "^6.22.0"
351 | babel-types "^6.24.1"
352 |
353 | babel-plugin-transform-es2015-literals@^6.22.0:
354 | version "6.22.0"
355 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e"
356 | dependencies:
357 | babel-runtime "^6.22.0"
358 |
359 | babel-plugin-transform-es2015-modules-amd@^6.24.1:
360 | version "6.24.1"
361 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154"
362 | dependencies:
363 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
364 | babel-runtime "^6.22.0"
365 | babel-template "^6.24.1"
366 |
367 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1:
368 | version "6.26.0"
369 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a"
370 | dependencies:
371 | babel-plugin-transform-strict-mode "^6.24.1"
372 | babel-runtime "^6.26.0"
373 | babel-template "^6.26.0"
374 | babel-types "^6.26.0"
375 |
376 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1:
377 | version "6.24.1"
378 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23"
379 | dependencies:
380 | babel-helper-hoist-variables "^6.24.1"
381 | babel-runtime "^6.22.0"
382 | babel-template "^6.24.1"
383 |
384 | babel-plugin-transform-es2015-modules-umd@^6.24.1:
385 | version "6.24.1"
386 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468"
387 | dependencies:
388 | babel-plugin-transform-es2015-modules-amd "^6.24.1"
389 | babel-runtime "^6.22.0"
390 | babel-template "^6.24.1"
391 |
392 | babel-plugin-transform-es2015-object-super@^6.24.1:
393 | version "6.24.1"
394 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d"
395 | dependencies:
396 | babel-helper-replace-supers "^6.24.1"
397 | babel-runtime "^6.22.0"
398 |
399 | babel-plugin-transform-es2015-parameters@^6.24.1:
400 | version "6.24.1"
401 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b"
402 | dependencies:
403 | babel-helper-call-delegate "^6.24.1"
404 | babel-helper-get-function-arity "^6.24.1"
405 | babel-runtime "^6.22.0"
406 | babel-template "^6.24.1"
407 | babel-traverse "^6.24.1"
408 | babel-types "^6.24.1"
409 |
410 | babel-plugin-transform-es2015-shorthand-properties@^6.24.1:
411 | version "6.24.1"
412 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0"
413 | dependencies:
414 | babel-runtime "^6.22.0"
415 | babel-types "^6.24.1"
416 |
417 | babel-plugin-transform-es2015-spread@^6.22.0:
418 | version "6.22.0"
419 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1"
420 | dependencies:
421 | babel-runtime "^6.22.0"
422 |
423 | babel-plugin-transform-es2015-sticky-regex@^6.24.1:
424 | version "6.24.1"
425 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc"
426 | dependencies:
427 | babel-helper-regex "^6.24.1"
428 | babel-runtime "^6.22.0"
429 | babel-types "^6.24.1"
430 |
431 | babel-plugin-transform-es2015-template-literals@^6.22.0:
432 | version "6.22.0"
433 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d"
434 | dependencies:
435 | babel-runtime "^6.22.0"
436 |
437 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0:
438 | version "6.23.0"
439 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372"
440 | dependencies:
441 | babel-runtime "^6.22.0"
442 |
443 | babel-plugin-transform-es2015-unicode-regex@^6.24.1:
444 | version "6.24.1"
445 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9"
446 | dependencies:
447 | babel-helper-regex "^6.24.1"
448 | babel-runtime "^6.22.0"
449 | regexpu-core "^2.0.0"
450 |
451 | babel-plugin-transform-regenerator@^6.24.1:
452 | version "6.26.0"
453 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f"
454 | dependencies:
455 | regenerator-transform "^0.10.0"
456 |
457 | babel-plugin-transform-strict-mode@^6.24.1:
458 | version "6.24.1"
459 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758"
460 | dependencies:
461 | babel-runtime "^6.22.0"
462 | babel-types "^6.24.1"
463 |
464 | babel-preset-es2015@^6.24.1:
465 | version "6.24.1"
466 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939"
467 | dependencies:
468 | babel-plugin-check-es2015-constants "^6.22.0"
469 | babel-plugin-transform-es2015-arrow-functions "^6.22.0"
470 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0"
471 | babel-plugin-transform-es2015-block-scoping "^6.24.1"
472 | babel-plugin-transform-es2015-classes "^6.24.1"
473 | babel-plugin-transform-es2015-computed-properties "^6.24.1"
474 | babel-plugin-transform-es2015-destructuring "^6.22.0"
475 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1"
476 | babel-plugin-transform-es2015-for-of "^6.22.0"
477 | babel-plugin-transform-es2015-function-name "^6.24.1"
478 | babel-plugin-transform-es2015-literals "^6.22.0"
479 | babel-plugin-transform-es2015-modules-amd "^6.24.1"
480 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
481 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1"
482 | babel-plugin-transform-es2015-modules-umd "^6.24.1"
483 | babel-plugin-transform-es2015-object-super "^6.24.1"
484 | babel-plugin-transform-es2015-parameters "^6.24.1"
485 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1"
486 | babel-plugin-transform-es2015-spread "^6.22.0"
487 | babel-plugin-transform-es2015-sticky-regex "^6.24.1"
488 | babel-plugin-transform-es2015-template-literals "^6.22.0"
489 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0"
490 | babel-plugin-transform-es2015-unicode-regex "^6.24.1"
491 | babel-plugin-transform-regenerator "^6.24.1"
492 |
493 | babel-register@^6.26.0:
494 | version "6.26.0"
495 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071"
496 | dependencies:
497 | babel-core "^6.26.0"
498 | babel-runtime "^6.26.0"
499 | core-js "^2.5.0"
500 | home-or-tmp "^2.0.0"
501 | lodash "^4.17.4"
502 | mkdirp "^0.5.1"
503 | source-map-support "^0.4.15"
504 |
505 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0:
506 | version "6.26.0"
507 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
508 | dependencies:
509 | core-js "^2.4.0"
510 | regenerator-runtime "^0.11.0"
511 |
512 | babel-template@^6.24.1, babel-template@^6.26.0:
513 | version "6.26.0"
514 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02"
515 | dependencies:
516 | babel-runtime "^6.26.0"
517 | babel-traverse "^6.26.0"
518 | babel-types "^6.26.0"
519 | babylon "^6.18.0"
520 | lodash "^4.17.4"
521 |
522 | babel-traverse@^6.24.1, babel-traverse@^6.26.0:
523 | version "6.26.0"
524 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"
525 | dependencies:
526 | babel-code-frame "^6.26.0"
527 | babel-messages "^6.23.0"
528 | babel-runtime "^6.26.0"
529 | babel-types "^6.26.0"
530 | babylon "^6.18.0"
531 | debug "^2.6.8"
532 | globals "^9.18.0"
533 | invariant "^2.2.2"
534 | lodash "^4.17.4"
535 |
536 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0:
537 | version "6.26.0"
538 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497"
539 | dependencies:
540 | babel-runtime "^6.26.0"
541 | esutils "^2.0.2"
542 | lodash "^4.17.4"
543 | to-fast-properties "^1.0.3"
544 |
545 | babylon@^6.18.0:
546 | version "6.18.0"
547 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"
548 |
549 | balanced-match@^1.0.0:
550 | version "1.0.0"
551 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
552 |
553 | base64-js@^1.0.2:
554 | version "1.2.1"
555 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886"
556 |
557 | bcrypt-pbkdf@^1.0.0:
558 | version "1.0.1"
559 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d"
560 | dependencies:
561 | tweetnacl "^0.14.3"
562 |
563 | big.js@^3.1.3:
564 | version "3.2.0"
565 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e"
566 |
567 | binary-extensions@^1.0.0:
568 | version "1.10.0"
569 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.10.0.tgz#9aeb9a6c5e88638aad171e167f5900abe24835d0"
570 |
571 | block-stream@*:
572 | version "0.0.9"
573 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
574 | dependencies:
575 | inherits "~2.0.0"
576 |
577 | bluebird@^3.4.7:
578 | version "3.5.1"
579 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9"
580 |
581 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0:
582 | version "4.11.8"
583 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f"
584 |
585 | boolbase@~1.0.0:
586 | version "1.0.0"
587 | resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
588 |
589 | boom@2.x.x:
590 | version "2.10.1"
591 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
592 | dependencies:
593 | hoek "2.x.x"
594 |
595 | brace-expansion@^1.1.7:
596 | version "1.1.8"
597 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292"
598 | dependencies:
599 | balanced-match "^1.0.0"
600 | concat-map "0.0.1"
601 |
602 | braces@^1.8.2:
603 | version "1.8.5"
604 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
605 | dependencies:
606 | expand-range "^1.8.1"
607 | preserve "^0.2.0"
608 | repeat-element "^1.1.2"
609 |
610 | brorand@^1.0.1:
611 | version "1.1.0"
612 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
613 |
614 | browserify-aes@^1.0.0, browserify-aes@^1.0.4:
615 | version "1.0.8"
616 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.8.tgz#c8fa3b1b7585bb7ba77c5560b60996ddec6d5309"
617 | dependencies:
618 | buffer-xor "^1.0.3"
619 | cipher-base "^1.0.0"
620 | create-hash "^1.1.0"
621 | evp_bytestokey "^1.0.3"
622 | inherits "^2.0.1"
623 | safe-buffer "^5.0.1"
624 |
625 | browserify-cipher@^1.0.0:
626 | version "1.0.0"
627 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a"
628 | dependencies:
629 | browserify-aes "^1.0.4"
630 | browserify-des "^1.0.0"
631 | evp_bytestokey "^1.0.0"
632 |
633 | browserify-des@^1.0.0:
634 | version "1.0.0"
635 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd"
636 | dependencies:
637 | cipher-base "^1.0.1"
638 | des.js "^1.0.0"
639 | inherits "^2.0.1"
640 |
641 | browserify-rsa@^4.0.0:
642 | version "4.0.1"
643 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524"
644 | dependencies:
645 | bn.js "^4.1.0"
646 | randombytes "^2.0.1"
647 |
648 | browserify-sign@^4.0.0:
649 | version "4.0.4"
650 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298"
651 | dependencies:
652 | bn.js "^4.1.1"
653 | browserify-rsa "^4.0.0"
654 | create-hash "^1.1.0"
655 | create-hmac "^1.1.2"
656 | elliptic "^6.0.0"
657 | inherits "^2.0.1"
658 | parse-asn1 "^5.0.0"
659 |
660 | browserify-zlib@^0.1.4:
661 | version "0.1.4"
662 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d"
663 | dependencies:
664 | pako "~0.2.0"
665 |
666 | buffer-xor@^1.0.3:
667 | version "1.0.3"
668 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9"
669 |
670 | buffer@^4.3.0:
671 | version "4.9.1"
672 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298"
673 | dependencies:
674 | base64-js "^1.0.2"
675 | ieee754 "^1.1.4"
676 | isarray "^1.0.0"
677 |
678 | builtin-modules@^1.0.0:
679 | version "1.1.1"
680 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
681 |
682 | builtin-status-codes@^3.0.0:
683 | version "3.0.0"
684 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
685 |
686 | camel-case@3.0.x:
687 | version "3.0.0"
688 | resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-3.0.0.tgz#ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73"
689 | dependencies:
690 | no-case "^2.2.0"
691 | upper-case "^1.1.1"
692 |
693 | camelcase@^1.0.2:
694 | version "1.2.1"
695 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
696 |
697 | camelcase@^4.1.0:
698 | version "4.1.0"
699 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
700 |
701 | caseless@~0.12.0:
702 | version "0.12.0"
703 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
704 |
705 | center-align@^0.1.1:
706 | version "0.1.3"
707 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad"
708 | dependencies:
709 | align-text "^0.1.3"
710 | lazy-cache "^1.0.3"
711 |
712 | chalk@^1.1.3:
713 | version "1.1.3"
714 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
715 | dependencies:
716 | ansi-styles "^2.2.1"
717 | escape-string-regexp "^1.0.2"
718 | has-ansi "^2.0.0"
719 | strip-ansi "^3.0.0"
720 | supports-color "^2.0.0"
721 |
722 | chokidar@^1.7.0:
723 | version "1.7.0"
724 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468"
725 | dependencies:
726 | anymatch "^1.3.0"
727 | async-each "^1.0.0"
728 | glob-parent "^2.0.0"
729 | inherits "^2.0.1"
730 | is-binary-path "^1.0.0"
731 | is-glob "^2.0.0"
732 | path-is-absolute "^1.0.0"
733 | readdirp "^2.0.0"
734 | optionalDependencies:
735 | fsevents "^1.0.0"
736 |
737 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3:
738 | version "1.0.4"
739 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de"
740 | dependencies:
741 | inherits "^2.0.1"
742 | safe-buffer "^5.0.1"
743 |
744 | clean-css@4.1.x:
745 | version "4.1.9"
746 | resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.1.9.tgz#35cee8ae7687a49b98034f70de00c4edd3826301"
747 | dependencies:
748 | source-map "0.5.x"
749 |
750 | cliui@^2.1.0:
751 | version "2.1.0"
752 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1"
753 | dependencies:
754 | center-align "^0.1.1"
755 | right-align "^0.1.1"
756 | wordwrap "0.0.2"
757 |
758 | cliui@^3.2.0:
759 | version "3.2.0"
760 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d"
761 | dependencies:
762 | string-width "^1.0.1"
763 | strip-ansi "^3.0.1"
764 | wrap-ansi "^2.0.0"
765 |
766 | co@^4.6.0:
767 | version "4.6.0"
768 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
769 |
770 | code-point-at@^1.0.0:
771 | version "1.1.0"
772 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
773 |
774 | combined-stream@^1.0.5, combined-stream@~1.0.5:
775 | version "1.0.5"
776 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009"
777 | dependencies:
778 | delayed-stream "~1.0.0"
779 |
780 | commander@2.11.x, commander@~2.11.0:
781 | version "2.11.0"
782 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563"
783 |
784 | commondir@^1.0.1:
785 | version "1.0.1"
786 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
787 |
788 | concat-map@0.0.1:
789 | version "0.0.1"
790 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
791 |
792 | console-browserify@^1.1.0:
793 | version "1.1.0"
794 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10"
795 | dependencies:
796 | date-now "^0.1.4"
797 |
798 | console-control-strings@^1.0.0, console-control-strings@~1.1.0:
799 | version "1.1.0"
800 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
801 |
802 | constants-browserify@^1.0.0:
803 | version "1.0.0"
804 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75"
805 |
806 | convert-source-map@^1.5.0:
807 | version "1.5.0"
808 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5"
809 |
810 | core-js@^2.4.0, core-js@^2.5.0:
811 | version "2.5.1"
812 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b"
813 |
814 | core-util-is@1.0.2, core-util-is@~1.0.0:
815 | version "1.0.2"
816 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
817 |
818 | create-ecdh@^4.0.0:
819 | version "4.0.0"
820 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d"
821 | dependencies:
822 | bn.js "^4.1.0"
823 | elliptic "^6.0.0"
824 |
825 | create-hash@^1.1.0, create-hash@^1.1.2:
826 | version "1.1.3"
827 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd"
828 | dependencies:
829 | cipher-base "^1.0.1"
830 | inherits "^2.0.1"
831 | ripemd160 "^2.0.0"
832 | sha.js "^2.4.0"
833 |
834 | create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4:
835 | version "1.1.6"
836 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06"
837 | dependencies:
838 | cipher-base "^1.0.3"
839 | create-hash "^1.1.0"
840 | inherits "^2.0.1"
841 | ripemd160 "^2.0.0"
842 | safe-buffer "^5.0.1"
843 | sha.js "^2.4.8"
844 |
845 | cross-spawn@^5.0.1:
846 | version "5.1.0"
847 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
848 | dependencies:
849 | lru-cache "^4.0.1"
850 | shebang-command "^1.2.0"
851 | which "^1.2.9"
852 |
853 | cryptiles@2.x.x:
854 | version "2.0.5"
855 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8"
856 | dependencies:
857 | boom "2.x.x"
858 |
859 | crypto-browserify@^3.11.0:
860 | version "3.11.1"
861 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.1.tgz#948945efc6757a400d6e5e5af47194d10064279f"
862 | dependencies:
863 | browserify-cipher "^1.0.0"
864 | browserify-sign "^4.0.0"
865 | create-ecdh "^4.0.0"
866 | create-hash "^1.1.0"
867 | create-hmac "^1.1.0"
868 | diffie-hellman "^5.0.0"
869 | inherits "^2.0.1"
870 | pbkdf2 "^3.0.3"
871 | public-encrypt "^4.0.0"
872 | randombytes "^2.0.0"
873 |
874 | css-select@^1.1.0:
875 | version "1.2.0"
876 | resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858"
877 | dependencies:
878 | boolbase "~1.0.0"
879 | css-what "2.1"
880 | domutils "1.5.1"
881 | nth-check "~1.0.1"
882 |
883 | css-what@2.1:
884 | version "2.1.0"
885 | resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.0.tgz#9467d032c38cfaefb9f2d79501253062f87fa1bd"
886 |
887 | d@1:
888 | version "1.0.0"
889 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f"
890 | dependencies:
891 | es5-ext "^0.10.9"
892 |
893 | dashdash@^1.12.0:
894 | version "1.14.1"
895 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
896 | dependencies:
897 | assert-plus "^1.0.0"
898 |
899 | date-now@^0.1.4:
900 | version "0.1.4"
901 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b"
902 |
903 | debug@^2.2.0, debug@^2.6.8:
904 | version "2.6.9"
905 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
906 | dependencies:
907 | ms "2.0.0"
908 |
909 | decamelize@^1.0.0, decamelize@^1.1.1:
910 | version "1.2.0"
911 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
912 |
913 | deep-extend@~0.4.0:
914 | version "0.4.2"
915 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f"
916 |
917 | delayed-stream@~1.0.0:
918 | version "1.0.0"
919 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
920 |
921 | delegates@^1.0.0:
922 | version "1.0.0"
923 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
924 |
925 | des.js@^1.0.0:
926 | version "1.0.0"
927 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc"
928 | dependencies:
929 | inherits "^2.0.1"
930 | minimalistic-assert "^1.0.0"
931 |
932 | detect-indent@^4.0.0:
933 | version "4.0.0"
934 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208"
935 | dependencies:
936 | repeating "^2.0.0"
937 |
938 | diffie-hellman@^5.0.0:
939 | version "5.0.2"
940 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e"
941 | dependencies:
942 | bn.js "^4.1.0"
943 | miller-rabin "^4.0.0"
944 | randombytes "^2.0.0"
945 |
946 | dom-converter@~0.1:
947 | version "0.1.4"
948 | resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.1.4.tgz#a45ef5727b890c9bffe6d7c876e7b19cb0e17f3b"
949 | dependencies:
950 | utila "~0.3"
951 |
952 | dom-serializer@0:
953 | version "0.1.0"
954 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82"
955 | dependencies:
956 | domelementtype "~1.1.1"
957 | entities "~1.1.1"
958 |
959 | domain-browser@^1.1.1:
960 | version "1.1.7"
961 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc"
962 |
963 | domelementtype@1:
964 | version "1.3.0"
965 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2"
966 |
967 | domelementtype@~1.1.1:
968 | version "1.1.3"
969 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b"
970 |
971 | domhandler@2.1:
972 | version "2.1.0"
973 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.1.0.tgz#d2646f5e57f6c3bab11cf6cb05d3c0acf7412594"
974 | dependencies:
975 | domelementtype "1"
976 |
977 | domutils@1.1:
978 | version "1.1.6"
979 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.1.6.tgz#bddc3de099b9a2efacc51c623f28f416ecc57485"
980 | dependencies:
981 | domelementtype "1"
982 |
983 | domutils@1.5.1:
984 | version "1.5.1"
985 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf"
986 | dependencies:
987 | dom-serializer "0"
988 | domelementtype "1"
989 |
990 | ecc-jsbn@~0.1.1:
991 | version "0.1.1"
992 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
993 | dependencies:
994 | jsbn "~0.1.0"
995 |
996 | elliptic@^6.0.0:
997 | version "6.4.0"
998 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df"
999 | dependencies:
1000 | bn.js "^4.4.0"
1001 | brorand "^1.0.1"
1002 | hash.js "^1.0.0"
1003 | hmac-drbg "^1.0.0"
1004 | inherits "^2.0.1"
1005 | minimalistic-assert "^1.0.0"
1006 | minimalistic-crypto-utils "^1.0.0"
1007 |
1008 | emojis-list@^2.0.0:
1009 | version "2.1.0"
1010 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389"
1011 |
1012 | enhanced-resolve@^3.4.0:
1013 | version "3.4.1"
1014 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz#0421e339fd71419b3da13d129b3979040230476e"
1015 | dependencies:
1016 | graceful-fs "^4.1.2"
1017 | memory-fs "^0.4.0"
1018 | object-assign "^4.0.1"
1019 | tapable "^0.2.7"
1020 |
1021 | entities@~1.1.1:
1022 | version "1.1.1"
1023 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0"
1024 |
1025 | errno@^0.1.3:
1026 | version "0.1.4"
1027 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d"
1028 | dependencies:
1029 | prr "~0.0.0"
1030 |
1031 | error-ex@^1.2.0:
1032 | version "1.3.1"
1033 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc"
1034 | dependencies:
1035 | is-arrayish "^0.2.1"
1036 |
1037 | es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14:
1038 | version "0.10.30"
1039 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.30.tgz#7141a16836697dbabfaaaeee41495ce29f52c939"
1040 | dependencies:
1041 | es6-iterator "2"
1042 | es6-symbol "~3.1"
1043 |
1044 | es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1:
1045 | version "2.0.1"
1046 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512"
1047 | dependencies:
1048 | d "1"
1049 | es5-ext "^0.10.14"
1050 | es6-symbol "^3.1"
1051 |
1052 | es6-map@^0.1.3:
1053 | version "0.1.5"
1054 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0"
1055 | dependencies:
1056 | d "1"
1057 | es5-ext "~0.10.14"
1058 | es6-iterator "~2.0.1"
1059 | es6-set "~0.1.5"
1060 | es6-symbol "~3.1.1"
1061 | event-emitter "~0.3.5"
1062 |
1063 | es6-set@~0.1.5:
1064 | version "0.1.5"
1065 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1"
1066 | dependencies:
1067 | d "1"
1068 | es5-ext "~0.10.14"
1069 | es6-iterator "~2.0.1"
1070 | es6-symbol "3.1.1"
1071 | event-emitter "~0.3.5"
1072 |
1073 | es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1:
1074 | version "3.1.1"
1075 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77"
1076 | dependencies:
1077 | d "1"
1078 | es5-ext "~0.10.14"
1079 |
1080 | es6-weak-map@^2.0.1:
1081 | version "2.0.2"
1082 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f"
1083 | dependencies:
1084 | d "1"
1085 | es5-ext "^0.10.14"
1086 | es6-iterator "^2.0.1"
1087 | es6-symbol "^3.1.1"
1088 |
1089 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
1090 | version "1.0.5"
1091 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
1092 |
1093 | escope@^3.6.0:
1094 | version "3.6.0"
1095 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3"
1096 | dependencies:
1097 | es6-map "^0.1.3"
1098 | es6-weak-map "^2.0.1"
1099 | esrecurse "^4.1.0"
1100 | estraverse "^4.1.1"
1101 |
1102 | esrecurse@^4.1.0:
1103 | version "4.2.0"
1104 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163"
1105 | dependencies:
1106 | estraverse "^4.1.0"
1107 | object-assign "^4.0.1"
1108 |
1109 | estraverse@^4.1.0, estraverse@^4.1.1:
1110 | version "4.2.0"
1111 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
1112 |
1113 | esutils@^2.0.2:
1114 | version "2.0.2"
1115 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
1116 |
1117 | event-emitter@~0.3.5:
1118 | version "0.3.5"
1119 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39"
1120 | dependencies:
1121 | d "1"
1122 | es5-ext "~0.10.14"
1123 |
1124 | events@^1.0.0:
1125 | version "1.1.1"
1126 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924"
1127 |
1128 | evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3:
1129 | version "1.0.3"
1130 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02"
1131 | dependencies:
1132 | md5.js "^1.3.4"
1133 | safe-buffer "^5.1.1"
1134 |
1135 | execa@^0.7.0:
1136 | version "0.7.0"
1137 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777"
1138 | dependencies:
1139 | cross-spawn "^5.0.1"
1140 | get-stream "^3.0.0"
1141 | is-stream "^1.1.0"
1142 | npm-run-path "^2.0.0"
1143 | p-finally "^1.0.0"
1144 | signal-exit "^3.0.0"
1145 | strip-eof "^1.0.0"
1146 |
1147 | expand-brackets@^0.1.4:
1148 | version "0.1.5"
1149 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
1150 | dependencies:
1151 | is-posix-bracket "^0.1.0"
1152 |
1153 | expand-range@^1.8.1:
1154 | version "1.8.2"
1155 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
1156 | dependencies:
1157 | fill-range "^2.1.0"
1158 |
1159 | extend@~3.0.0:
1160 | version "3.0.1"
1161 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444"
1162 |
1163 | extglob@^0.3.1:
1164 | version "0.3.2"
1165 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
1166 | dependencies:
1167 | is-extglob "^1.0.0"
1168 |
1169 | extsprintf@1.3.0, extsprintf@^1.2.0:
1170 | version "1.3.0"
1171 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05"
1172 |
1173 | fast-deep-equal@^1.0.0:
1174 | version "1.0.0"
1175 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff"
1176 |
1177 | filename-regex@^2.0.0:
1178 | version "2.0.1"
1179 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"
1180 |
1181 | fill-range@^2.1.0:
1182 | version "2.2.3"
1183 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723"
1184 | dependencies:
1185 | is-number "^2.1.0"
1186 | isobject "^2.0.0"
1187 | randomatic "^1.1.3"
1188 | repeat-element "^1.1.2"
1189 | repeat-string "^1.5.2"
1190 |
1191 | find-cache-dir@^1.0.0:
1192 | version "1.0.0"
1193 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-1.0.0.tgz#9288e3e9e3cc3748717d39eade17cf71fc30ee6f"
1194 | dependencies:
1195 | commondir "^1.0.1"
1196 | make-dir "^1.0.0"
1197 | pkg-dir "^2.0.0"
1198 |
1199 | find-up@^2.0.0, find-up@^2.1.0:
1200 | version "2.1.0"
1201 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
1202 | dependencies:
1203 | locate-path "^2.0.0"
1204 |
1205 | for-in@^1.0.1:
1206 | version "1.0.2"
1207 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
1208 |
1209 | for-own@^0.1.4:
1210 | version "0.1.5"
1211 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce"
1212 | dependencies:
1213 | for-in "^1.0.1"
1214 |
1215 | forever-agent@~0.6.1:
1216 | version "0.6.1"
1217 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
1218 |
1219 | form-data@~2.1.1:
1220 | version "2.1.4"
1221 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1"
1222 | dependencies:
1223 | asynckit "^0.4.0"
1224 | combined-stream "^1.0.5"
1225 | mime-types "^2.1.12"
1226 |
1227 | fs.realpath@^1.0.0:
1228 | version "1.0.0"
1229 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1230 |
1231 | fsevents@^1.0.0:
1232 | version "1.1.2"
1233 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4"
1234 | dependencies:
1235 | nan "^2.3.0"
1236 | node-pre-gyp "^0.6.36"
1237 |
1238 | fstream-ignore@^1.0.5:
1239 | version "1.0.5"
1240 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105"
1241 | dependencies:
1242 | fstream "^1.0.0"
1243 | inherits "2"
1244 | minimatch "^3.0.0"
1245 |
1246 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2:
1247 | version "1.0.11"
1248 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171"
1249 | dependencies:
1250 | graceful-fs "^4.1.2"
1251 | inherits "~2.0.0"
1252 | mkdirp ">=0.5 0"
1253 | rimraf "2"
1254 |
1255 | gauge@~2.7.3:
1256 | version "2.7.4"
1257 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
1258 | dependencies:
1259 | aproba "^1.0.3"
1260 | console-control-strings "^1.0.0"
1261 | has-unicode "^2.0.0"
1262 | object-assign "^4.1.0"
1263 | signal-exit "^3.0.0"
1264 | string-width "^1.0.1"
1265 | strip-ansi "^3.0.1"
1266 | wide-align "^1.1.0"
1267 |
1268 | get-caller-file@^1.0.1:
1269 | version "1.0.2"
1270 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5"
1271 |
1272 | get-stream@^3.0.0:
1273 | version "3.0.0"
1274 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
1275 |
1276 | getpass@^0.1.1:
1277 | version "0.1.7"
1278 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
1279 | dependencies:
1280 | assert-plus "^1.0.0"
1281 |
1282 | glob-base@^0.3.0:
1283 | version "0.3.0"
1284 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
1285 | dependencies:
1286 | glob-parent "^2.0.0"
1287 | is-glob "^2.0.0"
1288 |
1289 | glob-parent@^2.0.0:
1290 | version "2.0.0"
1291 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
1292 | dependencies:
1293 | is-glob "^2.0.0"
1294 |
1295 | glob@^7.0.5:
1296 | version "7.1.2"
1297 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
1298 | dependencies:
1299 | fs.realpath "^1.0.0"
1300 | inflight "^1.0.4"
1301 | inherits "2"
1302 | minimatch "^3.0.4"
1303 | once "^1.3.0"
1304 | path-is-absolute "^1.0.0"
1305 |
1306 | globals@^9.18.0:
1307 | version "9.18.0"
1308 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
1309 |
1310 | graceful-fs@^4.1.2:
1311 | version "4.1.11"
1312 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
1313 |
1314 | har-schema@^1.0.5:
1315 | version "1.0.5"
1316 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e"
1317 |
1318 | har-validator@~4.2.1:
1319 | version "4.2.1"
1320 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a"
1321 | dependencies:
1322 | ajv "^4.9.1"
1323 | har-schema "^1.0.5"
1324 |
1325 | has-ansi@^2.0.0:
1326 | version "2.0.0"
1327 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
1328 | dependencies:
1329 | ansi-regex "^2.0.0"
1330 |
1331 | has-flag@^2.0.0:
1332 | version "2.0.0"
1333 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51"
1334 |
1335 | has-unicode@^2.0.0:
1336 | version "2.0.1"
1337 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
1338 |
1339 | hash-base@^2.0.0:
1340 | version "2.0.2"
1341 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1"
1342 | dependencies:
1343 | inherits "^2.0.1"
1344 |
1345 | hash-base@^3.0.0:
1346 | version "3.0.4"
1347 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918"
1348 | dependencies:
1349 | inherits "^2.0.1"
1350 | safe-buffer "^5.0.1"
1351 |
1352 | hash.js@^1.0.0, hash.js@^1.0.3:
1353 | version "1.1.3"
1354 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846"
1355 | dependencies:
1356 | inherits "^2.0.3"
1357 | minimalistic-assert "^1.0.0"
1358 |
1359 | hawk@3.1.3, hawk@~3.1.3:
1360 | version "3.1.3"
1361 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
1362 | dependencies:
1363 | boom "2.x.x"
1364 | cryptiles "2.x.x"
1365 | hoek "2.x.x"
1366 | sntp "1.x.x"
1367 |
1368 | he@1.1.x:
1369 | version "1.1.1"
1370 | resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd"
1371 |
1372 | hmac-drbg@^1.0.0:
1373 | version "1.0.1"
1374 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1"
1375 | dependencies:
1376 | hash.js "^1.0.3"
1377 | minimalistic-assert "^1.0.0"
1378 | minimalistic-crypto-utils "^1.0.1"
1379 |
1380 | hoek@2.x.x:
1381 | version "2.16.3"
1382 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed"
1383 |
1384 | home-or-tmp@^2.0.0:
1385 | version "2.0.0"
1386 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8"
1387 | dependencies:
1388 | os-homedir "^1.0.0"
1389 | os-tmpdir "^1.0.1"
1390 |
1391 | hosted-git-info@^2.1.4:
1392 | version "2.5.0"
1393 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c"
1394 |
1395 | html-minifier@^3.2.3:
1396 | version "3.5.5"
1397 | resolved "https://registry.yarnpkg.com/html-minifier/-/html-minifier-3.5.5.tgz#3bdc9427e638bbe3dbde96c0eb988b044f02739e"
1398 | dependencies:
1399 | camel-case "3.0.x"
1400 | clean-css "4.1.x"
1401 | commander "2.11.x"
1402 | he "1.1.x"
1403 | ncname "1.0.x"
1404 | param-case "2.1.x"
1405 | relateurl "0.2.x"
1406 | uglify-js "3.1.x"
1407 |
1408 | html-webpack-inline-source-plugin@^0.0.9:
1409 | version "0.0.9"
1410 | resolved "https://registry.yarnpkg.com/html-webpack-inline-source-plugin/-/html-webpack-inline-source-plugin-0.0.9.tgz#e52dd3cf1164ac76ceaf39ba206f92e3597d054d"
1411 | dependencies:
1412 | escape-string-regexp "^1.0.5"
1413 | slash "^1.0.0"
1414 | source-map-url "^0.4.0"
1415 |
1416 | html-webpack-plugin@^2.30.1:
1417 | version "2.30.1"
1418 | resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-2.30.1.tgz#7f9c421b7ea91ec460f56527d78df484ee7537d5"
1419 | dependencies:
1420 | bluebird "^3.4.7"
1421 | html-minifier "^3.2.3"
1422 | loader-utils "^0.2.16"
1423 | lodash "^4.17.3"
1424 | pretty-error "^2.0.2"
1425 | toposort "^1.0.0"
1426 |
1427 | htmlparser2@~3.3.0:
1428 | version "3.3.0"
1429 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.3.0.tgz#cc70d05a59f6542e43f0e685c982e14c924a9efe"
1430 | dependencies:
1431 | domelementtype "1"
1432 | domhandler "2.1"
1433 | domutils "1.1"
1434 | readable-stream "1.0"
1435 |
1436 | http-signature@~1.1.0:
1437 | version "1.1.1"
1438 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf"
1439 | dependencies:
1440 | assert-plus "^0.2.0"
1441 | jsprim "^1.2.2"
1442 | sshpk "^1.7.0"
1443 |
1444 | https-browserify@0.0.1:
1445 | version "0.0.1"
1446 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82"
1447 |
1448 | ieee754@^1.1.4:
1449 | version "1.1.8"
1450 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4"
1451 |
1452 | indexof@0.0.1:
1453 | version "0.0.1"
1454 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d"
1455 |
1456 | inflight@^1.0.4:
1457 | version "1.0.6"
1458 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1459 | dependencies:
1460 | once "^1.3.0"
1461 | wrappy "1"
1462 |
1463 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3:
1464 | version "2.0.3"
1465 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
1466 |
1467 | inherits@2.0.1:
1468 | version "2.0.1"
1469 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1"
1470 |
1471 | ini@~1.3.0:
1472 | version "1.3.4"
1473 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e"
1474 |
1475 | interpret@^1.0.0:
1476 | version "1.0.4"
1477 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.4.tgz#820cdd588b868ffb191a809506d6c9c8f212b1b0"
1478 |
1479 | invariant@^2.2.2:
1480 | version "2.2.2"
1481 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360"
1482 | dependencies:
1483 | loose-envify "^1.0.0"
1484 |
1485 | invert-kv@^1.0.0:
1486 | version "1.0.0"
1487 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
1488 |
1489 | is-arrayish@^0.2.1:
1490 | version "0.2.1"
1491 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
1492 |
1493 | is-binary-path@^1.0.0:
1494 | version "1.0.1"
1495 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
1496 | dependencies:
1497 | binary-extensions "^1.0.0"
1498 |
1499 | is-buffer@^1.1.5:
1500 | version "1.1.5"
1501 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc"
1502 |
1503 | is-builtin-module@^1.0.0:
1504 | version "1.0.0"
1505 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe"
1506 | dependencies:
1507 | builtin-modules "^1.0.0"
1508 |
1509 | is-dotfile@^1.0.0:
1510 | version "1.0.3"
1511 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"
1512 |
1513 | is-equal-shallow@^0.1.3:
1514 | version "0.1.3"
1515 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
1516 | dependencies:
1517 | is-primitive "^2.0.0"
1518 |
1519 | is-extendable@^0.1.1:
1520 | version "0.1.1"
1521 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
1522 |
1523 | is-extglob@^1.0.0:
1524 | version "1.0.0"
1525 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
1526 |
1527 | is-finite@^1.0.0:
1528 | version "1.0.2"
1529 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
1530 | dependencies:
1531 | number-is-nan "^1.0.0"
1532 |
1533 | is-fullwidth-code-point@^1.0.0:
1534 | version "1.0.0"
1535 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
1536 | dependencies:
1537 | number-is-nan "^1.0.0"
1538 |
1539 | is-fullwidth-code-point@^2.0.0:
1540 | version "2.0.0"
1541 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
1542 |
1543 | is-glob@^2.0.0, is-glob@^2.0.1:
1544 | version "2.0.1"
1545 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
1546 | dependencies:
1547 | is-extglob "^1.0.0"
1548 |
1549 | is-number@^2.1.0:
1550 | version "2.1.0"
1551 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
1552 | dependencies:
1553 | kind-of "^3.0.2"
1554 |
1555 | is-number@^3.0.0:
1556 | version "3.0.0"
1557 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
1558 | dependencies:
1559 | kind-of "^3.0.2"
1560 |
1561 | is-posix-bracket@^0.1.0:
1562 | version "0.1.1"
1563 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
1564 |
1565 | is-primitive@^2.0.0:
1566 | version "2.0.0"
1567 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
1568 |
1569 | is-stream@^1.1.0:
1570 | version "1.1.0"
1571 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
1572 |
1573 | is-typedarray@~1.0.0:
1574 | version "1.0.0"
1575 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
1576 |
1577 | isarray@0.0.1:
1578 | version "0.0.1"
1579 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf"
1580 |
1581 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
1582 | version "1.0.0"
1583 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
1584 |
1585 | isexe@^2.0.0:
1586 | version "2.0.0"
1587 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
1588 |
1589 | isobject@^2.0.0:
1590 | version "2.1.0"
1591 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
1592 | dependencies:
1593 | isarray "1.0.0"
1594 |
1595 | isstream@~0.1.2:
1596 | version "0.1.2"
1597 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
1598 |
1599 | js-tokens@^3.0.0, js-tokens@^3.0.2:
1600 | version "3.0.2"
1601 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
1602 |
1603 | jsbn@~0.1.0:
1604 | version "0.1.1"
1605 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
1606 |
1607 | jsesc@^1.3.0:
1608 | version "1.3.0"
1609 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
1610 |
1611 | jsesc@~0.5.0:
1612 | version "0.5.0"
1613 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
1614 |
1615 | json-loader@^0.5.4:
1616 | version "0.5.7"
1617 | resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d"
1618 |
1619 | json-schema-traverse@^0.3.0:
1620 | version "0.3.1"
1621 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340"
1622 |
1623 | json-schema@0.2.3:
1624 | version "0.2.3"
1625 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
1626 |
1627 | json-stable-stringify@^1.0.1:
1628 | version "1.0.1"
1629 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
1630 | dependencies:
1631 | jsonify "~0.0.0"
1632 |
1633 | json-stringify-safe@~5.0.1:
1634 | version "5.0.1"
1635 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
1636 |
1637 | json5@^0.5.0, json5@^0.5.1:
1638 | version "0.5.1"
1639 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
1640 |
1641 | jsonify@~0.0.0:
1642 | version "0.0.0"
1643 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
1644 |
1645 | jsprim@^1.2.2:
1646 | version "1.4.1"
1647 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
1648 | dependencies:
1649 | assert-plus "1.0.0"
1650 | extsprintf "1.3.0"
1651 | json-schema "0.2.3"
1652 | verror "1.10.0"
1653 |
1654 | kind-of@^3.0.2:
1655 | version "3.2.2"
1656 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
1657 | dependencies:
1658 | is-buffer "^1.1.5"
1659 |
1660 | kind-of@^4.0.0:
1661 | version "4.0.0"
1662 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
1663 | dependencies:
1664 | is-buffer "^1.1.5"
1665 |
1666 | lazy-cache@^1.0.3:
1667 | version "1.0.4"
1668 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
1669 |
1670 | lcid@^1.0.0:
1671 | version "1.0.0"
1672 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
1673 | dependencies:
1674 | invert-kv "^1.0.0"
1675 |
1676 | load-json-file@^2.0.0:
1677 | version "2.0.0"
1678 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8"
1679 | dependencies:
1680 | graceful-fs "^4.1.2"
1681 | parse-json "^2.2.0"
1682 | pify "^2.0.0"
1683 | strip-bom "^3.0.0"
1684 |
1685 | loader-runner@^2.3.0:
1686 | version "2.3.0"
1687 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2"
1688 |
1689 | loader-utils@^0.2.16:
1690 | version "0.2.17"
1691 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348"
1692 | dependencies:
1693 | big.js "^3.1.3"
1694 | emojis-list "^2.0.0"
1695 | json5 "^0.5.0"
1696 | object-assign "^4.0.1"
1697 |
1698 | loader-utils@^1.0.2, loader-utils@^1.1.0:
1699 | version "1.1.0"
1700 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd"
1701 | dependencies:
1702 | big.js "^3.1.3"
1703 | emojis-list "^2.0.0"
1704 | json5 "^0.5.0"
1705 |
1706 | locate-path@^2.0.0:
1707 | version "2.0.0"
1708 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
1709 | dependencies:
1710 | p-locate "^2.0.0"
1711 | path-exists "^3.0.0"
1712 |
1713 | lodash@^4.14.0, lodash@^4.17.3, lodash@^4.17.4:
1714 | version "4.17.4"
1715 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
1716 |
1717 | longest@^1.0.1:
1718 | version "1.0.1"
1719 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097"
1720 |
1721 | loose-envify@^1.0.0:
1722 | version "1.3.1"
1723 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848"
1724 | dependencies:
1725 | js-tokens "^3.0.0"
1726 |
1727 | lower-case@^1.1.1:
1728 | version "1.1.4"
1729 | resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac"
1730 |
1731 | lru-cache@^4.0.1:
1732 | version "4.1.1"
1733 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55"
1734 | dependencies:
1735 | pseudomap "^1.0.2"
1736 | yallist "^2.1.2"
1737 |
1738 | make-dir@^1.0.0:
1739 | version "1.0.0"
1740 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.0.0.tgz#97a011751e91dd87cfadef58832ebb04936de978"
1741 | dependencies:
1742 | pify "^2.3.0"
1743 |
1744 | md5.js@^1.3.4:
1745 | version "1.3.4"
1746 | resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d"
1747 | dependencies:
1748 | hash-base "^3.0.0"
1749 | inherits "^2.0.1"
1750 |
1751 | mem@^1.1.0:
1752 | version "1.1.0"
1753 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76"
1754 | dependencies:
1755 | mimic-fn "^1.0.0"
1756 |
1757 | memory-fs@^0.4.0, memory-fs@~0.4.1:
1758 | version "0.4.1"
1759 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552"
1760 | dependencies:
1761 | errno "^0.1.3"
1762 | readable-stream "^2.0.1"
1763 |
1764 | micromatch@^2.1.5:
1765 | version "2.3.11"
1766 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
1767 | dependencies:
1768 | arr-diff "^2.0.0"
1769 | array-unique "^0.2.1"
1770 | braces "^1.8.2"
1771 | expand-brackets "^0.1.4"
1772 | extglob "^0.3.1"
1773 | filename-regex "^2.0.0"
1774 | is-extglob "^1.0.0"
1775 | is-glob "^2.0.1"
1776 | kind-of "^3.0.2"
1777 | normalize-path "^2.0.1"
1778 | object.omit "^2.0.0"
1779 | parse-glob "^3.0.4"
1780 | regex-cache "^0.4.2"
1781 |
1782 | miller-rabin@^4.0.0:
1783 | version "4.0.1"
1784 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d"
1785 | dependencies:
1786 | bn.js "^4.0.0"
1787 | brorand "^1.0.1"
1788 |
1789 | mime-db@~1.30.0:
1790 | version "1.30.0"
1791 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01"
1792 |
1793 | mime-types@^2.1.12, mime-types@~2.1.7:
1794 | version "2.1.17"
1795 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a"
1796 | dependencies:
1797 | mime-db "~1.30.0"
1798 |
1799 | mimic-fn@^1.0.0:
1800 | version "1.1.0"
1801 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18"
1802 |
1803 | minimalistic-assert@^1.0.0:
1804 | version "1.0.0"
1805 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3"
1806 |
1807 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1:
1808 | version "1.0.1"
1809 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
1810 |
1811 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4:
1812 | version "3.0.4"
1813 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
1814 | dependencies:
1815 | brace-expansion "^1.1.7"
1816 |
1817 | minimist@0.0.8:
1818 | version "0.0.8"
1819 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
1820 |
1821 | minimist@^1.2.0:
1822 | version "1.2.0"
1823 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
1824 |
1825 | "mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.0:
1826 | version "0.5.1"
1827 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
1828 | dependencies:
1829 | minimist "0.0.8"
1830 |
1831 | ms@2.0.0:
1832 | version "2.0.0"
1833 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
1834 |
1835 | nan@^2.3.0:
1836 | version "2.7.0"
1837 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46"
1838 |
1839 | ncname@1.0.x:
1840 | version "1.0.0"
1841 | resolved "https://registry.yarnpkg.com/ncname/-/ncname-1.0.0.tgz#5b57ad18b1ca092864ef62b0b1ed8194f383b71c"
1842 | dependencies:
1843 | xml-char-classes "^1.0.0"
1844 |
1845 | no-case@^2.2.0:
1846 | version "2.3.2"
1847 | resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.2.tgz#60b813396be39b3f1288a4c1ed5d1e7d28b464ac"
1848 | dependencies:
1849 | lower-case "^1.1.1"
1850 |
1851 | node-libs-browser@^2.0.0:
1852 | version "2.0.0"
1853 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.0.0.tgz#a3a59ec97024985b46e958379646f96c4b616646"
1854 | dependencies:
1855 | assert "^1.1.1"
1856 | browserify-zlib "^0.1.4"
1857 | buffer "^4.3.0"
1858 | console-browserify "^1.1.0"
1859 | constants-browserify "^1.0.0"
1860 | crypto-browserify "^3.11.0"
1861 | domain-browser "^1.1.1"
1862 | events "^1.0.0"
1863 | https-browserify "0.0.1"
1864 | os-browserify "^0.2.0"
1865 | path-browserify "0.0.0"
1866 | process "^0.11.0"
1867 | punycode "^1.2.4"
1868 | querystring-es3 "^0.2.0"
1869 | readable-stream "^2.0.5"
1870 | stream-browserify "^2.0.1"
1871 | stream-http "^2.3.1"
1872 | string_decoder "^0.10.25"
1873 | timers-browserify "^2.0.2"
1874 | tty-browserify "0.0.0"
1875 | url "^0.11.0"
1876 | util "^0.10.3"
1877 | vm-browserify "0.0.4"
1878 |
1879 | node-pre-gyp@^0.6.36:
1880 | version "0.6.38"
1881 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.38.tgz#e92a20f83416415bb4086f6d1fb78b3da73d113d"
1882 | dependencies:
1883 | hawk "3.1.3"
1884 | mkdirp "^0.5.1"
1885 | nopt "^4.0.1"
1886 | npmlog "^4.0.2"
1887 | rc "^1.1.7"
1888 | request "2.81.0"
1889 | rimraf "^2.6.1"
1890 | semver "^5.3.0"
1891 | tar "^2.2.1"
1892 | tar-pack "^3.4.0"
1893 |
1894 | nopt@^4.0.1:
1895 | version "4.0.1"
1896 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
1897 | dependencies:
1898 | abbrev "1"
1899 | osenv "^0.1.4"
1900 |
1901 | normalize-package-data@^2.3.2:
1902 | version "2.4.0"
1903 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f"
1904 | dependencies:
1905 | hosted-git-info "^2.1.4"
1906 | is-builtin-module "^1.0.0"
1907 | semver "2 || 3 || 4 || 5"
1908 | validate-npm-package-license "^3.0.1"
1909 |
1910 | normalize-path@^2.0.0, normalize-path@^2.0.1:
1911 | version "2.1.1"
1912 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
1913 | dependencies:
1914 | remove-trailing-separator "^1.0.1"
1915 |
1916 | npm-run-path@^2.0.0:
1917 | version "2.0.2"
1918 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
1919 | dependencies:
1920 | path-key "^2.0.0"
1921 |
1922 | npmlog@^4.0.2:
1923 | version "4.1.2"
1924 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
1925 | dependencies:
1926 | are-we-there-yet "~1.1.2"
1927 | console-control-strings "~1.1.0"
1928 | gauge "~2.7.3"
1929 | set-blocking "~2.0.0"
1930 |
1931 | nth-check@~1.0.1:
1932 | version "1.0.1"
1933 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.1.tgz#9929acdf628fc2c41098deab82ac580cf149aae4"
1934 | dependencies:
1935 | boolbase "~1.0.0"
1936 |
1937 | number-is-nan@^1.0.0:
1938 | version "1.0.1"
1939 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
1940 |
1941 | oauth-sign@~0.8.1:
1942 | version "0.8.2"
1943 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
1944 |
1945 | object-assign@^4.0.1, object-assign@^4.1.0:
1946 | version "4.1.1"
1947 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
1948 |
1949 | object.omit@^2.0.0:
1950 | version "2.0.1"
1951 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
1952 | dependencies:
1953 | for-own "^0.1.4"
1954 | is-extendable "^0.1.1"
1955 |
1956 | once@^1.3.0, once@^1.3.3:
1957 | version "1.4.0"
1958 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
1959 | dependencies:
1960 | wrappy "1"
1961 |
1962 | os-browserify@^0.2.0:
1963 | version "0.2.1"
1964 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f"
1965 |
1966 | os-homedir@^1.0.0:
1967 | version "1.0.2"
1968 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
1969 |
1970 | os-locale@^2.0.0:
1971 | version "2.1.0"
1972 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2"
1973 | dependencies:
1974 | execa "^0.7.0"
1975 | lcid "^1.0.0"
1976 | mem "^1.1.0"
1977 |
1978 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1:
1979 | version "1.0.2"
1980 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
1981 |
1982 | osenv@^0.1.4:
1983 | version "0.1.4"
1984 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644"
1985 | dependencies:
1986 | os-homedir "^1.0.0"
1987 | os-tmpdir "^1.0.0"
1988 |
1989 | p-finally@^1.0.0:
1990 | version "1.0.0"
1991 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
1992 |
1993 | p-limit@^1.1.0:
1994 | version "1.1.0"
1995 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc"
1996 |
1997 | p-locate@^2.0.0:
1998 | version "2.0.0"
1999 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
2000 | dependencies:
2001 | p-limit "^1.1.0"
2002 |
2003 | pako@~0.2.0:
2004 | version "0.2.9"
2005 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75"
2006 |
2007 | param-case@2.1.x:
2008 | version "2.1.1"
2009 | resolved "https://registry.yarnpkg.com/param-case/-/param-case-2.1.1.tgz#df94fd8cf6531ecf75e6bef9a0858fbc72be2247"
2010 | dependencies:
2011 | no-case "^2.2.0"
2012 |
2013 | parse-asn1@^5.0.0:
2014 | version "5.1.0"
2015 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712"
2016 | dependencies:
2017 | asn1.js "^4.0.0"
2018 | browserify-aes "^1.0.0"
2019 | create-hash "^1.1.0"
2020 | evp_bytestokey "^1.0.0"
2021 | pbkdf2 "^3.0.3"
2022 |
2023 | parse-glob@^3.0.4:
2024 | version "3.0.4"
2025 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
2026 | dependencies:
2027 | glob-base "^0.3.0"
2028 | is-dotfile "^1.0.0"
2029 | is-extglob "^1.0.0"
2030 | is-glob "^2.0.0"
2031 |
2032 | parse-json@^2.2.0:
2033 | version "2.2.0"
2034 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
2035 | dependencies:
2036 | error-ex "^1.2.0"
2037 |
2038 | path-browserify@0.0.0:
2039 | version "0.0.0"
2040 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a"
2041 |
2042 | path-exists@^3.0.0:
2043 | version "3.0.0"
2044 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
2045 |
2046 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1:
2047 | version "1.0.1"
2048 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
2049 |
2050 | path-key@^2.0.0:
2051 | version "2.0.1"
2052 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
2053 |
2054 | path-type@^2.0.0:
2055 | version "2.0.0"
2056 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73"
2057 | dependencies:
2058 | pify "^2.0.0"
2059 |
2060 | pbkdf2@^3.0.3:
2061 | version "3.0.14"
2062 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.14.tgz#a35e13c64799b06ce15320f459c230e68e73bade"
2063 | dependencies:
2064 | create-hash "^1.1.2"
2065 | create-hmac "^1.1.4"
2066 | ripemd160 "^2.0.1"
2067 | safe-buffer "^5.0.1"
2068 | sha.js "^2.4.8"
2069 |
2070 | performance-now@^0.2.0:
2071 | version "0.2.0"
2072 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"
2073 |
2074 | pify@^2.0.0, pify@^2.3.0:
2075 | version "2.3.0"
2076 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
2077 |
2078 | pkg-dir@^2.0.0:
2079 | version "2.0.0"
2080 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b"
2081 | dependencies:
2082 | find-up "^2.1.0"
2083 |
2084 | preserve@^0.2.0:
2085 | version "0.2.0"
2086 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
2087 |
2088 | pretty-error@^2.0.2:
2089 | version "2.1.1"
2090 | resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-2.1.1.tgz#5f4f87c8f91e5ae3f3ba87ab4cf5e03b1a17f1a3"
2091 | dependencies:
2092 | renderkid "^2.0.1"
2093 | utila "~0.4"
2094 |
2095 | private@^0.1.6, private@^0.1.7:
2096 | version "0.1.7"
2097 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1"
2098 |
2099 | process-nextick-args@~1.0.6:
2100 | version "1.0.7"
2101 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
2102 |
2103 | process@^0.11.0:
2104 | version "0.11.10"
2105 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
2106 |
2107 | prr@~0.0.0:
2108 | version "0.0.0"
2109 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a"
2110 |
2111 | pseudomap@^1.0.2:
2112 | version "1.0.2"
2113 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
2114 |
2115 | public-encrypt@^4.0.0:
2116 | version "4.0.0"
2117 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6"
2118 | dependencies:
2119 | bn.js "^4.1.0"
2120 | browserify-rsa "^4.0.0"
2121 | create-hash "^1.1.0"
2122 | parse-asn1 "^5.0.0"
2123 | randombytes "^2.0.1"
2124 |
2125 | punycode@1.3.2:
2126 | version "1.3.2"
2127 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d"
2128 |
2129 | punycode@^1.2.4, punycode@^1.4.1:
2130 | version "1.4.1"
2131 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
2132 |
2133 | qs@~6.4.0:
2134 | version "6.4.0"
2135 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233"
2136 |
2137 | querystring-es3@^0.2.0:
2138 | version "0.2.1"
2139 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73"
2140 |
2141 | querystring@0.2.0:
2142 | version "0.2.0"
2143 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620"
2144 |
2145 | randomatic@^1.1.3:
2146 | version "1.1.7"
2147 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c"
2148 | dependencies:
2149 | is-number "^3.0.0"
2150 | kind-of "^4.0.0"
2151 |
2152 | randombytes@^2.0.0, randombytes@^2.0.1:
2153 | version "2.0.5"
2154 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.5.tgz#dc009a246b8d09a177b4b7a0ae77bc570f4b1b79"
2155 | dependencies:
2156 | safe-buffer "^5.1.0"
2157 |
2158 | rc@^1.1.7:
2159 | version "1.2.1"
2160 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95"
2161 | dependencies:
2162 | deep-extend "~0.4.0"
2163 | ini "~1.3.0"
2164 | minimist "^1.2.0"
2165 | strip-json-comments "~2.0.1"
2166 |
2167 | read-pkg-up@^2.0.0:
2168 | version "2.0.0"
2169 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be"
2170 | dependencies:
2171 | find-up "^2.0.0"
2172 | read-pkg "^2.0.0"
2173 |
2174 | read-pkg@^2.0.0:
2175 | version "2.0.0"
2176 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"
2177 | dependencies:
2178 | load-json-file "^2.0.0"
2179 | normalize-package-data "^2.3.2"
2180 | path-type "^2.0.0"
2181 |
2182 | readable-stream@1.0:
2183 | version "1.0.34"
2184 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c"
2185 | dependencies:
2186 | core-util-is "~1.0.0"
2187 | inherits "~2.0.1"
2188 | isarray "0.0.1"
2189 | string_decoder "~0.10.x"
2190 |
2191 | readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.6:
2192 | version "2.3.3"
2193 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c"
2194 | dependencies:
2195 | core-util-is "~1.0.0"
2196 | inherits "~2.0.3"
2197 | isarray "~1.0.0"
2198 | process-nextick-args "~1.0.6"
2199 | safe-buffer "~5.1.1"
2200 | string_decoder "~1.0.3"
2201 | util-deprecate "~1.0.1"
2202 |
2203 | readdirp@^2.0.0:
2204 | version "2.1.0"
2205 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78"
2206 | dependencies:
2207 | graceful-fs "^4.1.2"
2208 | minimatch "^3.0.2"
2209 | readable-stream "^2.0.2"
2210 | set-immediate-shim "^1.0.1"
2211 |
2212 | regenerate@^1.2.1:
2213 | version "1.3.3"
2214 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f"
2215 |
2216 | regenerator-runtime@^0.11.0:
2217 | version "0.11.0"
2218 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1"
2219 |
2220 | regenerator-transform@^0.10.0:
2221 | version "0.10.1"
2222 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd"
2223 | dependencies:
2224 | babel-runtime "^6.18.0"
2225 | babel-types "^6.19.0"
2226 | private "^0.1.6"
2227 |
2228 | regex-cache@^0.4.2:
2229 | version "0.4.4"
2230 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd"
2231 | dependencies:
2232 | is-equal-shallow "^0.1.3"
2233 |
2234 | regexpu-core@^2.0.0:
2235 | version "2.0.0"
2236 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240"
2237 | dependencies:
2238 | regenerate "^1.2.1"
2239 | regjsgen "^0.2.0"
2240 | regjsparser "^0.1.4"
2241 |
2242 | regjsgen@^0.2.0:
2243 | version "0.2.0"
2244 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7"
2245 |
2246 | regjsparser@^0.1.4:
2247 | version "0.1.5"
2248 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c"
2249 | dependencies:
2250 | jsesc "~0.5.0"
2251 |
2252 | relateurl@0.2.x:
2253 | version "0.2.7"
2254 | resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9"
2255 |
2256 | remove-trailing-separator@^1.0.1:
2257 | version "1.1.0"
2258 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
2259 |
2260 | renderkid@^2.0.1:
2261 | version "2.0.1"
2262 | resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.1.tgz#898cabfc8bede4b7b91135a3ffd323e58c0db319"
2263 | dependencies:
2264 | css-select "^1.1.0"
2265 | dom-converter "~0.1"
2266 | htmlparser2 "~3.3.0"
2267 | strip-ansi "^3.0.0"
2268 | utila "~0.3"
2269 |
2270 | repeat-element@^1.1.2:
2271 | version "1.1.2"
2272 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
2273 |
2274 | repeat-string@^1.5.2:
2275 | version "1.6.1"
2276 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
2277 |
2278 | repeating@^2.0.0:
2279 | version "2.0.1"
2280 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
2281 | dependencies:
2282 | is-finite "^1.0.0"
2283 |
2284 | request@2.81.0:
2285 | version "2.81.0"
2286 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0"
2287 | dependencies:
2288 | aws-sign2 "~0.6.0"
2289 | aws4 "^1.2.1"
2290 | caseless "~0.12.0"
2291 | combined-stream "~1.0.5"
2292 | extend "~3.0.0"
2293 | forever-agent "~0.6.1"
2294 | form-data "~2.1.1"
2295 | har-validator "~4.2.1"
2296 | hawk "~3.1.3"
2297 | http-signature "~1.1.0"
2298 | is-typedarray "~1.0.0"
2299 | isstream "~0.1.2"
2300 | json-stringify-safe "~5.0.1"
2301 | mime-types "~2.1.7"
2302 | oauth-sign "~0.8.1"
2303 | performance-now "^0.2.0"
2304 | qs "~6.4.0"
2305 | safe-buffer "^5.0.1"
2306 | stringstream "~0.0.4"
2307 | tough-cookie "~2.3.0"
2308 | tunnel-agent "^0.6.0"
2309 | uuid "^3.0.0"
2310 |
2311 | require-directory@^2.1.1:
2312 | version "2.1.1"
2313 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
2314 |
2315 | require-main-filename@^1.0.1:
2316 | version "1.0.1"
2317 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
2318 |
2319 | right-align@^0.1.1:
2320 | version "0.1.3"
2321 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef"
2322 | dependencies:
2323 | align-text "^0.1.1"
2324 |
2325 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1:
2326 | version "2.6.2"
2327 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36"
2328 | dependencies:
2329 | glob "^7.0.5"
2330 |
2331 | ripemd160@^2.0.0, ripemd160@^2.0.1:
2332 | version "2.0.1"
2333 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7"
2334 | dependencies:
2335 | hash-base "^2.0.0"
2336 | inherits "^2.0.1"
2337 |
2338 | safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
2339 | version "5.1.1"
2340 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853"
2341 |
2342 | "semver@2 || 3 || 4 || 5", semver@^5.3.0:
2343 | version "5.4.1"
2344 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e"
2345 |
2346 | set-blocking@^2.0.0, set-blocking@~2.0.0:
2347 | version "2.0.0"
2348 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
2349 |
2350 | set-immediate-shim@^1.0.1:
2351 | version "1.0.1"
2352 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61"
2353 |
2354 | setimmediate@^1.0.4:
2355 | version "1.0.5"
2356 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
2357 |
2358 | sha.js@^2.4.0, sha.js@^2.4.8:
2359 | version "2.4.9"
2360 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.9.tgz#98f64880474b74f4a38b8da9d3c0f2d104633e7d"
2361 | dependencies:
2362 | inherits "^2.0.1"
2363 | safe-buffer "^5.0.1"
2364 |
2365 | shebang-command@^1.2.0:
2366 | version "1.2.0"
2367 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
2368 | dependencies:
2369 | shebang-regex "^1.0.0"
2370 |
2371 | shebang-regex@^1.0.0:
2372 | version "1.0.0"
2373 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
2374 |
2375 | signal-exit@^3.0.0:
2376 | version "3.0.2"
2377 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
2378 |
2379 | slash@^1.0.0:
2380 | version "1.0.0"
2381 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
2382 |
2383 | sntp@1.x.x:
2384 | version "1.0.9"
2385 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
2386 | dependencies:
2387 | hoek "2.x.x"
2388 |
2389 | source-list-map@^2.0.0:
2390 | version "2.0.0"
2391 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.0.tgz#aaa47403f7b245a92fbc97ea08f250d6087ed085"
2392 |
2393 | source-map-support@^0.4.15:
2394 | version "0.4.18"
2395 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f"
2396 | dependencies:
2397 | source-map "^0.5.6"
2398 |
2399 | source-map-url@^0.4.0:
2400 | version "0.4.0"
2401 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3"
2402 |
2403 | source-map@0.5.x, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.3:
2404 | version "0.5.7"
2405 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
2406 |
2407 | spdx-correct@~1.0.0:
2408 | version "1.0.2"
2409 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40"
2410 | dependencies:
2411 | spdx-license-ids "^1.0.2"
2412 |
2413 | spdx-expression-parse@~1.0.0:
2414 | version "1.0.4"
2415 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c"
2416 |
2417 | spdx-license-ids@^1.0.2:
2418 | version "1.2.2"
2419 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57"
2420 |
2421 | sshpk@^1.7.0:
2422 | version "1.13.1"
2423 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3"
2424 | dependencies:
2425 | asn1 "~0.2.3"
2426 | assert-plus "^1.0.0"
2427 | dashdash "^1.12.0"
2428 | getpass "^0.1.1"
2429 | optionalDependencies:
2430 | bcrypt-pbkdf "^1.0.0"
2431 | ecc-jsbn "~0.1.1"
2432 | jsbn "~0.1.0"
2433 | tweetnacl "~0.14.0"
2434 |
2435 | stream-browserify@^2.0.1:
2436 | version "2.0.1"
2437 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db"
2438 | dependencies:
2439 | inherits "~2.0.1"
2440 | readable-stream "^2.0.2"
2441 |
2442 | stream-http@^2.3.1:
2443 | version "2.7.2"
2444 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.2.tgz#40a050ec8dc3b53b33d9909415c02c0bf1abfbad"
2445 | dependencies:
2446 | builtin-status-codes "^3.0.0"
2447 | inherits "^2.0.1"
2448 | readable-stream "^2.2.6"
2449 | to-arraybuffer "^1.0.0"
2450 | xtend "^4.0.0"
2451 |
2452 | string-width@^1.0.1, string-width@^1.0.2:
2453 | version "1.0.2"
2454 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
2455 | dependencies:
2456 | code-point-at "^1.0.0"
2457 | is-fullwidth-code-point "^1.0.0"
2458 | strip-ansi "^3.0.0"
2459 |
2460 | string-width@^2.0.0:
2461 | version "2.1.1"
2462 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
2463 | dependencies:
2464 | is-fullwidth-code-point "^2.0.0"
2465 | strip-ansi "^4.0.0"
2466 |
2467 | string_decoder@^0.10.25, string_decoder@~0.10.x:
2468 | version "0.10.31"
2469 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
2470 |
2471 | string_decoder@~1.0.3:
2472 | version "1.0.3"
2473 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab"
2474 | dependencies:
2475 | safe-buffer "~5.1.0"
2476 |
2477 | stringstream@~0.0.4:
2478 | version "0.0.5"
2479 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878"
2480 |
2481 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
2482 | version "3.0.1"
2483 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
2484 | dependencies:
2485 | ansi-regex "^2.0.0"
2486 |
2487 | strip-ansi@^4.0.0:
2488 | version "4.0.0"
2489 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
2490 | dependencies:
2491 | ansi-regex "^3.0.0"
2492 |
2493 | strip-bom@^3.0.0:
2494 | version "3.0.0"
2495 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
2496 |
2497 | strip-eof@^1.0.0:
2498 | version "1.0.0"
2499 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
2500 |
2501 | strip-json-comments@~2.0.1:
2502 | version "2.0.1"
2503 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
2504 |
2505 | supports-color@^2.0.0:
2506 | version "2.0.0"
2507 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
2508 |
2509 | supports-color@^4.2.1:
2510 | version "4.4.0"
2511 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e"
2512 | dependencies:
2513 | has-flag "^2.0.0"
2514 |
2515 | tapable@^0.2.7:
2516 | version "0.2.8"
2517 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.8.tgz#99372a5c999bf2df160afc0d74bed4f47948cd22"
2518 |
2519 | tar-pack@^3.4.0:
2520 | version "3.4.0"
2521 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984"
2522 | dependencies:
2523 | debug "^2.2.0"
2524 | fstream "^1.0.10"
2525 | fstream-ignore "^1.0.5"
2526 | once "^1.3.3"
2527 | readable-stream "^2.1.4"
2528 | rimraf "^2.5.1"
2529 | tar "^2.2.1"
2530 | uid-number "^0.0.6"
2531 |
2532 | tar@^2.2.1:
2533 | version "2.2.1"
2534 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"
2535 | dependencies:
2536 | block-stream "*"
2537 | fstream "^1.0.2"
2538 | inherits "2"
2539 |
2540 | timers-browserify@^2.0.2:
2541 | version "2.0.4"
2542 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.4.tgz#96ca53f4b794a5e7c0e1bd7cc88a372298fa01e6"
2543 | dependencies:
2544 | setimmediate "^1.0.4"
2545 |
2546 | to-arraybuffer@^1.0.0:
2547 | version "1.0.1"
2548 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43"
2549 |
2550 | to-fast-properties@^1.0.3:
2551 | version "1.0.3"
2552 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47"
2553 |
2554 | toposort@^1.0.0:
2555 | version "1.0.6"
2556 | resolved "https://registry.yarnpkg.com/toposort/-/toposort-1.0.6.tgz#c31748e55d210effc00fdcdc7d6e68d7d7bb9cec"
2557 |
2558 | tough-cookie@~2.3.0:
2559 | version "2.3.3"
2560 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561"
2561 | dependencies:
2562 | punycode "^1.4.1"
2563 |
2564 | trim-right@^1.0.1:
2565 | version "1.0.1"
2566 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
2567 |
2568 | tty-browserify@0.0.0:
2569 | version "0.0.0"
2570 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6"
2571 |
2572 | tunnel-agent@^0.6.0:
2573 | version "0.6.0"
2574 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
2575 | dependencies:
2576 | safe-buffer "^5.0.1"
2577 |
2578 | tweetnacl@^0.14.3, tweetnacl@~0.14.0:
2579 | version "0.14.5"
2580 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
2581 |
2582 | uglify-js@3.1.x:
2583 | version "3.1.3"
2584 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.1.3.tgz#d61f0453b4718cab01581f3162aa90bab7520b42"
2585 | dependencies:
2586 | commander "~2.11.0"
2587 | source-map "~0.5.1"
2588 |
2589 | uglify-js@^2.8.29:
2590 | version "2.8.29"
2591 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd"
2592 | dependencies:
2593 | source-map "~0.5.1"
2594 | yargs "~3.10.0"
2595 | optionalDependencies:
2596 | uglify-to-browserify "~1.0.0"
2597 |
2598 | uglify-to-browserify@~1.0.0:
2599 | version "1.0.2"
2600 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7"
2601 |
2602 | uglifyjs-webpack-plugin@^0.4.6:
2603 | version "0.4.6"
2604 | resolved "https://registry.yarnpkg.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz#b951f4abb6bd617e66f63eb891498e391763e309"
2605 | dependencies:
2606 | source-map "^0.5.6"
2607 | uglify-js "^2.8.29"
2608 | webpack-sources "^1.0.1"
2609 |
2610 | uid-number@^0.0.6:
2611 | version "0.0.6"
2612 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81"
2613 |
2614 | upper-case@^1.1.1:
2615 | version "1.1.3"
2616 | resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598"
2617 |
2618 | url@^0.11.0:
2619 | version "0.11.0"
2620 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"
2621 | dependencies:
2622 | punycode "1.3.2"
2623 | querystring "0.2.0"
2624 |
2625 | util-deprecate@~1.0.1:
2626 | version "1.0.2"
2627 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
2628 |
2629 | util@0.10.3, util@^0.10.3:
2630 | version "0.10.3"
2631 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9"
2632 | dependencies:
2633 | inherits "2.0.1"
2634 |
2635 | utila@~0.3:
2636 | version "0.3.3"
2637 | resolved "https://registry.yarnpkg.com/utila/-/utila-0.3.3.tgz#d7e8e7d7e309107092b05f8d9688824d633a4226"
2638 |
2639 | utila@~0.4:
2640 | version "0.4.0"
2641 | resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c"
2642 |
2643 | uuid@^3.0.0:
2644 | version "3.1.0"
2645 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04"
2646 |
2647 | validate-npm-package-license@^3.0.1:
2648 | version "3.0.1"
2649 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc"
2650 | dependencies:
2651 | spdx-correct "~1.0.0"
2652 | spdx-expression-parse "~1.0.0"
2653 |
2654 | verror@1.10.0:
2655 | version "1.10.0"
2656 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
2657 | dependencies:
2658 | assert-plus "^1.0.0"
2659 | core-util-is "1.0.2"
2660 | extsprintf "^1.2.0"
2661 |
2662 | vm-browserify@0.0.4:
2663 | version "0.0.4"
2664 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73"
2665 | dependencies:
2666 | indexof "0.0.1"
2667 |
2668 | watchpack@^1.4.0:
2669 | version "1.4.0"
2670 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.4.0.tgz#4a1472bcbb952bd0a9bb4036801f954dfb39faac"
2671 | dependencies:
2672 | async "^2.1.2"
2673 | chokidar "^1.7.0"
2674 | graceful-fs "^4.1.2"
2675 |
2676 | webpack-sources@^1.0.1:
2677 | version "1.0.1"
2678 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.0.1.tgz#c7356436a4d13123be2e2426a05d1dad9cbe65cf"
2679 | dependencies:
2680 | source-list-map "^2.0.0"
2681 | source-map "~0.5.3"
2682 |
2683 | webpack@^3.6.0:
2684 | version "3.6.0"
2685 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-3.6.0.tgz#a89a929fbee205d35a4fa2cc487be9cbec8898bc"
2686 | dependencies:
2687 | acorn "^5.0.0"
2688 | acorn-dynamic-import "^2.0.0"
2689 | ajv "^5.1.5"
2690 | ajv-keywords "^2.0.0"
2691 | async "^2.1.2"
2692 | enhanced-resolve "^3.4.0"
2693 | escope "^3.6.0"
2694 | interpret "^1.0.0"
2695 | json-loader "^0.5.4"
2696 | json5 "^0.5.1"
2697 | loader-runner "^2.3.0"
2698 | loader-utils "^1.1.0"
2699 | memory-fs "~0.4.1"
2700 | mkdirp "~0.5.0"
2701 | node-libs-browser "^2.0.0"
2702 | source-map "^0.5.3"
2703 | supports-color "^4.2.1"
2704 | tapable "^0.2.7"
2705 | uglifyjs-webpack-plugin "^0.4.6"
2706 | watchpack "^1.4.0"
2707 | webpack-sources "^1.0.1"
2708 | yargs "^8.0.2"
2709 |
2710 | which-module@^2.0.0:
2711 | version "2.0.0"
2712 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
2713 |
2714 | which@^1.2.9:
2715 | version "1.3.0"
2716 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a"
2717 | dependencies:
2718 | isexe "^2.0.0"
2719 |
2720 | wide-align@^1.1.0:
2721 | version "1.1.2"
2722 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710"
2723 | dependencies:
2724 | string-width "^1.0.2"
2725 |
2726 | window-size@0.1.0:
2727 | version "0.1.0"
2728 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"
2729 |
2730 | wordwrap@0.0.2:
2731 | version "0.0.2"
2732 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f"
2733 |
2734 | wrap-ansi@^2.0.0:
2735 | version "2.1.0"
2736 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
2737 | dependencies:
2738 | string-width "^1.0.1"
2739 | strip-ansi "^3.0.1"
2740 |
2741 | wrappy@1:
2742 | version "1.0.2"
2743 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
2744 |
2745 | xml-char-classes@^1.0.0:
2746 | version "1.0.0"
2747 | resolved "https://registry.yarnpkg.com/xml-char-classes/-/xml-char-classes-1.0.0.tgz#64657848a20ffc5df583a42ad8a277b4512bbc4d"
2748 |
2749 | xtend@^4.0.0:
2750 | version "4.0.1"
2751 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
2752 |
2753 | y18n@^3.2.1:
2754 | version "3.2.1"
2755 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41"
2756 |
2757 | yallist@^2.1.2:
2758 | version "2.1.2"
2759 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
2760 |
2761 | yargs-parser@^7.0.0:
2762 | version "7.0.0"
2763 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9"
2764 | dependencies:
2765 | camelcase "^4.1.0"
2766 |
2767 | yargs@^8.0.2:
2768 | version "8.0.2"
2769 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360"
2770 | dependencies:
2771 | camelcase "^4.1.0"
2772 | cliui "^3.2.0"
2773 | decamelize "^1.1.1"
2774 | get-caller-file "^1.0.1"
2775 | os-locale "^2.0.0"
2776 | read-pkg-up "^2.0.0"
2777 | require-directory "^2.1.1"
2778 | require-main-filename "^1.0.1"
2779 | set-blocking "^2.0.0"
2780 | string-width "^2.0.0"
2781 | which-module "^2.0.0"
2782 | y18n "^3.2.1"
2783 | yargs-parser "^7.0.0"
2784 |
2785 | yargs@~3.10.0:
2786 | version "3.10.0"
2787 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"
2788 | dependencies:
2789 | camelcase "^1.0.2"
2790 | cliui "^2.1.0"
2791 | decamelize "^1.0.0"
2792 | window-size "0.1.0"
2793 |
--------------------------------------------------------------------------------