├── .gitignore
├── README.md
├── assets
├── .babelrc
├── package.json
├── priv
│ └── static
│ │ ├── favicon.ico
│ │ ├── images
│ │ └── phoenix.png
│ │ └── robots.txt
├── src
│ ├── App.vue
│ ├── components
│ │ └── Hello.vue
│ ├── main.js
│ └── socket.js
├── static
│ ├── favicon.ico
│ ├── images
│ │ └── phoenix.png
│ └── robots.txt
├── webpack.config.js
└── yarn.lock
├── config
├── config.exs
├── dev.exs
├── prod.exs
└── test.exs
├── lib
└── phoenix_vue
│ ├── application.ex
│ ├── repo.ex
│ └── web
│ ├── channels
│ └── user_socket.ex
│ ├── controllers
│ └── page_controller.ex
│ ├── endpoint.ex
│ ├── gettext.ex
│ ├── router.ex
│ ├── templates
│ ├── layout
│ │ └── app.html.eex
│ └── page
│ │ └── index.html.eex
│ ├── views
│ ├── error_helpers.ex
│ ├── error_view.ex
│ ├── layout_view.ex
│ └── page_view.ex
│ └── web.ex
├── mix.exs
├── mix.lock
├── priv
├── gettext
│ ├── en
│ │ └── LC_MESSAGES
│ │ │ └── errors.po
│ └── errors.pot
└── repo
│ └── seeds.exs
└── test
├── phoenix_vue
└── web
│ ├── controllers
│ └── page_controller_test.exs
│ └── views
│ ├── error_view_test.exs
│ ├── layout_view_test.exs
│ └── page_view_test.exs
├── support
├── channel_case.ex
├── conn_case.ex
└── data_case.ex
└── test_helper.exs
/.gitignore:
--------------------------------------------------------------------------------
1 | # App artifacts
2 | /_build
3 | /db
4 | /deps
5 | /*.ez
6 |
7 | # Generated on crash by the VM
8 | erl_crash.dump
9 |
10 | # Generated on crash by NPM
11 | npm-debug.log
12 |
13 | # Static artifacts
14 | /assets/node_modules
15 | /assets/dist/
16 | /assets/npm-debug.log*
17 | /assets/yarn-debug.log*
18 | /assets/yarn-error.log*
19 | /assets/.sass-cache
20 | /assets/.tern-port
21 |
22 | # Since we are building assets from assets/,
23 | # we ignore priv/static. You may want to comment
24 | # this depending on your deployment strategy.
25 | /priv/static/
26 |
27 | # Files matching config/*.secret.exs pattern contain sensitive
28 | # data and you should not commit them into version control.
29 | #
30 | # Alternatively, you may comment the line below and commit the
31 | # secrets files as long as you replace their contents by environment
32 | # variables.
33 | /config/*.secret.exs
34 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Phoenix Vue
2 |
3 | This is a simple Phoenix app configured with the new project architecture proposed on version
4 | **1.3** to serve a Vue.js & Webpack frontend.
5 |
6 | For a full guide on changes made visit: [http://pggalaviz.com/2017/05/28/phoenix-vue-and-webpack](http://pggalaviz.com/2017/05/28/phoenix-vue-and-webpack).
7 |
--------------------------------------------------------------------------------
/assets/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": [
3 | "stage-2"
4 | ],
5 | "comments": false,
6 | "env": {
7 | "development": {
8 | "presets": ["stage-2"]
9 | }
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/assets/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "repository": {},
3 | "license": "MIT",
4 | "scripts": {
5 | "start": "yarn run dev",
6 | "dev": "MIX_ENV=dev webpack --watch-stdin --progress --color",
7 | "deploy": "MIX_ENV=prod webpack -p"
8 | },
9 | "dependencies": {
10 | "phoenix": "file:../deps/phoenix",
11 | "phoenix_html": "file:../deps/phoenix_html",
12 | "vue": "^2.3.3",
13 | "vue-template-compiler": "^2.3.3"
14 | },
15 | "devDependencies": {
16 | "babel-core": "^6.24.1",
17 | "babel-loader": "^7.0.0",
18 | "babel-preset-stage-2": "^6.24.1",
19 | "copy-webpack-plugin": "^4.0.1",
20 | "css-loader": "^0.28.2",
21 | "extract-text-webpack-plugin": "^2.1.0",
22 | "file-loader": "^0.11.1",
23 | "image-webpack-loader": "^3.3.1",
24 | "node-sass": "^4.5.3",
25 | "sass-loader": "^6.0.5",
26 | "style-loader": "^0.18.1",
27 | "stylus": "^0.54.5",
28 | "stylus-loader": "^3.0.1",
29 | "url-loader": "^0.5.8",
30 | "vue-loader": "^12.1.0",
31 | "vue-style-loader": "^3.0.1",
32 | "webpack": "^2.6.0",
33 | "webpack-merge": "^4.1.0"
34 | }
35 | }
36 |
--------------------------------------------------------------------------------
/assets/priv/static/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pggalaviz/phoenix-vue/ec41f64747b7842dfa1b20d5fefd8dfca6758f1c/assets/priv/static/favicon.ico
--------------------------------------------------------------------------------
/assets/priv/static/images/phoenix.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pggalaviz/phoenix-vue/ec41f64747b7842dfa1b20d5fefd8dfca6758f1c/assets/priv/static/images/phoenix.png
--------------------------------------------------------------------------------
/assets/priv/static/robots.txt:
--------------------------------------------------------------------------------
1 | # See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
2 | #
3 | # To ban all spiders from the entire site uncomment the next two lines:
4 | # User-agent: *
5 | # Disallow: /
6 |
--------------------------------------------------------------------------------
/assets/src/App.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
21 |
22 |
33 |
--------------------------------------------------------------------------------
/assets/src/components/Hello.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
Hello from Vue.js!
4 |
{{msg}}
5 |
6 |
7 |
8 |
18 |
19 |
28 |
--------------------------------------------------------------------------------
/assets/src/main.js:
--------------------------------------------------------------------------------
1 | import Phoenix_html from 'phoenix_html'
2 | import { Socket } from 'phoenix'
3 | import Vue from 'vue'
4 | import App from './App'
5 |
6 | Vue.config.productionTip = false
7 |
8 | new Vue({
9 | el: '#app',
10 | template: '',
11 | components: { App }
12 | })
13 |
--------------------------------------------------------------------------------
/assets/src/socket.js:
--------------------------------------------------------------------------------
1 | // NOTE: The contents of this file will only be executed if
2 | // you uncomment its entry in "assets/js/app.js".
3 |
4 | // To use Phoenix channels, the first step is to import Socket
5 | // and connect at the socket path in "lib/web/endpoint.ex":
6 | import {Socket} from "phoenix"
7 |
8 | let socket = new Socket("/socket", {params: {token: window.userToken}})
9 |
10 | // When you connect, you'll often need to authenticate the client.
11 | // For example, imagine you have an authentication plug, `MyAuth`,
12 | // which authenticates the session and assigns a `:current_user`.
13 | // If the current user exists you can assign the user's token in
14 | // the connection for use in the layout.
15 | //
16 | // In your "lib/web/router.ex":
17 | //
18 | // pipeline :browser do
19 | // ...
20 | // plug MyAuth
21 | // plug :put_user_token
22 | // end
23 | //
24 | // defp put_user_token(conn, _) do
25 | // if current_user = conn.assigns[:current_user] do
26 | // token = Phoenix.Token.sign(conn, "user socket", current_user.id)
27 | // assign(conn, :user_token, token)
28 | // else
29 | // conn
30 | // end
31 | // end
32 | //
33 | // Now you need to pass this token to JavaScript. You can do so
34 | // inside a script tag in "lib/web/templates/layout/app.html.eex":
35 | //
36 | //
37 | //
38 | // You will need to verify the user token in the "connect/2" function
39 | // in "lib/web/channels/user_socket.ex":
40 | //
41 | // def connect(%{"token" => token}, socket) do
42 | // # max_age: 1209600 is equivalent to two weeks in seconds
43 | // case Phoenix.Token.verify(socket, "user socket", token, max_age: 1209600) do
44 | // {:ok, user_id} ->
45 | // {:ok, assign(socket, :user, user_id)}
46 | // {:error, reason} ->
47 | // :error
48 | // end
49 | // end
50 | //
51 | // Finally, pass the token on connect as below. Or remove it
52 | // from connect if you don't care about authentication.
53 |
54 | socket.connect()
55 |
56 | // Now that you are connected, you can join channels with a topic:
57 | let channel = socket.channel("topic:subtopic", {})
58 | channel.join()
59 | .receive("ok", resp => { console.log("Joined successfully", resp) })
60 | .receive("error", resp => { console.log("Unable to join", resp) })
61 |
62 | export default socket
63 |
--------------------------------------------------------------------------------
/assets/static/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pggalaviz/phoenix-vue/ec41f64747b7842dfa1b20d5fefd8dfca6758f1c/assets/static/favicon.ico
--------------------------------------------------------------------------------
/assets/static/images/phoenix.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pggalaviz/phoenix-vue/ec41f64747b7842dfa1b20d5fefd8dfca6758f1c/assets/static/images/phoenix.png
--------------------------------------------------------------------------------
/assets/static/robots.txt:
--------------------------------------------------------------------------------
1 | # See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
2 | #
3 | # To ban all spiders from the entire site uncomment the next two lines:
4 | # User-agent: *
5 | # Disallow: /
6 |
--------------------------------------------------------------------------------
/assets/webpack.config.js:
--------------------------------------------------------------------------------
1 | 'use strict'
2 |
3 | // Modules
4 | const path = require('path')
5 | const webpack = require('webpack')
6 | const ExtractTextPlugin = require('extract-text-webpack-plugin')
7 | const CopyWebpackPlugin = require('copy-webpack-plugin')
8 |
9 | // Environment
10 | const Env = process.env.MIX_ENV || 'development'
11 | const isProd = (Env === 'production')
12 |
13 | function resolve (dir) {
14 | return path.join(__dirname, dir)
15 | }
16 |
17 | module.exports = () => {
18 | const devtool = isProd ? '#source-map' : '#cheap-module-eval-source-map'
19 |
20 | return {
21 | devtool: devtool,
22 | entry: {
23 | app: './src/main.js'
24 | },
25 | output: {
26 | path: path.resolve(__dirname, '../priv/static'),
27 | filename: 'js/[name].js'
28 | },
29 | resolve: {
30 | extensions: ['.js', '.vue', '.json', '.css', '.scss', '.styl'],
31 | alias: {
32 | 'vue$': 'vue/dist/vue.esm.js',
33 | '@': resolve('src')
34 | }
35 | },
36 | module: {
37 | rules: [
38 | {
39 | test: /\.vue$/,
40 | loader: 'vue-loader',
41 | options: {
42 | loaders: {
43 | css: ExtractTextPlugin.extract({
44 | use: ['css-loader', 'sass-loader', 'stylus-loader'],
45 | fallback: 'vue-style-loader'
46 | })
47 | }
48 | }
49 | }, {
50 | test: /\.js$/,
51 | exclude: /node_modules/,
52 | loader: 'babel-loader',
53 | include: [resolve('src'), resolve('test')]
54 | }, {
55 | test: /\.(gif|png|jpe?g|svg)$/i,
56 | exclude: /node_modules/,
57 | loaders: [
58 | 'file-loader?name=images/[name].[ext]',
59 | {
60 | loader: 'image-webpack-loader',
61 | options: {
62 | query: {
63 | mozjpeg: {
64 | progressive: true
65 | },
66 | gifsicle: {
67 | interlaced: true
68 | },
69 | optipng: {
70 | optimizationLevel: 7
71 | },
72 | pngquant: {
73 | quality: '65-90',
74 | speed: 4
75 | }
76 | }
77 | }
78 | }
79 | ]
80 | }, {
81 | test: /\.(ttf|woff2?|eot|svg)$/,
82 | exclude: /node_modules/,
83 | query: { name: 'fonts/[hash].[ext]' },
84 | loader: 'file-loader'
85 | }
86 | ]
87 | },
88 | plugins: isProd ? [
89 | new ExtractTextPlugin({
90 | filename: 'css/[name].css',
91 | allChunks: true
92 | }),
93 | new CopyWebpackPlugin([{
94 | from: './static',
95 | to: path.resolve(__dirname, 'priv/static'),
96 | ignore: ['.*']
97 | }]),
98 | new webpack.optimize.UglifyJsPlugin({
99 | minimize: true,
100 | compress: {
101 | warnings: false
102 | },
103 | sourceMap: true,
104 | beautify: false,
105 | comments: false
106 | })
107 | ] : [
108 | new ExtractTextPlugin({
109 | filename: 'css/[name].css',
110 | allChunks: true
111 | }),
112 |
113 | new CopyWebpackPlugin([{
114 | from: './static',
115 | to: path.resolve(__dirname, 'priv/static'),
116 | ignore: ['.*']
117 | }])
118 | ]
119 |
120 | }
121 | }
122 |
--------------------------------------------------------------------------------
/assets/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.0"
7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f"
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.0.3"
21 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.0.3.tgz#c460df08491463f028ccb82eab3730bf01087b3d"
22 |
23 | ajv-keywords@^1.1.1:
24 | version "1.5.1"
25 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c"
26 |
27 | ajv@^4.11.2, ajv@^4.7.0, 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.0.0:
35 | version "5.1.3"
36 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.1.3.tgz#423d1c302c61e617081b30ca05f595ec51408e33"
37 | dependencies:
38 | co "^4.6.0"
39 | json-stable-stringify "^1.0.1"
40 |
41 | align-text@^0.1.1, align-text@^0.1.3:
42 | version "0.1.4"
43 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
44 | dependencies:
45 | kind-of "^3.0.2"
46 | longest "^1.0.1"
47 | repeat-string "^1.5.2"
48 |
49 | alphanum-sort@^1.0.1, alphanum-sort@^1.0.2:
50 | version "1.0.2"
51 | resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3"
52 |
53 | amdefine@>=0.0.4:
54 | version "1.0.1"
55 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5"
56 |
57 | ansi-regex@^2.0.0:
58 | version "2.1.1"
59 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
60 |
61 | ansi-styles@^2.2.1:
62 | version "2.2.1"
63 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
64 |
65 | anymatch@^1.3.0:
66 | version "1.3.0"
67 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507"
68 | dependencies:
69 | arrify "^1.0.0"
70 | micromatch "^2.1.5"
71 |
72 | aproba@^1.0.3:
73 | version "1.1.1"
74 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab"
75 |
76 | archive-type@^3.0.0, archive-type@^3.0.1:
77 | version "3.2.0"
78 | resolved "https://registry.yarnpkg.com/archive-type/-/archive-type-3.2.0.tgz#9cd9c006957ebe95fadad5bd6098942a813737f6"
79 | dependencies:
80 | file-type "^3.1.0"
81 |
82 | are-we-there-yet@~1.1.2:
83 | version "1.1.4"
84 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d"
85 | dependencies:
86 | delegates "^1.0.0"
87 | readable-stream "^2.0.6"
88 |
89 | argparse@^1.0.7:
90 | version "1.0.9"
91 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86"
92 | dependencies:
93 | sprintf-js "~1.0.2"
94 |
95 | arr-diff@^2.0.0:
96 | version "2.0.0"
97 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
98 | dependencies:
99 | arr-flatten "^1.0.1"
100 |
101 | arr-flatten@^1.0.1:
102 | version "1.0.3"
103 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1"
104 |
105 | array-differ@^1.0.0:
106 | version "1.0.0"
107 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031"
108 |
109 | array-find-index@^1.0.1:
110 | version "1.0.2"
111 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1"
112 |
113 | array-union@^1.0.1:
114 | version "1.0.2"
115 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
116 | dependencies:
117 | array-uniq "^1.0.1"
118 |
119 | array-uniq@^1.0.0, array-uniq@^1.0.1, array-uniq@^1.0.2:
120 | version "1.0.3"
121 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
122 |
123 | array-unique@^0.2.1:
124 | version "0.2.1"
125 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
126 |
127 | arrify@^1.0.0:
128 | version "1.0.1"
129 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
130 |
131 | asn1.js@^4.0.0:
132 | version "4.9.1"
133 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.1.tgz#48ba240b45a9280e94748990ba597d216617fd40"
134 | dependencies:
135 | bn.js "^4.0.0"
136 | inherits "^2.0.1"
137 | minimalistic-assert "^1.0.0"
138 |
139 | asn1@~0.2.3:
140 | version "0.2.3"
141 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
142 |
143 | assert-plus@1.0.0, assert-plus@^1.0.0:
144 | version "1.0.0"
145 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
146 |
147 | assert-plus@^0.2.0:
148 | version "0.2.0"
149 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
150 |
151 | assert@^1.1.1:
152 | version "1.4.1"
153 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91"
154 | dependencies:
155 | util "0.10.3"
156 |
157 | async-each-series@^1.1.0:
158 | version "1.1.0"
159 | resolved "https://registry.yarnpkg.com/async-each-series/-/async-each-series-1.1.0.tgz#f42fd8155d38f21a5b8ea07c28e063ed1700b138"
160 |
161 | async-each@^1.0.0:
162 | version "1.0.1"
163 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
164 |
165 | async-foreach@^0.1.3:
166 | version "0.1.3"
167 | resolved "https://registry.yarnpkg.com/async-foreach/-/async-foreach-0.1.3.tgz#36121f845c0578172de419a97dbeb1d16ec34542"
168 |
169 | async@^2.1.2, async@^2.1.5:
170 | version "2.4.1"
171 | resolved "https://registry.yarnpkg.com/async/-/async-2.4.1.tgz#62a56b279c98a11d0987096a01cc3eeb8eb7bbd7"
172 | dependencies:
173 | lodash "^4.14.0"
174 |
175 | asynckit@^0.4.0:
176 | version "0.4.0"
177 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
178 |
179 | autoprefixer@^6.3.1:
180 | version "6.7.7"
181 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-6.7.7.tgz#1dbd1c835658e35ce3f9984099db00585c782014"
182 | dependencies:
183 | browserslist "^1.7.6"
184 | caniuse-db "^1.0.30000634"
185 | normalize-range "^0.1.2"
186 | num2fraction "^1.2.2"
187 | postcss "^5.2.16"
188 | postcss-value-parser "^3.2.3"
189 |
190 | aws-sign2@~0.6.0:
191 | version "0.6.0"
192 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
193 |
194 | aws4@^1.2.1:
195 | version "1.6.0"
196 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
197 |
198 | babel-code-frame@^6.11.0, babel-code-frame@^6.22.0:
199 | version "6.22.0"
200 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4"
201 | dependencies:
202 | chalk "^1.1.0"
203 | esutils "^2.0.2"
204 | js-tokens "^3.0.0"
205 |
206 | babel-core@^6.24.1:
207 | version "6.24.1"
208 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83"
209 | dependencies:
210 | babel-code-frame "^6.22.0"
211 | babel-generator "^6.24.1"
212 | babel-helpers "^6.24.1"
213 | babel-messages "^6.23.0"
214 | babel-register "^6.24.1"
215 | babel-runtime "^6.22.0"
216 | babel-template "^6.24.1"
217 | babel-traverse "^6.24.1"
218 | babel-types "^6.24.1"
219 | babylon "^6.11.0"
220 | convert-source-map "^1.1.0"
221 | debug "^2.1.1"
222 | json5 "^0.5.0"
223 | lodash "^4.2.0"
224 | minimatch "^3.0.2"
225 | path-is-absolute "^1.0.0"
226 | private "^0.1.6"
227 | slash "^1.0.0"
228 | source-map "^0.5.0"
229 |
230 | babel-generator@^6.24.1:
231 | version "6.24.1"
232 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497"
233 | dependencies:
234 | babel-messages "^6.23.0"
235 | babel-runtime "^6.22.0"
236 | babel-types "^6.24.1"
237 | detect-indent "^4.0.0"
238 | jsesc "^1.3.0"
239 | lodash "^4.2.0"
240 | source-map "^0.5.0"
241 | trim-right "^1.0.1"
242 |
243 | babel-helper-bindify-decorators@^6.24.1:
244 | version "6.24.1"
245 | resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.24.1.tgz#14c19e5f142d7b47f19a52431e52b1ccbc40a330"
246 | dependencies:
247 | babel-runtime "^6.22.0"
248 | babel-traverse "^6.24.1"
249 | babel-types "^6.24.1"
250 |
251 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1:
252 | version "6.24.1"
253 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664"
254 | dependencies:
255 | babel-helper-explode-assignable-expression "^6.24.1"
256 | babel-runtime "^6.22.0"
257 | babel-types "^6.24.1"
258 |
259 | babel-helper-explode-assignable-expression@^6.24.1:
260 | version "6.24.1"
261 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa"
262 | dependencies:
263 | babel-runtime "^6.22.0"
264 | babel-traverse "^6.24.1"
265 | babel-types "^6.24.1"
266 |
267 | babel-helper-explode-class@^6.24.1:
268 | version "6.24.1"
269 | resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.24.1.tgz#7dc2a3910dee007056e1e31d640ced3d54eaa9eb"
270 | dependencies:
271 | babel-helper-bindify-decorators "^6.24.1"
272 | babel-runtime "^6.22.0"
273 | babel-traverse "^6.24.1"
274 | babel-types "^6.24.1"
275 |
276 | babel-helper-function-name@^6.24.1:
277 | version "6.24.1"
278 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9"
279 | dependencies:
280 | babel-helper-get-function-arity "^6.24.1"
281 | babel-runtime "^6.22.0"
282 | babel-template "^6.24.1"
283 | babel-traverse "^6.24.1"
284 | babel-types "^6.24.1"
285 |
286 | babel-helper-get-function-arity@^6.24.1:
287 | version "6.24.1"
288 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d"
289 | dependencies:
290 | babel-runtime "^6.22.0"
291 | babel-types "^6.24.1"
292 |
293 | babel-helper-remap-async-to-generator@^6.24.1:
294 | version "6.24.1"
295 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b"
296 | dependencies:
297 | babel-helper-function-name "^6.24.1"
298 | babel-runtime "^6.22.0"
299 | babel-template "^6.24.1"
300 | babel-traverse "^6.24.1"
301 | babel-types "^6.24.1"
302 |
303 | babel-helpers@^6.24.1:
304 | version "6.24.1"
305 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2"
306 | dependencies:
307 | babel-runtime "^6.22.0"
308 | babel-template "^6.24.1"
309 |
310 | babel-loader@^7.0.0:
311 | version "7.0.0"
312 | resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-7.0.0.tgz#2e43a66bee1fff4470533d0402c8a4532fafbaf7"
313 | dependencies:
314 | find-cache-dir "^0.1.1"
315 | loader-utils "^1.0.2"
316 | mkdirp "^0.5.1"
317 |
318 | babel-messages@^6.23.0:
319 | version "6.23.0"
320 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
321 | dependencies:
322 | babel-runtime "^6.22.0"
323 |
324 | babel-plugin-syntax-async-functions@^6.8.0:
325 | version "6.13.0"
326 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95"
327 |
328 | babel-plugin-syntax-async-generators@^6.5.0:
329 | version "6.13.0"
330 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a"
331 |
332 | babel-plugin-syntax-class-properties@^6.8.0:
333 | version "6.13.0"
334 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de"
335 |
336 | babel-plugin-syntax-decorators@^6.13.0:
337 | version "6.13.0"
338 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b"
339 |
340 | babel-plugin-syntax-dynamic-import@^6.18.0:
341 | version "6.18.0"
342 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da"
343 |
344 | babel-plugin-syntax-exponentiation-operator@^6.8.0:
345 | version "6.13.0"
346 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de"
347 |
348 | babel-plugin-syntax-object-rest-spread@^6.8.0:
349 | version "6.13.0"
350 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5"
351 |
352 | babel-plugin-syntax-trailing-function-commas@^6.22.0:
353 | version "6.22.0"
354 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3"
355 |
356 | babel-plugin-transform-async-generator-functions@^6.24.1:
357 | version "6.24.1"
358 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz#f058900145fd3e9907a6ddf28da59f215258a5db"
359 | dependencies:
360 | babel-helper-remap-async-to-generator "^6.24.1"
361 | babel-plugin-syntax-async-generators "^6.5.0"
362 | babel-runtime "^6.22.0"
363 |
364 | babel-plugin-transform-async-to-generator@^6.24.1:
365 | version "6.24.1"
366 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761"
367 | dependencies:
368 | babel-helper-remap-async-to-generator "^6.24.1"
369 | babel-plugin-syntax-async-functions "^6.8.0"
370 | babel-runtime "^6.22.0"
371 |
372 | babel-plugin-transform-class-properties@^6.24.1:
373 | version "6.24.1"
374 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac"
375 | dependencies:
376 | babel-helper-function-name "^6.24.1"
377 | babel-plugin-syntax-class-properties "^6.8.0"
378 | babel-runtime "^6.22.0"
379 | babel-template "^6.24.1"
380 |
381 | babel-plugin-transform-decorators@^6.24.1:
382 | version "6.24.1"
383 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.24.1.tgz#788013d8f8c6b5222bdf7b344390dfd77569e24d"
384 | dependencies:
385 | babel-helper-explode-class "^6.24.1"
386 | babel-plugin-syntax-decorators "^6.13.0"
387 | babel-runtime "^6.22.0"
388 | babel-template "^6.24.1"
389 | babel-types "^6.24.1"
390 |
391 | babel-plugin-transform-exponentiation-operator@^6.24.1:
392 | version "6.24.1"
393 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e"
394 | dependencies:
395 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1"
396 | babel-plugin-syntax-exponentiation-operator "^6.8.0"
397 | babel-runtime "^6.22.0"
398 |
399 | babel-plugin-transform-object-rest-spread@^6.22.0:
400 | version "6.23.0"
401 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz#875d6bc9be761c58a2ae3feee5dc4895d8c7f921"
402 | dependencies:
403 | babel-plugin-syntax-object-rest-spread "^6.8.0"
404 | babel-runtime "^6.22.0"
405 |
406 | babel-preset-stage-2@^6.24.1:
407 | version "6.24.1"
408 | resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz#d9e2960fb3d71187f0e64eec62bc07767219bdc1"
409 | dependencies:
410 | babel-plugin-syntax-dynamic-import "^6.18.0"
411 | babel-plugin-transform-class-properties "^6.24.1"
412 | babel-plugin-transform-decorators "^6.24.1"
413 | babel-preset-stage-3 "^6.24.1"
414 |
415 | babel-preset-stage-3@^6.24.1:
416 | version "6.24.1"
417 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz#836ada0a9e7a7fa37cb138fb9326f87934a48395"
418 | dependencies:
419 | babel-plugin-syntax-trailing-function-commas "^6.22.0"
420 | babel-plugin-transform-async-generator-functions "^6.24.1"
421 | babel-plugin-transform-async-to-generator "^6.24.1"
422 | babel-plugin-transform-exponentiation-operator "^6.24.1"
423 | babel-plugin-transform-object-rest-spread "^6.22.0"
424 |
425 | babel-register@^6.24.1:
426 | version "6.24.1"
427 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f"
428 | dependencies:
429 | babel-core "^6.24.1"
430 | babel-runtime "^6.22.0"
431 | core-js "^2.4.0"
432 | home-or-tmp "^2.0.0"
433 | lodash "^4.2.0"
434 | mkdirp "^0.5.1"
435 | source-map-support "^0.4.2"
436 |
437 | babel-runtime@^6.22.0:
438 | version "6.23.0"
439 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b"
440 | dependencies:
441 | core-js "^2.4.0"
442 | regenerator-runtime "^0.10.0"
443 |
444 | babel-template@^6.24.1:
445 | version "6.24.1"
446 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333"
447 | dependencies:
448 | babel-runtime "^6.22.0"
449 | babel-traverse "^6.24.1"
450 | babel-types "^6.24.1"
451 | babylon "^6.11.0"
452 | lodash "^4.2.0"
453 |
454 | babel-traverse@^6.24.1:
455 | version "6.24.1"
456 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695"
457 | dependencies:
458 | babel-code-frame "^6.22.0"
459 | babel-messages "^6.23.0"
460 | babel-runtime "^6.22.0"
461 | babel-types "^6.24.1"
462 | babylon "^6.15.0"
463 | debug "^2.2.0"
464 | globals "^9.0.0"
465 | invariant "^2.2.0"
466 | lodash "^4.2.0"
467 |
468 | babel-types@^6.24.1:
469 | version "6.24.1"
470 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975"
471 | dependencies:
472 | babel-runtime "^6.22.0"
473 | esutils "^2.0.2"
474 | lodash "^4.2.0"
475 | to-fast-properties "^1.0.1"
476 |
477 | babylon@^6.11.0, babylon@^6.15.0:
478 | version "6.17.1"
479 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.1.tgz#17f14fddf361b695981fe679385e4f1c01ebd86f"
480 |
481 | balanced-match@^0.4.1, balanced-match@^0.4.2:
482 | version "0.4.2"
483 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838"
484 |
485 | base64-js@^1.0.2:
486 | version "1.2.0"
487 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1"
488 |
489 | bcrypt-pbkdf@^1.0.0:
490 | version "1.0.1"
491 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d"
492 | dependencies:
493 | tweetnacl "^0.14.3"
494 |
495 | beeper@^1.0.0:
496 | version "1.1.1"
497 | resolved "https://registry.yarnpkg.com/beeper/-/beeper-1.1.1.tgz#e6d5ea8c5dad001304a70b22638447f69cb2f809"
498 |
499 | big.js@^3.1.3:
500 | version "3.1.3"
501 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.1.3.tgz#4cada2193652eb3ca9ec8e55c9015669c9806978"
502 |
503 | bin-build@^2.0.0:
504 | version "2.2.0"
505 | resolved "https://registry.yarnpkg.com/bin-build/-/bin-build-2.2.0.tgz#11f8dd61f70ffcfa2bdcaa5b46f5e8fedd4221cc"
506 | dependencies:
507 | archive-type "^3.0.1"
508 | decompress "^3.0.0"
509 | download "^4.1.2"
510 | exec-series "^1.0.0"
511 | rimraf "^2.2.6"
512 | tempfile "^1.0.0"
513 | url-regex "^3.0.0"
514 |
515 | bin-check@^2.0.0:
516 | version "2.0.0"
517 | resolved "https://registry.yarnpkg.com/bin-check/-/bin-check-2.0.0.tgz#86f8e6f4253893df60dc316957f5af02acb05930"
518 | dependencies:
519 | executable "^1.0.0"
520 |
521 | bin-version-check@^2.1.0:
522 | version "2.1.0"
523 | resolved "https://registry.yarnpkg.com/bin-version-check/-/bin-version-check-2.1.0.tgz#e4e5df290b9069f7d111324031efc13fdd11a5b0"
524 | dependencies:
525 | bin-version "^1.0.0"
526 | minimist "^1.1.0"
527 | semver "^4.0.3"
528 | semver-truncate "^1.0.0"
529 |
530 | bin-version@^1.0.0:
531 | version "1.0.4"
532 | resolved "https://registry.yarnpkg.com/bin-version/-/bin-version-1.0.4.tgz#9eb498ee6fd76f7ab9a7c160436f89579435d78e"
533 | dependencies:
534 | find-versions "^1.0.0"
535 |
536 | bin-wrapper@^3.0.0:
537 | version "3.0.2"
538 | resolved "https://registry.yarnpkg.com/bin-wrapper/-/bin-wrapper-3.0.2.tgz#67d3306262e4b1a5f2f88ee23464f6a655677aeb"
539 | dependencies:
540 | bin-check "^2.0.0"
541 | bin-version-check "^2.1.0"
542 | download "^4.0.0"
543 | each-async "^1.1.1"
544 | lazy-req "^1.0.0"
545 | os-filter-obj "^1.0.0"
546 |
547 | binary-extensions@^1.0.0:
548 | version "1.8.0"
549 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774"
550 |
551 | bl@^1.0.0:
552 | version "1.2.1"
553 | resolved "https://registry.yarnpkg.com/bl/-/bl-1.2.1.tgz#cac328f7bee45730d404b692203fcb590e172d5e"
554 | dependencies:
555 | readable-stream "^2.0.5"
556 |
557 | block-stream@*:
558 | version "0.0.9"
559 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
560 | dependencies:
561 | inherits "~2.0.0"
562 |
563 | bluebird@^2.10.2:
564 | version "2.11.0"
565 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-2.11.0.tgz#534b9033c022c9579c56ba3b3e5a5caafbb650e1"
566 |
567 | bluebird@^3.0.5, bluebird@^3.1.1:
568 | version "3.5.0"
569 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.0.tgz#791420d7f551eea2897453a8a77653f96606d67c"
570 |
571 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0:
572 | version "4.11.6"
573 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.6.tgz#53344adb14617a13f6e8dd2ce28905d1c0ba3215"
574 |
575 | boom@2.x.x:
576 | version "2.10.1"
577 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
578 | dependencies:
579 | hoek "2.x.x"
580 |
581 | brace-expansion@^1.1.7:
582 | version "1.1.7"
583 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59"
584 | dependencies:
585 | balanced-match "^0.4.1"
586 | concat-map "0.0.1"
587 |
588 | braces@^1.8.2:
589 | version "1.8.5"
590 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
591 | dependencies:
592 | expand-range "^1.8.1"
593 | preserve "^0.2.0"
594 | repeat-element "^1.1.2"
595 |
596 | brorand@^1.0.1:
597 | version "1.1.0"
598 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
599 |
600 | browserify-aes@^1.0.0, browserify-aes@^1.0.4:
601 | version "1.0.6"
602 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.6.tgz#5e7725dbdef1fd5930d4ebab48567ce451c48a0a"
603 | dependencies:
604 | buffer-xor "^1.0.2"
605 | cipher-base "^1.0.0"
606 | create-hash "^1.1.0"
607 | evp_bytestokey "^1.0.0"
608 | inherits "^2.0.1"
609 |
610 | browserify-cipher@^1.0.0:
611 | version "1.0.0"
612 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a"
613 | dependencies:
614 | browserify-aes "^1.0.4"
615 | browserify-des "^1.0.0"
616 | evp_bytestokey "^1.0.0"
617 |
618 | browserify-des@^1.0.0:
619 | version "1.0.0"
620 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd"
621 | dependencies:
622 | cipher-base "^1.0.1"
623 | des.js "^1.0.0"
624 | inherits "^2.0.1"
625 |
626 | browserify-rsa@^4.0.0:
627 | version "4.0.1"
628 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524"
629 | dependencies:
630 | bn.js "^4.1.0"
631 | randombytes "^2.0.1"
632 |
633 | browserify-sign@^4.0.0:
634 | version "4.0.4"
635 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298"
636 | dependencies:
637 | bn.js "^4.1.1"
638 | browserify-rsa "^4.0.0"
639 | create-hash "^1.1.0"
640 | create-hmac "^1.1.2"
641 | elliptic "^6.0.0"
642 | inherits "^2.0.1"
643 | parse-asn1 "^5.0.0"
644 |
645 | browserify-zlib@^0.1.4:
646 | version "0.1.4"
647 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d"
648 | dependencies:
649 | pako "~0.2.0"
650 |
651 | browserslist@^1.3.6, browserslist@^1.5.2, browserslist@^1.7.6:
652 | version "1.7.7"
653 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.7.7.tgz#0bd76704258be829b2398bb50e4b62d1a166b0b9"
654 | dependencies:
655 | caniuse-db "^1.0.30000639"
656 | electron-to-chromium "^1.2.7"
657 |
658 | buffer-crc32@~0.2.3:
659 | version "0.2.13"
660 | resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242"
661 |
662 | buffer-shims@~1.0.0:
663 | version "1.0.0"
664 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51"
665 |
666 | buffer-to-vinyl@^1.0.0:
667 | version "1.1.0"
668 | resolved "https://registry.yarnpkg.com/buffer-to-vinyl/-/buffer-to-vinyl-1.1.0.tgz#00f15faee3ab7a1dda2cde6d9121bffdd07b2262"
669 | dependencies:
670 | file-type "^3.1.0"
671 | readable-stream "^2.0.2"
672 | uuid "^2.0.1"
673 | vinyl "^1.0.0"
674 |
675 | buffer-xor@^1.0.2:
676 | version "1.0.3"
677 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9"
678 |
679 | buffer@^4.3.0:
680 | version "4.9.1"
681 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298"
682 | dependencies:
683 | base64-js "^1.0.2"
684 | ieee754 "^1.1.4"
685 | isarray "^1.0.0"
686 |
687 | builtin-modules@^1.0.0:
688 | version "1.1.1"
689 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
690 |
691 | builtin-status-codes@^3.0.0:
692 | version "3.0.0"
693 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
694 |
695 | camelcase-keys@^2.0.0:
696 | version "2.1.0"
697 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7"
698 | dependencies:
699 | camelcase "^2.0.0"
700 | map-obj "^1.0.0"
701 |
702 | camelcase@^1.0.2:
703 | version "1.2.1"
704 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
705 |
706 | camelcase@^2.0.0:
707 | version "2.1.1"
708 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f"
709 |
710 | camelcase@^3.0.0:
711 | version "3.0.0"
712 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a"
713 |
714 | caniuse-api@^1.5.2:
715 | version "1.6.1"
716 | resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-1.6.1.tgz#b534e7c734c4f81ec5fbe8aca2ad24354b962c6c"
717 | dependencies:
718 | browserslist "^1.3.6"
719 | caniuse-db "^1.0.30000529"
720 | lodash.memoize "^4.1.2"
721 | lodash.uniq "^4.5.0"
722 |
723 | caniuse-db@^1.0.30000529, caniuse-db@^1.0.30000634, caniuse-db@^1.0.30000639:
724 | version "1.0.30000670"
725 | resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000670.tgz#90d33b79e3090e25829c311113c56d6b1788bf43"
726 |
727 | capture-stack-trace@^1.0.0:
728 | version "1.0.0"
729 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d"
730 |
731 | caseless@~0.12.0:
732 | version "0.12.0"
733 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
734 |
735 | caw@^1.0.1:
736 | version "1.2.0"
737 | resolved "https://registry.yarnpkg.com/caw/-/caw-1.2.0.tgz#ffb226fe7efc547288dc62ee3e97073c212d1034"
738 | dependencies:
739 | get-proxy "^1.0.1"
740 | is-obj "^1.0.0"
741 | object-assign "^3.0.0"
742 | tunnel-agent "^0.4.0"
743 |
744 | center-align@^0.1.1:
745 | version "0.1.3"
746 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad"
747 | dependencies:
748 | align-text "^0.1.3"
749 | lazy-cache "^1.0.3"
750 |
751 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3:
752 | version "1.1.3"
753 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
754 | dependencies:
755 | ansi-styles "^2.2.1"
756 | escape-string-regexp "^1.0.2"
757 | has-ansi "^2.0.0"
758 | strip-ansi "^3.0.0"
759 | supports-color "^2.0.0"
760 |
761 | chokidar@^1.4.3:
762 | version "1.7.0"
763 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468"
764 | dependencies:
765 | anymatch "^1.3.0"
766 | async-each "^1.0.0"
767 | glob-parent "^2.0.0"
768 | inherits "^2.0.1"
769 | is-binary-path "^1.0.0"
770 | is-glob "^2.0.0"
771 | path-is-absolute "^1.0.0"
772 | readdirp "^2.0.0"
773 | optionalDependencies:
774 | fsevents "^1.0.0"
775 |
776 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3:
777 | version "1.0.3"
778 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.3.tgz#eeabf194419ce900da3018c207d212f2a6df0a07"
779 | dependencies:
780 | inherits "^2.0.1"
781 |
782 | clap@^1.0.9:
783 | version "1.1.3"
784 | resolved "https://registry.yarnpkg.com/clap/-/clap-1.1.3.tgz#b3bd36e93dd4cbfb395a3c26896352445265c05b"
785 | dependencies:
786 | chalk "^1.1.3"
787 |
788 | cliui@^2.1.0:
789 | version "2.1.0"
790 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1"
791 | dependencies:
792 | center-align "^0.1.1"
793 | right-align "^0.1.1"
794 | wordwrap "0.0.2"
795 |
796 | cliui@^3.2.0:
797 | version "3.2.0"
798 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d"
799 | dependencies:
800 | string-width "^1.0.1"
801 | strip-ansi "^3.0.1"
802 | wrap-ansi "^2.0.0"
803 |
804 | clone-deep@^0.2.4:
805 | version "0.2.4"
806 | resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-0.2.4.tgz#4e73dd09e9fb971cc38670c5dced9c1896481cc6"
807 | dependencies:
808 | for-own "^0.1.3"
809 | is-plain-object "^2.0.1"
810 | kind-of "^3.0.2"
811 | lazy-cache "^1.0.3"
812 | shallow-clone "^0.1.2"
813 |
814 | clone-stats@^0.0.1:
815 | version "0.0.1"
816 | resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-0.0.1.tgz#b88f94a82cf38b8791d58046ea4029ad88ca99d1"
817 |
818 | clone@^0.2.0:
819 | version "0.2.0"
820 | resolved "https://registry.yarnpkg.com/clone/-/clone-0.2.0.tgz#c6126a90ad4f72dbf5acdb243cc37724fe93fc1f"
821 |
822 | clone@^1.0.0, clone@^1.0.2:
823 | version "1.0.2"
824 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149"
825 |
826 | co@3.1.0:
827 | version "3.1.0"
828 | resolved "https://registry.yarnpkg.com/co/-/co-3.1.0.tgz#4ea54ea5a08938153185e15210c68d9092bc1b78"
829 |
830 | co@^4.6.0:
831 | version "4.6.0"
832 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
833 |
834 | coa@~1.0.1:
835 | version "1.0.2"
836 | resolved "https://registry.yarnpkg.com/coa/-/coa-1.0.2.tgz#2ba9fec3b4aa43d7a49d7e6c3561e92061b6bcec"
837 | dependencies:
838 | q "^1.1.2"
839 |
840 | code-point-at@^1.0.0:
841 | version "1.1.0"
842 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
843 |
844 | color-convert@^1.3.0:
845 | version "1.9.0"
846 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a"
847 | dependencies:
848 | color-name "^1.1.1"
849 |
850 | color-name@^1.0.0, color-name@^1.1.1:
851 | version "1.1.2"
852 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d"
853 |
854 | color-string@^0.3.0:
855 | version "0.3.0"
856 | resolved "https://registry.yarnpkg.com/color-string/-/color-string-0.3.0.tgz#27d46fb67025c5c2fa25993bfbf579e47841b991"
857 | dependencies:
858 | color-name "^1.0.0"
859 |
860 | color@^0.11.0:
861 | version "0.11.4"
862 | resolved "https://registry.yarnpkg.com/color/-/color-0.11.4.tgz#6d7b5c74fb65e841cd48792ad1ed5e07b904d764"
863 | dependencies:
864 | clone "^1.0.2"
865 | color-convert "^1.3.0"
866 | color-string "^0.3.0"
867 |
868 | colormin@^1.0.5:
869 | version "1.1.2"
870 | resolved "https://registry.yarnpkg.com/colormin/-/colormin-1.1.2.tgz#ea2f7420a72b96881a38aae59ec124a6f7298133"
871 | dependencies:
872 | color "^0.11.0"
873 | css-color-names "0.0.4"
874 | has "^1.0.1"
875 |
876 | colors@~1.1.2:
877 | version "1.1.2"
878 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63"
879 |
880 | combined-stream@^1.0.5, combined-stream@~1.0.5:
881 | version "1.0.5"
882 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009"
883 | dependencies:
884 | delayed-stream "~1.0.0"
885 |
886 | commander@^2.9.0:
887 | version "2.9.0"
888 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4"
889 | dependencies:
890 | graceful-readlink ">= 1.0.0"
891 |
892 | commander@~2.8.1:
893 | version "2.8.1"
894 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.8.1.tgz#06be367febfda0c330aa1e2a072d3dc9762425d4"
895 | dependencies:
896 | graceful-readlink ">= 1.0.0"
897 |
898 | commondir@^1.0.1:
899 | version "1.0.1"
900 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
901 |
902 | concat-map@0.0.1:
903 | version "0.0.1"
904 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
905 |
906 | concat-stream@^1.4.6, concat-stream@^1.4.7:
907 | version "1.6.0"
908 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7"
909 | dependencies:
910 | inherits "^2.0.3"
911 | readable-stream "^2.2.2"
912 | typedarray "^0.0.6"
913 |
914 | config-chain@~1.1.5:
915 | version "1.1.11"
916 | resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.11.tgz#aba09747dfbe4c3e70e766a6e41586e1859fc6f2"
917 | dependencies:
918 | ini "^1.3.4"
919 | proto-list "~1.2.1"
920 |
921 | console-browserify@^1.1.0:
922 | version "1.1.0"
923 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10"
924 | dependencies:
925 | date-now "^0.1.4"
926 |
927 | console-control-strings@^1.0.0, console-control-strings@~1.1.0:
928 | version "1.1.0"
929 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
930 |
931 | console-stream@^0.1.1:
932 | version "0.1.1"
933 | resolved "https://registry.yarnpkg.com/console-stream/-/console-stream-0.1.1.tgz#a095fe07b20465955f2fafd28b5d72bccd949d44"
934 |
935 | consolidate@^0.14.0:
936 | version "0.14.5"
937 | resolved "https://registry.yarnpkg.com/consolidate/-/consolidate-0.14.5.tgz#5a25047bc76f73072667c8cb52c989888f494c63"
938 | dependencies:
939 | bluebird "^3.1.1"
940 |
941 | constants-browserify@^1.0.0:
942 | version "1.0.0"
943 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75"
944 |
945 | convert-source-map@^1.1.0, convert-source-map@^1.1.1:
946 | version "1.5.0"
947 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5"
948 |
949 | copy-webpack-plugin@^4.0.1:
950 | version "4.0.1"
951 | resolved "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-4.0.1.tgz#9728e383b94316050d0c7463958f2b85c0aa8200"
952 | dependencies:
953 | bluebird "^2.10.2"
954 | fs-extra "^0.26.4"
955 | glob "^6.0.4"
956 | is-glob "^3.1.0"
957 | loader-utils "^0.2.15"
958 | lodash "^4.3.0"
959 | minimatch "^3.0.0"
960 | node-dir "^0.1.10"
961 |
962 | core-js@^2.4.0:
963 | version "2.4.1"
964 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e"
965 |
966 | core-util-is@~1.0.0:
967 | version "1.0.2"
968 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
969 |
970 | cosmiconfig@^2.1.0, cosmiconfig@^2.1.1:
971 | version "2.1.3"
972 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-2.1.3.tgz#952771eb0dddc1cb3fa2f6fbe51a522e93b3ee0a"
973 | dependencies:
974 | is-directory "^0.3.1"
975 | js-yaml "^3.4.3"
976 | minimist "^1.2.0"
977 | object-assign "^4.1.0"
978 | os-homedir "^1.0.1"
979 | parse-json "^2.2.0"
980 | require-from-string "^1.1.0"
981 |
982 | create-ecdh@^4.0.0:
983 | version "4.0.0"
984 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d"
985 | dependencies:
986 | bn.js "^4.1.0"
987 | elliptic "^6.0.0"
988 |
989 | create-error-class@^3.0.1:
990 | version "3.0.2"
991 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6"
992 | dependencies:
993 | capture-stack-trace "^1.0.0"
994 |
995 | create-hash@^1.1.0, create-hash@^1.1.1, create-hash@^1.1.2:
996 | version "1.1.3"
997 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd"
998 | dependencies:
999 | cipher-base "^1.0.1"
1000 | inherits "^2.0.1"
1001 | ripemd160 "^2.0.0"
1002 | sha.js "^2.4.0"
1003 |
1004 | create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4:
1005 | version "1.1.6"
1006 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06"
1007 | dependencies:
1008 | cipher-base "^1.0.3"
1009 | create-hash "^1.1.0"
1010 | inherits "^2.0.1"
1011 | ripemd160 "^2.0.0"
1012 | safe-buffer "^5.0.1"
1013 | sha.js "^2.4.8"
1014 |
1015 | cross-spawn@^3.0.0:
1016 | version "3.0.1"
1017 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-3.0.1.tgz#1256037ecb9f0c5f79e3d6ef135e30770184b982"
1018 | dependencies:
1019 | lru-cache "^4.0.1"
1020 | which "^1.2.9"
1021 |
1022 | cross-spawn@^4.0.0:
1023 | version "4.0.2"
1024 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41"
1025 | dependencies:
1026 | lru-cache "^4.0.1"
1027 | which "^1.2.9"
1028 |
1029 | cryptiles@2.x.x:
1030 | version "2.0.5"
1031 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8"
1032 | dependencies:
1033 | boom "2.x.x"
1034 |
1035 | crypto-browserify@^3.11.0:
1036 | version "3.11.0"
1037 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.0.tgz#3652a0906ab9b2a7e0c3ce66a408e957a2485522"
1038 | dependencies:
1039 | browserify-cipher "^1.0.0"
1040 | browserify-sign "^4.0.0"
1041 | create-ecdh "^4.0.0"
1042 | create-hash "^1.1.0"
1043 | create-hmac "^1.1.0"
1044 | diffie-hellman "^5.0.0"
1045 | inherits "^2.0.1"
1046 | pbkdf2 "^3.0.3"
1047 | public-encrypt "^4.0.0"
1048 | randombytes "^2.0.0"
1049 |
1050 | css-color-names@0.0.4:
1051 | version "0.0.4"
1052 | resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0"
1053 |
1054 | css-loader@^0.28.2:
1055 | version "0.28.2"
1056 | resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-0.28.2.tgz#0ff48e1d6013afcdb585d46c1e61a5fcd036404e"
1057 | dependencies:
1058 | babel-code-frame "^6.11.0"
1059 | css-selector-tokenizer "^0.7.0"
1060 | cssnano ">=2.6.1 <4"
1061 | loader-utils "^1.0.2"
1062 | lodash.camelcase "^4.3.0"
1063 | object-assign "^4.0.1"
1064 | postcss "^5.0.6"
1065 | postcss-modules-extract-imports "^1.0.0"
1066 | postcss-modules-local-by-default "^1.0.1"
1067 | postcss-modules-scope "^1.0.0"
1068 | postcss-modules-values "^1.1.0"
1069 | postcss-value-parser "^3.3.0"
1070 | source-list-map "^0.1.7"
1071 |
1072 | css-parse@1.7.x:
1073 | version "1.7.0"
1074 | resolved "https://registry.yarnpkg.com/css-parse/-/css-parse-1.7.0.tgz#321f6cf73782a6ff751111390fc05e2c657d8c9b"
1075 |
1076 | css-selector-tokenizer@^0.7.0:
1077 | version "0.7.0"
1078 | resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.0.tgz#e6988474ae8c953477bf5e7efecfceccd9cf4c86"
1079 | dependencies:
1080 | cssesc "^0.1.0"
1081 | fastparse "^1.1.1"
1082 | regexpu-core "^1.0.0"
1083 |
1084 | cssesc@^0.1.0:
1085 | version "0.1.0"
1086 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-0.1.0.tgz#c814903e45623371a0477b40109aaafbeeaddbb4"
1087 |
1088 | "cssnano@>=2.6.1 <4":
1089 | version "3.10.0"
1090 | resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-3.10.0.tgz#4f38f6cea2b9b17fa01490f23f1dc68ea65c1c38"
1091 | dependencies:
1092 | autoprefixer "^6.3.1"
1093 | decamelize "^1.1.2"
1094 | defined "^1.0.0"
1095 | has "^1.0.1"
1096 | object-assign "^4.0.1"
1097 | postcss "^5.0.14"
1098 | postcss-calc "^5.2.0"
1099 | postcss-colormin "^2.1.8"
1100 | postcss-convert-values "^2.3.4"
1101 | postcss-discard-comments "^2.0.4"
1102 | postcss-discard-duplicates "^2.0.1"
1103 | postcss-discard-empty "^2.0.1"
1104 | postcss-discard-overridden "^0.1.1"
1105 | postcss-discard-unused "^2.2.1"
1106 | postcss-filter-plugins "^2.0.0"
1107 | postcss-merge-idents "^2.1.5"
1108 | postcss-merge-longhand "^2.0.1"
1109 | postcss-merge-rules "^2.0.3"
1110 | postcss-minify-font-values "^1.0.2"
1111 | postcss-minify-gradients "^1.0.1"
1112 | postcss-minify-params "^1.0.4"
1113 | postcss-minify-selectors "^2.0.4"
1114 | postcss-normalize-charset "^1.1.0"
1115 | postcss-normalize-url "^3.0.7"
1116 | postcss-ordered-values "^2.1.0"
1117 | postcss-reduce-idents "^2.2.2"
1118 | postcss-reduce-initial "^1.0.0"
1119 | postcss-reduce-transforms "^1.0.3"
1120 | postcss-svgo "^2.1.1"
1121 | postcss-unique-selectors "^2.0.2"
1122 | postcss-value-parser "^3.2.3"
1123 | postcss-zindex "^2.0.1"
1124 |
1125 | csso@~2.3.1:
1126 | version "2.3.2"
1127 | resolved "https://registry.yarnpkg.com/csso/-/csso-2.3.2.tgz#ddd52c587033f49e94b71fc55569f252e8ff5f85"
1128 | dependencies:
1129 | clap "^1.0.9"
1130 | source-map "^0.5.3"
1131 |
1132 | currently-unhandled@^0.4.1:
1133 | version "0.4.1"
1134 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea"
1135 | dependencies:
1136 | array-find-index "^1.0.1"
1137 |
1138 | dashdash@^1.12.0:
1139 | version "1.14.1"
1140 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
1141 | dependencies:
1142 | assert-plus "^1.0.0"
1143 |
1144 | date-now@^0.1.4:
1145 | version "0.1.4"
1146 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b"
1147 |
1148 | dateformat@^2.0.0:
1149 | version "2.0.0"
1150 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-2.0.0.tgz#2743e3abb5c3fc2462e527dca445e04e9f4dee17"
1151 |
1152 | de-indent@^1.0.2:
1153 | version "1.0.2"
1154 | resolved "https://registry.yarnpkg.com/de-indent/-/de-indent-1.0.2.tgz#b2038e846dc33baa5796128d0804b455b8c1e21d"
1155 |
1156 | debug@*, debug@^2.1.1, debug@^2.2.0:
1157 | version "2.6.8"
1158 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc"
1159 | dependencies:
1160 | ms "2.0.0"
1161 |
1162 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2:
1163 | version "1.2.0"
1164 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
1165 |
1166 | decompress-tar@^3.0.0:
1167 | version "3.1.0"
1168 | resolved "https://registry.yarnpkg.com/decompress-tar/-/decompress-tar-3.1.0.tgz#217c789f9b94450efaadc5c5e537978fc333c466"
1169 | dependencies:
1170 | is-tar "^1.0.0"
1171 | object-assign "^2.0.0"
1172 | strip-dirs "^1.0.0"
1173 | tar-stream "^1.1.1"
1174 | through2 "^0.6.1"
1175 | vinyl "^0.4.3"
1176 |
1177 | decompress-tarbz2@^3.0.0:
1178 | version "3.1.0"
1179 | resolved "https://registry.yarnpkg.com/decompress-tarbz2/-/decompress-tarbz2-3.1.0.tgz#8b23935681355f9f189d87256a0f8bdd96d9666d"
1180 | dependencies:
1181 | is-bzip2 "^1.0.0"
1182 | object-assign "^2.0.0"
1183 | seek-bzip "^1.0.3"
1184 | strip-dirs "^1.0.0"
1185 | tar-stream "^1.1.1"
1186 | through2 "^0.6.1"
1187 | vinyl "^0.4.3"
1188 |
1189 | decompress-targz@^3.0.0:
1190 | version "3.1.0"
1191 | resolved "https://registry.yarnpkg.com/decompress-targz/-/decompress-targz-3.1.0.tgz#b2c13df98166268991b715d6447f642e9696f5a0"
1192 | dependencies:
1193 | is-gzip "^1.0.0"
1194 | object-assign "^2.0.0"
1195 | strip-dirs "^1.0.0"
1196 | tar-stream "^1.1.1"
1197 | through2 "^0.6.1"
1198 | vinyl "^0.4.3"
1199 |
1200 | decompress-unzip@^3.0.0:
1201 | version "3.4.0"
1202 | resolved "https://registry.yarnpkg.com/decompress-unzip/-/decompress-unzip-3.4.0.tgz#61475b4152066bbe3fee12f9d629d15fe6478eeb"
1203 | dependencies:
1204 | is-zip "^1.0.0"
1205 | read-all-stream "^3.0.0"
1206 | stat-mode "^0.2.0"
1207 | strip-dirs "^1.0.0"
1208 | through2 "^2.0.0"
1209 | vinyl "^1.0.0"
1210 | yauzl "^2.2.1"
1211 |
1212 | decompress@^3.0.0:
1213 | version "3.0.0"
1214 | resolved "https://registry.yarnpkg.com/decompress/-/decompress-3.0.0.tgz#af1dd50d06e3bfc432461d37de11b38c0d991bed"
1215 | dependencies:
1216 | buffer-to-vinyl "^1.0.0"
1217 | concat-stream "^1.4.6"
1218 | decompress-tar "^3.0.0"
1219 | decompress-tarbz2 "^3.0.0"
1220 | decompress-targz "^3.0.0"
1221 | decompress-unzip "^3.0.0"
1222 | stream-combiner2 "^1.1.1"
1223 | vinyl-assign "^1.0.1"
1224 | vinyl-fs "^2.2.0"
1225 |
1226 | deep-extend@~0.4.0:
1227 | version "0.4.2"
1228 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f"
1229 |
1230 | defined@^1.0.0:
1231 | version "1.0.0"
1232 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693"
1233 |
1234 | delayed-stream@~1.0.0:
1235 | version "1.0.0"
1236 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
1237 |
1238 | delegates@^1.0.0:
1239 | version "1.0.0"
1240 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
1241 |
1242 | des.js@^1.0.0:
1243 | version "1.0.0"
1244 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc"
1245 | dependencies:
1246 | inherits "^2.0.1"
1247 | minimalistic-assert "^1.0.0"
1248 |
1249 | detect-indent@^4.0.0:
1250 | version "4.0.0"
1251 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208"
1252 | dependencies:
1253 | repeating "^2.0.0"
1254 |
1255 | diffie-hellman@^5.0.0:
1256 | version "5.0.2"
1257 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e"
1258 | dependencies:
1259 | bn.js "^4.1.0"
1260 | miller-rabin "^4.0.0"
1261 | randombytes "^2.0.0"
1262 |
1263 | domain-browser@^1.1.1:
1264 | version "1.1.7"
1265 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc"
1266 |
1267 | download@^4.0.0, download@^4.1.2:
1268 | version "4.4.3"
1269 | resolved "https://registry.yarnpkg.com/download/-/download-4.4.3.tgz#aa55fdad392d95d4b68e8c2be03e0c2aa21ba9ac"
1270 | dependencies:
1271 | caw "^1.0.1"
1272 | concat-stream "^1.4.7"
1273 | each-async "^1.0.0"
1274 | filenamify "^1.0.1"
1275 | got "^5.0.0"
1276 | gulp-decompress "^1.2.0"
1277 | gulp-rename "^1.2.0"
1278 | is-url "^1.2.0"
1279 | object-assign "^4.0.1"
1280 | read-all-stream "^3.0.0"
1281 | readable-stream "^2.0.2"
1282 | stream-combiner2 "^1.1.1"
1283 | vinyl "^1.0.0"
1284 | vinyl-fs "^2.2.0"
1285 | ware "^1.2.0"
1286 |
1287 | duplexer2@0.0.2:
1288 | version "0.0.2"
1289 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.0.2.tgz#c614dcf67e2fb14995a91711e5a617e8a60a31db"
1290 | dependencies:
1291 | readable-stream "~1.1.9"
1292 |
1293 | duplexer2@^0.1.4, duplexer2@~0.1.0:
1294 | version "0.1.4"
1295 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1"
1296 | dependencies:
1297 | readable-stream "^2.0.2"
1298 |
1299 | duplexify@^3.2.0:
1300 | version "3.5.0"
1301 | resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.5.0.tgz#1aa773002e1578457e9d9d4a50b0ccaaebcbd604"
1302 | dependencies:
1303 | end-of-stream "1.0.0"
1304 | inherits "^2.0.1"
1305 | readable-stream "^2.0.0"
1306 | stream-shift "^1.0.0"
1307 |
1308 | each-async@^1.0.0, each-async@^1.1.1:
1309 | version "1.1.1"
1310 | resolved "https://registry.yarnpkg.com/each-async/-/each-async-1.1.1.tgz#dee5229bdf0ab6ba2012a395e1b869abf8813473"
1311 | dependencies:
1312 | onetime "^1.0.0"
1313 | set-immediate-shim "^1.0.0"
1314 |
1315 | ecc-jsbn@~0.1.1:
1316 | version "0.1.1"
1317 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
1318 | dependencies:
1319 | jsbn "~0.1.0"
1320 |
1321 | editorconfig@^0.13.2:
1322 | version "0.13.2"
1323 | resolved "https://registry.yarnpkg.com/editorconfig/-/editorconfig-0.13.2.tgz#8e57926d9ee69ab6cb999f027c2171467acceb35"
1324 | dependencies:
1325 | bluebird "^3.0.5"
1326 | commander "^2.9.0"
1327 | lru-cache "^3.2.0"
1328 | sigmund "^1.0.1"
1329 |
1330 | electron-to-chromium@^1.2.7:
1331 | version "1.3.11"
1332 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.11.tgz#744761df1d67b492b322ce9aa0aba5393260eb61"
1333 |
1334 | elliptic@^6.0.0:
1335 | version "6.4.0"
1336 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df"
1337 | dependencies:
1338 | bn.js "^4.4.0"
1339 | brorand "^1.0.1"
1340 | hash.js "^1.0.0"
1341 | hmac-drbg "^1.0.0"
1342 | inherits "^2.0.1"
1343 | minimalistic-assert "^1.0.0"
1344 | minimalistic-crypto-utils "^1.0.0"
1345 |
1346 | emojis-list@^2.0.0:
1347 | version "2.1.0"
1348 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389"
1349 |
1350 | end-of-stream@1.0.0:
1351 | version "1.0.0"
1352 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.0.0.tgz#d4596e702734a93e40e9af864319eabd99ff2f0e"
1353 | dependencies:
1354 | once "~1.3.0"
1355 |
1356 | end-of-stream@^1.0.0:
1357 | version "1.4.0"
1358 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.0.tgz#7a90d833efda6cfa6eac0f4949dbb0fad3a63206"
1359 | dependencies:
1360 | once "^1.4.0"
1361 |
1362 | enhanced-resolve@^3.0.0:
1363 | version "3.1.0"
1364 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.1.0.tgz#9f4b626f577245edcf4b2ad83d86e17f4f421dec"
1365 | dependencies:
1366 | graceful-fs "^4.1.2"
1367 | memory-fs "^0.4.0"
1368 | object-assign "^4.0.1"
1369 | tapable "^0.2.5"
1370 |
1371 | errno@^0.1.3:
1372 | version "0.1.4"
1373 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d"
1374 | dependencies:
1375 | prr "~0.0.0"
1376 |
1377 | error-ex@^1.2.0:
1378 | version "1.3.1"
1379 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc"
1380 | dependencies:
1381 | is-arrayish "^0.2.1"
1382 |
1383 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
1384 | version "1.0.5"
1385 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
1386 |
1387 | esprima@^2.6.0:
1388 | version "2.7.3"
1389 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581"
1390 |
1391 | esutils@^2.0.2:
1392 | version "2.0.2"
1393 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
1394 |
1395 | events@^1.0.0:
1396 | version "1.1.1"
1397 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924"
1398 |
1399 | evp_bytestokey@^1.0.0:
1400 | version "1.0.0"
1401 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz#497b66ad9fef65cd7c08a6180824ba1476b66e53"
1402 | dependencies:
1403 | create-hash "^1.1.1"
1404 |
1405 | exec-buffer@^3.0.0:
1406 | version "3.1.0"
1407 | resolved "https://registry.yarnpkg.com/exec-buffer/-/exec-buffer-3.1.0.tgz#851b46d062fca9bcbc6ff8781693e28e8da80402"
1408 | dependencies:
1409 | execa "^0.5.0"
1410 | p-finally "^1.0.0"
1411 | pify "^2.3.0"
1412 | rimraf "^2.5.4"
1413 | tempfile "^1.0.0"
1414 |
1415 | exec-series@^1.0.0:
1416 | version "1.0.3"
1417 | resolved "https://registry.yarnpkg.com/exec-series/-/exec-series-1.0.3.tgz#6d257a9beac482a872c7783bc8615839fc77143a"
1418 | dependencies:
1419 | async-each-series "^1.1.0"
1420 | object-assign "^4.1.0"
1421 |
1422 | execa@^0.5.0:
1423 | version "0.5.1"
1424 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.5.1.tgz#de3fb85cb8d6e91c85bcbceb164581785cb57b36"
1425 | dependencies:
1426 | cross-spawn "^4.0.0"
1427 | get-stream "^2.2.0"
1428 | is-stream "^1.1.0"
1429 | npm-run-path "^2.0.0"
1430 | p-finally "^1.0.0"
1431 | signal-exit "^3.0.0"
1432 | strip-eof "^1.0.0"
1433 |
1434 | executable@^1.0.0:
1435 | version "1.1.0"
1436 | resolved "https://registry.yarnpkg.com/executable/-/executable-1.1.0.tgz#877980e9112f3391066da37265de7ad8434ab4d9"
1437 | dependencies:
1438 | meow "^3.1.0"
1439 |
1440 | expand-brackets@^0.1.4:
1441 | version "0.1.5"
1442 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
1443 | dependencies:
1444 | is-posix-bracket "^0.1.0"
1445 |
1446 | expand-range@^1.8.1:
1447 | version "1.8.2"
1448 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
1449 | dependencies:
1450 | fill-range "^2.1.0"
1451 |
1452 | extend-shallow@^2.0.1:
1453 | version "2.0.1"
1454 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
1455 | dependencies:
1456 | is-extendable "^0.1.0"
1457 |
1458 | extend@^3.0.0, extend@~3.0.0:
1459 | version "3.0.1"
1460 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444"
1461 |
1462 | extglob@^0.3.1:
1463 | version "0.3.2"
1464 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
1465 | dependencies:
1466 | is-extglob "^1.0.0"
1467 |
1468 | extract-text-webpack-plugin@^2.1.0:
1469 | version "2.1.0"
1470 | resolved "https://registry.yarnpkg.com/extract-text-webpack-plugin/-/extract-text-webpack-plugin-2.1.0.tgz#69315b885f876dbf96d3819f6a9f1cca7aebf159"
1471 | dependencies:
1472 | ajv "^4.11.2"
1473 | async "^2.1.2"
1474 | loader-utils "^1.0.2"
1475 | webpack-sources "^0.1.0"
1476 |
1477 | extsprintf@1.0.2:
1478 | version "1.0.2"
1479 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550"
1480 |
1481 | fancy-log@^1.1.0:
1482 | version "1.3.0"
1483 | resolved "https://registry.yarnpkg.com/fancy-log/-/fancy-log-1.3.0.tgz#45be17d02bb9917d60ccffd4995c999e6c8c9948"
1484 | dependencies:
1485 | chalk "^1.1.1"
1486 | time-stamp "^1.0.0"
1487 |
1488 | fastparse@^1.1.1:
1489 | version "1.1.1"
1490 | resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.1.tgz#d1e2643b38a94d7583b479060e6c4affc94071f8"
1491 |
1492 | fd-slicer@~1.0.1:
1493 | version "1.0.1"
1494 | resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.0.1.tgz#8b5bcbd9ec327c5041bf9ab023fd6750f1177e65"
1495 | dependencies:
1496 | pend "~1.2.0"
1497 |
1498 | figures@^1.3.5:
1499 | version "1.7.0"
1500 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e"
1501 | dependencies:
1502 | escape-string-regexp "^1.0.5"
1503 | object-assign "^4.1.0"
1504 |
1505 | file-loader@^0.11.1:
1506 | version "0.11.1"
1507 | resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-0.11.1.tgz#6b328ee1234a729e4e47d36375dd6d35c0e1db84"
1508 | dependencies:
1509 | loader-utils "^1.0.2"
1510 |
1511 | file-type@^3.1.0:
1512 | version "3.9.0"
1513 | resolved "https://registry.yarnpkg.com/file-type/-/file-type-3.9.0.tgz#257a078384d1db8087bc449d107d52a52672b9e9"
1514 |
1515 | file-type@^4.1.0:
1516 | version "4.3.0"
1517 | resolved "https://registry.yarnpkg.com/file-type/-/file-type-4.3.0.tgz#b26f0a35e03f6857848d18b8a27238448caa79a5"
1518 |
1519 | filename-regex@^2.0.0:
1520 | version "2.0.1"
1521 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"
1522 |
1523 | filename-reserved-regex@^1.0.0:
1524 | version "1.0.0"
1525 | resolved "https://registry.yarnpkg.com/filename-reserved-regex/-/filename-reserved-regex-1.0.0.tgz#e61cf805f0de1c984567d0386dc5df50ee5af7e4"
1526 |
1527 | filenamify@^1.0.1:
1528 | version "1.2.1"
1529 | resolved "https://registry.yarnpkg.com/filenamify/-/filenamify-1.2.1.tgz#a9f2ffd11c503bed300015029272378f1f1365a5"
1530 | dependencies:
1531 | filename-reserved-regex "^1.0.0"
1532 | strip-outer "^1.0.0"
1533 | trim-repeated "^1.0.0"
1534 |
1535 | fill-range@^2.1.0:
1536 | version "2.2.3"
1537 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723"
1538 | dependencies:
1539 | is-number "^2.1.0"
1540 | isobject "^2.0.0"
1541 | randomatic "^1.1.3"
1542 | repeat-element "^1.1.2"
1543 | repeat-string "^1.5.2"
1544 |
1545 | find-cache-dir@^0.1.1:
1546 | version "0.1.1"
1547 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9"
1548 | dependencies:
1549 | commondir "^1.0.1"
1550 | mkdirp "^0.5.1"
1551 | pkg-dir "^1.0.0"
1552 |
1553 | find-up@^1.0.0:
1554 | version "1.1.2"
1555 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
1556 | dependencies:
1557 | path-exists "^2.0.0"
1558 | pinkie-promise "^2.0.0"
1559 |
1560 | find-versions@^1.0.0:
1561 | version "1.2.1"
1562 | resolved "https://registry.yarnpkg.com/find-versions/-/find-versions-1.2.1.tgz#cbde9f12e38575a0af1be1b9a2c5d5fd8f186b62"
1563 | dependencies:
1564 | array-uniq "^1.0.0"
1565 | get-stdin "^4.0.1"
1566 | meow "^3.5.0"
1567 | semver-regex "^1.0.0"
1568 |
1569 | first-chunk-stream@^1.0.0:
1570 | version "1.0.0"
1571 | resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz#59bfb50cd905f60d7c394cd3d9acaab4e6ad934e"
1572 |
1573 | flatten@^1.0.2:
1574 | version "1.0.2"
1575 | resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.2.tgz#dae46a9d78fbe25292258cc1e780a41d95c03782"
1576 |
1577 | for-in@^0.1.3:
1578 | version "0.1.8"
1579 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.8.tgz#d8773908e31256109952b1fdb9b3fa867d2775e1"
1580 |
1581 | for-in@^1.0.1:
1582 | version "1.0.2"
1583 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
1584 |
1585 | for-own@^0.1.3, for-own@^0.1.4:
1586 | version "0.1.5"
1587 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce"
1588 | dependencies:
1589 | for-in "^1.0.1"
1590 |
1591 | forever-agent@~0.6.1:
1592 | version "0.6.1"
1593 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
1594 |
1595 | form-data@~2.1.1:
1596 | version "2.1.4"
1597 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1"
1598 | dependencies:
1599 | asynckit "^0.4.0"
1600 | combined-stream "^1.0.5"
1601 | mime-types "^2.1.12"
1602 |
1603 | fs-extra@^0.26.4:
1604 | version "0.26.7"
1605 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.26.7.tgz#9ae1fdd94897798edab76d0918cf42d0c3184fa9"
1606 | dependencies:
1607 | graceful-fs "^4.1.2"
1608 | jsonfile "^2.1.0"
1609 | klaw "^1.0.0"
1610 | path-is-absolute "^1.0.0"
1611 | rimraf "^2.2.8"
1612 |
1613 | fs.realpath@^1.0.0:
1614 | version "1.0.0"
1615 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1616 |
1617 | fsevents@^1.0.0:
1618 | version "1.1.1"
1619 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff"
1620 | dependencies:
1621 | nan "^2.3.0"
1622 | node-pre-gyp "^0.6.29"
1623 |
1624 | fstream-ignore@^1.0.5:
1625 | version "1.0.5"
1626 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105"
1627 | dependencies:
1628 | fstream "^1.0.0"
1629 | inherits "2"
1630 | minimatch "^3.0.0"
1631 |
1632 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2:
1633 | version "1.0.11"
1634 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171"
1635 | dependencies:
1636 | graceful-fs "^4.1.2"
1637 | inherits "~2.0.0"
1638 | mkdirp ">=0.5 0"
1639 | rimraf "2"
1640 |
1641 | function-bind@^1.0.2:
1642 | version "1.1.0"
1643 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771"
1644 |
1645 | gauge@~2.7.3:
1646 | version "2.7.4"
1647 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
1648 | dependencies:
1649 | aproba "^1.0.3"
1650 | console-control-strings "^1.0.0"
1651 | has-unicode "^2.0.0"
1652 | object-assign "^4.1.0"
1653 | signal-exit "^3.0.0"
1654 | string-width "^1.0.1"
1655 | strip-ansi "^3.0.1"
1656 | wide-align "^1.1.0"
1657 |
1658 | gaze@^1.0.0:
1659 | version "1.1.2"
1660 | resolved "https://registry.yarnpkg.com/gaze/-/gaze-1.1.2.tgz#847224677adb8870d679257ed3388fdb61e40105"
1661 | dependencies:
1662 | globule "^1.0.0"
1663 |
1664 | get-caller-file@^1.0.1:
1665 | version "1.0.2"
1666 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5"
1667 |
1668 | get-proxy@^1.0.1:
1669 | version "1.1.0"
1670 | resolved "https://registry.yarnpkg.com/get-proxy/-/get-proxy-1.1.0.tgz#894854491bc591b0f147d7ae570f5c678b7256eb"
1671 | dependencies:
1672 | rc "^1.1.2"
1673 |
1674 | get-stdin@^4.0.1:
1675 | version "4.0.1"
1676 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe"
1677 |
1678 | get-stream@^2.2.0:
1679 | version "2.3.1"
1680 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-2.3.1.tgz#5f38f93f346009666ee0150a054167f91bdd95de"
1681 | dependencies:
1682 | object-assign "^4.0.1"
1683 | pinkie-promise "^2.0.0"
1684 |
1685 | getpass@^0.1.1:
1686 | version "0.1.7"
1687 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
1688 | dependencies:
1689 | assert-plus "^1.0.0"
1690 |
1691 | gifsicle@^3.0.0:
1692 | version "3.0.4"
1693 | resolved "https://registry.yarnpkg.com/gifsicle/-/gifsicle-3.0.4.tgz#f45cb5ed10165b665dc929e0e9328b6c821dfa3b"
1694 | dependencies:
1695 | bin-build "^2.0.0"
1696 | bin-wrapper "^3.0.0"
1697 | logalot "^2.0.0"
1698 |
1699 | glob-base@^0.3.0:
1700 | version "0.3.0"
1701 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
1702 | dependencies:
1703 | glob-parent "^2.0.0"
1704 | is-glob "^2.0.0"
1705 |
1706 | glob-parent@^2.0.0:
1707 | version "2.0.0"
1708 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
1709 | dependencies:
1710 | is-glob "^2.0.0"
1711 |
1712 | glob-parent@^3.0.0:
1713 | version "3.1.0"
1714 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae"
1715 | dependencies:
1716 | is-glob "^3.1.0"
1717 | path-dirname "^1.0.0"
1718 |
1719 | glob-stream@^5.3.2:
1720 | version "5.3.5"
1721 | resolved "https://registry.yarnpkg.com/glob-stream/-/glob-stream-5.3.5.tgz#a55665a9a8ccdc41915a87c701e32d4e016fad22"
1722 | dependencies:
1723 | extend "^3.0.0"
1724 | glob "^5.0.3"
1725 | glob-parent "^3.0.0"
1726 | micromatch "^2.3.7"
1727 | ordered-read-streams "^0.3.0"
1728 | through2 "^0.6.0"
1729 | to-absolute-glob "^0.1.1"
1730 | unique-stream "^2.0.2"
1731 |
1732 | glob@7.0.x:
1733 | version "7.0.6"
1734 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.6.tgz#211bafaf49e525b8cd93260d14ab136152b3f57a"
1735 | dependencies:
1736 | fs.realpath "^1.0.0"
1737 | inflight "^1.0.4"
1738 | inherits "2"
1739 | minimatch "^3.0.2"
1740 | once "^1.3.0"
1741 | path-is-absolute "^1.0.0"
1742 |
1743 | glob@^5.0.3:
1744 | version "5.0.15"
1745 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1"
1746 | dependencies:
1747 | inflight "^1.0.4"
1748 | inherits "2"
1749 | minimatch "2 || 3"
1750 | once "^1.3.0"
1751 | path-is-absolute "^1.0.0"
1752 |
1753 | glob@^6.0.4:
1754 | version "6.0.4"
1755 | resolved "https://registry.yarnpkg.com/glob/-/glob-6.0.4.tgz#0f08860f6a155127b2fadd4f9ce24b1aab6e4d22"
1756 | dependencies:
1757 | inflight "^1.0.4"
1758 | inherits "2"
1759 | minimatch "2 || 3"
1760 | once "^1.3.0"
1761 | path-is-absolute "^1.0.0"
1762 |
1763 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@~7.1.1:
1764 | version "7.1.2"
1765 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
1766 | dependencies:
1767 | fs.realpath "^1.0.0"
1768 | inflight "^1.0.4"
1769 | inherits "2"
1770 | minimatch "^3.0.4"
1771 | once "^1.3.0"
1772 | path-is-absolute "^1.0.0"
1773 |
1774 | globals@^9.0.0:
1775 | version "9.17.0"
1776 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286"
1777 |
1778 | globby@^6.1.0:
1779 | version "6.1.0"
1780 | resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c"
1781 | dependencies:
1782 | array-union "^1.0.1"
1783 | glob "^7.0.3"
1784 | object-assign "^4.0.1"
1785 | pify "^2.0.0"
1786 | pinkie-promise "^2.0.0"
1787 |
1788 | globule@^1.0.0:
1789 | version "1.1.0"
1790 | resolved "https://registry.yarnpkg.com/globule/-/globule-1.1.0.tgz#c49352e4dc183d85893ee825385eb994bb6df45f"
1791 | dependencies:
1792 | glob "~7.1.1"
1793 | lodash "~4.16.4"
1794 | minimatch "~3.0.2"
1795 |
1796 | glogg@^1.0.0:
1797 | version "1.0.0"
1798 | resolved "https://registry.yarnpkg.com/glogg/-/glogg-1.0.0.tgz#7fe0f199f57ac906cf512feead8f90ee4a284fc5"
1799 | dependencies:
1800 | sparkles "^1.0.0"
1801 |
1802 | got@^5.0.0:
1803 | version "5.7.1"
1804 | resolved "https://registry.yarnpkg.com/got/-/got-5.7.1.tgz#5f81635a61e4a6589f180569ea4e381680a51f35"
1805 | dependencies:
1806 | create-error-class "^3.0.1"
1807 | duplexer2 "^0.1.4"
1808 | is-redirect "^1.0.0"
1809 | is-retry-allowed "^1.0.0"
1810 | is-stream "^1.0.0"
1811 | lowercase-keys "^1.0.0"
1812 | node-status-codes "^1.0.0"
1813 | object-assign "^4.0.1"
1814 | parse-json "^2.1.0"
1815 | pinkie-promise "^2.0.0"
1816 | read-all-stream "^3.0.0"
1817 | readable-stream "^2.0.5"
1818 | timed-out "^3.0.0"
1819 | unzip-response "^1.0.2"
1820 | url-parse-lax "^1.0.0"
1821 |
1822 | graceful-fs@^4.0.0, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9:
1823 | version "4.1.11"
1824 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
1825 |
1826 | "graceful-readlink@>= 1.0.0":
1827 | version "1.0.1"
1828 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725"
1829 |
1830 | gulp-decompress@^1.2.0:
1831 | version "1.2.0"
1832 | resolved "https://registry.yarnpkg.com/gulp-decompress/-/gulp-decompress-1.2.0.tgz#8eeb65a5e015f8ed8532cafe28454960626f0dc7"
1833 | dependencies:
1834 | archive-type "^3.0.0"
1835 | decompress "^3.0.0"
1836 | gulp-util "^3.0.1"
1837 | readable-stream "^2.0.2"
1838 |
1839 | gulp-rename@^1.2.0:
1840 | version "1.2.2"
1841 | resolved "https://registry.yarnpkg.com/gulp-rename/-/gulp-rename-1.2.2.tgz#3ad4428763f05e2764dec1c67d868db275687817"
1842 |
1843 | gulp-sourcemaps@1.6.0:
1844 | version "1.6.0"
1845 | resolved "https://registry.yarnpkg.com/gulp-sourcemaps/-/gulp-sourcemaps-1.6.0.tgz#b86ff349d801ceb56e1d9e7dc7bbcb4b7dee600c"
1846 | dependencies:
1847 | convert-source-map "^1.1.1"
1848 | graceful-fs "^4.1.2"
1849 | strip-bom "^2.0.0"
1850 | through2 "^2.0.0"
1851 | vinyl "^1.0.0"
1852 |
1853 | gulp-util@^3.0.1:
1854 | version "3.0.8"
1855 | resolved "https://registry.yarnpkg.com/gulp-util/-/gulp-util-3.0.8.tgz#0054e1e744502e27c04c187c3ecc505dd54bbb4f"
1856 | dependencies:
1857 | array-differ "^1.0.0"
1858 | array-uniq "^1.0.2"
1859 | beeper "^1.0.0"
1860 | chalk "^1.0.0"
1861 | dateformat "^2.0.0"
1862 | fancy-log "^1.1.0"
1863 | gulplog "^1.0.0"
1864 | has-gulplog "^0.1.0"
1865 | lodash._reescape "^3.0.0"
1866 | lodash._reevaluate "^3.0.0"
1867 | lodash._reinterpolate "^3.0.0"
1868 | lodash.template "^3.0.0"
1869 | minimist "^1.1.0"
1870 | multipipe "^0.1.2"
1871 | object-assign "^3.0.0"
1872 | replace-ext "0.0.1"
1873 | through2 "^2.0.0"
1874 | vinyl "^0.5.0"
1875 |
1876 | gulplog@^1.0.0:
1877 | version "1.0.0"
1878 | resolved "https://registry.yarnpkg.com/gulplog/-/gulplog-1.0.0.tgz#e28c4d45d05ecbbed818363ce8f9c5926229ffe5"
1879 | dependencies:
1880 | glogg "^1.0.0"
1881 |
1882 | har-schema@^1.0.5:
1883 | version "1.0.5"
1884 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e"
1885 |
1886 | har-validator@~4.2.1:
1887 | version "4.2.1"
1888 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a"
1889 | dependencies:
1890 | ajv "^4.9.1"
1891 | har-schema "^1.0.5"
1892 |
1893 | has-ansi@^2.0.0:
1894 | version "2.0.0"
1895 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
1896 | dependencies:
1897 | ansi-regex "^2.0.0"
1898 |
1899 | has-flag@^1.0.0:
1900 | version "1.0.0"
1901 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa"
1902 |
1903 | has-gulplog@^0.1.0:
1904 | version "0.1.0"
1905 | resolved "https://registry.yarnpkg.com/has-gulplog/-/has-gulplog-0.1.0.tgz#6414c82913697da51590397dafb12f22967811ce"
1906 | dependencies:
1907 | sparkles "^1.0.0"
1908 |
1909 | has-unicode@^2.0.0:
1910 | version "2.0.1"
1911 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
1912 |
1913 | has@^1.0.1:
1914 | version "1.0.1"
1915 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28"
1916 | dependencies:
1917 | function-bind "^1.0.2"
1918 |
1919 | hash-base@^2.0.0:
1920 | version "2.0.2"
1921 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1"
1922 | dependencies:
1923 | inherits "^2.0.1"
1924 |
1925 | hash-sum@^1.0.2:
1926 | version "1.0.2"
1927 | resolved "https://registry.yarnpkg.com/hash-sum/-/hash-sum-1.0.2.tgz#33b40777754c6432573c120cc3808bbd10d47f04"
1928 |
1929 | hash.js@^1.0.0, hash.js@^1.0.3:
1930 | version "1.0.3"
1931 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.0.3.tgz#1332ff00156c0a0ffdd8236013d07b77a0451573"
1932 | dependencies:
1933 | inherits "^2.0.1"
1934 |
1935 | hawk@~3.1.3:
1936 | version "3.1.3"
1937 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
1938 | dependencies:
1939 | boom "2.x.x"
1940 | cryptiles "2.x.x"
1941 | hoek "2.x.x"
1942 | sntp "1.x.x"
1943 |
1944 | he@^1.1.0:
1945 | version "1.1.1"
1946 | resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd"
1947 |
1948 | hmac-drbg@^1.0.0:
1949 | version "1.0.1"
1950 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1"
1951 | dependencies:
1952 | hash.js "^1.0.3"
1953 | minimalistic-assert "^1.0.0"
1954 | minimalistic-crypto-utils "^1.0.1"
1955 |
1956 | hoek@2.x.x:
1957 | version "2.16.3"
1958 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed"
1959 |
1960 | home-or-tmp@^2.0.0:
1961 | version "2.0.0"
1962 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8"
1963 | dependencies:
1964 | os-homedir "^1.0.0"
1965 | os-tmpdir "^1.0.1"
1966 |
1967 | hosted-git-info@^2.1.4:
1968 | version "2.4.2"
1969 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67"
1970 |
1971 | html-comment-regex@^1.1.0:
1972 | version "1.1.1"
1973 | resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.1.tgz#668b93776eaae55ebde8f3ad464b307a4963625e"
1974 |
1975 | http-signature@~1.1.0:
1976 | version "1.1.1"
1977 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf"
1978 | dependencies:
1979 | assert-plus "^0.2.0"
1980 | jsprim "^1.2.2"
1981 | sshpk "^1.7.0"
1982 |
1983 | https-browserify@0.0.1:
1984 | version "0.0.1"
1985 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82"
1986 |
1987 | icss-replace-symbols@^1.1.0:
1988 | version "1.1.0"
1989 | resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded"
1990 |
1991 | ieee754@^1.1.4:
1992 | version "1.1.8"
1993 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4"
1994 |
1995 | image-webpack-loader@^3.3.1:
1996 | version "3.3.1"
1997 | resolved "https://registry.yarnpkg.com/image-webpack-loader/-/image-webpack-loader-3.3.1.tgz#d2d72be024f8975e48c984f2401c0c484897cbd3"
1998 | dependencies:
1999 | imagemin "^5.2.2"
2000 | imagemin-gifsicle "^5.1.0"
2001 | imagemin-mozjpeg "^6.0.0"
2002 | imagemin-optipng "^5.2.1"
2003 | imagemin-pngquant "^5.0.0"
2004 | imagemin-svgo "^5.2.1"
2005 | loader-utils "^1.1.0"
2006 | object-assign "^4.1.1"
2007 |
2008 | imagemin-gifsicle@^5.1.0:
2009 | version "5.1.0"
2010 | resolved "https://registry.yarnpkg.com/imagemin-gifsicle/-/imagemin-gifsicle-5.1.0.tgz#2e4ddcda2a109b221cabaec498e1e2dd28ca768f"
2011 | dependencies:
2012 | exec-buffer "^3.0.0"
2013 | gifsicle "^3.0.0"
2014 | is-gif "^1.0.0"
2015 |
2016 | imagemin-mozjpeg@^6.0.0:
2017 | version "6.0.0"
2018 | resolved "https://registry.yarnpkg.com/imagemin-mozjpeg/-/imagemin-mozjpeg-6.0.0.tgz#71a32a457aa1b26117a68eeef2d9b190c2e5091e"
2019 | dependencies:
2020 | exec-buffer "^3.0.0"
2021 | is-jpg "^1.0.0"
2022 | mozjpeg "^4.0.0"
2023 |
2024 | imagemin-optipng@^5.2.1:
2025 | version "5.2.1"
2026 | resolved "https://registry.yarnpkg.com/imagemin-optipng/-/imagemin-optipng-5.2.1.tgz#d22da412c09f5ff00a4339960b98a88b1dbe8695"
2027 | dependencies:
2028 | exec-buffer "^3.0.0"
2029 | is-png "^1.0.0"
2030 | optipng-bin "^3.0.0"
2031 |
2032 | imagemin-pngquant@^5.0.0:
2033 | version "5.0.0"
2034 | resolved "https://registry.yarnpkg.com/imagemin-pngquant/-/imagemin-pngquant-5.0.0.tgz#7d72405778caba9c510eb3cb4590c8413383560e"
2035 | dependencies:
2036 | exec-buffer "^3.0.0"
2037 | is-png "^1.0.0"
2038 | pngquant-bin "^3.0.0"
2039 |
2040 | imagemin-svgo@^5.2.1:
2041 | version "5.2.1"
2042 | resolved "https://registry.yarnpkg.com/imagemin-svgo/-/imagemin-svgo-5.2.1.tgz#74d593ce4cbe1b87efdb3d06a4a56078f71a8147"
2043 | dependencies:
2044 | is-svg "^2.0.0"
2045 | svgo "^0.7.0"
2046 |
2047 | imagemin@^5.2.2:
2048 | version "5.3.1"
2049 | resolved "https://registry.yarnpkg.com/imagemin/-/imagemin-5.3.1.tgz#f19c2eee1e71ba6c6558c515f9fc96680189a6d4"
2050 | dependencies:
2051 | file-type "^4.1.0"
2052 | globby "^6.1.0"
2053 | make-dir "^1.0.0"
2054 | p-pipe "^1.1.0"
2055 | pify "^2.3.0"
2056 | replace-ext "^1.0.0"
2057 |
2058 | in-publish@^2.0.0:
2059 | version "2.0.0"
2060 | resolved "https://registry.yarnpkg.com/in-publish/-/in-publish-2.0.0.tgz#e20ff5e3a2afc2690320b6dc552682a9c7fadf51"
2061 |
2062 | indent-string@^2.1.0:
2063 | version "2.1.0"
2064 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80"
2065 | dependencies:
2066 | repeating "^2.0.0"
2067 |
2068 | indexes-of@^1.0.1:
2069 | version "1.0.1"
2070 | resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607"
2071 |
2072 | indexof@0.0.1:
2073 | version "0.0.1"
2074 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d"
2075 |
2076 | inflight@^1.0.4:
2077 | version "1.0.6"
2078 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
2079 | dependencies:
2080 | once "^1.3.0"
2081 | wrappy "1"
2082 |
2083 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1:
2084 | version "2.0.3"
2085 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
2086 |
2087 | inherits@2.0.1:
2088 | version "2.0.1"
2089 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1"
2090 |
2091 | ini@^1.3.4, ini@~1.3.0:
2092 | version "1.3.4"
2093 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e"
2094 |
2095 | interpret@^1.0.0:
2096 | version "1.0.3"
2097 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90"
2098 |
2099 | invariant@^2.2.0:
2100 | version "2.2.2"
2101 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360"
2102 | dependencies:
2103 | loose-envify "^1.0.0"
2104 |
2105 | invert-kv@^1.0.0:
2106 | version "1.0.0"
2107 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
2108 |
2109 | ip-regex@^1.0.1:
2110 | version "1.0.3"
2111 | resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-1.0.3.tgz#dc589076f659f419c222039a33316f1c7387effd"
2112 |
2113 | is-absolute-url@^2.0.0:
2114 | version "2.1.0"
2115 | resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6"
2116 |
2117 | is-absolute@^0.1.5:
2118 | version "0.1.7"
2119 | resolved "https://registry.yarnpkg.com/is-absolute/-/is-absolute-0.1.7.tgz#847491119fccb5fb436217cc737f7faad50f603f"
2120 | dependencies:
2121 | is-relative "^0.1.0"
2122 |
2123 | is-arrayish@^0.2.1:
2124 | version "0.2.1"
2125 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
2126 |
2127 | is-binary-path@^1.0.0:
2128 | version "1.0.1"
2129 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
2130 | dependencies:
2131 | binary-extensions "^1.0.0"
2132 |
2133 | is-buffer@^1.0.2, is-buffer@^1.1.5:
2134 | version "1.1.5"
2135 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc"
2136 |
2137 | is-builtin-module@^1.0.0:
2138 | version "1.0.0"
2139 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe"
2140 | dependencies:
2141 | builtin-modules "^1.0.0"
2142 |
2143 | is-bzip2@^1.0.0:
2144 | version "1.0.0"
2145 | resolved "https://registry.yarnpkg.com/is-bzip2/-/is-bzip2-1.0.0.tgz#5ee58eaa5a2e9c80e21407bedf23ae5ac091b3fc"
2146 |
2147 | is-directory@^0.3.1:
2148 | version "0.3.1"
2149 | resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1"
2150 |
2151 | is-dotfile@^1.0.0:
2152 | version "1.0.2"
2153 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d"
2154 |
2155 | is-equal-shallow@^0.1.3:
2156 | version "0.1.3"
2157 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
2158 | dependencies:
2159 | is-primitive "^2.0.0"
2160 |
2161 | is-extendable@^0.1.0, is-extendable@^0.1.1:
2162 | version "0.1.1"
2163 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
2164 |
2165 | is-extglob@^1.0.0:
2166 | version "1.0.0"
2167 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
2168 |
2169 | is-extglob@^2.1.0:
2170 | version "2.1.1"
2171 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
2172 |
2173 | is-finite@^1.0.0:
2174 | version "1.0.2"
2175 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
2176 | dependencies:
2177 | number-is-nan "^1.0.0"
2178 |
2179 | is-fullwidth-code-point@^1.0.0:
2180 | version "1.0.0"
2181 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
2182 | dependencies:
2183 | number-is-nan "^1.0.0"
2184 |
2185 | is-gif@^1.0.0:
2186 | version "1.0.0"
2187 | resolved "https://registry.yarnpkg.com/is-gif/-/is-gif-1.0.0.tgz#a6d2ae98893007bffa97a1d8c01d63205832097e"
2188 |
2189 | is-glob@^2.0.0, is-glob@^2.0.1:
2190 | version "2.0.1"
2191 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
2192 | dependencies:
2193 | is-extglob "^1.0.0"
2194 |
2195 | is-glob@^3.1.0:
2196 | version "3.1.0"
2197 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a"
2198 | dependencies:
2199 | is-extglob "^2.1.0"
2200 |
2201 | is-gzip@^1.0.0:
2202 | version "1.0.0"
2203 | resolved "https://registry.yarnpkg.com/is-gzip/-/is-gzip-1.0.0.tgz#6ca8b07b99c77998025900e555ced8ed80879a83"
2204 |
2205 | is-jpg@^1.0.0:
2206 | version "1.0.0"
2207 | resolved "https://registry.yarnpkg.com/is-jpg/-/is-jpg-1.0.0.tgz#2959c17e73430db38264da75b90dd54f2d86da1c"
2208 |
2209 | is-natural-number@^2.0.0:
2210 | version "2.1.1"
2211 | resolved "https://registry.yarnpkg.com/is-natural-number/-/is-natural-number-2.1.1.tgz#7d4c5728377ef386c3e194a9911bf57c6dc335e7"
2212 |
2213 | is-number@^2.0.2, is-number@^2.1.0:
2214 | version "2.1.0"
2215 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
2216 | dependencies:
2217 | kind-of "^3.0.2"
2218 |
2219 | is-obj@^1.0.0:
2220 | version "1.0.1"
2221 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"
2222 |
2223 | is-plain-obj@^1.0.0:
2224 | version "1.1.0"
2225 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e"
2226 |
2227 | is-plain-object@^2.0.1:
2228 | version "2.0.1"
2229 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.1.tgz#4d7ca539bc9db9b737b8acb612f2318ef92f294f"
2230 | dependencies:
2231 | isobject "^1.0.0"
2232 |
2233 | is-png@^1.0.0:
2234 | version "1.1.0"
2235 | resolved "https://registry.yarnpkg.com/is-png/-/is-png-1.1.0.tgz#d574b12bf275c0350455570b0e5b57ab062077ce"
2236 |
2237 | is-posix-bracket@^0.1.0:
2238 | version "0.1.1"
2239 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
2240 |
2241 | is-primitive@^2.0.0:
2242 | version "2.0.0"
2243 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
2244 |
2245 | is-redirect@^1.0.0:
2246 | version "1.0.0"
2247 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24"
2248 |
2249 | is-relative@^0.1.0:
2250 | version "0.1.3"
2251 | resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-0.1.3.tgz#905fee8ae86f45b3ec614bc3c15c869df0876e82"
2252 |
2253 | is-retry-allowed@^1.0.0:
2254 | version "1.1.0"
2255 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34"
2256 |
2257 | is-stream@^1.0.0, is-stream@^1.0.1, is-stream@^1.1.0:
2258 | version "1.1.0"
2259 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
2260 |
2261 | is-svg@^2.0.0:
2262 | version "2.1.0"
2263 | resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-2.1.0.tgz#cf61090da0d9efbcab8722deba6f032208dbb0e9"
2264 | dependencies:
2265 | html-comment-regex "^1.1.0"
2266 |
2267 | is-tar@^1.0.0:
2268 | version "1.0.0"
2269 | resolved "https://registry.yarnpkg.com/is-tar/-/is-tar-1.0.0.tgz#2f6b2e1792c1f5bb36519acaa9d65c0d26fe853d"
2270 |
2271 | is-typedarray@~1.0.0:
2272 | version "1.0.0"
2273 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
2274 |
2275 | is-url@^1.2.0:
2276 | version "1.2.2"
2277 | resolved "https://registry.yarnpkg.com/is-url/-/is-url-1.2.2.tgz#498905a593bf47cc2d9e7f738372bbf7696c7f26"
2278 |
2279 | is-utf8@^0.2.0:
2280 | version "0.2.1"
2281 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
2282 |
2283 | is-valid-glob@^0.3.0:
2284 | version "0.3.0"
2285 | resolved "https://registry.yarnpkg.com/is-valid-glob/-/is-valid-glob-0.3.0.tgz#d4b55c69f51886f9b65c70d6c2622d37e29f48fe"
2286 |
2287 | is-zip@^1.0.0:
2288 | version "1.0.0"
2289 | resolved "https://registry.yarnpkg.com/is-zip/-/is-zip-1.0.0.tgz#47b0a8ff4d38a76431ccfd99a8e15a4c86ba2325"
2290 |
2291 | isarray@0.0.1:
2292 | version "0.0.1"
2293 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf"
2294 |
2295 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
2296 | version "1.0.0"
2297 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
2298 |
2299 | isexe@^2.0.0:
2300 | version "2.0.0"
2301 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
2302 |
2303 | isobject@^1.0.0:
2304 | version "1.0.2"
2305 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-1.0.2.tgz#f0f9b8ce92dd540fa0740882e3835a2e022ec78a"
2306 |
2307 | isobject@^2.0.0:
2308 | version "2.1.0"
2309 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
2310 | dependencies:
2311 | isarray "1.0.0"
2312 |
2313 | isstream@~0.1.2:
2314 | version "0.1.2"
2315 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
2316 |
2317 | jodid25519@^1.0.0:
2318 | version "1.0.2"
2319 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967"
2320 | dependencies:
2321 | jsbn "~0.1.0"
2322 |
2323 | js-base64@^2.1.8, js-base64@^2.1.9:
2324 | version "2.1.9"
2325 | resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.1.9.tgz#f0e80ae039a4bd654b5f281fc93f04a914a7fcce"
2326 |
2327 | js-beautify@^1.6.3:
2328 | version "1.6.14"
2329 | resolved "https://registry.yarnpkg.com/js-beautify/-/js-beautify-1.6.14.tgz#d3b8f7322d02b9277d58bd238264c327e58044cd"
2330 | dependencies:
2331 | config-chain "~1.1.5"
2332 | editorconfig "^0.13.2"
2333 | mkdirp "~0.5.0"
2334 | nopt "~3.0.1"
2335 |
2336 | js-tokens@^3.0.0:
2337 | version "3.0.1"
2338 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7"
2339 |
2340 | js-yaml@^3.4.3, js-yaml@~3.7.0:
2341 | version "3.7.0"
2342 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80"
2343 | dependencies:
2344 | argparse "^1.0.7"
2345 | esprima "^2.6.0"
2346 |
2347 | jsbn@~0.1.0:
2348 | version "0.1.1"
2349 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
2350 |
2351 | jsesc@^1.3.0:
2352 | version "1.3.0"
2353 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
2354 |
2355 | jsesc@~0.5.0:
2356 | version "0.5.0"
2357 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
2358 |
2359 | json-loader@^0.5.4:
2360 | version "0.5.4"
2361 | resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.4.tgz#8baa1365a632f58a3c46d20175fc6002c96e37de"
2362 |
2363 | json-schema@0.2.3:
2364 | version "0.2.3"
2365 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
2366 |
2367 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1:
2368 | version "1.0.1"
2369 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
2370 | dependencies:
2371 | jsonify "~0.0.0"
2372 |
2373 | json-stringify-safe@~5.0.1:
2374 | version "5.0.1"
2375 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
2376 |
2377 | json5@^0.5.0, json5@^0.5.1:
2378 | version "0.5.1"
2379 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
2380 |
2381 | jsonfile@^2.1.0:
2382 | version "2.4.0"
2383 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8"
2384 | optionalDependencies:
2385 | graceful-fs "^4.1.6"
2386 |
2387 | jsonify@~0.0.0:
2388 | version "0.0.0"
2389 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
2390 |
2391 | jsprim@^1.2.2:
2392 | version "1.4.0"
2393 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918"
2394 | dependencies:
2395 | assert-plus "1.0.0"
2396 | extsprintf "1.0.2"
2397 | json-schema "0.2.3"
2398 | verror "1.3.6"
2399 |
2400 | kind-of@^2.0.1:
2401 | version "2.0.1"
2402 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-2.0.1.tgz#018ec7a4ce7e3a86cb9141be519d24c8faa981b5"
2403 | dependencies:
2404 | is-buffer "^1.0.2"
2405 |
2406 | kind-of@^3.0.2:
2407 | version "3.2.2"
2408 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
2409 | dependencies:
2410 | is-buffer "^1.1.5"
2411 |
2412 | klaw@^1.0.0:
2413 | version "1.3.1"
2414 | resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439"
2415 | optionalDependencies:
2416 | graceful-fs "^4.1.9"
2417 |
2418 | lazy-cache@^0.2.3:
2419 | version "0.2.7"
2420 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-0.2.7.tgz#7feddf2dcb6edb77d11ef1d117ab5ffdf0ab1b65"
2421 |
2422 | lazy-cache@^1.0.3:
2423 | version "1.0.4"
2424 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
2425 |
2426 | lazy-req@^1.0.0:
2427 | version "1.1.0"
2428 | resolved "https://registry.yarnpkg.com/lazy-req/-/lazy-req-1.1.0.tgz#bdaebead30f8d824039ce0ce149d4daa07ba1fac"
2429 |
2430 | lazystream@^1.0.0:
2431 | version "1.0.0"
2432 | resolved "https://registry.yarnpkg.com/lazystream/-/lazystream-1.0.0.tgz#f6995fe0f820392f61396be89462407bb77168e4"
2433 | dependencies:
2434 | readable-stream "^2.0.5"
2435 |
2436 | lcid@^1.0.0:
2437 | version "1.0.0"
2438 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
2439 | dependencies:
2440 | invert-kv "^1.0.0"
2441 |
2442 | load-json-file@^1.0.0:
2443 | version "1.1.0"
2444 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0"
2445 | dependencies:
2446 | graceful-fs "^4.1.2"
2447 | parse-json "^2.2.0"
2448 | pify "^2.0.0"
2449 | pinkie-promise "^2.0.0"
2450 | strip-bom "^2.0.0"
2451 |
2452 | loader-runner@^2.3.0:
2453 | version "2.3.0"
2454 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2"
2455 |
2456 | loader-utils@^0.2.15, loader-utils@^0.2.16:
2457 | version "0.2.17"
2458 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348"
2459 | dependencies:
2460 | big.js "^3.1.3"
2461 | emojis-list "^2.0.0"
2462 | json5 "^0.5.0"
2463 | object-assign "^4.0.1"
2464 |
2465 | loader-utils@^1.0.1, loader-utils@^1.0.2, loader-utils@^1.1.0:
2466 | version "1.1.0"
2467 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd"
2468 | dependencies:
2469 | big.js "^3.1.3"
2470 | emojis-list "^2.0.0"
2471 | json5 "^0.5.0"
2472 |
2473 | lodash._basecopy@^3.0.0:
2474 | version "3.0.1"
2475 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36"
2476 |
2477 | lodash._basetostring@^3.0.0:
2478 | version "3.0.1"
2479 | resolved "https://registry.yarnpkg.com/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz#d1861d877f824a52f669832dcaf3ee15566a07d5"
2480 |
2481 | lodash._basevalues@^3.0.0:
2482 | version "3.0.0"
2483 | resolved "https://registry.yarnpkg.com/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz#5b775762802bde3d3297503e26300820fdf661b7"
2484 |
2485 | lodash._getnative@^3.0.0:
2486 | version "3.9.1"
2487 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5"
2488 |
2489 | lodash._isiterateecall@^3.0.0:
2490 | version "3.0.9"
2491 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c"
2492 |
2493 | lodash._reescape@^3.0.0:
2494 | version "3.0.0"
2495 | resolved "https://registry.yarnpkg.com/lodash._reescape/-/lodash._reescape-3.0.0.tgz#2b1d6f5dfe07c8a355753e5f27fac7f1cde1616a"
2496 |
2497 | lodash._reevaluate@^3.0.0:
2498 | version "3.0.0"
2499 | resolved "https://registry.yarnpkg.com/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz#58bc74c40664953ae0b124d806996daca431e2ed"
2500 |
2501 | lodash._reinterpolate@^3.0.0:
2502 | version "3.0.0"
2503 | resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d"
2504 |
2505 | lodash._root@^3.0.0:
2506 | version "3.0.1"
2507 | resolved "https://registry.yarnpkg.com/lodash._root/-/lodash._root-3.0.1.tgz#fba1c4524c19ee9a5f8136b4609f017cf4ded692"
2508 |
2509 | lodash.assign@^4.2.0:
2510 | version "4.2.0"
2511 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7"
2512 |
2513 | lodash.camelcase@^4.3.0:
2514 | version "4.3.0"
2515 | resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6"
2516 |
2517 | lodash.clonedeep@^4.3.2, lodash.clonedeep@^4.5.0:
2518 | version "4.5.0"
2519 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef"
2520 |
2521 | lodash.escape@^3.0.0:
2522 | version "3.2.0"
2523 | resolved "https://registry.yarnpkg.com/lodash.escape/-/lodash.escape-3.2.0.tgz#995ee0dc18c1b48cc92effae71a10aab5b487698"
2524 | dependencies:
2525 | lodash._root "^3.0.0"
2526 |
2527 | lodash.isarguments@^3.0.0:
2528 | version "3.1.0"
2529 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a"
2530 |
2531 | lodash.isarray@^3.0.0:
2532 | version "3.0.4"
2533 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55"
2534 |
2535 | lodash.isequal@^4.0.0:
2536 | version "4.5.0"
2537 | resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0"
2538 |
2539 | lodash.keys@^3.0.0:
2540 | version "3.1.2"
2541 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a"
2542 | dependencies:
2543 | lodash._getnative "^3.0.0"
2544 | lodash.isarguments "^3.0.0"
2545 | lodash.isarray "^3.0.0"
2546 |
2547 | lodash.memoize@^4.1.2:
2548 | version "4.1.2"
2549 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
2550 |
2551 | lodash.mergewith@^4.6.0:
2552 | version "4.6.0"
2553 | resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.0.tgz#150cf0a16791f5903b8891eab154609274bdea55"
2554 |
2555 | lodash.restparam@^3.0.0:
2556 | version "3.6.1"
2557 | resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805"
2558 |
2559 | lodash.tail@^4.1.1:
2560 | version "4.1.1"
2561 | resolved "https://registry.yarnpkg.com/lodash.tail/-/lodash.tail-4.1.1.tgz#d2333a36d9e7717c8ad2f7cacafec7c32b444664"
2562 |
2563 | lodash.template@^3.0.0:
2564 | version "3.6.2"
2565 | resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-3.6.2.tgz#f8cdecc6169a255be9098ae8b0c53d378931d14f"
2566 | dependencies:
2567 | lodash._basecopy "^3.0.0"
2568 | lodash._basetostring "^3.0.0"
2569 | lodash._basevalues "^3.0.0"
2570 | lodash._isiterateecall "^3.0.0"
2571 | lodash._reinterpolate "^3.0.0"
2572 | lodash.escape "^3.0.0"
2573 | lodash.keys "^3.0.0"
2574 | lodash.restparam "^3.0.0"
2575 | lodash.templatesettings "^3.0.0"
2576 |
2577 | lodash.templatesettings@^3.0.0:
2578 | version "3.1.1"
2579 | resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz#fb307844753b66b9f1afa54e262c745307dba8e5"
2580 | dependencies:
2581 | lodash._reinterpolate "^3.0.0"
2582 | lodash.escape "^3.0.0"
2583 |
2584 | lodash.uniq@^4.5.0:
2585 | version "4.5.0"
2586 | resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
2587 |
2588 | lodash@^4.0.0, lodash@^4.14.0, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0:
2589 | version "4.17.4"
2590 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
2591 |
2592 | lodash@~4.16.4:
2593 | version "4.16.6"
2594 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.16.6.tgz#d22c9ac660288f3843e16ba7d2b5d06cca27d777"
2595 |
2596 | logalot@^2.0.0:
2597 | version "2.1.0"
2598 | resolved "https://registry.yarnpkg.com/logalot/-/logalot-2.1.0.tgz#5f8e8c90d304edf12530951a5554abb8c5e3f552"
2599 | dependencies:
2600 | figures "^1.3.5"
2601 | squeak "^1.0.0"
2602 |
2603 | longest@^1.0.0, longest@^1.0.1:
2604 | version "1.0.1"
2605 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097"
2606 |
2607 | loose-envify@^1.0.0:
2608 | version "1.3.1"
2609 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848"
2610 | dependencies:
2611 | js-tokens "^3.0.0"
2612 |
2613 | loud-rejection@^1.0.0:
2614 | version "1.6.0"
2615 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f"
2616 | dependencies:
2617 | currently-unhandled "^0.4.1"
2618 | signal-exit "^3.0.0"
2619 |
2620 | lowercase-keys@^1.0.0:
2621 | version "1.0.0"
2622 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306"
2623 |
2624 | lpad-align@^1.0.1:
2625 | version "1.1.2"
2626 | resolved "https://registry.yarnpkg.com/lpad-align/-/lpad-align-1.1.2.tgz#21f600ac1c3095c3c6e497ee67271ee08481fe9e"
2627 | dependencies:
2628 | get-stdin "^4.0.1"
2629 | indent-string "^2.1.0"
2630 | longest "^1.0.0"
2631 | meow "^3.3.0"
2632 |
2633 | lru-cache@^3.2.0:
2634 | version "3.2.0"
2635 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-3.2.0.tgz#71789b3b7f5399bec8565dda38aa30d2a097efee"
2636 | dependencies:
2637 | pseudomap "^1.0.1"
2638 |
2639 | lru-cache@^4.0.1:
2640 | version "4.0.2"
2641 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e"
2642 | dependencies:
2643 | pseudomap "^1.0.1"
2644 | yallist "^2.0.0"
2645 |
2646 | macaddress@^0.2.8:
2647 | version "0.2.8"
2648 | resolved "https://registry.yarnpkg.com/macaddress/-/macaddress-0.2.8.tgz#5904dc537c39ec6dbefeae902327135fa8511f12"
2649 |
2650 | make-dir@^1.0.0:
2651 | version "1.0.0"
2652 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.0.0.tgz#97a011751e91dd87cfadef58832ebb04936de978"
2653 | dependencies:
2654 | pify "^2.3.0"
2655 |
2656 | map-obj@^1.0.0, map-obj@^1.0.1:
2657 | version "1.0.1"
2658 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d"
2659 |
2660 | math-expression-evaluator@^1.2.14:
2661 | version "1.2.17"
2662 | resolved "https://registry.yarnpkg.com/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz#de819fdbcd84dccd8fae59c6aeb79615b9d266ac"
2663 |
2664 | memory-fs@^0.4.0, memory-fs@~0.4.1:
2665 | version "0.4.1"
2666 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552"
2667 | dependencies:
2668 | errno "^0.1.3"
2669 | readable-stream "^2.0.1"
2670 |
2671 | meow@^3.1.0, meow@^3.3.0, meow@^3.5.0, meow@^3.7.0:
2672 | version "3.7.0"
2673 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb"
2674 | dependencies:
2675 | camelcase-keys "^2.0.0"
2676 | decamelize "^1.1.2"
2677 | loud-rejection "^1.0.0"
2678 | map-obj "^1.0.1"
2679 | minimist "^1.1.3"
2680 | normalize-package-data "^2.3.4"
2681 | object-assign "^4.0.1"
2682 | read-pkg-up "^1.0.1"
2683 | redent "^1.0.0"
2684 | trim-newlines "^1.0.0"
2685 |
2686 | merge-stream@^1.0.0:
2687 | version "1.0.1"
2688 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1"
2689 | dependencies:
2690 | readable-stream "^2.0.1"
2691 |
2692 | micromatch@^2.1.5, micromatch@^2.3.7:
2693 | version "2.3.11"
2694 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
2695 | dependencies:
2696 | arr-diff "^2.0.0"
2697 | array-unique "^0.2.1"
2698 | braces "^1.8.2"
2699 | expand-brackets "^0.1.4"
2700 | extglob "^0.3.1"
2701 | filename-regex "^2.0.0"
2702 | is-extglob "^1.0.0"
2703 | is-glob "^2.0.1"
2704 | kind-of "^3.0.2"
2705 | normalize-path "^2.0.1"
2706 | object.omit "^2.0.0"
2707 | parse-glob "^3.0.4"
2708 | regex-cache "^0.4.2"
2709 |
2710 | miller-rabin@^4.0.0:
2711 | version "4.0.0"
2712 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d"
2713 | dependencies:
2714 | bn.js "^4.0.0"
2715 | brorand "^1.0.1"
2716 |
2717 | mime-db@~1.27.0:
2718 | version "1.27.0"
2719 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1"
2720 |
2721 | mime-types@^2.1.12, mime-types@~2.1.7:
2722 | version "2.1.15"
2723 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed"
2724 | dependencies:
2725 | mime-db "~1.27.0"
2726 |
2727 | mime@1.3.x:
2728 | version "1.3.6"
2729 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.6.tgz#591d84d3653a6b0b4a3b9df8de5aa8108e72e5e0"
2730 |
2731 | minimalistic-assert@^1.0.0:
2732 | version "1.0.0"
2733 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3"
2734 |
2735 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1:
2736 | version "1.0.1"
2737 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
2738 |
2739 | "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4, minimatch@~3.0.2:
2740 | version "3.0.4"
2741 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
2742 | dependencies:
2743 | brace-expansion "^1.1.7"
2744 |
2745 | minimist@0.0.8:
2746 | version "0.0.8"
2747 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
2748 |
2749 | minimist@^1.1.0, minimist@^1.1.3, minimist@^1.2.0:
2750 | version "1.2.0"
2751 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
2752 |
2753 | mixin-object@^2.0.1:
2754 | version "2.0.1"
2755 | resolved "https://registry.yarnpkg.com/mixin-object/-/mixin-object-2.0.1.tgz#4fb949441dab182540f1fe035ba60e1947a5e57e"
2756 | dependencies:
2757 | for-in "^0.1.3"
2758 | is-extendable "^0.1.1"
2759 |
2760 | mkdirp@0.5.x, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1:
2761 | version "0.5.1"
2762 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
2763 | dependencies:
2764 | minimist "0.0.8"
2765 |
2766 | mozjpeg@^4.0.0:
2767 | version "4.1.1"
2768 | resolved "https://registry.yarnpkg.com/mozjpeg/-/mozjpeg-4.1.1.tgz#859030b24f689a53db9b40f0160d89195b88fd50"
2769 | dependencies:
2770 | bin-build "^2.0.0"
2771 | bin-wrapper "^3.0.0"
2772 | logalot "^2.0.0"
2773 |
2774 | ms@2.0.0:
2775 | version "2.0.0"
2776 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
2777 |
2778 | multipipe@^0.1.2:
2779 | version "0.1.2"
2780 | resolved "https://registry.yarnpkg.com/multipipe/-/multipipe-0.1.2.tgz#2a8f2ddf70eed564dff2d57f1e1a137d9f05078b"
2781 | dependencies:
2782 | duplexer2 "0.0.2"
2783 |
2784 | nan@^2.3.0, nan@^2.3.2:
2785 | version "2.6.2"
2786 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45"
2787 |
2788 | node-dir@^0.1.10:
2789 | version "0.1.16"
2790 | resolved "https://registry.yarnpkg.com/node-dir/-/node-dir-0.1.16.tgz#d2ef583aa50b90d93db8cdd26fcea58353957fe4"
2791 | dependencies:
2792 | minimatch "^3.0.2"
2793 |
2794 | node-gyp@^3.3.1:
2795 | version "3.6.1"
2796 | resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.6.1.tgz#19561067ff185464aded478212681f47fd578cbc"
2797 | dependencies:
2798 | fstream "^1.0.0"
2799 | glob "^7.0.3"
2800 | graceful-fs "^4.1.2"
2801 | minimatch "^3.0.2"
2802 | mkdirp "^0.5.0"
2803 | nopt "2 || 3"
2804 | npmlog "0 || 1 || 2 || 3 || 4"
2805 | osenv "0"
2806 | request "2"
2807 | rimraf "2"
2808 | semver "~5.3.0"
2809 | tar "^2.0.0"
2810 | which "1"
2811 |
2812 | node-libs-browser@^2.0.0:
2813 | version "2.0.0"
2814 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.0.0.tgz#a3a59ec97024985b46e958379646f96c4b616646"
2815 | dependencies:
2816 | assert "^1.1.1"
2817 | browserify-zlib "^0.1.4"
2818 | buffer "^4.3.0"
2819 | console-browserify "^1.1.0"
2820 | constants-browserify "^1.0.0"
2821 | crypto-browserify "^3.11.0"
2822 | domain-browser "^1.1.1"
2823 | events "^1.0.0"
2824 | https-browserify "0.0.1"
2825 | os-browserify "^0.2.0"
2826 | path-browserify "0.0.0"
2827 | process "^0.11.0"
2828 | punycode "^1.2.4"
2829 | querystring-es3 "^0.2.0"
2830 | readable-stream "^2.0.5"
2831 | stream-browserify "^2.0.1"
2832 | stream-http "^2.3.1"
2833 | string_decoder "^0.10.25"
2834 | timers-browserify "^2.0.2"
2835 | tty-browserify "0.0.0"
2836 | url "^0.11.0"
2837 | util "^0.10.3"
2838 | vm-browserify "0.0.4"
2839 |
2840 | node-pre-gyp@^0.6.29:
2841 | version "0.6.34"
2842 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.34.tgz#94ad1c798a11d7fc67381b50d47f8cc18d9799f7"
2843 | dependencies:
2844 | mkdirp "^0.5.1"
2845 | nopt "^4.0.1"
2846 | npmlog "^4.0.2"
2847 | rc "^1.1.7"
2848 | request "^2.81.0"
2849 | rimraf "^2.6.1"
2850 | semver "^5.3.0"
2851 | tar "^2.2.1"
2852 | tar-pack "^3.4.0"
2853 |
2854 | node-sass@^4.5.3:
2855 | version "4.5.3"
2856 | resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.5.3.tgz#d09c9d1179641239d1b97ffc6231fdcec53e1568"
2857 | dependencies:
2858 | async-foreach "^0.1.3"
2859 | chalk "^1.1.1"
2860 | cross-spawn "^3.0.0"
2861 | gaze "^1.0.0"
2862 | get-stdin "^4.0.1"
2863 | glob "^7.0.3"
2864 | in-publish "^2.0.0"
2865 | lodash.assign "^4.2.0"
2866 | lodash.clonedeep "^4.3.2"
2867 | lodash.mergewith "^4.6.0"
2868 | meow "^3.7.0"
2869 | mkdirp "^0.5.1"
2870 | nan "^2.3.2"
2871 | node-gyp "^3.3.1"
2872 | npmlog "^4.0.0"
2873 | request "^2.79.0"
2874 | sass-graph "^2.1.1"
2875 | stdout-stream "^1.4.0"
2876 |
2877 | node-status-codes@^1.0.0:
2878 | version "1.0.0"
2879 | resolved "https://registry.yarnpkg.com/node-status-codes/-/node-status-codes-1.0.0.tgz#5ae5541d024645d32a58fcddc9ceecea7ae3ac2f"
2880 |
2881 | "nopt@2 || 3", nopt@~3.0.1:
2882 | version "3.0.6"
2883 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9"
2884 | dependencies:
2885 | abbrev "1"
2886 |
2887 | nopt@^4.0.1:
2888 | version "4.0.1"
2889 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
2890 | dependencies:
2891 | abbrev "1"
2892 | osenv "^0.1.4"
2893 |
2894 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4:
2895 | version "2.3.8"
2896 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb"
2897 | dependencies:
2898 | hosted-git-info "^2.1.4"
2899 | is-builtin-module "^1.0.0"
2900 | semver "2 || 3 || 4 || 5"
2901 | validate-npm-package-license "^3.0.1"
2902 |
2903 | normalize-path@^2.0.1:
2904 | version "2.1.1"
2905 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
2906 | dependencies:
2907 | remove-trailing-separator "^1.0.1"
2908 |
2909 | normalize-range@^0.1.2:
2910 | version "0.1.2"
2911 | resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
2912 |
2913 | normalize-url@^1.4.0:
2914 | version "1.9.1"
2915 | resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c"
2916 | dependencies:
2917 | object-assign "^4.0.1"
2918 | prepend-http "^1.0.0"
2919 | query-string "^4.1.0"
2920 | sort-keys "^1.0.0"
2921 |
2922 | npm-run-path@^2.0.0:
2923 | version "2.0.2"
2924 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
2925 | dependencies:
2926 | path-key "^2.0.0"
2927 |
2928 | "npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.0, npmlog@^4.0.2:
2929 | version "4.1.0"
2930 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.0.tgz#dc59bee85f64f00ed424efb2af0783df25d1c0b5"
2931 | dependencies:
2932 | are-we-there-yet "~1.1.2"
2933 | console-control-strings "~1.1.0"
2934 | gauge "~2.7.3"
2935 | set-blocking "~2.0.0"
2936 |
2937 | num2fraction@^1.2.2:
2938 | version "1.2.2"
2939 | resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede"
2940 |
2941 | number-is-nan@^1.0.0:
2942 | version "1.0.1"
2943 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
2944 |
2945 | oauth-sign@~0.8.1:
2946 | version "0.8.2"
2947 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
2948 |
2949 | object-assign@^2.0.0:
2950 | version "2.1.1"
2951 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-2.1.1.tgz#43c36e5d569ff8e4816c4efa8be02d26967c18aa"
2952 |
2953 | object-assign@^3.0.0:
2954 | version "3.0.0"
2955 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2"
2956 |
2957 | object-assign@^4.0.0, object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1:
2958 | version "4.1.1"
2959 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
2960 |
2961 | object.omit@^2.0.0:
2962 | version "2.0.1"
2963 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
2964 | dependencies:
2965 | for-own "^0.1.4"
2966 | is-extendable "^0.1.1"
2967 |
2968 | once@^1.3.0, once@^1.3.3, once@^1.4.0:
2969 | version "1.4.0"
2970 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
2971 | dependencies:
2972 | wrappy "1"
2973 |
2974 | once@~1.3.0:
2975 | version "1.3.3"
2976 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20"
2977 | dependencies:
2978 | wrappy "1"
2979 |
2980 | onetime@^1.0.0:
2981 | version "1.1.0"
2982 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789"
2983 |
2984 | optipng-bin@^3.0.0:
2985 | version "3.1.4"
2986 | resolved "https://registry.yarnpkg.com/optipng-bin/-/optipng-bin-3.1.4.tgz#95d34f2c488704f6fd70606bfea0c659f1d95d84"
2987 | dependencies:
2988 | bin-build "^2.0.0"
2989 | bin-wrapper "^3.0.0"
2990 | logalot "^2.0.0"
2991 |
2992 | ordered-read-streams@^0.3.0:
2993 | version "0.3.0"
2994 | resolved "https://registry.yarnpkg.com/ordered-read-streams/-/ordered-read-streams-0.3.0.tgz#7137e69b3298bb342247a1bbee3881c80e2fd78b"
2995 | dependencies:
2996 | is-stream "^1.0.1"
2997 | readable-stream "^2.0.1"
2998 |
2999 | os-browserify@^0.2.0:
3000 | version "0.2.1"
3001 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f"
3002 |
3003 | os-filter-obj@^1.0.0:
3004 | version "1.0.3"
3005 | resolved "https://registry.yarnpkg.com/os-filter-obj/-/os-filter-obj-1.0.3.tgz#5915330d90eced557d2d938a31c6dd214d9c63ad"
3006 |
3007 | os-homedir@^1.0.0, os-homedir@^1.0.1:
3008 | version "1.0.2"
3009 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
3010 |
3011 | os-locale@^1.4.0:
3012 | version "1.4.0"
3013 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9"
3014 | dependencies:
3015 | lcid "^1.0.0"
3016 |
3017 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1:
3018 | version "1.0.2"
3019 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
3020 |
3021 | osenv@0, osenv@^0.1.4:
3022 | version "0.1.4"
3023 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644"
3024 | dependencies:
3025 | os-homedir "^1.0.0"
3026 | os-tmpdir "^1.0.0"
3027 |
3028 | p-finally@^1.0.0:
3029 | version "1.0.0"
3030 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
3031 |
3032 | p-pipe@^1.1.0:
3033 | version "1.1.0"
3034 | resolved "https://registry.yarnpkg.com/p-pipe/-/p-pipe-1.1.0.tgz#2e9dc7cc57ce67d2ce2db348ca03f28731854075"
3035 |
3036 | pako@~0.2.0:
3037 | version "0.2.9"
3038 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75"
3039 |
3040 | parse-asn1@^5.0.0:
3041 | version "5.1.0"
3042 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712"
3043 | dependencies:
3044 | asn1.js "^4.0.0"
3045 | browserify-aes "^1.0.0"
3046 | create-hash "^1.1.0"
3047 | evp_bytestokey "^1.0.0"
3048 | pbkdf2 "^3.0.3"
3049 |
3050 | parse-glob@^3.0.4:
3051 | version "3.0.4"
3052 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
3053 | dependencies:
3054 | glob-base "^0.3.0"
3055 | is-dotfile "^1.0.0"
3056 | is-extglob "^1.0.0"
3057 | is-glob "^2.0.0"
3058 |
3059 | parse-json@^2.1.0, parse-json@^2.2.0:
3060 | version "2.2.0"
3061 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
3062 | dependencies:
3063 | error-ex "^1.2.0"
3064 |
3065 | path-browserify@0.0.0:
3066 | version "0.0.0"
3067 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a"
3068 |
3069 | path-dirname@^1.0.0:
3070 | version "1.0.2"
3071 | resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0"
3072 |
3073 | path-exists@^2.0.0:
3074 | version "2.1.0"
3075 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
3076 | dependencies:
3077 | pinkie-promise "^2.0.0"
3078 |
3079 | path-is-absolute@^1.0.0:
3080 | version "1.0.1"
3081 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
3082 |
3083 | path-key@^2.0.0:
3084 | version "2.0.1"
3085 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
3086 |
3087 | path-parse@^1.0.5:
3088 | version "1.0.5"
3089 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1"
3090 |
3091 | path-type@^1.0.0:
3092 | version "1.1.0"
3093 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441"
3094 | dependencies:
3095 | graceful-fs "^4.1.2"
3096 | pify "^2.0.0"
3097 | pinkie-promise "^2.0.0"
3098 |
3099 | pbkdf2@^3.0.3:
3100 | version "3.0.12"
3101 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.12.tgz#be36785c5067ea48d806ff923288c5f750b6b8a2"
3102 | dependencies:
3103 | create-hash "^1.1.2"
3104 | create-hmac "^1.1.4"
3105 | ripemd160 "^2.0.1"
3106 | safe-buffer "^5.0.1"
3107 | sha.js "^2.4.8"
3108 |
3109 | pend@~1.2.0:
3110 | version "1.2.0"
3111 | resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50"
3112 |
3113 | performance-now@^0.2.0:
3114 | version "0.2.0"
3115 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"
3116 |
3117 | "phoenix@file:../deps/phoenix":
3118 | version "1.3.0-rc.2"
3119 |
3120 | "phoenix_html@file:../deps/phoenix_html":
3121 | version "2.9.3"
3122 |
3123 | pify@^2.0.0, pify@^2.3.0:
3124 | version "2.3.0"
3125 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
3126 |
3127 | pinkie-promise@^2.0.0:
3128 | version "2.0.1"
3129 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
3130 | dependencies:
3131 | pinkie "^2.0.0"
3132 |
3133 | pinkie@^2.0.0:
3134 | version "2.0.4"
3135 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
3136 |
3137 | pkg-dir@^1.0.0:
3138 | version "1.0.0"
3139 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4"
3140 | dependencies:
3141 | find-up "^1.0.0"
3142 |
3143 | pngquant-bin@^3.0.0:
3144 | version "3.1.1"
3145 | resolved "https://registry.yarnpkg.com/pngquant-bin/-/pngquant-bin-3.1.1.tgz#d124d98a75a9487f40c1640b4dbfcbb2bd5a1fd1"
3146 | dependencies:
3147 | bin-build "^2.0.0"
3148 | bin-wrapper "^3.0.0"
3149 | logalot "^2.0.0"
3150 |
3151 | postcss-calc@^5.2.0:
3152 | version "5.3.1"
3153 | resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-5.3.1.tgz#77bae7ca928ad85716e2fda42f261bf7c1d65b5e"
3154 | dependencies:
3155 | postcss "^5.0.2"
3156 | postcss-message-helpers "^2.0.0"
3157 | reduce-css-calc "^1.2.6"
3158 |
3159 | postcss-colormin@^2.1.8:
3160 | version "2.2.2"
3161 | resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-2.2.2.tgz#6631417d5f0e909a3d7ec26b24c8a8d1e4f96e4b"
3162 | dependencies:
3163 | colormin "^1.0.5"
3164 | postcss "^5.0.13"
3165 | postcss-value-parser "^3.2.3"
3166 |
3167 | postcss-convert-values@^2.3.4:
3168 | version "2.6.1"
3169 | resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz#bbd8593c5c1fd2e3d1c322bb925dcae8dae4d62d"
3170 | dependencies:
3171 | postcss "^5.0.11"
3172 | postcss-value-parser "^3.1.2"
3173 |
3174 | postcss-discard-comments@^2.0.4:
3175 | version "2.0.4"
3176 | resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz#befe89fafd5b3dace5ccce51b76b81514be00e3d"
3177 | dependencies:
3178 | postcss "^5.0.14"
3179 |
3180 | postcss-discard-duplicates@^2.0.1:
3181 | version "2.1.0"
3182 | resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz#b9abf27b88ac188158a5eb12abcae20263b91932"
3183 | dependencies:
3184 | postcss "^5.0.4"
3185 |
3186 | postcss-discard-empty@^2.0.1:
3187 | version "2.1.0"
3188 | resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz#d2b4bd9d5ced5ebd8dcade7640c7d7cd7f4f92b5"
3189 | dependencies:
3190 | postcss "^5.0.14"
3191 |
3192 | postcss-discard-overridden@^0.1.1:
3193 | version "0.1.1"
3194 | resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz#8b1eaf554f686fb288cd874c55667b0aa3668d58"
3195 | dependencies:
3196 | postcss "^5.0.16"
3197 |
3198 | postcss-discard-unused@^2.2.1:
3199 | version "2.2.3"
3200 | resolved "https://registry.yarnpkg.com/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz#bce30b2cc591ffc634322b5fb3464b6d934f4433"
3201 | dependencies:
3202 | postcss "^5.0.14"
3203 | uniqs "^2.0.0"
3204 |
3205 | postcss-filter-plugins@^2.0.0:
3206 | version "2.0.2"
3207 | resolved "https://registry.yarnpkg.com/postcss-filter-plugins/-/postcss-filter-plugins-2.0.2.tgz#6d85862534d735ac420e4a85806e1f5d4286d84c"
3208 | dependencies:
3209 | postcss "^5.0.4"
3210 | uniqid "^4.0.0"
3211 |
3212 | postcss-load-config@^1.1.0:
3213 | version "1.2.0"
3214 | resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-1.2.0.tgz#539e9afc9ddc8620121ebf9d8c3673e0ce50d28a"
3215 | dependencies:
3216 | cosmiconfig "^2.1.0"
3217 | object-assign "^4.1.0"
3218 | postcss-load-options "^1.2.0"
3219 | postcss-load-plugins "^2.3.0"
3220 |
3221 | postcss-load-options@^1.2.0:
3222 | version "1.2.0"
3223 | resolved "https://registry.yarnpkg.com/postcss-load-options/-/postcss-load-options-1.2.0.tgz#b098b1559ddac2df04bc0bb375f99a5cfe2b6d8c"
3224 | dependencies:
3225 | cosmiconfig "^2.1.0"
3226 | object-assign "^4.1.0"
3227 |
3228 | postcss-load-plugins@^2.3.0:
3229 | version "2.3.0"
3230 | resolved "https://registry.yarnpkg.com/postcss-load-plugins/-/postcss-load-plugins-2.3.0.tgz#745768116599aca2f009fad426b00175049d8d92"
3231 | dependencies:
3232 | cosmiconfig "^2.1.1"
3233 | object-assign "^4.1.0"
3234 |
3235 | postcss-merge-idents@^2.1.5:
3236 | version "2.1.7"
3237 | resolved "https://registry.yarnpkg.com/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz#4c5530313c08e1d5b3bbf3d2bbc747e278eea270"
3238 | dependencies:
3239 | has "^1.0.1"
3240 | postcss "^5.0.10"
3241 | postcss-value-parser "^3.1.1"
3242 |
3243 | postcss-merge-longhand@^2.0.1:
3244 | version "2.0.2"
3245 | resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz#23d90cd127b0a77994915332739034a1a4f3d658"
3246 | dependencies:
3247 | postcss "^5.0.4"
3248 |
3249 | postcss-merge-rules@^2.0.3:
3250 | version "2.1.2"
3251 | resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz#d1df5dfaa7b1acc3be553f0e9e10e87c61b5f721"
3252 | dependencies:
3253 | browserslist "^1.5.2"
3254 | caniuse-api "^1.5.2"
3255 | postcss "^5.0.4"
3256 | postcss-selector-parser "^2.2.2"
3257 | vendors "^1.0.0"
3258 |
3259 | postcss-message-helpers@^2.0.0:
3260 | version "2.0.0"
3261 | resolved "https://registry.yarnpkg.com/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz#a4f2f4fab6e4fe002f0aed000478cdf52f9ba60e"
3262 |
3263 | postcss-minify-font-values@^1.0.2:
3264 | version "1.0.5"
3265 | resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz#4b58edb56641eba7c8474ab3526cafd7bbdecb69"
3266 | dependencies:
3267 | object-assign "^4.0.1"
3268 | postcss "^5.0.4"
3269 | postcss-value-parser "^3.0.2"
3270 |
3271 | postcss-minify-gradients@^1.0.1:
3272 | version "1.0.5"
3273 | resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz#5dbda11373703f83cfb4a3ea3881d8d75ff5e6e1"
3274 | dependencies:
3275 | postcss "^5.0.12"
3276 | postcss-value-parser "^3.3.0"
3277 |
3278 | postcss-minify-params@^1.0.4:
3279 | version "1.2.2"
3280 | resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz#ad2ce071373b943b3d930a3fa59a358c28d6f1f3"
3281 | dependencies:
3282 | alphanum-sort "^1.0.1"
3283 | postcss "^5.0.2"
3284 | postcss-value-parser "^3.0.2"
3285 | uniqs "^2.0.0"
3286 |
3287 | postcss-minify-selectors@^2.0.4:
3288 | version "2.1.1"
3289 | resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz#b2c6a98c0072cf91b932d1a496508114311735bf"
3290 | dependencies:
3291 | alphanum-sort "^1.0.2"
3292 | has "^1.0.1"
3293 | postcss "^5.0.14"
3294 | postcss-selector-parser "^2.0.0"
3295 |
3296 | postcss-modules-extract-imports@^1.0.0:
3297 | version "1.2.0"
3298 | resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.0.tgz#66140ecece38ef06bf0d3e355d69bf59d141ea85"
3299 | dependencies:
3300 | postcss "^6.0.1"
3301 |
3302 | postcss-modules-local-by-default@^1.0.1:
3303 | version "1.2.0"
3304 | resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz#f7d80c398c5a393fa7964466bd19500a7d61c069"
3305 | dependencies:
3306 | css-selector-tokenizer "^0.7.0"
3307 | postcss "^6.0.1"
3308 |
3309 | postcss-modules-scope@^1.0.0:
3310 | version "1.1.0"
3311 | resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz#d6ea64994c79f97b62a72b426fbe6056a194bb90"
3312 | dependencies:
3313 | css-selector-tokenizer "^0.7.0"
3314 | postcss "^6.0.1"
3315 |
3316 | postcss-modules-values@^1.1.0:
3317 | version "1.3.0"
3318 | resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz#ecffa9d7e192518389f42ad0e83f72aec456ea20"
3319 | dependencies:
3320 | icss-replace-symbols "^1.1.0"
3321 | postcss "^6.0.1"
3322 |
3323 | postcss-normalize-charset@^1.1.0:
3324 | version "1.1.1"
3325 | resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz#ef9ee71212d7fe759c78ed162f61ed62b5cb93f1"
3326 | dependencies:
3327 | postcss "^5.0.5"
3328 |
3329 | postcss-normalize-url@^3.0.7:
3330 | version "3.0.8"
3331 | resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz#108f74b3f2fcdaf891a2ffa3ea4592279fc78222"
3332 | dependencies:
3333 | is-absolute-url "^2.0.0"
3334 | normalize-url "^1.4.0"
3335 | postcss "^5.0.14"
3336 | postcss-value-parser "^3.2.3"
3337 |
3338 | postcss-ordered-values@^2.1.0:
3339 | version "2.2.3"
3340 | resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz#eec6c2a67b6c412a8db2042e77fe8da43f95c11d"
3341 | dependencies:
3342 | postcss "^5.0.4"
3343 | postcss-value-parser "^3.0.1"
3344 |
3345 | postcss-reduce-idents@^2.2.2:
3346 | version "2.4.0"
3347 | resolved "https://registry.yarnpkg.com/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz#c2c6d20cc958284f6abfbe63f7609bf409059ad3"
3348 | dependencies:
3349 | postcss "^5.0.4"
3350 | postcss-value-parser "^3.0.2"
3351 |
3352 | postcss-reduce-initial@^1.0.0:
3353 | version "1.0.1"
3354 | resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz#68f80695f045d08263a879ad240df8dd64f644ea"
3355 | dependencies:
3356 | postcss "^5.0.4"
3357 |
3358 | postcss-reduce-transforms@^1.0.3:
3359 | version "1.0.4"
3360 | resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz#ff76f4d8212437b31c298a42d2e1444025771ae1"
3361 | dependencies:
3362 | has "^1.0.1"
3363 | postcss "^5.0.8"
3364 | postcss-value-parser "^3.0.1"
3365 |
3366 | postcss-selector-parser@^2.0.0, postcss-selector-parser@^2.2.2:
3367 | version "2.2.3"
3368 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz#f9437788606c3c9acee16ffe8d8b16297f27bb90"
3369 | dependencies:
3370 | flatten "^1.0.2"
3371 | indexes-of "^1.0.1"
3372 | uniq "^1.0.1"
3373 |
3374 | postcss-svgo@^2.1.1:
3375 | version "2.1.6"
3376 | resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-2.1.6.tgz#b6df18aa613b666e133f08adb5219c2684ac108d"
3377 | dependencies:
3378 | is-svg "^2.0.0"
3379 | postcss "^5.0.14"
3380 | postcss-value-parser "^3.2.3"
3381 | svgo "^0.7.0"
3382 |
3383 | postcss-unique-selectors@^2.0.2:
3384 | version "2.0.2"
3385 | resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz#981d57d29ddcb33e7b1dfe1fd43b8649f933ca1d"
3386 | dependencies:
3387 | alphanum-sort "^1.0.1"
3388 | postcss "^5.0.4"
3389 | uniqs "^2.0.0"
3390 |
3391 | postcss-value-parser@^3.0.1, postcss-value-parser@^3.0.2, postcss-value-parser@^3.1.1, postcss-value-parser@^3.1.2, postcss-value-parser@^3.2.3, postcss-value-parser@^3.3.0:
3392 | version "3.3.0"
3393 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15"
3394 |
3395 | postcss-zindex@^2.0.1:
3396 | version "2.2.0"
3397 | resolved "https://registry.yarnpkg.com/postcss-zindex/-/postcss-zindex-2.2.0.tgz#d2109ddc055b91af67fc4cb3b025946639d2af22"
3398 | dependencies:
3399 | has "^1.0.1"
3400 | postcss "^5.0.4"
3401 | uniqs "^2.0.0"
3402 |
3403 | postcss@^5.0.10, postcss@^5.0.11, postcss@^5.0.12, postcss@^5.0.13, postcss@^5.0.14, postcss@^5.0.16, postcss@^5.0.2, postcss@^5.0.21, postcss@^5.0.4, postcss@^5.0.5, postcss@^5.0.6, postcss@^5.0.8, postcss@^5.2.16:
3404 | version "5.2.17"
3405 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.17.tgz#cf4f597b864d65c8a492b2eabe9d706c879c388b"
3406 | dependencies:
3407 | chalk "^1.1.3"
3408 | js-base64 "^2.1.9"
3409 | source-map "^0.5.6"
3410 | supports-color "^3.2.3"
3411 |
3412 | postcss@^6.0.1:
3413 | version "6.0.1"
3414 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.1.tgz#000dbd1f8eef217aa368b9a212c5fc40b2a8f3f2"
3415 | dependencies:
3416 | chalk "^1.1.3"
3417 | source-map "^0.5.6"
3418 | supports-color "^3.2.3"
3419 |
3420 | prepend-http@^1.0.0, prepend-http@^1.0.1:
3421 | version "1.0.4"
3422 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc"
3423 |
3424 | preserve@^0.2.0:
3425 | version "0.2.0"
3426 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
3427 |
3428 | private@^0.1.6:
3429 | version "0.1.7"
3430 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1"
3431 |
3432 | process-nextick-args@~1.0.6:
3433 | version "1.0.7"
3434 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
3435 |
3436 | process@^0.11.0:
3437 | version "0.11.10"
3438 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
3439 |
3440 | proto-list@~1.2.1:
3441 | version "1.2.4"
3442 | resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849"
3443 |
3444 | prr@~0.0.0:
3445 | version "0.0.0"
3446 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a"
3447 |
3448 | pseudomap@^1.0.1:
3449 | version "1.0.2"
3450 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
3451 |
3452 | public-encrypt@^4.0.0:
3453 | version "4.0.0"
3454 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6"
3455 | dependencies:
3456 | bn.js "^4.1.0"
3457 | browserify-rsa "^4.0.0"
3458 | create-hash "^1.1.0"
3459 | parse-asn1 "^5.0.0"
3460 | randombytes "^2.0.1"
3461 |
3462 | punycode@1.3.2:
3463 | version "1.3.2"
3464 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d"
3465 |
3466 | punycode@^1.2.4, punycode@^1.4.1:
3467 | version "1.4.1"
3468 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
3469 |
3470 | q@^1.1.2:
3471 | version "1.5.0"
3472 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.0.tgz#dd01bac9d06d30e6f219aecb8253ee9ebdc308f1"
3473 |
3474 | qs@~6.4.0:
3475 | version "6.4.0"
3476 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233"
3477 |
3478 | query-string@^4.1.0:
3479 | version "4.3.4"
3480 | resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb"
3481 | dependencies:
3482 | object-assign "^4.1.0"
3483 | strict-uri-encode "^1.0.0"
3484 |
3485 | querystring-es3@^0.2.0:
3486 | version "0.2.1"
3487 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73"
3488 |
3489 | querystring@0.2.0:
3490 | version "0.2.0"
3491 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620"
3492 |
3493 | randomatic@^1.1.3:
3494 | version "1.1.6"
3495 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb"
3496 | dependencies:
3497 | is-number "^2.0.2"
3498 | kind-of "^3.0.2"
3499 |
3500 | randombytes@^2.0.0, randombytes@^2.0.1:
3501 | version "2.0.3"
3502 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.3.tgz#674c99760901c3c4112771a31e521dc349cc09ec"
3503 |
3504 | rc@^1.1.2, rc@^1.1.7:
3505 | version "1.2.1"
3506 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95"
3507 | dependencies:
3508 | deep-extend "~0.4.0"
3509 | ini "~1.3.0"
3510 | minimist "^1.2.0"
3511 | strip-json-comments "~2.0.1"
3512 |
3513 | read-all-stream@^3.0.0:
3514 | version "3.1.0"
3515 | resolved "https://registry.yarnpkg.com/read-all-stream/-/read-all-stream-3.1.0.tgz#35c3e177f2078ef789ee4bfafa4373074eaef4fa"
3516 | dependencies:
3517 | pinkie-promise "^2.0.0"
3518 | readable-stream "^2.0.0"
3519 |
3520 | read-pkg-up@^1.0.1:
3521 | version "1.0.1"
3522 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02"
3523 | dependencies:
3524 | find-up "^1.0.0"
3525 | read-pkg "^1.0.0"
3526 |
3527 | read-pkg@^1.0.0:
3528 | version "1.1.0"
3529 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"
3530 | dependencies:
3531 | load-json-file "^1.0.0"
3532 | normalize-package-data "^2.3.2"
3533 | path-type "^1.0.0"
3534 |
3535 | "readable-stream@>=1.0.33-1 <1.1.0-0":
3536 | version "1.0.34"
3537 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c"
3538 | dependencies:
3539 | core-util-is "~1.0.0"
3540 | inherits "~2.0.1"
3541 | isarray "0.0.1"
3542 | string_decoder "~0.10.x"
3543 |
3544 | readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.4, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.2.6:
3545 | version "2.2.9"
3546 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.9.tgz#cf78ec6f4a6d1eb43d26488cac97f042e74b7fc8"
3547 | dependencies:
3548 | buffer-shims "~1.0.0"
3549 | core-util-is "~1.0.0"
3550 | inherits "~2.0.1"
3551 | isarray "~1.0.0"
3552 | process-nextick-args "~1.0.6"
3553 | string_decoder "~1.0.0"
3554 | util-deprecate "~1.0.1"
3555 |
3556 | readable-stream@~1.1.9:
3557 | version "1.1.14"
3558 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9"
3559 | dependencies:
3560 | core-util-is "~1.0.0"
3561 | inherits "~2.0.1"
3562 | isarray "0.0.1"
3563 | string_decoder "~0.10.x"
3564 |
3565 | readdirp@^2.0.0:
3566 | version "2.1.0"
3567 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78"
3568 | dependencies:
3569 | graceful-fs "^4.1.2"
3570 | minimatch "^3.0.2"
3571 | readable-stream "^2.0.2"
3572 | set-immediate-shim "^1.0.1"
3573 |
3574 | redent@^1.0.0:
3575 | version "1.0.0"
3576 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde"
3577 | dependencies:
3578 | indent-string "^2.1.0"
3579 | strip-indent "^1.0.1"
3580 |
3581 | reduce-css-calc@^1.2.6:
3582 | version "1.3.0"
3583 | resolved "https://registry.yarnpkg.com/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz#747c914e049614a4c9cfbba629871ad1d2927716"
3584 | dependencies:
3585 | balanced-match "^0.4.2"
3586 | math-expression-evaluator "^1.2.14"
3587 | reduce-function-call "^1.0.1"
3588 |
3589 | reduce-function-call@^1.0.1:
3590 | version "1.0.2"
3591 | resolved "https://registry.yarnpkg.com/reduce-function-call/-/reduce-function-call-1.0.2.tgz#5a200bf92e0e37751752fe45b0ab330fd4b6be99"
3592 | dependencies:
3593 | balanced-match "^0.4.2"
3594 |
3595 | regenerate@^1.2.1:
3596 | version "1.3.2"
3597 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260"
3598 |
3599 | regenerator-runtime@^0.10.0:
3600 | version "0.10.5"
3601 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658"
3602 |
3603 | regex-cache@^0.4.2:
3604 | version "0.4.3"
3605 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145"
3606 | dependencies:
3607 | is-equal-shallow "^0.1.3"
3608 | is-primitive "^2.0.0"
3609 |
3610 | regexpu-core@^1.0.0:
3611 | version "1.0.0"
3612 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-1.0.0.tgz#86a763f58ee4d7c2f6b102e4764050de7ed90c6b"
3613 | dependencies:
3614 | regenerate "^1.2.1"
3615 | regjsgen "^0.2.0"
3616 | regjsparser "^0.1.4"
3617 |
3618 | regjsgen@^0.2.0:
3619 | version "0.2.0"
3620 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7"
3621 |
3622 | regjsparser@^0.1.4:
3623 | version "0.1.5"
3624 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c"
3625 | dependencies:
3626 | jsesc "~0.5.0"
3627 |
3628 | remove-trailing-separator@^1.0.1:
3629 | version "1.0.1"
3630 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4"
3631 |
3632 | repeat-element@^1.1.2:
3633 | version "1.1.2"
3634 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
3635 |
3636 | repeat-string@^1.5.2:
3637 | version "1.6.1"
3638 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
3639 |
3640 | repeating@^2.0.0:
3641 | version "2.0.1"
3642 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
3643 | dependencies:
3644 | is-finite "^1.0.0"
3645 |
3646 | replace-ext@0.0.1:
3647 | version "0.0.1"
3648 | resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-0.0.1.tgz#29bbd92078a739f0bcce2b4ee41e837953522924"
3649 |
3650 | replace-ext@^1.0.0:
3651 | version "1.0.0"
3652 | resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb"
3653 |
3654 | request@2, request@^2.79.0, request@^2.81.0:
3655 | version "2.81.0"
3656 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0"
3657 | dependencies:
3658 | aws-sign2 "~0.6.0"
3659 | aws4 "^1.2.1"
3660 | caseless "~0.12.0"
3661 | combined-stream "~1.0.5"
3662 | extend "~3.0.0"
3663 | forever-agent "~0.6.1"
3664 | form-data "~2.1.1"
3665 | har-validator "~4.2.1"
3666 | hawk "~3.1.3"
3667 | http-signature "~1.1.0"
3668 | is-typedarray "~1.0.0"
3669 | isstream "~0.1.2"
3670 | json-stringify-safe "~5.0.1"
3671 | mime-types "~2.1.7"
3672 | oauth-sign "~0.8.1"
3673 | performance-now "^0.2.0"
3674 | qs "~6.4.0"
3675 | safe-buffer "^5.0.1"
3676 | stringstream "~0.0.4"
3677 | tough-cookie "~2.3.0"
3678 | tunnel-agent "^0.6.0"
3679 | uuid "^3.0.0"
3680 |
3681 | require-directory@^2.1.1:
3682 | version "2.1.1"
3683 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
3684 |
3685 | require-from-string@^1.1.0:
3686 | version "1.2.1"
3687 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-1.2.1.tgz#529c9ccef27380adfec9a2f965b649bbee636418"
3688 |
3689 | require-main-filename@^1.0.1:
3690 | version "1.0.1"
3691 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
3692 |
3693 | resolve@^1.3.3:
3694 | version "1.3.3"
3695 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5"
3696 | dependencies:
3697 | path-parse "^1.0.5"
3698 |
3699 | right-align@^0.1.1:
3700 | version "0.1.3"
3701 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef"
3702 | dependencies:
3703 | align-text "^0.1.1"
3704 |
3705 | rimraf@2, rimraf@^2.2.6, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.5.4, rimraf@^2.6.1:
3706 | version "2.6.1"
3707 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d"
3708 | dependencies:
3709 | glob "^7.0.5"
3710 |
3711 | ripemd160@^2.0.0, ripemd160@^2.0.1:
3712 | version "2.0.1"
3713 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7"
3714 | dependencies:
3715 | hash-base "^2.0.0"
3716 | inherits "^2.0.1"
3717 |
3718 | safe-buffer@^5.0.1:
3719 | version "5.0.1"
3720 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7"
3721 |
3722 | sass-graph@^2.1.1:
3723 | version "2.2.4"
3724 | resolved "https://registry.yarnpkg.com/sass-graph/-/sass-graph-2.2.4.tgz#13fbd63cd1caf0908b9fd93476ad43a51d1e0b49"
3725 | dependencies:
3726 | glob "^7.0.0"
3727 | lodash "^4.0.0"
3728 | scss-tokenizer "^0.2.3"
3729 | yargs "^7.0.0"
3730 |
3731 | sass-loader@^6.0.5:
3732 | version "6.0.5"
3733 | resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-6.0.5.tgz#a847910f36442aa56c5985879d54eb519e24a328"
3734 | dependencies:
3735 | async "^2.1.5"
3736 | clone-deep "^0.2.4"
3737 | loader-utils "^1.0.1"
3738 | lodash.tail "^4.1.1"
3739 | pify "^2.3.0"
3740 |
3741 | sax@0.5.x:
3742 | version "0.5.8"
3743 | resolved "https://registry.yarnpkg.com/sax/-/sax-0.5.8.tgz#d472db228eb331c2506b0e8c15524adb939d12c1"
3744 |
3745 | sax@~1.2.1:
3746 | version "1.2.2"
3747 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.2.tgz#fd8631a23bc7826bef5d871bdb87378c95647828"
3748 |
3749 | schema-utils@^0.3.0:
3750 | version "0.3.0"
3751 | resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.3.0.tgz#f5877222ce3e931edae039f17eb3716e7137f8cf"
3752 | dependencies:
3753 | ajv "^5.0.0"
3754 |
3755 | scss-tokenizer@^0.2.3:
3756 | version "0.2.3"
3757 | resolved "https://registry.yarnpkg.com/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz#8eb06db9a9723333824d3f5530641149847ce5d1"
3758 | dependencies:
3759 | js-base64 "^2.1.8"
3760 | source-map "^0.4.2"
3761 |
3762 | seek-bzip@^1.0.3:
3763 | version "1.0.5"
3764 | resolved "https://registry.yarnpkg.com/seek-bzip/-/seek-bzip-1.0.5.tgz#cfe917cb3d274bcffac792758af53173eb1fabdc"
3765 | dependencies:
3766 | commander "~2.8.1"
3767 |
3768 | semver-regex@^1.0.0:
3769 | version "1.0.0"
3770 | resolved "https://registry.yarnpkg.com/semver-regex/-/semver-regex-1.0.0.tgz#92a4969065f9c70c694753d55248fc68f8f652c9"
3771 |
3772 | semver-truncate@^1.0.0:
3773 | version "1.1.2"
3774 | resolved "https://registry.yarnpkg.com/semver-truncate/-/semver-truncate-1.1.2.tgz#57f41de69707a62709a7e0104ba2117109ea47e8"
3775 | dependencies:
3776 | semver "^5.3.0"
3777 |
3778 | "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@~5.3.0:
3779 | version "5.3.0"
3780 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"
3781 |
3782 | semver@^4.0.3:
3783 | version "4.3.6"
3784 | resolved "https://registry.yarnpkg.com/semver/-/semver-4.3.6.tgz#300bc6e0e86374f7ba61068b5b1ecd57fc6532da"
3785 |
3786 | set-blocking@^2.0.0, set-blocking@~2.0.0:
3787 | version "2.0.0"
3788 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
3789 |
3790 | set-immediate-shim@^1.0.0, set-immediate-shim@^1.0.1:
3791 | version "1.0.1"
3792 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61"
3793 |
3794 | setimmediate@^1.0.4:
3795 | version "1.0.5"
3796 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
3797 |
3798 | sha.js@^2.4.0, sha.js@^2.4.8:
3799 | version "2.4.8"
3800 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.8.tgz#37068c2c476b6baf402d14a49c67f597921f634f"
3801 | dependencies:
3802 | inherits "^2.0.1"
3803 |
3804 | shallow-clone@^0.1.2:
3805 | version "0.1.2"
3806 | resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-0.1.2.tgz#5909e874ba77106d73ac414cfec1ffca87d97060"
3807 | dependencies:
3808 | is-extendable "^0.1.1"
3809 | kind-of "^2.0.1"
3810 | lazy-cache "^0.2.3"
3811 | mixin-object "^2.0.1"
3812 |
3813 | sigmund@^1.0.1:
3814 | version "1.0.1"
3815 | resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590"
3816 |
3817 | signal-exit@^3.0.0:
3818 | version "3.0.2"
3819 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
3820 |
3821 | slash@^1.0.0:
3822 | version "1.0.0"
3823 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
3824 |
3825 | sntp@1.x.x:
3826 | version "1.0.9"
3827 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
3828 | dependencies:
3829 | hoek "2.x.x"
3830 |
3831 | sort-keys@^1.0.0:
3832 | version "1.1.2"
3833 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad"
3834 | dependencies:
3835 | is-plain-obj "^1.0.0"
3836 |
3837 | source-list-map@^0.1.7, source-list-map@~0.1.7:
3838 | version "0.1.8"
3839 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-0.1.8.tgz#c550b2ab5427f6b3f21f5afead88c4f5587b2106"
3840 |
3841 | source-list-map@^1.1.1:
3842 | version "1.1.2"
3843 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-1.1.2.tgz#9889019d1024cce55cdc069498337ef6186a11a1"
3844 |
3845 | source-map-support@^0.4.2:
3846 | version "0.4.15"
3847 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1"
3848 | dependencies:
3849 | source-map "^0.5.6"
3850 |
3851 | source-map@0.1.x:
3852 | version "0.1.43"
3853 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.43.tgz#c24bc146ca517c1471f5dacbe2571b2b7f9e3346"
3854 | dependencies:
3855 | amdefine ">=0.0.4"
3856 |
3857 | source-map@^0.4.2:
3858 | version "0.4.4"
3859 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b"
3860 | dependencies:
3861 | amdefine ">=0.0.4"
3862 |
3863 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.3:
3864 | version "0.5.6"
3865 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412"
3866 |
3867 | sparkles@^1.0.0:
3868 | version "1.0.0"
3869 | resolved "https://registry.yarnpkg.com/sparkles/-/sparkles-1.0.0.tgz#1acbbfb592436d10bbe8f785b7cc6f82815012c3"
3870 |
3871 | spdx-correct@~1.0.0:
3872 | version "1.0.2"
3873 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40"
3874 | dependencies:
3875 | spdx-license-ids "^1.0.2"
3876 |
3877 | spdx-expression-parse@~1.0.0:
3878 | version "1.0.4"
3879 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c"
3880 |
3881 | spdx-license-ids@^1.0.2:
3882 | version "1.2.2"
3883 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57"
3884 |
3885 | sprintf-js@~1.0.2:
3886 | version "1.0.3"
3887 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
3888 |
3889 | squeak@^1.0.0:
3890 | version "1.3.0"
3891 | resolved "https://registry.yarnpkg.com/squeak/-/squeak-1.3.0.tgz#33045037b64388b567674b84322a6521073916c3"
3892 | dependencies:
3893 | chalk "^1.0.0"
3894 | console-stream "^0.1.1"
3895 | lpad-align "^1.0.1"
3896 |
3897 | sshpk@^1.7.0:
3898 | version "1.13.0"
3899 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.0.tgz#ff2a3e4fd04497555fed97b39a0fd82fafb3a33c"
3900 | dependencies:
3901 | asn1 "~0.2.3"
3902 | assert-plus "^1.0.0"
3903 | dashdash "^1.12.0"
3904 | getpass "^0.1.1"
3905 | optionalDependencies:
3906 | bcrypt-pbkdf "^1.0.0"
3907 | ecc-jsbn "~0.1.1"
3908 | jodid25519 "^1.0.0"
3909 | jsbn "~0.1.0"
3910 | tweetnacl "~0.14.0"
3911 |
3912 | stat-mode@^0.2.0:
3913 | version "0.2.2"
3914 | resolved "https://registry.yarnpkg.com/stat-mode/-/stat-mode-0.2.2.tgz#e6c80b623123d7d80cf132ce538f346289072502"
3915 |
3916 | stdout-stream@^1.4.0:
3917 | version "1.4.0"
3918 | resolved "https://registry.yarnpkg.com/stdout-stream/-/stdout-stream-1.4.0.tgz#a2c7c8587e54d9427ea9edb3ac3f2cd522df378b"
3919 | dependencies:
3920 | readable-stream "^2.0.1"
3921 |
3922 | stream-browserify@^2.0.1:
3923 | version "2.0.1"
3924 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db"
3925 | dependencies:
3926 | inherits "~2.0.1"
3927 | readable-stream "^2.0.2"
3928 |
3929 | stream-combiner2@^1.1.1:
3930 | version "1.1.1"
3931 | resolved "https://registry.yarnpkg.com/stream-combiner2/-/stream-combiner2-1.1.1.tgz#fb4d8a1420ea362764e21ad4780397bebcb41cbe"
3932 | dependencies:
3933 | duplexer2 "~0.1.0"
3934 | readable-stream "^2.0.2"
3935 |
3936 | stream-http@^2.3.1:
3937 | version "2.7.1"
3938 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.1.tgz#546a51741ad5a6b07e9e31b0b10441a917df528a"
3939 | dependencies:
3940 | builtin-status-codes "^3.0.0"
3941 | inherits "^2.0.1"
3942 | readable-stream "^2.2.6"
3943 | to-arraybuffer "^1.0.0"
3944 | xtend "^4.0.0"
3945 |
3946 | stream-shift@^1.0.0:
3947 | version "1.0.0"
3948 | resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952"
3949 |
3950 | strict-uri-encode@^1.0.0:
3951 | version "1.1.0"
3952 | resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713"
3953 |
3954 | string-width@^1.0.1, string-width@^1.0.2:
3955 | version "1.0.2"
3956 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
3957 | dependencies:
3958 | code-point-at "^1.0.0"
3959 | is-fullwidth-code-point "^1.0.0"
3960 | strip-ansi "^3.0.0"
3961 |
3962 | string_decoder@^0.10.25, string_decoder@~0.10.x:
3963 | version "0.10.31"
3964 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
3965 |
3966 | string_decoder@~1.0.0:
3967 | version "1.0.1"
3968 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.1.tgz#62e200f039955a6810d8df0a33ffc0f013662d98"
3969 | dependencies:
3970 | safe-buffer "^5.0.1"
3971 |
3972 | stringstream@~0.0.4:
3973 | version "0.0.5"
3974 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878"
3975 |
3976 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
3977 | version "3.0.1"
3978 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
3979 | dependencies:
3980 | ansi-regex "^2.0.0"
3981 |
3982 | strip-bom-stream@^1.0.0:
3983 | version "1.0.0"
3984 | resolved "https://registry.yarnpkg.com/strip-bom-stream/-/strip-bom-stream-1.0.0.tgz#e7144398577d51a6bed0fa1994fa05f43fd988ee"
3985 | dependencies:
3986 | first-chunk-stream "^1.0.0"
3987 | strip-bom "^2.0.0"
3988 |
3989 | strip-bom@^2.0.0:
3990 | version "2.0.0"
3991 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e"
3992 | dependencies:
3993 | is-utf8 "^0.2.0"
3994 |
3995 | strip-dirs@^1.0.0:
3996 | version "1.1.1"
3997 | resolved "https://registry.yarnpkg.com/strip-dirs/-/strip-dirs-1.1.1.tgz#960bbd1287844f3975a4558aa103a8255e2456a0"
3998 | dependencies:
3999 | chalk "^1.0.0"
4000 | get-stdin "^4.0.1"
4001 | is-absolute "^0.1.5"
4002 | is-natural-number "^2.0.0"
4003 | minimist "^1.1.0"
4004 | sum-up "^1.0.1"
4005 |
4006 | strip-eof@^1.0.0:
4007 | version "1.0.0"
4008 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
4009 |
4010 | strip-indent@^1.0.1:
4011 | version "1.0.1"
4012 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2"
4013 | dependencies:
4014 | get-stdin "^4.0.1"
4015 |
4016 | strip-json-comments@~2.0.1:
4017 | version "2.0.1"
4018 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
4019 |
4020 | strip-outer@^1.0.0:
4021 | version "1.0.0"
4022 | resolved "https://registry.yarnpkg.com/strip-outer/-/strip-outer-1.0.0.tgz#aac0ba60d2e90c5d4f275fd8869fd9a2d310ffb8"
4023 | dependencies:
4024 | escape-string-regexp "^1.0.2"
4025 |
4026 | style-loader@^0.18.1:
4027 | version "0.18.1"
4028 | resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-0.18.1.tgz#6afca8953c842830e5e2dc84796309880a97f7e8"
4029 | dependencies:
4030 | loader-utils "^1.0.2"
4031 | schema-utils "^0.3.0"
4032 |
4033 | stylus-loader@^3.0.1:
4034 | version "3.0.1"
4035 | resolved "https://registry.yarnpkg.com/stylus-loader/-/stylus-loader-3.0.1.tgz#77f4b34fd030d25b2617bcf5513db5b0730c4089"
4036 | dependencies:
4037 | loader-utils "^1.0.2"
4038 | lodash.clonedeep "^4.5.0"
4039 | when "~3.6.x"
4040 |
4041 | stylus@^0.54.5:
4042 | version "0.54.5"
4043 | resolved "https://registry.yarnpkg.com/stylus/-/stylus-0.54.5.tgz#42b9560931ca7090ce8515a798ba9e6aa3d6dc79"
4044 | dependencies:
4045 | css-parse "1.7.x"
4046 | debug "*"
4047 | glob "7.0.x"
4048 | mkdirp "0.5.x"
4049 | sax "0.5.x"
4050 | source-map "0.1.x"
4051 |
4052 | sum-up@^1.0.1:
4053 | version "1.0.3"
4054 | resolved "https://registry.yarnpkg.com/sum-up/-/sum-up-1.0.3.tgz#1c661f667057f63bcb7875aa1438bc162525156e"
4055 | dependencies:
4056 | chalk "^1.0.0"
4057 |
4058 | supports-color@^2.0.0:
4059 | version "2.0.0"
4060 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
4061 |
4062 | supports-color@^3.1.0, supports-color@^3.2.3:
4063 | version "3.2.3"
4064 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6"
4065 | dependencies:
4066 | has-flag "^1.0.0"
4067 |
4068 | svgo@^0.7.0:
4069 | version "0.7.2"
4070 | resolved "https://registry.yarnpkg.com/svgo/-/svgo-0.7.2.tgz#9f5772413952135c6fefbf40afe6a4faa88b4bb5"
4071 | dependencies:
4072 | coa "~1.0.1"
4073 | colors "~1.1.2"
4074 | csso "~2.3.1"
4075 | js-yaml "~3.7.0"
4076 | mkdirp "~0.5.1"
4077 | sax "~1.2.1"
4078 | whet.extend "~0.9.9"
4079 |
4080 | tapable@^0.2.5, tapable@~0.2.5:
4081 | version "0.2.6"
4082 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.6.tgz#206be8e188860b514425375e6f1ae89bfb01fd8d"
4083 |
4084 | tar-pack@^3.4.0:
4085 | version "3.4.0"
4086 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984"
4087 | dependencies:
4088 | debug "^2.2.0"
4089 | fstream "^1.0.10"
4090 | fstream-ignore "^1.0.5"
4091 | once "^1.3.3"
4092 | readable-stream "^2.1.4"
4093 | rimraf "^2.5.1"
4094 | tar "^2.2.1"
4095 | uid-number "^0.0.6"
4096 |
4097 | tar-stream@^1.1.1:
4098 | version "1.5.4"
4099 | resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-1.5.4.tgz#36549cf04ed1aee9b2a30c0143252238daf94016"
4100 | dependencies:
4101 | bl "^1.0.0"
4102 | end-of-stream "^1.0.0"
4103 | readable-stream "^2.0.0"
4104 | xtend "^4.0.0"
4105 |
4106 | tar@^2.0.0, tar@^2.2.1:
4107 | version "2.2.1"
4108 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"
4109 | dependencies:
4110 | block-stream "*"
4111 | fstream "^1.0.2"
4112 | inherits "2"
4113 |
4114 | tempfile@^1.0.0:
4115 | version "1.1.1"
4116 | resolved "https://registry.yarnpkg.com/tempfile/-/tempfile-1.1.1.tgz#5bcc4eaecc4ab2c707d8bc11d99ccc9a2cb287f2"
4117 | dependencies:
4118 | os-tmpdir "^1.0.0"
4119 | uuid "^2.0.1"
4120 |
4121 | through2-filter@^2.0.0:
4122 | version "2.0.0"
4123 | resolved "https://registry.yarnpkg.com/through2-filter/-/through2-filter-2.0.0.tgz#60bc55a0dacb76085db1f9dae99ab43f83d622ec"
4124 | dependencies:
4125 | through2 "~2.0.0"
4126 | xtend "~4.0.0"
4127 |
4128 | through2@^0.6.0, through2@^0.6.1:
4129 | version "0.6.5"
4130 | resolved "https://registry.yarnpkg.com/through2/-/through2-0.6.5.tgz#41ab9c67b29d57209071410e1d7a7a968cd3ad48"
4131 | dependencies:
4132 | readable-stream ">=1.0.33-1 <1.1.0-0"
4133 | xtend ">=4.0.0 <4.1.0-0"
4134 |
4135 | through2@^2.0.0, through2@~2.0.0:
4136 | version "2.0.3"
4137 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be"
4138 | dependencies:
4139 | readable-stream "^2.1.5"
4140 | xtend "~4.0.1"
4141 |
4142 | time-stamp@^1.0.0:
4143 | version "1.1.0"
4144 | resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.1.0.tgz#764a5a11af50561921b133f3b44e618687e0f5c3"
4145 |
4146 | timed-out@^3.0.0:
4147 | version "3.1.3"
4148 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-3.1.3.tgz#95860bfcc5c76c277f8f8326fd0f5b2e20eba217"
4149 |
4150 | timers-browserify@^2.0.2:
4151 | version "2.0.2"
4152 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.2.tgz#ab4883cf597dcd50af211349a00fbca56ac86b86"
4153 | dependencies:
4154 | setimmediate "^1.0.4"
4155 |
4156 | to-absolute-glob@^0.1.1:
4157 | version "0.1.1"
4158 | resolved "https://registry.yarnpkg.com/to-absolute-glob/-/to-absolute-glob-0.1.1.tgz#1cdfa472a9ef50c239ee66999b662ca0eb39937f"
4159 | dependencies:
4160 | extend-shallow "^2.0.1"
4161 |
4162 | to-arraybuffer@^1.0.0:
4163 | version "1.0.1"
4164 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43"
4165 |
4166 | to-fast-properties@^1.0.1:
4167 | version "1.0.3"
4168 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47"
4169 |
4170 | tough-cookie@~2.3.0:
4171 | version "2.3.2"
4172 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a"
4173 | dependencies:
4174 | punycode "^1.4.1"
4175 |
4176 | trim-newlines@^1.0.0:
4177 | version "1.0.0"
4178 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613"
4179 |
4180 | trim-repeated@^1.0.0:
4181 | version "1.0.0"
4182 | resolved "https://registry.yarnpkg.com/trim-repeated/-/trim-repeated-1.0.0.tgz#e3646a2ea4e891312bf7eace6cfb05380bc01c21"
4183 | dependencies:
4184 | escape-string-regexp "^1.0.2"
4185 |
4186 | trim-right@^1.0.1:
4187 | version "1.0.1"
4188 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
4189 |
4190 | tty-browserify@0.0.0:
4191 | version "0.0.0"
4192 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6"
4193 |
4194 | tunnel-agent@^0.4.0:
4195 | version "0.4.3"
4196 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb"
4197 |
4198 | tunnel-agent@^0.6.0:
4199 | version "0.6.0"
4200 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
4201 | dependencies:
4202 | safe-buffer "^5.0.1"
4203 |
4204 | tweetnacl@^0.14.3, tweetnacl@~0.14.0:
4205 | version "0.14.5"
4206 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
4207 |
4208 | typedarray@^0.0.6:
4209 | version "0.0.6"
4210 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
4211 |
4212 | uglify-js@^2.8.27:
4213 | version "2.8.27"
4214 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.27.tgz#47787f912b0f242e5b984343be8e35e95f694c9c"
4215 | dependencies:
4216 | source-map "~0.5.1"
4217 | yargs "~3.10.0"
4218 | optionalDependencies:
4219 | uglify-to-browserify "~1.0.0"
4220 |
4221 | uglify-to-browserify@~1.0.0:
4222 | version "1.0.2"
4223 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7"
4224 |
4225 | uid-number@^0.0.6:
4226 | version "0.0.6"
4227 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81"
4228 |
4229 | uniq@^1.0.1:
4230 | version "1.0.1"
4231 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff"
4232 |
4233 | uniqid@^4.0.0:
4234 | version "4.1.1"
4235 | resolved "https://registry.yarnpkg.com/uniqid/-/uniqid-4.1.1.tgz#89220ddf6b751ae52b5f72484863528596bb84c1"
4236 | dependencies:
4237 | macaddress "^0.2.8"
4238 |
4239 | uniqs@^2.0.0:
4240 | version "2.0.0"
4241 | resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02"
4242 |
4243 | unique-stream@^2.0.2:
4244 | version "2.2.1"
4245 | resolved "https://registry.yarnpkg.com/unique-stream/-/unique-stream-2.2.1.tgz#5aa003cfbe94c5ff866c4e7d668bb1c4dbadb369"
4246 | dependencies:
4247 | json-stable-stringify "^1.0.0"
4248 | through2-filter "^2.0.0"
4249 |
4250 | unzip-response@^1.0.2:
4251 | version "1.0.2"
4252 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-1.0.2.tgz#b984f0877fc0a89c2c773cc1ef7b5b232b5b06fe"
4253 |
4254 | url-loader@^0.5.8:
4255 | version "0.5.8"
4256 | resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-0.5.8.tgz#b9183b1801e0f847718673673040bc9dc1c715c5"
4257 | dependencies:
4258 | loader-utils "^1.0.2"
4259 | mime "1.3.x"
4260 |
4261 | url-parse-lax@^1.0.0:
4262 | version "1.0.0"
4263 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73"
4264 | dependencies:
4265 | prepend-http "^1.0.1"
4266 |
4267 | url-regex@^3.0.0:
4268 | version "3.2.0"
4269 | resolved "https://registry.yarnpkg.com/url-regex/-/url-regex-3.2.0.tgz#dbad1e0c9e29e105dd0b1f09f6862f7fdb482724"
4270 | dependencies:
4271 | ip-regex "^1.0.1"
4272 |
4273 | url@^0.11.0:
4274 | version "0.11.0"
4275 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"
4276 | dependencies:
4277 | punycode "1.3.2"
4278 | querystring "0.2.0"
4279 |
4280 | util-deprecate@~1.0.1:
4281 | version "1.0.2"
4282 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
4283 |
4284 | util@0.10.3, util@^0.10.3:
4285 | version "0.10.3"
4286 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9"
4287 | dependencies:
4288 | inherits "2.0.1"
4289 |
4290 | uuid@^2.0.1:
4291 | version "2.0.3"
4292 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a"
4293 |
4294 | uuid@^3.0.0:
4295 | version "3.0.1"
4296 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1"
4297 |
4298 | vali-date@^1.0.0:
4299 | version "1.0.0"
4300 | resolved "https://registry.yarnpkg.com/vali-date/-/vali-date-1.0.0.tgz#1b904a59609fb328ef078138420934f6b86709a6"
4301 |
4302 | validate-npm-package-license@^3.0.1:
4303 | version "3.0.1"
4304 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc"
4305 | dependencies:
4306 | spdx-correct "~1.0.0"
4307 | spdx-expression-parse "~1.0.0"
4308 |
4309 | vendors@^1.0.0:
4310 | version "1.0.1"
4311 | resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.1.tgz#37ad73c8ee417fb3d580e785312307d274847f22"
4312 |
4313 | verror@1.3.6:
4314 | version "1.3.6"
4315 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c"
4316 | dependencies:
4317 | extsprintf "1.0.2"
4318 |
4319 | vinyl-assign@^1.0.1:
4320 | version "1.2.1"
4321 | resolved "https://registry.yarnpkg.com/vinyl-assign/-/vinyl-assign-1.2.1.tgz#4d198891b5515911d771a8cd9c5480a46a074a45"
4322 | dependencies:
4323 | object-assign "^4.0.1"
4324 | readable-stream "^2.0.0"
4325 |
4326 | vinyl-fs@^2.2.0:
4327 | version "2.4.4"
4328 | resolved "https://registry.yarnpkg.com/vinyl-fs/-/vinyl-fs-2.4.4.tgz#be6ff3270cb55dfd7d3063640de81f25d7532239"
4329 | dependencies:
4330 | duplexify "^3.2.0"
4331 | glob-stream "^5.3.2"
4332 | graceful-fs "^4.0.0"
4333 | gulp-sourcemaps "1.6.0"
4334 | is-valid-glob "^0.3.0"
4335 | lazystream "^1.0.0"
4336 | lodash.isequal "^4.0.0"
4337 | merge-stream "^1.0.0"
4338 | mkdirp "^0.5.0"
4339 | object-assign "^4.0.0"
4340 | readable-stream "^2.0.4"
4341 | strip-bom "^2.0.0"
4342 | strip-bom-stream "^1.0.0"
4343 | through2 "^2.0.0"
4344 | through2-filter "^2.0.0"
4345 | vali-date "^1.0.0"
4346 | vinyl "^1.0.0"
4347 |
4348 | vinyl@^0.4.3:
4349 | version "0.4.6"
4350 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.4.6.tgz#2f356c87a550a255461f36bbeb2a5ba8bf784847"
4351 | dependencies:
4352 | clone "^0.2.0"
4353 | clone-stats "^0.0.1"
4354 |
4355 | vinyl@^0.5.0:
4356 | version "0.5.3"
4357 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.5.3.tgz#b0455b38fc5e0cf30d4325132e461970c2091cde"
4358 | dependencies:
4359 | clone "^1.0.0"
4360 | clone-stats "^0.0.1"
4361 | replace-ext "0.0.1"
4362 |
4363 | vinyl@^1.0.0:
4364 | version "1.2.0"
4365 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-1.2.0.tgz#5c88036cf565e5df05558bfc911f8656df218884"
4366 | dependencies:
4367 | clone "^1.0.0"
4368 | clone-stats "^0.0.1"
4369 | replace-ext "0.0.1"
4370 |
4371 | vm-browserify@0.0.4:
4372 | version "0.0.4"
4373 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73"
4374 | dependencies:
4375 | indexof "0.0.1"
4376 |
4377 | vue-hot-reload-api@^2.1.0:
4378 | version "2.1.0"
4379 | resolved "https://registry.yarnpkg.com/vue-hot-reload-api/-/vue-hot-reload-api-2.1.0.tgz#9ca58a6e0df9078554ce1708688b6578754d86de"
4380 |
4381 | vue-loader@^12.1.0:
4382 | version "12.1.0"
4383 | resolved "https://registry.yarnpkg.com/vue-loader/-/vue-loader-12.1.0.tgz#f9ca958da1fd4e8c0598d90375c5419d10d35546"
4384 | dependencies:
4385 | consolidate "^0.14.0"
4386 | hash-sum "^1.0.2"
4387 | js-beautify "^1.6.3"
4388 | loader-utils "^1.1.0"
4389 | lru-cache "^4.0.1"
4390 | postcss "^5.0.21"
4391 | postcss-load-config "^1.1.0"
4392 | postcss-selector-parser "^2.0.0"
4393 | resolve "^1.3.3"
4394 | source-map "^0.5.6"
4395 | vue-hot-reload-api "^2.1.0"
4396 | vue-style-loader "^3.0.0"
4397 | vue-template-es2015-compiler "^1.2.2"
4398 |
4399 | vue-style-loader@^3.0.0, vue-style-loader@^3.0.1:
4400 | version "3.0.1"
4401 | resolved "https://registry.yarnpkg.com/vue-style-loader/-/vue-style-loader-3.0.1.tgz#c8b639bb2f24baf9d78274dc17e4f264c1deda08"
4402 | dependencies:
4403 | hash-sum "^1.0.2"
4404 | loader-utils "^1.0.2"
4405 |
4406 | vue-template-compiler@^2.3.3:
4407 | version "2.3.3"
4408 | resolved "https://registry.yarnpkg.com/vue-template-compiler/-/vue-template-compiler-2.3.3.tgz#b5bab9ec57309c906b82a78c81a02179dbc2f470"
4409 | dependencies:
4410 | de-indent "^1.0.2"
4411 | he "^1.1.0"
4412 |
4413 | vue-template-es2015-compiler@^1.2.2:
4414 | version "1.5.2"
4415 | resolved "https://registry.yarnpkg.com/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.5.2.tgz#a0a6c50c941d2a4abda963f2f42c337ac450ee95"
4416 |
4417 | vue@^2.3.3:
4418 | version "2.3.3"
4419 | resolved "https://registry.yarnpkg.com/vue/-/vue-2.3.3.tgz#d1eaa8fde5240735a4563e74f2c7fead9cbb064c"
4420 |
4421 | ware@^1.2.0:
4422 | version "1.3.0"
4423 | resolved "https://registry.yarnpkg.com/ware/-/ware-1.3.0.tgz#d1b14f39d2e2cb4ab8c4098f756fe4b164e473d4"
4424 | dependencies:
4425 | wrap-fn "^0.1.0"
4426 |
4427 | watchpack@^1.3.1:
4428 | version "1.3.1"
4429 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.3.1.tgz#7d8693907b28ce6013e7f3610aa2a1acf07dad87"
4430 | dependencies:
4431 | async "^2.1.2"
4432 | chokidar "^1.4.3"
4433 | graceful-fs "^4.1.2"
4434 |
4435 | webpack-merge@^4.1.0:
4436 | version "4.1.0"
4437 | resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-4.1.0.tgz#6ad72223b3e0b837e531e4597c199f909361511e"
4438 | dependencies:
4439 | lodash "^4.17.4"
4440 |
4441 | webpack-sources@^0.1.0:
4442 | version "0.1.5"
4443 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-0.1.5.tgz#aa1f3abf0f0d74db7111c40e500b84f966640750"
4444 | dependencies:
4445 | source-list-map "~0.1.7"
4446 | source-map "~0.5.3"
4447 |
4448 | webpack-sources@^0.2.3:
4449 | version "0.2.3"
4450 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-0.2.3.tgz#17c62bfaf13c707f9d02c479e0dcdde8380697fb"
4451 | dependencies:
4452 | source-list-map "^1.1.1"
4453 | source-map "~0.5.3"
4454 |
4455 | webpack@^2.6.0:
4456 | version "2.6.0"
4457 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-2.6.0.tgz#7e650a92816abff5db5f43316b0b8b19b13d76c1"
4458 | dependencies:
4459 | acorn "^5.0.0"
4460 | acorn-dynamic-import "^2.0.0"
4461 | ajv "^4.7.0"
4462 | ajv-keywords "^1.1.1"
4463 | async "^2.1.2"
4464 | enhanced-resolve "^3.0.0"
4465 | interpret "^1.0.0"
4466 | json-loader "^0.5.4"
4467 | json5 "^0.5.1"
4468 | loader-runner "^2.3.0"
4469 | loader-utils "^0.2.16"
4470 | memory-fs "~0.4.1"
4471 | mkdirp "~0.5.0"
4472 | node-libs-browser "^2.0.0"
4473 | source-map "^0.5.3"
4474 | supports-color "^3.1.0"
4475 | tapable "~0.2.5"
4476 | uglify-js "^2.8.27"
4477 | watchpack "^1.3.1"
4478 | webpack-sources "^0.2.3"
4479 | yargs "^6.0.0"
4480 |
4481 | when@~3.6.x:
4482 | version "3.6.4"
4483 | resolved "https://registry.yarnpkg.com/when/-/when-3.6.4.tgz#473b517ec159e2b85005497a13983f095412e34e"
4484 |
4485 | whet.extend@~0.9.9:
4486 | version "0.9.9"
4487 | resolved "https://registry.yarnpkg.com/whet.extend/-/whet.extend-0.9.9.tgz#f877d5bf648c97e5aa542fadc16d6a259b9c11a1"
4488 |
4489 | which-module@^1.0.0:
4490 | version "1.0.0"
4491 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f"
4492 |
4493 | which@1, which@^1.2.9:
4494 | version "1.2.14"
4495 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5"
4496 | dependencies:
4497 | isexe "^2.0.0"
4498 |
4499 | wide-align@^1.1.0:
4500 | version "1.1.2"
4501 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710"
4502 | dependencies:
4503 | string-width "^1.0.2"
4504 |
4505 | window-size@0.1.0:
4506 | version "0.1.0"
4507 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"
4508 |
4509 | wordwrap@0.0.2:
4510 | version "0.0.2"
4511 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f"
4512 |
4513 | wrap-ansi@^2.0.0:
4514 | version "2.1.0"
4515 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
4516 | dependencies:
4517 | string-width "^1.0.1"
4518 | strip-ansi "^3.0.1"
4519 |
4520 | wrap-fn@^0.1.0:
4521 | version "0.1.5"
4522 | resolved "https://registry.yarnpkg.com/wrap-fn/-/wrap-fn-0.1.5.tgz#f21b6e41016ff4a7e31720dbc63a09016bdf9845"
4523 | dependencies:
4524 | co "3.1.0"
4525 |
4526 | wrappy@1:
4527 | version "1.0.2"
4528 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
4529 |
4530 | "xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0, xtend@~4.0.0, xtend@~4.0.1:
4531 | version "4.0.1"
4532 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
4533 |
4534 | y18n@^3.2.1:
4535 | version "3.2.1"
4536 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41"
4537 |
4538 | yallist@^2.0.0:
4539 | version "2.1.2"
4540 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
4541 |
4542 | yargs-parser@^4.2.0:
4543 | version "4.2.1"
4544 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c"
4545 | dependencies:
4546 | camelcase "^3.0.0"
4547 |
4548 | yargs-parser@^5.0.0:
4549 | version "5.0.0"
4550 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a"
4551 | dependencies:
4552 | camelcase "^3.0.0"
4553 |
4554 | yargs@^6.0.0:
4555 | version "6.6.0"
4556 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208"
4557 | dependencies:
4558 | camelcase "^3.0.0"
4559 | cliui "^3.2.0"
4560 | decamelize "^1.1.1"
4561 | get-caller-file "^1.0.1"
4562 | os-locale "^1.4.0"
4563 | read-pkg-up "^1.0.1"
4564 | require-directory "^2.1.1"
4565 | require-main-filename "^1.0.1"
4566 | set-blocking "^2.0.0"
4567 | string-width "^1.0.2"
4568 | which-module "^1.0.0"
4569 | y18n "^3.2.1"
4570 | yargs-parser "^4.2.0"
4571 |
4572 | yargs@^7.0.0:
4573 | version "7.1.0"
4574 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8"
4575 | dependencies:
4576 | camelcase "^3.0.0"
4577 | cliui "^3.2.0"
4578 | decamelize "^1.1.1"
4579 | get-caller-file "^1.0.1"
4580 | os-locale "^1.4.0"
4581 | read-pkg-up "^1.0.1"
4582 | require-directory "^2.1.1"
4583 | require-main-filename "^1.0.1"
4584 | set-blocking "^2.0.0"
4585 | string-width "^1.0.2"
4586 | which-module "^1.0.0"
4587 | y18n "^3.2.1"
4588 | yargs-parser "^5.0.0"
4589 |
4590 | yargs@~3.10.0:
4591 | version "3.10.0"
4592 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"
4593 | dependencies:
4594 | camelcase "^1.0.2"
4595 | cliui "^2.1.0"
4596 | decamelize "^1.0.0"
4597 | window-size "0.1.0"
4598 |
4599 | yauzl@^2.2.1:
4600 | version "2.8.0"
4601 | resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.8.0.tgz#79450aff22b2a9c5a41ef54e02db907ccfbf9ee2"
4602 | dependencies:
4603 | buffer-crc32 "~0.2.3"
4604 | fd-slicer "~1.0.1"
4605 |
--------------------------------------------------------------------------------
/config/config.exs:
--------------------------------------------------------------------------------
1 | # This file is responsible for configuring your application
2 | # and its dependencies with the aid of the Mix.Config module.
3 | #
4 | # This configuration file is loaded before any dependency and
5 | # is restricted to this project.
6 | use Mix.Config
7 |
8 | # General application configuration
9 | config :phoenix_vue,
10 | ecto_repos: [PhoenixVue.Repo]
11 |
12 | # Configures the endpoint
13 | config :phoenix_vue, PhoenixVue.Web.Endpoint,
14 | url: [host: "localhost"],
15 | secret_key_base: "qNBfTGeOoQne7K2jR0TA86Ppa+vLJk5+7mOBTTqylAHd+/sftdJpjeLB7TMAvSdp",
16 | render_errors: [view: PhoenixVue.Web.ErrorView, accepts: ~w(html json)],
17 | pubsub: [name: PhoenixVue.PubSub,
18 | adapter: Phoenix.PubSub.PG2]
19 |
20 | # Configures Elixir's Logger
21 | config :logger, :console,
22 | format: "$time $metadata[$level] $message\n",
23 | metadata: [:request_id]
24 |
25 | # Import environment specific config. This must remain at the bottom
26 | # of this file so it overrides the configuration defined above.
27 | import_config "#{Mix.env}.exs"
28 |
--------------------------------------------------------------------------------
/config/dev.exs:
--------------------------------------------------------------------------------
1 | use Mix.Config
2 |
3 | # For development, we disable any cache and enable
4 | # debugging and code reloading.
5 | #
6 | # The watchers configuration can be used to run external
7 | # watchers to your application. For example, we use it
8 | # with brunch.io to recompile .js and .css sources.
9 | config :phoenix_vue, PhoenixVue.Web.Endpoint,
10 | http: [port: 4000],
11 | debug_errors: true,
12 | code_reloader: true,
13 | check_origin: false,
14 | watchers: [
15 | node: ["node_modules/.bin/webpack", "--colors", "--watch-stdin", "--progress",
16 | cd: Path.expand("../assets", __DIR__)]
17 | ]
18 |
19 | # ## SSL Support
20 | #
21 | # In order to use HTTPS in development, a self-signed
22 | # certificate can be generated by running the following
23 | # command from your terminal:
24 | #
25 | # openssl req -new -newkey rsa:4096 -days 365 -nodes -x509 -subj "/C=US/ST=Denial/L=Springfield/O=Dis/CN=www.example.com" -keyout priv/server.key -out priv/server.pem
26 | #
27 | # The `http:` config above can be replaced with:
28 | #
29 | # https: [port: 4000, keyfile: "priv/server.key", certfile: "priv/server.pem"],
30 | #
31 | # If desired, both `http:` and `https:` keys can be
32 | # configured to run both http and https servers on
33 | # different ports.
34 |
35 | # Watch static and templates for browser reloading.
36 | config :phoenix_vue, PhoenixVue.Web.Endpoint,
37 | live_reload: [
38 | patterns: [
39 | ~r{priv/static/.*(js|css|png|jpeg|jpg|gif|svg)$},
40 | ~r{priv/gettext/.*(po)$},
41 | ~r{lib/phoenix_vue/web/views/.*(ex)$},
42 | ~r{lib/phoenix_vue/web/templates/.*(eex)$}
43 | ]
44 | ]
45 |
46 | # Do not include metadata nor timestamps in development logs
47 | config :logger, :console, format: "[$level] $message\n"
48 |
49 | # Set a higher stacktrace during development. Avoid configuring such
50 | # in production as building large stacktraces may be expensive.
51 | config :phoenix, :stacktrace_depth, 20
52 |
53 | # Configure your database
54 | config :phoenix_vue, PhoenixVue.Repo,
55 | adapter: Ecto.Adapters.Postgres,
56 | username: "postgres",
57 | password: "postgres",
58 | database: "phoenix_vue_dev",
59 | hostname: "localhost",
60 | pool_size: 10
61 |
--------------------------------------------------------------------------------
/config/prod.exs:
--------------------------------------------------------------------------------
1 | use Mix.Config
2 |
3 | # For production, we often load configuration from external
4 | # sources, such as your system environment. For this reason,
5 | # you won't find the :http configuration below, but set inside
6 | # PhoenixVue.Web.Endpoint.load_from_system_env/1 dynamically.
7 | # Any dynamic configuration should be moved to such function.
8 | #
9 | # Don't forget to configure the url host to something meaningful,
10 | # Phoenix uses this information when generating URLs.
11 | #
12 | # Finally, we also include the path to a cache manifest
13 | # containing the digested version of static files. This
14 | # manifest is generated by the mix phoenix.digest task
15 | # which you typically run after static files are built.
16 | config :phoenix_vue, PhoenixVue.Web.Endpoint,
17 | on_init: {PhoenixVue.Web.Endpoint, :load_from_system_env, []},
18 | url: [host: "example.com", port: 80],
19 | cache_static_manifest: "priv/static/cache_manifest.json"
20 |
21 | # Do not print debug messages in production
22 | config :logger, level: :info
23 |
24 | # ## SSL Support
25 | #
26 | # To get SSL working, you will need to add the `https` key
27 | # to the previous section and set your `:url` port to 443:
28 | #
29 | # config :phoenix_vue, PhoenixVue.Web.Endpoint,
30 | # ...
31 | # url: [host: "example.com", port: 443],
32 | # https: [:inet6,
33 | # port: 443,
34 | # keyfile: System.get_env("SOME_APP_SSL_KEY_PATH"),
35 | # certfile: System.get_env("SOME_APP_SSL_CERT_PATH")]
36 | #
37 | # Where those two env variables return an absolute path to
38 | # the key and cert in disk or a relative path inside priv,
39 | # for example "priv/ssl/server.key".
40 | #
41 | # We also recommend setting `force_ssl`, ensuring no data is
42 | # ever sent via http, always redirecting to https:
43 | #
44 | # config :phoenix_vue, PhoenixVue.Web.Endpoint,
45 | # force_ssl: [hsts: true]
46 | #
47 | # Check `Plug.SSL` for all available options in `force_ssl`.
48 |
49 | # ## Using releases
50 | #
51 | # If you are doing OTP releases, you need to instruct Phoenix
52 | # to start the server for all endpoints:
53 | #
54 | # config :phoenix, :serve_endpoints, true
55 | #
56 | # Alternatively, you can configure exactly which server to
57 | # start per endpoint:
58 | #
59 | # config :phoenix_vue, PhoenixVue.Web.Endpoint, server: true
60 | #
61 |
62 | # Finally import the config/prod.secret.exs
63 | # which should be versioned separately.
64 | import_config "prod.secret.exs"
65 |
--------------------------------------------------------------------------------
/config/test.exs:
--------------------------------------------------------------------------------
1 | use Mix.Config
2 |
3 | # We don't run a server during test. If one is required,
4 | # you can enable the server option below.
5 | config :phoenix_vue, PhoenixVue.Web.Endpoint,
6 | http: [port: 4001],
7 | server: false
8 |
9 | # Print only warnings and errors during test
10 | config :logger, level: :warn
11 |
12 | # Configure your database
13 | config :phoenix_vue, PhoenixVue.Repo,
14 | adapter: Ecto.Adapters.Postgres,
15 | username: "postgres",
16 | password: "postgres",
17 | database: "phoenix_vue_test",
18 | hostname: "localhost",
19 | pool: Ecto.Adapters.SQL.Sandbox
20 |
--------------------------------------------------------------------------------
/lib/phoenix_vue/application.ex:
--------------------------------------------------------------------------------
1 | defmodule PhoenixVue.Application do
2 | use Application
3 |
4 | # See http://elixir-lang.org/docs/stable/elixir/Application.html
5 | # for more information on OTP Applications
6 | def start(_type, _args) do
7 | import Supervisor.Spec
8 |
9 | # Define workers and child supervisors to be supervised
10 | children = [
11 | # Start the Ecto repository
12 | supervisor(PhoenixVue.Repo, []),
13 | # Start the endpoint when the application starts
14 | supervisor(PhoenixVue.Web.Endpoint, []),
15 | # Start your own worker by calling: PhoenixVue.Worker.start_link(arg1, arg2, arg3)
16 | # worker(PhoenixVue.Worker, [arg1, arg2, arg3]),
17 | ]
18 |
19 | # See http://elixir-lang.org/docs/stable/elixir/Supervisor.html
20 | # for other strategies and supported options
21 | opts = [strategy: :one_for_one, name: PhoenixVue.Supervisor]
22 | Supervisor.start_link(children, opts)
23 | end
24 | end
25 |
--------------------------------------------------------------------------------
/lib/phoenix_vue/repo.ex:
--------------------------------------------------------------------------------
1 | defmodule PhoenixVue.Repo do
2 | use Ecto.Repo, otp_app: :phoenix_vue
3 |
4 | @doc """
5 | Dynamically loads the repository url from the
6 | DATABASE_URL environment variable.
7 | """
8 | def init(_, opts) do
9 | {:ok, Keyword.put(opts, :url, System.get_env("DATABASE_URL"))}
10 | end
11 | end
12 |
--------------------------------------------------------------------------------
/lib/phoenix_vue/web/channels/user_socket.ex:
--------------------------------------------------------------------------------
1 | defmodule PhoenixVue.Web.UserSocket do
2 | use Phoenix.Socket
3 |
4 | ## Channels
5 | # channel "room:*", PhoenixVue.Web.RoomChannel
6 |
7 | ## Transports
8 | transport :websocket, Phoenix.Transports.WebSocket
9 | # transport :longpoll, Phoenix.Transports.LongPoll
10 |
11 | # Socket params are passed from the client and can
12 | # be used to verify and authenticate a user. After
13 | # verification, you can put default assigns into
14 | # the socket that will be set for all channels, ie
15 | #
16 | # {:ok, assign(socket, :user_id, verified_user_id)}
17 | #
18 | # To deny connection, return `:error`.
19 | #
20 | # See `Phoenix.Token` documentation for examples in
21 | # performing token verification on connect.
22 | def connect(_params, socket) do
23 | {:ok, socket}
24 | end
25 |
26 | # Socket id's are topics that allow you to identify all sockets for a given user:
27 | #
28 | # def id(socket), do: "user_socket:#{socket.assigns.user_id}"
29 | #
30 | # Would allow you to broadcast a "disconnect" event and terminate
31 | # all active sockets and channels for a given user:
32 | #
33 | # PhoenixVue.Web.Endpoint.broadcast("user_socket:#{user.id}", "disconnect", %{})
34 | #
35 | # Returning `nil` makes this socket anonymous.
36 | def id(_socket), do: nil
37 | end
38 |
--------------------------------------------------------------------------------
/lib/phoenix_vue/web/controllers/page_controller.ex:
--------------------------------------------------------------------------------
1 | defmodule PhoenixVue.Web.PageController do
2 | use PhoenixVue.Web, :controller
3 |
4 | def index(conn, _params) do
5 | render conn, "index.html"
6 | end
7 | end
8 |
--------------------------------------------------------------------------------
/lib/phoenix_vue/web/endpoint.ex:
--------------------------------------------------------------------------------
1 | defmodule PhoenixVue.Web.Endpoint do
2 | use Phoenix.Endpoint, otp_app: :phoenix_vue
3 |
4 | socket "/socket", PhoenixVue.Web.UserSocket
5 |
6 | # Serve at "/" the static files from "priv/static" directory.
7 | #
8 | # You should set gzip to true if you are running phoenix.digest
9 | # when deploying your static files in production.
10 | plug Plug.Static,
11 | at: "/", from: :phoenix_vue, gzip: false,
12 | only: ~w(css fonts images js favicon.ico robots.txt)
13 |
14 | # Code reloading can be explicitly enabled under the
15 | # :code_reloader configuration of your endpoint.
16 | if code_reloading? do
17 | socket "/phoenix/live_reload/socket", Phoenix.LiveReloader.Socket
18 | plug Phoenix.LiveReloader
19 | plug Phoenix.CodeReloader
20 | end
21 |
22 | plug Plug.RequestId
23 | plug Plug.Logger
24 |
25 | plug Plug.Parsers,
26 | parsers: [:urlencoded, :multipart, :json],
27 | pass: ["*/*"],
28 | json_decoder: Poison
29 |
30 | plug Plug.MethodOverride
31 | plug Plug.Head
32 |
33 | # The session will be stored in the cookie and signed,
34 | # this means its contents can be read but not tampered with.
35 | # Set :encryption_salt if you would also like to encrypt it.
36 | plug Plug.Session,
37 | store: :cookie,
38 | key: "_phoenix_vue_key",
39 | signing_salt: "e60zg7eF"
40 |
41 | plug PhoenixVue.Web.Router
42 |
43 | @doc """
44 | Dynamically loads configuration from the system environment
45 | on startup.
46 |
47 | It receives the endpoint configuration from the config files
48 | and must return the updated configuration.
49 | """
50 | def load_from_system_env(config) do
51 | port = System.get_env("PORT") || raise "expected the PORT environment variable to be set"
52 | {:ok, Keyword.put(config, :http, [:inet6, port: port])}
53 | end
54 | end
55 |
--------------------------------------------------------------------------------
/lib/phoenix_vue/web/gettext.ex:
--------------------------------------------------------------------------------
1 | defmodule PhoenixVue.Web.Gettext do
2 | @moduledoc """
3 | A module providing Internationalization with a gettext-based API.
4 |
5 | By using [Gettext](https://hexdocs.pm/gettext),
6 | your module gains a set of macros for translations, for example:
7 |
8 | import PhoenixVue.Web.Gettext
9 |
10 | # Simple translation
11 | gettext "Here is the string to translate"
12 |
13 | # Plural translation
14 | ngettext "Here is the string to translate",
15 | "Here are the strings to translate",
16 | 3
17 |
18 | # Domain-based translation
19 | dgettext "errors", "Here is the error message to translate"
20 |
21 | See the [Gettext Docs](https://hexdocs.pm/gettext) for detailed usage.
22 | """
23 | use Gettext, otp_app: :phoenix_vue
24 | end
25 |
--------------------------------------------------------------------------------
/lib/phoenix_vue/web/router.ex:
--------------------------------------------------------------------------------
1 | defmodule PhoenixVue.Web.Router do
2 | use PhoenixVue.Web, :router
3 |
4 | pipeline :browser do
5 | plug :accepts, ["html"]
6 | plug :fetch_session
7 | plug :fetch_flash
8 | plug :protect_from_forgery
9 | plug :put_secure_browser_headers
10 | end
11 |
12 | pipeline :api do
13 | plug :accepts, ["json"]
14 | end
15 |
16 | scope "/", PhoenixVue.Web do
17 | pipe_through :browser # Use the default browser stack
18 |
19 | get "/", PageController, :index
20 | end
21 |
22 | # Other scopes may use custom stacks.
23 | # scope "/api", PhoenixVue.Web do
24 | # pipe_through :api
25 | # end
26 | end
27 |
--------------------------------------------------------------------------------
/lib/phoenix_vue/web/templates/layout/app.html.eex:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 | Hello PhoenixVue!
11 | ">
12 |
13 |
14 |
15 |
16 | <%= render @view_module, @view_template, assigns %>
17 |
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/lib/phoenix_vue/web/templates/page/index.html.eex:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/lib/phoenix_vue/web/views/error_helpers.ex:
--------------------------------------------------------------------------------
1 | defmodule PhoenixVue.Web.ErrorHelpers do
2 | @moduledoc """
3 | Conveniences for translating and building error messages.
4 | """
5 |
6 | use Phoenix.HTML
7 |
8 | @doc """
9 | Generates tag for inlined form input errors.
10 | """
11 | def error_tag(form, field) do
12 | Enum.map(Keyword.get_values(form.errors, field), fn (error) ->
13 | content_tag :span, translate_error(error), class: "help-block"
14 | end)
15 | end
16 |
17 | @doc """
18 | Translates an error message using gettext.
19 | """
20 | def translate_error({msg, opts}) do
21 | # Because error messages were defined within Ecto, we must
22 | # call the Gettext module passing our Gettext backend. We
23 | # also use the "errors" domain as translations are placed
24 | # in the errors.po file.
25 | # Ecto will pass the :count keyword if the error message is
26 | # meant to be pluralized.
27 | # On your own code and templates, depending on whether you
28 | # need the message to be pluralized or not, this could be
29 | # written simply as:
30 | #
31 | # dngettext "errors", "1 file", "%{count} files", count
32 | # dgettext "errors", "is invalid"
33 | #
34 | if count = opts[:count] do
35 | Gettext.dngettext(PhoenixVue.Web.Gettext, "errors", msg, msg, count, opts)
36 | else
37 | Gettext.dgettext(PhoenixVue.Web.Gettext, "errors", msg, opts)
38 | end
39 | end
40 | end
41 |
--------------------------------------------------------------------------------
/lib/phoenix_vue/web/views/error_view.ex:
--------------------------------------------------------------------------------
1 | defmodule PhoenixVue.Web.ErrorView do
2 | use PhoenixVue.Web, :view
3 |
4 | def render("404.html", _assigns) do
5 | "Page not found"
6 | end
7 |
8 | def render("500.html", _assigns) do
9 | "Internal server error"
10 | end
11 |
12 | # In case no render clause matches or no
13 | # template is found, let's render it as 500
14 | def template_not_found(_template, assigns) do
15 | render "500.html", assigns
16 | end
17 | end
18 |
--------------------------------------------------------------------------------
/lib/phoenix_vue/web/views/layout_view.ex:
--------------------------------------------------------------------------------
1 | defmodule PhoenixVue.Web.LayoutView do
2 | use PhoenixVue.Web, :view
3 | end
4 |
--------------------------------------------------------------------------------
/lib/phoenix_vue/web/views/page_view.ex:
--------------------------------------------------------------------------------
1 | defmodule PhoenixVue.Web.PageView do
2 | use PhoenixVue.Web, :view
3 | end
4 |
--------------------------------------------------------------------------------
/lib/phoenix_vue/web/web.ex:
--------------------------------------------------------------------------------
1 | defmodule PhoenixVue.Web do
2 | @moduledoc """
3 | A module that keeps using definitions for controllers,
4 | views and so on.
5 |
6 | This can be used in your application as:
7 |
8 | use PhoenixVue.Web, :controller
9 | use PhoenixVue.Web, :view
10 |
11 | The definitions below will be executed for every view,
12 | controller, etc, so keep them short and clean, focused
13 | on imports, uses and aliases.
14 |
15 | Do NOT define functions inside the quoted expressions
16 | below.
17 | """
18 |
19 | def controller do
20 | quote do
21 | use Phoenix.Controller, namespace: PhoenixVue.Web
22 | import Plug.Conn
23 | import PhoenixVue.Web.Router.Helpers
24 | import PhoenixVue.Web.Gettext
25 | end
26 | end
27 |
28 | def view do
29 | quote do
30 | use Phoenix.View, root: "lib/phoenix_vue/web/templates",
31 | namespace: PhoenixVue.Web
32 |
33 | # Import convenience functions from controllers
34 | import Phoenix.Controller, only: [get_csrf_token: 0, get_flash: 2, view_module: 1]
35 |
36 | # Use all HTML functionality (forms, tags, etc)
37 | use Phoenix.HTML
38 |
39 | import PhoenixVue.Web.Router.Helpers
40 | import PhoenixVue.Web.ErrorHelpers
41 | import PhoenixVue.Web.Gettext
42 | end
43 | end
44 |
45 | def router do
46 | quote do
47 | use Phoenix.Router
48 | import Plug.Conn
49 | import Phoenix.Controller
50 | end
51 | end
52 |
53 | def channel do
54 | quote do
55 | use Phoenix.Channel
56 | import PhoenixVue.Web.Gettext
57 | end
58 | end
59 |
60 | @doc """
61 | When used, dispatch to the appropriate controller/view/etc.
62 | """
63 | defmacro __using__(which) when is_atom(which) do
64 | apply(__MODULE__, which, [])
65 | end
66 | end
67 |
--------------------------------------------------------------------------------
/mix.exs:
--------------------------------------------------------------------------------
1 | defmodule PhoenixVue.Mixfile do
2 | use Mix.Project
3 |
4 | def project do
5 | [app: :phoenix_vue,
6 | version: "0.0.1",
7 | elixir: "~> 1.4",
8 | elixirc_paths: elixirc_paths(Mix.env),
9 | compilers: [:phoenix, :gettext] ++ Mix.compilers,
10 | start_permanent: Mix.env == :prod,
11 | aliases: aliases(),
12 | deps: deps()]
13 | end
14 |
15 | # Configuration for the OTP application.
16 | #
17 | # Type `mix help compile.app` for more information.
18 | def application do
19 | [mod: {PhoenixVue.Application, []},
20 | extra_applications: [:logger, :runtime_tools]]
21 | end
22 |
23 | # Specifies which paths to compile per environment.
24 | defp elixirc_paths(:test), do: ["lib", "test/support"]
25 | defp elixirc_paths(_), do: ["lib"]
26 |
27 | # Specifies your project dependencies.
28 | #
29 | # Type `mix help deps` for examples and options.
30 | defp deps do
31 | [{:phoenix, "~> 1.3.0-rc"},
32 | {:phoenix_pubsub, "~> 1.0"},
33 | {:phoenix_ecto, "~> 3.2"},
34 | {:postgrex, ">= 0.0.0"},
35 | {:phoenix_html, "~> 2.6"},
36 | {:phoenix_live_reload, "~> 1.0", only: :dev},
37 | {:gettext, "~> 0.11"},
38 | {:cowboy, "~> 1.0"}]
39 | end
40 |
41 | # Aliases are shortcuts or tasks specific to the current project.
42 | # For example, to create, migrate and run the seeds file at once:
43 | #
44 | # $ mix ecto.setup
45 | #
46 | # See the documentation for `Mix` for more info on aliases.
47 | defp aliases do
48 | ["ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
49 | "ecto.reset": ["ecto.drop", "ecto.setup"],
50 | "test": ["ecto.create --quiet", "ecto.migrate", "test"]]
51 | end
52 | end
53 |
--------------------------------------------------------------------------------
/mix.lock:
--------------------------------------------------------------------------------
1 | %{"connection": {:hex, :connection, "1.0.4", "a1cae72211f0eef17705aaededacac3eb30e6625b04a6117c1b2db6ace7d5976", [:mix], [], "hexpm"},
2 | "cowboy": {:hex, :cowboy, "1.1.2", "61ac29ea970389a88eca5a65601460162d370a70018afe6f949a29dca91f3bb0", [:rebar3], [{:cowlib, "~> 1.0.2", [hex: :cowlib, repo: "hexpm", optional: false]}, {:ranch, "~> 1.3.2", [hex: :ranch, repo: "hexpm", optional: false]}], "hexpm"},
3 | "cowlib": {:hex, :cowlib, "1.0.2", "9d769a1d062c9c3ac753096f868ca121e2730b9a377de23dec0f7e08b1df84ee", [:make], [], "hexpm"},
4 | "db_connection": {:hex, :db_connection, "1.1.2", "2865c2a4bae0714e2213a0ce60a1b12d76a6efba0c51fbda59c9ab8d1accc7a8", [:mix], [{:connection, "~> 1.0.2", [hex: :connection, repo: "hexpm", optional: false]}, {:poolboy, "~> 1.5", [hex: :poolboy, repo: "hexpm", optional: true]}, {:sbroker, "~> 1.0", [hex: :sbroker, repo: "hexpm", optional: true]}], "hexpm"},
5 | "decimal": {:hex, :decimal, "1.3.1", "157b3cedb2bfcb5359372a7766dd7a41091ad34578296e951f58a946fcab49c6", [:mix], [], "hexpm"},
6 | "ecto": {:hex, :ecto, "2.1.4", "d1ba932813ec0e0d9db481ef2c17777f1cefb11fc90fa7c142ff354972dfba7e", [:mix], [{:db_connection, "~> 1.1", [hex: :db_connection, repo: "hexpm", optional: true]}, {:decimal, "~> 1.2", [hex: :decimal, repo: "hexpm", optional: false]}, {:mariaex, "~> 0.8.0", [hex: :mariaex, repo: "hexpm", optional: true]}, {:poison, "~> 2.2 or ~> 3.0", [hex: :poison, repo: "hexpm", optional: true]}, {:poolboy, "~> 1.5", [hex: :poolboy, repo: "hexpm", optional: false]}, {:postgrex, "~> 0.13.0", [hex: :postgrex, repo: "hexpm", optional: true]}, {:sbroker, "~> 1.0", [hex: :sbroker, repo: "hexpm", optional: true]}], "hexpm"},
7 | "fs": {:hex, :fs, "0.9.2", "ed17036c26c3f70ac49781ed9220a50c36775c6ca2cf8182d123b6566e49ec59", [:rebar], [], "hexpm"},
8 | "gettext": {:hex, :gettext, "0.13.1", "5e0daf4e7636d771c4c71ad5f3f53ba09a9ae5c250e1ab9c42ba9edccc476263", [:mix], [], "hexpm"},
9 | "mime": {:hex, :mime, "1.1.0", "01c1d6f4083d8aa5c7b8c246ade95139620ef8effb009edde934e0ec3b28090a", [:mix], [], "hexpm"},
10 | "phoenix": {:hex, :phoenix, "1.3.0-rc.2", "53104ada25ba85fe160268c0dc826fe038bc074293730b4522fb9aca28d8aa13", [:mix], [{:cowboy, "~> 1.0", [hex: :cowboy, repo: "hexpm", optional: true]}, {:phoenix_pubsub, "~> 1.0", [hex: :phoenix_pubsub, repo: "hexpm", optional: false]}, {:plug, "~> 1.3.2 or ~> 1.4", [hex: :plug, repo: "hexpm", optional: false]}, {:poison, "~> 2.2 or ~> 3.0", [hex: :poison, repo: "hexpm", optional: false]}], "hexpm"},
11 | "phoenix_ecto": {:hex, :phoenix_ecto, "3.2.3", "450c749876ff1de4a78fdb305a142a76817c77a1cd79aeca29e5fc9a6c630b26", [:mix], [{:ecto, "~> 2.1", [hex: :ecto, repo: "hexpm", optional: false]}, {:phoenix_html, "~> 2.9", [hex: :phoenix_html, repo: "hexpm", optional: true]}, {:plug, "~> 1.0", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm"},
12 | "phoenix_html": {:hex, :phoenix_html, "2.9.3", "1b5a2122cbf743aa242f54dced8a4f1cc778b8bd304f4b4c0043a6250c58e258", [:mix], [{:plug, "~> 1.0", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm"},
13 | "phoenix_live_reload": {:hex, :phoenix_live_reload, "1.0.8", "4333f9c74190f485a74866beff2f9304f069d53f047f5fbb0fb8d1ee4c495f73", [:mix], [{:fs, "~> 0.9.1", [hex: :fs, repo: "hexpm", optional: false]}, {:phoenix, "~> 1.0 or ~> 1.2-rc", [hex: :phoenix, repo: "hexpm", optional: false]}], "hexpm"},
14 | "phoenix_pubsub": {:hex, :phoenix_pubsub, "1.0.1", "c10ddf6237007c804bf2b8f3c4d5b99009b42eca3a0dfac04ea2d8001186056a", [:mix], [], "hexpm"},
15 | "plug": {:hex, :plug, "1.3.5", "7503bfcd7091df2a9761ef8cecea666d1f2cc454cbbaf0afa0b6e259203b7031", [:mix], [{:cowboy, "~> 1.0.1 or ~> 1.1", [hex: :cowboy, repo: "hexpm", optional: true]}, {:mime, "~> 1.0", [hex: :mime, repo: "hexpm", optional: false]}], "hexpm"},
16 | "poison": {:hex, :poison, "3.1.0", "d9eb636610e096f86f25d9a46f35a9facac35609a7591b3be3326e99a0484665", [:mix], [], "hexpm"},
17 | "poolboy": {:hex, :poolboy, "1.5.1", "6b46163901cfd0a1b43d692657ed9d7e599853b3b21b95ae5ae0a777cf9b6ca8", [:rebar], [], "hexpm"},
18 | "postgrex": {:hex, :postgrex, "0.13.2", "2b88168fc6a5456a27bfb54ccf0ba4025d274841a7a3af5e5deb1b755d95154e", [:mix], [{:connection, "~> 1.0", [hex: :connection, repo: "hexpm", optional: false]}, {:db_connection, "~> 1.1", [hex: :db_connection, repo: "hexpm", optional: false]}, {:decimal, "~> 1.0", [hex: :decimal, repo: "hexpm", optional: false]}], "hexpm"},
19 | "ranch": {:hex, :ranch, "1.3.2", "e4965a144dc9fbe70e5c077c65e73c57165416a901bd02ea899cfd95aa890986", [:rebar3], [], "hexpm"}}
20 |
--------------------------------------------------------------------------------
/priv/gettext/en/LC_MESSAGES/errors.po:
--------------------------------------------------------------------------------
1 | ## `msgid`s in this file come from POT (.pot) files.
2 | ##
3 | ## Do not add, change, or remove `msgid`s manually here as
4 | ## they're tied to the ones in the corresponding POT file
5 | ## (with the same domain).
6 | ##
7 | ## Use `mix gettext.extract --merge` or `mix gettext.merge`
8 | ## to merge POT files into PO files.
9 | msgid ""
10 | msgstr ""
11 | "Language: en\n"
12 |
13 | ## From Ecto.Changeset.cast/4
14 | msgid "can't be blank"
15 | msgstr ""
16 |
17 | ## From Ecto.Changeset.unique_constraint/3
18 | msgid "has already been taken"
19 | msgstr ""
20 |
21 | ## From Ecto.Changeset.put_change/3
22 | msgid "is invalid"
23 | msgstr ""
24 |
25 | ## From Ecto.Changeset.validate_acceptance/3
26 | msgid "must be accepted"
27 | msgstr ""
28 |
29 | ## From Ecto.Changeset.validate_format/3
30 | msgid "has invalid format"
31 | msgstr ""
32 |
33 | ## From Ecto.Changeset.validate_subset/3
34 | msgid "has an invalid entry"
35 | msgstr ""
36 |
37 | ## From Ecto.Changeset.validate_exclusion/3
38 | msgid "is reserved"
39 | msgstr ""
40 |
41 | ## From Ecto.Changeset.validate_confirmation/3
42 | msgid "does not match confirmation"
43 | msgstr ""
44 |
45 | ## From Ecto.Changeset.no_assoc_constraint/3
46 | msgid "is still associated with this entry"
47 | msgstr ""
48 |
49 | msgid "are still associated with this entry"
50 | msgstr ""
51 |
52 | ## From Ecto.Changeset.validate_length/3
53 | msgid "should be %{count} character(s)"
54 | msgid_plural "should be %{count} character(s)"
55 | msgstr[0] ""
56 | msgstr[1] ""
57 |
58 | msgid "should have %{count} item(s)"
59 | msgid_plural "should have %{count} item(s)"
60 | msgstr[0] ""
61 | msgstr[1] ""
62 |
63 | msgid "should be at least %{count} character(s)"
64 | msgid_plural "should be at least %{count} character(s)"
65 | msgstr[0] ""
66 | msgstr[1] ""
67 |
68 | msgid "should have at least %{count} item(s)"
69 | msgid_plural "should have at least %{count} item(s)"
70 | msgstr[0] ""
71 | msgstr[1] ""
72 |
73 | msgid "should be at most %{count} character(s)"
74 | msgid_plural "should be at most %{count} character(s)"
75 | msgstr[0] ""
76 | msgstr[1] ""
77 |
78 | msgid "should have at most %{count} item(s)"
79 | msgid_plural "should have at most %{count} item(s)"
80 | msgstr[0] ""
81 | msgstr[1] ""
82 |
83 | ## From Ecto.Changeset.validate_number/3
84 | msgid "must be less than %{number}"
85 | msgstr ""
86 |
87 | msgid "must be greater than %{number}"
88 | msgstr ""
89 |
90 | msgid "must be less than or equal to %{number}"
91 | msgstr ""
92 |
93 | msgid "must be greater than or equal to %{number}"
94 | msgstr ""
95 |
96 | msgid "must be equal to %{number}"
97 | msgstr ""
98 |
--------------------------------------------------------------------------------
/priv/gettext/errors.pot:
--------------------------------------------------------------------------------
1 | ## This file is a PO Template file.
2 | ##
3 | ## `msgid`s here are often extracted from source code.
4 | ## Add new translations manually only if they're dynamic
5 | ## translations that can't be statically extracted.
6 | ##
7 | ## Run `mix gettext.extract` to bring this file up to
8 | ## date. Leave `msgstr`s empty as changing them here as no
9 | ## effect: edit them in PO (`.po`) files instead.
10 |
11 | ## From Ecto.Changeset.cast/4
12 | msgid "can't be blank"
13 | msgstr ""
14 |
15 | ## From Ecto.Changeset.unique_constraint/3
16 | msgid "has already been taken"
17 | msgstr ""
18 |
19 | ## From Ecto.Changeset.put_change/3
20 | msgid "is invalid"
21 | msgstr ""
22 |
23 | ## From Ecto.Changeset.validate_acceptance/3
24 | msgid "must be accepted"
25 | msgstr ""
26 |
27 | ## From Ecto.Changeset.validate_format/3
28 | msgid "has invalid format"
29 | msgstr ""
30 |
31 | ## From Ecto.Changeset.validate_subset/3
32 | msgid "has an invalid entry"
33 | msgstr ""
34 |
35 | ## From Ecto.Changeset.validate_exclusion/3
36 | msgid "is reserved"
37 | msgstr ""
38 |
39 | ## From Ecto.Changeset.validate_confirmation/3
40 | msgid "does not match confirmation"
41 | msgstr ""
42 |
43 | ## From Ecto.Changeset.no_assoc_constraint/3
44 | msgid "is still associated with this entry"
45 | msgstr ""
46 |
47 | msgid "are still associated with this entry"
48 | msgstr ""
49 |
50 | ## From Ecto.Changeset.validate_length/3
51 | msgid "should be %{count} character(s)"
52 | msgid_plural "should be %{count} character(s)"
53 | msgstr[0] ""
54 | msgstr[1] ""
55 |
56 | msgid "should have %{count} item(s)"
57 | msgid_plural "should have %{count} item(s)"
58 | msgstr[0] ""
59 | msgstr[1] ""
60 |
61 | msgid "should be at least %{count} character(s)"
62 | msgid_plural "should be at least %{count} character(s)"
63 | msgstr[0] ""
64 | msgstr[1] ""
65 |
66 | msgid "should have at least %{count} item(s)"
67 | msgid_plural "should have at least %{count} item(s)"
68 | msgstr[0] ""
69 | msgstr[1] ""
70 |
71 | msgid "should be at most %{count} character(s)"
72 | msgid_plural "should be at most %{count} character(s)"
73 | msgstr[0] ""
74 | msgstr[1] ""
75 |
76 | msgid "should have at most %{count} item(s)"
77 | msgid_plural "should have at most %{count} item(s)"
78 | msgstr[0] ""
79 | msgstr[1] ""
80 |
81 | ## From Ecto.Changeset.validate_number/3
82 | msgid "must be less than %{number}"
83 | msgstr ""
84 |
85 | msgid "must be greater than %{number}"
86 | msgstr ""
87 |
88 | msgid "must be less than or equal to %{number}"
89 | msgstr ""
90 |
91 | msgid "must be greater than or equal to %{number}"
92 | msgstr ""
93 |
94 | msgid "must be equal to %{number}"
95 | msgstr ""
96 |
--------------------------------------------------------------------------------
/priv/repo/seeds.exs:
--------------------------------------------------------------------------------
1 | # Script for populating the database. You can run it as:
2 | #
3 | # mix run priv/repo/seeds.exs
4 | #
5 | # Inside the script, you can read and write to any of your
6 | # repositories directly:
7 | #
8 | # PhoenixVue.Repo.insert!(%PhoenixVue.SomeSchema{})
9 | #
10 | # We recommend using the bang functions (`insert!`, `update!`
11 | # and so on) as they will fail if something goes wrong.
12 |
--------------------------------------------------------------------------------
/test/phoenix_vue/web/controllers/page_controller_test.exs:
--------------------------------------------------------------------------------
1 | defmodule PhoenixVue.Web.PageControllerTest do
2 | use PhoenixVue.Web.ConnCase
3 |
4 | test "GET /", %{conn: conn} do
5 | conn = get conn, "/"
6 | assert html_response(conn, 200) =~ "Welcome to Phoenix!"
7 | end
8 | end
9 |
--------------------------------------------------------------------------------
/test/phoenix_vue/web/views/error_view_test.exs:
--------------------------------------------------------------------------------
1 | defmodule PhoenixVue.Web.ErrorViewTest do
2 | use PhoenixVue.Web.ConnCase, async: true
3 |
4 | # Bring render/3 and render_to_string/3 for testing custom views
5 | import Phoenix.View
6 |
7 | test "renders 404.html" do
8 | assert render_to_string(PhoenixVue.Web.ErrorView, "404.html", []) ==
9 | "Page not found"
10 | end
11 |
12 | test "render 500.html" do
13 | assert render_to_string(PhoenixVue.Web.ErrorView, "500.html", []) ==
14 | "Internal server error"
15 | end
16 |
17 | test "render any other" do
18 | assert render_to_string(PhoenixVue.Web.ErrorView, "505.html", []) ==
19 | "Internal server error"
20 | end
21 | end
22 |
--------------------------------------------------------------------------------
/test/phoenix_vue/web/views/layout_view_test.exs:
--------------------------------------------------------------------------------
1 | defmodule PhoenixVue.Web.LayoutViewTest do
2 | use PhoenixVue.Web.ConnCase, async: true
3 | end
4 |
--------------------------------------------------------------------------------
/test/phoenix_vue/web/views/page_view_test.exs:
--------------------------------------------------------------------------------
1 | defmodule PhoenixVue.Web.PageViewTest do
2 | use PhoenixVue.Web.ConnCase, async: true
3 | end
4 |
--------------------------------------------------------------------------------
/test/support/channel_case.ex:
--------------------------------------------------------------------------------
1 | defmodule PhoenixVue.Web.ChannelCase do
2 | @moduledoc """
3 | This module defines the test case to be used by
4 | channel tests.
5 |
6 | Such tests rely on `Phoenix.ChannelTest` and also
7 | import other functionality to make it easier
8 | to build common datastructures and query the data layer.
9 |
10 | Finally, if the test case interacts with the database,
11 | it cannot be async. For this reason, every test runs
12 | inside a transaction which is reset at the beginning
13 | of the test unless the test case is marked as async.
14 | """
15 |
16 | use ExUnit.CaseTemplate
17 |
18 | using do
19 | quote do
20 | # Import conveniences for testing with channels
21 | use Phoenix.ChannelTest
22 |
23 | # The default endpoint for testing
24 | @endpoint PhoenixVue.Web.Endpoint
25 | end
26 | end
27 |
28 |
29 | setup tags do
30 | :ok = Ecto.Adapters.SQL.Sandbox.checkout(PhoenixVue.Repo)
31 | unless tags[:async] do
32 | Ecto.Adapters.SQL.Sandbox.mode(PhoenixVue.Repo, {:shared, self()})
33 | end
34 | :ok
35 | end
36 |
37 | end
38 |
--------------------------------------------------------------------------------
/test/support/conn_case.ex:
--------------------------------------------------------------------------------
1 | defmodule PhoenixVue.Web.ConnCase do
2 | @moduledoc """
3 | This module defines the test case to be used by
4 | tests that require setting up a connection.
5 |
6 | Such tests rely on `Phoenix.ConnTest` and also
7 | import other functionality to make it easier
8 | to build common datastructures and query the data layer.
9 |
10 | Finally, if the test case interacts with the database,
11 | it cannot be async. For this reason, every test runs
12 | inside a transaction which is reset at the beginning
13 | of the test unless the test case is marked as async.
14 | """
15 |
16 | use ExUnit.CaseTemplate
17 |
18 | using do
19 | quote do
20 | # Import conveniences for testing with connections
21 | use Phoenix.ConnTest
22 | import PhoenixVue.Web.Router.Helpers
23 |
24 | # The default endpoint for testing
25 | @endpoint PhoenixVue.Web.Endpoint
26 | end
27 | end
28 |
29 |
30 | setup tags do
31 | :ok = Ecto.Adapters.SQL.Sandbox.checkout(PhoenixVue.Repo)
32 | unless tags[:async] do
33 | Ecto.Adapters.SQL.Sandbox.mode(PhoenixVue.Repo, {:shared, self()})
34 | end
35 | {:ok, conn: Phoenix.ConnTest.build_conn()}
36 | end
37 |
38 | end
39 |
--------------------------------------------------------------------------------
/test/support/data_case.ex:
--------------------------------------------------------------------------------
1 | defmodule PhoenixVue.DataCase do
2 | @moduledoc """
3 | This module defines the setup for tests requiring
4 | access to the application's data layer.
5 |
6 | You may define functions here to be used as helpers in
7 | your tests.
8 |
9 | Finally, if the test case interacts with the database,
10 | it cannot be async. For this reason, every test runs
11 | inside a transaction which is reset at the beginning
12 | of the test unless the test case is marked as async.
13 | """
14 |
15 | use ExUnit.CaseTemplate
16 |
17 | using do
18 | quote do
19 | alias PhoenixVue.Repo
20 |
21 | import Ecto
22 | import Ecto.Changeset
23 | import Ecto.Query
24 | import PhoenixVue.DataCase
25 | end
26 | end
27 |
28 | setup tags do
29 | :ok = Ecto.Adapters.SQL.Sandbox.checkout(PhoenixVue.Repo)
30 |
31 | unless tags[:async] do
32 | Ecto.Adapters.SQL.Sandbox.mode(PhoenixVue.Repo, {:shared, self()})
33 | end
34 |
35 | :ok
36 | end
37 |
38 | @doc """
39 | A helper that transform changeset errors to a map of messages.
40 |
41 | assert {:error, changeset} = Accounts.create_user(%{password: "short"})
42 | assert "password is too short" in errors_on(changeset).password
43 | assert %{password: ["password is too short"]} = errors_on(changeset)
44 |
45 | """
46 | def errors_on(changeset) do
47 | Ecto.Changeset.traverse_errors(changeset, fn {message, opts} ->
48 | Enum.reduce(opts, message, fn {key, value}, acc ->
49 | String.replace(acc, "%{#{key}}", to_string(value))
50 | end)
51 | end)
52 | end
53 | end
54 |
--------------------------------------------------------------------------------
/test/test_helper.exs:
--------------------------------------------------------------------------------
1 | ExUnit.start()
2 |
3 | Ecto.Adapters.SQL.Sandbox.mode(PhoenixVue.Repo, :manual)
4 |
5 |
--------------------------------------------------------------------------------