├── .babelrc
├── .eslintignore
├── .eslintrc.json
├── .gitignore
├── LICENSE
├── README.md
├── package-lock.json
├── package.json
├── src
├── actions
│ └── index.js
├── app.js
├── components
│ ├── app.js
│ ├── crowdsale.js
│ ├── layout.js
│ └── welcome.js
├── index.html
├── reducers
│ ├── eth.js
│ ├── index.js
│ ├── root.js
│ └── types.js
└── styles
│ └── index.scss
├── webpack.common.js
├── webpack.dev.js
├── webpack.prod.js
└── yarn.lock
/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": [
3 | "es2017",
4 | "react",
5 | [
6 | "env",
7 | {
8 | "targets": {
9 | "uglify": true
10 | }
11 | }
12 | ]
13 | ],
14 | "plugins": [
15 | "transform-object-rest-spread"
16 | ]
17 | }
--------------------------------------------------------------------------------
/.eslintignore:
--------------------------------------------------------------------------------
1 | coverage/**
2 | node_modules/**
3 | dist/**
4 | src/index.html
5 |
--------------------------------------------------------------------------------
/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "env": {
3 | "browser": true,
4 | "commonjs": true,
5 | "es6": true,
6 | "node": true
7 | },
8 | "parserOptions": {
9 | "sourceType": "module"
10 | },
11 | "extends": [
12 | "standard",
13 | "eslint:recommended",
14 | "plugin:react/recommended"
15 | ],
16 | "rules": {
17 | "react/jsx-filename-extension": 0,
18 | "react/jsx-uses-vars": 2,
19 | "react/prop-types": 0,
20 | "import/prefer-default-export": 0,
21 | "no-console": 0
22 | },
23 | "plugins": [
24 | "react",
25 | "node"
26 | ]
27 | }
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules/
2 | dist/
3 | *.map
4 | .env
5 |
6 | .DS_Store
7 | .DS_Store?
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2017 Summer Ventured Project Team
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # React Redux Daap (Ready for Ethereum)
2 | - You can buy ERC20 token with this React App
3 | - Amazingandyyy Token is recommended to be tested with this daap.
4 | - Amazingandyyy Token is a ERC-20 Token, you can find it [here](https://github.com/amazingandyyy/amazingandyyy-token)
5 |
6 | ## Usage
7 | ```
8 | git clone https://github.com/amazingandyyy/ethereum-dapp.git
9 | npm install
10 | npm run dev
11 |
12 | ```
13 |
14 | ## production build & run
15 | ```
16 | npm run build && npm run start
17 | ```
18 |
19 | ## Versions
20 | Library | version
21 | --- | ---
22 | react | v16.0.0
23 | redux | v3.7.1
24 | ethjs | v0.3.0
25 | react-router | v4.2.2
26 | babel-preset-es2017 | 6.24.1
27 | webpack | v3.6.0
28 |
29 | ## About usage of web3 and ethjs
30 | - check official [wiki](https://github.com/ethereum/wiki/wiki/JavaScript-API) or [docs](https://web3js.readthedocs.io/en/1.0/web3-eth.html) for web3js
31 | - check official repo for [ethjs](https://github.com/ethjs/ethjs)
32 |
33 | ## License
34 | 🍺 [MIT](https://github.com/amazingandyyy/ethereum-daap/blob/master/LICENSE)
35 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "daap",
3 | "version": "1.0.1",
4 | "description": "",
5 | "main": "index.js",
6 | "scripts": {
7 | "test": "eslint --fix src/",
8 | "start": "npm run prod && serve ./dist",
9 | "dev": "webpack-dev-server --open --config webpack.dev.js",
10 | "prod": "rm -rf dist && webpack --progress -p --config webpack.prod.js",
11 | "precommit": "npm test",
12 | "prepush": "npm test"
13 | },
14 | "engines": {
15 | "node": ">=8.0.0"
16 | },
17 | "author": "amazingandyyy",
18 | "license": "MIT",
19 | "dependencies": {
20 | "ethjs": "^0.3.0",
21 | "prop-types": "^15.6.0",
22 | "react": "^16.0.0",
23 | "react-dom": "^16.0.0",
24 | "react-redux": "^5.0.6",
25 | "react-router": "^4.2.0",
26 | "react-router-dom": "^4.2.2",
27 | "redux": "^3.7.2",
28 | "redux-thunk": "^2.2.0"
29 | },
30 | "devDependencies": {
31 | "babel-cli": "^6.26.0",
32 | "babel-core": "^6.26.0",
33 | "babel-loader": "^7.1.2",
34 | "babel-plugin-transform-object-rest-spread": "^6.26.0",
35 | "babel-preset-env": "^1.6.1",
36 | "babel-preset-es2017": "^6.24.1",
37 | "babel-preset-react": "^6.24.1",
38 | "css-loader": "^0.28.7",
39 | "eslint": "^4.7.2",
40 | "eslint-config-standard": "^10.2.1",
41 | "eslint-plugin-import": "^2.7.0",
42 | "eslint-plugin-node": "^5.2.1",
43 | "eslint-plugin-promise": "^3.6.0",
44 | "eslint-plugin-react": "^7.4.0",
45 | "eslint-plugin-standard": "^3.0.1",
46 | "extract-text-webpack-plugin": "^3.0.0",
47 | "html-webpack-plugin": "^2.30.1",
48 | "husky": "^0.14.3",
49 | "node-sass": "^4.5.3",
50 | "sass-loader": "^6.0.6",
51 | "serve": "^6.1.0",
52 | "style-loader": "^0.18.2",
53 | "webpack": "^3.6.0",
54 | "webpack-dev-server": "^2.8.2",
55 | "webpack-merge": "^4.1.0"
56 | }
57 | }
58 |
--------------------------------------------------------------------------------
/src/actions/index.js:
--------------------------------------------------------------------------------
1 | import {
2 | ROOT,
3 | ETH_CONNECT
4 | } from '../reducers/types'
5 | import Eth from 'ethjs'
6 |
7 | export const changeRootMsg = () => function (dispatch) {
8 | return dispatch({ type: ROOT, payload: 'redux works with actions' })
9 | }
10 |
11 | export const connectEth = () => function (dispatch) {
12 | var eth
13 | // Checking if Web3 has been injected by the browser (Mist/MetaMask)
14 | if (typeof window.web3 !== 'undefined' && typeof window.web3.currentProvider !== 'undefined') {
15 | eth = new Eth(window.web3.currentProvider);
16 | // eth = new Eth(new Eth.HttpProvider('http://localhost:8545'))
17 | } else {
18 | eth = new Eth(new Eth.HttpProvider('http://localhost:8545'))
19 | }
20 | return dispatch({ type: ETH_CONNECT, payload: eth })
21 | }
22 |
--------------------------------------------------------------------------------
/src/app.js:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import ReactDOM from 'react-dom'
3 | import { HashRouter, Route, Switch } from 'react-router-dom'
4 | import { Provider } from 'react-redux'
5 | import { createStore, applyMiddleware } from 'redux'
6 | import reduxThunk from 'redux-thunk'
7 |
8 | // import components
9 | import App from './components/app'
10 | import Crowdsale from './components/crowdsale'
11 | import Welcome from './components/welcome'
12 | import Layout from './components/layout'
13 | import reducers from './reducers'
14 |
15 | // import actions that will be used in this file, after building store
16 | import { connectEth } from './actions'
17 |
18 | // read styling
19 | import './styles/index.scss'
20 |
21 | // create a store from reducers and reduxThunk
22 | const store = applyMiddleware(reduxThunk)(createStore)(reducers)
23 |
24 | // initialize the connection with ethereum blockchain
25 | connectEth()(store.dispatch)
26 |
27 | // build the Root Component and declare Routes
28 | const Root = () => (
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 | )
41 |
42 | // render the App to root element
43 | ReactDOM.render(
44 | ,
45 | document.getElementById('root')
46 | )
47 |
--------------------------------------------------------------------------------
/src/components/app.js:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | // import { Link } from 'react-router-dom'
3 | import { connect } from 'react-redux'
4 |
5 | import { changeRootMsg } from '../actions'
6 |
7 | const App = (props) => {
8 | setTimeout(props.changeRootMsg, 1000)
9 | return (
)
14 | }
15 |
16 | const mapStateToProps = ({ root }) => ({
17 | root: root.msg
18 | })
19 |
20 | export default connect(mapStateToProps, { changeRootMsg })(App)
21 |
--------------------------------------------------------------------------------
/src/components/crowdsale.js:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import { connect } from 'react-redux'
3 | import Eth from 'ethjs'
4 | let initialState = {
5 | address: '',
6 | abi: '',
7 | etherAmount: 0,
8 | coinbase: '',
9 | tx: ''
10 | }
11 | class Crowdsale extends React.Component {
12 |
13 | constructor(props) {
14 | super();
15 | this.state = initialState
16 | }
17 | componentDidMount(){
18 | // const { eth } = this.props;
19 | this.setState(initialState)
20 | }
21 | buyIn(event) {
22 | event.preventDefault();
23 | const { eth } = this.props;
24 | const VCNCrowdSaleAddr = this.state.address; // <- need to be change
25 | if (VCNCrowdSaleAddr) {
26 | eth.coinbase().then((coinbase) => {
27 | this.setState({
28 | coinbase
29 | })
30 | let num = this.state.etherAmount;
31 | if (num > 0){
32 | eth.sendTransaction({
33 | from: coinbase,
34 | to: VCNCrowdSaleAddr,
35 | value: Eth.toWei(num, "ether"),
36 | data: '0x'
37 | }).then(tx=>{
38 | this.setState({ tx })
39 | }).catch(console.error);
40 | }
41 | }).catch(console.error);
42 | }
43 | }
44 | render() {
45 | return (
46 |
47 | {/* {!eth &&
48 | *important You need metamask or ethereum blockchain on localhost:8545
49 |
}
50 | {eth &&
51 | Connected to Ethereum
52 |
} */}
53 |
84 |
85 | )
86 | }
87 | }
88 |
89 |
90 | export default connect(({ eth }) => ({ eth }), null)(Crowdsale)
91 |
92 | const styles = {
93 | 'h3': {
94 | 'fontSize': 20,
95 | 'letterSpacing': '1px'
96 | }
97 | }
98 |
99 | // AMAZINGANDYYYCrowdsale: 0x4089e011d607f49ce84f63c8b488af1b822fbafb
100 | // -----> VentureCoin(VCN) Address 0x534f0e10ecbafcee0b05311a13d922be931e1281
101 | // -----> startTime: 1511039437
102 | // -----> endTime: 1511903437
103 | // -----> rate: 488
104 | // -----> wallet: 0xcff8067f05961675277825ab785d5ce830bb485e
105 | // -----> cappedInWei: 125000000000000000000000
106 |
--------------------------------------------------------------------------------
/src/components/layout.js:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import { NavLink } from 'react-router-dom'
3 |
4 | const Layout = (props) => (
5 |
21 | {props.children}
22 |
)
23 |
24 | export default Layout;
--------------------------------------------------------------------------------
/src/components/welcome.js:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 |
3 | const Welcome = () => welcome
4 |
5 | export default Welcome;
--------------------------------------------------------------------------------
/src/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 | Daap Demo
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/src/reducers/eth.js:
--------------------------------------------------------------------------------
1 | import { ETH_CONNECT } from './types'
2 |
3 | const INIT_STATE = {
4 | }
5 |
6 | export default (state = INIT_STATE, action) => {
7 | switch (action.type) {
8 | case ETH_CONNECT:
9 | // action.payload.accounts().then(accounts => console.log('accounts', accounts));
10 | return { ...state, ...action.payload }
11 | default:
12 | return state
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/src/reducers/index.js:
--------------------------------------------------------------------------------
1 | import { combineReducers } from 'redux'
2 |
3 | import root from './root'
4 | import eth from './eth'
5 |
6 | export default combineReducers({
7 | root,
8 | eth
9 | })
10 |
--------------------------------------------------------------------------------
/src/reducers/root.js:
--------------------------------------------------------------------------------
1 | import { ROOT } from './types'
2 |
3 | const INIT_STATE = {
4 | msg: 'redux works'
5 | }
6 |
7 | export default (state = INIT_STATE, action) => {
8 | switch (action.type) {
9 | case ROOT:
10 | return { ...state, msg: action.payload }
11 | default:
12 | return state
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/src/reducers/types.js:
--------------------------------------------------------------------------------
1 | export const ROOT = 'ROOT'
2 | export const ETH_CONNECT = 'ETH_CONNECT'
3 |
--------------------------------------------------------------------------------
/src/styles/index.scss:
--------------------------------------------------------------------------------
1 | $grey: grey;
2 |
3 |
4 | body {
5 | color: $grey;
6 | }
--------------------------------------------------------------------------------
/webpack.common.js:
--------------------------------------------------------------------------------
1 | const webpack = require('webpack');
2 | const path = require('path');
3 | const HtmlWebpackPlugin = require('html-webpack-plugin');
4 | const ExtractTextPlugin = require('extract-text-webpack-plugin');
5 |
6 | module.exports = {
7 | entry: {
8 | app: './src/app.js',
9 | vender: ['react', 'react-dom', 'redux', 'react-redux', 'react-router']
10 | },
11 | output: {
12 | path: path.resolve(__dirname, 'dist/'),
13 | filename: "js/[name].[chunkhash].js"
14 | },
15 | module: {
16 | rules: [
17 | {
18 | test: /\.jsx?$/,
19 | exclude: path.resolve(__dirname, 'node_modules'),
20 | use: 'babel-loader'
21 | },
22 | {
23 | test: /\.s?css$/,
24 | exclude: path.resolve(__dirname, "node_modules"),
25 | use: ExtractTextPlugin.extract({
26 | fallback: 'style-loader',
27 | use: [{
28 | loader: 'css-loader',
29 | options: {
30 | sourceMap: true
31 | }
32 | },'sass-loader'],
33 | })
34 | }
35 | ]
36 | },
37 | plugins: [
38 | new HtmlWebpackPlugin({template: path.resolve(__dirname, 'src/index.html')}),
39 | new webpack.optimize.CommonsChunkPlugin({
40 | name: 'manifest',
41 | filename: "manifest.js",
42 | chunks: ['vender']
43 | }),
44 | new ExtractTextPlugin({
45 | filename: 'styles/style.css'
46 | }),
47 | ]
48 | }
--------------------------------------------------------------------------------
/webpack.dev.js:
--------------------------------------------------------------------------------
1 | const merge = require('webpack-merge');
2 | const common = require('./webpack.common.js');
3 |
4 | module.exports = merge(common, {
5 | devtool: 'source-map',
6 | devServer: {
7 | contentBase: './src'
8 | }
9 | });
--------------------------------------------------------------------------------
/webpack.prod.js:
--------------------------------------------------------------------------------
1 | const webpack = require('webpack');
2 | const merge = require('webpack-merge');
3 |
4 | const common = require('./webpack.common.js');
5 |
6 | module.exports = merge(common, {
7 | // devtool: 'cheap-module-source-map',
8 | plugins: [
9 | new webpack.DefinePlugin({
10 | 'process.env': {
11 | 'NODE_ENV': JSON.stringify('production')
12 | }
13 | })
14 | ]
15 | })
--------------------------------------------------------------------------------
/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.1.2"
21 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.2.tgz#911cb53e036807cf0fa778dc5d370fbd864246d7"
22 |
23 | ajv-keywords@^2.0.0:
24 | version "2.1.0"
25 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.0.tgz#a296e17f7bfae7c1ce4f7e0de53d29cb32162df0"
26 |
27 | ajv@^4.9.1:
28 | version "4.11.8"
29 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536"
30 | dependencies:
31 | co "^4.6.0"
32 | json-stable-stringify "^1.0.1"
33 |
34 | ajv@^5.1.5:
35 | version "5.2.3"
36 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.2.3.tgz#c06f598778c44c6b161abafe3466b81ad1814ed2"
37 | dependencies:
38 | co "^4.6.0"
39 | fast-deep-equal "^1.0.0"
40 | json-schema-traverse "^0.3.0"
41 | json-stable-stringify "^1.0.1"
42 |
43 | align-text@^0.1.1, align-text@^0.1.3:
44 | version "0.1.4"
45 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
46 | dependencies:
47 | kind-of "^3.0.2"
48 | longest "^1.0.1"
49 | repeat-string "^1.5.2"
50 |
51 | ansi-regex@^2.0.0:
52 | version "2.1.1"
53 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
54 |
55 | ansi-regex@^3.0.0:
56 | version "3.0.0"
57 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
58 |
59 | anymatch@^1.3.0:
60 | version "1.3.2"
61 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a"
62 | dependencies:
63 | micromatch "^2.1.5"
64 | normalize-path "^2.0.0"
65 |
66 | aproba@^1.0.3:
67 | version "1.2.0"
68 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
69 |
70 | are-we-there-yet@~1.1.2:
71 | version "1.1.4"
72 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d"
73 | dependencies:
74 | delegates "^1.0.0"
75 | readable-stream "^2.0.6"
76 |
77 | arr-diff@^2.0.0:
78 | version "2.0.0"
79 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
80 | dependencies:
81 | arr-flatten "^1.0.1"
82 |
83 | arr-flatten@^1.0.1:
84 | version "1.1.0"
85 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
86 |
87 | array-unique@^0.2.1:
88 | version "0.2.1"
89 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
90 |
91 | asap@~2.0.3:
92 | version "2.0.6"
93 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
94 |
95 | asn1.js@^4.0.0:
96 | version "4.9.1"
97 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.1.tgz#48ba240b45a9280e94748990ba597d216617fd40"
98 | dependencies:
99 | bn.js "^4.0.0"
100 | inherits "^2.0.1"
101 | minimalistic-assert "^1.0.0"
102 |
103 | asn1@~0.2.3:
104 | version "0.2.3"
105 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
106 |
107 | assert-plus@1.0.0, assert-plus@^1.0.0:
108 | version "1.0.0"
109 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
110 |
111 | assert-plus@^0.2.0:
112 | version "0.2.0"
113 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
114 |
115 | assert@^1.1.1:
116 | version "1.4.1"
117 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91"
118 | dependencies:
119 | util "0.10.3"
120 |
121 | async-each@^1.0.0:
122 | version "1.0.1"
123 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
124 |
125 | async@^2.1.2:
126 | version "2.5.0"
127 | resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d"
128 | dependencies:
129 | lodash "^4.14.0"
130 |
131 | asynckit@^0.4.0:
132 | version "0.4.0"
133 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
134 |
135 | aws-sign2@~0.6.0:
136 | version "0.6.0"
137 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
138 |
139 | aws4@^1.2.1:
140 | version "1.6.0"
141 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
142 |
143 | balanced-match@^1.0.0:
144 | version "1.0.0"
145 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
146 |
147 | base64-js@^1.0.2:
148 | version "1.2.1"
149 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886"
150 |
151 | bcrypt-pbkdf@^1.0.0:
152 | version "1.0.1"
153 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d"
154 | dependencies:
155 | tweetnacl "^0.14.3"
156 |
157 | big.js@^3.1.3:
158 | version "3.2.0"
159 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e"
160 |
161 | binary-extensions@^1.0.0:
162 | version "1.10.0"
163 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.10.0.tgz#9aeb9a6c5e88638aad171e167f5900abe24835d0"
164 |
165 | block-stream@*:
166 | version "0.0.9"
167 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
168 | dependencies:
169 | inherits "~2.0.0"
170 |
171 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0:
172 | version "4.11.8"
173 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f"
174 |
175 | boom@2.x.x:
176 | version "2.10.1"
177 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
178 | dependencies:
179 | hoek "2.x.x"
180 |
181 | brace-expansion@^1.1.7:
182 | version "1.1.8"
183 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292"
184 | dependencies:
185 | balanced-match "^1.0.0"
186 | concat-map "0.0.1"
187 |
188 | braces@^1.8.2:
189 | version "1.8.5"
190 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
191 | dependencies:
192 | expand-range "^1.8.1"
193 | preserve "^0.2.0"
194 | repeat-element "^1.1.2"
195 |
196 | brorand@^1.0.1:
197 | version "1.1.0"
198 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
199 |
200 | browserify-aes@^1.0.0, browserify-aes@^1.0.4:
201 | version "1.0.8"
202 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.8.tgz#c8fa3b1b7585bb7ba77c5560b60996ddec6d5309"
203 | dependencies:
204 | buffer-xor "^1.0.3"
205 | cipher-base "^1.0.0"
206 | create-hash "^1.1.0"
207 | evp_bytestokey "^1.0.3"
208 | inherits "^2.0.1"
209 | safe-buffer "^5.0.1"
210 |
211 | browserify-cipher@^1.0.0:
212 | version "1.0.0"
213 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a"
214 | dependencies:
215 | browserify-aes "^1.0.4"
216 | browserify-des "^1.0.0"
217 | evp_bytestokey "^1.0.0"
218 |
219 | browserify-des@^1.0.0:
220 | version "1.0.0"
221 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd"
222 | dependencies:
223 | cipher-base "^1.0.1"
224 | des.js "^1.0.0"
225 | inherits "^2.0.1"
226 |
227 | browserify-rsa@^4.0.0:
228 | version "4.0.1"
229 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524"
230 | dependencies:
231 | bn.js "^4.1.0"
232 | randombytes "^2.0.1"
233 |
234 | browserify-sign@^4.0.0:
235 | version "4.0.4"
236 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298"
237 | dependencies:
238 | bn.js "^4.1.1"
239 | browserify-rsa "^4.0.0"
240 | create-hash "^1.1.0"
241 | create-hmac "^1.1.2"
242 | elliptic "^6.0.0"
243 | inherits "^2.0.1"
244 | parse-asn1 "^5.0.0"
245 |
246 | browserify-zlib@^0.1.4:
247 | version "0.1.4"
248 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d"
249 | dependencies:
250 | pako "~0.2.0"
251 |
252 | buffer-xor@^1.0.3:
253 | version "1.0.3"
254 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9"
255 |
256 | buffer@^4.3.0:
257 | version "4.9.1"
258 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298"
259 | dependencies:
260 | base64-js "^1.0.2"
261 | ieee754 "^1.1.4"
262 | isarray "^1.0.0"
263 |
264 | builtin-modules@^1.0.0:
265 | version "1.1.1"
266 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
267 |
268 | builtin-status-codes@^3.0.0:
269 | version "3.0.0"
270 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
271 |
272 | camelcase@^1.0.2:
273 | version "1.2.1"
274 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
275 |
276 | camelcase@^4.1.0:
277 | version "4.1.0"
278 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
279 |
280 | caseless@~0.12.0:
281 | version "0.12.0"
282 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
283 |
284 | center-align@^0.1.1:
285 | version "0.1.3"
286 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad"
287 | dependencies:
288 | align-text "^0.1.3"
289 | lazy-cache "^1.0.3"
290 |
291 | chokidar@^1.7.0:
292 | version "1.7.0"
293 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468"
294 | dependencies:
295 | anymatch "^1.3.0"
296 | async-each "^1.0.0"
297 | glob-parent "^2.0.0"
298 | inherits "^2.0.1"
299 | is-binary-path "^1.0.0"
300 | is-glob "^2.0.0"
301 | path-is-absolute "^1.0.0"
302 | readdirp "^2.0.0"
303 | optionalDependencies:
304 | fsevents "^1.0.0"
305 |
306 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3:
307 | version "1.0.4"
308 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de"
309 | dependencies:
310 | inherits "^2.0.1"
311 | safe-buffer "^5.0.1"
312 |
313 | cliui@^2.1.0:
314 | version "2.1.0"
315 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1"
316 | dependencies:
317 | center-align "^0.1.1"
318 | right-align "^0.1.1"
319 | wordwrap "0.0.2"
320 |
321 | cliui@^3.2.0:
322 | version "3.2.0"
323 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d"
324 | dependencies:
325 | string-width "^1.0.1"
326 | strip-ansi "^3.0.1"
327 | wrap-ansi "^2.0.0"
328 |
329 | co@^4.6.0:
330 | version "4.6.0"
331 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
332 |
333 | code-point-at@^1.0.0:
334 | version "1.1.0"
335 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
336 |
337 | combined-stream@^1.0.5, combined-stream@~1.0.5:
338 | version "1.0.5"
339 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009"
340 | dependencies:
341 | delayed-stream "~1.0.0"
342 |
343 | concat-map@0.0.1:
344 | version "0.0.1"
345 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
346 |
347 | console-browserify@^1.1.0:
348 | version "1.1.0"
349 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10"
350 | dependencies:
351 | date-now "^0.1.4"
352 |
353 | console-control-strings@^1.0.0, console-control-strings@~1.1.0:
354 | version "1.1.0"
355 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
356 |
357 | constants-browserify@^1.0.0:
358 | version "1.0.0"
359 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75"
360 |
361 | core-js@^1.0.0:
362 | version "1.2.7"
363 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636"
364 |
365 | core-util-is@1.0.2, core-util-is@~1.0.0:
366 | version "1.0.2"
367 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
368 |
369 | create-ecdh@^4.0.0:
370 | version "4.0.0"
371 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d"
372 | dependencies:
373 | bn.js "^4.1.0"
374 | elliptic "^6.0.0"
375 |
376 | create-hash@^1.1.0, create-hash@^1.1.2:
377 | version "1.1.3"
378 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd"
379 | dependencies:
380 | cipher-base "^1.0.1"
381 | inherits "^2.0.1"
382 | ripemd160 "^2.0.0"
383 | sha.js "^2.4.0"
384 |
385 | create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4:
386 | version "1.1.6"
387 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06"
388 | dependencies:
389 | cipher-base "^1.0.3"
390 | create-hash "^1.1.0"
391 | inherits "^2.0.1"
392 | ripemd160 "^2.0.0"
393 | safe-buffer "^5.0.1"
394 | sha.js "^2.4.8"
395 |
396 | cross-spawn@^5.0.1:
397 | version "5.1.0"
398 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
399 | dependencies:
400 | lru-cache "^4.0.1"
401 | shebang-command "^1.2.0"
402 | which "^1.2.9"
403 |
404 | cryptiles@2.x.x:
405 | version "2.0.5"
406 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8"
407 | dependencies:
408 | boom "2.x.x"
409 |
410 | crypto-browserify@^3.11.0:
411 | version "3.11.1"
412 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.1.tgz#948945efc6757a400d6e5e5af47194d10064279f"
413 | dependencies:
414 | browserify-cipher "^1.0.0"
415 | browserify-sign "^4.0.0"
416 | create-ecdh "^4.0.0"
417 | create-hash "^1.1.0"
418 | create-hmac "^1.1.0"
419 | diffie-hellman "^5.0.0"
420 | inherits "^2.0.1"
421 | pbkdf2 "^3.0.3"
422 | public-encrypt "^4.0.0"
423 | randombytes "^2.0.0"
424 |
425 | d@1:
426 | version "1.0.0"
427 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f"
428 | dependencies:
429 | es5-ext "^0.10.9"
430 |
431 | dashdash@^1.12.0:
432 | version "1.14.1"
433 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
434 | dependencies:
435 | assert-plus "^1.0.0"
436 |
437 | date-now@^0.1.4:
438 | version "0.1.4"
439 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b"
440 |
441 | debug@^2.2.0:
442 | version "2.6.9"
443 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
444 | dependencies:
445 | ms "2.0.0"
446 |
447 | decamelize@^1.0.0, decamelize@^1.1.1:
448 | version "1.2.0"
449 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
450 |
451 | deep-extend@~0.4.0:
452 | version "0.4.2"
453 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f"
454 |
455 | delayed-stream@~1.0.0:
456 | version "1.0.0"
457 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
458 |
459 | delegates@^1.0.0:
460 | version "1.0.0"
461 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
462 |
463 | des.js@^1.0.0:
464 | version "1.0.0"
465 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc"
466 | dependencies:
467 | inherits "^2.0.1"
468 | minimalistic-assert "^1.0.0"
469 |
470 | diffie-hellman@^5.0.0:
471 | version "5.0.2"
472 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e"
473 | dependencies:
474 | bn.js "^4.1.0"
475 | miller-rabin "^4.0.0"
476 | randombytes "^2.0.0"
477 |
478 | domain-browser@^1.1.1:
479 | version "1.1.7"
480 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc"
481 |
482 | ecc-jsbn@~0.1.1:
483 | version "0.1.1"
484 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
485 | dependencies:
486 | jsbn "~0.1.0"
487 |
488 | elliptic@^6.0.0:
489 | version "6.4.0"
490 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df"
491 | dependencies:
492 | bn.js "^4.4.0"
493 | brorand "^1.0.1"
494 | hash.js "^1.0.0"
495 | hmac-drbg "^1.0.0"
496 | inherits "^2.0.1"
497 | minimalistic-assert "^1.0.0"
498 | minimalistic-crypto-utils "^1.0.0"
499 |
500 | emojis-list@^2.0.0:
501 | version "2.1.0"
502 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389"
503 |
504 | encoding@^0.1.11:
505 | version "0.1.12"
506 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb"
507 | dependencies:
508 | iconv-lite "~0.4.13"
509 |
510 | enhanced-resolve@^3.4.0:
511 | version "3.4.1"
512 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz#0421e339fd71419b3da13d129b3979040230476e"
513 | dependencies:
514 | graceful-fs "^4.1.2"
515 | memory-fs "^0.4.0"
516 | object-assign "^4.0.1"
517 | tapable "^0.2.7"
518 |
519 | errno@^0.1.3:
520 | version "0.1.4"
521 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d"
522 | dependencies:
523 | prr "~0.0.0"
524 |
525 | error-ex@^1.2.0:
526 | version "1.3.1"
527 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc"
528 | dependencies:
529 | is-arrayish "^0.2.1"
530 |
531 | es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14:
532 | version "0.10.30"
533 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.30.tgz#7141a16836697dbabfaaaeee41495ce29f52c939"
534 | dependencies:
535 | es6-iterator "2"
536 | es6-symbol "~3.1"
537 |
538 | es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1:
539 | version "2.0.1"
540 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512"
541 | dependencies:
542 | d "1"
543 | es5-ext "^0.10.14"
544 | es6-symbol "^3.1"
545 |
546 | es6-map@^0.1.3:
547 | version "0.1.5"
548 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0"
549 | dependencies:
550 | d "1"
551 | es5-ext "~0.10.14"
552 | es6-iterator "~2.0.1"
553 | es6-set "~0.1.5"
554 | es6-symbol "~3.1.1"
555 | event-emitter "~0.3.5"
556 |
557 | es6-set@~0.1.5:
558 | version "0.1.5"
559 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1"
560 | dependencies:
561 | d "1"
562 | es5-ext "~0.10.14"
563 | es6-iterator "~2.0.1"
564 | es6-symbol "3.1.1"
565 | event-emitter "~0.3.5"
566 |
567 | es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1:
568 | version "3.1.1"
569 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77"
570 | dependencies:
571 | d "1"
572 | es5-ext "~0.10.14"
573 |
574 | es6-weak-map@^2.0.1:
575 | version "2.0.2"
576 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f"
577 | dependencies:
578 | d "1"
579 | es5-ext "^0.10.14"
580 | es6-iterator "^2.0.1"
581 | es6-symbol "^3.1.1"
582 |
583 | escope@^3.6.0:
584 | version "3.6.0"
585 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3"
586 | dependencies:
587 | es6-map "^0.1.3"
588 | es6-weak-map "^2.0.1"
589 | esrecurse "^4.1.0"
590 | estraverse "^4.1.1"
591 |
592 | esrecurse@^4.1.0:
593 | version "4.2.0"
594 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163"
595 | dependencies:
596 | estraverse "^4.1.0"
597 | object-assign "^4.0.1"
598 |
599 | estraverse@^4.1.0, estraverse@^4.1.1:
600 | version "4.2.0"
601 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
602 |
603 | event-emitter@~0.3.5:
604 | version "0.3.5"
605 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39"
606 | dependencies:
607 | d "1"
608 | es5-ext "~0.10.14"
609 |
610 | events@^1.0.0:
611 | version "1.1.1"
612 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924"
613 |
614 | evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3:
615 | version "1.0.3"
616 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02"
617 | dependencies:
618 | md5.js "^1.3.4"
619 | safe-buffer "^5.1.1"
620 |
621 | execa@^0.7.0:
622 | version "0.7.0"
623 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777"
624 | dependencies:
625 | cross-spawn "^5.0.1"
626 | get-stream "^3.0.0"
627 | is-stream "^1.1.0"
628 | npm-run-path "^2.0.0"
629 | p-finally "^1.0.0"
630 | signal-exit "^3.0.0"
631 | strip-eof "^1.0.0"
632 |
633 | expand-brackets@^0.1.4:
634 | version "0.1.5"
635 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
636 | dependencies:
637 | is-posix-bracket "^0.1.0"
638 |
639 | expand-range@^1.8.1:
640 | version "1.8.2"
641 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
642 | dependencies:
643 | fill-range "^2.1.0"
644 |
645 | extend@~3.0.0:
646 | version "3.0.1"
647 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444"
648 |
649 | extglob@^0.3.1:
650 | version "0.3.2"
651 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
652 | dependencies:
653 | is-extglob "^1.0.0"
654 |
655 | extsprintf@1.3.0, extsprintf@^1.2.0:
656 | version "1.3.0"
657 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05"
658 |
659 | fast-deep-equal@^1.0.0:
660 | version "1.0.0"
661 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff"
662 |
663 | fbjs@^0.8.16:
664 | version "0.8.16"
665 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.16.tgz#5e67432f550dc41b572bf55847b8aca64e5337db"
666 | dependencies:
667 | core-js "^1.0.0"
668 | isomorphic-fetch "^2.1.1"
669 | loose-envify "^1.0.0"
670 | object-assign "^4.1.0"
671 | promise "^7.1.1"
672 | setimmediate "^1.0.5"
673 | ua-parser-js "^0.7.9"
674 |
675 | filename-regex@^2.0.0:
676 | version "2.0.1"
677 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"
678 |
679 | fill-range@^2.1.0:
680 | version "2.2.3"
681 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723"
682 | dependencies:
683 | is-number "^2.1.0"
684 | isobject "^2.0.0"
685 | randomatic "^1.1.3"
686 | repeat-element "^1.1.2"
687 | repeat-string "^1.5.2"
688 |
689 | find-up@^2.0.0:
690 | version "2.1.0"
691 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
692 | dependencies:
693 | locate-path "^2.0.0"
694 |
695 | for-in@^1.0.1:
696 | version "1.0.2"
697 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
698 |
699 | for-own@^0.1.4:
700 | version "0.1.5"
701 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce"
702 | dependencies:
703 | for-in "^1.0.1"
704 |
705 | forever-agent@~0.6.1:
706 | version "0.6.1"
707 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
708 |
709 | form-data@~2.1.1:
710 | version "2.1.4"
711 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1"
712 | dependencies:
713 | asynckit "^0.4.0"
714 | combined-stream "^1.0.5"
715 | mime-types "^2.1.12"
716 |
717 | fs.realpath@^1.0.0:
718 | version "1.0.0"
719 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
720 |
721 | fsevents@^1.0.0:
722 | version "1.1.2"
723 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4"
724 | dependencies:
725 | nan "^2.3.0"
726 | node-pre-gyp "^0.6.36"
727 |
728 | fstream-ignore@^1.0.5:
729 | version "1.0.5"
730 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105"
731 | dependencies:
732 | fstream "^1.0.0"
733 | inherits "2"
734 | minimatch "^3.0.0"
735 |
736 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2:
737 | version "1.0.11"
738 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171"
739 | dependencies:
740 | graceful-fs "^4.1.2"
741 | inherits "~2.0.0"
742 | mkdirp ">=0.5 0"
743 | rimraf "2"
744 |
745 | gauge@~2.7.3:
746 | version "2.7.4"
747 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
748 | dependencies:
749 | aproba "^1.0.3"
750 | console-control-strings "^1.0.0"
751 | has-unicode "^2.0.0"
752 | object-assign "^4.1.0"
753 | signal-exit "^3.0.0"
754 | string-width "^1.0.1"
755 | strip-ansi "^3.0.1"
756 | wide-align "^1.1.0"
757 |
758 | get-caller-file@^1.0.1:
759 | version "1.0.2"
760 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5"
761 |
762 | get-stream@^3.0.0:
763 | version "3.0.0"
764 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
765 |
766 | getpass@^0.1.1:
767 | version "0.1.7"
768 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
769 | dependencies:
770 | assert-plus "^1.0.0"
771 |
772 | glob-base@^0.3.0:
773 | version "0.3.0"
774 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
775 | dependencies:
776 | glob-parent "^2.0.0"
777 | is-glob "^2.0.0"
778 |
779 | glob-parent@^2.0.0:
780 | version "2.0.0"
781 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
782 | dependencies:
783 | is-glob "^2.0.0"
784 |
785 | glob@^7.0.5:
786 | version "7.1.2"
787 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
788 | dependencies:
789 | fs.realpath "^1.0.0"
790 | inflight "^1.0.4"
791 | inherits "2"
792 | minimatch "^3.0.4"
793 | once "^1.3.0"
794 | path-is-absolute "^1.0.0"
795 |
796 | graceful-fs@^4.1.2:
797 | version "4.1.11"
798 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
799 |
800 | har-schema@^1.0.5:
801 | version "1.0.5"
802 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e"
803 |
804 | har-validator@~4.2.1:
805 | version "4.2.1"
806 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a"
807 | dependencies:
808 | ajv "^4.9.1"
809 | har-schema "^1.0.5"
810 |
811 | has-flag@^2.0.0:
812 | version "2.0.0"
813 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51"
814 |
815 | has-unicode@^2.0.0:
816 | version "2.0.1"
817 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
818 |
819 | hash-base@^2.0.0:
820 | version "2.0.2"
821 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1"
822 | dependencies:
823 | inherits "^2.0.1"
824 |
825 | hash-base@^3.0.0:
826 | version "3.0.4"
827 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918"
828 | dependencies:
829 | inherits "^2.0.1"
830 | safe-buffer "^5.0.1"
831 |
832 | hash.js@^1.0.0, hash.js@^1.0.3:
833 | version "1.1.3"
834 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846"
835 | dependencies:
836 | inherits "^2.0.3"
837 | minimalistic-assert "^1.0.0"
838 |
839 | hawk@3.1.3, hawk@~3.1.3:
840 | version "3.1.3"
841 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
842 | dependencies:
843 | boom "2.x.x"
844 | cryptiles "2.x.x"
845 | hoek "2.x.x"
846 | sntp "1.x.x"
847 |
848 | hmac-drbg@^1.0.0:
849 | version "1.0.1"
850 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1"
851 | dependencies:
852 | hash.js "^1.0.3"
853 | minimalistic-assert "^1.0.0"
854 | minimalistic-crypto-utils "^1.0.1"
855 |
856 | hoek@2.x.x:
857 | version "2.16.3"
858 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed"
859 |
860 | hosted-git-info@^2.1.4:
861 | version "2.5.0"
862 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c"
863 |
864 | http-signature@~1.1.0:
865 | version "1.1.1"
866 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf"
867 | dependencies:
868 | assert-plus "^0.2.0"
869 | jsprim "^1.2.2"
870 | sshpk "^1.7.0"
871 |
872 | https-browserify@0.0.1:
873 | version "0.0.1"
874 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82"
875 |
876 | iconv-lite@~0.4.13:
877 | version "0.4.19"
878 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b"
879 |
880 | ieee754@^1.1.4:
881 | version "1.1.8"
882 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4"
883 |
884 | indexof@0.0.1:
885 | version "0.0.1"
886 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d"
887 |
888 | inflight@^1.0.4:
889 | version "1.0.6"
890 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
891 | dependencies:
892 | once "^1.3.0"
893 | wrappy "1"
894 |
895 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3:
896 | version "2.0.3"
897 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
898 |
899 | inherits@2.0.1:
900 | version "2.0.1"
901 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1"
902 |
903 | ini@~1.3.0:
904 | version "1.3.4"
905 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e"
906 |
907 | interpret@^1.0.0:
908 | version "1.0.4"
909 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.4.tgz#820cdd588b868ffb191a809506d6c9c8f212b1b0"
910 |
911 | invert-kv@^1.0.0:
912 | version "1.0.0"
913 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
914 |
915 | is-arrayish@^0.2.1:
916 | version "0.2.1"
917 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
918 |
919 | is-binary-path@^1.0.0:
920 | version "1.0.1"
921 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
922 | dependencies:
923 | binary-extensions "^1.0.0"
924 |
925 | is-buffer@^1.1.5:
926 | version "1.1.5"
927 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc"
928 |
929 | is-builtin-module@^1.0.0:
930 | version "1.0.0"
931 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe"
932 | dependencies:
933 | builtin-modules "^1.0.0"
934 |
935 | is-dotfile@^1.0.0:
936 | version "1.0.3"
937 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"
938 |
939 | is-equal-shallow@^0.1.3:
940 | version "0.1.3"
941 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
942 | dependencies:
943 | is-primitive "^2.0.0"
944 |
945 | is-extendable@^0.1.1:
946 | version "0.1.1"
947 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
948 |
949 | is-extglob@^1.0.0:
950 | version "1.0.0"
951 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
952 |
953 | is-fullwidth-code-point@^1.0.0:
954 | version "1.0.0"
955 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
956 | dependencies:
957 | number-is-nan "^1.0.0"
958 |
959 | is-fullwidth-code-point@^2.0.0:
960 | version "2.0.0"
961 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
962 |
963 | is-glob@^2.0.0, is-glob@^2.0.1:
964 | version "2.0.1"
965 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
966 | dependencies:
967 | is-extglob "^1.0.0"
968 |
969 | is-number@^2.1.0:
970 | version "2.1.0"
971 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
972 | dependencies:
973 | kind-of "^3.0.2"
974 |
975 | is-number@^3.0.0:
976 | version "3.0.0"
977 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
978 | dependencies:
979 | kind-of "^3.0.2"
980 |
981 | is-posix-bracket@^0.1.0:
982 | version "0.1.1"
983 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
984 |
985 | is-primitive@^2.0.0:
986 | version "2.0.0"
987 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
988 |
989 | is-stream@^1.0.1, is-stream@^1.1.0:
990 | version "1.1.0"
991 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
992 |
993 | is-typedarray@~1.0.0:
994 | version "1.0.0"
995 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
996 |
997 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
998 | version "1.0.0"
999 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
1000 |
1001 | isexe@^2.0.0:
1002 | version "2.0.0"
1003 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
1004 |
1005 | isobject@^2.0.0:
1006 | version "2.1.0"
1007 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
1008 | dependencies:
1009 | isarray "1.0.0"
1010 |
1011 | isomorphic-fetch@^2.1.1:
1012 | version "2.2.1"
1013 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9"
1014 | dependencies:
1015 | node-fetch "^1.0.1"
1016 | whatwg-fetch ">=0.10.0"
1017 |
1018 | isstream@~0.1.2:
1019 | version "0.1.2"
1020 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
1021 |
1022 | js-tokens@^3.0.0:
1023 | version "3.0.2"
1024 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
1025 |
1026 | jsbn@~0.1.0:
1027 | version "0.1.1"
1028 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
1029 |
1030 | json-loader@^0.5.4:
1031 | version "0.5.7"
1032 | resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d"
1033 |
1034 | json-schema-traverse@^0.3.0:
1035 | version "0.3.1"
1036 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340"
1037 |
1038 | json-schema@0.2.3:
1039 | version "0.2.3"
1040 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
1041 |
1042 | json-stable-stringify@^1.0.1:
1043 | version "1.0.1"
1044 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
1045 | dependencies:
1046 | jsonify "~0.0.0"
1047 |
1048 | json-stringify-safe@~5.0.1:
1049 | version "5.0.1"
1050 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
1051 |
1052 | json5@^0.5.0, json5@^0.5.1:
1053 | version "0.5.1"
1054 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
1055 |
1056 | jsonify@~0.0.0:
1057 | version "0.0.0"
1058 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
1059 |
1060 | jsprim@^1.2.2:
1061 | version "1.4.1"
1062 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
1063 | dependencies:
1064 | assert-plus "1.0.0"
1065 | extsprintf "1.3.0"
1066 | json-schema "0.2.3"
1067 | verror "1.10.0"
1068 |
1069 | kind-of@^3.0.2:
1070 | version "3.2.2"
1071 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
1072 | dependencies:
1073 | is-buffer "^1.1.5"
1074 |
1075 | kind-of@^4.0.0:
1076 | version "4.0.0"
1077 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
1078 | dependencies:
1079 | is-buffer "^1.1.5"
1080 |
1081 | lazy-cache@^1.0.3:
1082 | version "1.0.4"
1083 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
1084 |
1085 | lcid@^1.0.0:
1086 | version "1.0.0"
1087 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
1088 | dependencies:
1089 | invert-kv "^1.0.0"
1090 |
1091 | load-json-file@^2.0.0:
1092 | version "2.0.0"
1093 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8"
1094 | dependencies:
1095 | graceful-fs "^4.1.2"
1096 | parse-json "^2.2.0"
1097 | pify "^2.0.0"
1098 | strip-bom "^3.0.0"
1099 |
1100 | loader-runner@^2.3.0:
1101 | version "2.3.0"
1102 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2"
1103 |
1104 | loader-utils@^1.1.0:
1105 | version "1.1.0"
1106 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd"
1107 | dependencies:
1108 | big.js "^3.1.3"
1109 | emojis-list "^2.0.0"
1110 | json5 "^0.5.0"
1111 |
1112 | locate-path@^2.0.0:
1113 | version "2.0.0"
1114 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
1115 | dependencies:
1116 | p-locate "^2.0.0"
1117 | path-exists "^3.0.0"
1118 |
1119 | lodash@^4.14.0:
1120 | version "4.17.4"
1121 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
1122 |
1123 | longest@^1.0.1:
1124 | version "1.0.1"
1125 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097"
1126 |
1127 | loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1:
1128 | version "1.3.1"
1129 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848"
1130 | dependencies:
1131 | js-tokens "^3.0.0"
1132 |
1133 | lru-cache@^4.0.1:
1134 | version "4.1.1"
1135 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55"
1136 | dependencies:
1137 | pseudomap "^1.0.2"
1138 | yallist "^2.1.2"
1139 |
1140 | md5.js@^1.3.4:
1141 | version "1.3.4"
1142 | resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d"
1143 | dependencies:
1144 | hash-base "^3.0.0"
1145 | inherits "^2.0.1"
1146 |
1147 | mem@^1.1.0:
1148 | version "1.1.0"
1149 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76"
1150 | dependencies:
1151 | mimic-fn "^1.0.0"
1152 |
1153 | memory-fs@^0.4.0, memory-fs@~0.4.1:
1154 | version "0.4.1"
1155 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552"
1156 | dependencies:
1157 | errno "^0.1.3"
1158 | readable-stream "^2.0.1"
1159 |
1160 | micromatch@^2.1.5:
1161 | version "2.3.11"
1162 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
1163 | dependencies:
1164 | arr-diff "^2.0.0"
1165 | array-unique "^0.2.1"
1166 | braces "^1.8.2"
1167 | expand-brackets "^0.1.4"
1168 | extglob "^0.3.1"
1169 | filename-regex "^2.0.0"
1170 | is-extglob "^1.0.0"
1171 | is-glob "^2.0.1"
1172 | kind-of "^3.0.2"
1173 | normalize-path "^2.0.1"
1174 | object.omit "^2.0.0"
1175 | parse-glob "^3.0.4"
1176 | regex-cache "^0.4.2"
1177 |
1178 | miller-rabin@^4.0.0:
1179 | version "4.0.0"
1180 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d"
1181 | dependencies:
1182 | bn.js "^4.0.0"
1183 | brorand "^1.0.1"
1184 |
1185 | mime-db@~1.30.0:
1186 | version "1.30.0"
1187 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01"
1188 |
1189 | mime-types@^2.1.12, mime-types@~2.1.7:
1190 | version "2.1.17"
1191 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a"
1192 | dependencies:
1193 | mime-db "~1.30.0"
1194 |
1195 | mimic-fn@^1.0.0:
1196 | version "1.1.0"
1197 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18"
1198 |
1199 | minimalistic-assert@^1.0.0:
1200 | version "1.0.0"
1201 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3"
1202 |
1203 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1:
1204 | version "1.0.1"
1205 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
1206 |
1207 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4:
1208 | version "3.0.4"
1209 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
1210 | dependencies:
1211 | brace-expansion "^1.1.7"
1212 |
1213 | minimist@0.0.8:
1214 | version "0.0.8"
1215 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
1216 |
1217 | minimist@^1.2.0:
1218 | version "1.2.0"
1219 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
1220 |
1221 | "mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.0:
1222 | version "0.5.1"
1223 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
1224 | dependencies:
1225 | minimist "0.0.8"
1226 |
1227 | ms@2.0.0:
1228 | version "2.0.0"
1229 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
1230 |
1231 | nan@^2.3.0:
1232 | version "2.7.0"
1233 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46"
1234 |
1235 | node-fetch@^1.0.1:
1236 | version "1.7.3"
1237 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef"
1238 | dependencies:
1239 | encoding "^0.1.11"
1240 | is-stream "^1.0.1"
1241 |
1242 | node-libs-browser@^2.0.0:
1243 | version "2.0.0"
1244 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.0.0.tgz#a3a59ec97024985b46e958379646f96c4b616646"
1245 | dependencies:
1246 | assert "^1.1.1"
1247 | browserify-zlib "^0.1.4"
1248 | buffer "^4.3.0"
1249 | console-browserify "^1.1.0"
1250 | constants-browserify "^1.0.0"
1251 | crypto-browserify "^3.11.0"
1252 | domain-browser "^1.1.1"
1253 | events "^1.0.0"
1254 | https-browserify "0.0.1"
1255 | os-browserify "^0.2.0"
1256 | path-browserify "0.0.0"
1257 | process "^0.11.0"
1258 | punycode "^1.2.4"
1259 | querystring-es3 "^0.2.0"
1260 | readable-stream "^2.0.5"
1261 | stream-browserify "^2.0.1"
1262 | stream-http "^2.3.1"
1263 | string_decoder "^0.10.25"
1264 | timers-browserify "^2.0.2"
1265 | tty-browserify "0.0.0"
1266 | url "^0.11.0"
1267 | util "^0.10.3"
1268 | vm-browserify "0.0.4"
1269 |
1270 | node-pre-gyp@^0.6.36:
1271 | version "0.6.38"
1272 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.38.tgz#e92a20f83416415bb4086f6d1fb78b3da73d113d"
1273 | dependencies:
1274 | hawk "3.1.3"
1275 | mkdirp "^0.5.1"
1276 | nopt "^4.0.1"
1277 | npmlog "^4.0.2"
1278 | rc "^1.1.7"
1279 | request "2.81.0"
1280 | rimraf "^2.6.1"
1281 | semver "^5.3.0"
1282 | tar "^2.2.1"
1283 | tar-pack "^3.4.0"
1284 |
1285 | nopt@^4.0.1:
1286 | version "4.0.1"
1287 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
1288 | dependencies:
1289 | abbrev "1"
1290 | osenv "^0.1.4"
1291 |
1292 | normalize-package-data@^2.3.2:
1293 | version "2.4.0"
1294 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f"
1295 | dependencies:
1296 | hosted-git-info "^2.1.4"
1297 | is-builtin-module "^1.0.0"
1298 | semver "2 || 3 || 4 || 5"
1299 | validate-npm-package-license "^3.0.1"
1300 |
1301 | normalize-path@^2.0.0, normalize-path@^2.0.1:
1302 | version "2.1.1"
1303 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
1304 | dependencies:
1305 | remove-trailing-separator "^1.0.1"
1306 |
1307 | npm-run-path@^2.0.0:
1308 | version "2.0.2"
1309 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
1310 | dependencies:
1311 | path-key "^2.0.0"
1312 |
1313 | npmlog@^4.0.2:
1314 | version "4.1.2"
1315 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
1316 | dependencies:
1317 | are-we-there-yet "~1.1.2"
1318 | console-control-strings "~1.1.0"
1319 | gauge "~2.7.3"
1320 | set-blocking "~2.0.0"
1321 |
1322 | number-is-nan@^1.0.0:
1323 | version "1.0.1"
1324 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
1325 |
1326 | oauth-sign@~0.8.1:
1327 | version "0.8.2"
1328 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
1329 |
1330 | object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1:
1331 | version "4.1.1"
1332 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
1333 |
1334 | object.omit@^2.0.0:
1335 | version "2.0.1"
1336 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
1337 | dependencies:
1338 | for-own "^0.1.4"
1339 | is-extendable "^0.1.1"
1340 |
1341 | once@^1.3.0, once@^1.3.3:
1342 | version "1.4.0"
1343 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
1344 | dependencies:
1345 | wrappy "1"
1346 |
1347 | os-browserify@^0.2.0:
1348 | version "0.2.1"
1349 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f"
1350 |
1351 | os-homedir@^1.0.0:
1352 | version "1.0.2"
1353 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
1354 |
1355 | os-locale@^2.0.0:
1356 | version "2.1.0"
1357 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2"
1358 | dependencies:
1359 | execa "^0.7.0"
1360 | lcid "^1.0.0"
1361 | mem "^1.1.0"
1362 |
1363 | os-tmpdir@^1.0.0:
1364 | version "1.0.2"
1365 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
1366 |
1367 | osenv@^0.1.4:
1368 | version "0.1.4"
1369 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644"
1370 | dependencies:
1371 | os-homedir "^1.0.0"
1372 | os-tmpdir "^1.0.0"
1373 |
1374 | p-finally@^1.0.0:
1375 | version "1.0.0"
1376 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
1377 |
1378 | p-limit@^1.1.0:
1379 | version "1.1.0"
1380 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc"
1381 |
1382 | p-locate@^2.0.0:
1383 | version "2.0.0"
1384 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
1385 | dependencies:
1386 | p-limit "^1.1.0"
1387 |
1388 | pako@~0.2.0:
1389 | version "0.2.9"
1390 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75"
1391 |
1392 | parse-asn1@^5.0.0:
1393 | version "5.1.0"
1394 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712"
1395 | dependencies:
1396 | asn1.js "^4.0.0"
1397 | browserify-aes "^1.0.0"
1398 | create-hash "^1.1.0"
1399 | evp_bytestokey "^1.0.0"
1400 | pbkdf2 "^3.0.3"
1401 |
1402 | parse-glob@^3.0.4:
1403 | version "3.0.4"
1404 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
1405 | dependencies:
1406 | glob-base "^0.3.0"
1407 | is-dotfile "^1.0.0"
1408 | is-extglob "^1.0.0"
1409 | is-glob "^2.0.0"
1410 |
1411 | parse-json@^2.2.0:
1412 | version "2.2.0"
1413 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
1414 | dependencies:
1415 | error-ex "^1.2.0"
1416 |
1417 | path-browserify@0.0.0:
1418 | version "0.0.0"
1419 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a"
1420 |
1421 | path-exists@^3.0.0:
1422 | version "3.0.0"
1423 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
1424 |
1425 | path-is-absolute@^1.0.0:
1426 | version "1.0.1"
1427 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
1428 |
1429 | path-key@^2.0.0:
1430 | version "2.0.1"
1431 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
1432 |
1433 | path-type@^2.0.0:
1434 | version "2.0.0"
1435 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73"
1436 | dependencies:
1437 | pify "^2.0.0"
1438 |
1439 | pbkdf2@^3.0.3:
1440 | version "3.0.14"
1441 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.14.tgz#a35e13c64799b06ce15320f459c230e68e73bade"
1442 | dependencies:
1443 | create-hash "^1.1.2"
1444 | create-hmac "^1.1.4"
1445 | ripemd160 "^2.0.1"
1446 | safe-buffer "^5.0.1"
1447 | sha.js "^2.4.8"
1448 |
1449 | performance-now@^0.2.0:
1450 | version "0.2.0"
1451 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"
1452 |
1453 | pify@^2.0.0:
1454 | version "2.3.0"
1455 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
1456 |
1457 | preserve@^0.2.0:
1458 | version "0.2.0"
1459 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
1460 |
1461 | process-nextick-args@~1.0.6:
1462 | version "1.0.7"
1463 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
1464 |
1465 | process@^0.11.0:
1466 | version "0.11.10"
1467 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
1468 |
1469 | promise@^7.1.1:
1470 | version "7.3.1"
1471 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf"
1472 | dependencies:
1473 | asap "~2.0.3"
1474 |
1475 | prop-types@^15.6.0:
1476 | version "15.6.0"
1477 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.0.tgz#ceaf083022fc46b4a35f69e13ef75aed0d639856"
1478 | dependencies:
1479 | fbjs "^0.8.16"
1480 | loose-envify "^1.3.1"
1481 | object-assign "^4.1.1"
1482 |
1483 | prr@~0.0.0:
1484 | version "0.0.0"
1485 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a"
1486 |
1487 | pseudomap@^1.0.2:
1488 | version "1.0.2"
1489 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
1490 |
1491 | public-encrypt@^4.0.0:
1492 | version "4.0.0"
1493 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6"
1494 | dependencies:
1495 | bn.js "^4.1.0"
1496 | browserify-rsa "^4.0.0"
1497 | create-hash "^1.1.0"
1498 | parse-asn1 "^5.0.0"
1499 | randombytes "^2.0.1"
1500 |
1501 | punycode@1.3.2:
1502 | version "1.3.2"
1503 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d"
1504 |
1505 | punycode@^1.2.4, punycode@^1.4.1:
1506 | version "1.4.1"
1507 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
1508 |
1509 | qs@~6.4.0:
1510 | version "6.4.0"
1511 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233"
1512 |
1513 | querystring-es3@^0.2.0:
1514 | version "0.2.1"
1515 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73"
1516 |
1517 | querystring@0.2.0:
1518 | version "0.2.0"
1519 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620"
1520 |
1521 | randomatic@^1.1.3:
1522 | version "1.1.7"
1523 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c"
1524 | dependencies:
1525 | is-number "^3.0.0"
1526 | kind-of "^4.0.0"
1527 |
1528 | randombytes@^2.0.0, randombytes@^2.0.1:
1529 | version "2.0.5"
1530 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.5.tgz#dc009a246b8d09a177b4b7a0ae77bc570f4b1b79"
1531 | dependencies:
1532 | safe-buffer "^5.1.0"
1533 |
1534 | rc@^1.1.7:
1535 | version "1.2.1"
1536 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95"
1537 | dependencies:
1538 | deep-extend "~0.4.0"
1539 | ini "~1.3.0"
1540 | minimist "^1.2.0"
1541 | strip-json-comments "~2.0.1"
1542 |
1543 | react-dom@^16.0.0:
1544 | version "16.0.0"
1545 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.0.0.tgz#9cc3079c3dcd70d4c6e01b84aab2a7e34c303f58"
1546 | dependencies:
1547 | fbjs "^0.8.16"
1548 | loose-envify "^1.1.0"
1549 | object-assign "^4.1.1"
1550 | prop-types "^15.6.0"
1551 |
1552 | react@^16.0.0:
1553 | version "16.0.0"
1554 | resolved "https://registry.yarnpkg.com/react/-/react-16.0.0.tgz#ce7df8f1941b036f02b2cca9dbd0cb1f0e855e2d"
1555 | dependencies:
1556 | fbjs "^0.8.16"
1557 | loose-envify "^1.1.0"
1558 | object-assign "^4.1.1"
1559 | prop-types "^15.6.0"
1560 |
1561 | read-pkg-up@^2.0.0:
1562 | version "2.0.0"
1563 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be"
1564 | dependencies:
1565 | find-up "^2.0.0"
1566 | read-pkg "^2.0.0"
1567 |
1568 | read-pkg@^2.0.0:
1569 | version "2.0.0"
1570 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"
1571 | dependencies:
1572 | load-json-file "^2.0.0"
1573 | normalize-package-data "^2.3.2"
1574 | path-type "^2.0.0"
1575 |
1576 | readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.6:
1577 | version "2.3.3"
1578 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c"
1579 | dependencies:
1580 | core-util-is "~1.0.0"
1581 | inherits "~2.0.3"
1582 | isarray "~1.0.0"
1583 | process-nextick-args "~1.0.6"
1584 | safe-buffer "~5.1.1"
1585 | string_decoder "~1.0.3"
1586 | util-deprecate "~1.0.1"
1587 |
1588 | readdirp@^2.0.0:
1589 | version "2.1.0"
1590 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78"
1591 | dependencies:
1592 | graceful-fs "^4.1.2"
1593 | minimatch "^3.0.2"
1594 | readable-stream "^2.0.2"
1595 | set-immediate-shim "^1.0.1"
1596 |
1597 | regex-cache@^0.4.2:
1598 | version "0.4.4"
1599 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd"
1600 | dependencies:
1601 | is-equal-shallow "^0.1.3"
1602 |
1603 | remove-trailing-separator@^1.0.1:
1604 | version "1.1.0"
1605 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
1606 |
1607 | repeat-element@^1.1.2:
1608 | version "1.1.2"
1609 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
1610 |
1611 | repeat-string@^1.5.2:
1612 | version "1.6.1"
1613 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
1614 |
1615 | request@2.81.0:
1616 | version "2.81.0"
1617 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0"
1618 | dependencies:
1619 | aws-sign2 "~0.6.0"
1620 | aws4 "^1.2.1"
1621 | caseless "~0.12.0"
1622 | combined-stream "~1.0.5"
1623 | extend "~3.0.0"
1624 | forever-agent "~0.6.1"
1625 | form-data "~2.1.1"
1626 | har-validator "~4.2.1"
1627 | hawk "~3.1.3"
1628 | http-signature "~1.1.0"
1629 | is-typedarray "~1.0.0"
1630 | isstream "~0.1.2"
1631 | json-stringify-safe "~5.0.1"
1632 | mime-types "~2.1.7"
1633 | oauth-sign "~0.8.1"
1634 | performance-now "^0.2.0"
1635 | qs "~6.4.0"
1636 | safe-buffer "^5.0.1"
1637 | stringstream "~0.0.4"
1638 | tough-cookie "~2.3.0"
1639 | tunnel-agent "^0.6.0"
1640 | uuid "^3.0.0"
1641 |
1642 | require-directory@^2.1.1:
1643 | version "2.1.1"
1644 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
1645 |
1646 | require-main-filename@^1.0.1:
1647 | version "1.0.1"
1648 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
1649 |
1650 | right-align@^0.1.1:
1651 | version "0.1.3"
1652 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef"
1653 | dependencies:
1654 | align-text "^0.1.1"
1655 |
1656 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1:
1657 | version "2.6.2"
1658 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36"
1659 | dependencies:
1660 | glob "^7.0.5"
1661 |
1662 | ripemd160@^2.0.0, ripemd160@^2.0.1:
1663 | version "2.0.1"
1664 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7"
1665 | dependencies:
1666 | hash-base "^2.0.0"
1667 | inherits "^2.0.1"
1668 |
1669 | safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
1670 | version "5.1.1"
1671 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853"
1672 |
1673 | "semver@2 || 3 || 4 || 5", semver@^5.3.0:
1674 | version "5.4.1"
1675 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e"
1676 |
1677 | set-blocking@^2.0.0, set-blocking@~2.0.0:
1678 | version "2.0.0"
1679 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
1680 |
1681 | set-immediate-shim@^1.0.1:
1682 | version "1.0.1"
1683 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61"
1684 |
1685 | setimmediate@^1.0.4, setimmediate@^1.0.5:
1686 | version "1.0.5"
1687 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
1688 |
1689 | sha.js@^2.4.0, sha.js@^2.4.8:
1690 | version "2.4.9"
1691 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.9.tgz#98f64880474b74f4a38b8da9d3c0f2d104633e7d"
1692 | dependencies:
1693 | inherits "^2.0.1"
1694 | safe-buffer "^5.0.1"
1695 |
1696 | shebang-command@^1.2.0:
1697 | version "1.2.0"
1698 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
1699 | dependencies:
1700 | shebang-regex "^1.0.0"
1701 |
1702 | shebang-regex@^1.0.0:
1703 | version "1.0.0"
1704 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
1705 |
1706 | signal-exit@^3.0.0:
1707 | version "3.0.2"
1708 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
1709 |
1710 | sntp@1.x.x:
1711 | version "1.0.9"
1712 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
1713 | dependencies:
1714 | hoek "2.x.x"
1715 |
1716 | source-list-map@^2.0.0:
1717 | version "2.0.0"
1718 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.0.tgz#aaa47403f7b245a92fbc97ea08f250d6087ed085"
1719 |
1720 | source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.3:
1721 | version "0.5.7"
1722 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
1723 |
1724 | spdx-correct@~1.0.0:
1725 | version "1.0.2"
1726 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40"
1727 | dependencies:
1728 | spdx-license-ids "^1.0.2"
1729 |
1730 | spdx-expression-parse@~1.0.0:
1731 | version "1.0.4"
1732 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c"
1733 |
1734 | spdx-license-ids@^1.0.2:
1735 | version "1.2.2"
1736 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57"
1737 |
1738 | sshpk@^1.7.0:
1739 | version "1.13.1"
1740 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3"
1741 | dependencies:
1742 | asn1 "~0.2.3"
1743 | assert-plus "^1.0.0"
1744 | dashdash "^1.12.0"
1745 | getpass "^0.1.1"
1746 | optionalDependencies:
1747 | bcrypt-pbkdf "^1.0.0"
1748 | ecc-jsbn "~0.1.1"
1749 | jsbn "~0.1.0"
1750 | tweetnacl "~0.14.0"
1751 |
1752 | stream-browserify@^2.0.1:
1753 | version "2.0.1"
1754 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db"
1755 | dependencies:
1756 | inherits "~2.0.1"
1757 | readable-stream "^2.0.2"
1758 |
1759 | stream-http@^2.3.1:
1760 | version "2.7.2"
1761 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.2.tgz#40a050ec8dc3b53b33d9909415c02c0bf1abfbad"
1762 | dependencies:
1763 | builtin-status-codes "^3.0.0"
1764 | inherits "^2.0.1"
1765 | readable-stream "^2.2.6"
1766 | to-arraybuffer "^1.0.0"
1767 | xtend "^4.0.0"
1768 |
1769 | string-width@^1.0.1, string-width@^1.0.2:
1770 | version "1.0.2"
1771 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
1772 | dependencies:
1773 | code-point-at "^1.0.0"
1774 | is-fullwidth-code-point "^1.0.0"
1775 | strip-ansi "^3.0.0"
1776 |
1777 | string-width@^2.0.0:
1778 | version "2.1.1"
1779 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
1780 | dependencies:
1781 | is-fullwidth-code-point "^2.0.0"
1782 | strip-ansi "^4.0.0"
1783 |
1784 | string_decoder@^0.10.25:
1785 | version "0.10.31"
1786 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
1787 |
1788 | string_decoder@~1.0.3:
1789 | version "1.0.3"
1790 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab"
1791 | dependencies:
1792 | safe-buffer "~5.1.0"
1793 |
1794 | stringstream@~0.0.4:
1795 | version "0.0.5"
1796 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878"
1797 |
1798 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
1799 | version "3.0.1"
1800 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
1801 | dependencies:
1802 | ansi-regex "^2.0.0"
1803 |
1804 | strip-ansi@^4.0.0:
1805 | version "4.0.0"
1806 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
1807 | dependencies:
1808 | ansi-regex "^3.0.0"
1809 |
1810 | strip-bom@^3.0.0:
1811 | version "3.0.0"
1812 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
1813 |
1814 | strip-eof@^1.0.0:
1815 | version "1.0.0"
1816 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
1817 |
1818 | strip-json-comments@~2.0.1:
1819 | version "2.0.1"
1820 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
1821 |
1822 | supports-color@^4.2.1:
1823 | version "4.4.0"
1824 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e"
1825 | dependencies:
1826 | has-flag "^2.0.0"
1827 |
1828 | tapable@^0.2.7:
1829 | version "0.2.8"
1830 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.8.tgz#99372a5c999bf2df160afc0d74bed4f47948cd22"
1831 |
1832 | tar-pack@^3.4.0:
1833 | version "3.4.0"
1834 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984"
1835 | dependencies:
1836 | debug "^2.2.0"
1837 | fstream "^1.0.10"
1838 | fstream-ignore "^1.0.5"
1839 | once "^1.3.3"
1840 | readable-stream "^2.1.4"
1841 | rimraf "^2.5.1"
1842 | tar "^2.2.1"
1843 | uid-number "^0.0.6"
1844 |
1845 | tar@^2.2.1:
1846 | version "2.2.1"
1847 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"
1848 | dependencies:
1849 | block-stream "*"
1850 | fstream "^1.0.2"
1851 | inherits "2"
1852 |
1853 | timers-browserify@^2.0.2:
1854 | version "2.0.4"
1855 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.4.tgz#96ca53f4b794a5e7c0e1bd7cc88a372298fa01e6"
1856 | dependencies:
1857 | setimmediate "^1.0.4"
1858 |
1859 | to-arraybuffer@^1.0.0:
1860 | version "1.0.1"
1861 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43"
1862 |
1863 | tough-cookie@~2.3.0:
1864 | version "2.3.3"
1865 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561"
1866 | dependencies:
1867 | punycode "^1.4.1"
1868 |
1869 | tty-browserify@0.0.0:
1870 | version "0.0.0"
1871 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6"
1872 |
1873 | tunnel-agent@^0.6.0:
1874 | version "0.6.0"
1875 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
1876 | dependencies:
1877 | safe-buffer "^5.0.1"
1878 |
1879 | tweetnacl@^0.14.3, tweetnacl@~0.14.0:
1880 | version "0.14.5"
1881 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
1882 |
1883 | ua-parser-js@^0.7.9:
1884 | version "0.7.14"
1885 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.14.tgz#110d53fa4c3f326c121292bbeac904d2e03387ca"
1886 |
1887 | uglify-js@^2.8.29:
1888 | version "2.8.29"
1889 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd"
1890 | dependencies:
1891 | source-map "~0.5.1"
1892 | yargs "~3.10.0"
1893 | optionalDependencies:
1894 | uglify-to-browserify "~1.0.0"
1895 |
1896 | uglify-to-browserify@~1.0.0:
1897 | version "1.0.2"
1898 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7"
1899 |
1900 | uglifyjs-webpack-plugin@^0.4.6:
1901 | version "0.4.6"
1902 | resolved "https://registry.yarnpkg.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz#b951f4abb6bd617e66f63eb891498e391763e309"
1903 | dependencies:
1904 | source-map "^0.5.6"
1905 | uglify-js "^2.8.29"
1906 | webpack-sources "^1.0.1"
1907 |
1908 | uid-number@^0.0.6:
1909 | version "0.0.6"
1910 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81"
1911 |
1912 | url@^0.11.0:
1913 | version "0.11.0"
1914 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"
1915 | dependencies:
1916 | punycode "1.3.2"
1917 | querystring "0.2.0"
1918 |
1919 | util-deprecate@~1.0.1:
1920 | version "1.0.2"
1921 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
1922 |
1923 | util@0.10.3, util@^0.10.3:
1924 | version "0.10.3"
1925 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9"
1926 | dependencies:
1927 | inherits "2.0.1"
1928 |
1929 | uuid@^3.0.0:
1930 | version "3.1.0"
1931 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04"
1932 |
1933 | validate-npm-package-license@^3.0.1:
1934 | version "3.0.1"
1935 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc"
1936 | dependencies:
1937 | spdx-correct "~1.0.0"
1938 | spdx-expression-parse "~1.0.0"
1939 |
1940 | verror@1.10.0:
1941 | version "1.10.0"
1942 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
1943 | dependencies:
1944 | assert-plus "^1.0.0"
1945 | core-util-is "1.0.2"
1946 | extsprintf "^1.2.0"
1947 |
1948 | vm-browserify@0.0.4:
1949 | version "0.0.4"
1950 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73"
1951 | dependencies:
1952 | indexof "0.0.1"
1953 |
1954 | watchpack@^1.4.0:
1955 | version "1.4.0"
1956 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.4.0.tgz#4a1472bcbb952bd0a9bb4036801f954dfb39faac"
1957 | dependencies:
1958 | async "^2.1.2"
1959 | chokidar "^1.7.0"
1960 | graceful-fs "^4.1.2"
1961 |
1962 | webpack-sources@^1.0.1:
1963 | version "1.0.1"
1964 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.0.1.tgz#c7356436a4d13123be2e2426a05d1dad9cbe65cf"
1965 | dependencies:
1966 | source-list-map "^2.0.0"
1967 | source-map "~0.5.3"
1968 |
1969 | webpack@^3.6.0:
1970 | version "3.6.0"
1971 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-3.6.0.tgz#a89a929fbee205d35a4fa2cc487be9cbec8898bc"
1972 | dependencies:
1973 | acorn "^5.0.0"
1974 | acorn-dynamic-import "^2.0.0"
1975 | ajv "^5.1.5"
1976 | ajv-keywords "^2.0.0"
1977 | async "^2.1.2"
1978 | enhanced-resolve "^3.4.0"
1979 | escope "^3.6.0"
1980 | interpret "^1.0.0"
1981 | json-loader "^0.5.4"
1982 | json5 "^0.5.1"
1983 | loader-runner "^2.3.0"
1984 | loader-utils "^1.1.0"
1985 | memory-fs "~0.4.1"
1986 | mkdirp "~0.5.0"
1987 | node-libs-browser "^2.0.0"
1988 | source-map "^0.5.3"
1989 | supports-color "^4.2.1"
1990 | tapable "^0.2.7"
1991 | uglifyjs-webpack-plugin "^0.4.6"
1992 | watchpack "^1.4.0"
1993 | webpack-sources "^1.0.1"
1994 | yargs "^8.0.2"
1995 |
1996 | whatwg-fetch@>=0.10.0:
1997 | version "2.0.3"
1998 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84"
1999 |
2000 | which-module@^2.0.0:
2001 | version "2.0.0"
2002 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
2003 |
2004 | which@^1.2.9:
2005 | version "1.3.0"
2006 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a"
2007 | dependencies:
2008 | isexe "^2.0.0"
2009 |
2010 | wide-align@^1.1.0:
2011 | version "1.1.2"
2012 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710"
2013 | dependencies:
2014 | string-width "^1.0.2"
2015 |
2016 | window-size@0.1.0:
2017 | version "0.1.0"
2018 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"
2019 |
2020 | wordwrap@0.0.2:
2021 | version "0.0.2"
2022 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f"
2023 |
2024 | wrap-ansi@^2.0.0:
2025 | version "2.1.0"
2026 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
2027 | dependencies:
2028 | string-width "^1.0.1"
2029 | strip-ansi "^3.0.1"
2030 |
2031 | wrappy@1:
2032 | version "1.0.2"
2033 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
2034 |
2035 | xtend@^4.0.0:
2036 | version "4.0.1"
2037 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
2038 |
2039 | y18n@^3.2.1:
2040 | version "3.2.1"
2041 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41"
2042 |
2043 | yallist@^2.1.2:
2044 | version "2.1.2"
2045 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
2046 |
2047 | yargs-parser@^7.0.0:
2048 | version "7.0.0"
2049 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9"
2050 | dependencies:
2051 | camelcase "^4.1.0"
2052 |
2053 | yargs@^8.0.2:
2054 | version "8.0.2"
2055 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360"
2056 | dependencies:
2057 | camelcase "^4.1.0"
2058 | cliui "^3.2.0"
2059 | decamelize "^1.1.1"
2060 | get-caller-file "^1.0.1"
2061 | os-locale "^2.0.0"
2062 | read-pkg-up "^2.0.0"
2063 | require-directory "^2.1.1"
2064 | require-main-filename "^1.0.1"
2065 | set-blocking "^2.0.0"
2066 | string-width "^2.0.0"
2067 | which-module "^2.0.0"
2068 | y18n "^3.2.1"
2069 | yargs-parser "^7.0.0"
2070 |
2071 | yargs@~3.10.0:
2072 | version "3.10.0"
2073 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"
2074 | dependencies:
2075 | camelcase "^1.0.2"
2076 | cliui "^2.1.0"
2077 | decamelize "^1.0.0"
2078 | window-size "0.1.0"
2079 |
--------------------------------------------------------------------------------